@settlemint/dalp-cli 3.1.7-main.32979611088 → 3.1.7-main.32982162779
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/dist/dalp.js +165 -75
- package/dist/dalp.js.map +4 -4
- package/package.json +1 -1
package/dist/dalp.js
CHANGED
|
@@ -46201,7 +46201,7 @@ var API_ERROR_CATEGORIES = new Set([
|
|
|
46201
46201
|
// ../sdk/package.json
|
|
46202
46202
|
var package_default = {
|
|
46203
46203
|
name: "@settlemint/dalp-sdk",
|
|
46204
|
-
version: "3.1.7-main.
|
|
46204
|
+
version: "3.1.7-main.32982162779",
|
|
46205
46205
|
private: false,
|
|
46206
46206
|
description: "Fully typed SDK for the DALP tokenization platform API",
|
|
46207
46207
|
homepage: "https://settlemint.com",
|
|
@@ -46691,6 +46691,7 @@ __export(exports_operations, {
|
|
|
46691
46691
|
v2ParticipantsAssumableList: () => v2ParticipantsAssumableList,
|
|
46692
46692
|
v2ParticipantsComplianceEligibilityRead: () => v2ParticipantsComplianceEligibilityRead,
|
|
46693
46693
|
v2ParticipantsCreate: () => v2ParticipantsCreate,
|
|
46694
|
+
v2ParticipantsCustodyAccountRequestRead: () => v2ParticipantsCustodyAccountRequestRead,
|
|
46694
46695
|
v2ParticipantsCustodyAccountsList: () => v2ParticipantsCustodyAccountsList,
|
|
46695
46696
|
v2ParticipantsHoldings: () => v2ParticipantsHoldings,
|
|
46696
46697
|
v2ParticipantsList: () => v2ParticipantsList,
|
|
@@ -58856,6 +58857,24 @@ var zCreateParticipantOutputResponse = strictObject({
|
|
|
58856
58857
|
data: zCreateParticipantOutput,
|
|
58857
58858
|
links: zSingleResourceLinks
|
|
58858
58859
|
});
|
|
58860
|
+
var zCustodyAccountLifecycleRequestId1 = string2().min(1);
|
|
58861
|
+
var zCustodyAccountLifecycleRequestState = _enum2([
|
|
58862
|
+
"awaiting-proof",
|
|
58863
|
+
"awaiting-existing-approval",
|
|
58864
|
+
"claimed",
|
|
58865
|
+
"awaiting-aa-reconciliation",
|
|
58866
|
+
"reconciling",
|
|
58867
|
+
"awaiting-external-message-authorization",
|
|
58868
|
+
"awaiting-external-authorization",
|
|
58869
|
+
"succeeded",
|
|
58870
|
+
"failed",
|
|
58871
|
+
"expired"
|
|
58872
|
+
]);
|
|
58873
|
+
var zCustodyLifecycleAcceptedResult = strictObject({
|
|
58874
|
+
requestId: zCustodyAccountLifecycleRequestId1,
|
|
58875
|
+
state: zCustodyAccountLifecycleRequestState,
|
|
58876
|
+
statusUrl: string2()
|
|
58877
|
+
});
|
|
58859
58878
|
var zCollectionPageQuery60 = strictObject({
|
|
58860
58879
|
offset: union([
|
|
58861
58880
|
string2().regex(/^[+-]?\d*\.?\d+(?:[Ee][+-]?\d+)?$/),
|
|
@@ -59010,6 +59029,46 @@ var zParticipantCustodyAccountListResponse = strictObject({
|
|
|
59010
59029
|
self: string2()
|
|
59011
59030
|
})
|
|
59012
59031
|
});
|
|
59032
|
+
var zCustodyAccountLifecycleRequestId2 = string2().min(1);
|
|
59033
|
+
var zCustodyAccountLifecycleOperation = _enum2([
|
|
59034
|
+
"onboard",
|
|
59035
|
+
"add",
|
|
59036
|
+
"revoke",
|
|
59037
|
+
"archive"
|
|
59038
|
+
]);
|
|
59039
|
+
var zCustodyAccountLifecycleRequestState1 = _enum2([
|
|
59040
|
+
"awaiting-proof",
|
|
59041
|
+
"awaiting-existing-approval",
|
|
59042
|
+
"claimed",
|
|
59043
|
+
"awaiting-aa-reconciliation",
|
|
59044
|
+
"reconciling",
|
|
59045
|
+
"awaiting-external-message-authorization",
|
|
59046
|
+
"awaiting-external-authorization",
|
|
59047
|
+
"succeeded",
|
|
59048
|
+
"failed",
|
|
59049
|
+
"expired"
|
|
59050
|
+
]);
|
|
59051
|
+
var zTransactionPreparationId = string2().min(1);
|
|
59052
|
+
var zCustodyAccountLifecycleStatusOutputEncoded = strictObject({
|
|
59053
|
+
requestId: zCustodyAccountLifecycleRequestId2,
|
|
59054
|
+
custodyAccountId: zCustodyAccountId,
|
|
59055
|
+
organizationContextId: zCustodyAccountOrganizationContextId,
|
|
59056
|
+
operation: zCustodyAccountLifecycleOperation,
|
|
59057
|
+
state: zCustodyAccountLifecycleRequestState1,
|
|
59058
|
+
externalPreparationId: zTransactionPreparationId.nullable(),
|
|
59059
|
+
externalAuthorizingCustodyAccountId: zCustodyAccountId.nullable(),
|
|
59060
|
+
externalMessageDigest: zEthereumHexEncoded.nullable(),
|
|
59061
|
+
terminalResult: _enum2([
|
|
59062
|
+
"succeeded",
|
|
59063
|
+
"failed",
|
|
59064
|
+
"expired"
|
|
59065
|
+
]).nullable(),
|
|
59066
|
+
terminalCode: string2().nullable()
|
|
59067
|
+
});
|
|
59068
|
+
var zCustodyAccountLifecycleStatusOutputResponse = strictObject({
|
|
59069
|
+
data: zCustodyAccountLifecycleStatusOutputEncoded,
|
|
59070
|
+
links: zSingleResourceLinks
|
|
59071
|
+
});
|
|
59013
59072
|
var zCollectionPageQuery61 = strictObject({
|
|
59014
59073
|
offset: union([
|
|
59015
59074
|
string2().regex(/^[+-]?\d*\.?\d+(?:[Ee][+-]?\d+)?$/),
|
|
@@ -61088,37 +61147,18 @@ var zCustodyAccountResponse = strictObject({
|
|
|
61088
61147
|
self: string2()
|
|
61089
61148
|
})
|
|
61090
61149
|
});
|
|
61091
|
-
var zCustodyAccountLifecycleRequestId1 = string2().min(1);
|
|
61092
|
-
var zCustodyAccountLifecycleOperation = _enum2([
|
|
61093
|
-
"onboard",
|
|
61094
|
-
"add",
|
|
61095
|
-
"revoke",
|
|
61096
|
-
"archive"
|
|
61097
|
-
]);
|
|
61098
|
-
var zCustodyAccountLifecycleRequestState = _enum2([
|
|
61099
|
-
"awaiting-proof",
|
|
61100
|
-
"awaiting-existing-approval",
|
|
61101
|
-
"claimed",
|
|
61102
|
-
"awaiting-aa-reconciliation",
|
|
61103
|
-
"reconciling",
|
|
61104
|
-
"awaiting-external-message-authorization",
|
|
61105
|
-
"awaiting-external-authorization",
|
|
61106
|
-
"succeeded",
|
|
61107
|
-
"failed",
|
|
61108
|
-
"expired"
|
|
61109
|
-
]);
|
|
61110
61150
|
var zCreateManagedCustodyAccountOutput = strictObject({
|
|
61111
|
-
requestId:
|
|
61151
|
+
requestId: zCustodyAccountLifecycleRequestId2,
|
|
61112
61152
|
custodyAccountId: zCustodyAccountId,
|
|
61113
61153
|
operation: zCustodyAccountLifecycleOperation,
|
|
61114
|
-
state:
|
|
61154
|
+
state: zCustodyAccountLifecycleRequestState1
|
|
61115
61155
|
});
|
|
61116
61156
|
var zCreateManagedCustodyAccountOutputResponse = strictObject({
|
|
61117
61157
|
data: zCreateManagedCustodyAccountOutput,
|
|
61118
61158
|
links: zSingleResourceLinks
|
|
61119
61159
|
});
|
|
61120
|
-
var
|
|
61121
|
-
var
|
|
61160
|
+
var zCustodyAccountLifecycleRequestId3 = string2().min(1);
|
|
61161
|
+
var zCustodyAccountLifecycleRequestState2 = _enum2([
|
|
61122
61162
|
"awaiting-proof",
|
|
61123
61163
|
"awaiting-existing-approval",
|
|
61124
61164
|
"claimed",
|
|
@@ -61131,8 +61171,8 @@ var zCustodyAccountLifecycleRequestState1 = _enum2([
|
|
|
61131
61171
|
"expired"
|
|
61132
61172
|
]);
|
|
61133
61173
|
var zCustodyAccountLifecycleAccepted = strictObject({
|
|
61134
|
-
requestId:
|
|
61135
|
-
state:
|
|
61174
|
+
requestId: zCustodyAccountLifecycleRequestId3,
|
|
61175
|
+
state: zCustodyAccountLifecycleRequestState2,
|
|
61136
61176
|
statusUrl: string2()
|
|
61137
61177
|
});
|
|
61138
61178
|
var zUserId = string2().min(1);
|
|
@@ -61189,36 +61229,15 @@ var zCustodyAccountControlProofEncoded = strictObject({
|
|
|
61189
61229
|
]),
|
|
61190
61230
|
artifact: string2().min(1)
|
|
61191
61231
|
});
|
|
61192
|
-
var
|
|
61193
|
-
var zCustodyAccountLifecycleStatusOutputEncoded = strictObject({
|
|
61194
|
-
requestId: zCustodyAccountLifecycleRequestId1,
|
|
61195
|
-
custodyAccountId: zCustodyAccountId,
|
|
61196
|
-
organizationContextId: zCustodyAccountOrganizationContextId,
|
|
61197
|
-
operation: zCustodyAccountLifecycleOperation,
|
|
61198
|
-
state: zCustodyAccountLifecycleRequestState,
|
|
61199
|
-
externalPreparationId: zTransactionPreparationId.nullable(),
|
|
61200
|
-
externalAuthorizingCustodyAccountId: zCustodyAccountId.nullable(),
|
|
61201
|
-
externalMessageDigest: zEthereumHexEncoded.nullable(),
|
|
61202
|
-
terminalResult: _enum2([
|
|
61203
|
-
"succeeded",
|
|
61204
|
-
"failed",
|
|
61205
|
-
"expired"
|
|
61206
|
-
]).nullable(),
|
|
61207
|
-
terminalCode: string2().nullable()
|
|
61208
|
-
});
|
|
61209
|
-
var zCustodyAccountLifecycleStatusOutputResponse = strictObject({
|
|
61232
|
+
var zCustodyAccountLifecycleStatusOutputResponse1 = strictObject({
|
|
61210
61233
|
data: zCustodyAccountLifecycleStatusOutputEncoded,
|
|
61211
61234
|
links: zSingleResourceLinks
|
|
61212
61235
|
});
|
|
61213
61236
|
var zPrepareExistingCustodyAccountControlInput = strictObject({
|
|
61214
61237
|
operation: _enum2(["revoke", "archive"])
|
|
61215
61238
|
});
|
|
61216
|
-
var zCustodyAccountLifecycleStatusOutputResponse1 = strictObject({
|
|
61217
|
-
data: zCustodyAccountLifecycleStatusOutputEncoded,
|
|
61218
|
-
links: zSingleResourceLinks
|
|
61219
|
-
});
|
|
61220
61239
|
var zCustodyAccountApprovalPreparationOutputEncoded = strictObject({
|
|
61221
|
-
requestId:
|
|
61240
|
+
requestId: zCustodyAccountLifecycleRequestId2,
|
|
61222
61241
|
custodyAccountId: zCustodyAccountId,
|
|
61223
61242
|
existingSignerCustodyAccountId: zCustodyAccountId,
|
|
61224
61243
|
proofDigest: zEthereumHexEncoded,
|
|
@@ -78320,7 +78339,10 @@ var zV2ParticipantsCreateHeaders = object({
|
|
|
78320
78339
|
"Idempotency-Key": string2().optional(),
|
|
78321
78340
|
Prefer: string2().optional()
|
|
78322
78341
|
});
|
|
78323
|
-
var zV2ParticipantsCreateResponse =
|
|
78342
|
+
var zV2ParticipantsCreateResponse = union([
|
|
78343
|
+
zCreateParticipantOutputResponse,
|
|
78344
|
+
zCustodyLifecycleAcceptedResult
|
|
78345
|
+
]);
|
|
78324
78346
|
var zV2ParticipantsAssumableListQuery = object({
|
|
78325
78347
|
sort: string2().optional(),
|
|
78326
78348
|
page: strictObject({
|
|
@@ -78396,6 +78418,11 @@ var zV2ParticipantsCustodyAccountsListPath = object({
|
|
|
78396
78418
|
participantId: zParticipantId1
|
|
78397
78419
|
});
|
|
78398
78420
|
var zV2ParticipantsCustodyAccountsListResponse = zParticipantCustodyAccountListResponse;
|
|
78421
|
+
var zV2ParticipantsCustodyAccountRequestReadPath = object({
|
|
78422
|
+
participantId: zParticipantId2,
|
|
78423
|
+
requestId: zCustodyAccountLifecycleRequestId2
|
|
78424
|
+
});
|
|
78425
|
+
var zV2ParticipantsCustodyAccountRequestReadResponse = zCustodyAccountLifecycleStatusOutputResponse;
|
|
78399
78426
|
var zV2ParticipantsHoldingsPath = object({
|
|
78400
78427
|
participantId: string2().min(1)
|
|
78401
78428
|
});
|
|
@@ -78895,10 +78922,13 @@ var zV2ParticipantsMultisigFinalizeFinalizeHeaders = object({
|
|
|
78895
78922
|
var zV2ParticipantsMultisigFinalizeFinalizePath = object({
|
|
78896
78923
|
draftId: string2().min(1)
|
|
78897
78924
|
});
|
|
78898
|
-
var zV2ParticipantsMultisigFinalizeFinalizeResponse =
|
|
78899
|
-
|
|
78900
|
-
|
|
78901
|
-
|
|
78925
|
+
var zV2ParticipantsMultisigFinalizeFinalizeResponse = union([
|
|
78926
|
+
strictObject({
|
|
78927
|
+
participantId: string2(),
|
|
78928
|
+
smartWalletAddress: zEvmAddress202
|
|
78929
|
+
}),
|
|
78930
|
+
zCustodyLifecycleAcceptedResult
|
|
78931
|
+
]);
|
|
78902
78932
|
var zV2ParticipantsMultisigInvitesReadPath = object({
|
|
78903
78933
|
token: string2().min(1)
|
|
78904
78934
|
});
|
|
@@ -80032,7 +80062,10 @@ var zV2UserCreateHeaders = object({
|
|
|
80032
80062
|
"Idempotency-Key": string2().optional(),
|
|
80033
80063
|
Prefer: string2().optional()
|
|
80034
80064
|
});
|
|
80035
|
-
var zV2UserCreateResponse =
|
|
80065
|
+
var zV2UserCreateResponse = union([
|
|
80066
|
+
zCreateUserOutputResponse,
|
|
80067
|
+
zCustodyLifecycleAcceptedResult
|
|
80068
|
+
]);
|
|
80036
80069
|
var zV2UserEventsQuery = object({
|
|
80037
80070
|
sort: string2().optional(),
|
|
80038
80071
|
page: strictObject({
|
|
@@ -80290,7 +80323,7 @@ var zV2UserStartCustodyAccountLifecycleHeaders = object({
|
|
|
80290
80323
|
Prefer: string2().optional()
|
|
80291
80324
|
});
|
|
80292
80325
|
var zV2UserStartCustodyAccountLifecycleResponse = union([
|
|
80293
|
-
|
|
80326
|
+
zCustodyAccountLifecycleStatusOutputResponse1,
|
|
80294
80327
|
zCustodyAccountLifecycleAccepted
|
|
80295
80328
|
]);
|
|
80296
80329
|
var zV2UserPrepareExistingCustodyAccountControlBody = zPrepareExistingCustodyAccountControlInput;
|
|
@@ -80311,13 +80344,13 @@ var zV2UserStartManagedCustodyAccountLifecyclePath = object({
|
|
|
80311
80344
|
custodyAccountId: zCustodyAccountId
|
|
80312
80345
|
});
|
|
80313
80346
|
var zV2UserStartManagedCustodyAccountLifecycleResponse = union([
|
|
80314
|
-
|
|
80347
|
+
zCustodyAccountLifecycleStatusOutputResponse1,
|
|
80315
80348
|
zCustodyAccountLifecycleAccepted
|
|
80316
80349
|
]);
|
|
80317
80350
|
var zV2UserReadCustodyAccountLifecyclePath = object({
|
|
80318
|
-
requestId:
|
|
80351
|
+
requestId: zCustodyAccountLifecycleRequestId2
|
|
80319
80352
|
});
|
|
80320
|
-
var zV2UserReadCustodyAccountLifecycleResponse =
|
|
80353
|
+
var zV2UserReadCustodyAccountLifecycleResponse = zCustodyAccountLifecycleStatusOutputResponse;
|
|
80321
80354
|
var zV2UserPrepareCustodyAccountApprovalBody = strictObject({
|
|
80322
80355
|
existingSignerCustodyAccountId: zCustodyAccountId
|
|
80323
80356
|
});
|
|
@@ -80326,7 +80359,7 @@ var zV2UserPrepareCustodyAccountApprovalHeaders = object({
|
|
|
80326
80359
|
Prefer: string2().optional()
|
|
80327
80360
|
});
|
|
80328
80361
|
var zV2UserPrepareCustodyAccountApprovalPath = object({
|
|
80329
|
-
requestId:
|
|
80362
|
+
requestId: zCustodyAccountLifecycleRequestId2
|
|
80330
80363
|
});
|
|
80331
80364
|
var zV2UserPrepareCustodyAccountApprovalResponse = zCustodyAccountApprovalPreparationOutputResponse;
|
|
80332
80365
|
var zV2UserApproveCustodyAccountLifecycleBody = strictObject({
|
|
@@ -80338,10 +80371,10 @@ var zV2UserApproveCustodyAccountLifecycleHeaders = object({
|
|
|
80338
80371
|
Prefer: string2().optional()
|
|
80339
80372
|
});
|
|
80340
80373
|
var zV2UserApproveCustodyAccountLifecyclePath = object({
|
|
80341
|
-
requestId:
|
|
80374
|
+
requestId: zCustodyAccountLifecycleRequestId2
|
|
80342
80375
|
});
|
|
80343
80376
|
var zV2UserApproveCustodyAccountLifecycleResponse = union([
|
|
80344
|
-
|
|
80377
|
+
zCustodyAccountLifecycleStatusOutputResponse1,
|
|
80345
80378
|
zCustodyAccountLifecycleAccepted
|
|
80346
80379
|
]);
|
|
80347
80380
|
var zV2UserResumeCustodyAccountLifecycleBody = strictObject({
|
|
@@ -80352,10 +80385,10 @@ var zV2UserResumeCustodyAccountLifecycleHeaders = object({
|
|
|
80352
80385
|
Prefer: string2().optional()
|
|
80353
80386
|
});
|
|
80354
80387
|
var zV2UserResumeCustodyAccountLifecyclePath = object({
|
|
80355
|
-
requestId:
|
|
80388
|
+
requestId: zCustodyAccountLifecycleRequestId2
|
|
80356
80389
|
});
|
|
80357
80390
|
var zV2UserResumeCustodyAccountLifecycleResponse = union([
|
|
80358
|
-
|
|
80391
|
+
zCustodyAccountLifecycleStatusOutputResponse1,
|
|
80359
80392
|
zCustodyAccountLifecycleAccepted
|
|
80360
80393
|
]);
|
|
80361
80394
|
var zV2UserAdminGetSecurityPath = object({
|
|
@@ -92436,6 +92469,16 @@ var v2ParticipantsCustodyAccountsList = (options) => (options.client ?? client).
|
|
|
92436
92469
|
url: "/api/v2/participants/{participantId}/custody-accounts",
|
|
92437
92470
|
...options
|
|
92438
92471
|
});
|
|
92472
|
+
var v2ParticipantsCustodyAccountRequestRead = (options) => (options.client ?? client).get({
|
|
92473
|
+
requestValidator: async (data) => await object({
|
|
92474
|
+
body: never().optional(),
|
|
92475
|
+
path: zV2ParticipantsCustodyAccountRequestReadPath,
|
|
92476
|
+
query: never().optional()
|
|
92477
|
+
}).parseAsync(data),
|
|
92478
|
+
responseTransformer: async (data) => await zV2ParticipantsCustodyAccountRequestReadResponse.parseAsync(data),
|
|
92479
|
+
url: "/api/v2/participants/{participantId}/custody-account-requests/{requestId}",
|
|
92480
|
+
...options
|
|
92481
|
+
});
|
|
92439
92482
|
var v2ParticipantsHoldings = (options) => (options.client ?? client).get({
|
|
92440
92483
|
requestValidator: async (data) => await object({
|
|
92441
92484
|
body: never().optional(),
|
|
@@ -99607,8 +99650,10 @@ __export(exports_schemas3, {
|
|
|
99607
99650
|
zCustodyAccountLifecycleRequestId: () => zCustodyAccountLifecycleRequestId,
|
|
99608
99651
|
zCustodyAccountLifecycleRequestId1: () => zCustodyAccountLifecycleRequestId1,
|
|
99609
99652
|
zCustodyAccountLifecycleRequestId2: () => zCustodyAccountLifecycleRequestId2,
|
|
99653
|
+
zCustodyAccountLifecycleRequestId3: () => zCustodyAccountLifecycleRequestId3,
|
|
99610
99654
|
zCustodyAccountLifecycleRequestState: () => zCustodyAccountLifecycleRequestState,
|
|
99611
99655
|
zCustodyAccountLifecycleRequestState1: () => zCustodyAccountLifecycleRequestState1,
|
|
99656
|
+
zCustodyAccountLifecycleRequestState2: () => zCustodyAccountLifecycleRequestState2,
|
|
99612
99657
|
zCustodyAccountLifecycleStatusOutputEncoded: () => zCustodyAccountLifecycleStatusOutputEncoded,
|
|
99613
99658
|
zCustodyAccountLifecycleStatusOutputResponse: () => zCustodyAccountLifecycleStatusOutputResponse,
|
|
99614
99659
|
zCustodyAccountLifecycleStatusOutputResponse1: () => zCustodyAccountLifecycleStatusOutputResponse1,
|
|
@@ -99632,6 +99677,7 @@ __export(exports_schemas3, {
|
|
|
99632
99677
|
zCustodyAsyncAcceptedResult9: () => zCustodyAsyncAcceptedResult9,
|
|
99633
99678
|
zCustodyGasBalance: () => zCustodyGasBalance,
|
|
99634
99679
|
zCustodyGasBalanceResponse: () => zCustodyGasBalanceResponse,
|
|
99680
|
+
zCustodyLifecycleAcceptedResult: () => zCustodyLifecycleAcceptedResult,
|
|
99635
99681
|
zCustodyPendingActionMetadata: () => zCustodyPendingActionMetadata,
|
|
99636
99682
|
zCustodyProviderCapabilities: () => zCustodyProviderCapabilities,
|
|
99637
99683
|
zCustodyProviderCapabilityTemplate: () => zCustodyProviderCapabilityTemplate,
|
|
@@ -102658,6 +102704,8 @@ __export(exports_schemas3, {
|
|
|
102658
102704
|
zV2ParticipantsCreateBody: () => zV2ParticipantsCreateBody,
|
|
102659
102705
|
zV2ParticipantsCreateHeaders: () => zV2ParticipantsCreateHeaders,
|
|
102660
102706
|
zV2ParticipantsCreateResponse: () => zV2ParticipantsCreateResponse,
|
|
102707
|
+
zV2ParticipantsCustodyAccountRequestReadPath: () => zV2ParticipantsCustodyAccountRequestReadPath,
|
|
102708
|
+
zV2ParticipantsCustodyAccountRequestReadResponse: () => zV2ParticipantsCustodyAccountRequestReadResponse,
|
|
102661
102709
|
zV2ParticipantsCustodyAccountsListPath: () => zV2ParticipantsCustodyAccountsListPath,
|
|
102662
102710
|
zV2ParticipantsCustodyAccountsListResponse: () => zV2ParticipantsCustodyAccountsListResponse,
|
|
102663
102711
|
zV2ParticipantsHoldingsPath: () => zV2ParticipantsHoldingsPath,
|
|
@@ -122975,8 +123023,8 @@ var openapi_surface_default = {
|
|
|
122975
123023
|
method: "POST",
|
|
122976
123024
|
url: "/api/v2/settings",
|
|
122977
123025
|
summary: "Create or replace one organization setting",
|
|
122978
|
-
description: "Stores one predefined key for the active organization and returns the stored value as data.value. TARGET_CURRENCIES is a JSON array of ISO 4217 codes and must keep every currency already stored. AA_ENABLED and MULTI_NETWORK_ENABLED are the strings true or false. The write waits until the row is stored and is not queued. Repeating an identical body stores the same value again.",
|
|
122979
|
-
help: "Stores one predefined key for the active organization and returns the stored value as data.value. TARGET_CURRENCIES is a JSON array of ISO 4217 codes and must keep every currency already stored. AA_ENABLED and MULTI_NETWORK_ENABLED are the strings true or false. The write waits until the row is stored and is not queued. Repeating an identical body stores the same value again.",
|
|
123026
|
+
description: "Stores one predefined key for the active organization and returns the stored value as data.value. TARGET_CURRENCIES is a JSON array of ISO 4217 codes and must keep every currency already stored. AA_ENABLED and MULTI_NETWORK_ENABLED are the strings true or false. The write waits until the row is stored and is not queued. Enabling AA_ENABLED also waits until every role, identity, and token-role synchronization write it starts is confirmed and indexed; if that wait elapses the request fails with a retryable error instead of returning true early. Repeating an identical body stores the same value again.",
|
|
123027
|
+
help: "Stores one predefined key for the active organization and returns the stored value as data.value. TARGET_CURRENCIES is a JSON array of ISO 4217 codes and must keep every currency already stored. AA_ENABLED and MULTI_NETWORK_ENABLED are the strings true or false. The write waits until the row is stored and is not queued. Enabling AA_ENABLED also waits until every role, identity, and token-role synchronization write it starts is confirmed and indexed; if that wait elapses the request fails with a retryable error instead of returning true early. Repeating an identical body stores the same value again.",
|
|
122980
123028
|
tags: [
|
|
122981
123029
|
"Platform settings"
|
|
122982
123030
|
],
|
|
@@ -133307,8 +133355,8 @@ var openapi_surface_default = {
|
|
|
133307
133355
|
method: "POST",
|
|
133308
133356
|
url: "/api/v2/participants",
|
|
133309
133357
|
summary: "Create a participant",
|
|
133310
|
-
description: "Creates a participant in the active organization, provisions its wallet, and deploys its on-chain identity contract. `walletType` picks an `eoa` key account or a `single_sig` smart account. Create multisig accounts through the multisig-draft finalize operation. Smart accounts need account abstraction enabled for the organization. The request is wallet-verified, is limited to ten participants per organization per minute, and is safe to repeat with the same `Idempotency-Key`.",
|
|
133311
|
-
help: "Creates a participant in the active organization, provisions its wallet, and deploys its on-chain identity contract. `walletType` picks an `eoa` key account or a `single_sig` smart account. Create multisig accounts through the multisig-draft finalize operation. Smart accounts need account abstraction enabled for the organization. The request is wallet-verified, is limited to ten participants per organization per minute, and is safe to repeat with the same `Idempotency-Key`.",
|
|
133358
|
+
description: "Creates a participant in the active organization, provisions its wallet, and deploys its on-chain identity contract. `walletType` picks an `eoa` key account or a `single_sig` smart account. Create multisig accounts through the multisig-draft finalize operation. Smart accounts need account abstraction enabled for the organization. A 200 means the participant's custody account settled and is usable. When the managed custody account is still settling (for example awaiting account-abstraction reconciliation or an approval), the participant is created but the response is 202 with the lifecycle `requestId`, its `state`, and a `statusUrl` to poll until the state is terminal. The request is wallet-verified, is limited to ten participants per organization per minute, and is safe to repeat with the same `Idempotency-Key`.",
|
|
133359
|
+
help: "Creates a participant in the active organization, provisions its wallet, and deploys its on-chain identity contract. `walletType` picks an `eoa` key account or a `single_sig` smart account. Create multisig accounts through the multisig-draft finalize operation. Smart accounts need account abstraction enabled for the organization. A 200 means the participant's custody account settled and is usable. When the managed custody account is still settling (for example awaiting account-abstraction reconciliation or an approval), the participant is created but the response is 202 with the lifecycle `requestId`, its `state`, and a `statusUrl` to poll until the state is terminal. The request is wallet-verified, is limited to ten participants per organization per minute, and is safe to repeat with the same `Idempotency-Key`.",
|
|
133312
133360
|
tags: [
|
|
133313
133361
|
"Participants"
|
|
133314
133362
|
],
|
|
@@ -133609,6 +133657,48 @@ var openapi_surface_default = {
|
|
|
133609
133657
|
bodyFields: [],
|
|
133610
133658
|
examples: []
|
|
133611
133659
|
},
|
|
133660
|
+
v2ParticipantsCustodyAccountRequestRead: {
|
|
133661
|
+
name: "v2ParticipantsCustodyAccountRequestRead",
|
|
133662
|
+
method: "GET",
|
|
133663
|
+
url: "/api/v2/participants/{participantId}/custody-account-requests/{requestId}",
|
|
133664
|
+
summary: "Read a participant's custody lifecycle request",
|
|
133665
|
+
description: "Returns the durable state of one custody-account lifecycle request for a participant the caller can access. This is the status surface behind the 202 handle participant creation returns: the creator polls it until the request reaches a terminal state. Access follows participant access within the active organization: the request's actor is the account owner (an admin-created user or invitee), so the creator polling the handle is not required to be that actor.",
|
|
133666
|
+
help: "Returns the durable state of one custody-account lifecycle request for a participant the caller can access. This is the status surface behind the 202 handle participant creation returns: the creator polls it until the request reaches a terminal state. Access follows participant access within the active organization: the request's actor is the account owner (an admin-created user or invitee), so the creator polling the handle is not required to be that actor.",
|
|
133667
|
+
tags: [
|
|
133668
|
+
"Participants"
|
|
133669
|
+
],
|
|
133670
|
+
pathParams: [
|
|
133671
|
+
{
|
|
133672
|
+
name: "participantId",
|
|
133673
|
+
in: "path",
|
|
133674
|
+
required: true,
|
|
133675
|
+
description: "Participant identifier",
|
|
133676
|
+
type: "string",
|
|
133677
|
+
enum: null,
|
|
133678
|
+
pattern: null,
|
|
133679
|
+
examples: [],
|
|
133680
|
+
fields: []
|
|
133681
|
+
},
|
|
133682
|
+
{
|
|
133683
|
+
name: "requestId",
|
|
133684
|
+
in: "path",
|
|
133685
|
+
required: true,
|
|
133686
|
+
description: "Durable custody account lifecycle request identifier",
|
|
133687
|
+
type: "string",
|
|
133688
|
+
enum: null,
|
|
133689
|
+
pattern: null,
|
|
133690
|
+
examples: [],
|
|
133691
|
+
fields: []
|
|
133692
|
+
}
|
|
133693
|
+
],
|
|
133694
|
+
queryParams: [],
|
|
133695
|
+
headerParams: [],
|
|
133696
|
+
requestBodyDescription: null,
|
|
133697
|
+
hasRequestBody: false,
|
|
133698
|
+
bodyIsComplex: false,
|
|
133699
|
+
bodyFields: [],
|
|
133700
|
+
examples: []
|
|
133701
|
+
},
|
|
133612
133702
|
v2ParticipantsHoldings: {
|
|
133613
133703
|
name: "v2ParticipantsHoldings",
|
|
133614
133704
|
method: "GET",
|
|
@@ -135559,8 +135649,8 @@ var openapi_surface_default = {
|
|
|
135559
135649
|
method: "POST",
|
|
135560
135650
|
url: "/api/v2/participants/multisig-drafts/{draftId}/finalize",
|
|
135561
135651
|
summary: "Finalize a multisig draft",
|
|
135562
|
-
description: "Locks the draft and provisions the smart account from its signer set. The request is wallet-verified, submits a blockchain transaction, and is safe to repeat with the same idempotency key. A draft that is no longer open cannot be finalized. Send `walletVerification` when the signing wallet is protected by a code.",
|
|
135563
|
-
help: "Locks the draft and provisions the smart account from its signer set. The request is wallet-verified, submits a blockchain transaction, and is safe to repeat with the same idempotency key. A draft that is no longer open cannot be finalized. Send `walletVerification` when the signing wallet is protected by a code.",
|
|
135652
|
+
description: "Locks the draft and provisions the smart account from its signer set. A 200 means the validator swap is indexed and the controlling account's custody lifecycle settled. When that custody lifecycle is still settling, the multisig is provisioned but the response is 202 with the lifecycle `requestId`, its `state`, and a `statusUrl` to poll until the state is terminal. The request is wallet-verified, submits a blockchain transaction, and is safe to repeat with the same idempotency key. A draft that is no longer open cannot be finalized. Send `walletVerification` when the signing wallet is protected by a code.",
|
|
135653
|
+
help: "Locks the draft and provisions the smart account from its signer set. A 200 means the validator swap is indexed and the controlling account's custody lifecycle settled. When that custody lifecycle is still settling, the multisig is provisioned but the response is 202 with the lifecycle `requestId`, its `state`, and a `statusUrl` to poll until the state is terminal. The request is wallet-verified, submits a blockchain transaction, and is safe to repeat with the same idempotency key. A draft that is no longer open cannot be finalized. Send `walletVerification` when the signing wallet is protected by a code.",
|
|
135564
135654
|
tags: [
|
|
135565
135655
|
"Participants"
|
|
135566
135656
|
],
|
|
@@ -135610,7 +135700,7 @@ var openapi_surface_default = {
|
|
|
135610
135700
|
bodyFields: [],
|
|
135611
135701
|
examples: [
|
|
135612
135702
|
{
|
|
135613
|
-
description: "Locks the draft and provisions the smart account from its signer set. The request is wallet-verified, submits a blockchain transaction, and is safe to repeat with the same idempotency key. A draft that is no longer open cannot be finalized. Send `walletVerification` when the signing wallet is protected by a code.",
|
|
135703
|
+
description: "Locks the draft and provisions the smart account from its signer set. A 200 means the validator swap is indexed and the controlling account's custody lifecycle settled. When that custody lifecycle is still settling, the multisig is provisioned but the response is 202 with the lifecycle `requestId`, its `state`, and a `statusUrl` to poll until the state is terminal. The request is wallet-verified, submits a blockchain transaction, and is safe to repeat with the same idempotency key. A draft that is no longer open cannot be finalized. Send `walletVerification` when the signing wallet is protected by a code.",
|
|
135614
135704
|
path: {
|
|
135615
135705
|
draftId: "0194b2c8-7a11-7e30-9d45-2f8c1a06b394"
|
|
135616
135706
|
}
|
|
@@ -139475,8 +139565,8 @@ var openapi_surface_default = {
|
|
|
139475
139565
|
method: "POST",
|
|
139476
139566
|
url: "/api/v2/users",
|
|
139477
139567
|
summary: "Create a user",
|
|
139478
|
-
description: "Creates a user in the active organization, provisions a managed custody account with the selected provider configuration, and deploys an identity contract. Identity registration is a separate step. `email` must be unique in the organization. Send `walletVerification` when the calling wallet is protected by a code. An email another member already holds returns 409.",
|
|
139479
|
-
help: "Creates a user in the active organization, provisions a managed custody account with the selected provider configuration, and deploys an identity contract. Identity registration is a separate step. `email` must be unique in the organization. Send `walletVerification` when the calling wallet is protected by a code. An email another member already holds returns 409.",
|
|
139568
|
+
description: "Creates a user in the active organization, provisions a managed custody account with the selected provider configuration, and deploys an identity contract. Identity registration is a separate step. A 200 means the custody account settled and is usable. When the managed custody account is still settling (for example awaiting account-abstraction reconciliation or an approval), the user is created but the response is 202 with the lifecycle `requestId`, its `state`, and a `statusUrl` to poll until the state is terminal. `email` must be unique in the organization. Send `walletVerification` when the calling wallet is protected by a code. An email another member already holds returns 409.",
|
|
139569
|
+
help: "Creates a user in the active organization, provisions a managed custody account with the selected provider configuration, and deploys an identity contract. Identity registration is a separate step. A 200 means the custody account settled and is usable. When the managed custody account is still settling (for example awaiting account-abstraction reconciliation or an approval), the user is created but the response is 202 with the lifecycle `requestId`, its `state`, and a `statusUrl` to poll until the state is terminal. `email` must be unique in the organization. Send `walletVerification` when the calling wallet is protected by a code. An email another member already holds returns 409.",
|
|
139480
139570
|
tags: [
|
|
139481
139571
|
"Users"
|
|
139482
139572
|
],
|
|
@@ -168912,7 +169002,7 @@ async function runCommand(context, operation, errorContext = UNKNOWN_COMMAND_ERR
|
|
|
168912
169002
|
// package.json
|
|
168913
169003
|
var package_default2 = {
|
|
168914
169004
|
name: "@settlemint/dalp-cli",
|
|
168915
|
-
version: "3.1.7-main.
|
|
169005
|
+
version: "3.1.7-main.32982162779",
|
|
168916
169006
|
private: false,
|
|
168917
169007
|
description: "CLI for the Digital Asset Lifecycle Platform \u2014 manage tokens, identities, compliance, and more from the command line.",
|
|
168918
169008
|
homepage: "https://settlemint.com",
|
|
@@ -170643,4 +170733,4 @@ if (false) {}
|
|
|
170643
170733
|
// src/bin.ts
|
|
170644
170734
|
await cli.serve();
|
|
170645
170735
|
|
|
170646
|
-
//# debugId=
|
|
170736
|
+
//# debugId=8E315531892EDD8A64756E2164756E21
|