@@ -2176,16 +2176,15 @@ export interface CreditAdjustment {
21762176/** The credit balance by currency. */
21772177export interface CreditBalance {
21782178 currency : string
2179+ /** Credits available after applying currently live charge impacts. */
2180+ live : string
2181+ /** Credits that have been booked on the ledger as of the balance timestamp. */
2182+ settled : string
21792183 /**
2180- * Credits that have been granted but cannot yet be consumed. Includes grants
2181- * awaiting payment clearance or with a future effective date .
2184+ * Credits that have been granted but are not yet written to the ledger, or are
2185+ * written to the ledger with a future booked time .
21822186 */
21832187 pending : string
2184- /**
2185- * Credits that can be consumed right now. Derived from cleared grants after
2186- * applying eligibility and restriction rules.
2187- */
2188- available : string
21892188}
21902189
21912190/** CreditAdjustment create request. */
@@ -3563,6 +3562,12 @@ export interface CreateCreditGrantRequest {
35633562 filters ?: CreateCreditGrantFilters
35643563 /** Draw-down priority of the grant. Lower values have higher priority. */
35653564 priority : number
3565+ /**
3566+ * The timestamp when the credit grant becomes effective.
3567+ *
3568+ * Defaults to the current date and time.
3569+ */
3570+ effective_at ?: string
35663571 /**
35673572 * The duration after which the credit grant expires.
35683573 *
@@ -3627,6 +3632,12 @@ export interface CreditGrant {
36273632 filters ?: CreditGrantFilters
36283633 /** Draw-down priority of the grant. Lower values have higher priority. */
36293634 priority : number
3635+ /**
3636+ * The timestamp when the credit grant becomes effective.
3637+ *
3638+ * Defaults to the current date and time.
3639+ */
3640+ effective_at ?: string
36303641 /**
36313642 * The duration after which the credit grant expires.
36323643 *
@@ -5440,6 +5451,12 @@ export interface CreateCreditGrantRequestInput {
54405451 filters ?: CreateCreditGrantFilters
54415452 /** Draw-down priority of the grant. Lower values have higher priority. */
54425453 priority ?: number
5454+ /**
5455+ * The timestamp when the credit grant becomes effective.
5456+ *
5457+ * Defaults to the current date and time.
5458+ */
5459+ effective_at ?: string
54435460 /**
54445461 * The duration after which the credit grant expires.
54455462 *
@@ -5498,6 +5515,12 @@ export interface CreditGrantInput {
54985515 filters ?: CreditGrantFilters
54995516 /** Draw-down priority of the grant. Lower values have higher priority. */
55005517 priority ?: number
5518+ /**
5519+ * The timestamp when the credit grant becomes effective.
5520+ *
5521+ * Defaults to the current date and time.
5522+ */
5523+ effective_at ?: string
55015524 /**
55025525 * The duration after which the credit grant expires.
55035526 *
0 commit comments