@florent-uzio/custody 2.2.0 → 2.3.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.
Files changed (40) hide show
  1. package/dist/index.d.ts +2 -1
  2. package/dist/index.d.ts.map +1 -1
  3. package/dist/index.js +2 -0
  4. package/dist/index.js.map +1 -1
  5. package/dist/models/custody-types.d.ts +565 -338
  6. package/dist/models/custody-types.d.ts.map +1 -1
  7. package/dist/ripple-custody.d.ts +55 -10
  8. package/dist/ripple-custody.d.ts.map +1 -1
  9. package/dist/ripple-custody.js +54 -21
  10. package/dist/ripple-custody.js.map +1 -1
  11. package/dist/services/xrpl/index.d.ts +1 -0
  12. package/dist/services/xrpl/index.d.ts.map +1 -1
  13. package/dist/services/xrpl/index.js +1 -4
  14. package/dist/services/xrpl/index.js.map +1 -1
  15. package/dist/services/xrpl/xrpl.adapters.d.ts +23 -5
  16. package/dist/services/xrpl/xrpl.adapters.d.ts.map +1 -1
  17. package/dist/services/xrpl/xrpl.adapters.js +244 -161
  18. package/dist/services/xrpl/xrpl.adapters.js.map +1 -1
  19. package/dist/services/xrpl/xrpl.builders.d.ts +22 -0
  20. package/dist/services/xrpl/xrpl.builders.d.ts.map +1 -0
  21. package/dist/services/xrpl/xrpl.builders.js +107 -0
  22. package/dist/services/xrpl/xrpl.builders.js.map +1 -0
  23. package/dist/services/xrpl/xrpl.crypto.d.ts +6 -0
  24. package/dist/services/xrpl/xrpl.crypto.d.ts.map +1 -0
  25. package/dist/services/xrpl/xrpl.crypto.js +19 -0
  26. package/dist/services/xrpl/xrpl.crypto.js.map +1 -0
  27. package/dist/services/xrpl/xrpl.http-adapters.d.ts.map +1 -1
  28. package/dist/services/xrpl/xrpl.http-adapters.js +5 -0
  29. package/dist/services/xrpl/xrpl.http-adapters.js.map +1 -1
  30. package/dist/services/xrpl/xrpl.ports.d.ts +7 -1
  31. package/dist/services/xrpl/xrpl.ports.d.ts.map +1 -1
  32. package/dist/services/xrpl/xrpl.service.d.ts +79 -36
  33. package/dist/services/xrpl/xrpl.service.d.ts.map +1 -1
  34. package/dist/services/xrpl/xrpl.service.js +178 -182
  35. package/dist/services/xrpl/xrpl.service.js.map +1 -1
  36. package/dist/services/xrpl/xrpl.types.d.ts +108 -7
  37. package/dist/services/xrpl/xrpl.types.d.ts.map +1 -1
  38. package/dist/services/xrpl/xrpl.types.js +0 -28
  39. package/dist/services/xrpl/xrpl.types.js.map +1 -1
  40. package/package.json +1 -1
@@ -2419,30 +2419,6 @@ export interface paths {
2419
2419
  patch?: never;
2420
2420
  trace?: never;
2421
2421
  };
