@hyperscale0/sdk 3.0.0 → 3.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/client.d.ts +15 -1
- package/client.js +34 -4
- package/package.json +2 -2
- package/platform.d.ts +86 -127
package/platform.d.ts
CHANGED
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
// Generated from core/contracts operation descriptors. Do not edit.
|
|
2
2
|
export type account_balance_retrieveInput = { readonly "accountId": string; readonly "productId"?: string; };
|
|
3
3
|
export type account_balance_retrieveOutput = { readonly "accountId": string; readonly "asOf": string; readonly "available": string; readonly "creditsPending": string; readonly "creditsPosted": string; readonly "currency": string; readonly "debitsPending": string; readonly "debitsPosted": string; readonly "environment": "sandbox" | "live"; readonly "normalBalance": "debit" | "credit"; readonly "pending": string; readonly "settled": string; readonly "tenantId": string; readonly "productId"?: string; };
|
|
4
|
-
export type account_bank_linkInput = { readonly "accountId": string; readonly "beneficiaryId": string; };
|
|
5
|
-
export type account_bank_linkOutput = { readonly "tenantId": string; readonly "accountId": string; readonly "beneficiaryId": string; };
|
|
6
4
|
export type account_closeInput = { readonly "accountId": string; readonly "reason": string; };
|
|
7
5
|
export type account_closeOutput = { readonly "tenantId": string; readonly "accountId": string; readonly "productId"?: string; readonly "updatedAt": string; readonly "reason": string; readonly "previousStatus": "open" | "frozen"; readonly "status": "closed"; };
|
|
8
|
-
export type account_createInput = { readonly "owner": account_createInput_AccountOwner; readonly "productId"?: string; readonly "role": "tenant_billing" | "tenant_credit" | "tenant_settlement" | "customer_balance" | "customer_investment" | "product_pool" | "product_credit" | "product_revenue"; readonly "currency": string; readonly "
|
|
6
|
+
export type account_createInput = { readonly "owner": account_createInput_AccountOwner; readonly "productId"?: string; readonly "role": "tenant_billing" | "tenant_credit" | "tenant_settlement" | "customer_balance" | "customer_investment" | "product_pool" | "product_credit" | "product_revenue"; readonly "currency": string; readonly "metadata"?: account_createInput_Metadata; };
|
|
9
7
|
type account_createInput_AccountOwner = (account_createInput_TenantAccountOwner | account_createInput_CustomerAccountOwner | account_createInput_ProductAccountOwner);
|
|
10
8
|
type account_createInput_TenantAccountOwner = { readonly "type": "tenant"; readonly "id": string; };
|
|
11
9
|
type account_createInput_CustomerAccountOwner = { readonly "type": "customer"; readonly "id": string; };
|
|
@@ -13,14 +11,18 @@ type account_createInput_ProductAccountOwner = { readonly "type": "product"; rea
|
|
|
13
11
|
type account_createInput_Metadata = { readonly [key: string]: account_createInput_MetadataValue };
|
|
14
12
|
type account_createInput_MetadataValue = (account_createInput_MetadataScalar | ReadonlyArray<account_createInput_MetadataScalar> | { readonly [key: string]: account_createInput_MetadataScalar });
|
|
15
13
|
type account_createInput_MetadataScalar = (string | number | boolean | null);
|
|
16
|
-
export type account_createOutput = { readonly "accountId": string; readonly "tenantId": string; readonly "owner": account_createOutput_AccountOwner; readonly "productId"?: string; readonly "role": "tenant_billing" | "tenant_credit" | "tenant_settlement" | "customer_balance" | "customer_investment" | "product_pool" | "product_credit" | "product_revenue"; readonly "currency": string; readonly "normalBalance": "debit" | "credit"; readonly "
|
|
14
|
+
export type account_createOutput = { readonly "accountId": string; readonly "tenantId": string; readonly "owner": account_createOutput_AccountOwner; readonly "productId"?: string; readonly "role": "tenant_billing" | "tenant_credit" | "tenant_settlement" | "customer_balance" | "customer_investment" | "product_pool" | "product_credit" | "product_revenue"; readonly "currency": string; readonly "normalBalance": "debit" | "credit"; readonly "status": "open"; };
|
|
17
15
|
type account_createOutput_AccountOwner = (account_createOutput_TenantAccountOwner | account_createOutput_CustomerAccountOwner | account_createOutput_ProductAccountOwner);
|
|
18
16
|
type account_createOutput_TenantAccountOwner = { readonly "type": "tenant"; readonly "id": string; };
|
|
19
17
|
type account_createOutput_CustomerAccountOwner = { readonly "type": "customer"; readonly "id": string; };
|
|
20
18
|
type account_createOutput_ProductAccountOwner = { readonly "type": "product"; readonly "id": string; };
|
|
21
19
|
export type account_freezeInput = { readonly "accountId": string; readonly "reason": string; readonly "reasonClass": "customer_request"; };
|
|
22
20
|
export type account_freezeOutput = { readonly "tenantId": string; readonly "accountId": string; readonly "productId"?: string; readonly "updatedAt": string; readonly "reason": string; readonly "reasonClass": "customer_request"; readonly "previousStatus": "open"; readonly "status": "frozen"; };
|
|
23
|
-
export type
|
|
21
|
+
export type account_hold_listInput = { readonly "accountId": string; readonly "productId"?: string; readonly "cursor"?: string; readonly "limit"?: number; };
|
|
22
|
+
export type account_hold_listOutput = { readonly "items": ReadonlyArray<{ readonly "transferId": string; readonly "accountId": string; readonly "destinationAccountId": string; readonly "amount": string; readonly "remainingAmount": string; readonly "currency": string; readonly "status": "active" | "posted" | "voided" | "expired"; readonly "operationId": string; readonly "ownerParticipantId": string; readonly "originatingPrincipalId": string | null; readonly "expiresAt": (string | null); readonly "createdAt": string; }>; readonly "hasMore": boolean; readonly "nextCursor"?: string; readonly "observedAt": string; };
|
|
23
|
+
export type account_hold_retrieveInput = { readonly "accountId": string; readonly "productId"?: string; readonly "transferId": string; };
|
|
24
|
+
export type account_hold_retrieveOutput = { readonly "transferId": string; readonly "accountId": string; readonly "destinationAccountId": string; readonly "amount": string; readonly "remainingAmount": string; readonly "currency": string; readonly "status": "active" | "posted" | "voided" | "expired"; readonly "operationId": string; readonly "ownerParticipantId": string; readonly "originatingPrincipalId": string | null; readonly "expiresAt": (string | null); readonly "createdAt": string; readonly "observedAt": string; };
|
|
25
|
+
export type account_listInput = { readonly "productId"?: string; readonly "limit"?: number; readonly "cursor"?: string; readonly "query"?: string; readonly "createdFrom"?: string; readonly "createdTo"?: string; readonly "ownerCustomerId"?: string; readonly "role"?: "tenant_billing" | "tenant_credit" | "tenant_settlement" | "tenant_master_mirror" | "customer_balance" | "customer_investment" | "instrument_account" | "product_escrow" | "product_pool" | "product_credit" | "product_revenue" | "platform_estate_mirror" | "platform_revenue" | "provider_payable" | "platform_suspense"; readonly "status"?: "pending" | "open" | "frozen" | "closed"; };
|
|
24
26
|
export type account_listOutput = { readonly "items": ReadonlyArray<{ readonly "accountId": string; readonly "tenantId": string; readonly "id": string; readonly "role"?: "tenant_billing" | "tenant_credit" | "tenant_settlement" | "tenant_master_mirror" | "customer_balance" | "customer_investment" | "instrument_account" | "product_escrow" | "product_pool" | "product_credit" | "product_revenue" | "platform_estate_mirror" | "platform_revenue" | "provider_payable" | "platform_suspense"; readonly "currency"?: string; readonly "status"?: "pending" | "open" | "frozen" | "closed"; readonly "ownerParticipantId"?: string; readonly "book"?: string; readonly "external"?: boolean; readonly "beneficiaryId"?: string; readonly "ownerKind"?: "platform" | "tenant" | "customer" | "product" | "external"; readonly "ownerCustomerId"?: string; readonly "updatedAt": string; readonly "createdAt"?: string; }>; readonly "nextCursor"?: string; readonly "statusCounts"?: { readonly [key: string]: number }; };
|
|
25
27
|
export type account_retrieveInput = { readonly "productId"?: string; readonly "accountId": string; };
|
|
26
28
|
export type account_retrieveOutput = { readonly "item": { readonly "accountId": string; readonly "tenantId": string; readonly "id": string; readonly "role"?: "tenant_billing" | "tenant_credit" | "tenant_settlement" | "tenant_master_mirror" | "customer_balance" | "customer_investment" | "instrument_account" | "product_escrow" | "product_pool" | "product_credit" | "product_revenue" | "platform_estate_mirror" | "platform_revenue" | "provider_payable" | "platform_suspense"; readonly "currency"?: string; readonly "status"?: "pending" | "open" | "frozen" | "closed"; readonly "ownerParticipantId"?: string; readonly "book"?: string; readonly "external"?: boolean; readonly "beneficiaryId"?: string; readonly "ownerKind"?: "platform" | "tenant" | "customer" | "product" | "external"; readonly "ownerCustomerId"?: string; readonly "updatedAt": string; readonly "createdAt"?: string; }; };
|
|
@@ -30,26 +32,16 @@ export type account_statement_retrieveInput = { readonly "accountId": string; re
|
|
|
30
32
|
export type account_statement_retrieveOutput = { readonly "accountId": string; readonly "closingBalance": string; readonly "currency": string; readonly "environment": "sandbox" | "live"; readonly "finalized": boolean; readonly "openingBalance": string; readonly "period": string; readonly "periodEndExclusive": string; readonly "periodStart": string; readonly "tenantId": string; readonly "productId"?: string; readonly "lines": ReadonlyArray<{ readonly "amount": string; readonly "balanceDelta": string; readonly "counterpartyAccountId": string; readonly "counterpartyDisplayName": string; readonly "currency": string; readonly "direction": "debit" | "credit"; readonly "entryId": string; readonly "memo": string; readonly "occurredAt": string; readonly "operationId": string; readonly "operationName": string; readonly "origin"?: { readonly "instrumentId": string; readonly "instrumentInstanceId": string; readonly "action": string; }; readonly "runningBalance": string; readonly "status": "pending" | "posted" | "voided"; readonly "transferId": string; }>; };
|
|
31
33
|
export type account_unfreezeInput = { readonly "accountId": string; readonly "reason": string; };
|
|
32
34
|
export type account_unfreezeOutput = { readonly "tenantId": string; readonly "accountId": string; readonly "productId"?: string; readonly "updatedAt": string; readonly "reason": string; readonly "previousStatus": "frozen"; readonly "status": "open"; };
|
|
33
|
-
export type activity_listInput = { readonly "productId"?: string; readonly "operation"?: string; readonly "status"?: "accepted" | "pending" | "succeeded" | "failed"; readonly "resourceKind"?: "account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "
|
|
34
|
-
export type activity_listOutput = { readonly "items": ReadonlyArray<({ readonly "activityId": string; readonly "occurredAt": string; readonly "receiptId"?: string; readonly "requestId"?: string; readonly "sourceSurface"?: string; readonly "evidence": ReadonlyArray<{ readonly "kind": "ledger" | "local" | "external"; readonly "reference": string; readonly "externalConfirmationId"?: string; readonly "provider"?: string; readonly "providerReference"?: string; readonly "resourceKind"?: "account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "entity_kyc_profile" | "expected_payment" | "instrument_instance" | "operation" | "payout" | "beneficiary_verification" | "product" | "customer_access" | "customer_session" | "external_confirmation" | "provider_cost_event" | "provider_webhook_event" | "webhook_endpoint" | "webhook_delivery" | "receipt" | "tenant" | "tenant_catalog_revision" | "subject" | "subject_kind" | "statement_line" | "reconciliation_run" | "reconciliation_break" | "reporting_artifact" | "str_case" | "wedged_money_repair" | "reconciliation_break_repair" | "attribution_queue" | "user_session" | "internal_transfer" | "usage" | "billing_adjustment" | "meter_rate_discount" | "platform_alert" | "platform_rate_override" | "billing_period" | "billing_subscription" | "invoice" | "invoice_line" | "meter_period_snapshot" | "trust_review" | "trust_evidence" | "trust_requirement" | "trust_review_subject" | "support_ticket" | "support_ticket_message" | "support_booking" | "support_plan_selection" | "tenant_bank_connection"; readonly "resourceId"?: string; readonly "operationId"?: string; readonly "operation"?: { readonly "id": string; readonly "name"?: string; readonly "status"?: string; }; readonly "status"?: string; readonly "occurredAt"?: string; readonly "proof"?: { readonly [key: string]: unknown }; }>; readonly "errorEnvelope"?: { readonly "code": string; readonly "message": string; readonly "status": number; readonly "details"?: unknown; }; readonly "timeline": ReadonlyArray<{ readonly "kind": string; readonly "reference"?: string; readonly "externalConfirmationId"?: string; readonly "provider"?: string; readonly "providerReference"?: string; readonly "resourceKind"?: ("account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "entity_kyc_profile" | "expected_payment" | "instrument_instance" | "operation" | "payout" | "beneficiary_verification" | "product" | "customer_access" | "customer_session" | "external_confirmation" | "provider_cost_event" | "provider_webhook_event" | "webhook_endpoint" | "webhook_delivery" | "receipt" | "tenant" | "tenant_catalog_revision" | "subject" | "subject_kind" | "statement_line" | "reconciliation_run" | "reconciliation_break" | "reporting_artifact" | "str_case" | "wedged_money_repair" | "reconciliation_break_repair" | "attribution_queue" | "user_session" | "internal_transfer" | "usage" | "billing_adjustment" | "meter_rate_discount" | "platform_alert" | "platform_rate_override" | "billing_period" | "billing_subscription" | "invoice" | "invoice_line" | "meter_period_snapshot" | "trust_review" | "trust_evidence" | "trust_requirement" | "trust_review_subject" | "support_ticket" | "support_ticket_message" | "support_booking" | "support_plan_selection" | "tenant_bank_connection" | "team" | "team_membership" | "user" | null); readonly "resourceId"?: (string | null); readonly "operationId"?: string; readonly "operation"?: { readonly "id": string; readonly "name"?: string; readonly "status"?: string; }; readonly "status"?: string; readonly "occurredAt"?: string; readonly "proof"?: { readonly [key: string]: unknown }; readonly "usageRecordId"?: string; readonly "meter"?: "account.active_month" | "account.created.count" | "financial_address.issued.count" | "financial_address.active_month" | "transfer.internal.count" | "transfer.internal.volume_sar" | "transfer.internal.volume_usd" | "transfer.internal.volume_eur" | "transfer.internal.volume_gbp" | "deposit.attributed.count" | "deposit.attributed.volume_sar" | "deposit.attributed.volume_usd" | "deposit.attributed.volume_eur" | "deposit.attributed.volume_gbp" | "payout.external.count" | "payout.external.volume_sar" | "payout.external.volume_usd" | "payout.external.volume_eur" | "payout.external.volume_gbp" | "collection.pay_in.count" | "collection.pay_in.volume_sar" | "collection.pay_in.volume_usd" | "collection.pay_in.volume_eur" | "collection.pay_in.volume_gbp" | "instrument.event.count" | "kyb.application.review" | "verification.kyc.basic.count" | "verification.kyc.standard.count" | "verification.kyc.investment.count" | "verification.kyb.count" | "operation.executed.count" | "api.read.count" | "billing.invoice.settlement" | "billing.plan.recurring_month" | "billing.product.activation"; readonly "quantity"?: string; readonly "sourceEventId"?: string; readonly "sourceOperationId"?: string; readonly "productId"?: string; readonly "operationName"?: string; readonly "receiptId"?: string; readonly "type"?: string; readonly "finalizedAt"?: (string | null); readonly "auditEventId"?: string; readonly "event"?: string; readonly "level"?: string; readonly "body"?: { readonly [key: string]: unknown }; } & { readonly [key: string]: unknown }>; readonly "usage": ReadonlyArray<{ readonly "usageRecordId": string; readonly "meter": "account.active_month" | "account.created.count" | "financial_address.issued.count" | "financial_address.active_month" | "transfer.internal.count" | "transfer.internal.volume_sar" | "transfer.internal.volume_usd" | "transfer.internal.volume_eur" | "transfer.internal.volume_gbp" | "deposit.attributed.count" | "deposit.attributed.volume_sar" | "deposit.attributed.volume_usd" | "deposit.attributed.volume_eur" | "deposit.attributed.volume_gbp" | "payout.external.count" | "payout.external.volume_sar" | "payout.external.volume_usd" | "payout.external.volume_eur" | "payout.external.volume_gbp" | "collection.pay_in.count" | "collection.pay_in.volume_sar" | "collection.pay_in.volume_usd" | "collection.pay_in.volume_eur" | "collection.pay_in.volume_gbp" | "instrument.event.count" | "kyb.application.review" | "verification.kyc.basic.count" | "verification.kyc.standard.count" | "verification.kyc.investment.count" | "verification.kyb.count" | "operation.executed.count" | "api.read.count" | "billing.invoice.settlement" | "billing.plan.recurring_month" | "billing.product.activation"; readonly "quantity": string; readonly "sourceEventId"?: string; readonly "sourceOperationId"?: string; readonly "productId"?: string; readonly "occurredAt": string; }>; readonly "operationId": string; readonly "operation": string; readonly "status": "accepted" | "pending" | "succeeded" | "failed"; readonly "resource"?: { readonly "kind": "account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "entity_kyc_profile" | "expected_payment" | "instrument_instance" | "operation" | "payout" | "beneficiary_verification" | "product" | "customer_access" | "customer_session" | "external_confirmation" | "provider_cost_event" | "provider_webhook_event" | "webhook_endpoint" | "webhook_delivery" | "receipt" | "tenant" | "tenant_catalog_revision" | "subject" | "subject_kind" | "statement_line" | "reconciliation_run" | "reconciliation_break" | "reporting_artifact" | "str_case" | "wedged_money_repair" | "reconciliation_break_repair" | "attribution_queue" | "user_session" | "internal_transfer" | "usage" | "billing_adjustment" | "meter_rate_discount" | "platform_alert" | "platform_rate_override" | "billing_period" | "billing_subscription" | "invoice" | "invoice_line" | "meter_period_snapshot" | "trust_review" | "trust_evidence" | "trust_requirement" | "trust_review_subject" | "support_ticket" | "support_ticket_message" | "support_booking" | "support_plan_selection" | "tenant_bank_connection"; readonly "id"?: string; }; readonly "resourceKind"?: "account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "entity_kyc_profile" | "expected_payment" | "instrument_instance" | "operation" | "payout" | "beneficiary_verification" | "product" | "customer_access" | "customer_session" | "external_confirmation" | "provider_cost_event" | "provider_webhook_event" | "webhook_endpoint" | "webhook_delivery" | "receipt" | "tenant" | "tenant_catalog_revision" | "subject" | "subject_kind" | "statement_line" | "reconciliation_run" | "reconciliation_break" | "reporting_artifact" | "str_case" | "wedged_money_repair" | "reconciliation_break_repair" | "attribution_queue" | "user_session" | "internal_transfer" | "usage" | "billing_adjustment" | "meter_rate_discount" | "platform_alert" | "platform_rate_override" | "billing_period" | "billing_subscription" | "invoice" | "invoice_line" | "meter_period_snapshot" | "trust_review" | "trust_evidence" | "trust_requirement" | "trust_review_subject" | "support_ticket" | "support_ticket_message" | "support_booking" | "support_plan_selection" | "tenant_bank_connection"; readonly "resourceId"?: string; readonly "receipt"?: { readonly "id": string; readonly "status": string; readonly "type": string; readonly "finalizedAt": (string | null); }; readonly "auditEvent"?: string; } | { readonly "activityId": string; readonly "occurredAt": string; readonly "receiptId"?: string; readonly "requestId"?: string; readonly "sourceSurface"?: string; readonly "evidence": ReadonlyArray<{ readonly "kind": "ledger" | "local" | "external"; readonly "reference": string; readonly "externalConfirmationId"?: string; readonly "provider"?: string; readonly "providerReference"?: string; readonly "resourceKind"?: "account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "entity_kyc_profile" | "expected_payment" | "instrument_instance" | "operation" | "payout" | "beneficiary_verification" | "product" | "customer_access" | "customer_session" | "external_confirmation" | "provider_cost_event" | "provider_webhook_event" | "webhook_endpoint" | "webhook_delivery" | "receipt" | "tenant" | "tenant_catalog_revision" | "subject" | "subject_kind" | "statement_line" | "reconciliation_run" | "reconciliation_break" | "reporting_artifact" | "str_case" | "wedged_money_repair" | "reconciliation_break_repair" | "attribution_queue" | "user_session" | "internal_transfer" | "usage" | "billing_adjustment" | "meter_rate_discount" | "platform_alert" | "platform_rate_override" | "billing_period" | "billing_subscription" | "invoice" | "invoice_line" | "meter_period_snapshot" | "trust_review" | "trust_evidence" | "trust_requirement" | "trust_review_subject" | "support_ticket" | "support_ticket_message" | "support_booking" | "support_plan_selection" | "tenant_bank_connection"; readonly "resourceId"?: string; readonly "operationId"?: string; readonly "operation"?: { readonly "id": string; readonly "name"?: string; readonly "status"?: string; }; readonly "status"?: string; readonly "occurredAt"?: string; readonly "proof"?: { readonly [key: string]: unknown }; }>; readonly "errorEnvelope"?: { readonly "code": string; readonly "message": string; readonly "status": number; readonly "details"?: unknown; }; readonly "timeline": ReadonlyArray<{ readonly "kind": string; readonly "reference"?: string; readonly "externalConfirmationId"?: string; readonly "provider"?: string; readonly "providerReference"?: string; readonly "resourceKind"?: ("account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "entity_kyc_profile" | "expected_payment" | "instrument_instance" | "operation" | "payout" | "beneficiary_verification" | "product" | "customer_access" | "customer_session" | "external_confirmation" | "provider_cost_event" | "provider_webhook_event" | "webhook_endpoint" | "webhook_delivery" | "receipt" | "tenant" | "tenant_catalog_revision" | "subject" | "subject_kind" | "statement_line" | "reconciliation_run" | "reconciliation_break" | "reporting_artifact" | "str_case" | "wedged_money_repair" | "reconciliation_break_repair" | "attribution_queue" | "user_session" | "internal_transfer" | "usage" | "billing_adjustment" | "meter_rate_discount" | "platform_alert" | "platform_rate_override" | "billing_period" | "billing_subscription" | "invoice" | "invoice_line" | "meter_period_snapshot" | "trust_review" | "trust_evidence" | "trust_requirement" | "trust_review_subject" | "support_ticket" | "support_ticket_message" | "support_booking" | "support_plan_selection" | "tenant_bank_connection" | "team" | "team_membership" | "user" | null); readonly "resourceId"?: (string | null); readonly "operationId"?: string; readonly "operation"?: { readonly "id": string; readonly "name"?: string; readonly "status"?: string; }; readonly "status"?: string; readonly "occurredAt"?: string; readonly "proof"?: { readonly [key: string]: unknown }; readonly "usageRecordId"?: string; readonly "meter"?: "account.active_month" | "account.created.count" | "financial_address.issued.count" | "financial_address.active_month" | "transfer.internal.count" | "transfer.internal.volume_sar" | "transfer.internal.volume_usd" | "transfer.internal.volume_eur" | "transfer.internal.volume_gbp" | "deposit.attributed.count" | "deposit.attributed.volume_sar" | "deposit.attributed.volume_usd" | "deposit.attributed.volume_eur" | "deposit.attributed.volume_gbp" | "payout.external.count" | "payout.external.volume_sar" | "payout.external.volume_usd" | "payout.external.volume_eur" | "payout.external.volume_gbp" | "collection.pay_in.count" | "collection.pay_in.volume_sar" | "collection.pay_in.volume_usd" | "collection.pay_in.volume_eur" | "collection.pay_in.volume_gbp" | "instrument.event.count" | "kyb.application.review" | "verification.kyc.basic.count" | "verification.kyc.standard.count" | "verification.kyc.investment.count" | "verification.kyb.count" | "operation.executed.count" | "api.read.count" | "billing.invoice.settlement" | "billing.plan.recurring_month" | "billing.product.activation"; readonly "quantity"?: string; readonly "sourceEventId"?: string; readonly "sourceOperationId"?: string; readonly "productId"?: string; readonly "operationName"?: string; readonly "receiptId"?: string; readonly "type"?: string; readonly "finalizedAt"?: (string | null); readonly "auditEventId"?: string; readonly "event"?: string; readonly "level"?: string; readonly "body"?: { readonly [key: string]: unknown }; } & { readonly [key: string]: unknown }>; readonly "usage": ReadonlyArray<{ readonly "usageRecordId": string; readonly "meter": "account.active_month" | "account.created.count" | "financial_address.issued.count" | "financial_address.active_month" | "transfer.internal.count" | "transfer.internal.volume_sar" | "transfer.internal.volume_usd" | "transfer.internal.volume_eur" | "transfer.internal.volume_gbp" | "deposit.attributed.count" | "deposit.attributed.volume_sar" | "deposit.attributed.volume_usd" | "deposit.attributed.volume_eur" | "deposit.attributed.volume_gbp" | "payout.external.count" | "payout.external.volume_sar" | "payout.external.volume_usd" | "payout.external.volume_eur" | "payout.external.volume_gbp" | "collection.pay_in.count" | "collection.pay_in.volume_sar" | "collection.pay_in.volume_usd" | "collection.pay_in.volume_eur" | "collection.pay_in.volume_gbp" | "instrument.event.count" | "kyb.application.review" | "verification.kyc.basic.count" | "verification.kyc.standard.count" | "verification.kyc.investment.count" | "verification.kyb.count" | "operation.executed.count" | "api.read.count" | "billing.invoice.settlement" | "billing.plan.recurring_month" | "billing.product.activation"; readonly "quantity": string; readonly "sourceEventId"?: string; readonly "sourceOperationId"?: string; readonly "productId"?: string; readonly "occurredAt": string; }>; readonly "operationId": null; readonly "resourceKind"?: "account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "entity_kyc_profile" | "expected_payment" | "instrument_instance" | "operation" | "payout" | "beneficiary_verification" | "product" | "customer_access" | "customer_session" | "external_confirmation" | "provider_cost_event" | "provider_webhook_event" | "webhook_endpoint" | "webhook_delivery" | "receipt" | "tenant" | "tenant_catalog_revision" | "subject" | "subject_kind" | "statement_line" | "reconciliation_run" | "reconciliation_break" | "reporting_artifact" | "str_case" | "wedged_money_repair" | "reconciliation_break_repair" | "attribution_queue" | "user_session" | "internal_transfer" | "usage" | "billing_adjustment" | "meter_rate_discount" | "platform_alert" | "platform_rate_override" | "billing_period" | "billing_subscription" | "invoice" | "invoice_line" | "meter_period_snapshot" | "trust_review" | "trust_evidence" | "trust_requirement" | "trust_review_subject" | "support_ticket" | "support_ticket_message" | "support_booking" | "support_plan_selection" | "tenant_bank_connection" | "team" | "team_membership" | "user"; readonly "resourceId"?: string; readonly "auditEventId": string; readonly "auditEvent": string; readonly "auditEventBody"?: { readonly [key: string]: unknown }; })>; readonly "nextCursor"?: string; };
|
|
35
|
+
export type activity_listInput = { readonly "productId"?: string; readonly "operation"?: string; readonly "status"?: "accepted" | "pending" | "succeeded" | "failed"; readonly "resourceKind"?: "account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "expected_payment" | "instrument_instance" | "business_object" | "operation" | "payout" | "product" | "customer_access" | "customer_session" | "external_confirmation" | "provider_cost_event" | "provider_webhook_event" | "webhook_endpoint" | "webhook_delivery" | "receipt" | "tenant" | "tenant_catalog_revision" | "statement_line" | "reconciliation_run" | "reconciliation_break" | "reporting_artifact" | "str_case" | "wedged_money_repair" | "reconciliation_break_repair" | "attribution_queue" | "user_session" | "internal_transfer" | "usage" | "billing_adjustment" | "meter_rate_discount" | "platform_alert" | "platform_rate_override" | "billing_period" | "billing_subscription" | "invoice" | "invoice_line" | "meter_period_snapshot" | "trust_review" | "trust_evidence" | "trust_requirement" | "trust_review_subject" | "support_ticket" | "support_ticket_message" | "support_booking" | "support_plan_selection" | "team" | "team_membership" | "user"; readonly "resourceId"?: string; readonly "createdFrom"?: string; readonly "createdTo"?: string; readonly "limit"?: number; readonly "cursor"?: string; };
|
|
36
|
+
export type activity_listOutput = { readonly "items": ReadonlyArray<({ readonly "activityId": string; readonly "occurredAt": string; readonly "receiptId"?: string; readonly "requestId"?: string; readonly "sourceSurface"?: string; readonly "evidence": ReadonlyArray<{ readonly "kind": "ledger" | "local" | "external"; readonly "reference": string; readonly "externalConfirmationId"?: string; readonly "provider"?: string; readonly "providerReference"?: string; readonly "resourceKind"?: "account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "expected_payment" | "instrument_instance" | "business_object" | "operation" | "payout" | "product" | "customer_access" | "customer_session" | "external_confirmation" | "provider_cost_event" | "provider_webhook_event" | "webhook_endpoint" | "webhook_delivery" | "receipt" | "tenant" | "tenant_catalog_revision" | "statement_line" | "reconciliation_run" | "reconciliation_break" | "reporting_artifact" | "str_case" | "wedged_money_repair" | "reconciliation_break_repair" | "attribution_queue" | "user_session" | "internal_transfer" | "usage" | "billing_adjustment" | "meter_rate_discount" | "platform_alert" | "platform_rate_override" | "billing_period" | "billing_subscription" | "invoice" | "invoice_line" | "meter_period_snapshot" | "trust_review" | "trust_evidence" | "trust_requirement" | "trust_review_subject" | "support_ticket" | "support_ticket_message" | "support_booking" | "support_plan_selection"; readonly "resourceId"?: string; readonly "operationId"?: string; readonly "operation"?: { readonly "id": string; readonly "name"?: string; readonly "status"?: string; }; readonly "status"?: string; readonly "occurredAt"?: string; readonly "proof"?: { readonly [key: string]: unknown }; }>; readonly "errorEnvelope"?: { readonly "code": string; readonly "message": string; readonly "status": number; readonly "details"?: unknown; }; readonly "timeline": ReadonlyArray<{ readonly "kind": string; readonly "reference"?: string; readonly "externalConfirmationId"?: string; readonly "provider"?: string; readonly "providerReference"?: string; readonly "resourceKind"?: ("account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "expected_payment" | "instrument_instance" | "business_object" | "operation" | "payout" | "product" | "customer_access" | "customer_session" | "external_confirmation" | "provider_cost_event" | "provider_webhook_event" | "webhook_endpoint" | "webhook_delivery" | "receipt" | "tenant" | "tenant_catalog_revision" | "statement_line" | "reconciliation_run" | "reconciliation_break" | "reporting_artifact" | "str_case" | "wedged_money_repair" | "reconciliation_break_repair" | "attribution_queue" | "user_session" | "internal_transfer" | "usage" | "billing_adjustment" | "meter_rate_discount" | "platform_alert" | "platform_rate_override" | "billing_period" | "billing_subscription" | "invoice" | "invoice_line" | "meter_period_snapshot" | "trust_review" | "trust_evidence" | "trust_requirement" | "trust_review_subject" | "support_ticket" | "support_ticket_message" | "support_booking" | "support_plan_selection" | "team" | "team_membership" | "user" | null); readonly "resourceId"?: (string | null); readonly "operationId"?: string; readonly "operation"?: { readonly "id": string; readonly "name"?: string; readonly "status"?: string; }; readonly "status"?: string; readonly "occurredAt"?: string; readonly "proof"?: { readonly [key: string]: unknown }; readonly "usageRecordId"?: string; readonly "meter"?: "account.active_month" | "account.created.count" | "transfer.internal.count" | "transfer.internal.volume_sar" | "transfer.internal.volume_usd" | "transfer.internal.volume_eur" | "transfer.internal.volume_gbp" | "instrument.event.count" | "kyb.application.review" | "verification.kyb.count" | "operation.executed.count" | "billing.invoice.settlement" | "billing.plan.recurring_month" | "billing.product.activation"; readonly "quantity"?: string; readonly "sourceEventId"?: string; readonly "sourceOperationId"?: string; readonly "productId"?: string; readonly "operationName"?: string; readonly "receiptId"?: string; readonly "type"?: string; readonly "finalizedAt"?: (string | null); readonly "auditEventId"?: string; readonly "event"?: string; readonly "level"?: string; readonly "body"?: { readonly [key: string]: unknown }; } & { readonly [key: string]: unknown }>; readonly "usage": ReadonlyArray<{ readonly "usageRecordId": string; readonly "meter": "account.active_month" | "account.created.count" | "transfer.internal.count" | "transfer.internal.volume_sar" | "transfer.internal.volume_usd" | "transfer.internal.volume_eur" | "transfer.internal.volume_gbp" | "instrument.event.count" | "kyb.application.review" | "verification.kyb.count" | "operation.executed.count" | "billing.invoice.settlement" | "billing.plan.recurring_month" | "billing.product.activation"; readonly "quantity": string; readonly "sourceEventId"?: string; readonly "sourceOperationId"?: string; readonly "productId"?: string; readonly "occurredAt": string; }>; readonly "operationId": string; readonly "operation": string; readonly "status": "accepted" | "pending" | "succeeded" | "failed"; readonly "resource"?: { readonly "kind": "account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "expected_payment" | "instrument_instance" | "business_object" | "operation" | "payout" | "product" | "customer_access" | "customer_session" | "external_confirmation" | "provider_cost_event" | "provider_webhook_event" | "webhook_endpoint" | "webhook_delivery" | "receipt" | "tenant" | "tenant_catalog_revision" | "statement_line" | "reconciliation_run" | "reconciliation_break" | "reporting_artifact" | "str_case" | "wedged_money_repair" | "reconciliation_break_repair" | "attribution_queue" | "user_session" | "internal_transfer" | "usage" | "billing_adjustment" | "meter_rate_discount" | "platform_alert" | "platform_rate_override" | "billing_period" | "billing_subscription" | "invoice" | "invoice_line" | "meter_period_snapshot" | "trust_review" | "trust_evidence" | "trust_requirement" | "trust_review_subject" | "support_ticket" | "support_ticket_message" | "support_booking" | "support_plan_selection"; readonly "id"?: string; }; readonly "resourceKind"?: "account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "expected_payment" | "instrument_instance" | "business_object" | "operation" | "payout" | "product" | "customer_access" | "customer_session" | "external_confirmation" | "provider_cost_event" | "provider_webhook_event" | "webhook_endpoint" | "webhook_delivery" | "receipt" | "tenant" | "tenant_catalog_revision" | "statement_line" | "reconciliation_run" | "reconciliation_break" | "reporting_artifact" | "str_case" | "wedged_money_repair" | "reconciliation_break_repair" | "attribution_queue" | "user_session" | "internal_transfer" | "usage" | "billing_adjustment" | "meter_rate_discount" | "platform_alert" | "platform_rate_override" | "billing_period" | "billing_subscription" | "invoice" | "invoice_line" | "meter_period_snapshot" | "trust_review" | "trust_evidence" | "trust_requirement" | "trust_review_subject" | "support_ticket" | "support_ticket_message" | "support_booking" | "support_plan_selection"; readonly "resourceId"?: string; readonly "receipt"?: { readonly "id": string; readonly "status": string; readonly "type": string; readonly "finalizedAt": (string | null); }; readonly "auditEvent"?: string; } | { readonly "activityId": string; readonly "occurredAt": string; readonly "receiptId"?: string; readonly "requestId"?: string; readonly "sourceSurface"?: string; readonly "evidence": ReadonlyArray<{ readonly "kind": "ledger" | "local" | "external"; readonly "reference": string; readonly "externalConfirmationId"?: string; readonly "provider"?: string; readonly "providerReference"?: string; readonly "resourceKind"?: "account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "expected_payment" | "instrument_instance" | "business_object" | "operation" | "payout" | "product" | "customer_access" | "customer_session" | "external_confirmation" | "provider_cost_event" | "provider_webhook_event" | "webhook_endpoint" | "webhook_delivery" | "receipt" | "tenant" | "tenant_catalog_revision" | "statement_line" | "reconciliation_run" | "reconciliation_break" | "reporting_artifact" | "str_case" | "wedged_money_repair" | "reconciliation_break_repair" | "attribution_queue" | "user_session" | "internal_transfer" | "usage" | "billing_adjustment" | "meter_rate_discount" | "platform_alert" | "platform_rate_override" | "billing_period" | "billing_subscription" | "invoice" | "invoice_line" | "meter_period_snapshot" | "trust_review" | "trust_evidence" | "trust_requirement" | "trust_review_subject" | "support_ticket" | "support_ticket_message" | "support_booking" | "support_plan_selection"; readonly "resourceId"?: string; readonly "operationId"?: string; readonly "operation"?: { readonly "id": string; readonly "name"?: string; readonly "status"?: string; }; readonly "status"?: string; readonly "occurredAt"?: string; readonly "proof"?: { readonly [key: string]: unknown }; }>; readonly "errorEnvelope"?: { readonly "code": string; readonly "message": string; readonly "status": number; readonly "details"?: unknown; }; readonly "timeline": ReadonlyArray<{ readonly "kind": string; readonly "reference"?: string; readonly "externalConfirmationId"?: string; readonly "provider"?: string; readonly "providerReference"?: string; readonly "resourceKind"?: ("account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "expected_payment" | "instrument_instance" | "business_object" | "operation" | "payout" | "product" | "customer_access" | "customer_session" | "external_confirmation" | "provider_cost_event" | "provider_webhook_event" | "webhook_endpoint" | "webhook_delivery" | "receipt" | "tenant" | "tenant_catalog_revision" | "statement_line" | "reconciliation_run" | "reconciliation_break" | "reporting_artifact" | "str_case" | "wedged_money_repair" | "reconciliation_break_repair" | "attribution_queue" | "user_session" | "internal_transfer" | "usage" | "billing_adjustment" | "meter_rate_discount" | "platform_alert" | "platform_rate_override" | "billing_period" | "billing_subscription" | "invoice" | "invoice_line" | "meter_period_snapshot" | "trust_review" | "trust_evidence" | "trust_requirement" | "trust_review_subject" | "support_ticket" | "support_ticket_message" | "support_booking" | "support_plan_selection" | "team" | "team_membership" | "user" | null); readonly "resourceId"?: (string | null); readonly "operationId"?: string; readonly "operation"?: { readonly "id": string; readonly "name"?: string; readonly "status"?: string; }; readonly "status"?: string; readonly "occurredAt"?: string; readonly "proof"?: { readonly [key: string]: unknown }; readonly "usageRecordId"?: string; readonly "meter"?: "account.active_month" | "account.created.count" | "transfer.internal.count" | "transfer.internal.volume_sar" | "transfer.internal.volume_usd" | "transfer.internal.volume_eur" | "transfer.internal.volume_gbp" | "instrument.event.count" | "kyb.application.review" | "verification.kyb.count" | "operation.executed.count" | "billing.invoice.settlement" | "billing.plan.recurring_month" | "billing.product.activation"; readonly "quantity"?: string; readonly "sourceEventId"?: string; readonly "sourceOperationId"?: string; readonly "productId"?: string; readonly "operationName"?: string; readonly "receiptId"?: string; readonly "type"?: string; readonly "finalizedAt"?: (string | null); readonly "auditEventId"?: string; readonly "event"?: string; readonly "level"?: string; readonly "body"?: { readonly [key: string]: unknown }; } & { readonly [key: string]: unknown }>; readonly "usage": ReadonlyArray<{ readonly "usageRecordId": string; readonly "meter": "account.active_month" | "account.created.count" | "transfer.internal.count" | "transfer.internal.volume_sar" | "transfer.internal.volume_usd" | "transfer.internal.volume_eur" | "transfer.internal.volume_gbp" | "instrument.event.count" | "kyb.application.review" | "verification.kyb.count" | "operation.executed.count" | "billing.invoice.settlement" | "billing.plan.recurring_month" | "billing.product.activation"; readonly "quantity": string; readonly "sourceEventId"?: string; readonly "sourceOperationId"?: string; readonly "productId"?: string; readonly "occurredAt": string; }>; readonly "operationId": null; readonly "resourceKind"?: "account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "expected_payment" | "instrument_instance" | "business_object" | "operation" | "payout" | "product" | "customer_access" | "customer_session" | "external_confirmation" | "provider_cost_event" | "provider_webhook_event" | "webhook_endpoint" | "webhook_delivery" | "receipt" | "tenant" | "tenant_catalog_revision" | "statement_line" | "reconciliation_run" | "reconciliation_break" | "reporting_artifact" | "str_case" | "wedged_money_repair" | "reconciliation_break_repair" | "attribution_queue" | "user_session" | "internal_transfer" | "usage" | "billing_adjustment" | "meter_rate_discount" | "platform_alert" | "platform_rate_override" | "billing_period" | "billing_subscription" | "invoice" | "invoice_line" | "meter_period_snapshot" | "trust_review" | "trust_evidence" | "trust_requirement" | "trust_review_subject" | "support_ticket" | "support_ticket_message" | "support_booking" | "support_plan_selection" | "team" | "team_membership" | "user"; readonly "resourceId"?: string; readonly "auditEventId": string; readonly "auditEvent": string; readonly "auditEventBody"?: { readonly [key: string]: unknown }; })>; readonly "nextCursor"?: string; };
|
|
35
37
|
export type audit_event_listInput = { readonly "productId"?: string; readonly "limit"?: number; readonly "cursor"?: string; readonly "query"?: string; readonly "createdFrom"?: string; readonly "createdTo"?: string; };
|
|
36
38
|
export type audit_event_listOutput = { readonly "items": ReadonlyArray<{ readonly "auditEventId": string; readonly "tenantId": string; readonly "event"?: string; readonly "principalId"?: string; readonly "userId"?: string; readonly "operationId"?: string; readonly "requestId"?: string; readonly "resourceKind"?: string; readonly "resourceId"?: string; readonly "digest"?: string; readonly "prevDigest"?: string; readonly "chainVersion": string; readonly "createdAt"?: string; }>; readonly "nextCursor"?: string; readonly "statusCounts"?: { readonly [key: string]: number }; };
|
|
37
39
|
export type audit_event_retrieveInput = { readonly "productId"?: string; readonly "auditEventId": string; };
|
|
38
40
|
export type audit_event_retrieveOutput = { readonly "item": { readonly "auditEventId": string; readonly "tenantId": string; readonly "event"?: string; readonly "principalId"?: string; readonly "userId"?: string; readonly "operationId"?: string; readonly "requestId"?: string; readonly "resourceKind"?: string; readonly "resourceId"?: string; readonly "digest"?: string; readonly "prevDigest"?: string; readonly "chainVersion": string; readonly "createdAt"?: string; }; };
|
|
39
|
-
export type beneficiary_createInput = { readonly "ownerParticipantId": string; readonly "beneficiaryId"?: string; readonly "name": string; readonly "accountAddress": string; readonly "metadata"?: beneficiary_createInput_Metadata; };
|
|
40
|
-
type beneficiary_createInput_Metadata = { readonly [key: string]: beneficiary_createInput_MetadataValue };
|
|
41
|
-
type beneficiary_createInput_MetadataValue = (beneficiary_createInput_MetadataScalar | ReadonlyArray<beneficiary_createInput_MetadataScalar> | { readonly [key: string]: beneficiary_createInput_MetadataScalar });
|
|
42
|
-
type beneficiary_createInput_MetadataScalar = (string | number | boolean | null);
|
|
43
|
-
export type beneficiary_createOutput = { readonly "beneficiaryId": string; readonly "tenantId": string; readonly "ownerParticipantId": string; readonly "name": string; readonly "accountAddress": string; readonly "status": "pending"; readonly "createdAt": string; readonly "metadata": beneficiary_createOutput_Metadata; };
|
|
44
|
-
type beneficiary_createOutput_Metadata = { readonly [key: string]: beneficiary_createOutput_MetadataValue };
|
|
45
|
-
type beneficiary_createOutput_MetadataValue = (beneficiary_createOutput_MetadataScalar | ReadonlyArray<beneficiary_createOutput_MetadataScalar> | { readonly [key: string]: beneficiary_createOutput_MetadataScalar });
|
|
46
|
-
type beneficiary_createOutput_MetadataScalar = (string | number | boolean | null);
|
|
47
41
|
export type beneficiary_listInput = { readonly "limit"?: number; readonly "cursor"?: string; readonly "query"?: string; readonly "createdFrom"?: string; readonly "createdTo"?: string; readonly "status"?: "pending" | "active" | "disabled"; };
|
|
48
42
|
export type beneficiary_listOutput = { readonly "items": ReadonlyArray<{ readonly "beneficiaryId": string; readonly "tenantId": string; readonly "name"?: string; readonly "ownerParticipantId"?: string; readonly "accountAddress"?: string; readonly "status"?: "pending" | "active" | "disabled"; readonly "createdAt"?: string; }>; readonly "nextCursor"?: string; readonly "statusCounts"?: { readonly [key: string]: number }; };
|
|
49
43
|
export type beneficiary_retrieveInput = { readonly "beneficiaryId": string; };
|
|
50
44
|
export type beneficiary_retrieveOutput = { readonly "item": { readonly "beneficiaryId": string; readonly "tenantId": string; readonly "name"?: string; readonly "ownerParticipantId"?: string; readonly "accountAddress"?: string; readonly "status"?: "pending" | "active" | "disabled"; readonly "createdAt"?: string; }; };
|
|
51
|
-
export type beneficiary_verifyInput = { readonly "iban": string; readonly "beneficiaryName": string; };
|
|
52
|
-
export type beneficiary_verifyOutput = { readonly "beneficiaryVerificationId": string; readonly "tenantId": string; readonly "iban": string; readonly "beneficiaryName": string; readonly "matchGrade": "full_match" | "close_match" | "no_match" | "unavailable"; };
|
|
53
45
|
export type billing_adjustment_listInput = { readonly "productId"?: string; readonly "limit"?: number; readonly "cursor"?: string; readonly "query"?: string; readonly "createdFrom"?: string; readonly "createdTo"?: string; readonly "status"?: "draft" | "applied" | "voided"; };
|
|
54
46
|
export type billing_adjustment_listOutput = { readonly "items": ReadonlyArray<{ readonly "billingAdjustmentId": string; readonly "tenantId": string; readonly "id": string; readonly "type"?: string; readonly "direction"?: string; readonly "status"?: "draft" | "applied" | "voided"; readonly "amount"?: string; readonly "currency"?: string; readonly "createdAt"?: string; }>; readonly "nextCursor"?: string; readonly "statusCounts"?: { readonly [key: string]: number }; };
|
|
55
47
|
export type billing_adjustment_retrieveInput = { readonly "productId"?: string; readonly "billingAdjustmentId": string; };
|
|
@@ -68,12 +60,6 @@ export type charge_retrieveInput = { readonly "productId"?: string; readonly "ch
|
|
|
68
60
|
export type charge_retrieveOutput = { readonly "item": { readonly "chargeId": string; readonly "tenantId": string; readonly "description": string; readonly "billingPeriodId"?: string; readonly "transferId"?: string; readonly "debitAccountId": string; readonly "creditAccountId": string; readonly "amount"?: string; readonly "currency"?: string; readonly "status"?: "accepted" | "posted" | "voided" | "failed"; readonly "createdAt"?: string; }; };
|
|
69
61
|
export type collection_listInput = { readonly "productId"?: string; readonly "limit"?: number; readonly "cursor"?: string; readonly "query"?: string; readonly "createdFrom"?: string; readonly "createdTo"?: string; };
|
|
70
62
|
export type collection_listOutput = { readonly "items": ReadonlyArray<{ readonly "collectionId": string; readonly "tenantId": string; readonly "id": string; readonly "amount"?: string; readonly "currency"?: string; readonly "status"?: "reserved" | "captured" | "cancelled" | "failed"; readonly "createdAt"?: string; }>; readonly "nextCursor"?: string; readonly "statusCounts"?: { readonly [key: string]: number }; };
|
|
71
|
-
export type collection_pay_in_cancelInput = { readonly "collectionId": string; readonly "transferId": string; readonly "reason": string; };
|
|
72
|
-
export type collection_pay_in_cancelOutput = { readonly "collectionId": string; readonly "tenantId": string; readonly "transferId": string; readonly "status": "cancelled"; };
|
|
73
|
-
export type collection_pay_in_captureInput = { readonly "collectionId": string; readonly "transferId": string; readonly "capturedAt": string; };
|
|
74
|
-
export type collection_pay_in_captureOutput = { readonly "collectionId": string; readonly "tenantId": string; readonly "transferId": string; readonly "status": "captured"; };
|
|
75
|
-
export type collection_pay_in_reserveInput = { readonly "collectionId"?: string; readonly "transferId"?: string; readonly "sourceAccountId": string; readonly "destinationAccountId": string; readonly "amount": string; readonly "currency": string; };
|
|
76
|
-
export type collection_pay_in_reserveOutput = { readonly "collectionId": string; readonly "tenantId": string; readonly "transferId": string; readonly "sourceAccountId": string; readonly "destinationAccountId": string; readonly "amount": string; readonly "currency": string; readonly "status": "reserved"; };
|
|
77
63
|
export type collection_retrieveInput = { readonly "productId"?: string; readonly "collectionId": string; };
|
|
78
64
|
export type collection_retrieveOutput = { readonly "item": { readonly "collectionId": string; readonly "tenantId": string; readonly "id": string; readonly "amount"?: string; readonly "currency"?: string; readonly "status"?: "reserved" | "captured" | "cancelled" | "failed"; readonly "createdAt"?: string; }; };
|
|
79
65
|
export type consent_listInput = { readonly "productId"?: string; readonly "limit"?: number; readonly "cursor"?: string; readonly "query"?: string; readonly "createdFrom"?: string; readonly "createdTo"?: string; readonly "status"?: "active" | "expired" | "revoked"; };
|
|
@@ -115,13 +101,13 @@ export type customer_access_suspendOutput = { readonly "tenantId": string; reado
|
|
|
115
101
|
export type customer_createInput = { readonly "productId": string; readonly "entity": { readonly "kind": "person" | "organization"; readonly "displayName": string; readonly "country": string; }; };
|
|
116
102
|
export type customer_createOutput = { readonly "tenantId": string; readonly "productId": string; readonly "customerId": string; readonly "customerStatus": "active"; readonly "entityId": string; readonly "entityStatus": "pending" | "verified" | "rejected" | "disabled"; readonly "customerAccessId": string; };
|
|
117
103
|
export type customer_listInput = { readonly "productId"?: string; readonly "limit"?: number; readonly "cursor"?: string; readonly "query"?: string; readonly "createdFrom"?: string; readonly "createdTo"?: string; readonly "status"?: "pending" | "active" | "disabled" | "erased"; };
|
|
118
|
-
export type customer_listOutput = { readonly "items": ReadonlyArray<{ readonly "customerId": string; readonly "tenantId": string; readonly "displayName": string; readonly "entityId"?: string; readonly "externalReference"?: string; readonly "status"?: "pending" | "active" | "disabled" | "erased"; readonly "createdAt"?: string; }>; readonly "nextCursor"?: string; readonly "statusCounts"?: { readonly [key: string]: number }; };
|
|
104
|
+
export type customer_listOutput = { readonly "items": ReadonlyArray<{ readonly "customerId": string; readonly "tenantId": string; readonly "displayName": string; readonly "entityId"?: string; readonly "principalId": string; readonly "externalReference"?: string; readonly "status"?: "pending" | "active" | "disabled" | "erased"; readonly "createdAt"?: string; }>; readonly "nextCursor"?: string; readonly "statusCounts"?: { readonly [key: string]: number }; };
|
|
119
105
|
export type customer_loginInput = { readonly "productId": string; readonly "email": string; readonly "password": string; };
|
|
120
106
|
export type customer_loginOutput = { readonly "tenantId": string; readonly "productId": string; readonly "environment": "sandbox" | "live"; readonly "customerId": string; readonly "entityId": string; readonly "email": string; readonly "customerAccessId": string; readonly "customerAccessStatus": "pending" | "active" | "suspended" | "closed"; readonly "customerSessionId": string; readonly "sessionToken"?: string; readonly "sessionExpiresAt": string; };
|
|
121
107
|
export type customer_logoutInput = Record<string, never>;
|
|
122
108
|
export type customer_logoutOutput = { readonly "customerSessionId": string; readonly "status": "revoked"; readonly "revokedAt": string; };
|
|
123
109
|
export type customer_retrieveInput = { readonly "productId"?: string; readonly "customerId": string; };
|
|
124
|
-
export type customer_retrieveOutput = { readonly "item": { readonly "customerId": string; readonly "tenantId": string; readonly "displayName": string; readonly "entityId"?: string; readonly "externalReference"?: string; readonly "status"?: "pending" | "active" | "disabled" | "erased"; readonly "createdAt"?: string; }; };
|
|
110
|
+
export type customer_retrieveOutput = { readonly "item": { readonly "customerId": string; readonly "tenantId": string; readonly "displayName": string; readonly "entityId"?: string; readonly "principalId": string; readonly "externalReference"?: string; readonly "status"?: "pending" | "active" | "disabled" | "erased"; readonly "createdAt"?: string; }; };
|
|
125
111
|
export type customer_session_revokeInput = { readonly "customerSessionId": string; };
|
|
126
112
|
export type customer_session_revokeOutput = { readonly "customerSessionId": string; readonly "status": "revoked" | "already_revoked"; readonly "revokedAt": string; };
|
|
127
113
|
export type customer_signupInput = { readonly "productId": string; readonly "email": string; readonly "password": string; readonly "displayName": string; readonly "country"?: string; readonly "termsAccepted": true; };
|
|
@@ -130,40 +116,20 @@ export type deposit_listInput = { readonly "productId"?: string; readonly "limit
|
|
|
130
116
|
export type deposit_listOutput = { readonly "items": ReadonlyArray<{ readonly "depositId": string; readonly "tenantId": string; readonly "accountId"?: string; readonly "financialAddressId"?: string; readonly "expectedPaymentId"?: string; readonly "amount"?: string; readonly "currency"?: string; readonly "transferId"?: string; readonly "status"?: "received" | "returned"; readonly "createdAt"?: string; }>; readonly "nextCursor"?: string; readonly "statusCounts"?: { readonly [key: string]: number }; };
|
|
131
117
|
export type deposit_retrieveInput = { readonly "productId"?: string; readonly "depositId": string; };
|
|
132
118
|
export type deposit_retrieveOutput = { readonly "item": { readonly "depositId": string; readonly "tenantId": string; readonly "accountId"?: string; readonly "financialAddressId"?: string; readonly "expectedPaymentId"?: string; readonly "amount"?: string; readonly "currency"?: string; readonly "transferId"?: string; readonly "status"?: "received" | "returned"; readonly "createdAt"?: string; }; };
|
|
133
|
-
export type developer_log_listInput = { readonly "productId"?: string; readonly "operation"?: string; readonly "status"?: "accepted" | "pending" | "succeeded" | "failed"; readonly "resourceKind"?: "account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "
|
|
134
|
-
export type developer_log_listOutput = { readonly "items": ReadonlyArray<{ readonly "activityId": string; readonly "occurredAt": string; readonly "receiptId"?: string; readonly "requestId"?: string; readonly "sourceSurface"?: string; readonly "evidence": ReadonlyArray<{ readonly "kind": "ledger" | "local" | "external"; readonly "reference": string; readonly "externalConfirmationId"?: string; readonly "provider"?: string; readonly "providerReference"?: string; readonly "resourceKind"?: "account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "entity_kyc_profile" | "expected_payment" | "instrument_instance" | "operation" | "payout" | "beneficiary_verification" | "product" | "customer_access" | "customer_session" | "external_confirmation" | "provider_cost_event" | "provider_webhook_event" | "webhook_endpoint" | "webhook_delivery" | "receipt" | "tenant" | "tenant_catalog_revision" | "subject" | "subject_kind" | "statement_line" | "reconciliation_run" | "reconciliation_break" | "reporting_artifact" | "str_case" | "wedged_money_repair" | "reconciliation_break_repair" | "attribution_queue" | "user_session" | "internal_transfer" | "usage" | "billing_adjustment" | "meter_rate_discount" | "platform_alert" | "platform_rate_override" | "billing_period" | "billing_subscription" | "invoice" | "invoice_line" | "meter_period_snapshot" | "trust_review" | "trust_evidence" | "trust_requirement" | "trust_review_subject" | "support_ticket" | "support_ticket_message" | "support_booking" | "support_plan_selection" | "tenant_bank_connection"; readonly "resourceId"?: string; readonly "operationId"?: string; readonly "operation"?: { readonly "id": string; readonly "name"?: string; readonly "status"?: string; }; readonly "status"?: string; readonly "occurredAt"?: string; readonly "proof"?: { readonly [key: string]: unknown }; }>; readonly "errorEnvelope"?: { readonly "code": string; readonly "message": string; readonly "status": number; readonly "details"?: unknown; }; readonly "timeline": ReadonlyArray<{ readonly "kind": string; readonly "reference"?: string; readonly "externalConfirmationId"?: string; readonly "provider"?: string; readonly "providerReference"?: string; readonly "resourceKind"?: ("account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "entity_kyc_profile" | "expected_payment" | "instrument_instance" | "operation" | "payout" | "beneficiary_verification" | "product" | "customer_access" | "customer_session" | "external_confirmation" | "provider_cost_event" | "provider_webhook_event" | "webhook_endpoint" | "webhook_delivery" | "receipt" | "tenant" | "tenant_catalog_revision" | "subject" | "subject_kind" | "statement_line" | "reconciliation_run" | "reconciliation_break" | "reporting_artifact" | "str_case" | "wedged_money_repair" | "reconciliation_break_repair" | "attribution_queue" | "user_session" | "internal_transfer" | "usage" | "billing_adjustment" | "meter_rate_discount" | "platform_alert" | "platform_rate_override" | "billing_period" | "billing_subscription" | "invoice" | "invoice_line" | "meter_period_snapshot" | "trust_review" | "trust_evidence" | "trust_requirement" | "trust_review_subject" | "support_ticket" | "support_ticket_message" | "support_booking" | "support_plan_selection" | "tenant_bank_connection" | "team" | "team_membership" | "user" | null); readonly "resourceId"?: (string | null); readonly "operationId"?: string; readonly "operation"?: { readonly "id": string; readonly "name"?: string; readonly "status"?: string; }; readonly "status"?: string; readonly "occurredAt"?: string; readonly "proof"?: { readonly [key: string]: unknown }; readonly "usageRecordId"?: string; readonly "meter"?: "account.active_month" | "account.created.count" | "financial_address.issued.count" | "financial_address.active_month" | "transfer.internal.count" | "transfer.internal.volume_sar" | "transfer.internal.volume_usd" | "transfer.internal.volume_eur" | "transfer.internal.volume_gbp" | "deposit.attributed.count" | "deposit.attributed.volume_sar" | "deposit.attributed.volume_usd" | "deposit.attributed.volume_eur" | "deposit.attributed.volume_gbp" | "payout.external.count" | "payout.external.volume_sar" | "payout.external.volume_usd" | "payout.external.volume_eur" | "payout.external.volume_gbp" | "collection.pay_in.count" | "collection.pay_in.volume_sar" | "collection.pay_in.volume_usd" | "collection.pay_in.volume_eur" | "collection.pay_in.volume_gbp" | "instrument.event.count" | "kyb.application.review" | "verification.kyc.basic.count" | "verification.kyc.standard.count" | "verification.kyc.investment.count" | "verification.kyb.count" | "operation.executed.count" | "api.read.count" | "billing.invoice.settlement" | "billing.plan.recurring_month" | "billing.product.activation"; readonly "quantity"?: string; readonly "sourceEventId"?: string; readonly "sourceOperationId"?: string; readonly "productId"?: string; readonly "operationName"?: string; readonly "receiptId"?: string; readonly "type"?: string; readonly "finalizedAt"?: (string | null); readonly "auditEventId"?: string; readonly "event"?: string; readonly "level"?: string; readonly "body"?: { readonly [key: string]: unknown }; } & { readonly [key: string]: unknown }>; readonly "usage": ReadonlyArray<{ readonly "usageRecordId": string; readonly "meter": "account.active_month" | "account.created.count" | "financial_address.issued.count" | "financial_address.active_month" | "transfer.internal.count" | "transfer.internal.volume_sar" | "transfer.internal.volume_usd" | "transfer.internal.volume_eur" | "transfer.internal.volume_gbp" | "deposit.attributed.count" | "deposit.attributed.volume_sar" | "deposit.attributed.volume_usd" | "deposit.attributed.volume_eur" | "deposit.attributed.volume_gbp" | "payout.external.count" | "payout.external.volume_sar" | "payout.external.volume_usd" | "payout.external.volume_eur" | "payout.external.volume_gbp" | "collection.pay_in.count" | "collection.pay_in.volume_sar" | "collection.pay_in.volume_usd" | "collection.pay_in.volume_eur" | "collection.pay_in.volume_gbp" | "instrument.event.count" | "kyb.application.review" | "verification.kyc.basic.count" | "verification.kyc.standard.count" | "verification.kyc.investment.count" | "verification.kyb.count" | "operation.executed.count" | "api.read.count" | "billing.invoice.settlement" | "billing.plan.recurring_month" | "billing.product.activation"; readonly "quantity": string; readonly "sourceEventId"?: string; readonly "sourceOperationId"?: string; readonly "productId"?: string; readonly "occurredAt": string; }>; readonly "operationId": string; readonly "operation": string; readonly "status": "accepted" | "pending" | "succeeded" | "failed"; readonly "resource"?: { readonly "kind": "account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "entity_kyc_profile" | "expected_payment" | "instrument_instance" | "operation" | "payout" | "beneficiary_verification" | "product" | "customer_access" | "customer_session" | "external_confirmation" | "provider_cost_event" | "provider_webhook_event" | "webhook_endpoint" | "webhook_delivery" | "receipt" | "tenant" | "tenant_catalog_revision" | "subject" | "subject_kind" | "statement_line" | "reconciliation_run" | "reconciliation_break" | "reporting_artifact" | "str_case" | "wedged_money_repair" | "reconciliation_break_repair" | "attribution_queue" | "user_session" | "internal_transfer" | "usage" | "billing_adjustment" | "meter_rate_discount" | "platform_alert" | "platform_rate_override" | "billing_period" | "billing_subscription" | "invoice" | "invoice_line" | "meter_period_snapshot" | "trust_review" | "trust_evidence" | "trust_requirement" | "trust_review_subject" | "support_ticket" | "support_ticket_message" | "support_booking" | "support_plan_selection" | "tenant_bank_connection"; readonly "id"?: string; }; readonly "resourceKind"?: "account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "entity_kyc_profile" | "expected_payment" | "instrument_instance" | "operation" | "payout" | "beneficiary_verification" | "product" | "customer_access" | "customer_session" | "external_confirmation" | "provider_cost_event" | "provider_webhook_event" | "webhook_endpoint" | "webhook_delivery" | "receipt" | "tenant" | "tenant_catalog_revision" | "subject" | "subject_kind" | "statement_line" | "reconciliation_run" | "reconciliation_break" | "reporting_artifact" | "str_case" | "wedged_money_repair" | "reconciliation_break_repair" | "attribution_queue" | "user_session" | "internal_transfer" | "usage" | "billing_adjustment" | "meter_rate_discount" | "platform_alert" | "platform_rate_override" | "billing_period" | "billing_subscription" | "invoice" | "invoice_line" | "meter_period_snapshot" | "trust_review" | "trust_evidence" | "trust_requirement" | "trust_review_subject" | "support_ticket" | "support_ticket_message" | "support_booking" | "support_plan_selection" | "tenant_bank_connection"; readonly "resourceId"?: string; readonly "receipt"?: { readonly "id": string; readonly "status": string; readonly "type": string; readonly "finalizedAt": (string | null); }; readonly "auditEvent"?: string; readonly "audit": ReadonlyArray<{ readonly "auditEventId": string; readonly "event": string; readonly "level"?: string; readonly "resourceKind"?: ("account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "entity_kyc_profile" | "expected_payment" | "instrument_instance" | "operation" | "payout" | "beneficiary_verification" | "product" | "customer_access" | "customer_session" | "external_confirmation" | "provider_cost_event" | "provider_webhook_event" | "webhook_endpoint" | "webhook_delivery" | "receipt" | "tenant" | "tenant_catalog_revision" | "subject" | "subject_kind" | "statement_line" | "reconciliation_run" | "reconciliation_break" | "reporting_artifact" | "str_case" | "wedged_money_repair" | "reconciliation_break_repair" | "attribution_queue" | "user_session" | "internal_transfer" | "usage" | "billing_adjustment" | "meter_rate_discount" | "platform_alert" | "platform_rate_override" | "billing_period" | "billing_subscription" | "invoice" | "invoice_line" | "meter_period_snapshot" | "trust_review" | "trust_evidence" | "trust_requirement" | "trust_review_subject" | "support_ticket" | "support_ticket_message" | "support_booking" | "support_plan_selection" | "tenant_bank_connection" | "team" | "team_membership" | "user" | null); readonly "resourceId"?: (string | null); readonly "body"?: { readonly [key: string]: unknown }; readonly "occurredAt": string; }>; readonly "principalId"?: string; readonly "finalizedAt"?: string; readonly "latencyMs"?: number; }>; readonly "nextCursor"?: string; };
|
|
119
|
+
export type developer_log_listInput = { readonly "productId"?: string; readonly "operation"?: string; readonly "status"?: "accepted" | "pending" | "succeeded" | "failed"; readonly "resourceKind"?: "account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "expected_payment" | "instrument_instance" | "business_object" | "operation" | "payout" | "product" | "customer_access" | "customer_session" | "external_confirmation" | "provider_cost_event" | "provider_webhook_event" | "webhook_endpoint" | "webhook_delivery" | "receipt" | "tenant" | "tenant_catalog_revision" | "statement_line" | "reconciliation_run" | "reconciliation_break" | "reporting_artifact" | "str_case" | "wedged_money_repair" | "reconciliation_break_repair" | "attribution_queue" | "user_session" | "internal_transfer" | "usage" | "billing_adjustment" | "meter_rate_discount" | "platform_alert" | "platform_rate_override" | "billing_period" | "billing_subscription" | "invoice" | "invoice_line" | "meter_period_snapshot" | "trust_review" | "trust_evidence" | "trust_requirement" | "trust_review_subject" | "support_ticket" | "support_ticket_message" | "support_booking" | "support_plan_selection"; readonly "resourceId"?: string; readonly "createdFrom"?: string; readonly "createdTo"?: string; readonly "limit"?: number; readonly "cursor"?: string; readonly "principalId"?: string; readonly "requestId"?: string; };
|
|
120
|
+
export type developer_log_listOutput = { readonly "items": ReadonlyArray<{ readonly "activityId": string; readonly "occurredAt": string; readonly "receiptId"?: string; readonly "requestId"?: string; readonly "sourceSurface"?: string; readonly "evidence": ReadonlyArray<{ readonly "kind": "ledger" | "local" | "external"; readonly "reference": string; readonly "externalConfirmationId"?: string; readonly "provider"?: string; readonly "providerReference"?: string; readonly "resourceKind"?: "account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "expected_payment" | "instrument_instance" | "business_object" | "operation" | "payout" | "product" | "customer_access" | "customer_session" | "external_confirmation" | "provider_cost_event" | "provider_webhook_event" | "webhook_endpoint" | "webhook_delivery" | "receipt" | "tenant" | "tenant_catalog_revision" | "statement_line" | "reconciliation_run" | "reconciliation_break" | "reporting_artifact" | "str_case" | "wedged_money_repair" | "reconciliation_break_repair" | "attribution_queue" | "user_session" | "internal_transfer" | "usage" | "billing_adjustment" | "meter_rate_discount" | "platform_alert" | "platform_rate_override" | "billing_period" | "billing_subscription" | "invoice" | "invoice_line" | "meter_period_snapshot" | "trust_review" | "trust_evidence" | "trust_requirement" | "trust_review_subject" | "support_ticket" | "support_ticket_message" | "support_booking" | "support_plan_selection"; readonly "resourceId"?: string; readonly "operationId"?: string; readonly "operation"?: { readonly "id": string; readonly "name"?: string; readonly "status"?: string; }; readonly "status"?: string; readonly "occurredAt"?: string; readonly "proof"?: { readonly [key: string]: unknown }; }>; readonly "errorEnvelope"?: { readonly "code": string; readonly "message": string; readonly "status": number; readonly "details"?: unknown; }; readonly "timeline": ReadonlyArray<{ readonly "kind": string; readonly "reference"?: string; readonly "externalConfirmationId"?: string; readonly "provider"?: string; readonly "providerReference"?: string; readonly "resourceKind"?: ("account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "expected_payment" | "instrument_instance" | "business_object" | "operation" | "payout" | "product" | "customer_access" | "customer_session" | "external_confirmation" | "provider_cost_event" | "provider_webhook_event" | "webhook_endpoint" | "webhook_delivery" | "receipt" | "tenant" | "tenant_catalog_revision" | "statement_line" | "reconciliation_run" | "reconciliation_break" | "reporting_artifact" | "str_case" | "wedged_money_repair" | "reconciliation_break_repair" | "attribution_queue" | "user_session" | "internal_transfer" | "usage" | "billing_adjustment" | "meter_rate_discount" | "platform_alert" | "platform_rate_override" | "billing_period" | "billing_subscription" | "invoice" | "invoice_line" | "meter_period_snapshot" | "trust_review" | "trust_evidence" | "trust_requirement" | "trust_review_subject" | "support_ticket" | "support_ticket_message" | "support_booking" | "support_plan_selection" | "team" | "team_membership" | "user" | null); readonly "resourceId"?: (string | null); readonly "operationId"?: string; readonly "operation"?: { readonly "id": string; readonly "name"?: string; readonly "status"?: string; }; readonly "status"?: string; readonly "occurredAt"?: string; readonly "proof"?: { readonly [key: string]: unknown }; readonly "usageRecordId"?: string; readonly "meter"?: "account.active_month" | "account.created.count" | "transfer.internal.count" | "transfer.internal.volume_sar" | "transfer.internal.volume_usd" | "transfer.internal.volume_eur" | "transfer.internal.volume_gbp" | "instrument.event.count" | "kyb.application.review" | "verification.kyb.count" | "operation.executed.count" | "billing.invoice.settlement" | "billing.plan.recurring_month" | "billing.product.activation"; readonly "quantity"?: string; readonly "sourceEventId"?: string; readonly "sourceOperationId"?: string; readonly "productId"?: string; readonly "operationName"?: string; readonly "receiptId"?: string; readonly "type"?: string; readonly "finalizedAt"?: (string | null); readonly "auditEventId"?: string; readonly "event"?: string; readonly "level"?: string; readonly "body"?: { readonly [key: string]: unknown }; } & { readonly [key: string]: unknown }>; readonly "usage": ReadonlyArray<{ readonly "usageRecordId": string; readonly "meter": "account.active_month" | "account.created.count" | "transfer.internal.count" | "transfer.internal.volume_sar" | "transfer.internal.volume_usd" | "transfer.internal.volume_eur" | "transfer.internal.volume_gbp" | "instrument.event.count" | "kyb.application.review" | "verification.kyb.count" | "operation.executed.count" | "billing.invoice.settlement" | "billing.plan.recurring_month" | "billing.product.activation"; readonly "quantity": string; readonly "sourceEventId"?: string; readonly "sourceOperationId"?: string; readonly "productId"?: string; readonly "occurredAt": string; }>; readonly "operationId": string; readonly "operation": string; readonly "status": "accepted" | "pending" | "succeeded" | "failed"; readonly "resource"?: { readonly "kind": "account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "expected_payment" | "instrument_instance" | "business_object" | "operation" | "payout" | "product" | "customer_access" | "customer_session" | "external_confirmation" | "provider_cost_event" | "provider_webhook_event" | "webhook_endpoint" | "webhook_delivery" | "receipt" | "tenant" | "tenant_catalog_revision" | "statement_line" | "reconciliation_run" | "reconciliation_break" | "reporting_artifact" | "str_case" | "wedged_money_repair" | "reconciliation_break_repair" | "attribution_queue" | "user_session" | "internal_transfer" | "usage" | "billing_adjustment" | "meter_rate_discount" | "platform_alert" | "platform_rate_override" | "billing_period" | "billing_subscription" | "invoice" | "invoice_line" | "meter_period_snapshot" | "trust_review" | "trust_evidence" | "trust_requirement" | "trust_review_subject" | "support_ticket" | "support_ticket_message" | "support_booking" | "support_plan_selection"; readonly "id"?: string; }; readonly "resourceKind"?: "account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "expected_payment" | "instrument_instance" | "business_object" | "operation" | "payout" | "product" | "customer_access" | "customer_session" | "external_confirmation" | "provider_cost_event" | "provider_webhook_event" | "webhook_endpoint" | "webhook_delivery" | "receipt" | "tenant" | "tenant_catalog_revision" | "statement_line" | "reconciliation_run" | "reconciliation_break" | "reporting_artifact" | "str_case" | "wedged_money_repair" | "reconciliation_break_repair" | "attribution_queue" | "user_session" | "internal_transfer" | "usage" | "billing_adjustment" | "meter_rate_discount" | "platform_alert" | "platform_rate_override" | "billing_period" | "billing_subscription" | "invoice" | "invoice_line" | "meter_period_snapshot" | "trust_review" | "trust_evidence" | "trust_requirement" | "trust_review_subject" | "support_ticket" | "support_ticket_message" | "support_booking" | "support_plan_selection"; readonly "resourceId"?: string; readonly "receipt"?: { readonly "id": string; readonly "status": string; readonly "type": string; readonly "finalizedAt": (string | null); }; readonly "auditEvent"?: string; readonly "audit": ReadonlyArray<{ readonly "auditEventId": string; readonly "event": string; readonly "level"?: string; readonly "resourceKind"?: ("account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "expected_payment" | "instrument_instance" | "business_object" | "operation" | "payout" | "product" | "customer_access" | "customer_session" | "external_confirmation" | "provider_cost_event" | "provider_webhook_event" | "webhook_endpoint" | "webhook_delivery" | "receipt" | "tenant" | "tenant_catalog_revision" | "statement_line" | "reconciliation_run" | "reconciliation_break" | "reporting_artifact" | "str_case" | "wedged_money_repair" | "reconciliation_break_repair" | "attribution_queue" | "user_session" | "internal_transfer" | "usage" | "billing_adjustment" | "meter_rate_discount" | "platform_alert" | "platform_rate_override" | "billing_period" | "billing_subscription" | "invoice" | "invoice_line" | "meter_period_snapshot" | "trust_review" | "trust_evidence" | "trust_requirement" | "trust_review_subject" | "support_ticket" | "support_ticket_message" | "support_booking" | "support_plan_selection" | "team" | "team_membership" | "user" | null); readonly "resourceId"?: (string | null); readonly "body"?: { readonly [key: string]: unknown }; readonly "occurredAt": string; }>; readonly "principalId"?: string; readonly "finalizedAt"?: string; readonly "latencyMs"?: number; }>; readonly "nextCursor"?: string; };
|
|
135
121
|
export type developer_log_retrieveInput = { readonly "operationId": string; };
|
|
136
|
-
export type developer_log_retrieveOutput = { readonly "tenantId": string; readonly "log": { readonly "activityId": string; readonly "occurredAt": string; readonly "receiptId"?: string; readonly "requestId"?: string; readonly "sourceSurface"?: string; readonly "evidence": ReadonlyArray<{ readonly "kind": "ledger" | "local" | "external"; readonly "reference": string; readonly "externalConfirmationId"?: string; readonly "provider"?: string; readonly "providerReference"?: string; readonly "resourceKind"?: "account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "entity_kyc_profile" | "expected_payment" | "instrument_instance" | "operation" | "payout" | "beneficiary_verification" | "product" | "customer_access" | "customer_session" | "external_confirmation" | "provider_cost_event" | "provider_webhook_event" | "webhook_endpoint" | "webhook_delivery" | "receipt" | "tenant" | "tenant_catalog_revision" | "subject" | "subject_kind" | "statement_line" | "reconciliation_run" | "reconciliation_break" | "reporting_artifact" | "str_case" | "wedged_money_repair" | "reconciliation_break_repair" | "attribution_queue" | "user_session" | "internal_transfer" | "usage" | "billing_adjustment" | "meter_rate_discount" | "platform_alert" | "platform_rate_override" | "billing_period" | "billing_subscription" | "invoice" | "invoice_line" | "meter_period_snapshot" | "trust_review" | "trust_evidence" | "trust_requirement" | "trust_review_subject" | "support_ticket" | "support_ticket_message" | "support_booking" | "support_plan_selection" | "tenant_bank_connection"; readonly "resourceId"?: string; readonly "operationId"?: string; readonly "operation"?: { readonly "id": string; readonly "name"?: string; readonly "status"?: string; }; readonly "status"?: string; readonly "occurredAt"?: string; readonly "proof"?: { readonly [key: string]: unknown }; }>; readonly "errorEnvelope"?: { readonly "code": string; readonly "message": string; readonly "status": number; readonly "details"?: unknown; }; readonly "timeline": ReadonlyArray<{ readonly "kind": string; readonly "reference"?: string; readonly "externalConfirmationId"?: string; readonly "provider"?: string; readonly "providerReference"?: string; readonly "resourceKind"?: ("account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "entity_kyc_profile" | "expected_payment" | "instrument_instance" | "operation" | "payout" | "beneficiary_verification" | "product" | "customer_access" | "customer_session" | "external_confirmation" | "provider_cost_event" | "provider_webhook_event" | "webhook_endpoint" | "webhook_delivery" | "receipt" | "tenant" | "tenant_catalog_revision" | "subject" | "subject_kind" | "statement_line" | "reconciliation_run" | "reconciliation_break" | "reporting_artifact" | "str_case" | "wedged_money_repair" | "reconciliation_break_repair" | "attribution_queue" | "user_session" | "internal_transfer" | "usage" | "billing_adjustment" | "meter_rate_discount" | "platform_alert" | "platform_rate_override" | "billing_period" | "billing_subscription" | "invoice" | "invoice_line" | "meter_period_snapshot" | "trust_review" | "trust_evidence" | "trust_requirement" | "trust_review_subject" | "support_ticket" | "support_ticket_message" | "support_booking" | "support_plan_selection" | "tenant_bank_connection" | "team" | "team_membership" | "user" | null); readonly "resourceId"?: (string | null); readonly "operationId"?: string; readonly "operation"?: { readonly "id": string; readonly "name"?: string; readonly "status"?: string; }; readonly "status"?: string; readonly "occurredAt"?: string; readonly "proof"?: { readonly [key: string]: unknown }; readonly "usageRecordId"?: string; readonly "meter"?: "account.active_month" | "account.created.count" | "financial_address.issued.count" | "financial_address.active_month" | "transfer.internal.count" | "transfer.internal.volume_sar" | "transfer.internal.volume_usd" | "transfer.internal.volume_eur" | "transfer.internal.volume_gbp" | "deposit.attributed.count" | "deposit.attributed.volume_sar" | "deposit.attributed.volume_usd" | "deposit.attributed.volume_eur" | "deposit.attributed.volume_gbp" | "payout.external.count" | "payout.external.volume_sar" | "payout.external.volume_usd" | "payout.external.volume_eur" | "payout.external.volume_gbp" | "collection.pay_in.count" | "collection.pay_in.volume_sar" | "collection.pay_in.volume_usd" | "collection.pay_in.volume_eur" | "collection.pay_in.volume_gbp" | "instrument.event.count" | "kyb.application.review" | "verification.kyc.basic.count" | "verification.kyc.standard.count" | "verification.kyc.investment.count" | "verification.kyb.count" | "operation.executed.count" | "api.read.count" | "billing.invoice.settlement" | "billing.plan.recurring_month" | "billing.product.activation"; readonly "quantity"?: string; readonly "sourceEventId"?: string; readonly "sourceOperationId"?: string; readonly "productId"?: string; readonly "operationName"?: string; readonly "receiptId"?: string; readonly "type"?: string; readonly "finalizedAt"?: (string | null); readonly "auditEventId"?: string; readonly "event"?: string; readonly "level"?: string; readonly "body"?: { readonly [key: string]: unknown }; } & { readonly [key: string]: unknown }>; readonly "usage": ReadonlyArray<{ readonly "usageRecordId": string; readonly "meter": "account.active_month" | "account.created.count" | "financial_address.issued.count" | "financial_address.active_month" | "transfer.internal.count" | "transfer.internal.volume_sar" | "transfer.internal.volume_usd" | "transfer.internal.volume_eur" | "transfer.internal.volume_gbp" | "deposit.attributed.count" | "deposit.attributed.volume_sar" | "deposit.attributed.volume_usd" | "deposit.attributed.volume_eur" | "deposit.attributed.volume_gbp" | "payout.external.count" | "payout.external.volume_sar" | "payout.external.volume_usd" | "payout.external.volume_eur" | "payout.external.volume_gbp" | "collection.pay_in.count" | "collection.pay_in.volume_sar" | "collection.pay_in.volume_usd" | "collection.pay_in.volume_eur" | "collection.pay_in.volume_gbp" | "instrument.event.count" | "kyb.application.review" | "verification.kyc.basic.count" | "verification.kyc.standard.count" | "verification.kyc.investment.count" | "verification.kyb.count" | "operation.executed.count" | "api.read.count" | "billing.invoice.settlement" | "billing.plan.recurring_month" | "billing.product.activation"; readonly "quantity": string; readonly "sourceEventId"?: string; readonly "sourceOperationId"?: string; readonly "productId"?: string; readonly "occurredAt": string; }>; readonly "operationId": string; readonly "operation": string; readonly "status": "accepted" | "pending" | "succeeded" | "failed"; readonly "resource"?: { readonly "kind": "account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "entity_kyc_profile" | "expected_payment" | "instrument_instance" | "operation" | "payout" | "beneficiary_verification" | "product" | "customer_access" | "customer_session" | "external_confirmation" | "provider_cost_event" | "provider_webhook_event" | "webhook_endpoint" | "webhook_delivery" | "receipt" | "tenant" | "tenant_catalog_revision" | "subject" | "subject_kind" | "statement_line" | "reconciliation_run" | "reconciliation_break" | "reporting_artifact" | "str_case" | "wedged_money_repair" | "reconciliation_break_repair" | "attribution_queue" | "user_session" | "internal_transfer" | "usage" | "billing_adjustment" | "meter_rate_discount" | "platform_alert" | "platform_rate_override" | "billing_period" | "billing_subscription" | "invoice" | "invoice_line" | "meter_period_snapshot" | "trust_review" | "trust_evidence" | "trust_requirement" | "trust_review_subject" | "support_ticket" | "support_ticket_message" | "support_booking" | "support_plan_selection" | "tenant_bank_connection"; readonly "id"?: string; }; readonly "resourceKind"?: "account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "entity_kyc_profile" | "expected_payment" | "instrument_instance" | "operation" | "payout" | "beneficiary_verification" | "product" | "customer_access" | "customer_session" | "external_confirmation" | "provider_cost_event" | "provider_webhook_event" | "webhook_endpoint" | "webhook_delivery" | "receipt" | "tenant" | "tenant_catalog_revision" | "subject" | "subject_kind" | "statement_line" | "reconciliation_run" | "reconciliation_break" | "reporting_artifact" | "str_case" | "wedged_money_repair" | "reconciliation_break_repair" | "attribution_queue" | "user_session" | "internal_transfer" | "usage" | "billing_adjustment" | "meter_rate_discount" | "platform_alert" | "platform_rate_override" | "billing_period" | "billing_subscription" | "invoice" | "invoice_line" | "meter_period_snapshot" | "trust_review" | "trust_evidence" | "trust_requirement" | "trust_review_subject" | "support_ticket" | "support_ticket_message" | "support_booking" | "support_plan_selection" | "tenant_bank_connection"; readonly "resourceId"?: string; readonly "receipt"?: { readonly "id": string; readonly "status": string; readonly "type": string; readonly "finalizedAt": (string | null); }; readonly "auditEvent"?: string; readonly "audit": ReadonlyArray<{ readonly "auditEventId": string; readonly "event": string; readonly "level"?: string; readonly "resourceKind"?: ("account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "entity_kyc_profile" | "expected_payment" | "instrument_instance" | "operation" | "payout" | "beneficiary_verification" | "product" | "customer_access" | "customer_session" | "external_confirmation" | "provider_cost_event" | "provider_webhook_event" | "webhook_endpoint" | "webhook_delivery" | "receipt" | "tenant" | "tenant_catalog_revision" | "subject" | "subject_kind" | "statement_line" | "reconciliation_run" | "reconciliation_break" | "reporting_artifact" | "str_case" | "wedged_money_repair" | "reconciliation_break_repair" | "attribution_queue" | "user_session" | "internal_transfer" | "usage" | "billing_adjustment" | "meter_rate_discount" | "platform_alert" | "platform_rate_override" | "billing_period" | "billing_subscription" | "invoice" | "invoice_line" | "meter_period_snapshot" | "trust_review" | "trust_evidence" | "trust_requirement" | "trust_review_subject" | "support_ticket" | "support_ticket_message" | "support_booking" | "support_plan_selection" | "tenant_bank_connection" | "team" | "team_membership" | "user" | null); readonly "resourceId"?: (string | null); readonly "body"?: { readonly [key: string]: unknown }; readonly "occurredAt": string; }>; readonly "principalId"?: string; readonly "finalizedAt"?: string; readonly "latencyMs"?: number; }; };
|
|
122
|
+
export type developer_log_retrieveOutput = { readonly "tenantId": string; readonly "log": { readonly "activityId": string; readonly "occurredAt": string; readonly "receiptId"?: string; readonly "requestId"?: string; readonly "sourceSurface"?: string; readonly "evidence": ReadonlyArray<{ readonly "kind": "ledger" | "local" | "external"; readonly "reference": string; readonly "externalConfirmationId"?: string; readonly "provider"?: string; readonly "providerReference"?: string; readonly "resourceKind"?: "account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "expected_payment" | "instrument_instance" | "business_object" | "operation" | "payout" | "product" | "customer_access" | "customer_session" | "external_confirmation" | "provider_cost_event" | "provider_webhook_event" | "webhook_endpoint" | "webhook_delivery" | "receipt" | "tenant" | "tenant_catalog_revision" | "statement_line" | "reconciliation_run" | "reconciliation_break" | "reporting_artifact" | "str_case" | "wedged_money_repair" | "reconciliation_break_repair" | "attribution_queue" | "user_session" | "internal_transfer" | "usage" | "billing_adjustment" | "meter_rate_discount" | "platform_alert" | "platform_rate_override" | "billing_period" | "billing_subscription" | "invoice" | "invoice_line" | "meter_period_snapshot" | "trust_review" | "trust_evidence" | "trust_requirement" | "trust_review_subject" | "support_ticket" | "support_ticket_message" | "support_booking" | "support_plan_selection"; readonly "resourceId"?: string; readonly "operationId"?: string; readonly "operation"?: { readonly "id": string; readonly "name"?: string; readonly "status"?: string; }; readonly "status"?: string; readonly "occurredAt"?: string; readonly "proof"?: { readonly [key: string]: unknown }; }>; readonly "errorEnvelope"?: { readonly "code": string; readonly "message": string; readonly "status": number; readonly "details"?: unknown; }; readonly "timeline": ReadonlyArray<{ readonly "kind": string; readonly "reference"?: string; readonly "externalConfirmationId"?: string; readonly "provider"?: string; readonly "providerReference"?: string; readonly "resourceKind"?: ("account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "expected_payment" | "instrument_instance" | "business_object" | "operation" | "payout" | "product" | "customer_access" | "customer_session" | "external_confirmation" | "provider_cost_event" | "provider_webhook_event" | "webhook_endpoint" | "webhook_delivery" | "receipt" | "tenant" | "tenant_catalog_revision" | "statement_line" | "reconciliation_run" | "reconciliation_break" | "reporting_artifact" | "str_case" | "wedged_money_repair" | "reconciliation_break_repair" | "attribution_queue" | "user_session" | "internal_transfer" | "usage" | "billing_adjustment" | "meter_rate_discount" | "platform_alert" | "platform_rate_override" | "billing_period" | "billing_subscription" | "invoice" | "invoice_line" | "meter_period_snapshot" | "trust_review" | "trust_evidence" | "trust_requirement" | "trust_review_subject" | "support_ticket" | "support_ticket_message" | "support_booking" | "support_plan_selection" | "team" | "team_membership" | "user" | null); readonly "resourceId"?: (string | null); readonly "operationId"?: string; readonly "operation"?: { readonly "id": string; readonly "name"?: string; readonly "status"?: string; }; readonly "status"?: string; readonly "occurredAt"?: string; readonly "proof"?: { readonly [key: string]: unknown }; readonly "usageRecordId"?: string; readonly "meter"?: "account.active_month" | "account.created.count" | "transfer.internal.count" | "transfer.internal.volume_sar" | "transfer.internal.volume_usd" | "transfer.internal.volume_eur" | "transfer.internal.volume_gbp" | "instrument.event.count" | "kyb.application.review" | "verification.kyb.count" | "operation.executed.count" | "billing.invoice.settlement" | "billing.plan.recurring_month" | "billing.product.activation"; readonly "quantity"?: string; readonly "sourceEventId"?: string; readonly "sourceOperationId"?: string; readonly "productId"?: string; readonly "operationName"?: string; readonly "receiptId"?: string; readonly "type"?: string; readonly "finalizedAt"?: (string | null); readonly "auditEventId"?: string; readonly "event"?: string; readonly "level"?: string; readonly "body"?: { readonly [key: string]: unknown }; } & { readonly [key: string]: unknown }>; readonly "usage": ReadonlyArray<{ readonly "usageRecordId": string; readonly "meter": "account.active_month" | "account.created.count" | "transfer.internal.count" | "transfer.internal.volume_sar" | "transfer.internal.volume_usd" | "transfer.internal.volume_eur" | "transfer.internal.volume_gbp" | "instrument.event.count" | "kyb.application.review" | "verification.kyb.count" | "operation.executed.count" | "billing.invoice.settlement" | "billing.plan.recurring_month" | "billing.product.activation"; readonly "quantity": string; readonly "sourceEventId"?: string; readonly "sourceOperationId"?: string; readonly "productId"?: string; readonly "occurredAt": string; }>; readonly "operationId": string; readonly "operation": string; readonly "status": "accepted" | "pending" | "succeeded" | "failed"; readonly "resource"?: { readonly "kind": "account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "expected_payment" | "instrument_instance" | "business_object" | "operation" | "payout" | "product" | "customer_access" | "customer_session" | "external_confirmation" | "provider_cost_event" | "provider_webhook_event" | "webhook_endpoint" | "webhook_delivery" | "receipt" | "tenant" | "tenant_catalog_revision" | "statement_line" | "reconciliation_run" | "reconciliation_break" | "reporting_artifact" | "str_case" | "wedged_money_repair" | "reconciliation_break_repair" | "attribution_queue" | "user_session" | "internal_transfer" | "usage" | "billing_adjustment" | "meter_rate_discount" | "platform_alert" | "platform_rate_override" | "billing_period" | "billing_subscription" | "invoice" | "invoice_line" | "meter_period_snapshot" | "trust_review" | "trust_evidence" | "trust_requirement" | "trust_review_subject" | "support_ticket" | "support_ticket_message" | "support_booking" | "support_plan_selection"; readonly "id"?: string; }; readonly "resourceKind"?: "account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "expected_payment" | "instrument_instance" | "business_object" | "operation" | "payout" | "product" | "customer_access" | "customer_session" | "external_confirmation" | "provider_cost_event" | "provider_webhook_event" | "webhook_endpoint" | "webhook_delivery" | "receipt" | "tenant" | "tenant_catalog_revision" | "statement_line" | "reconciliation_run" | "reconciliation_break" | "reporting_artifact" | "str_case" | "wedged_money_repair" | "reconciliation_break_repair" | "attribution_queue" | "user_session" | "internal_transfer" | "usage" | "billing_adjustment" | "meter_rate_discount" | "platform_alert" | "platform_rate_override" | "billing_period" | "billing_subscription" | "invoice" | "invoice_line" | "meter_period_snapshot" | "trust_review" | "trust_evidence" | "trust_requirement" | "trust_review_subject" | "support_ticket" | "support_ticket_message" | "support_booking" | "support_plan_selection"; readonly "resourceId"?: string; readonly "receipt"?: { readonly "id": string; readonly "status": string; readonly "type": string; readonly "finalizedAt": (string | null); }; readonly "auditEvent"?: string; readonly "audit": ReadonlyArray<{ readonly "auditEventId": string; readonly "event": string; readonly "level"?: string; readonly "resourceKind"?: ("account" | "activity" | "financial_address" | "api_key" | "audit" | "product_capability" | "charge" | "collection" | "consent" | "credit_balance" | "credit_grant" | "credit_ledger_entry" | "credit_note" | "credit_note_line" | "customer" | "beneficiary" | "deposit" | "entity" | "expected_payment" | "instrument_instance" | "business_object" | "operation" | "payout" | "product" | "customer_access" | "customer_session" | "external_confirmation" | "provider_cost_event" | "provider_webhook_event" | "webhook_endpoint" | "webhook_delivery" | "receipt" | "tenant" | "tenant_catalog_revision" | "statement_line" | "reconciliation_run" | "reconciliation_break" | "reporting_artifact" | "str_case" | "wedged_money_repair" | "reconciliation_break_repair" | "attribution_queue" | "user_session" | "internal_transfer" | "usage" | "billing_adjustment" | "meter_rate_discount" | "platform_alert" | "platform_rate_override" | "billing_period" | "billing_subscription" | "invoice" | "invoice_line" | "meter_period_snapshot" | "trust_review" | "trust_evidence" | "trust_requirement" | "trust_review_subject" | "support_ticket" | "support_ticket_message" | "support_booking" | "support_plan_selection" | "team" | "team_membership" | "user" | null); readonly "resourceId"?: (string | null); readonly "body"?: { readonly [key: string]: unknown }; readonly "occurredAt": string; }>; readonly "principalId"?: string; readonly "finalizedAt"?: string; readonly "latencyMs"?: number; }; };
|
|
137
123
|
export type event_listInput = { readonly "limit"?: number; readonly "cursor"?: string; readonly "createdFrom"?: string; readonly "createdTo"?: string; readonly "resourceId"?: string; readonly "event"?: string; };
|
|
138
124
|
export type event_listOutput = { readonly "items": ReadonlyArray<{ readonly "id": string; readonly "object": "event"; readonly "apiVersion": "2026-06-04"; readonly "environment": "sandbox" | "live"; readonly "tenantId": string; readonly "event": string; readonly "createdAt": string; readonly "operationId": (string | null); readonly "relatedObject": ({ readonly "id": string; readonly "type": string; } | null); readonly "data": { readonly "object": { readonly [key: string]: unknown }; }; readonly "outbox"?: { readonly "payloadDigest": string; }; }>; readonly "nextCursor"?: string; };
|
|
139
125
|
export type event_retrieveInput = { readonly "eventId": string; };
|
|
140
126
|
export type event_retrieveOutput = { readonly "id": string; readonly "object": "event"; readonly "apiVersion": "2026-06-04"; readonly "environment": "sandbox" | "live"; readonly "tenantId": string; readonly "event": string; readonly "createdAt": string; readonly "operationId": (string | null); readonly "relatedObject": ({ readonly "id": string; readonly "type": string; } | null); readonly "data": { readonly "object": { readonly [key: string]: unknown }; }; readonly "outbox"?: { readonly "payloadDigest": string; }; };
|
|
141
|
-
export type expected_payment_cancelInput = { readonly "expectedPaymentId": string; readonly "reason": string; };
|
|
142
|
-
export type expected_payment_cancelOutput = { readonly "expectedPaymentId": string; readonly "tenantId": string; readonly "status": "canceled"; readonly "updatedAt": string; };
|
|
143
|
-
export type expected_payment_createInput = { readonly "expectedPaymentId"?: string; readonly "productId": string; readonly "accountId": string; readonly "financialAddressId": string; readonly "amountMin": string; readonly "amountMax": string; readonly "currency": string; readonly "windowStart": string; readonly "windowEnd": string; readonly "reference"?: string; readonly "metadata"?: expected_payment_createInput_Metadata; };
|
|
144
|
-
type expected_payment_createInput_Metadata = { readonly [key: string]: expected_payment_createInput_MetadataValue };
|
|
145
|
-
type expected_payment_createInput_MetadataValue = (expected_payment_createInput_MetadataScalar | ReadonlyArray<expected_payment_createInput_MetadataScalar> | { readonly [key: string]: expected_payment_createInput_MetadataScalar });
|
|
146
|
-
type expected_payment_createInput_MetadataScalar = (string | number | boolean | null);
|
|
147
|
-
export type expected_payment_createOutput = { readonly "expectedPaymentId": string; readonly "tenantId": string; readonly "productId": string; readonly "accountId": string; readonly "financialAddressId": string; readonly "amountMin": string; readonly "amountMax": string; readonly "amountReceived": "0"; readonly "currency": string; readonly "windowStart": string; readonly "windowEnd": string; readonly "reference"?: string; readonly "status": "expected"; readonly "createdAt": string; readonly "metadata": expected_payment_createOutput_Metadata; };
|
|
148
|
-
type expected_payment_createOutput_Metadata = { readonly [key: string]: expected_payment_createOutput_MetadataValue };
|
|
149
|
-
type expected_payment_createOutput_MetadataValue = (expected_payment_createOutput_MetadataScalar | ReadonlyArray<expected_payment_createOutput_MetadataScalar> | { readonly [key: string]: expected_payment_createOutput_MetadataScalar });
|
|
150
|
-
type expected_payment_createOutput_MetadataScalar = (string | number | boolean | null);
|
|
151
127
|
export type expected_payment_listInput = { readonly "productId"?: string; readonly "limit"?: number; readonly "cursor"?: string; readonly "query"?: string; readonly "createdFrom"?: string; readonly "createdTo"?: string; readonly "status"?: "expected" | "partially_received" | "received" | "overdue" | "canceled"; };
|
|
152
128
|
export type expected_payment_listOutput = { readonly "items": ReadonlyArray<{ readonly "expectedPaymentId": string; readonly "tenantId": string; readonly "productId"?: string; readonly "accountId"?: string; readonly "financialAddressId"?: string; readonly "amountMin"?: string; readonly "amountMax"?: string; readonly "amountReceived"?: string; readonly "currency"?: string; readonly "windowStart"?: string; readonly "windowEnd"?: string; readonly "reference"?: string; readonly "status"?: "expected" | "partially_received" | "received" | "overdue" | "canceled"; readonly "createdAt"?: string; }>; readonly "nextCursor"?: string; readonly "statusCounts"?: { readonly [key: string]: number }; };
|
|
153
129
|
export type expected_payment_retrieveInput = { readonly "productId"?: string; readonly "expectedPaymentId": string; };
|
|
154
130
|
export type expected_payment_retrieveOutput = { readonly "item": { readonly "expectedPaymentId": string; readonly "tenantId": string; readonly "productId"?: string; readonly "accountId"?: string; readonly "financialAddressId"?: string; readonly "amountMin"?: string; readonly "amountMax"?: string; readonly "amountReceived"?: string; readonly "currency"?: string; readonly "windowStart"?: string; readonly "windowEnd"?: string; readonly "reference"?: string; readonly "status"?: "expected" | "partially_received" | "received" | "overdue" | "canceled"; readonly "createdAt"?: string; }; };
|
|
155
131
|
export type extension_listInput = { readonly "limit"?: number; readonly "cursor"?: string; };
|
|
156
|
-
export type extension_listOutput = { readonly "items": ReadonlyArray<{ readonly "id": "money" | "marketplace" | "escrow" | "wallet" | "financing" | "lending" | "insurance" | "approvals" | "collections" | "travel" | "cards" | "savings"; readonly "title": string; readonly "objects": ReadonlyArray<{ readonly "name": string; readonly "qualifiedName": string; readonly "summary": string; readonly "tunables": ReadonlyArray<{ readonly "name": string; readonly "type": string; readonly "required": boolean; readonly "default"?: string; readonly "values"?: ReadonlyArray<string>; readonly "minimum"?: (number | string); readonly "maximum"?: (number | string); }>; readonly "constraints": ReadonlyArray<{ readonly "tunable": string; readonly "relation": "less_than" | "at_most" | "greater_than"; readonly "other": string; }>; readonly "parties": ReadonlyArray<string>; readonly "actions": ReadonlyArray<{ readonly "name": string; readonly "summary": string; readonly "actor": string; }>; }>; }>; readonly "nextCursor"?: string; };
|
|
157
|
-
export type financial_address_createInput = { readonly "financialAddressId"?: string; readonly "accountId": string; readonly "productId"?: string; readonly "purpose"?: string; readonly "metadata"?: financial_address_createInput_Metadata; };
|
|
158
|
-
type financial_address_createInput_Metadata = { readonly [key: string]: financial_address_createInput_MetadataValue };
|
|
159
|
-
type financial_address_createInput_MetadataValue = (financial_address_createInput_MetadataScalar | ReadonlyArray<financial_address_createInput_MetadataScalar> | { readonly [key: string]: financial_address_createInput_MetadataScalar });
|
|
160
|
-
type financial_address_createInput_MetadataScalar = (string | number | boolean | null);
|
|
161
|
-
export type financial_address_createOutput = { readonly "financialAddressId": string; readonly "tenantId": string; readonly "accountId": string; readonly "productId"?: string; readonly "status": "requested"; readonly "createdAt": string; readonly "metadata": financial_address_createOutput_Metadata; };
|
|
162
|
-
type financial_address_createOutput_Metadata = { readonly [key: string]: financial_address_createOutput_MetadataValue };
|
|
163
|
-
type financial_address_createOutput_MetadataValue = (financial_address_createOutput_MetadataScalar | ReadonlyArray<financial_address_createOutput_MetadataScalar> | { readonly [key: string]: financial_address_createOutput_MetadataScalar });
|
|
164
|
-
type financial_address_createOutput_MetadataScalar = (string | number | boolean | null);
|
|
165
|
-
export type financial_address_disableInput = { readonly "financialAddressId": string; readonly "reason": string; };
|
|
166
|
-
export type financial_address_disableOutput = { readonly "financialAddressId": string; readonly "tenantId": string; readonly "accountId": string; readonly "status": "disabled"; readonly "updatedAt": string; };
|
|
132
|
+
export type extension_listOutput = { readonly "items": ReadonlyArray<{ readonly "id": "money" | "marketplace" | "escrow" | "wallet" | "financing" | "lending" | "insurance" | "approvals" | "collections" | "travel" | "cards" | "savings" | "reporting"; readonly "title": string; readonly "objects": ReadonlyArray<{ readonly "name": string; readonly "qualifiedName": string; readonly "summary": string; readonly "authoringTemplate": { readonly "source": string; readonly "requiredImport": string; readonly "instancePlaceholder": string; readonly "requiredBindings": ReadonlyArray<{ readonly "name": string; readonly "type": string; readonly "placeholder": string; }>; }; readonly "tunables": ReadonlyArray<{ readonly "name": string; readonly "type": string; readonly "required": boolean; readonly "default"?: string; readonly "values"?: ReadonlyArray<string>; readonly "minimum"?: (number | string); readonly "maximum"?: (number | string); }>; readonly "constraints": ReadonlyArray<{ readonly "tunable": string; readonly "relation": "less_than" | "at_most" | "greater_than"; readonly "other": string; }>; readonly "parties": ReadonlyArray<string>; readonly "actions": ReadonlyArray<{ readonly "name": string; readonly "summary": string; readonly "actor": string; }>; }>; }>; readonly "nextCursor"?: string; };
|
|
167
133
|
export type financial_address_listInput = { readonly "productId"?: string; readonly "limit"?: number; readonly "cursor"?: string; readonly "query"?: string; readonly "createdFrom"?: string; readonly "createdTo"?: string; readonly "status"?: "requested" | "active" | "disabled"; };
|
|
168
134
|
export type financial_address_listOutput = { readonly "items": ReadonlyArray<{ readonly "financialAddressId": string; readonly "tenantId": string; readonly "address"?: string; readonly "accountId"?: string; readonly "purpose"?: string; readonly "status"?: "requested" | "active" | "disabled"; readonly "activeAt"?: string; readonly "addressClass"?: string; readonly "createdAt"?: string; }>; readonly "nextCursor"?: string; readonly "statusCounts"?: { readonly [key: string]: number }; };
|
|
169
135
|
export type financial_address_retrieveInput = { readonly "productId"?: string; readonly "financialAddressId": string; };
|
|
@@ -171,15 +137,17 @@ export type financial_address_retrieveOutput = { readonly "item": { readonly "fi
|
|
|
171
137
|
export type human_approval_approver_listInput = { readonly "approvalRequestId": string; };
|
|
172
138
|
export type human_approval_approver_listOutput = { readonly "approvalRequestId": string; readonly "approvers": ReadonlyArray<{ readonly "memberId": string; readonly "displayName": string; readonly "role": string; readonly "eligible": boolean; readonly "ineligibilityReason"?: string; }>; };
|
|
173
139
|
export type human_approval_cancelInput = { readonly "approvalRequestId": string; readonly "reason": string; };
|
|
174
|
-
export type human_approval_cancelOutput = { readonly "tenantId": string; readonly "approvalRequestId": string; readonly "state": "pending" | "approved" | "consumed" | "cancelled" | "expired" | "invalidated"; readonly "reviewUrl": string; readonly "expiresAt": string; readonly "createdAt": string; readonly "approvedAt": (string | null); readonly "approverMemberId": string | null; readonly "operationName": string; readonly "scope": ({ readonly "kind": "org"; readonly "tenantId": string; readonly "environment": "sandbox" | "live" | "either"; } | { readonly "kind": "product"; readonly "tenantId": string; readonly "environment": "sandbox" | "live" | "either"; readonly "productId": string; readonly "productBuildId": string; readonly "buildDigest": string; }); readonly "requestHash": string; readonly "reviewDigest": string; readonly "policyRevision": string; readonly "separation": "distinct_member" | "self_permitted"; readonly "eligibleApproverCount": number; readonly "resume": "same_request_same_key"; readonly "reviewEnvelope": { readonly "amounts": ReadonlyArray<{ readonly "amount": string | number; readonly "currency": string; readonly "description"?: string; }>; readonly "sourceAccount"?: { readonly "accountId"?: string; readonly "ownerName"?: string; readonly "role"?: string; }; readonly "destinationAccount"?: { readonly "accountId"?: string; readonly "ownerName"?: string; readonly "role"?: string; }; readonly "fees"?: ReadonlyArray<{ readonly "amount": string | number; readonly "currency": string; readonly "description"?: string; }>; readonly "tax"?: ({ readonly "amount": string | number; readonly "currency": string; } | null); readonly "holdEffects"?: ReadonlyArray<{ readonly "holdId"?: string; readonly "amount"?: string | number; readonly "currency"?: string; readonly "status"?: string; }>; readonly "debtEffects"?: ReadonlyArray<{ readonly "debtId"?: string; readonly "amount"?: string | number; readonly "kind"?: string; }>; readonly "targetRecords": ReadonlyArray<{ readonly "recordType": string; readonly "recordId": string; }>; readonly "prerequisiteEvidence"?: ReadonlyArray<{ readonly "evidenceId"?: string; readonly "kind"?: string; readonly "description"?: string; }>; readonly "consequences": ReadonlyArray<string>; readonly "requestingCredential": { readonly "credentialKind": string; readonly "credentialRecordId": string; readonly "displayName"?: string; }; readonly "requestingMember"?: ({ readonly "memberId"?: string; readonly "displayName"?: string; } | null); readonly "checkpointReason"?: string | null; }; readonly "input"?: { readonly [key: string]: unknown }; readonly "reasonCode": string | null; readonly "operationId": (string | null); readonly "receiptId": (string | null); };
|
|
140
|
+
export type human_approval_cancelOutput = { readonly "tenantId": string; readonly "approvalRequestId": string; readonly "state": "pending" | "approved" | "consumed" | "cancelled" | "expired" | "invalidated"; readonly "reviewUrl": string; readonly "expiresAt": string; readonly "createdAt": string; readonly "approvedAt": (string | null); readonly "approverMemberId": string | null; readonly "operationName": string; readonly "scope": ({ readonly "kind": "org"; readonly "tenantId": string; readonly "environment": "sandbox" | "live" | "either"; } | { readonly "kind": "product"; readonly "tenantId": string; readonly "environment": "sandbox" | "live" | "either"; readonly "productId": string; readonly "productBuildId": string; readonly "buildDigest": string; }); readonly "requestHash": string; readonly "reviewDigest": string; readonly "policyRevision": string; readonly "separation": "distinct_member" | "self_permitted"; readonly "eligibleApproverCount": number; readonly "resume": "same_request_same_key"; readonly "reviewEnvelope": { readonly "protectedRequests": ReadonlyArray<{ readonly "requestId": string; readonly "target": string; readonly "action": string; readonly "productBuildId": string; readonly "digest": string; readonly "party": string; readonly "role": string; readonly "differentFromInitiator": boolean; readonly "initiator": ({ readonly "kind": "human"; readonly "principalId": string; readonly "humanId": string; readonly "source": "staff_session" | "customer_session"; } | { readonly "kind": "machine"; readonly "principalId": string; readonly "source": "api_key" | "system"; } | { readonly "kind": "machine"; readonly "principalId": string; readonly "humanId": string; readonly "source": "api_key_delegate"; }); }>; readonly "payout"?: { readonly "payoutId": string; readonly "status": string; readonly "beneficiaryId": string; readonly "beneficiaryName": string; readonly "beneficiaryAccountAddress": string; readonly "beneficiaryStatus": string; readonly "verificationId": string | null; readonly "externalConfirmationId": string | null; readonly "statementLineId": string | null; }; readonly "amounts": ReadonlyArray<{ readonly "amount": string | number; readonly "currency": string; readonly "description"?: string; }>; readonly "sourceAccount"?: { readonly "accountId"?: string; readonly "ownerName"?: string; readonly "role"?: string; }; readonly "destinationAccount"?: { readonly "accountId"?: string; readonly "ownerName"?: string; readonly "role"?: string; }; readonly "fees"?: ReadonlyArray<{ readonly "amount": string | number; readonly "currency": string; readonly "description"?: string; }>; readonly "tax"?: ({ readonly "amount": string | number; readonly "currency": string; } | null); readonly "holdEffects"?: ReadonlyArray<{ readonly "holdId"?: string; readonly "amount"?: string | number; readonly "currency"?: string; readonly "status"?: string; }>; readonly "debtEffects"?: ReadonlyArray<{ readonly "debtId"?: string; readonly "amount"?: string | number; readonly "kind"?: string; }>; readonly "targetRecords": ReadonlyArray<{ readonly "recordType": string; readonly "recordId": string; }>; readonly "prerequisiteEvidence"?: ReadonlyArray<{ readonly "evidenceId"?: string; readonly "kind"?: string; readonly "description"?: string; }>; readonly "consequences": ReadonlyArray<string>; readonly "requestingCredential": { readonly "credentialKind": string; readonly "credentialRecordId": string; readonly "displayName"?: string; }; readonly "requestingMember"?: ({ readonly "memberId"?: string; readonly "displayName"?: string; } | null); readonly "checkpointReason"?: string | null; }; readonly "input"?: { readonly [key: string]: unknown }; readonly "reasonCode": string | null; readonly "operationId": (string | null); readonly "receiptId": (string | null); };
|
|
175
141
|
export type human_approval_expireInput = Record<string, never>;
|
|
176
142
|
export type human_approval_expireOutput = { readonly "tenantId": string; readonly "expiredCount": number; };
|
|
143
|
+
export type human_approval_history_listInput = { readonly "approvalRequestId": string; readonly "limit"?: number; readonly "cursor"?: string; };
|
|
144
|
+
export type human_approval_history_listOutput = { readonly "items": ReadonlyArray<{ readonly "eventId": string; readonly "outcome": string; readonly "occurredAt": string; readonly "principalId": string | null; readonly "memberId": string | null; readonly "reason": string | null; readonly "operationId": string | null; readonly "receiptId": string | null; }>; readonly "nextCursor"?: string; };
|
|
177
145
|
export type human_approval_request_createInput = { readonly "operationName": string; readonly "scope": ({ readonly "kind": "org"; readonly "tenantId": string; readonly "environment": "sandbox" | "live" | "either"; } | { readonly "kind": "product"; readonly "tenantId": string; readonly "environment": "sandbox" | "live" | "either"; readonly "productId": string; readonly "productBuildId": string; readonly "buildDigest": string; }); readonly "input": { readonly [key: string]: unknown }; readonly "executionIdempotencyKey": string; };
|
|
178
|
-
export type human_approval_request_createOutput = { readonly "tenantId": string; readonly "approvalRequestId": string; readonly "state": "pending" | "approved" | "consumed" | "cancelled" | "expired" | "invalidated"; readonly "reviewUrl": string; readonly "expiresAt": string; readonly "createdAt": string; readonly "approvedAt": (string | null); readonly "approverMemberId": string | null; readonly "operationName": string; readonly "scope": ({ readonly "kind": "org"; readonly "tenantId": string; readonly "environment": "sandbox" | "live" | "either"; } | { readonly "kind": "product"; readonly "tenantId": string; readonly "environment": "sandbox" | "live" | "either"; readonly "productId": string; readonly "productBuildId": string; readonly "buildDigest": string; }); readonly "requestHash": string; readonly "reviewDigest": string; readonly "policyRevision": string; readonly "separation": "distinct_member" | "self_permitted"; readonly "eligibleApproverCount": number; readonly "resume": "same_request_same_key"; readonly "reviewEnvelope": { readonly "amounts": ReadonlyArray<{ readonly "amount": string | number; readonly "currency": string; readonly "description"?: string; }>; readonly "sourceAccount"?: { readonly "accountId"?: string; readonly "ownerName"?: string; readonly "role"?: string; }; readonly "destinationAccount"?: { readonly "accountId"?: string; readonly "ownerName"?: string; readonly "role"?: string; }; readonly "fees"?: ReadonlyArray<{ readonly "amount": string | number; readonly "currency": string; readonly "description"?: string; }>; readonly "tax"?: ({ readonly "amount": string | number; readonly "currency": string; } | null); readonly "holdEffects"?: ReadonlyArray<{ readonly "holdId"?: string; readonly "amount"?: string | number; readonly "currency"?: string; readonly "status"?: string; }>; readonly "debtEffects"?: ReadonlyArray<{ readonly "debtId"?: string; readonly "amount"?: string | number; readonly "kind"?: string; }>; readonly "targetRecords": ReadonlyArray<{ readonly "recordType": string; readonly "recordId": string; }>; readonly "prerequisiteEvidence"?: ReadonlyArray<{ readonly "evidenceId"?: string; readonly "kind"?: string; readonly "description"?: string; }>; readonly "consequences": ReadonlyArray<string>; readonly "requestingCredential": { readonly "credentialKind": string; readonly "credentialRecordId": string; readonly "displayName"?: string; }; readonly "requestingMember"?: ({ readonly "memberId"?: string; readonly "displayName"?: string; } | null); readonly "checkpointReason"?: string | null; }; readonly "input"?: { readonly [key: string]: unknown }; readonly "reasonCode": string | null; readonly "operationId": (string | null); readonly "receiptId": (string | null); };
|
|
146
|
+
export type human_approval_request_createOutput = { readonly "tenantId": string; readonly "approvalRequestId": string; readonly "state": "pending" | "approved" | "consumed" | "cancelled" | "expired" | "invalidated"; readonly "reviewUrl": string; readonly "expiresAt": string; readonly "createdAt": string; readonly "approvedAt": (string | null); readonly "approverMemberId": string | null; readonly "operationName": string; readonly "scope": ({ readonly "kind": "org"; readonly "tenantId": string; readonly "environment": "sandbox" | "live" | "either"; } | { readonly "kind": "product"; readonly "tenantId": string; readonly "environment": "sandbox" | "live" | "either"; readonly "productId": string; readonly "productBuildId": string; readonly "buildDigest": string; }); readonly "requestHash": string; readonly "reviewDigest": string; readonly "policyRevision": string; readonly "separation": "distinct_member" | "self_permitted"; readonly "eligibleApproverCount": number; readonly "resume": "same_request_same_key"; readonly "reviewEnvelope": { readonly "protectedRequests": ReadonlyArray<{ readonly "requestId": string; readonly "target": string; readonly "action": string; readonly "productBuildId": string; readonly "digest": string; readonly "party": string; readonly "role": string; readonly "differentFromInitiator": boolean; readonly "initiator": ({ readonly "kind": "human"; readonly "principalId": string; readonly "humanId": string; readonly "source": "staff_session" | "customer_session"; } | { readonly "kind": "machine"; readonly "principalId": string; readonly "source": "api_key" | "system"; } | { readonly "kind": "machine"; readonly "principalId": string; readonly "humanId": string; readonly "source": "api_key_delegate"; }); }>; readonly "payout"?: { readonly "payoutId": string; readonly "status": string; readonly "beneficiaryId": string; readonly "beneficiaryName": string; readonly "beneficiaryAccountAddress": string; readonly "beneficiaryStatus": string; readonly "verificationId": string | null; readonly "externalConfirmationId": string | null; readonly "statementLineId": string | null; }; readonly "amounts": ReadonlyArray<{ readonly "amount": string | number; readonly "currency": string; readonly "description"?: string; }>; readonly "sourceAccount"?: { readonly "accountId"?: string; readonly "ownerName"?: string; readonly "role"?: string; }; readonly "destinationAccount"?: { readonly "accountId"?: string; readonly "ownerName"?: string; readonly "role"?: string; }; readonly "fees"?: ReadonlyArray<{ readonly "amount": string | number; readonly "currency": string; readonly "description"?: string; }>; readonly "tax"?: ({ readonly "amount": string | number; readonly "currency": string; } | null); readonly "holdEffects"?: ReadonlyArray<{ readonly "holdId"?: string; readonly "amount"?: string | number; readonly "currency"?: string; readonly "status"?: string; }>; readonly "debtEffects"?: ReadonlyArray<{ readonly "debtId"?: string; readonly "amount"?: string | number; readonly "kind"?: string; }>; readonly "targetRecords": ReadonlyArray<{ readonly "recordType": string; readonly "recordId": string; }>; readonly "prerequisiteEvidence"?: ReadonlyArray<{ readonly "evidenceId"?: string; readonly "kind"?: string; readonly "description"?: string; }>; readonly "consequences": ReadonlyArray<string>; readonly "requestingCredential": { readonly "credentialKind": string; readonly "credentialRecordId": string; readonly "displayName"?: string; }; readonly "requestingMember"?: ({ readonly "memberId"?: string; readonly "displayName"?: string; } | null); readonly "checkpointReason"?: string | null; }; readonly "input"?: { readonly [key: string]: unknown }; readonly "reasonCode": string | null; readonly "operationId": (string | null); readonly "receiptId": (string | null); };
|
|
179
147
|
export type human_approval_request_listInput = { readonly "state"?: "pending" | "approved" | "consumed" | "cancelled" | "expired" | "invalidated"; readonly "productId"?: string; readonly "limit"?: number; readonly "cursor"?: string; };
|
|
180
|
-
export type human_approval_request_listOutput = { readonly "items": ReadonlyArray<{ readonly "tenantId": string; readonly "approvalRequestId": string; readonly "state": "pending" | "approved" | "consumed" | "cancelled" | "expired" | "invalidated"; readonly "reviewUrl": string; readonly "expiresAt": string; readonly "createdAt": string; readonly "approvedAt": (string | null); readonly "approverMemberId": string | null; readonly "operationName": string; readonly "scope": ({ readonly "kind": "org"; readonly "tenantId": string; readonly "environment": "sandbox" | "live" | "either"; } | { readonly "kind": "product"; readonly "tenantId": string; readonly "environment": "sandbox" | "live" | "either"; readonly "productId": string; readonly "productBuildId": string; readonly "buildDigest": string; }); readonly "requestHash": string; readonly "reviewDigest": string; readonly "policyRevision": string; readonly "separation": "distinct_member" | "self_permitted"; readonly "eligibleApproverCount": number; readonly "resume": "same_request_same_key"; readonly "reviewEnvelope": { readonly "amounts": ReadonlyArray<{ readonly "amount": string | number; readonly "currency": string; readonly "description"?: string; }>; readonly "sourceAccount"?: { readonly "accountId"?: string; readonly "ownerName"?: string; readonly "role"?: string; }; readonly "destinationAccount"?: { readonly "accountId"?: string; readonly "ownerName"?: string; readonly "role"?: string; }; readonly "fees"?: ReadonlyArray<{ readonly "amount": string | number; readonly "currency": string; readonly "description"?: string; }>; readonly "tax"?: ({ readonly "amount": string | number; readonly "currency": string; } | null); readonly "holdEffects"?: ReadonlyArray<{ readonly "holdId"?: string; readonly "amount"?: string | number; readonly "currency"?: string; readonly "status"?: string; }>; readonly "debtEffects"?: ReadonlyArray<{ readonly "debtId"?: string; readonly "amount"?: string | number; readonly "kind"?: string; }>; readonly "targetRecords": ReadonlyArray<{ readonly "recordType": string; readonly "recordId": string; }>; readonly "prerequisiteEvidence"?: ReadonlyArray<{ readonly "evidenceId"?: string; readonly "kind"?: string; readonly "description"?: string; }>; readonly "consequences": ReadonlyArray<string>; readonly "requestingCredential": { readonly "credentialKind": string; readonly "credentialRecordId": string; readonly "displayName"?: string; }; readonly "requestingMember"?: ({ readonly "memberId"?: string; readonly "displayName"?: string; } | null); readonly "checkpointReason"?: string | null; }; readonly "input"?: { readonly [key: string]: unknown }; readonly "reasonCode": string | null; readonly "operationId": (string | null); readonly "receiptId": (string | null); }>; readonly "nextCursor"?: string; };
|
|
148
|
+
export type human_approval_request_listOutput = { readonly "items": ReadonlyArray<{ readonly "tenantId": string; readonly "approvalRequestId": string; readonly "state": "pending" | "approved" | "consumed" | "cancelled" | "expired" | "invalidated"; readonly "reviewUrl": string; readonly "expiresAt": string; readonly "createdAt": string; readonly "approvedAt": (string | null); readonly "approverMemberId": string | null; readonly "operationName": string; readonly "scope": ({ readonly "kind": "org"; readonly "tenantId": string; readonly "environment": "sandbox" | "live" | "either"; } | { readonly "kind": "product"; readonly "tenantId": string; readonly "environment": "sandbox" | "live" | "either"; readonly "productId": string; readonly "productBuildId": string; readonly "buildDigest": string; }); readonly "requestHash": string; readonly "reviewDigest": string; readonly "policyRevision": string; readonly "separation": "distinct_member" | "self_permitted"; readonly "eligibleApproverCount": number; readonly "resume": "same_request_same_key"; readonly "reviewEnvelope": { readonly "protectedRequests": ReadonlyArray<{ readonly "requestId": string; readonly "target": string; readonly "action": string; readonly "productBuildId": string; readonly "digest": string; readonly "party": string; readonly "role": string; readonly "differentFromInitiator": boolean; readonly "initiator": ({ readonly "kind": "human"; readonly "principalId": string; readonly "humanId": string; readonly "source": "staff_session" | "customer_session"; } | { readonly "kind": "machine"; readonly "principalId": string; readonly "source": "api_key" | "system"; } | { readonly "kind": "machine"; readonly "principalId": string; readonly "humanId": string; readonly "source": "api_key_delegate"; }); }>; readonly "payout"?: { readonly "payoutId": string; readonly "status": string; readonly "beneficiaryId": string; readonly "beneficiaryName": string; readonly "beneficiaryAccountAddress": string; readonly "beneficiaryStatus": string; readonly "verificationId": string | null; readonly "externalConfirmationId": string | null; readonly "statementLineId": string | null; }; readonly "amounts": ReadonlyArray<{ readonly "amount": string | number; readonly "currency": string; readonly "description"?: string; }>; readonly "sourceAccount"?: { readonly "accountId"?: string; readonly "ownerName"?: string; readonly "role"?: string; }; readonly "destinationAccount"?: { readonly "accountId"?: string; readonly "ownerName"?: string; readonly "role"?: string; }; readonly "fees"?: ReadonlyArray<{ readonly "amount": string | number; readonly "currency": string; readonly "description"?: string; }>; readonly "tax"?: ({ readonly "amount": string | number; readonly "currency": string; } | null); readonly "holdEffects"?: ReadonlyArray<{ readonly "holdId"?: string; readonly "amount"?: string | number; readonly "currency"?: string; readonly "status"?: string; }>; readonly "debtEffects"?: ReadonlyArray<{ readonly "debtId"?: string; readonly "amount"?: string | number; readonly "kind"?: string; }>; readonly "targetRecords": ReadonlyArray<{ readonly "recordType": string; readonly "recordId": string; }>; readonly "prerequisiteEvidence"?: ReadonlyArray<{ readonly "evidenceId"?: string; readonly "kind"?: string; readonly "description"?: string; }>; readonly "consequences": ReadonlyArray<string>; readonly "requestingCredential": { readonly "credentialKind": string; readonly "credentialRecordId": string; readonly "displayName"?: string; }; readonly "requestingMember"?: ({ readonly "memberId"?: string; readonly "displayName"?: string; } | null); readonly "checkpointReason"?: string | null; }; readonly "input"?: { readonly [key: string]: unknown }; readonly "reasonCode": string | null; readonly "operationId": (string | null); readonly "receiptId": (string | null); }>; readonly "nextCursor"?: string; };
|
|
181
149
|
export type human_approval_request_retrieveInput = { readonly "approvalRequestId": string; };
|
|
182
|
-
export type human_approval_request_retrieveOutput = { readonly "tenantId": string; readonly "approvalRequestId": string; readonly "state": "pending" | "approved" | "consumed" | "cancelled" | "expired" | "invalidated"; readonly "reviewUrl": string; readonly "expiresAt": string; readonly "createdAt": string; readonly "approvedAt": (string | null); readonly "approverMemberId": string | null; readonly "operationName": string; readonly "scope": ({ readonly "kind": "org"; readonly "tenantId": string; readonly "environment": "sandbox" | "live" | "either"; } | { readonly "kind": "product"; readonly "tenantId": string; readonly "environment": "sandbox" | "live" | "either"; readonly "productId": string; readonly "productBuildId": string; readonly "buildDigest": string; }); readonly "requestHash": string; readonly "reviewDigest": string; readonly "policyRevision": string; readonly "separation": "distinct_member" | "self_permitted"; readonly "eligibleApproverCount": number; readonly "resume": "same_request_same_key"; readonly "reviewEnvelope": { readonly "amounts": ReadonlyArray<{ readonly "amount": string | number; readonly "currency": string; readonly "description"?: string; }>; readonly "sourceAccount"?: { readonly "accountId"?: string; readonly "ownerName"?: string; readonly "role"?: string; }; readonly "destinationAccount"?: { readonly "accountId"?: string; readonly "ownerName"?: string; readonly "role"?: string; }; readonly "fees"?: ReadonlyArray<{ readonly "amount": string | number; readonly "currency": string; readonly "description"?: string; }>; readonly "tax"?: ({ readonly "amount": string | number; readonly "currency": string; } | null); readonly "holdEffects"?: ReadonlyArray<{ readonly "holdId"?: string; readonly "amount"?: string | number; readonly "currency"?: string; readonly "status"?: string; }>; readonly "debtEffects"?: ReadonlyArray<{ readonly "debtId"?: string; readonly "amount"?: string | number; readonly "kind"?: string; }>; readonly "targetRecords": ReadonlyArray<{ readonly "recordType": string; readonly "recordId": string; }>; readonly "prerequisiteEvidence"?: ReadonlyArray<{ readonly "evidenceId"?: string; readonly "kind"?: string; readonly "description"?: string; }>; readonly "consequences": ReadonlyArray<string>; readonly "requestingCredential": { readonly "credentialKind": string; readonly "credentialRecordId": string; readonly "displayName"?: string; }; readonly "requestingMember"?: ({ readonly "memberId"?: string; readonly "displayName"?: string; } | null); readonly "checkpointReason"?: string | null; }; readonly "input"?: { readonly [key: string]: unknown }; readonly "reasonCode": string | null; readonly "operationId": (string | null); readonly "receiptId": (string | null); };
|
|
150
|
+
export type human_approval_request_retrieveOutput = { readonly "tenantId": string; readonly "approvalRequestId": string; readonly "state": "pending" | "approved" | "consumed" | "cancelled" | "expired" | "invalidated"; readonly "reviewUrl": string; readonly "expiresAt": string; readonly "createdAt": string; readonly "approvedAt": (string | null); readonly "approverMemberId": string | null; readonly "operationName": string; readonly "scope": ({ readonly "kind": "org"; readonly "tenantId": string; readonly "environment": "sandbox" | "live" | "either"; } | { readonly "kind": "product"; readonly "tenantId": string; readonly "environment": "sandbox" | "live" | "either"; readonly "productId": string; readonly "productBuildId": string; readonly "buildDigest": string; }); readonly "requestHash": string; readonly "reviewDigest": string; readonly "policyRevision": string; readonly "separation": "distinct_member" | "self_permitted"; readonly "eligibleApproverCount": number; readonly "resume": "same_request_same_key"; readonly "reviewEnvelope": { readonly "protectedRequests": ReadonlyArray<{ readonly "requestId": string; readonly "target": string; readonly "action": string; readonly "productBuildId": string; readonly "digest": string; readonly "party": string; readonly "role": string; readonly "differentFromInitiator": boolean; readonly "initiator": ({ readonly "kind": "human"; readonly "principalId": string; readonly "humanId": string; readonly "source": "staff_session" | "customer_session"; } | { readonly "kind": "machine"; readonly "principalId": string; readonly "source": "api_key" | "system"; } | { readonly "kind": "machine"; readonly "principalId": string; readonly "humanId": string; readonly "source": "api_key_delegate"; }); }>; readonly "payout"?: { readonly "payoutId": string; readonly "status": string; readonly "beneficiaryId": string; readonly "beneficiaryName": string; readonly "beneficiaryAccountAddress": string; readonly "beneficiaryStatus": string; readonly "verificationId": string | null; readonly "externalConfirmationId": string | null; readonly "statementLineId": string | null; }; readonly "amounts": ReadonlyArray<{ readonly "amount": string | number; readonly "currency": string; readonly "description"?: string; }>; readonly "sourceAccount"?: { readonly "accountId"?: string; readonly "ownerName"?: string; readonly "role"?: string; }; readonly "destinationAccount"?: { readonly "accountId"?: string; readonly "ownerName"?: string; readonly "role"?: string; }; readonly "fees"?: ReadonlyArray<{ readonly "amount": string | number; readonly "currency": string; readonly "description"?: string; }>; readonly "tax"?: ({ readonly "amount": string | number; readonly "currency": string; } | null); readonly "holdEffects"?: ReadonlyArray<{ readonly "holdId"?: string; readonly "amount"?: string | number; readonly "currency"?: string; readonly "status"?: string; }>; readonly "debtEffects"?: ReadonlyArray<{ readonly "debtId"?: string; readonly "amount"?: string | number; readonly "kind"?: string; }>; readonly "targetRecords": ReadonlyArray<{ readonly "recordType": string; readonly "recordId": string; }>; readonly "prerequisiteEvidence"?: ReadonlyArray<{ readonly "evidenceId"?: string; readonly "kind"?: string; readonly "description"?: string; }>; readonly "consequences": ReadonlyArray<string>; readonly "requestingCredential": { readonly "credentialKind": string; readonly "credentialRecordId": string; readonly "displayName"?: string; }; readonly "requestingMember"?: ({ readonly "memberId"?: string; readonly "displayName"?: string; } | null); readonly "checkpointReason"?: string | null; }; readonly "input"?: { readonly [key: string]: unknown }; readonly "reasonCode": string | null; readonly "operationId": (string | null); readonly "receiptId": (string | null); };
|
|
183
151
|
export type internal_transfer_listInput = { readonly "productId"?: string; readonly "limit"?: number; readonly "cursor"?: string; readonly "query"?: string; readonly "createdFrom"?: string; readonly "createdTo"?: string; readonly "status"?: "settled" | "reversed" | "accepted" | "reserved" | "posted" | "voided" | "failed"; };
|
|
184
152
|
export type internal_transfer_listOutput = { readonly "items": ReadonlyArray<{ readonly "transferId": string; readonly "tenantId": string; readonly "amount"?: string; readonly "postedAmount"?: string; readonly "currency"?: string; readonly "sourceAccountId"?: string; readonly "destinationAccountId"?: string; readonly "status"?: "settled" | "reversed" | "accepted" | "reserved" | "posted" | "voided" | "failed"; readonly "expiresAt"?: string; readonly "expiredAt"?: string; readonly "metadata"?: internal_transfer_listOutput_Metadata; readonly "correctsTransferId"?: string; readonly "createdAt"?: string; }>; readonly "nextCursor"?: string; readonly "statusCounts"?: { readonly [key: string]: number }; };
|
|
185
153
|
type internal_transfer_listOutput_Metadata = { readonly [key: string]: internal_transfer_listOutput_MetadataValue };
|
|
@@ -198,8 +166,6 @@ export type invoice_listInput = { readonly "productId"?: string; readonly "limit
|
|
|
198
166
|
export type invoice_listOutput = { readonly "items": ReadonlyArray<{ readonly "invoiceId": string; readonly "tenantId": string; readonly "id": string; readonly "billingPeriodId"?: string; readonly "billedToName"?: string; readonly "status"?: "draft" | "finalized" | "charged" | "paid" | "voided" | "credited"; readonly "subtotalAmount"?: string; readonly "creditAppliedAmount"?: string; readonly "totalAmount"?: string; readonly "currency"?: string; readonly "finalizedAt"?: string; readonly "createdAt"?: string; }>; readonly "nextCursor"?: string; readonly "statusCounts"?: { readonly [key: string]: number }; };
|
|
199
167
|
export type invoice_retrieveInput = { readonly "productId"?: string; readonly "invoiceId": string; };
|
|
200
168
|
export type invoice_retrieveOutput = { readonly "item": { readonly "invoiceId": string; readonly "tenantId": string; readonly "id": string; readonly "billingPeriodId"?: string; readonly "billedToName"?: string; readonly "status"?: "draft" | "finalized" | "charged" | "paid" | "voided" | "credited"; readonly "subtotalAmount"?: string; readonly "creditAppliedAmount"?: string; readonly "totalAmount"?: string; readonly "currency"?: string; readonly "finalizedAt"?: string; readonly "createdAt"?: string; }; };
|
|
201
|
-
export type kyc_requirements_retrieveInput = { readonly "country": string; };
|
|
202
|
-
export type kyc_requirements_retrieveOutput = { readonly "country": string; readonly "tiers": ReadonlyArray<{ readonly "tier": "basic" | "standard" | "investment"; readonly "level": number; readonly "name": string; readonly "summary": string; readonly "fieldGroups": ReadonlyArray<"identity" | "personal" | "address" | "education" | "financial_profile" | "employment" | "investment_experience" | "declarations" | "tax_residency" | "consent">; readonly "fields": ReadonlyArray<{ readonly "key": string; readonly "group": "identity" | "personal" | "address" | "education" | "financial_profile" | "employment" | "investment_experience" | "declarations" | "tax_residency" | "consent"; readonly "type": "text" | "boolean" | "integer" | "enum" | "multi_enum" | "country"; readonly "label": string; readonly "values"?: ReadonlyArray<string>; readonly "pattern"?: string; readonly "optional"?: boolean; readonly "dependsOn"?: { readonly "key": string; readonly "equals": boolean; }; readonly "mustEqual"?: boolean; }>; }>; };
|
|
203
169
|
export type meter_period_snapshot_listInput = { readonly "productId"?: string; readonly "limit"?: number; readonly "cursor"?: string; readonly "query"?: string; readonly "createdFrom"?: string; readonly "createdTo"?: string; readonly "billingPeriodId"?: string; };
|
|
204
170
|
export type meter_period_snapshot_listOutput = { readonly "items": ReadonlyArray<{ readonly "meterPeriodSnapshotId": string; readonly "tenantId": string; readonly "id": string; readonly "billingPeriodId"?: string; readonly "meter"?: string; readonly "quantity"?: string; readonly "status"?: string; readonly "createdAt"?: string; }>; readonly "nextCursor"?: string; readonly "statusCounts"?: { readonly [key: string]: number }; };
|
|
205
171
|
export type meter_period_snapshot_retrieveInput = { readonly "productId"?: string; readonly "meterPeriodSnapshotId": string; };
|
|
@@ -208,27 +174,22 @@ export type operation_listInput = { readonly "productId"?: string; readonly "lim
|
|
|
208
174
|
export type operation_listOutput = { readonly "items": ReadonlyArray<{ readonly "operationId": string; readonly "tenantId"?: string; readonly "name": string; readonly "status"?: "accepted" | "pending" | "succeeded" | "failed"; readonly "errorCode"?: string; readonly "errorMessage"?: string; readonly "createdAt"?: string; }>; readonly "nextCursor"?: string; readonly "statusCounts"?: { readonly [key: string]: number }; };
|
|
209
175
|
export type operation_retrieveInput = { readonly "productId"?: string; readonly "operationId": string; };
|
|
210
176
|
export type operation_retrieveOutput = { readonly "item": { readonly "operationId": string; readonly "tenantId"?: string; readonly "name": string; readonly "status"?: "accepted" | "pending" | "succeeded" | "failed"; readonly "errorCode"?: string; readonly "errorMessage"?: string; readonly "createdAt"?: string; }; };
|
|
211
|
-
export type
|
|
212
|
-
type
|
|
213
|
-
type
|
|
214
|
-
type
|
|
215
|
-
export type payout_createOutput = { readonly "payoutId": string; readonly "tenantId": string; readonly "sourceAccountId": string; readonly "beneficiaryId": string; readonly "amount": string; readonly "currency": string; readonly "speed": "instant" | "standard"; readonly "status": "created"; readonly "estimatedCompletionAt"?: string; readonly "createdAt": string; readonly "metadata": payout_createOutput_Metadata; };
|
|
216
|
-
type payout_createOutput_Metadata = { readonly [key: string]: payout_createOutput_MetadataValue };
|
|
217
|
-
type payout_createOutput_MetadataValue = (payout_createOutput_MetadataScalar | ReadonlyArray<payout_createOutput_MetadataScalar> | { readonly [key: string]: payout_createOutput_MetadataScalar });
|
|
218
|
-
type payout_createOutput_MetadataScalar = (string | number | boolean | null);
|
|
177
|
+
export type payment_reminder_delivery_retrieveInput = { readonly "productId": string; readonly "operationId": string; };
|
|
178
|
+
export type payment_reminder_delivery_retrieveOutput = { readonly "tenantId": string; readonly "productId": string; readonly "operationId": string; readonly "deliveries": ReadonlyArray<{ readonly "deliveryId": string; readonly "installmentId": string; readonly "customerId": string; readonly "channel": "email"; readonly "template": "payment_reminder"; readonly "state": "prepared" | "unknown" | "accepted" | "delivered" | "failed" | "bounced" | "simulated"; readonly "provider": string; readonly "providerReference": string | null; readonly "providerAccepted": boolean; readonly "delivered": boolean; readonly "updatedAt": string; }>; };
|
|
179
|
+
export type payout_evidence_retrieveInput = { readonly "payoutId": string; readonly "limit"?: number; readonly "cursor"?: string; };
|
|
180
|
+
export type payout_evidence_retrieveOutput = { readonly "payoutId": string; readonly "origin": ({ readonly "productId": string; readonly "productBuildId": string; readonly "buildDigest": string; readonly "action": string; readonly "instrument": string; readonly "instanceId": string; } | null); readonly "approval": ({ readonly "approvalRequestId": string; readonly "state": string; readonly "reviewDigest": string; readonly "approverMemberId": string | null; readonly "approvedAt": (string | null); } | null); readonly "operationId": string; readonly "submissionOperationId": string | null; readonly "receiptIds": ReadonlyArray<string>; readonly "providerEvents": { readonly "items": ReadonlyArray<{ readonly "eventId": string; readonly "providerEventId": string; readonly "provider": string; readonly "eventKind": string; readonly "status": string; readonly "occurredAt": string; readonly "externalConfirmationId": string; readonly "operationId": string | null; readonly "receiptId": string | null; }>; readonly "nextCursor"?: string; }; readonly "confirmations": ReadonlyArray<{ readonly "confirmationId": string; readonly "provider": string; readonly "providerReference": string; readonly "operationId": string; readonly "occurredAt": string; readonly "kind": "execution" | "return"; }>; readonly "statement": ({ readonly "statementLineId": string; readonly "amount": string; readonly "currency": string; readonly "occurredAt": string; readonly "valueDate": string; readonly "source": string; readonly "providerReference": string | null; } | null); };
|
|
219
181
|
export type payout_listInput = { readonly "productId"?: string; readonly "limit"?: number; readonly "cursor"?: string; readonly "query"?: string; readonly "createdFrom"?: string; readonly "createdTo"?: string; readonly "status"?: "created" | "processing" | "completed" | "failed" | "returned"; };
|
|
220
|
-
export type payout_listOutput = { readonly "items": ReadonlyArray<{ readonly "payoutId": string; readonly "tenantId": string; readonly "sourceAccountId"?: string; readonly "beneficiaryId"?: string; readonly "amount"?: string; readonly "currency"?: string; readonly "speed"?: string; readonly "transferId"?: string; readonly "estimatedCompletionAt"?: string; readonly "failureReason"?: string; readonly "returnReason"?: string; readonly "status"?: "created" | "processing" | "completed" | "failed" | "returned"; readonly "createdAt"?: string; }>; readonly "nextCursor"?: string; readonly "statusCounts"?: { readonly [key: string]: number }; };
|
|
182
|
+
export type payout_listOutput = { readonly "items": ReadonlyArray<{ readonly "payoutId": string; readonly "tenantId": string; readonly "originProductId"?: string; readonly "originProductBuildId"?: string; readonly "originBuildDigest"?: string; readonly "originAction"?: string; readonly "owningInstrumentId"?: string; readonly "owningInstrumentInstanceId"?: string; readonly "sourceAccountId"?: string; readonly "beneficiaryId"?: string; readonly "amount"?: string; readonly "currency"?: string; readonly "speed"?: string; readonly "transferId"?: string; readonly "estimatedCompletionAt"?: string; readonly "failureReason"?: string; readonly "returnReason"?: string; readonly "status"?: "created" | "processing" | "completed" | "failed" | "returned"; readonly "createdAt"?: string; }>; readonly "nextCursor"?: string; readonly "statusCounts"?: { readonly [key: string]: number }; };
|
|
221
183
|
export type payout_retrieveInput = { readonly "productId"?: string; readonly "payoutId": string; };
|
|
222
|
-
export type payout_retrieveOutput = { readonly "item": { readonly "payoutId": string; readonly "tenantId": string; readonly "sourceAccountId"?: string; readonly "beneficiaryId"?: string; readonly "amount"?: string; readonly "currency"?: string; readonly "speed"?: string; readonly "transferId"?: string; readonly "estimatedCompletionAt"?: string; readonly "failureReason"?: string; readonly "returnReason"?: string; readonly "status"?: "created" | "processing" | "completed" | "failed" | "returned"; readonly "createdAt"?: string; }; };
|
|
184
|
+
export type payout_retrieveOutput = { readonly "item": { readonly "payoutId": string; readonly "tenantId": string; readonly "originProductId"?: string; readonly "originProductBuildId"?: string; readonly "originBuildDigest"?: string; readonly "originAction"?: string; readonly "owningInstrumentId"?: string; readonly "owningInstrumentInstanceId"?: string; readonly "sourceAccountId"?: string; readonly "beneficiaryId"?: string; readonly "amount"?: string; readonly "currency"?: string; readonly "speed"?: string; readonly "transferId"?: string; readonly "estimatedCompletionAt"?: string; readonly "failureReason"?: string; readonly "returnReason"?: string; readonly "status"?: "created" | "processing" | "completed" | "failed" | "returned"; readonly "createdAt"?: string; }; };
|
|
223
185
|
export type product_actions_listInput = { readonly "productId": string; readonly "instrument"?: string; };
|
|
224
|
-
export type product_actions_listOutput = { readonly "productBuildId": string; readonly "buildDigest": string; readonly "items": ReadonlyArray<{ readonly "instrument": string; readonly "name": string; readonly "action": string; readonly "actor": ("caller" | "clock" | { readonly "party": string; } | { readonly "parent": string; }); readonly "input": ReadonlyArray<({ readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "type": "money"; readonly "value"?: string; readonly "minimum"?: string; readonly "maximum"?: string; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "type": "account"; readonly "owner": string; readonly "key"?: string; readonly "book": "cash" | "claim"; readonly "contra"?: true;
|
|
186
|
+
export type product_actions_listOutput = { readonly "productBuildId": string; readonly "buildDigest": string; readonly "items": ReadonlyArray<{ readonly "instrument": string; readonly "name": string; readonly "action": string; readonly "actor": ("caller" | "clock" | { readonly "party": string; } | { readonly "parent": (string | ReadonlyArray<string>); }); readonly "input": ReadonlyArray<({ readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "money"; readonly "value"?: string; readonly "minimum"?: string; readonly "maximum"?: string; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "account"; readonly "owner": string; readonly "key"?: string; readonly "book": "cash" | "claim"; readonly "contra"?: true; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "ref"; readonly "targetKind": "instrument" | "object"; readonly "targetFamily"?: { readonly "module": string; readonly "exportPath": string; readonly "revision": number; }; readonly "target": (string | ReadonlyArray<string>); } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "date"; readonly "value"?: string; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "duration"; readonly "value"?: number; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "text"; readonly "value"?: string; readonly "minLength"?: number; readonly "maxLength"?: number; readonly "pattern"?: string; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "integer"; readonly "value"?: number; readonly "minimum"?: number; readonly "maximum"?: number; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "percent"; readonly "value"?: number; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "boolean"; readonly "value"?: boolean; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "enum"; readonly "values": ReadonlyArray<string>; readonly "value"?: string; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "list"; readonly "item": "money" | "date" | "text" | "integer" | "ref"; readonly "targetKind"?: "instrument" | "object"; readonly "targetFamily"?: { readonly "module": string; readonly "exportPath": string; readonly "revision": number; }; readonly "target"?: string; readonly "maxItems": number; })>; readonly "instanceIdRequired": boolean; readonly "method": "POST"; readonly "path": string; }>; };
|
|
225
187
|
export type product_activation_retrieveInput = { readonly "productId": string; };
|
|
226
|
-
export type product_activation_retrieveOutput = { readonly "environment": "sandbox" | "live"; readonly "tenantId": string; readonly "productId": string; readonly "readiness": product_activation_retrieveOutput_ProductActivationReadiness; readonly "cost": product_activation_retrieveOutput_ProductLiveCostEstimate; };
|
|
227
|
-
type product_activation_retrieveOutput_ProductActivationReadiness = { readonly "live": boolean; readonly "
|
|
228
|
-
type product_activation_retrieveOutput_OutstandingLiveRequirement = { readonly "key": string; readonly "label": string; readonly "description": string; readonly "remedy": string; readonly "owner": "founder" | "platform_operator" | "provider_partner"; };
|
|
188
|
+
export type product_activation_retrieveOutput = { readonly "environment": "sandbox" | "live"; readonly "tenantId": string; readonly "productId": string; readonly "productBuildId": string; readonly "buildDigest": string; readonly "readiness": product_activation_retrieveOutput_ProductActivationReadiness; readonly "cost": product_activation_retrieveOutput_ProductLiveCostEstimate; };
|
|
189
|
+
type product_activation_retrieveOutput_ProductActivationReadiness = { readonly "live": boolean; readonly "blockers": ReadonlyArray<{ readonly "code": string; readonly "requirementId"?: string; readonly "adapter"?: string; readonly "declarationDigest"?: string; readonly "evidenceState"?: "missing" | "pending" | "satisfied" | "refused" | "stale"; readonly "actionTarget"?: { readonly "kind": string; readonly "objectId": string; readonly "action": string; }; }>; };
|
|
229
190
|
type product_activation_retrieveOutput_ProductLiveCostEstimate = { readonly "currency": string; readonly "platformMonthly": string | null; readonly "platformSetup": string | null; readonly "liveCapableCount": number; readonly "recurringCharges": ReadonlyArray<product_activation_retrieveOutput_ProductLiveCostCharge>; readonly "usageCharges": ReadonlyArray<product_activation_retrieveOutput_ProductLiveCostCharge>; readonly "estimatedMonthlyFixed": string | null; readonly "blockers": ReadonlyArray<product_activation_retrieveOutput_ProductLiveCostBlocker>; readonly "complete": boolean; };
|
|
230
|
-
type product_activation_retrieveOutput_ProductLiveCostCharge = { readonly "meter": "account.active_month" | "account.created.count" | "
|
|
231
|
-
type product_activation_retrieveOutput_ProductLiveCostBlocker = { readonly "code": "unpriced_meters" | "custom_pricing"; readonly "meters": ReadonlyArray<"account.active_month" | "account.created.count" | "
|
|
191
|
+
type product_activation_retrieveOutput_ProductLiveCostCharge = { readonly "meter": "account.active_month" | "account.created.count" | "transfer.internal.count" | "transfer.internal.volume_sar" | "transfer.internal.volume_usd" | "transfer.internal.volume_eur" | "transfer.internal.volume_gbp" | "instrument.event.count" | "kyb.application.review" | "verification.kyb.count" | "operation.executed.count" | "billing.invoice.settlement" | "billing.plan.recurring_month" | "billing.product.activation"; readonly "kind": "recurring" | "per_event" | "volume_bps"; readonly "unit": string; readonly "amount": string | null; readonly "bps": string | null; readonly "summary": string; readonly "custom": boolean; };
|
|
192
|
+
type product_activation_retrieveOutput_ProductLiveCostBlocker = { readonly "code": "unpriced_meters" | "custom_pricing"; readonly "meters": ReadonlyArray<"account.active_month" | "account.created.count" | "transfer.internal.count" | "transfer.internal.volume_sar" | "transfer.internal.volume_usd" | "transfer.internal.volume_eur" | "transfer.internal.volume_gbp" | "instrument.event.count" | "kyb.application.review" | "verification.kyb.count" | "operation.executed.count" | "billing.invoice.settlement" | "billing.plan.recurring_month" | "billing.product.activation">; };
|
|
232
193
|
export type product_balance_sheet_retrieveInput = { readonly "productId": string; };
|
|
233
194
|
export type product_balance_sheet_retrieveOutput = { readonly "environment": "sandbox" | "live"; readonly "tenantId": string; readonly "productId": string; readonly "asOf": string; readonly "currency": string; readonly "liabilities": product_balance_sheet_retrieveOutput_ProductBalanceSheetSection; readonly "assets": product_balance_sheet_retrieveOutput_ProductBalanceSheetSection; readonly "revenue": product_balance_sheet_retrieveOutput_ProductBalanceSheetSection; };
|
|
234
195
|
type product_balance_sheet_retrieveOutput_ProductBalanceSheetSection = { readonly "total": string; readonly "lines": ReadonlyArray<product_balance_sheet_retrieveOutput_ProductBalanceSheetLine>; };
|
|
@@ -237,33 +198,46 @@ export type product_earn_rate_listInput = { readonly "productId": string; readon
|
|
|
237
198
|
export type product_earn_rate_listOutput = { readonly "items": ReadonlyArray<{ readonly "operationName": string; readonly "bps"?: string; readonly "flatAmount"?: string; readonly "updatedAt": string; }>; readonly "nextCursor"?: string; };
|
|
238
199
|
export type product_earnings_settleInput = { readonly "productId": string; readonly "transferId"?: string; readonly "amount": string; readonly "currency": string; };
|
|
239
200
|
export type product_earnings_settleOutput = { readonly "transferId": string; readonly "tenantId": string; readonly "productId": string; readonly "sourceAccountId": string; readonly "destinationAccountId": string; readonly "amount": string; readonly "currency": string; readonly "transferStatus": "posted"; };
|
|
201
|
+
export type product_economic_snapshot_retrieveInput = { readonly "productId": string; };
|
|
202
|
+
export type product_economic_snapshot_retrieveOutput = { readonly "tenantId": string; readonly "productId": string; readonly "revision": string; readonly "buildDigest": string; readonly "effectiveAt": string; readonly "settlement": "confirmed"; readonly "facts": ReadonlyArray<{ readonly "id": string; readonly "instrument": string; readonly "status": string; readonly "createdAt": string; readonly "fields": { readonly [key: string]: unknown }; readonly "parties": { readonly [key: string]: string }; readonly "receipts": { readonly [key: string]: unknown }; }>; readonly "records": ReadonlyArray<{ readonly "id": string; readonly "instrument": string; readonly "status": string; readonly "createdAt": string; readonly "fields": { readonly [key: string]: unknown }; readonly "parties": { readonly [key: string]: string }; readonly "receipts": { readonly [key: string]: unknown }; }>; readonly "accounts": ReadonlyArray<{ readonly "accountId": string; readonly "posted": string; readonly "reserved": string; }>; };
|
|
240
203
|
export type product_guidance_retrieveInput = { readonly "productId": string; };
|
|
241
204
|
export type product_guidance_retrieveOutput = { readonly "items": ReadonlyArray<product_guidance_retrieveOutput_ProductGuidanceItem>; readonly "nextPredicate": ("mint_api_key" | "make_first_call" | "resolve_unpriced_meters" | "contact_sales_custom_pricing" | "complete_live_requirement" | "promote_product" | null); };
|
|
242
205
|
type product_guidance_retrieveOutput_ProductGuidanceItem = { readonly "predicate": "mint_api_key" | "make_first_call" | "resolve_unpriced_meters" | "contact_sales_custom_pricing" | "complete_live_requirement" | "promote_product"; readonly "status": "satisfied" | "actionable" | "blocked"; readonly "title": string; readonly "detail": string; readonly "target": product_guidance_retrieveOutput_ProductGuidanceTarget; readonly "requirement"?: string; };
|
|
243
206
|
type product_guidance_retrieveOutput_ProductGuidanceTarget = { readonly "kind": "operation" | "view"; readonly "ref": string; };
|
|
244
207
|
export type product_instruments_listInput = { readonly "productId": string; };
|
|
245
|
-
export type product_instruments_listOutput = { readonly "productBuildId": string; readonly "buildDigest": string; readonly "currency": string; readonly "items": ReadonlyArray<{ readonly "id": string; readonly "title": string; readonly "summary": string; readonly "fields": ReadonlyArray<({ readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "type": "money"; readonly "value"?: string; readonly "minimum"?: string; readonly "maximum"?: string; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "type": "account"; readonly "owner": string; readonly "key"?: string; readonly "book": "cash" | "claim"; readonly "contra"?: true;
|
|
208
|
+
export type product_instruments_listOutput = { readonly "productBuildId": string; readonly "buildDigest": string; readonly "currency": string; readonly "items": ReadonlyArray<{ readonly "id": string; readonly "title": string; readonly "summary": string; readonly "fields": ReadonlyArray<({ readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "money"; readonly "value"?: string; readonly "minimum"?: string; readonly "maximum"?: string; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "account"; readonly "owner": string; readonly "key"?: string; readonly "book": "cash" | "claim"; readonly "contra"?: true; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "ref"; readonly "targetKind": "instrument" | "object"; readonly "targetFamily"?: { readonly "module": string; readonly "exportPath": string; readonly "revision": number; }; readonly "target": (string | ReadonlyArray<string>); } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "date"; readonly "value"?: string; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "duration"; readonly "value"?: number; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "text"; readonly "value"?: string; readonly "minLength"?: number; readonly "maxLength"?: number; readonly "pattern"?: string; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "integer"; readonly "value"?: number; readonly "minimum"?: number; readonly "maximum"?: number; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "percent"; readonly "value"?: number; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "boolean"; readonly "value"?: boolean; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "enum"; readonly "values": ReadonlyArray<string>; readonly "value"?: string; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "list"; readonly "item": "money" | "date" | "text" | "integer" | "ref"; readonly "targetKind"?: "instrument" | "object"; readonly "targetFamily"?: { readonly "module": string; readonly "exportPath": string; readonly "revision": number; }; readonly "target"?: string; readonly "maxItems": number; })>; readonly "lifecycle": { readonly "states": ReadonlyArray<string>; readonly "initial": string; readonly "transitions": { readonly [key: string]: { readonly "from": ReadonlyArray<string>; readonly "to": string; } }; }; }>; };
|
|
246
209
|
export type product_listInput = { readonly "productId"?: string; readonly "limit"?: number; readonly "cursor"?: string; readonly "query"?: string; readonly "createdFrom"?: string; readonly "createdTo"?: string; readonly "status"?: "pending" | "active" | "disabled" | "closed"; };
|
|
247
210
|
export type product_listOutput = { readonly "items": ReadonlyArray<product_listOutput_ProductListItem>; readonly "nextCursor"?: string; };
|
|
248
|
-
type product_listOutput_ProductListItem = { readonly "productId": string; readonly "tenantId": string; readonly "environment": "sandbox" | "live"; readonly "displayName": string; readonly "slug": string; readonly "kind": "app" | "offering" | "listing" | "booking" | "pool"; readonly "status": "pending" | "active" | "disabled" | "closed"; readonly "createdAt": string; };
|
|
211
|
+
type product_listOutput_ProductListItem = { readonly "productId": string; readonly "tenantId": string; readonly "environment": "sandbox" | "live"; readonly "displayName": string; readonly "businessDescription"?: string; readonly "rehearsalOriginProductId"?: string; readonly "slug": string; readonly "kind": "app" | "offering" | "listing" | "booking" | "pool"; readonly "status": "pending" | "active" | "disabled" | "closed"; readonly "createdAt": string; };
|
|
249
212
|
export type product_margin_retrieveInput = { readonly "productId": string; };
|
|
250
213
|
export type product_margin_retrieveOutput = { readonly "asOf": string; readonly "items": ReadonlyArray<{ readonly "operationName": string; readonly "sell": { readonly "bps"?: string; readonly "flatAmount"?: string; }; readonly "buy": { readonly "volumeBps"?: string; readonly "perEvent"?: string; }; readonly "net": { readonly "bps": string; readonly "perEvent": string; }; }>; };
|
|
214
|
+
export type product_objects_actionsInput = { readonly "productId": string; readonly "kind": string; readonly "objectId": string; };
|
|
215
|
+
export type product_objects_actionsOutput = { readonly "objectId": string; readonly "revision": number; readonly "actions": ReadonlyArray<{ readonly "productBuildId": string; readonly "digest": string; readonly "target": ({ readonly "kind": "attachment"; readonly "attachment": string; } | { readonly "kind": "instance"; readonly "attachment": string; readonly "instanceId": string; }); readonly "fieldsSchema": { readonly [key: string]: unknown }; readonly "name": string; readonly "title": string; readonly "instrument": string; readonly "action": string; readonly "requirements": ReadonlyArray<({ readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "money"; readonly "value"?: string; readonly "minimum"?: string; readonly "maximum"?: string; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "ref"; readonly "targetKind": "instrument" | "object"; readonly "targetFamily"?: { readonly "module": string; readonly "exportPath": string; readonly "revision": number; }; readonly "target": (string | ReadonlyArray<string>); } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "date"; readonly "value"?: string; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "duration"; readonly "value"?: number; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "text"; readonly "value"?: string; readonly "minLength"?: number; readonly "maxLength"?: number; readonly "pattern"?: string; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "integer"; readonly "value"?: number; readonly "minimum"?: number; readonly "maximum"?: number; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "percent"; readonly "value"?: number; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "boolean"; readonly "value"?: boolean; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "enum"; readonly "values": ReadonlyArray<string>; readonly "value"?: string; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "list"; readonly "item": "money" | "date" | "text" | "integer" | "ref"; readonly "targetKind"?: "instrument" | "object"; readonly "targetFamily"?: { readonly "module": string; readonly "exportPath": string; readonly "revision": number; }; readonly "target"?: string; readonly "maxItems": number; })>; readonly "approvalRequirements": ReadonlyArray<{ readonly "target": string; readonly "action": string; readonly "party": string; readonly "role": string; readonly "decision": "approved" | "declined"; readonly "protectedRequest": string; readonly "differentFromInitiator": boolean; }>; readonly "creationRequirements"?: ReadonlyArray<({ readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "money"; readonly "value"?: string; readonly "minimum"?: string; readonly "maximum"?: string; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "ref"; readonly "targetKind": "instrument" | "object"; readonly "targetFamily"?: { readonly "module": string; readonly "exportPath": string; readonly "revision": number; }; readonly "target": (string | ReadonlyArray<string>); } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "date"; readonly "value"?: string; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "duration"; readonly "value"?: number; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "text"; readonly "value"?: string; readonly "minLength"?: number; readonly "maxLength"?: number; readonly "pattern"?: string; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "integer"; readonly "value"?: number; readonly "minimum"?: number; readonly "maximum"?: number; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "percent"; readonly "value"?: number; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "boolean"; readonly "value"?: boolean; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "enum"; readonly "values": ReadonlyArray<string>; readonly "value"?: string; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "list"; readonly "item": "money" | "date" | "text" | "integer" | "ref"; readonly "targetKind"?: "instrument" | "object"; readonly "targetFamily"?: { readonly "module": string; readonly "exportPath": string; readonly "revision": number; }; readonly "target"?: string; readonly "maxItems": number; })>; readonly "creationOnlyNames"?: ReadonlyArray<string>; readonly "inputSchema": { readonly [key: string]: unknown }; readonly "availability": ({ readonly "status": "available"; } | { readonly "status": "unavailable"; readonly "code": string; readonly "message": string; }); readonly "requiredNow": ReadonlyArray<string>; readonly "evidence"?: ReadonlyArray<{ readonly "requirementId": string; readonly "subjectId": string; readonly "protectedInputDigest": string; readonly "adapter": string; readonly "declarationDigest": string; readonly "productBuildId": string; readonly "state": "missing" | "pending" | "satisfied" | "refused" | "stale"; readonly "reference"?: string; readonly "observedAt"?: string; readonly "reasonCode"?: string; }>; }>; readonly "evidence": ReadonlyArray<{ readonly "requirementId": string; readonly "subjectId": string; readonly "protectedInputDigest": string; readonly "adapter": string; readonly "declarationDigest": string; readonly "productBuildId": string; readonly "state": "missing" | "pending" | "satisfied" | "refused" | "stale"; readonly "reference"?: string; readonly "observedAt"?: string; readonly "reasonCode"?: string; }>; };
|
|
216
|
+
export type product_objects_createInput = { readonly "productId": string; readonly "kind": string; readonly "externalId"?: string; readonly "fields"?: { readonly [key: string]: unknown }; readonly "ownerPrincipalId"?: string; };
|
|
217
|
+
export type product_objects_createOutput = { readonly "objectId": string; readonly "kind": string; readonly "revision": number; readonly "externalId"?: string; readonly "fields": { readonly [key: string]: unknown }; readonly "productBuildId": string; };
|
|
218
|
+
export type product_objects_discoverInput = { readonly "productId": string; };
|
|
219
|
+
export type product_objects_discoverOutput = { readonly "productBuildId": string; readonly "digest": string; readonly "kinds": ReadonlyArray<{ readonly "creation": true; readonly "kind": string; readonly "title": string; readonly "fields": ReadonlyArray<({ readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "money"; readonly "value"?: string; readonly "minimum"?: string; readonly "maximum"?: string; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "ref"; readonly "targetKind": "instrument" | "object"; readonly "targetFamily"?: { readonly "module": string; readonly "exportPath": string; readonly "revision": number; }; readonly "target": (string | ReadonlyArray<string>); } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "date"; readonly "value"?: string; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "duration"; readonly "value"?: number; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "text"; readonly "value"?: string; readonly "minLength"?: number; readonly "maxLength"?: number; readonly "pattern"?: string; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "integer"; readonly "value"?: number; readonly "minimum"?: number; readonly "maximum"?: number; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "percent"; readonly "value"?: number; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "boolean"; readonly "value"?: boolean; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "enum"; readonly "values": ReadonlyArray<string>; readonly "value"?: string; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "list"; readonly "item": "money" | "date" | "text" | "integer" | "ref"; readonly "targetKind"?: "instrument" | "object"; readonly "targetFamily"?: { readonly "module": string; readonly "exportPath": string; readonly "revision": number; }; readonly "target"?: string; readonly "maxItems": number; })>; readonly "authoredFields": ReadonlyArray<string>; readonly "columns": ReadonlyArray<string>; readonly "createSchema": { readonly [key: string]: unknown }; readonly "actions": ReadonlyArray<{ readonly "productBuildId": string; readonly "digest": string; readonly "target": ({ readonly "kind": "attachment"; readonly "attachment": string; } | { readonly "kind": "instance"; readonly "attachment": string; readonly "instanceId": string; }); readonly "fieldsSchema": { readonly [key: string]: unknown }; readonly "name": string; readonly "title": string; readonly "instrument": string; readonly "action": string; readonly "requirements": ReadonlyArray<({ readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "money"; readonly "value"?: string; readonly "minimum"?: string; readonly "maximum"?: string; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "ref"; readonly "targetKind": "instrument" | "object"; readonly "targetFamily"?: { readonly "module": string; readonly "exportPath": string; readonly "revision": number; }; readonly "target": (string | ReadonlyArray<string>); } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "date"; readonly "value"?: string; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "duration"; readonly "value"?: number; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "text"; readonly "value"?: string; readonly "minLength"?: number; readonly "maxLength"?: number; readonly "pattern"?: string; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "integer"; readonly "value"?: number; readonly "minimum"?: number; readonly "maximum"?: number; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "percent"; readonly "value"?: number; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "boolean"; readonly "value"?: boolean; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "enum"; readonly "values": ReadonlyArray<string>; readonly "value"?: string; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "list"; readonly "item": "money" | "date" | "text" | "integer" | "ref"; readonly "targetKind"?: "instrument" | "object"; readonly "targetFamily"?: { readonly "module": string; readonly "exportPath": string; readonly "revision": number; }; readonly "target"?: string; readonly "maxItems": number; })>; readonly "approvalRequirements": ReadonlyArray<{ readonly "target": string; readonly "action": string; readonly "party": string; readonly "role": string; readonly "decision": "approved" | "declined"; readonly "protectedRequest": string; readonly "differentFromInitiator": boolean; }>; readonly "creationRequirements"?: ReadonlyArray<({ readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "money"; readonly "value"?: string; readonly "minimum"?: string; readonly "maximum"?: string; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "ref"; readonly "targetKind": "instrument" | "object"; readonly "targetFamily"?: { readonly "module": string; readonly "exportPath": string; readonly "revision": number; }; readonly "target": (string | ReadonlyArray<string>); } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "date"; readonly "value"?: string; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "duration"; readonly "value"?: number; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "text"; readonly "value"?: string; readonly "minLength"?: number; readonly "maxLength"?: number; readonly "pattern"?: string; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "integer"; readonly "value"?: number; readonly "minimum"?: number; readonly "maximum"?: number; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "percent"; readonly "value"?: number; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "boolean"; readonly "value"?: boolean; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "enum"; readonly "values": ReadonlyArray<string>; readonly "value"?: string; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "list"; readonly "item": "money" | "date" | "text" | "integer" | "ref"; readonly "targetKind"?: "instrument" | "object"; readonly "targetFamily"?: { readonly "module": string; readonly "exportPath": string; readonly "revision": number; }; readonly "target"?: string; readonly "maxItems": number; })>; readonly "creationOnlyNames"?: ReadonlyArray<string>; readonly "inputSchema": { readonly [key: string]: unknown }; readonly "availability": ({ readonly "status": "available"; } | { readonly "status": "unavailable"; readonly "code": string; readonly "message": string; }); }>; }>; readonly "retainedKinds": ReadonlyArray<{ readonly "kind": string; readonly "title": string; readonly "productBuildId": string; readonly "digest": string; readonly "fields": ReadonlyArray<({ readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "money"; readonly "value"?: string; readonly "minimum"?: string; readonly "maximum"?: string; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "ref"; readonly "targetKind": "instrument" | "object"; readonly "targetFamily"?: { readonly "module": string; readonly "exportPath": string; readonly "revision": number; }; readonly "target": (string | ReadonlyArray<string>); } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "date"; readonly "value"?: string; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "duration"; readonly "value"?: number; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "text"; readonly "value"?: string; readonly "minLength"?: number; readonly "maxLength"?: number; readonly "pattern"?: string; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "integer"; readonly "value"?: number; readonly "minimum"?: number; readonly "maximum"?: number; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "percent"; readonly "value"?: number; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "boolean"; readonly "value"?: boolean; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "enum"; readonly "values": ReadonlyArray<string>; readonly "value"?: string; } | { readonly "name": string; readonly "optional"?: true; readonly "description"?: string; readonly "sensitive"?: true; readonly "type": "list"; readonly "item": "money" | "date" | "text" | "integer" | "ref"; readonly "targetKind"?: "instrument" | "object"; readonly "targetFamily"?: { readonly "module": string; readonly "exportPath": string; readonly "revision": number; }; readonly "target"?: string; readonly "maxItems": number; })>; readonly "authoredFields": ReadonlyArray<string>; readonly "columns": ReadonlyArray<string>; readonly "creation": false; }>; };
|
|
220
|
+
export type product_objects_executeInput = { readonly "productId": string; readonly "kind": string; readonly "objectId": string; readonly "action": string; readonly "expectedRevision": number; readonly "productBuildId": string; readonly "digest": string; readonly "target": ({ readonly "kind": "attachment"; readonly "attachment": string; } | { readonly "kind": "instance"; readonly "attachment": string; readonly "instanceId": string; }); readonly "fields"?: { readonly [key: string]: unknown }; readonly "input"?: { readonly [key: string]: unknown }; };
|
|
221
|
+
export type product_objects_executeOutput = { readonly "object": { readonly "objectId": string; readonly "kind": string; readonly "revision": number; readonly "externalId"?: string; readonly "fields": { readonly [key: string]: unknown }; readonly "productBuildId": string; }; readonly "outcome": ({ readonly "instrument": string; readonly "instanceId": string; readonly "state": string; } | null); readonly "evidence": ReadonlyArray<{ readonly "requirementId": string; readonly "subjectId": string; readonly "protectedInputDigest": string; readonly "adapter": string; readonly "declarationDigest": string; readonly "productBuildId": string; readonly "state": "missing" | "pending" | "satisfied" | "refused" | "stale"; readonly "reference"?: string; readonly "observedAt"?: string; readonly "reasonCode"?: string; }>; };
|
|
222
|
+
export type product_objects_listInput = { readonly "productId": string; readonly "kind": string; readonly "owner"?: string; readonly "cursor"?: string; readonly "limit"?: number; };
|
|
223
|
+
export type product_objects_listOutput = { readonly "items": ReadonlyArray<{ readonly "objectId": string; readonly "kind": string; readonly "revision": number; readonly "externalId"?: string; readonly "fields": { readonly [key: string]: unknown }; readonly "productBuildId": string; }>; readonly "nextCursor"?: string; };
|
|
224
|
+
export type product_objects_retrieveInput = { readonly "productId": string; readonly "kind": string; readonly "objectId": string; };
|
|
225
|
+
export type product_objects_retrieveOutput = { readonly "objectId": string; readonly "kind": string; readonly "revision": number; readonly "externalId"?: string; readonly "fields": { readonly [key: string]: unknown }; readonly "productBuildId": string; };
|
|
251
226
|
export type product_operation_set_retrieveInput = { readonly "productId": string; };
|
|
252
227
|
export type product_operation_set_retrieveOutput = { readonly "status": "frozen"; readonly "productBuildId": string; readonly "tenantSurfaceVersion": 3; readonly "tenantOperationSetDigest": string; readonly "publicActions": ReadonlyArray<product_operation_set_retrieveOutput_ProductPublicAction>; readonly "tenantReadOperationSetDigest": string; readonly "tenantSetupOperationSetDigest": string; readonly "readOperationIds": ReadonlyArray<string>; readonly "readOperations": ReadonlyArray<{ readonly "operationId": string; readonly "operationName": string; readonly "outputSchema": { readonly [key: string]: product_operation_set_retrieveOutput_JsonValue }; readonly "inputSchema": { readonly [key: string]: product_operation_set_retrieveOutput_JsonValue }; }>; readonly "setupOperationIds": ReadonlyArray<string>; readonly "setupOperations": ReadonlyArray<{ readonly "operationId": string; readonly "operationName": string; readonly "outputSchema": { readonly [key: string]: product_operation_set_retrieveOutput_JsonValue }; readonly "inputSchema": { readonly [key: string]: product_operation_set_retrieveOutput_JsonValue }; }>; readonly "unresolvedSetupOperationIds": ReadonlyArray<string>; };
|
|
253
|
-
type product_operation_set_retrieveOutput_ProductPublicAction = { readonly "name": string; readonly "instrument": string; readonly "inputSchema": { readonly [key: string]: product_operation_set_retrieveOutput_JsonValue }; readonly "outputSchema": { readonly [key: string]: product_operation_set_retrieveOutput_JsonValue }; readonly "actorPolicy": { readonly "principal": "api_key" | "customer_session" | "user_session"; }; readonly "portPolicy": ({ readonly "kind": "none"; } | { readonly "kind": "tenant_decision"; readonly "allowedParties": ReadonlyArray<string>; }); readonly "idempotencyPolicy": { readonly "mode": "not_required" | "optional" | "required"; }; readonly "receiptPolicy": { readonly "type": string; readonly "includeEvidence": boolean; }; readonly "receiptEvidence": { readonly "required": ReadonlyArray<"ledger" | "local" | "external">; readonly "optional"?: ReadonlyArray<"ledger" | "local" | "external">; }; };
|
|
228
|
+
type product_operation_set_retrieveOutput_ProductPublicAction = { readonly "name": string; readonly "instrument": string; readonly "inputSchema": { readonly [key: string]: product_operation_set_retrieveOutput_JsonValue }; readonly "outputSchema": { readonly [key: string]: product_operation_set_retrieveOutput_JsonValue }; readonly "actorPolicy": { readonly "principal": "api_key" | "customer_session" | "user_session"; readonly "staffAuthority"?: { readonly "party": string; readonly "role": "credit_underwriter"; readonly "permission": "credit:underwrite"; }; }; readonly "portPolicy": ({ readonly "kind": "none"; } | { readonly "kind": "tenant_decision"; readonly "allowedParties": ReadonlyArray<string>; }); readonly "idempotencyPolicy": { readonly "mode": "not_required" | "optional" | "required"; }; readonly "receiptPolicy": { readonly "type": string; readonly "includeEvidence": boolean; }; readonly "receiptEvidence": { readonly "required": ReadonlyArray<"ledger" | "local" | "external">; readonly "optional"?: ReadonlyArray<"ledger" | "local" | "external">; }; };
|
|
254
229
|
type product_operation_set_retrieveOutput_JsonValue = (string | number | boolean | null | ReadonlyArray<product_operation_set_retrieveOutput_JsonValue> | { readonly [key: string]: product_operation_set_retrieveOutput_JsonValue });
|
|
255
230
|
export type product_retrieveInput = { readonly "productId": string; };
|
|
256
|
-
export type product_retrieveOutput = { readonly "productId": string; readonly "tenantId": string; readonly "environment": "sandbox" | "live"; readonly "displayName": string; readonly "slug": string; readonly "kind": "app" | "offering" | "listing" | "booking" | "pool"; readonly "status": "pending" | "active" | "disabled" | "closed"; readonly "instrumentIds": ReadonlyArray<string>; readonly "pricing": product_retrieveOutput_ProductPricingSchedule; readonly "billingBoundaryAt"?: string; readonly "readiness": product_retrieveOutput_ProductActivationReadiness; readonly "capabilities": ReadonlyArray<product_retrieveOutput_ProductCapability>; readonly "cost": product_retrieveOutput_ProductLiveCostEstimate; };
|
|
231
|
+
export type product_retrieveOutput = { readonly "productId": string; readonly "tenantId": string; readonly "environment": "sandbox" | "live"; readonly "displayName": string; readonly "businessDescription"?: string; readonly "rehearsalOriginProductId"?: string; readonly "slug": string; readonly "kind": "app" | "offering" | "listing" | "booking" | "pool"; readonly "status": "pending" | "active" | "disabled" | "closed"; readonly "instrumentIds": ReadonlyArray<string>; readonly "pricing": product_retrieveOutput_ProductPricingSchedule; readonly "billingBoundaryAt"?: string; readonly "readiness": product_retrieveOutput_ProductActivationReadiness; readonly "capabilities": ReadonlyArray<product_retrieveOutput_ProductCapability>; readonly "cost": product_retrieveOutput_ProductLiveCostEstimate; };
|
|
257
232
|
type product_retrieveOutput_ProductPricingSchedule = { readonly "current": product_retrieveOutput_ProductPricingCurrent; readonly "scheduled": (product_retrieveOutput_ProductPricingScheduled | null); };
|
|
258
233
|
type product_retrieveOutput_ProductPricingCurrent = { readonly "monthly": string; readonly "setup": string; readonly "complexityScore": number | null; readonly "rates": ReadonlyArray<product_retrieveOutput_ProductPlanRate>; readonly "currency": string; readonly "pricingIdentity": string; readonly "priceBasisIdentity": string; };
|
|
259
|
-
type product_retrieveOutput_ProductPlanRate = { readonly "id": string; readonly "kind": string; readonly "meter": "account.active_month" | "account.created.count" | "
|
|
234
|
+
type product_retrieveOutput_ProductPlanRate = { readonly "id": string; readonly "kind": string; readonly "meter": "account.active_month" | "account.created.count" | "transfer.internal.count" | "transfer.internal.volume_sar" | "transfer.internal.volume_usd" | "transfer.internal.volume_eur" | "transfer.internal.volume_gbp" | "instrument.event.count" | "kyb.application.review" | "verification.kyb.count" | "operation.executed.count" | "billing.invoice.settlement" | "billing.plan.recurring_month" | "billing.product.activation"; readonly "signature": string; readonly "unit": string; readonly "amount"?: string; readonly "bps"?: string; readonly "includedQuantity"?: string; readonly "summary": string; readonly "currency": string; };
|
|
260
235
|
type product_retrieveOutput_ProductPricingScheduled = { readonly "monthly": string; readonly "setup": string; readonly "complexityScore": number | null; readonly "rates": ReadonlyArray<product_retrieveOutput_ProductPlanRate>; readonly "currency": string; readonly "pricingIdentity": string; readonly "priceBasisIdentity": string; readonly "effectiveAt": string; };
|
|
261
|
-
type product_retrieveOutput_ProductActivationReadiness = { readonly "live": boolean; readonly "
|
|
262
|
-
type
|
|
263
|
-
type product_retrieveOutput_ProductCapability = { readonly "capabilityId": "identity" | "accounts" | "deposits" | "internal_transfers" | "payouts" | "beneficiary_verification" | "products" | "activity" | "usage" | "billing" | "webhooks" | "verification"; readonly "name": string | null; };
|
|
236
|
+
type product_retrieveOutput_ProductActivationReadiness = { readonly "live": boolean; readonly "blockers": ReadonlyArray<{ readonly "code": string; readonly "requirementId"?: string; readonly "adapter"?: string; readonly "declarationDigest"?: string; readonly "evidenceState"?: "missing" | "pending" | "satisfied" | "refused" | "stale"; readonly "actionTarget"?: { readonly "kind": string; readonly "objectId": string; readonly "action": string; }; }>; };
|
|
237
|
+
type product_retrieveOutput_ProductCapability = { readonly "capabilityId": "identity" | "accounts" | "deposits" | "internal_transfers" | "payouts" | "products" | "activity" | "usage" | "billing" | "webhooks" | "verification"; readonly "name": string | null; };
|
|
264
238
|
type product_retrieveOutput_ProductLiveCostEstimate = { readonly "currency": string; readonly "platformMonthly": string | null; readonly "platformSetup": string | null; readonly "liveCapableCount": number; readonly "recurringCharges": ReadonlyArray<product_retrieveOutput_ProductLiveCostCharge>; readonly "usageCharges": ReadonlyArray<product_retrieveOutput_ProductLiveCostCharge>; readonly "estimatedMonthlyFixed": string | null; readonly "blockers": ReadonlyArray<product_retrieveOutput_ProductLiveCostBlocker>; readonly "complete": boolean; };
|
|
265
|
-
type product_retrieveOutput_ProductLiveCostCharge = { readonly "meter": "account.active_month" | "account.created.count" | "
|
|
266
|
-
type product_retrieveOutput_ProductLiveCostBlocker = { readonly "code": "unpriced_meters" | "custom_pricing"; readonly "meters": ReadonlyArray<"account.active_month" | "account.created.count" | "
|
|
239
|
+
type product_retrieveOutput_ProductLiveCostCharge = { readonly "meter": "account.active_month" | "account.created.count" | "transfer.internal.count" | "transfer.internal.volume_sar" | "transfer.internal.volume_usd" | "transfer.internal.volume_eur" | "transfer.internal.volume_gbp" | "instrument.event.count" | "kyb.application.review" | "verification.kyb.count" | "operation.executed.count" | "billing.invoice.settlement" | "billing.plan.recurring_month" | "billing.product.activation"; readonly "kind": "recurring" | "per_event" | "volume_bps"; readonly "unit": string; readonly "amount": string | null; readonly "bps": string | null; readonly "summary": string; readonly "custom": boolean; };
|
|
240
|
+
type product_retrieveOutput_ProductLiveCostBlocker = { readonly "code": "unpriced_meters" | "custom_pricing"; readonly "meters": ReadonlyArray<"account.active_month" | "account.created.count" | "transfer.internal.count" | "transfer.internal.volume_sar" | "transfer.internal.volume_usd" | "transfer.internal.volume_eur" | "transfer.internal.volume_gbp" | "instrument.event.count" | "kyb.application.review" | "verification.kyb.count" | "operation.executed.count" | "billing.invoice.settlement" | "billing.plan.recurring_month" | "billing.product.activation">; };
|
|
267
241
|
export type product_treasury_provisionInput = { readonly "productId": string; };
|
|
268
242
|
export type product_treasury_provisionOutput = { readonly "tenantId": string; readonly "productId": string; readonly "treasuryStatus": "provisioned" | "existing"; readonly "accounts": ReadonlyArray<{ readonly "accountId": string; readonly "role": "product_credit" | "product_revenue"; readonly "currency": string; }>; };
|
|
269
243
|
export type product_treasury_retrieveInput = { readonly "productId": string; };
|
|
@@ -272,40 +246,22 @@ export type receipt_listInput = { readonly "productId"?: string; readonly "limit
|
|
|
272
246
|
export type receipt_listOutput = { readonly "items": ReadonlyArray<{ readonly "receiptId": string; readonly "tenantId"?: string; readonly "id": string; readonly "operationName"?: string; readonly "operationId"?: string; readonly "errorCode"?: string; readonly "errorMessage"?: string; readonly "status"?: string; readonly "createdAt"?: string; }>; readonly "nextCursor"?: string; readonly "statusCounts"?: { readonly [key: string]: number }; };
|
|
273
247
|
export type receipt_retrieveInput = { readonly "productId"?: string; readonly "receiptId": string; };
|
|
274
248
|
export type receipt_retrieveOutput = { readonly "item": { readonly "receiptId": string; readonly "tenantId"?: string; readonly "id": string; readonly "operationName"?: string; readonly "operationId"?: string; readonly "errorCode"?: string; readonly "errorMessage"?: string; readonly "status"?: string; readonly "createdAt"?: string; }; };
|
|
275
|
-
export type sandbox_bank_credit_requestInput = { readonly "financialAddressId": string; readonly "amount": string; readonly "currency": string; readonly "remittanceReference"?: string; readonly "counterparty"?: string; readonly "occurredAt"?: string; };
|
|
276
|
-
export type sandbox_bank_credit_requestOutput = { readonly "sandboxBankCreditRequestId": string; readonly "tenantId": string; readonly "financialAddressId": string; readonly "status": "queued"; readonly "createdAt": string; };
|
|
277
249
|
export type sandbox_account_fundInput = { readonly "transferId"?: string; readonly "destinationAccountId": string; readonly "amount": string; readonly "currency": string; };
|
|
278
250
|
export type sandbox_account_fundOutput = { readonly "transferId": string; readonly "tenantId": string; readonly "sourceAccountId": string; readonly "destinationAccountId": string; readonly "amount": string; readonly "currency": string; readonly "transferStatus": "posted"; };
|
|
279
|
-
export type sandbox_beneficiary_acceptInput = { readonly "beneficiaryId": string; };
|
|
280
|
-
export type sandbox_beneficiary_acceptOutput = { readonly "tenantId": string; readonly "beneficiaryId": string; readonly "provider": "sarie_sponsor_bank"; readonly "providerReference": string; readonly "acceptedAt": string; readonly "activeAt": string; readonly "status": "active"; readonly "verificationId": string; };
|
|
281
251
|
export type sandbox_clock_advanceInput = { readonly "productId"?: string; readonly "at": string; };
|
|
282
252
|
export type sandbox_clock_advanceOutput = { readonly "tenantId": string; readonly "productId": string; readonly "previousAt": string; readonly "at": string; };
|
|
253
|
+
export type sandbox_clock_retrieveInput = { readonly "productId": string; };
|
|
254
|
+
export type sandbox_clock_retrieveOutput = { readonly "tenantId": string; readonly "productId": string; readonly "effectiveAt": string; readonly "mode": "host" | "frozen"; readonly "observedAt": string; };
|
|
283
255
|
export type sandbox_customer_access_activateInput = { readonly "customerAccessId": string; };
|
|
284
|
-
export type sandbox_customer_access_activateOutput = { readonly "customerAccessId": string; readonly "tenantId": string; readonly "productId": string; readonly "customerId": string; readonly "entityId": string; readonly "entityStatus": "pending" | "verified" | "rejected" | "disabled"; readonly "status": "pending" | "active" | "suspended" | "closed"; readonly "
|
|
285
|
-
export type sandbox_customer_onboardInput = { readonly "productId": string; readonly "displayName"?: string; };
|
|
286
|
-
export type sandbox_customer_onboardOutput = { readonly "tenantId": string; readonly "productId": string; readonly "customerId": string; readonly "customerAccessId": string; readonly "entityId": string; readonly "entityStatus": "pending" | "verified" | "rejected" | "disabled"; readonly "profileId": string; };
|
|
256
|
+
export type sandbox_customer_access_activateOutput = { readonly "customerAccessId": string; readonly "tenantId": string; readonly "productId": string; readonly "customerId": string; readonly "entityId": string; readonly "entityStatus": "pending" | "verified" | "rejected" | "disabled"; readonly "status": "pending" | "active" | "suspended" | "closed"; readonly "amlStatus": "not_screened" | "clear" | "review" | "blocked"; readonly "trustReviewId"?: string; };
|
|
287
257
|
export type sandbox_platform_fireInput = { readonly "operation": string; readonly "input": { readonly [key: string]: unknown }; };
|
|
288
258
|
export type sandbox_platform_fireOutput = { readonly "operation": string; } & { readonly [key: string]: unknown };
|
|
289
|
-
export type
|
|
290
|
-
export type
|
|
291
|
-
export type subject_createInput = { readonly "subjectId"?: string; readonly "productId": string; readonly "kind": string; readonly "kindVersion": number; readonly "attributes": { readonly [key: string]: unknown }; readonly "declaredValue": { readonly "amount": string; readonly "currency": string; }; readonly "metadata"?: subject_createInput_Metadata; };
|
|
292
|
-
type subject_createInput_Metadata = { readonly [key: string]: subject_createInput_MetadataValue };
|
|
293
|
-
type subject_createInput_MetadataValue = (subject_createInput_MetadataScalar | ReadonlyArray<subject_createInput_MetadataScalar> | { readonly [key: string]: subject_createInput_MetadataScalar });
|
|
294
|
-
type subject_createInput_MetadataScalar = (string | number | boolean | null);
|
|
295
|
-
export type subject_createOutput = { readonly "subjectId": string; readonly "tenantId": string; readonly "productId": string; readonly "kind": string; readonly "kindVersion": number; readonly "attributes": { readonly [key: string]: unknown }; readonly "declaredValue": { readonly "amount": string; readonly "currency": string; }; readonly "createdAt": string; readonly "metadata": subject_createOutput_Metadata; };
|
|
296
|
-
type subject_createOutput_Metadata = { readonly [key: string]: subject_createOutput_MetadataValue };
|
|
297
|
-
type subject_createOutput_MetadataValue = (subject_createOutput_MetadataScalar | ReadonlyArray<subject_createOutput_MetadataScalar> | { readonly [key: string]: subject_createOutput_MetadataScalar });
|
|
298
|
-
type subject_createOutput_MetadataScalar = (string | number | boolean | null);
|
|
299
|
-
export type subject_listInput = { readonly "productId"?: string; readonly "limit"?: number; readonly "cursor"?: string; readonly "query"?: string; readonly "createdFrom"?: string; readonly "createdTo"?: string; };
|
|
300
|
-
export type subject_listOutput = { readonly "items": ReadonlyArray<{ readonly "subjectId": string; readonly "tenantId": string; readonly "productId"?: string; readonly "kind"?: string; readonly "kindVersion"?: number; readonly "attributes"?: { readonly [key: string]: unknown }; readonly "declaredValueAmount"?: string; readonly "declaredValueCurrency"?: string; readonly "createdAt"?: string; }>; readonly "nextCursor"?: string; readonly "statusCounts"?: { readonly [key: string]: number }; };
|
|
301
|
-
export type subject_retrieveInput = { readonly "productId"?: string; readonly "subjectId": string; };
|
|
302
|
-
export type subject_retrieveOutput = { readonly "item": { readonly "subjectId": string; readonly "tenantId": string; readonly "productId"?: string; readonly "kind"?: string; readonly "kindVersion"?: number; readonly "attributes"?: { readonly [key: string]: unknown }; readonly "declaredValueAmount"?: string; readonly "declaredValueCurrency"?: string; readonly "createdAt"?: string; }; };
|
|
303
|
-
export type transfer_return_createInput = { readonly "returnId"?: string; readonly "originalTransferId": string; readonly "payoutId"?: string; readonly "reason": "insufficient_funds" | "account_closed" | "no_account" | "invalid_account" | "balance_cap_exceeded" | "unauthorized" | "other"; };
|
|
304
|
-
export type transfer_return_createOutput = { readonly "returnId": string; readonly "tenantId": string; readonly "originalTransferId": string; readonly "payoutId"?: string; readonly "reason": "insufficient_funds" | "account_closed" | "no_account" | "invalid_account" | "balance_cap_exceeded" | "unauthorized" | "other"; readonly "windowExpiresAt": string; readonly "returnStatus": "initiated"; };
|
|
259
|
+
export type transfer_return_createInput = { readonly "returnId"?: string; readonly "originalTransferId": string; readonly "reason": "insufficient_funds" | "account_closed" | "no_account" | "invalid_account" | "balance_cap_exceeded" | "unauthorized" | "other"; };
|
|
260
|
+
export type transfer_return_createOutput = { readonly "returnId": string; readonly "tenantId": string; readonly "originalTransferId": string; readonly "reason": "insufficient_funds" | "account_closed" | "no_account" | "invalid_account" | "balance_cap_exceeded" | "unauthorized" | "other"; readonly "windowExpiresAt": string; readonly "returnStatus": "initiated"; };
|
|
305
261
|
export type trust_evidence_listInput = { readonly "productId"?: string; readonly "limit"?: number; readonly "cursor"?: string; readonly "query"?: string; readonly "createdFrom"?: string; readonly "createdTo"?: string; readonly "trustReviewId"?: string; };
|
|
306
|
-
export type trust_evidence_listOutput = { readonly "items": ReadonlyArray<{ readonly "trustEvidenceId": string; readonly "tenantId": string; readonly "id": string; readonly "trustReviewId"?: string; readonly "kind"?: string; readonly "documentType"?: string; readonly "checksum"?: string; readonly "checksumAlgorithm"?: string; readonly "mimeType"?: string; readonly "byteSize"?: number; readonly "filename"?: string; readonly "providerReference"?: string; readonly "status"?: "pending" | "accepted" | "rejected" | "superseded"; readonly "createdAt"?: string; }>; readonly "nextCursor"?: string; readonly "statusCounts"?: { readonly [key: string]: number }; };
|
|
262
|
+
export type trust_evidence_listOutput = { readonly "items": ReadonlyArray<{ readonly "trustEvidenceId": string; readonly "tenantId": string; readonly "id": string; readonly "trustReviewId"?: string; readonly "subjectId"?: string; readonly "requirementId"?: string; readonly "kind"?: string; readonly "documentType"?: string; readonly "checksum"?: string; readonly "checksumAlgorithm"?: string; readonly "mimeType"?: string; readonly "byteSize"?: number; readonly "filename"?: string; readonly "providerReference"?: string; readonly "status"?: "pending" | "accepted" | "rejected" | "superseded"; readonly "createdAt"?: string; }>; readonly "nextCursor"?: string; readonly "statusCounts"?: { readonly [key: string]: number }; };
|
|
307
263
|
export type trust_evidence_retrieveInput = { readonly "productId"?: string; readonly "trustEvidenceId": string; };
|
|
308
|
-
export type trust_evidence_retrieveOutput = { readonly "item": { readonly "trustEvidenceId": string; readonly "tenantId": string; readonly "id": string; readonly "trustReviewId"?: string; readonly "kind"?: string; readonly "documentType"?: string; readonly "checksum"?: string; readonly "checksumAlgorithm"?: string; readonly "mimeType"?: string; readonly "byteSize"?: number; readonly "filename"?: string; readonly "providerReference"?: string; readonly "status"?: "pending" | "accepted" | "rejected" | "superseded"; readonly "createdAt"?: string; }; };
|
|
264
|
+
export type trust_evidence_retrieveOutput = { readonly "item": { readonly "trustEvidenceId": string; readonly "tenantId": string; readonly "id": string; readonly "trustReviewId"?: string; readonly "subjectId"?: string; readonly "requirementId"?: string; readonly "kind"?: string; readonly "documentType"?: string; readonly "checksum"?: string; readonly "checksumAlgorithm"?: string; readonly "mimeType"?: string; readonly "byteSize"?: number; readonly "filename"?: string; readonly "providerReference"?: string; readonly "status"?: "pending" | "accepted" | "rejected" | "superseded"; readonly "createdAt"?: string; }; };
|
|
309
265
|
export type trust_requirement_listInput = { readonly "productId"?: string; readonly "limit"?: number; readonly "cursor"?: string; readonly "query"?: string; readonly "createdFrom"?: string; readonly "createdTo"?: string; readonly "trustReviewId"?: string; readonly "status"?: "open" | "satisfied" | "waived" | "rejected"; };
|
|
310
266
|
export type trust_requirement_listOutput = { readonly "items": ReadonlyArray<{ readonly "trustRequirementId": string; readonly "tenantId": string; readonly "id": string; readonly "trustReviewId"?: string; readonly "requirementKey"?: string; readonly "status"?: "open" | "satisfied" | "waived" | "rejected"; readonly "createdAt"?: string; }>; readonly "nextCursor"?: string; readonly "statusCounts"?: { readonly [key: string]: number }; };
|
|
311
267
|
export type trust_requirement_respondInput = { readonly "trustReviewId": string; readonly "trustRequirementId": string; readonly "trustEvidenceId"?: string; readonly "response"?: string; readonly "metadata"?: trust_requirement_respondInput_Metadata; };
|
|
@@ -315,10 +271,14 @@ type trust_requirement_respondInput_MetadataScalar = (string | number | boolean
|
|
|
315
271
|
export type trust_requirement_respondOutput = { readonly "trustRequirementId": string; readonly "trustReviewId": string; readonly "tenantId": string; readonly "status": "open" | "satisfied" | "waived" | "rejected"; };
|
|
316
272
|
export type trust_requirement_retrieveInput = { readonly "productId"?: string; readonly "trustRequirementId": string; };
|
|
317
273
|
export type trust_requirement_retrieveOutput = { readonly "item": { readonly "trustRequirementId": string; readonly "tenantId": string; readonly "id": string; readonly "trustReviewId"?: string; readonly "requirementKey"?: string; readonly "status"?: "open" | "satisfied" | "waived" | "rejected"; readonly "createdAt"?: string; }; };
|
|
274
|
+
export type trust_review_subject_listInput = { readonly "productId"?: string; readonly "limit"?: number; readonly "cursor"?: string; readonly "query"?: string; readonly "createdFrom"?: string; readonly "createdTo"?: string; readonly "trustReviewId"?: string; readonly "status"?: "pending" | "verified" | "rejected" | "waived"; };
|
|
275
|
+
export type trust_review_subject_listOutput = { readonly "items": ReadonlyArray<{ readonly "trustReviewSubjectId": string; readonly "tenantId": string; readonly "trustReviewId": string; readonly "entityId": string; readonly "role": "applicant" | "organization" | "beneficial_owner" | "manager" | "director" | "authorized_signatory" | "agent" | "risk_subject"; readonly "status"?: "pending" | "verified" | "rejected" | "waived"; readonly "createdAt"?: string; }>; readonly "nextCursor"?: string; readonly "statusCounts"?: { readonly [key: string]: number }; };
|
|
276
|
+
export type trust_review_subject_retrieveInput = { readonly "productId"?: string; readonly "trustReviewSubjectId": string; };
|
|
277
|
+
export type trust_review_subject_retrieveOutput = { readonly "item": { readonly "trustReviewSubjectId": string; readonly "tenantId": string; readonly "trustReviewId": string; readonly "entityId": string; readonly "role": "applicant" | "organization" | "beneficial_owner" | "manager" | "director" | "authorized_signatory" | "agent" | "risk_subject"; readonly "status"?: "pending" | "verified" | "rejected" | "waived"; readonly "createdAt"?: string; }; };
|
|
318
278
|
export type trust_review_listInput = { readonly "productId"?: string; readonly "limit"?: number; readonly "cursor"?: string; readonly "query"?: string; readonly "createdFrom"?: string; readonly "createdTo"?: string; readonly "type"?: "product_activation" | "entity_kyb"; readonly "status"?: "draft" | "submitted" | "under_review" | "approved" | "rejected" | "cancelled"; };
|
|
319
|
-
export type trust_review_listOutput = { readonly "items": ReadonlyArray<{ readonly "trustReviewId": string; readonly "tenantId": string; readonly "type"?: string; readonly "productId"?: string; readonly "status"?: "draft" | "submitted" | "under_review" | "approved" | "rejected" | "cancelled"; readonly "createdAt"?: string; }>; readonly "nextCursor"?: string; readonly "statusCounts"?: { readonly [key: string]: number }; };
|
|
279
|
+
export type trust_review_listOutput = { readonly "items": ReadonlyArray<{ readonly "trustReviewId": string; readonly "tenantId": string; readonly "type"?: string; readonly "productId"?: string; readonly "subjectEntityId"?: string; readonly "status"?: "draft" | "submitted" | "under_review" | "approved" | "rejected" | "cancelled"; readonly "createdAt"?: string; }>; readonly "nextCursor"?: string; readonly "statusCounts"?: { readonly [key: string]: number }; };
|
|
320
280
|
export type trust_review_retrieveInput = { readonly "productId"?: string; readonly "trustReviewId": string; };
|
|
321
|
-
export type trust_review_retrieveOutput = { readonly "item": { readonly "trustReviewId": string; readonly "tenantId": string; readonly "type"?: string; readonly "productId"?: string; readonly "status"?: "draft" | "submitted" | "under_review" | "approved" | "rejected" | "cancelled"; readonly "createdAt"?: string; }; };
|
|
281
|
+
export type trust_review_retrieveOutput = { readonly "item": { readonly "trustReviewId": string; readonly "tenantId": string; readonly "type"?: string; readonly "productId"?: string; readonly "subjectEntityId"?: string; readonly "status"?: "draft" | "submitted" | "under_review" | "approved" | "rejected" | "cancelled"; readonly "createdAt"?: string; }; };
|
|
322
282
|
export type usage_record_listInput = { readonly "productId"?: string; readonly "limit"?: number; readonly "cursor"?: string; readonly "query"?: string; readonly "createdFrom"?: string; readonly "createdTo"?: string; };
|
|
323
283
|
export type usage_record_listOutput = { readonly "items": ReadonlyArray<{ readonly "usageRecordId": string; readonly "tenantId": string; readonly "meter": string; readonly "quantity"?: string; readonly "operationName"?: string; readonly "operationId"?: string; readonly "sourceEventId"?: string; readonly "sourceOperationId"?: string; readonly "productId"?: string; readonly "settledAt": "execution" | "invoice"; readonly "createdAt"?: string; }>; readonly "nextCursor"?: string; readonly "statusCounts"?: { readonly [key: string]: number }; };
|
|
324
284
|
export type usage_record_retrieveInput = { readonly "productId"?: string; readonly "usageRecordId": string; };
|
|
@@ -345,12 +305,15 @@ export type webhook_endpoint_secret_rotateInput = { readonly "webhookEndpointId"
|
|
|
345
305
|
export type webhook_endpoint_secret_rotateOutput = { readonly "tenantId": string; readonly "webhookEndpointId": string; readonly "productId": string; readonly "url": string; readonly "status": "deleted" | "disabled" | "enabled"; readonly "audience": "entity" | "tenant"; readonly "entityAccountId": (string | null); readonly "enabledEvents": ReadonlyArray<("*" | string)>; readonly "secretLast4": string; readonly "description": (string | null); readonly "lastDeliveryStatus": ("exhausted" | "failed" | "pending" | "succeeded" | null); readonly "lastDeliveryAt": (string | null); readonly "createdAt": string; readonly "updatedAt": string; readonly "signingSecret"?: string; readonly "previousSecretExpiresAt": string; };
|
|
346
306
|
export type webhook_endpoint_updateInput = { readonly "webhookEndpointId": string; readonly "reason": string; readonly "url"?: string; readonly "enabledEvents"?: ReadonlyArray<("*" | string)>; readonly "description"?: (string | null); };
|
|
347
307
|
export type webhook_endpoint_updateOutput = { readonly "tenantId": string; readonly "webhookEndpointId": string; readonly "productId": string; readonly "url": string; readonly "status": "deleted" | "disabled" | "enabled"; readonly "audience": "entity" | "tenant"; readonly "entityAccountId": (string | null); readonly "enabledEvents": ReadonlyArray<("*" | string)>; readonly "secretLast4": string; readonly "description": (string | null); readonly "lastDeliveryStatus": ("exhausted" | "failed" | "pending" | "succeeded" | null); readonly "lastDeliveryAt": (string | null); readonly "createdAt": string; readonly "updatedAt": string; readonly "reason": string; };
|
|
308
|
+
export type webhook_event_catalogInput = { readonly "productId": string; };
|
|
309
|
+
export type webhook_event_catalogOutput = { readonly "productBuildId": string; readonly "buildDigest": string; readonly "wildcard": { readonly "value": "*"; readonly "exclusive": true; }; readonly "items": ReadonlyArray<{ readonly "eventType": string; readonly "operation": string; readonly "summary": string; readonly "outcome"?: string; }>; };
|
|
348
310
|
export interface Operations {
|
|
349
311
|
readonly "account.balance.retrieve": { input: account_balance_retrieveInput; output: account_balance_retrieveOutput };
|
|
350
|
-
readonly "account.bank.link": { input: account_bank_linkInput; output: account_bank_linkOutput };
|
|
351
312
|
readonly "account.close": { input: account_closeInput; output: account_closeOutput };
|
|
352
313
|
readonly "account.create": { input: account_createInput; output: account_createOutput };
|
|
353
314
|
readonly "account.freeze": { input: account_freezeInput; output: account_freezeOutput };
|
|
315
|
+
readonly "account.hold.list": { input: account_hold_listInput; output: account_hold_listOutput };
|
|
316
|
+
readonly "account.hold.retrieve": { input: account_hold_retrieveInput; output: account_hold_retrieveOutput };
|
|
354
317
|
readonly "account.list": { input: account_listInput; output: account_listOutput };
|
|
355
318
|
readonly "account.retrieve": { input: account_retrieveInput; output: account_retrieveOutput };
|
|
356
319
|
readonly "account.statement.export": { input: account_statement_exportInput; output: account_statement_exportOutput };
|
|
@@ -359,10 +322,8 @@ readonly "account.unfreeze": { input: account_unfreezeInput; output: account_unf
|
|
|
359
322
|
readonly "activity.list": { input: activity_listInput; output: activity_listOutput };
|
|
360
323
|
readonly "audit_event.list": { input: audit_event_listInput; output: audit_event_listOutput };
|
|
361
324
|
readonly "audit_event.retrieve": { input: audit_event_retrieveInput; output: audit_event_retrieveOutput };
|
|
362
|
-
readonly "beneficiary.create": { input: beneficiary_createInput; output: beneficiary_createOutput };
|
|
363
325
|
readonly "beneficiary.list": { input: beneficiary_listInput; output: beneficiary_listOutput };
|
|
364
326
|
readonly "beneficiary.retrieve": { input: beneficiary_retrieveInput; output: beneficiary_retrieveOutput };
|
|
365
|
-
readonly "beneficiary.verify": { input: beneficiary_verifyInput; output: beneficiary_verifyOutput };
|
|
366
327
|
readonly "billing_adjustment.list": { input: billing_adjustment_listInput; output: billing_adjustment_listOutput };
|
|
367
328
|
readonly "billing_adjustment.retrieve": { input: billing_adjustment_retrieveInput; output: billing_adjustment_retrieveOutput };
|
|
368
329
|
readonly "billing_period.list": { input: billing_period_listInput; output: billing_period_listOutput };
|
|
@@ -372,9 +333,6 @@ readonly "billing_subscription.retrieve": { input: billing_subscription_retrieve
|
|
|
372
333
|
readonly "charge.list": { input: charge_listInput; output: charge_listOutput };
|
|
373
334
|
readonly "charge.retrieve": { input: charge_retrieveInput; output: charge_retrieveOutput };
|
|
374
335
|
readonly "collection.list": { input: collection_listInput; output: collection_listOutput };
|
|
375
|
-
readonly "collection.pay_in.cancel": { input: collection_pay_in_cancelInput; output: collection_pay_in_cancelOutput };
|
|
376
|
-
readonly "collection.pay_in.capture": { input: collection_pay_in_captureInput; output: collection_pay_in_captureOutput };
|
|
377
|
-
readonly "collection.pay_in.reserve": { input: collection_pay_in_reserveInput; output: collection_pay_in_reserveOutput };
|
|
378
336
|
readonly "collection.retrieve": { input: collection_retrieveInput; output: collection_retrieveOutput };
|
|
379
337
|
readonly "consent.list": { input: consent_listInput; output: consent_listOutput };
|
|
380
338
|
readonly "consent.retrieve": { input: consent_retrieveInput; output: consent_retrieveOutput };
|
|
@@ -407,18 +365,15 @@ readonly "developer.log.list": { input: developer_log_listInput; output: develop
|
|
|
407
365
|
readonly "developer.log.retrieve": { input: developer_log_retrieveInput; output: developer_log_retrieveOutput };
|
|
408
366
|
readonly "event.list": { input: event_listInput; output: event_listOutput };
|
|
409
367
|
readonly "event.retrieve": { input: event_retrieveInput; output: event_retrieveOutput };
|
|
410
|
-
readonly "expected_payment.cancel": { input: expected_payment_cancelInput; output: expected_payment_cancelOutput };
|
|
411
|
-
readonly "expected_payment.create": { input: expected_payment_createInput; output: expected_payment_createOutput };
|
|
412
368
|
readonly "expected_payment.list": { input: expected_payment_listInput; output: expected_payment_listOutput };
|
|
413
369
|
readonly "expected_payment.retrieve": { input: expected_payment_retrieveInput; output: expected_payment_retrieveOutput };
|
|
414
370
|
readonly "extension.list": { input: extension_listInput; output: extension_listOutput };
|
|
415
|
-
readonly "financial_address.create": { input: financial_address_createInput; output: financial_address_createOutput };
|
|
416
|
-
readonly "financial_address.disable": { input: financial_address_disableInput; output: financial_address_disableOutput };
|
|
417
371
|
readonly "financial_address.list": { input: financial_address_listInput; output: financial_address_listOutput };
|
|
418
372
|
readonly "financial_address.retrieve": { input: financial_address_retrieveInput; output: financial_address_retrieveOutput };
|
|
419
373
|
readonly "human_approval.approver.list": { input: human_approval_approver_listInput; output: human_approval_approver_listOutput };
|
|
420
374
|
readonly "human_approval.cancel": { input: human_approval_cancelInput; output: human_approval_cancelOutput };
|
|
421
375
|
readonly "human_approval.expire": { input: human_approval_expireInput; output: human_approval_expireOutput };
|
|
376
|
+
readonly "human_approval.history.list": { input: human_approval_history_listInput; output: human_approval_history_listOutput };
|
|
422
377
|
readonly "human_approval.request.create": { input: human_approval_request_createInput; output: human_approval_request_createOutput };
|
|
423
378
|
readonly "human_approval.request.list": { input: human_approval_request_listInput; output: human_approval_request_listOutput };
|
|
424
379
|
readonly "human_approval.request.retrieve": { input: human_approval_request_retrieveInput; output: human_approval_request_retrieveOutput };
|
|
@@ -428,12 +383,12 @@ readonly "invoice_line.list": { input: invoice_line_listInput; output: invoice_l
|
|
|
428
383
|
readonly "invoice_line.retrieve": { input: invoice_line_retrieveInput; output: invoice_line_retrieveOutput };
|
|
429
384
|
readonly "invoice.list": { input: invoice_listInput; output: invoice_listOutput };
|
|
430
385
|
readonly "invoice.retrieve": { input: invoice_retrieveInput; output: invoice_retrieveOutput };
|
|
431
|
-
readonly "kyc.requirements.retrieve": { input: kyc_requirements_retrieveInput; output: kyc_requirements_retrieveOutput };
|
|
432
386
|
readonly "meter_period_snapshot.list": { input: meter_period_snapshot_listInput; output: meter_period_snapshot_listOutput };
|
|
433
387
|
readonly "meter_period_snapshot.retrieve": { input: meter_period_snapshot_retrieveInput; output: meter_period_snapshot_retrieveOutput };
|
|
434
388
|
readonly "operation.list": { input: operation_listInput; output: operation_listOutput };
|
|
435
389
|
readonly "operation.retrieve": { input: operation_retrieveInput; output: operation_retrieveOutput };
|
|
436
|
-
readonly "
|
|
390
|
+
readonly "payment_reminder.delivery.retrieve": { input: payment_reminder_delivery_retrieveInput; output: payment_reminder_delivery_retrieveOutput };
|
|
391
|
+
readonly "payout.evidence.retrieve": { input: payout_evidence_retrieveInput; output: payout_evidence_retrieveOutput };
|
|
437
392
|
readonly "payout.list": { input: payout_listInput; output: payout_listOutput };
|
|
438
393
|
readonly "payout.retrieve": { input: payout_retrieveInput; output: payout_retrieveOutput };
|
|
439
394
|
readonly "product.actions.list": { input: product_actions_listInput; output: product_actions_listOutput };
|
|
@@ -441,33 +396,36 @@ readonly "product.activation.retrieve": { input: product_activation_retrieveInpu
|
|
|
441
396
|
readonly "product.balance_sheet.retrieve": { input: product_balance_sheet_retrieveInput; output: product_balance_sheet_retrieveOutput };
|
|
442
397
|
readonly "product.earn.rate.list": { input: product_earn_rate_listInput; output: product_earn_rate_listOutput };
|
|
443
398
|
readonly "product.earnings.settle": { input: product_earnings_settleInput; output: product_earnings_settleOutput };
|
|
399
|
+
readonly "product.economic_snapshot.retrieve": { input: product_economic_snapshot_retrieveInput; output: product_economic_snapshot_retrieveOutput };
|
|
444
400
|
readonly "product.guidance.retrieve": { input: product_guidance_retrieveInput; output: product_guidance_retrieveOutput };
|
|
445
401
|
readonly "product.instruments.list": { input: product_instruments_listInput; output: product_instruments_listOutput };
|
|
446
402
|
readonly "product.list": { input: product_listInput; output: product_listOutput };
|
|
447
403
|
readonly "product.margin.retrieve": { input: product_margin_retrieveInput; output: product_margin_retrieveOutput };
|
|
404
|
+
readonly "product.objects.actions": { input: product_objects_actionsInput; output: product_objects_actionsOutput };
|
|
405
|
+
readonly "product.objects.create": { input: product_objects_createInput; output: product_objects_createOutput };
|
|
406
|
+
readonly "product.objects.discover": { input: product_objects_discoverInput; output: product_objects_discoverOutput };
|
|
407
|
+
readonly "product.objects.execute": { input: product_objects_executeInput; output: product_objects_executeOutput };
|
|
408
|
+
readonly "product.objects.list": { input: product_objects_listInput; output: product_objects_listOutput };
|
|
409
|
+
readonly "product.objects.retrieve": { input: product_objects_retrieveInput; output: product_objects_retrieveOutput };
|
|
448
410
|
readonly "product.operation_set.retrieve": { input: product_operation_set_retrieveInput; output: product_operation_set_retrieveOutput };
|
|
449
411
|
readonly "product.retrieve": { input: product_retrieveInput; output: product_retrieveOutput };
|
|
450
412
|
readonly "product.treasury.provision": { input: product_treasury_provisionInput; output: product_treasury_provisionOutput };
|
|
451
413
|
readonly "product.treasury.retrieve": { input: product_treasury_retrieveInput; output: product_treasury_retrieveOutput };
|
|
452
414
|
readonly "receipt.list": { input: receipt_listInput; output: receipt_listOutput };
|
|
453
415
|
readonly "receipt.retrieve": { input: receipt_retrieveInput; output: receipt_retrieveOutput };
|
|
454
|
-
readonly "sandbox_bank_credit.request": { input: sandbox_bank_credit_requestInput; output: sandbox_bank_credit_requestOutput };
|
|
455
416
|
readonly "sandbox.account.fund": { input: sandbox_account_fundInput; output: sandbox_account_fundOutput };
|
|
456
|
-
readonly "sandbox.beneficiary.accept": { input: sandbox_beneficiary_acceptInput; output: sandbox_beneficiary_acceptOutput };
|
|
457
417
|
readonly "sandbox.clock.advance": { input: sandbox_clock_advanceInput; output: sandbox_clock_advanceOutput };
|
|
418
|
+
readonly "sandbox.clock.retrieve": { input: sandbox_clock_retrieveInput; output: sandbox_clock_retrieveOutput };
|
|
458
419
|
readonly "sandbox.customer_access.activate": { input: sandbox_customer_access_activateInput; output: sandbox_customer_access_activateOutput };
|
|
459
|
-
readonly "sandbox.customer.onboard": { input: sandbox_customer_onboardInput; output: sandbox_customer_onboardOutput };
|
|
460
420
|
readonly "sandbox.platform.fire": { input: sandbox_platform_fireInput; output: sandbox_platform_fireOutput };
|
|
461
|
-
readonly "subject_kind.list": { input: subject_kind_listInput; output: subject_kind_listOutput };
|
|
462
|
-
readonly "subject.create": { input: subject_createInput; output: subject_createOutput };
|
|
463
|
-
readonly "subject.list": { input: subject_listInput; output: subject_listOutput };
|
|
464
|
-
readonly "subject.retrieve": { input: subject_retrieveInput; output: subject_retrieveOutput };
|
|
465
421
|
readonly "transfer_return.create": { input: transfer_return_createInput; output: transfer_return_createOutput };
|
|
466
422
|
readonly "trust_evidence.list": { input: trust_evidence_listInput; output: trust_evidence_listOutput };
|
|
467
423
|
readonly "trust_evidence.retrieve": { input: trust_evidence_retrieveInput; output: trust_evidence_retrieveOutput };
|
|
468
424
|
readonly "trust_requirement.list": { input: trust_requirement_listInput; output: trust_requirement_listOutput };
|
|
469
425
|
readonly "trust_requirement.respond": { input: trust_requirement_respondInput; output: trust_requirement_respondOutput };
|
|
470
426
|
readonly "trust_requirement.retrieve": { input: trust_requirement_retrieveInput; output: trust_requirement_retrieveOutput };
|
|
427
|
+
readonly "trust_review_subject.list": { input: trust_review_subject_listInput; output: trust_review_subject_listOutput };
|
|
428
|
+
readonly "trust_review_subject.retrieve": { input: trust_review_subject_retrieveInput; output: trust_review_subject_retrieveOutput };
|
|
471
429
|
readonly "trust_review.list": { input: trust_review_listInput; output: trust_review_listOutput };
|
|
472
430
|
readonly "trust_review.retrieve": { input: trust_review_retrieveInput; output: trust_review_retrieveOutput };
|
|
473
431
|
readonly "usage_record.list": { input: usage_record_listInput; output: usage_record_listOutput };
|
|
@@ -483,4 +441,5 @@ readonly "webhook.endpoint.recover": { input: webhook_endpoint_recoverInput; out
|
|
|
483
441
|
readonly "webhook.endpoint.retrieve": { input: webhook_endpoint_retrieveInput; output: webhook_endpoint_retrieveOutput };
|
|
484
442
|
readonly "webhook.endpoint.secret.rotate": { input: webhook_endpoint_secret_rotateInput; output: webhook_endpoint_secret_rotateOutput };
|
|
485
443
|
readonly "webhook.endpoint.update": { input: webhook_endpoint_updateInput; output: webhook_endpoint_updateOutput };
|
|
444
|
+
readonly "webhook.event.catalog": { input: webhook_event_catalogInput; output: webhook_event_catalogOutput };
|
|
486
445
|
}
|