2422
- "/v1/domains/{domainId}/compliance/travel-rule/providers/{provider}/relationships": {
2423
- parameters: {
2424
- query?: never;
2425
- header?: never;
2426
- path?: never;
2427
- cookie?: never;
2428
- };
2429
- /**
2430
- * List all relationships registered with the travel rule provider
2431
- * @description Pass-through proxy API to list all relationships from the travel rule provider (e.g., Notabene)
2432
- */
2433
- get: operations["ListRelationships"];
2434
- put?: never;
2435
- /**
2436
- * Create a relationship with the travel rule provider
2437
- * @description Pass-through proxy API to create a relationship with the travel rule provider (e.g., Notabene)
2438
- */
2439
- post: operations["CreateRelationship"];
2440
- delete?: never;
2441
- options?: never;
2442
- head?: never;
2443
- patch?: never;
2444
- trace?: never;
2445
- };
2446
2422
  "/v1/domains/{domainId}/channels": {
2447
2423
  parameters: {
2448
2424
  query?: never;
@@ -2981,12 +2957,25 @@ export interface components {
2981
2957
  */
2982
2958
  type: "VaultMPC";
2983
2959
  };
2960
+ Core_ApiBatchSigningData: {
2961
+ /** @description Hex encoded string. */
2962
+ signingPayload: string;
2963
+ /** @description Hex encoded string. */
2964
+ signingPayloadHash: string;
2965
+ executionMode: components["schemas"]["Core_Xrpl_BatchExecutionMode"];
2966
+ transactions: components["schemas"]["Core_ApiInnerTransactionData"][];
2967
+ };
2984
2968
  /** @enum {string} */
2985
2969
  Core_ApiBroadcastingTransactionProcessingHint: "CurrentlyFeesTooSmall" | "CurrentlyRejectedByLedger" | "InternalError" | "TransientIssue";
2986
2970
  /** @enum {string} */
2987
2971
  Core_ApiDryRunTransactionProcessingHint: "AccountAlreadyActivatedOnLedger" | "AccountNotReadyOnLedger" | "BroadcastExpired" | "CurrentlyFeesTooLarge" | "CurrentlyFeesTooSmall" | "CurrentlyFundsTooFragmented" | "CurrentlyNotEnoughFunds" | "CurrentlyUnusableDestination" | "InternalError" | "InvalidAccountStateOnLedger" | "InvalidAmount" | "InvalidContractParameters" | "InvalidDestination" | "InvalidUserPayload" | "LockedDestination" | "OnLedgerFailure" | "ReplacementTransactionFeesTooLow" | "TransactionEstimationFailure" | "TransactionNotEligibleForReplacement" | "TransactionRejected" | "TransientIssue";
2988
2972
  /** @enum {string} */
2989
2973
  Core_ApiFailedTransactionProcessingHint: "AccountAlreadyActivatedOnLedger" | "BroadcastExpired" | "InternalError" | "InvalidAccountStateOnLedger" | "InvalidAmount" | "InvalidContractParameters" | "InvalidDestination" | "InvalidUserPayload" | "LockedDestination" | "OnLedgerFailure" | "ReplacementTransactionFeesTooLow" | "TransactionNotEligibleForReplacement" | "TransactionRejected" | "TransientIssue";
2974
+ Core_ApiInnerTransactionData: {
2975
+ account: string;
2976
+ operation: components["schemas"]["Core_Xrpl_ResolvedBatchInnerOperation"];
2977
+ sequencing: components["schemas"]["Core_ResolvedSequencing"];
2978
+ };
2990
2979
  /** @enum {string} */
2991
2980
  Core_ApiInterruptedTransactionCause: "Cancellation" | "Internal" | "Replacement";
2992
2981
  Core_ApiManifest: {
@@ -3311,6 +3300,171 @@ export interface components {
3311
3300
  */
3312
3301
  type: "BalancesUpdated";
3313
3302
  };
3303
+ Core_BatchEntry: components["schemas"]["Core_BatchEntry_ParticipantOperation"] | components["schemas"]["Core_BatchEntry_SubmitterOperation"];
3304
+ Core_BatchEntry_ParticipantOperation: {
3305
+ participant: components["schemas"]["Core_Participant"];
3306
+ operation: components["schemas"]["Core_BatchInnerOperation"];
3307
+ sequencing: components["schemas"]["Core_ParticipantSequencing"];
3308
+ /**
3309
+ * @description discriminator enum property added by openapi-typescript
3310
+ * @enum {string}
3311
+ */
3312
+ type: "ParticipantOperation";
3313
+ };
3314
+ Core_BatchEntry_SubmitterOperation: {
3315
+ operation: components["schemas"]["Core_BatchInnerOperation"];
3316
+ sequencing: components["schemas"]["Core_Sequencing"];
3317
+ /**
3318
+ * @description discriminator enum property added by openapi-typescript
3319
+ * @enum {string}
3320
+ */
3321
+ type: "SubmitterOperation";
3322
+ };
3323
+ Core_BatchInnerOperation: components["schemas"]["Core_BatchInnerOperation_AccountSet"] | components["schemas"]["Core_BatchInnerOperation_Clawback"] | components["schemas"]["Core_BatchInnerOperation_DepositPreauth"] | components["schemas"]["Core_BatchInnerOperation_EscrowFinish"] | components["schemas"]["Core_BatchInnerOperation_MPTokenAuthorize"] | components["schemas"]["Core_BatchInnerOperation_MPTokenIssuanceCreate"] | components["schemas"]["Core_BatchInnerOperation_MPTokenIssuanceDestroy"] | components["schemas"]["Core_BatchInnerOperation_MPTokenIssuanceSet"] | components["schemas"]["Core_BatchInnerOperation_OfferCreate"] | components["schemas"]["Core_BatchInnerOperation_Payment"] | components["schemas"]["Core_BatchInnerOperation_TicketCreate"] | components["schemas"]["Core_BatchInnerOperation_TrustSet"];
3324
+ Core_BatchInnerOperation_AccountSet: {
3325
+ setFlag?: components["schemas"]["Core_Xrpl_AccountSetFlag"];
3326
+ clearFlag?: components["schemas"]["Core_Xrpl_AccountSetFlag"];
3327
+ /** Format: int32 */
3328
+ transferRate?: number;
3329
+ /**
3330
+ * @description discriminator enum property added by openapi-typescript
3331
+ * @enum {string}
3332
+ */
3333
+ type: "AccountSet";
3334
+ };
3335
+ Core_BatchInnerOperation_Clawback: {
3336
+ currency: components["schemas"]["Core_XrplClawbackCurrency"];
3337
+ holder: components["schemas"]["Core_TransactionDestination"];
3338
+ /** @description This field is a large integer that can be positive or zero. It is represented as a string because it may contain value that cannot be expressed with JSON number without a loss of precision. */
3339
+ value: string;
3340
+ /**
3341
+ * @description discriminator enum property added by openapi-typescript
3342
+ * @enum {string}
3343
+ */
3344
+ type: "Clawback";
3345
+ };
3346
+ Core_BatchInnerOperation_DepositPreauth: {
3347
+ authorize?: components["schemas"]["Core_TransactionDestination"];
3348
+ unauthorize?: components["schemas"]["Core_TransactionDestination"];
3349
+ /**
3350
+ * @description discriminator enum property added by openapi-typescript
3351
+ * @enum {string}
3352
+ */
3353
+ type: "DepositPreauth";
3354
+ };
3355
+ Core_BatchInnerOperation_EscrowFinish: {
3356
+ owner: components["schemas"]["Core_TransactionDestination"];
3357
+ /** Format: int64 */
3358
+ offerSequence: number;
3359
+ /** @description Hex encoded string. */
3360
+ condition?: string;
3361
+ credentialIds?: string[];
3362
+ /** @description Hex encoded string. */
3363
+ fulfillment?: string;
3364
+ /**
3365
+ * @description discriminator enum property added by openapi-typescript
3366
+ * @enum {string}
3367
+ */
3368
+ type: "EscrowFinish";
3369
+ };
3370
+ Core_BatchInnerOperation_MPTokenAuthorize: {
3371
+ tokenIdentifier: components["schemas"]["Core_Xrpl_MPTokenIdentifier"];
3372
+ flags: components["schemas"]["Core_Xrpl_MPTokenAuthorizeFlag"][];
3373
+ holder?: components["schemas"]["Core_TransactionDestination"];
3374
+ /**
3375
+ * @description discriminator enum property added by openapi-typescript
3376
+ * @enum {string}
3377
+ */
3378
+ type: "MPTokenAuthorize";
3379
+ };
3380
+ Core_BatchInnerOperation_MPTokenIssuanceCreate: {
3381
+ flags: components["schemas"]["Core_Xrpl_MPTokenIssuanceCreateFlag"][];
3382
+ /** Format: int32 */
3383
+ assetScale?: number;
3384
+ /**
3385
+ * Format: int32
3386
+ * @description Transfer fee for MultiPurposeToken, must be from 0 to 50000
3387
+ */
3388
+ transferFee?: number;
3389
+ /** @description This field is a unsigned 64bit integer that can store values in range from 0 to 18446744073709551615.It is represented as a string because it may contain value that cannot be expressed with JSON number without a loss of precision. */
3390
+ maximumAmount?: string;
3391
+ metadata?: components["schemas"]["Core_MPTokenIssuanceMetadata"];
3392
+ /**
3393
+ * @description discriminator enum property added by openapi-typescript
3394
+ * @enum {string}
3395
+ */
3396
+ type: "MPTokenIssuanceCreate";
3397
+ };
3398
+ Core_BatchInnerOperation_MPTokenIssuanceDestroy: {
3399
+ tokenIdentifier: components["schemas"]["Core_Xrpl_MPTokenIdentifier"];
3400
+ /**
3401
+ * @description discriminator enum property added by openapi-typescript
3402
+ * @enum {string}
3403
+ */
3404
+ type: "MPTokenIssuanceDestroy";
3405
+ };
3406
+ Core_BatchInnerOperation_MPTokenIssuanceSet: {
3407
+ tokenIdentifier: components["schemas"]["Core_Xrpl_MPTokenIdentifier"];
3408
+ holder?: components["schemas"]["Core_TransactionDestination"];
3409
+ flags: components["schemas"]["Core_Xrpl_MPTokenIssuanceSetFlag"][];
3410
+ /**
3411
+ * @description discriminator enum property added by openapi-typescript
3412
+ * @enum {string}
3413
+ */
3414
+ type: "MPTokenIssuanceSet";
3415
+ };
3416
+ Core_BatchInnerOperation_OfferCreate: {
3417
+ flags: components["schemas"]["Core_Xrpl_OfferCreateFlag"][];
3418
+ takerGets: components["schemas"]["Core_Xrpl_AssetQuantity"];
3419
+ takerPays: components["schemas"]["Core_Xrpl_AssetQuantity"];
3420
+ /**
3421
+ * @description discriminator enum property added by openapi-typescript
3422
+ * @enum {string}
3423
+ */
3424
+ type: "OfferCreate";
3425
+ };
3426
+ Core_BatchInnerOperation_Payment: {
3427
+ destination: components["schemas"]["Core_TransactionDestination"];
3428
+ /** @description This field is a large integer that can be positive or zero. It is represented as a string because it may contain value that cannot be expressed with JSON number without a loss of precision. */
3429
+ amount: string;
3430
+ /** Format: int64 */
3431
+ destinationTag?: number;
3432
+ currency?: components["schemas"]["Core_XrplPaymentCurrency"];
3433
+ /**
3434
+ * @description discriminator enum property added by openapi-typescript
3435
+ * @enum {string}
3436
+ */
3437
+ type: "Payment";
3438
+ };
3439
+ Core_BatchInnerOperation_TicketCreate: {
3440
+ /**
3441
+ * Format: int32
3442
+ * @description Number of tickets to create, must be from 1 to 250
3443
+ */
3444
+ ticketCount: number;
3445
+ /**
3446
+ * @description discriminator enum property added by openapi-typescript
3447
+ * @enum {string}
3448
+ */
3449
+ type: "TicketCreate";
3450
+ };
3451
+ Core_BatchInnerOperation_TrustSet: {
3452
+ flags: components["schemas"]["Core_Xrpl_TrustSetFlag"][];
3453
+ limitAmount: components["schemas"]["Core_Xrpl_LimitAmount"];
3454
+ enableRippling?: boolean;
3455
+ /**
3456
+ * @description discriminator enum property added by openapi-typescript
3457
+ * @enum {string}
3458
+ */
3459
+ type: "TrustSet";
3460
+ };
3461
+ Core_BatchSigner: {
3462
+ participant: components["schemas"]["Core_Participant"];
3463
+ /** @description Hex encoded string. */
3464
+ publicKey: string;
3465
+ /** @description Hex encoded string. */
3466
+ signature: string;
3467
+ };
3314
3468
  Core_BitcoinFee: {
3315
3469
  /** @description This field is a large decimal and represented as a string because it may contain value that cannot be expressed with JSON number without a loss of precision. */
3316
3470
  satoshiPerVbyte: string;
@@ -4942,6 +5096,52 @@ export interface components {
4942
5096
  */
4943
5097
  type: "Xrpl";
4944
5098
  };
5099
+ Core_Participant: components["schemas"]["Core_Participant_Account"] | components["schemas"]["Core_Participant_Address"] | components["schemas"]["Core_Participant_Endpoint"];
5100
+ Core_ParticipantSequencing: components["schemas"]["Core_ParticipantSequencing_AccountSequence"] | components["schemas"]["Core_ParticipantSequencing_Ticket"];
5101
+ Core_ParticipantSequencing_AccountSequence: {
5102
+ /** Format: int64 */
5103
+ value: number;
5104
+ /**
5105
+ * @description discriminator enum property added by openapi-typescript
5106
+ * @enum {string}
5107
+ */
5108
+ type: "AccountSequence";
5109
+ };
5110
+ Core_ParticipantSequencing_Ticket: {
5111
+ /** Format: int64 */
5112
+ value: number;
5113
+ /**
5114
+ * @description discriminator enum property added by openapi-typescript
5115
+ * @enum {string}
5116
+ */
5117
+ type: "Ticket";
5118
+ };
5119
+ Core_Participant_Account: {
5120
+ /** Format: uuid */
5121
+ accountId: string;
5122
+ /**
5123
+ * @description discriminator enum property added by openapi-typescript
5124
+ * @enum {string}
5125
+ */
5126
+ type: "Account";
5127
+ };
5128
+ Core_Participant_Address: {
5129
+ address: string;
5130
+ /**
5131
+ * @description discriminator enum property added by openapi-typescript
5132
+ * @enum {string}
5133
+ */
5134
+ type: "Address";
5135
+ };
5136
+ Core_Participant_Endpoint: {
5137
+ /** Format: uuid */
5138
+ endpointId: string;
5139
+ /**
5140
+ * @description discriminator enum property added by openapi-typescript
5141
+ * @enum {string}
5142
+ */
5143
+ type: "Endpoint";
5144
+ };
4945
5145
  Core_Permissions: {
4946
5146
  readAccess: components["schemas"]["Core_ReadAccess"];
4947
5147
  };
@@ -5196,6 +5396,25 @@ export interface components {
5196
5396
  /** Format: uuid */
5197
5397
  domainId: string;
5198
5398
  };
5399
+ Core_ResolvedSequencing: components["schemas"]["Core_ResolvedSequencing_AccountSequence"] | components["schemas"]["Core_ResolvedSequencing_Ticket"];
5400
+ Core_ResolvedSequencing_AccountSequence: {
5401
+ /** Format: int64 */
5402
+ value: number;
5403
+ /**
5404
+ * @description discriminator enum property added by openapi-typescript
5405
+ * @enum {string}
5406
+ */
5407
+ type: "AccountSequence";
5408
+ };
5409
+ Core_ResolvedSequencing_Ticket: {
5410
+ /** Format: int64 */
5411
+ value: number;
5412
+ /**
5413
+ * @description discriminator enum property added by openapi-typescript
5414
+ * @enum {string}
5415
+ */
5416
+ type: "Ticket";
5417
+ };
5199
5418
  Core_ResultLedger: {
5200
5419
  ledgerId: string;
5201
5420
  available: boolean;
@@ -5239,6 +5458,32 @@ export interface components {
5239
5458
  */
5240
5459
  type: "Address";
5241
5460
  };
5461
+ Core_Sequencing: components["schemas"]["Core_Sequencing_AccountSequence"] | components["schemas"]["Core_Sequencing_PlatformManaged"] | components["schemas"]["Core_Sequencing_Ticket"];
5462
+ Core_Sequencing_AccountSequence: {
5463
+ /** Format: int64 */
5464
+ value: number;
5465
+ /**
5466
+ * @description discriminator enum property added by openapi-typescript
5467
+ * @enum {string}
5468
+ */
5469
+ type: "AccountSequence";
5470
+ };
5471
+ Core_Sequencing_PlatformManaged: {
5472
+ /**
5473
+ * @description discriminator enum property added by openapi-typescript
5474
+ * @enum {string}
5475
+ */
5476
+ type: "PlatformManaged";
5477
+ };
5478
+ Core_Sequencing_Ticket: {
5479
+ /** Format: int64 */
5480
+ value: number;
5481
+ /**
5482
+ * @description discriminator enum property added by openapi-typescript
5483
+ * @enum {string}
5484
+ */
5485
+ type: "Ticket";
5486
+ };
5242
5487
  /** @enum {string} */
5243
5488
  Core_SkipQuarantineScope: "None" | "Domain" | "Instance";
5244
5489
  Core_SolanaFeeStrategy: components["schemas"]["Core_SolanaFeeStrategy_Priority"];
@@ -6182,6 +6427,7 @@ export interface components {
6182
6427
  minimumCostInDrops: string;
6183
6428
  /** @description This field is a large integer that can be positive or zero. It is represented as a string because it may contain value that cannot be expressed with JSON number without a loss of precision. */
6184
6429
  fee: string;
6430
+ batchSigningData?: components["schemas"]["Core_ApiBatchSigningData"];
6185
6431
  /**
6186
6432
  * @description discriminator enum property added by openapi-typescript
6187
6433
  * @enum {string}
@@ -7110,7 +7356,7 @@ export interface components {
7110
7356
  memoType?: string;
7111
7357
  };
7112
7358
  Core_XrplOnLedgerTokenData: components["schemas"]["Core_MultiPurposeToken"];
7113
- Core_XrplOperation: components["schemas"]["Core_XrplOperation_AccountSet"] | components["schemas"]["Core_XrplOperation_Clawback"] | components["schemas"]["Core_XrplOperation_DepositPreauth"] | components["schemas"]["Core_XrplOperation_EscrowFinish"] | components["schemas"]["Core_XrplOperation_MPTokenAuthorize"] | components["schemas"]["Core_XrplOperation_MPTokenIssuanceCreate"] | components["schemas"]["Core_XrplOperation_MPTokenIssuanceDestroy"] | components["schemas"]["Core_XrplOperation_MPTokenIssuanceSet"] | components["schemas"]["Core_XrplOperation_OfferCreate"] | components["schemas"]["Core_XrplOperation_Payment"] | components["schemas"]["Core_XrplOperation_TrustSet"];
7359
+ Core_XrplOperation: components["schemas"]["Core_XrplOperation_AccountSet"] | components["schemas"]["Core_XrplOperation_Batch"] | components["schemas"]["Core_XrplOperation_Clawback"] | components["schemas"]["Core_XrplOperation_DepositPreauth"] | components["schemas"]["Core_XrplOperation_EscrowFinish"] | components["schemas"]["Core_XrplOperation_MPTokenAuthorize"] | components["schemas"]["Core_XrplOperation_MPTokenIssuanceCreate"] | components["schemas"]["Core_XrplOperation_MPTokenIssuanceDestroy"] | components["schemas"]["Core_XrplOperation_MPTokenIssuanceSet"] | components["schemas"]["Core_XrplOperation_OfferCreate"] | components["schemas"]["Core_XrplOperation_Payment"] | components["schemas"]["Core_XrplOperation_TicketCreate"] | components["schemas"]["Core_XrplOperation_TrustSet"];
7114
7360
  Core_XrplOperation_AccountSet: {
7115
7361
  setFlag?: components["schemas"]["Core_Xrpl_AccountSetFlag"];
7116
7362
  clearFlag?: components["schemas"]["Core_Xrpl_AccountSetFlag"];
@@ -7122,6 +7368,19 @@ export interface components {
7122
7368
  */
7123
7369
  type: "AccountSet";
7124
7370
  };
7371
+ Core_XrplOperation_Batch: {
7372
+ executionMode: components["schemas"]["Core_Xrpl_BatchExecutionMode"];
7373
+ entries: components["schemas"]["Core_BatchEntry"][];
7374
+ batchSigners: components["schemas"]["Core_BatchSigner"][];
7375
+ sequencing: components["schemas"]["Core_Sequencing"];
7376
+ /** Format: int64 */
7377
+ lastLedgerSequence?: number;
7378
+ /**
7379
+ * @description discriminator enum property added by openapi-typescript
7380
+ * @enum {string}
7381
+ */
7382
+ type: "Batch";
7383
+ };
7125
7384
  Core_XrplOperation_Clawback: {
7126
7385
  currency: components["schemas"]["Core_XrplClawbackCurrency"];
7127
7386
  holder: components["schemas"]["Core_TransactionDestination"];
@@ -7167,7 +7426,245 @@ export interface components {
7167
7426
  */
7168
7427
  type: "MPTokenAuthorize";
7169
7428
  };
7170
- Core_XrplOperation_MPTokenIssuanceCreate: {
7429
+ Core_XrplOperation_MPTokenIssuanceCreate: {
7430
+ flags: components["schemas"]["Core_Xrpl_MPTokenIssuanceCreateFlag"][];
7431
+ /** Format: int32 */
7432
+ assetScale?: number;
7433
+ /**
7434
+ * Format: int32
7435
+ * @description Transfer fee for MultiPurposeToken, must be from 0 to 50000
7436
+ */
7437
+ transferFee?: number;
7438
+ /** @description This field is a unsigned 64bit integer that can store values in range from 0 to 18446744073709551615.It is represented as a string because it may contain value that cannot be expressed with JSON number without a loss of precision. */
7439
+ maximumAmount?: string;
7440
+ metadata?: components["schemas"]["Core_MPTokenIssuanceMetadata"];
7441
+ /**
7442
+ * @description discriminator enum property added by openapi-typescript
7443
+ * @enum {string}
7444
+ */
7445
+ type: "MPTokenIssuanceCreate";
7446
+ };
7447
+ Core_XrplOperation_MPTokenIssuanceDestroy: {
7448
+ tokenIdentifier: components["schemas"]["Core_Xrpl_MPTokenIdentifier"];
7449
+ /**
7450
+ * @description discriminator enum property added by openapi-typescript
7451
+ * @enum {string}
7452
+ */
7453
+ type: "MPTokenIssuanceDestroy";
7454
+ };
7455
+ Core_XrplOperation_MPTokenIssuanceSet: {
7456
+ tokenIdentifier: components["schemas"]["Core_Xrpl_MPTokenIdentifier"];
7457
+ holder?: components["schemas"]["Core_TransactionDestination"];
7458
+ flags: components["schemas"]["Core_Xrpl_MPTokenIssuanceSetFlag"][];
7459
+ /**
7460
+ * @description discriminator enum property added by openapi-typescript
7461
+ * @enum {string}
7462
+ */
7463
+ type: "MPTokenIssuanceSet";
7464
+ };
7465
+ Core_XrplOperation_OfferCreate: {
7466
+ flags: components["schemas"]["Core_Xrpl_OfferCreateFlag"][];
7467
+ takerGets: components["schemas"]["Core_Xrpl_AssetQuantity"];
7468
+ takerPays: components["schemas"]["Core_Xrpl_AssetQuantity"];
7469
+ /**
7470
+ * @description discriminator enum property added by openapi-typescript
7471
+ * @enum {string}
7472
+ */
7473
+ type: "OfferCreate";
7474
+ };
7475
+ Core_XrplOperation_Payment: {
7476
+ destination: components["schemas"]["Core_TransactionDestination"];
7477
+ /** @description This field is a large integer that can be positive or zero. It is represented as a string because it may contain value that cannot be expressed with JSON number without a loss of precision. */
7478
+ amount: string;
7479
+ /** Format: int64 */
7480
+ destinationTag?: number;
7481
+ currency?: components["schemas"]["Core_XrplPaymentCurrency"];
7482
+ /**
7483
+ * @description discriminator enum property added by openapi-typescript
7484
+ * @enum {string}
7485
+ */
7486
+ type: "Payment";
7487
+ };
7488
+ Core_XrplOperation_TicketCreate: {
7489
+ /**
7490
+ * Format: int32
7491
+ * @description Number of tickets to create, must be from 1 to 250
7492
+ */
7493
+ ticketCount: number;
7494
+ /**
7495
+ * @description discriminator enum property added by openapi-typescript
7496
+ * @enum {string}
7497
+ */
7498
+ type: "TicketCreate";
7499
+ };
7500
+ Core_XrplOperation_TrustSet: {
7501
+ flags: components["schemas"]["Core_Xrpl_TrustSetFlag"][];
7502
+ limitAmount: components["schemas"]["Core_Xrpl_LimitAmount"];
7503
+ enableRippling?: boolean;
7504
+ /**
7505
+ * @description discriminator enum property added by openapi-typescript
7506
+ * @enum {string}
7507
+ */
7508
+ type: "TrustSet";
7509
+ };
7510
+ Core_XrplPaymentCurrency: components["schemas"]["Core_XrplPaymentCurrency_Currency"] | components["schemas"]["Core_XrplPaymentCurrency_MultiPurposeToken"] | components["schemas"]["Core_XrplPaymentCurrency_TickerId"];
7511
+ Core_XrplPaymentCurrency_Currency: {
7512
+ code: string;
7513
+ issuer: string;
7514
+ /**
7515
+ * @description discriminator enum property added by openapi-typescript
7516
+ * @enum {string}
7517
+ */
7518
+ type: "Currency";
7519
+ };
7520
+ Core_XrplPaymentCurrency_MultiPurposeToken: {
7521
+ /** @description XRPL MPToken Issuance ID (192-bit integer hex encoded) */
7522
+ issuanceId: string;
7523
+ /**
7524
+ * @description discriminator enum property added by openapi-typescript
7525
+ * @enum {string}
7526
+ */
7527
+ type: "MultiPurposeToken";
7528
+ };
7529
+ Core_XrplPaymentCurrency_TickerId: {
7530
+ /** Format: uuid */
7531
+ tickerId: string;
7532
+ /**
7533
+ * @description discriminator enum property added by openapi-typescript
7534
+ * @enum {string}
7535
+ */
7536
+ type: "TickerId";
7537
+ };
7538
+ Core_XrplTickerProperties: components["schemas"]["Core_XrplTickerProperties_FungibleToken"] | components["schemas"]["Core_XrplTickerProperties_MultiPurposeToken"] | components["schemas"]["Core_XrplTickerProperties_Native"];
7539
+ Core_XrplTickerProperties_FungibleToken: {
7540
+ currencyCode: string;
7541
+ issuer: string;
7542
+ /**
7543
+ * @description discriminator enum property added by openapi-typescript
7544
+ * @enum {string}
7545
+ */
7546
+ type: "FungibleToken";
7547
+ };
7548
+ Core_XrplTickerProperties_MultiPurposeToken: {
7549
+ /** @description XRPL MPToken Issuance ID (192-bit integer hex encoded) */
7550
+ issuanceId: string;
7551
+ /**
7552
+ * @description discriminator enum property added by openapi-typescript
7553
+ * @enum {string}
7554
+ */
7555
+ type: "MultiPurposeToken";
7556
+ };
7557
+ Core_XrplTickerProperties_Native: {
7558
+ /**
7559
+ * @description discriminator enum property added by openapi-typescript
7560
+ * @enum {string}
7561
+ */
7562
+ type: "Native";
7563
+ };
7564
+ /** @enum {string} */
7565
+ Core_Xrpl_AccountSetFlag: "asfGlobalFreeze" | "asfNoFreeze" | "asfRequireAuth" | "asfAllowTrustLineClawback" | "asfAccountTxnID" | "asfDepositAuth" | "asfRequireDest" | "asfDefaultRipple";
7566
+ Core_Xrpl_AssetQuantity: {
7567
+ currency?: components["schemas"]["Core_XrplIouCurrency"];
7568
+ /** @description This field is a large integer that can be positive or zero. It is represented as a string because it may contain value that cannot be expressed with JSON number without a loss of precision. */
7569
+ amount: string;
7570
+ };
7571
+ /** @enum {string} */
7572
+ Core_Xrpl_BatchExecutionMode: "AllOrNothing" | "OnlyOne" | "UntilFailure" | "Independent";
7573
+ Core_Xrpl_LimitAmount: {
7574
+ currency: components["schemas"]["Core_XrplIouCurrency"];
7575
+ /** @description This field is a large integer that can be positive or zero. It is represented as a string because it may contain value that cannot be expressed with JSON number without a loss of precision. */
7576
+ value: string;
7577
+ };
7578
+ /** @enum {string} */
7579
+ Core_Xrpl_MPTokenAuthorizeFlag: "tfMPTUnauthorize";
7580
+ Core_Xrpl_MPTokenIdentifier: components["schemas"]["Core_Xrpl_MPTokenIdentifier_MPTokenIssuanceId"] | components["schemas"]["Core_Xrpl_MPTokenIdentifier_TickerId"];
7581
+ Core_Xrpl_MPTokenIdentifier_MPTokenIssuanceId: {
7582
+ /** @description XRPL MPToken Issuance ID (192-bit integer hex encoded) */
7583
+ issuanceId: string;
7584
+ /**
7585
+ * @description discriminator enum property added by openapi-typescript
7586
+ * @enum {string}
7587
+ */
7588
+ type: "MPTokenIssuanceId";
7589
+ };
7590
+ Core_Xrpl_MPTokenIdentifier_TickerId: {
7591
+ /** Format: uuid */
7592
+ tickerId: string;
7593
+ /**
7594
+ * @description discriminator enum property added by openapi-typescript
7595
+ * @enum {string}
7596
+ */
7597
+ type: "TickerId";
7598
+ };
7599
+ /** @enum {string} */
7600
+ Core_Xrpl_MPTokenIssuanceCreateFlag: "tfMPTRequireAuth" | "tfMPTCanClawback" | "tfMPTCanTransfer" | "tfMPTCanEscrow" | "tfMPTCanLock" | "tfMPTCanTrade";
7601
+ /** @enum {string} */
7602
+ Core_Xrpl_MPTokenIssuanceSetFlag: "tfMPTLock" | "tfMPTUnlock";
7603
+ /** @enum {string} */
7604
+ Core_Xrpl_OfferCreateFlag: "tfImmediateOrCancel" | "tfFillOrKill" | "tfSell";
7605
+ Core_Xrpl_ResolvedAssetQuantity: {
7606
+ currency?: components["schemas"]["Core_Xrpl_ResolvedIouCurrency"];
7607
+ /** @description This field is a large integer that can be positive or zero. It is represented as a string because it may contain value that cannot be expressed with JSON number without a loss of precision. */
7608
+ amount: string;
7609
+ };
7610
+ Core_Xrpl_ResolvedBatchInnerOperation: components["schemas"]["Core_Xrpl_ResolvedBatchInnerOperation_AccountSet"] | components["schemas"]["Core_Xrpl_ResolvedBatchInnerOperation_Clawback"] | components["schemas"]["Core_Xrpl_ResolvedBatchInnerOperation_DepositPreauth"] | components["schemas"]["Core_Xrpl_ResolvedBatchInnerOperation_EscrowFinish"] | components["schemas"]["Core_Xrpl_ResolvedBatchInnerOperation_MPTokenAuthorize"] | components["schemas"]["Core_Xrpl_ResolvedBatchInnerOperation_MPTokenIssuanceCreate"] | components["schemas"]["Core_Xrpl_ResolvedBatchInnerOperation_MPTokenIssuanceDestroy"] | components["schemas"]["Core_Xrpl_ResolvedBatchInnerOperation_MPTokenIssuanceSet"] | components["schemas"]["Core_Xrpl_ResolvedBatchInnerOperation_OfferCreate"] | components["schemas"]["Core_Xrpl_ResolvedBatchInnerOperation_Payment"] | components["schemas"]["Core_Xrpl_ResolvedBatchInnerOperation_TicketCreate"] | components["schemas"]["Core_Xrpl_ResolvedBatchInnerOperation_TrustSet"];
7611
+ Core_Xrpl_ResolvedBatchInnerOperation_AccountSet: {
7612
+ setFlag?: components["schemas"]["Core_Xrpl_AccountSetFlag"];
7613
+ clearFlag?: components["schemas"]["Core_Xrpl_AccountSetFlag"];
7614
+ /** Format: int32 */
7615
+ transferRate?: number;
7616
+ /**
7617
+ * @description discriminator enum property added by openapi-typescript
7618
+ * @enum {string}
7619
+ */
7620
+ type: "AccountSet";
7621
+ };
7622
+ Core_Xrpl_ResolvedBatchInnerOperation_Clawback: {
7623
+ currency: components["schemas"]["Core_Xrpl_ResolvedClawbackCurrency"];
7624
+ holder: string;
7625
+ /** @description This field is a large integer that can be positive or zero. It is represented as a string because it may contain value that cannot be expressed with JSON number without a loss of precision. */
7626
+ value: string;
7627
+ /**
7628
+ * @description discriminator enum property added by openapi-typescript
7629
+ * @enum {string}
7630
+ */
7631
+ type: "Clawback";
7632
+ };
7633
+ Core_Xrpl_ResolvedBatchInnerOperation_DepositPreauth: {
7634
+ authorize?: string;
7635
+ unauthorize?: string;
7636
+ /**
7637
+ * @description discriminator enum property added by openapi-typescript
7638
+ * @enum {string}
7639
+ */
7640
+ type: "DepositPreauth";
7641
+ };
7642
+ Core_Xrpl_ResolvedBatchInnerOperation_EscrowFinish: {
7643
+ owner: string;
7644
+ /** Format: int64 */
7645
+ offerSequence: number;
7646
+ /** @description Hex encoded string. */
7647
+ condition?: string;
7648
+ credentialIds?: string[];
7649
+ /** @description Hex encoded string. */
7650
+ fulfillment?: string;
7651
+ /**
7652
+ * @description discriminator enum property added by openapi-typescript
7653
+ * @enum {string}
7654
+ */
7655
+ type: "EscrowFinish";
7656
+ };
7657
+ Core_Xrpl_ResolvedBatchInnerOperation_MPTokenAuthorize: {
7658
+ tokenIdentifier: components["schemas"]["Core_Xrpl_ResolvedMPTokenIdentifier"];
7659
+ flags: components["schemas"]["Core_Xrpl_MPTokenAuthorizeFlag"][];
7660
+ holder?: string;
7661
+ /**
7662
+ * @description discriminator enum property added by openapi-typescript
7663
+ * @enum {string}
7664
+ */
7665
+ type: "MPTokenAuthorize";
7666
+ };
7667
+ Core_Xrpl_ResolvedBatchInnerOperation_MPTokenIssuanceCreate: {
7171
7668
  flags: components["schemas"]["Core_Xrpl_MPTokenIssuanceCreateFlag"][];
7172
7669
  /** Format: int32 */
7173
7670
  assetScale?: number;
@@ -7185,17 +7682,17 @@ export interface components {
7185
7682
  */
7186
7683
  type: "MPTokenIssuanceCreate";
7187
7684
  };
7188
- Core_XrplOperation_MPTokenIssuanceDestroy: {
7189
- tokenIdentifier: components["schemas"]["Core_Xrpl_MPTokenIdentifier"];
7685
+ Core_Xrpl_ResolvedBatchInnerOperation_MPTokenIssuanceDestroy: {
7686
+ tokenIdentifier: components["schemas"]["Core_Xrpl_ResolvedMPTokenIdentifier"];
7190
7687
  /**
7191
7688
  * @description discriminator enum property added by openapi-typescript
7192
7689
  * @enum {string}
7193
7690
  */
7194
7691
  type: "MPTokenIssuanceDestroy";
7195
7692
  };
7196
- Core_XrplOperation_MPTokenIssuanceSet: {
7197
- tokenIdentifier: components["schemas"]["Core_Xrpl_MPTokenIdentifier"];
7198
- holder?: components["schemas"]["Core_TransactionDestination"];
7693
+ Core_Xrpl_ResolvedBatchInnerOperation_MPTokenIssuanceSet: {
7694
+ tokenIdentifier: components["schemas"]["Core_Xrpl_ResolvedMPTokenIdentifier"];
7695
+ holder?: string;
7199
7696
  flags: components["schemas"]["Core_Xrpl_MPTokenIssuanceSetFlag"][];
7200
7697
  /**
7201
7698
  * @description discriminator enum property added by openapi-typescript
@@ -7203,78 +7700,62 @@ export interface components {
7203
7700
  */
7204
7701
  type: "MPTokenIssuanceSet";
7205
7702
  };
7206
- Core_XrplOperation_OfferCreate: {
7703
+ Core_Xrpl_ResolvedBatchInnerOperation_OfferCreate: {
7207
7704
  flags: components["schemas"]["Core_Xrpl_OfferCreateFlag"][];
7208
- takerGets: components["schemas"]["Core_Xrpl_AssetQuantity"];
7209
- takerPays: components["schemas"]["Core_Xrpl_AssetQuantity"];
7705
+ takerGets: components["schemas"]["Core_Xrpl_ResolvedAssetQuantity"];
7706
+ takerPays: components["schemas"]["Core_Xrpl_ResolvedAssetQuantity"];
7210
7707
  /**
7211
7708
  * @description discriminator enum property added by openapi-typescript
7212
7709
  * @enum {string}
7213
7710
  */
7214
7711
  type: "OfferCreate";
7215
7712
  };
7216
- Core_XrplOperation_Payment: {
7217
- destination: components["schemas"]["Core_TransactionDestination"];
7713
+ Core_Xrpl_ResolvedBatchInnerOperation_Payment: {
7714
+ destination: string;
7218
7715
  /** @description This field is a large integer that can be positive or zero. It is represented as a string because it may contain value that cannot be expressed with JSON number without a loss of precision. */
7219
7716
  amount: string;
7220
7717
  /** Format: int64 */
7221
7718
  destinationTag?: number;
7222
- currency?: components["schemas"]["Core_XrplPaymentCurrency"];
7719
+ currency?: components["schemas"]["Core_Xrpl_ResolvedPaymentCurrency"];
7223
7720
  /**
7224
7721
  * @description discriminator enum property added by openapi-typescript
7225
7722
  * @enum {string}
7226
7723
  */
7227
7724
  type: "Payment";
7228
7725
  };
7229
- Core_XrplOperation_TrustSet: {
7230
- flags: components["schemas"]["Core_Xrpl_TrustSetFlag"][];
7231
- limitAmount: components["schemas"]["Core_Xrpl_LimitAmount"];
7232
- enableRippling?: boolean;
7233
- /**
7234
- * @description discriminator enum property added by openapi-typescript
7235
- * @enum {string}
7236
- */
7237
- type: "TrustSet";
7238
- };
7239
- Core_XrplPaymentCurrency: components["schemas"]["Core_XrplPaymentCurrency_Currency"] | components["schemas"]["Core_XrplPaymentCurrency_MultiPurposeToken"] | components["schemas"]["Core_XrplPaymentCurrency_TickerId"];
7240
- Core_XrplPaymentCurrency_Currency: {
7241
- code: string;
7242
- issuer: string;
7726
+ Core_Xrpl_ResolvedBatchInnerOperation_TicketCreate: {
7243
7727
  /**
7244
- * @description discriminator enum property added by openapi-typescript
7245
- * @enum {string}
7728
+ * Format: int32
7729
+ * @description Number of tickets to create, must be from 1 to 250
7246
7730
  */
7247
- type: "Currency";
7248
- };
7249
- Core_XrplPaymentCurrency_MultiPurposeToken: {
7250
- /** @description XRPL MPToken Issuance ID (192-bit integer hex encoded) */
7251
- issuanceId: string;
7731
+ ticketCount: number;
7252
7732
  /**
7253
7733
  * @description discriminator enum property added by openapi-typescript
7254
7734
  * @enum {string}
7255
7735
  */
7256
- type: "MultiPurposeToken";
7736
+ type: "TicketCreate";
7257
7737
  };
7258
- Core_XrplPaymentCurrency_TickerId: {
7259
- /** Format: uuid */
7260
- tickerId: string;
7738
+ Core_Xrpl_ResolvedBatchInnerOperation_TrustSet: {
7739
+ flags: components["schemas"]["Core_Xrpl_TrustSetFlag"][];
7740
+ limitAmount: components["schemas"]["Core_Xrpl_ResolvedLimitAmount"];
7741
+ enableRippling?: boolean;
7261
7742
  /**
7262
7743
  * @description discriminator enum property added by openapi-typescript
7263
7744
  * @enum {string}
7264
7745
  */
7265
- type: "TickerId";
7746
+ type: "TrustSet";
7266
7747
  };
7267
- Core_XrplTickerProperties: components["schemas"]["Core_XrplTickerProperties_FungibleToken"] | components["schemas"]["Core_XrplTickerProperties_MultiPurposeToken"] | components["schemas"]["Core_XrplTickerProperties_Native"];
7268
- Core_XrplTickerProperties_FungibleToken: {
7269
- currencyCode: string;
7748
+ Core_Xrpl_ResolvedClawbackCurrency: components["schemas"]["Core_Xrpl_ResolvedClawbackCurrency_Fungible"] | components["schemas"]["Core_Xrpl_ResolvedClawbackCurrency_MultiPurposeToken"];
7749
+ Core_Xrpl_ResolvedClawbackCurrency_Fungible: {
7750
+ code: string;
7270
7751
  issuer: string;
7271
7752
  /**
7272
7753
  * @description discriminator enum property added by openapi-typescript
7273
7754
  * @enum {string}
7274
7755
  */
7275
- type: "FungibleToken";
7756
+ type: "Fungible";
7276
7757
  };
7277
- Core_XrplTickerProperties_MultiPurposeToken: {
7758
+ Core_Xrpl_ResolvedClawbackCurrency_MultiPurposeToken: {
7278
7759
  /** @description XRPL MPToken Issuance ID (192-bit integer hex encoded) */
7279
7760
  issuanceId: string;
7280
7761
  /**
@@ -7283,53 +7764,39 @@ export interface components {
7283
7764
  */
7284
7765
  type: "MultiPurposeToken";
7285
7766
  };
7286
- Core_XrplTickerProperties_Native: {
7287
- /**
7288
- * @description discriminator enum property added by openapi-typescript
7289
- * @enum {string}
7290
- */
7291
- type: "Native";
7292
- };
7293
- /** @enum {string} */
7294
- Core_Xrpl_AccountSetFlag: "asfGlobalFreeze" | "asfNoFreeze" | "asfRequireAuth" | "asfAllowTrustLineClawback" | "asfAccountTxnID" | "asfDepositAuth" | "asfRequireDest" | "asfDefaultRipple";
7295
- Core_Xrpl_AssetQuantity: {
7296
- currency?: components["schemas"]["Core_XrplIouCurrency"];
7297
- /** @description This field is a large integer that can be positive or zero. It is represented as a string because it may contain value that cannot be expressed with JSON number without a loss of precision. */
7298
- amount: string;
7767
+ Core_Xrpl_ResolvedIouCurrency: {
7768
+ code: string;
7769
+ issuer: string;
7299
7770
  };
7300
- Core_Xrpl_LimitAmount: {
7301
- currency: components["schemas"]["Core_XrplIouCurrency"];
7771
+ Core_Xrpl_ResolvedLimitAmount: {
7772
+ currency: components["schemas"]["Core_Xrpl_ResolvedIouCurrency"];
7302
7773
  /** @description This field is a large integer that can be positive or zero. It is represented as a string because it may contain value that cannot be expressed with JSON number without a loss of precision. */
7303
7774
  value: string;
7304
7775
  };
7305
- /** @enum {string} */
7306
- Core_Xrpl_MPTokenAuthorizeFlag: "tfMPTUnauthorize";
7307
- Core_Xrpl_MPTokenIdentifier: components["schemas"]["Core_Xrpl_MPTokenIdentifier_MPTokenIssuanceId"] | components["schemas"]["Core_Xrpl_MPTokenIdentifier_TickerId"];
7308
- Core_Xrpl_MPTokenIdentifier_MPTokenIssuanceId: {
7776
+ Core_Xrpl_ResolvedMPTokenIdentifier: {
7309
7777
  /** @description XRPL MPToken Issuance ID (192-bit integer hex encoded) */
7310
7778
  issuanceId: string;
7779
+ };
7780
+ Core_Xrpl_ResolvedPaymentCurrency: components["schemas"]["Core_Xrpl_ResolvedPaymentCurrency_Fungible"] | components["schemas"]["Core_Xrpl_ResolvedPaymentCurrency_MultiPurposeToken"];
7781
+ Core_Xrpl_ResolvedPaymentCurrency_Fungible: {
7782
+ code: string;
7783
+ issuer: string;
7311
7784
  /**
7312
7785
  * @description discriminator enum property added by openapi-typescript
7313
7786
  * @enum {string}
7314
7787
  */
7315
- type: "MPTokenIssuanceId";
7788
+ type: "Fungible";
7316
7789
  };
7317
- Core_Xrpl_MPTokenIdentifier_TickerId: {
7318
- /** Format: uuid */
7319
- tickerId: string;
7790
+ Core_Xrpl_ResolvedPaymentCurrency_MultiPurposeToken: {
7791
+ /** @description XRPL MPToken Issuance ID (192-bit integer hex encoded) */
7792
+ issuanceId: string;
7320
7793
  /**
7321
7794
  * @description discriminator enum property added by openapi-typescript
7322
7795
  * @enum {string}
7323
7796
  */
7324
- type: "TickerId";
7797
+ type: "MultiPurposeToken";
7325
7798
  };
7326
7799
  /** @enum {string} */
7327
- Core_Xrpl_MPTokenIssuanceCreateFlag: "tfMPTRequireAuth" | "tfMPTCanClawback" | "tfMPTCanTransfer" | "tfMPTCanEscrow" | "tfMPTCanLock" | "tfMPTCanTrade";
7328
- /** @enum {string} */
7329
- Core_Xrpl_MPTokenIssuanceSetFlag: "tfMPTLock" | "tfMPTUnlock";
7330
- /** @enum {string} */
7331
- Core_Xrpl_OfferCreateFlag: "tfImmediateOrCancel" | "tfFillOrKill" | "tfSell";
7332
- /** @enum {string} */
7333
7800
  Core_Xrpl_TrustSetFlag: "tfSetFreeze" | "tfClearFreeze" | "tfSetfAuth";
7334
7801
  Core_v0_AcknowledgeBackup: {
7335
7802
  /** Format: uuid */
@@ -8867,101 +9334,6 @@ export interface components {
8867
9334
  direction?: "INCOMING" | "OUTGOING";
8868
9335
  transfer?: components["schemas"]["Compliance_Transfer"];
8869
9336
  };
8870
- /** @description Request to create a relationship with a travel rule provider */
8871
- Compliance_CreateRelationshipRequest: {
8872
- /**
8873
- * Format: did
8874
- * @description The DID of the source entity. Defaults to the entityDID from the domain credentials.
8875
- * @example did:web:ripple.com:test:us
8876
- */
8877
- from?: string;
8878
- /**
8879
- * Format: did
8880
- * @description The DID of the target entity.
8881
- * @example did:web:example.com:test:counterparty
8882
- */
8883
- to: string;
8884
- };
8885
- /** @description List of relationships from the travel rule provider */
8886
- Compliance_RelationshipList: {
8887
- /** @description Array of relationship objects with ownership proofs */
8888
- relationships?: components["schemas"]["Compliance_RelationshipWithProofs"][];
8889
- };
8890
- /** @description A relationship between two entities with ownership proofs */
8891
- Compliance_RelationshipWithProofs: {
8892
- /**
8893
- * @description Unique identifier for the relationship
8894
- * @example urn:uuid:12345678-1234-1234-1234-123456789abc
8895
- */
8896
- "@id": string;
8897
- /**
8898
- * Format: did
8899
- * @description Decentralized Identifier (DID) of the source entity
8900
- * @example did:web:ripple.com:test:us
8901
- */
8902
- from: string;
8903
- /**
8904
- * Format: did
8905
- * @description Decentralized Identifier (DID) of the target entity
8906
- * @example did:web:example.com:test:counterparty
8907
- */
8908
- to: string;
8909
- /**
8910
- * Format: did
8911
- * @description Decentralized Identifier (DID) of the custodian entity (optional)
8912
- * @example did:web:custodian.com:test:vault
8913
- */
8914
- custodian?: string;
8915
- /**
8916
- * @description Current state of the relationship
8917
- * @example CONFIRMED
8918
- * @enum {string}
8919
- */
8920
- status: "UNCONFIRMED" | "CONFIRMED" | "REJECTED";
8921
- /**
8922
- * Format: did
8923
- * @description Decentralized Identifier (DID) of the entity that confirmed the relationship
8924
- * @example did:web:example.com:test:counterparty
8925
- */
8926
- confirmedBy?: string;
8927
- /** @description Ownership proofs associated with this relationship */
8928
- proofs?: components["schemas"]["Compliance_OwnershipProof"][];
8929
- };
8930
- /** @description Proof of ownership for an address or entity */
8931
- Compliance_OwnershipProof: {
8932
- /**
8933
- * @description The blockchain address being proven
8934
- * @example 0x1234567890abcdef1234567890abcdef12345678
8935
- */
8936
- address: string;
8937
- /**
8938
- * @description The blockchain network
8939
- * @example ethereum
8940
- */
8941
- chain?: string;
8942
- /**
8943
- * @description Status of the ownership proof
8944
- * @example VERIFIED
8945
- * @enum {string}
8946
- */
8947
- status: "PENDING" | "CONFIRMED" | "VERIFIED" | "REJECTED";
8948
- /**
8949
- * @description Cryptographic signature proving ownership
8950
- * @example 0xabcdef...
8951
- */
8952
- signature?: string;
8953
- /**
8954
- * @description The message that was signed
8955
- * @example I own this address
8956
- */
8957
- message?: string;
8958
- /**
8959
- * Format: date-time
8960
- * @description When the proof was created
8961
- * @example 2026-03-10T14:30:00.0000000+00:00
8962
- */
8963
- timestamp?: string;
8964
- };
8965
9337
  EDS_ChannelCreate: {
8966
9338
  /** Format: uuid */
8967
9339
  id: string;
@@ -14302,151 +14674,6 @@ export interface operations {
14302
14674
  };
14303
14675
  };
14304
14676
  };
14305
- ListRelationships: {
14306
- parameters: {
14307
- query?: {
14308
- /** @description Filter by 'from' DID (Decentralized Identifier) */
14309
- from?: string;
14310
- /** @description Filter by 'to' DID (Decentralized Identifier) */
14311
- to?: string;
14312
- /** @description Filter by custodian DID (Decentralized Identifier) */
14313
- custodian?: string;
14314
- };
14315
- header?: never;
14316
- path: {
14317
- domainId: string;
14318
- provider: "NOTABENE";
14319
- };
14320
- cookie?: never;
14321
- };
14322
- requestBody?: never;
14323
- responses: {
14324
- /** @description Relationships retrieved successfully */
14325
- 200: {
14326
- headers: {
14327
- [name: string]: unknown;
14328
- };
14329
- content: {
14330
- "application/json": components["schemas"]["Compliance_RelationshipList"];
14331
- };
14332
- };
14333
- /** @description Bad Request */
14334
- 400: {
14335
- headers: {
14336
- [name: string]: unknown;
14337
- };
14338
- content: {
14339
- "*/*": components["schemas"]["Compliance_ErrorResponse"];
14340
- };
14341
- };
14342
- /** @description Unauthorized */
14343
- 401: {
14344
- headers: {
14345
- [name: string]: unknown;
14346
- };
14347
- content: {
14348
- "*/*": components["schemas"]["Compliance_ErrorResponse"];
14349
- };
14350
- };
14351
- /** @description Forbidden */
14352
- 403: {
14353
- headers: {
14354
- [name: string]: unknown;
14355
- };
14356
- content: {
14357
- "*/*": components["schemas"]["Compliance_ErrorResponse"];
14358
- };
14359
- };
14360
- /** @description Domain not found */
14361
- 404: {
14362
- headers: {
14363
- [name: string]: unknown;
14364
- };
14365
- content: {
14366
- "*/*": components["schemas"]["Compliance_ErrorResponse"];
14367
- };
14368
- };
14369
- /** @description Internal Server Error */
14370
- 500: {
14371
- headers: {
14372
- [name: string]: unknown;
14373
- };
14374
- content: {
14375
- "*/*": components["schemas"]["Compliance_ErrorResponse"];
14376
- };
14377
- };
14378
- };
14379
- };
14380
- CreateRelationship: {
14381
- parameters: {
14382
- query?: never;
14383
- header?: never;
14384
- path: {
14385
- domainId: string;
14386
- provider: "NOTABENE";
14387
- };
14388
- cookie?: never;
14389
- };
14390
- requestBody: {
14391
- content: {
14392
- "application/json": components["schemas"]["Compliance_CreateRelationshipRequest"];
14393
- };
14394
- };
14395
- responses: {
14396
- /** @description Relationship created successfully */
14397
- 201: {
14398
- headers: {
14399
- [name: string]: unknown;
14400
- };
14401
- content?: never;
14402
- };
14403
- /** @description Bad Request */
14404
- 400: {
14405
- headers: {
14406
- [name: string]: unknown;
14407
- };
14408
- content: {
14409
- "*/*": components["schemas"]["Compliance_ErrorResponse"];
14410
- };
14411
- };
14412
- /** @description Unauthorized */
14413
- 401: {
14414
- headers: {
14415
- [name: string]: unknown;
14416
- };
14417
- content: {
14418
- "*/*": components["schemas"]["Compliance_ErrorResponse"];
14419
- };
14420
- };
14421
- /** @description Forbidden */
14422
- 403: {
14423
- headers: {
14424
- [name: string]: unknown;
14425
- };
14426
- content: {
14427
- "*/*": components["schemas"]["Compliance_ErrorResponse"];
14428
- };
14429
- };
14430
- /** @description Domain not found */
14431
- 404: {
14432
- headers: {
14433
- [name: string]: unknown;
14434
- };
14435
- content: {
14436
- "*/*": components["schemas"]["Compliance_ErrorResponse"];
14437
- };
14438
- };
14439
- /** @description Internal Server Error */
14440
- 500: {
14441
- headers: {
14442
- [name: string]: unknown;
14443
- };
14444
- content: {
14445
- "*/*": components["schemas"]["Compliance_ErrorResponse"];
14446
- };
14447
- };
14448
- };
14449
- };
14450
14677
  getAllChannels: {
14451
14678
  parameters: {
14452
14679
  query?: never;