@settlemint/dalp-cli 3.1.4-main.32574563517 → 3.1.4-main.32577438836
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 +1808 -217
- package/dist/dalp.js.map +4 -4
- package/package.json +1 -1
package/dist/dalp.js
CHANGED
|
@@ -46079,7 +46079,7 @@ var API_ERROR_CATEGORIES = new Set([
|
|
|
46079
46079
|
// ../sdk/package.json
|
|
46080
46080
|
var package_default = {
|
|
46081
46081
|
name: "@settlemint/dalp-sdk",
|
|
46082
|
-
version: "3.1.4-main.
|
|
46082
|
+
version: "3.1.4-main.32577438836",
|
|
46083
46083
|
private: false,
|
|
46084
46084
|
description: "Fully typed SDK for the DALP tokenization platform API",
|
|
46085
46085
|
homepage: "https://settlemint.com",
|
|
@@ -46600,6 +46600,21 @@ __export(exports_operations, {
|
|
|
46600
46600
|
v2PlatformStatusWorkflows: () => v2PlatformStatusWorkflows,
|
|
46601
46601
|
v2PlatformStatusWorkflowsList: () => v2PlatformStatusWorkflowsList,
|
|
46602
46602
|
v2PortfolioReturnsRead: () => v2PortfolioReturnsRead,
|
|
46603
|
+
v2ReportingCapabilities: () => v2ReportingCapabilities,
|
|
46604
|
+
v2ReportingObligationsCreate: () => v2ReportingObligationsCreate,
|
|
46605
|
+
v2ReportingObligationsDisable: () => v2ReportingObligationsDisable,
|
|
46606
|
+
v2ReportingObligationsList: () => v2ReportingObligationsList,
|
|
46607
|
+
v2ReportingObligationsPublish: () => v2ReportingObligationsPublish,
|
|
46608
|
+
v2ReportingObligationsRead: () => v2ReportingObligationsRead,
|
|
46609
|
+
v2ReportingObligationsReadVersion: () => v2ReportingObligationsReadVersion,
|
|
46610
|
+
v2ReportingObligationsUpdate: () => v2ReportingObligationsUpdate,
|
|
46611
|
+
v2ReportingSubmissionsAcknowledge: () => v2ReportingSubmissionsAcknowledge,
|
|
46612
|
+
v2ReportingSubmissionsApprove: () => v2ReportingSubmissionsApprove,
|
|
46613
|
+
v2ReportingSubmissionsSubmitForReview: () => v2ReportingSubmissionsSubmitForReview,
|
|
46614
|
+
v2ReportingTrailEntry: () => v2ReportingTrailEntry,
|
|
46615
|
+
v2ReportingTrailForResource: () => v2ReportingTrailForResource,
|
|
46616
|
+
v2ReportingTrailList: () => v2ReportingTrailList,
|
|
46617
|
+
v2ReportingTrailOperatorList: () => v2ReportingTrailOperatorList,
|
|
46603
46618
|
v2RpcForward: () => v2RpcForward,
|
|
46604
46619
|
v2SearchGlobal: () => v2SearchGlobal,
|
|
46605
46620
|
v2SettingsAssetClassDefinitionsCreate: () => v2SettingsAssetClassDefinitionsCreate,
|
|
@@ -66236,6 +66251,383 @@ var zFixedYieldScheduleClaimOutputMutationResponse = strictObject({
|
|
|
66236
66251
|
meta: zBlockchainMutationMeta,
|
|
66237
66252
|
links: zSingleResourceLinks
|
|
66238
66253
|
});
|
|
66254
|
+
var zReportingReportKind = _enum2([
|
|
66255
|
+
"holder-register",
|
|
66256
|
+
"transfer-journal",
|
|
66257
|
+
"settlement-and-fails",
|
|
66258
|
+
"corporate-actions",
|
|
66259
|
+
"reserve-and-asset-backing",
|
|
66260
|
+
"fees-and-charges",
|
|
66261
|
+
"compliance-decision-log",
|
|
66262
|
+
"investor-eligibility-register",
|
|
66263
|
+
"operator-action-trail"
|
|
66264
|
+
]);
|
|
66265
|
+
var zReportingCapabilities = strictObject({
|
|
66266
|
+
reportKinds: array(zReportingReportKind)
|
|
66267
|
+
});
|
|
66268
|
+
var zReportingCapabilitiesResponse = strictObject({
|
|
66269
|
+
data: zReportingCapabilities,
|
|
66270
|
+
links: zSingleResourceLinks
|
|
66271
|
+
});
|
|
66272
|
+
var zReportingObligationId = string2().min(1);
|
|
66273
|
+
var zReportingObligation = strictObject({
|
|
66274
|
+
id: zReportingObligationId,
|
|
66275
|
+
organizationId: string2().nullable(),
|
|
66276
|
+
isSystem: boolean2(),
|
|
66277
|
+
name: string2(),
|
|
66278
|
+
description: string2().nullable(),
|
|
66279
|
+
regime: string2(),
|
|
66280
|
+
reportingEntityLei: string2().nullable(),
|
|
66281
|
+
publishedVersion: int().nullable(),
|
|
66282
|
+
disabledAt: zTimestampEncoded.nullable(),
|
|
66283
|
+
editable: boolean2()
|
|
66284
|
+
});
|
|
66285
|
+
var zReportingObligationResponse = strictObject({
|
|
66286
|
+
data: zReportingObligation,
|
|
66287
|
+
links: zSingleResourceLinks
|
|
66288
|
+
});
|
|
66289
|
+
var zReportingDescription = string2();
|
|
66290
|
+
var zReportingEntityLeiEncoded = string2();
|
|
66291
|
+
var zReportingScopeSelf = strictObject({
|
|
66292
|
+
kind: _enum2(["self"])
|
|
66293
|
+
});
|
|
66294
|
+
var zReportingScopeOrganizations = strictObject({
|
|
66295
|
+
kind: _enum2(["organizations"]),
|
|
66296
|
+
organizationIds: array(string2().min(1)).min(1)
|
|
66297
|
+
});
|
|
66298
|
+
var zReportingScopeJurisdictions = strictObject({
|
|
66299
|
+
kind: _enum2(["jurisdictions"]),
|
|
66300
|
+
jurisdictions: array(string2().min(1)).min(1)
|
|
66301
|
+
});
|
|
66302
|
+
var zReportingObligationScopeExpression = union([
|
|
66303
|
+
zReportingScopeSelf,
|
|
66304
|
+
zReportingScopeOrganizations,
|
|
66305
|
+
zReportingScopeJurisdictions
|
|
66306
|
+
]);
|
|
66307
|
+
var zReportingDataPointType = _enum2([
|
|
66308
|
+
"string",
|
|
66309
|
+
"integer",
|
|
66310
|
+
"decimal",
|
|
66311
|
+
"money",
|
|
66312
|
+
"date",
|
|
66313
|
+
"boolean"
|
|
66314
|
+
]);
|
|
66315
|
+
var zReportingOptionalText = string2().min(1);
|
|
66316
|
+
var zReportingDenomination = zReportingOptionalText.nullable();
|
|
66317
|
+
var zReportingDataPointDimensions = array(string2().min(1));
|
|
66318
|
+
var zReportingDataPointDimensionsEncoded = zReportingDataPointDimensions.nullable();
|
|
66319
|
+
var zReportingDataPoint = strictObject({
|
|
66320
|
+
identifier: string2().min(1),
|
|
66321
|
+
label: string2().min(1),
|
|
66322
|
+
type: zReportingDataPointType,
|
|
66323
|
+
denomination: zReportingDenomination.optional(),
|
|
66324
|
+
dimensions: zReportingDataPointDimensionsEncoded.optional()
|
|
66325
|
+
});
|
|
66326
|
+
var zReportingDataPointSet = array(zReportingDataPoint);
|
|
66327
|
+
var zReportingAggregate = _enum2([
|
|
66328
|
+
"none",
|
|
66329
|
+
"sum",
|
|
66330
|
+
"count",
|
|
66331
|
+
"min",
|
|
66332
|
+
"max",
|
|
66333
|
+
"last"
|
|
66334
|
+
]);
|
|
66335
|
+
var zReportingDerivationRule = strictObject({
|
|
66336
|
+
dataPoint: string2().min(1),
|
|
66337
|
+
source: _enum2([
|
|
66338
|
+
"holder-register",
|
|
66339
|
+
"transfer-journal",
|
|
66340
|
+
"settlement-and-fails",
|
|
66341
|
+
"corporate-actions",
|
|
66342
|
+
"reserve-and-asset-backing",
|
|
66343
|
+
"fees-and-charges",
|
|
66344
|
+
"compliance-decision-log",
|
|
66345
|
+
"investor-eligibility-register",
|
|
66346
|
+
"operator-action-trail"
|
|
66347
|
+
]),
|
|
66348
|
+
field: string2().min(1),
|
|
66349
|
+
aggregate: zReportingAggregate.nullish()
|
|
66350
|
+
});
|
|
66351
|
+
var zReportingDerivationRules = array(zReportingDerivationRule);
|
|
66352
|
+
var zReportingEffectiveTo = string2();
|
|
66353
|
+
var zReportingValidationRule = strictObject({
|
|
66354
|
+
identity: string2().min(1),
|
|
66355
|
+
version: int().gte(1),
|
|
66356
|
+
severity: _enum2([
|
|
66357
|
+
"blocking",
|
|
66358
|
+
"warning",
|
|
66359
|
+
"informational"
|
|
66360
|
+
]),
|
|
66361
|
+
expression: string2().min(1),
|
|
66362
|
+
message: string2().min(1),
|
|
66363
|
+
effectiveFrom: string2(),
|
|
66364
|
+
effectiveTo: zReportingEffectiveTo.nullish()
|
|
66365
|
+
});
|
|
66366
|
+
var zReportingValidationRules = array(zReportingValidationRule);
|
|
66367
|
+
var zReportingObligationReportKind = _enum2([
|
|
66368
|
+
"holder-register",
|
|
66369
|
+
"transfer-journal",
|
|
66370
|
+
"settlement-and-fails",
|
|
66371
|
+
"corporate-actions",
|
|
66372
|
+
"reserve-and-asset-backing",
|
|
66373
|
+
"fees-and-charges",
|
|
66374
|
+
"compliance-decision-log",
|
|
66375
|
+
"investor-eligibility-register",
|
|
66376
|
+
"operator-action-trail"
|
|
66377
|
+
]);
|
|
66378
|
+
var zReportingCadence = _enum2([
|
|
66379
|
+
"daily",
|
|
66380
|
+
"weekly",
|
|
66381
|
+
"monthly",
|
|
66382
|
+
"quarterly",
|
|
66383
|
+
"semiannual",
|
|
66384
|
+
"annual",
|
|
66385
|
+
"eventDriven"
|
|
66386
|
+
]);
|
|
66387
|
+
var zReportingDeadlineRule = strictObject({
|
|
66388
|
+
anchor: _enum2([
|
|
66389
|
+
"periodStart",
|
|
66390
|
+
"periodEnd",
|
|
66391
|
+
"referenceDate",
|
|
66392
|
+
"remittanceDate",
|
|
66393
|
+
"classifiedAt"
|
|
66394
|
+
]),
|
|
66395
|
+
offset: int(),
|
|
66396
|
+
unit: _enum2([
|
|
66397
|
+
"businessDays",
|
|
66398
|
+
"calendarDays",
|
|
66399
|
+
"months",
|
|
66400
|
+
"hours"
|
|
66401
|
+
]),
|
|
66402
|
+
calendars: tuple([string2().min(1), string2().min(1)]),
|
|
66403
|
+
roll: _enum2([
|
|
66404
|
+
"following",
|
|
66405
|
+
"modifiedFollowing",
|
|
66406
|
+
"preceding"
|
|
66407
|
+
]),
|
|
66408
|
+
cutoffLocalTime: string2().min(1),
|
|
66409
|
+
timeZone: string2().min(1)
|
|
66410
|
+
});
|
|
66411
|
+
var zReportingOutputFormat = _enum2([
|
|
66412
|
+
"csv",
|
|
66413
|
+
"xlsx",
|
|
66414
|
+
"zip",
|
|
66415
|
+
"json",
|
|
66416
|
+
"xml"
|
|
66417
|
+
]);
|
|
66418
|
+
var zReportingAckSlaHours = int().gt(0);
|
|
66419
|
+
var zReportingRetentionClass = _enum2([
|
|
66420
|
+
"five-years",
|
|
66421
|
+
"seven-years",
|
|
66422
|
+
"ten-years",
|
|
66423
|
+
"indefinite"
|
|
66424
|
+
]);
|
|
66425
|
+
var zReportingOptionalText1 = string2().min(1);
|
|
66426
|
+
var zReportingDeadlineAuthoredBy = zReportingOptionalText1.nullable();
|
|
66427
|
+
var zReportingDeadlineCitation = zReportingOptionalText1.nullable();
|
|
66428
|
+
var zReportingObligationConfig = strictObject({
|
|
66429
|
+
scopeExpression: zReportingObligationScopeExpression,
|
|
66430
|
+
dataPointSet: zReportingDataPointSet,
|
|
66431
|
+
derivationRules: zReportingDerivationRules,
|
|
66432
|
+
validationRules: zReportingValidationRules,
|
|
66433
|
+
reportSet: array(zReportingObligationReportKind).min(1),
|
|
66434
|
+
cadence: zReportingCadence,
|
|
66435
|
+
deadlineRule: zReportingDeadlineRule,
|
|
66436
|
+
filerCalendar: string2().min(1),
|
|
66437
|
+
authorityCalendar: string2().min(1),
|
|
66438
|
+
outputFormat: zReportingOutputFormat,
|
|
66439
|
+
ackSlaHours: zReportingAckSlaHours.nullish(),
|
|
66440
|
+
requiresMakerChecker: boolean2(),
|
|
66441
|
+
operatorApprovalAllowed: boolean2(),
|
|
66442
|
+
acceptsNilReturn: boolean2(),
|
|
66443
|
+
retentionClass: zReportingRetentionClass,
|
|
66444
|
+
reachBackMonths: int().gte(0),
|
|
66445
|
+
deadlineAuthoredBy: zReportingDeadlineAuthoredBy.optional(),
|
|
66446
|
+
deadlineCitation: zReportingDeadlineCitation.optional()
|
|
66447
|
+
});
|
|
66448
|
+
var zReportingObligationCreateInput = strictObject({
|
|
66449
|
+
obligationId: string2().min(1).max(128),
|
|
66450
|
+
name: string2().min(1).max(200),
|
|
66451
|
+
description: zReportingDescription.nullish(),
|
|
66452
|
+
regime: string2().min(1).max(64),
|
|
66453
|
+
reportingEntityLei: zReportingEntityLeiEncoded.nullish(),
|
|
66454
|
+
config: zReportingObligationConfig
|
|
66455
|
+
});
|
|
66456
|
+
var zReportingObligationResponse1 = strictObject({
|
|
66457
|
+
data: zReportingObligation,
|
|
66458
|
+
links: zSingleResourceLinks
|
|
66459
|
+
});
|
|
66460
|
+
var zReportingObligationDraftInput = strictObject({
|
|
66461
|
+
name: string2().min(1).max(200),
|
|
66462
|
+
description: zReportingDescription.nullish(),
|
|
66463
|
+
regime: string2().min(1).max(64),
|
|
66464
|
+
reportingEntityLei: zReportingEntityLeiEncoded.nullish(),
|
|
66465
|
+
config: zReportingObligationConfig
|
|
66466
|
+
});
|
|
66467
|
+
var zReportingObligationResponse2 = strictObject({
|
|
66468
|
+
data: zReportingObligation,
|
|
66469
|
+
links: zSingleResourceLinks
|
|
66470
|
+
});
|
|
66471
|
+
var zReportingScopeOrganizations1 = strictObject({
|
|
66472
|
+
kind: _enum2(["organizations"]),
|
|
66473
|
+
organizationIds: array(string2().min(1)).min(1)
|
|
66474
|
+
});
|
|
66475
|
+
var zReportingScopeJurisdictions1 = strictObject({
|
|
66476
|
+
kind: _enum2(["jurisdictions"]),
|
|
66477
|
+
jurisdictions: array(string2().min(1)).min(1)
|
|
66478
|
+
});
|
|
66479
|
+
var zReportingObligationScopeExpression1 = union([
|
|
66480
|
+
zReportingScopeSelf,
|
|
66481
|
+
zReportingScopeOrganizations1,
|
|
66482
|
+
zReportingScopeJurisdictions1
|
|
66483
|
+
]);
|
|
66484
|
+
var zReportingDataPoint1 = strictObject({
|
|
66485
|
+
identifier: string2().min(1),
|
|
66486
|
+
label: string2().min(1),
|
|
66487
|
+
type: zReportingDataPointType,
|
|
66488
|
+
denomination: zReportingDenomination.optional(),
|
|
66489
|
+
dimensions: zReportingDataPointDimensionsEncoded.optional()
|
|
66490
|
+
});
|
|
66491
|
+
var zReportingDataPointSet1 = array(zReportingDataPoint1);
|
|
66492
|
+
var zReportingObligationConfig1 = strictObject({
|
|
66493
|
+
scopeExpression: zReportingObligationScopeExpression1,
|
|
66494
|
+
dataPointSet: zReportingDataPointSet1,
|
|
66495
|
+
derivationRules: zReportingDerivationRules,
|
|
66496
|
+
validationRules: zReportingValidationRules,
|
|
66497
|
+
reportSet: array(zReportingObligationReportKind).min(1),
|
|
66498
|
+
cadence: zReportingCadence,
|
|
66499
|
+
deadlineRule: zReportingDeadlineRule,
|
|
66500
|
+
filerCalendar: string2().min(1),
|
|
66501
|
+
authorityCalendar: string2().min(1),
|
|
66502
|
+
outputFormat: zReportingOutputFormat,
|
|
66503
|
+
ackSlaHours: zReportingAckSlaHours.nullish(),
|
|
66504
|
+
requiresMakerChecker: boolean2(),
|
|
66505
|
+
operatorApprovalAllowed: boolean2(),
|
|
66506
|
+
acceptsNilReturn: boolean2(),
|
|
66507
|
+
retentionClass: zReportingRetentionClass,
|
|
66508
|
+
reachBackMonths: int().gte(0),
|
|
66509
|
+
deadlineAuthoredBy: zReportingDeadlineAuthoredBy.optional(),
|
|
66510
|
+
deadlineCitation: zReportingDeadlineCitation.optional()
|
|
66511
|
+
});
|
|
66512
|
+
var zReportingObligationVersion = strictObject({
|
|
66513
|
+
obligationId: zReportingObligationId,
|
|
66514
|
+
version: int(),
|
|
66515
|
+
publishedAt: zTimestampEncoded,
|
|
66516
|
+
publishedBy: string2().nullable(),
|
|
66517
|
+
config: zReportingObligationConfig1
|
|
66518
|
+
});
|
|
66519
|
+
var zReportingObligationVersionResponse = strictObject({
|
|
66520
|
+
data: zReportingObligationVersion,
|
|
66521
|
+
links: zSingleResourceLinks
|
|
66522
|
+
});
|
|
66523
|
+
var zReportingObligationVersionResponse1 = strictObject({
|
|
66524
|
+
data: zReportingObligationVersion,
|
|
66525
|
+
links: zSingleResourceLinks
|
|
66526
|
+
});
|
|
66527
|
+
var zReportingObligationResponse3 = strictObject({
|
|
66528
|
+
data: zReportingObligation,
|
|
66529
|
+
links: zSingleResourceLinks
|
|
66530
|
+
});
|
|
66531
|
+
var zReportingSubmission = strictObject({
|
|
66532
|
+
id: string2().min(1),
|
|
66533
|
+
filingPeriodId: string2().min(1),
|
|
66534
|
+
organizationId: string2().nullable(),
|
|
66535
|
+
attemptSequence: int(),
|
|
66536
|
+
state: _enum2([
|
|
66537
|
+
"queued",
|
|
66538
|
+
"generating",
|
|
66539
|
+
"generation_failed",
|
|
66540
|
+
"discarded",
|
|
66541
|
+
"generated",
|
|
66542
|
+
"validating",
|
|
66543
|
+
"blocked",
|
|
66544
|
+
"ready_for_review",
|
|
66545
|
+
"pending_approval",
|
|
66546
|
+
"approved",
|
|
66547
|
+
"submitted",
|
|
66548
|
+
"acknowledged",
|
|
66549
|
+
"unacknowledged",
|
|
66550
|
+
"rejected",
|
|
66551
|
+
"superseded"
|
|
66552
|
+
]),
|
|
66553
|
+
actionType: _enum2([
|
|
66554
|
+
"new",
|
|
66555
|
+
"modify",
|
|
66556
|
+
"correct",
|
|
66557
|
+
"terminate",
|
|
66558
|
+
"error",
|
|
66559
|
+
"revive"
|
|
66560
|
+
]),
|
|
66561
|
+
correctsSubmissionId: string2().nullable(),
|
|
66562
|
+
artifactDigest: string2().nullable(),
|
|
66563
|
+
rowVersion: int(),
|
|
66564
|
+
makerUserId: string2().nullable(),
|
|
66565
|
+
checkerUserId: string2().nullable(),
|
|
66566
|
+
approvedAt: zTimestampEncoded.nullable(),
|
|
66567
|
+
submittedAt: zTimestampEncoded.nullable(),
|
|
66568
|
+
ackReceiptReference: string2().nullable(),
|
|
66569
|
+
ackAuthorityTimestamp: zTimestampEncoded.nullable()
|
|
66570
|
+
});
|
|
66571
|
+
var zReportingSubmissionResponse = strictObject({
|
|
66572
|
+
data: zReportingSubmission,
|
|
66573
|
+
links: zSingleResourceLinks
|
|
66574
|
+
});
|
|
66575
|
+
var zReportingSubmissionApproveInput = strictObject({
|
|
66576
|
+
approvedDigest: string2().min(1),
|
|
66577
|
+
expectedRowVersion: int()
|
|
66578
|
+
});
|
|
66579
|
+
var zReportingSubmissionResponse1 = strictObject({
|
|
66580
|
+
data: zReportingSubmission,
|
|
66581
|
+
links: zSingleResourceLinks
|
|
66582
|
+
});
|
|
66583
|
+
var zReportingSubmissionAcknowledgeInput = strictObject({
|
|
66584
|
+
receiptReference: string2().min(1),
|
|
66585
|
+
authorityTimestamp: zTimestampEncoded,
|
|
66586
|
+
rawPayloadRef: string2().min(1).nullish()
|
|
66587
|
+
});
|
|
66588
|
+
var zReportingSubmissionResponse2 = strictObject({
|
|
66589
|
+
data: zReportingSubmission,
|
|
66590
|
+
links: zSingleResourceLinks
|
|
66591
|
+
});
|
|
66592
|
+
var zReportingTrailTarget = string2().min(1);
|
|
66593
|
+
var zReportingTrailEntry = strictObject({
|
|
66594
|
+
id: string2().min(1),
|
|
66595
|
+
requestId: string2().nullable(),
|
|
66596
|
+
kind: _enum2(["mutation", "sensitive-read"]),
|
|
66597
|
+
actorUserId: string2(),
|
|
66598
|
+
roleAtTime: string2(),
|
|
66599
|
+
organizationId: string2().nullable(),
|
|
66600
|
+
participantId: string2().nullable(),
|
|
66601
|
+
authSource: string2().nullable(),
|
|
66602
|
+
route: string2(),
|
|
66603
|
+
method: string2(),
|
|
66604
|
+
pathTemplate: string2(),
|
|
66605
|
+
target: string2().nullable(),
|
|
66606
|
+
startedAt: zTimestampEncoded,
|
|
66607
|
+
finishedAt: zTimestampEncoded.nullable(),
|
|
66608
|
+
outcome: _enum2([
|
|
66609
|
+
"pending",
|
|
66610
|
+
"success",
|
|
66611
|
+
"failure"
|
|
66612
|
+
]),
|
|
66613
|
+
status: int().nullable()
|
|
66614
|
+
});
|
|
66615
|
+
var zReportingTrailEntryList = array(zReportingTrailEntry);
|
|
66616
|
+
var zReportingTrailMeta = strictObject({
|
|
66617
|
+
total: int()
|
|
66618
|
+
});
|
|
66619
|
+
var zReportingTrailLinks = strictObject({
|
|
66620
|
+
self: string2()
|
|
66621
|
+
});
|
|
66622
|
+
var zReportingTrailListResponse = strictObject({
|
|
66623
|
+
data: zReportingTrailEntryList,
|
|
66624
|
+
meta: zReportingTrailMeta,
|
|
66625
|
+
links: zReportingTrailLinks
|
|
66626
|
+
});
|
|
66627
|
+
var zReportingTrailEntryResponse = strictObject({
|
|
66628
|
+
data: zReportingTrailEntry,
|
|
66629
|
+
links: zSingleResourceLinks
|
|
66630
|
+
});
|
|
66239
66631
|
var zUser = object({
|
|
66240
66632
|
id: string2().readonly(),
|
|
66241
66633
|
name: string2(),
|
|
@@ -66847,6 +67239,10 @@ var zTokenRoleMutationAccountsWritable = array(zEvmAddress355);
|
|
|
66847
67239
|
var zTokenParticipantRoleMutationAccountsWritable = array(zEvmAddress355);
|
|
66848
67240
|
var zTokenParticipantRolesWritable = array(zAssetAccessControlRole1);
|
|
66849
67241
|
var zTokenFeatureAttachedAtWritable = zTimestampEncoded.nullable();
|
|
67242
|
+
var zReportingDenominationWritable = zReportingOptionalText.nullable();
|
|
67243
|
+
var zReportingDataPointDimensionsEncodedWritable = zReportingDataPointDimensions.nullable();
|
|
67244
|
+
var zReportingDeadlineAuthoredByWritable = zReportingOptionalText1.nullable();
|
|
67245
|
+
var zReportingDeadlineCitationWritable = zReportingOptionalText1.nullable();
|
|
66850
67246
|
var zUserWritable = object({
|
|
66851
67247
|
name: string2(),
|
|
66852
67248
|
email: string2(),
|
|
@@ -84024,242 +84420,376 @@ var zV2AddonsFixedYieldClaimResponse = union([
|
|
|
84024
84420
|
zFixedYieldScheduleClaimOutputMutationResponse,
|
|
84025
84421
|
zAsyncAcceptedResult
|
|
84026
84422
|
]);
|
|
84027
|
-
var
|
|
84028
|
-
|
|
84029
|
-
|
|
84030
|
-
|
|
84031
|
-
|
|
84032
|
-
|
|
84033
|
-
|
|
84034
|
-
|
|
84035
|
-
"cognito",
|
|
84036
|
-
"discord",
|
|
84037
|
-
"facebook",
|
|
84038
|
-
"figma",
|
|
84039
|
-
"github",
|
|
84040
|
-
"microsoft",
|
|
84041
|
-
"google",
|
|
84042
|
-
"huggingface",
|
|
84043
|
-
"slack",
|
|
84044
|
-
"spotify",
|
|
84045
|
-
"twitch",
|
|
84046
|
-
"twitter",
|
|
84047
|
-
"dropbox",
|
|
84048
|
-
"kick",
|
|
84049
|
-
"linear",
|
|
84050
|
-
"linkedin",
|
|
84051
|
-
"gitlab",
|
|
84052
|
-
"tiktok",
|
|
84053
|
-
"reddit",
|
|
84054
|
-
"roblox",
|
|
84055
|
-
"salesforce",
|
|
84056
|
-
"vk",
|
|
84057
|
-
"zoom",
|
|
84058
|
-
"notion",
|
|
84059
|
-
"kakao",
|
|
84060
|
-
"naver",
|
|
84061
|
-
"line",
|
|
84062
|
-
"paybin",
|
|
84063
|
-
"paypal",
|
|
84064
|
-
"polar",
|
|
84065
|
-
"railway",
|
|
84066
|
-
"vercel",
|
|
84067
|
-
"wechat"
|
|
84068
|
-
]),
|
|
84069
|
-
string2()
|
|
84070
|
-
]),
|
|
84071
|
-
disableRedirect: boolean2().optional(),
|
|
84072
|
-
idToken: object({
|
|
84073
|
-
token: string2(),
|
|
84074
|
-
nonce: string2().optional(),
|
|
84075
|
-
accessToken: string2().optional(),
|
|
84076
|
-
refreshToken: string2().optional(),
|
|
84077
|
-
expiresAt: number2().optional(),
|
|
84078
|
-
user: object({
|
|
84079
|
-
name: object({
|
|
84080
|
-
firstName: string2().optional(),
|
|
84081
|
-
lastName: string2().optional()
|
|
84082
|
-
}).optional(),
|
|
84083
|
-
email: string2().optional()
|
|
84084
|
-
}).optional()
|
|
84085
|
-
}).optional(),
|
|
84086
|
-
scopes: array(string2()).optional(),
|
|
84087
|
-
requestSignUp: boolean2().optional(),
|
|
84088
|
-
loginHint: string2().optional(),
|
|
84089
|
-
additionalData: record(string2(), unknown()).optional()
|
|
84090
|
-
});
|
|
84091
|
-
var zSocialSignInResponse = object({
|
|
84092
|
-
token: string2().optional(),
|
|
84093
|
-
user: zUser.optional(),
|
|
84094
|
-
url: string2().optional(),
|
|
84095
|
-
redirect: boolean2()
|
|
84096
|
-
});
|
|
84097
|
-
var zAuthGetCallbackIdPath = object({
|
|
84098
|
-
id: string2()
|
|
84099
|
-
});
|
|
84100
|
-
var zAuthPostCallbackIdBody = object({
|
|
84101
|
-
code: string2().optional(),
|
|
84102
|
-
error: string2().optional(),
|
|
84103
|
-
device_id: string2().optional(),
|
|
84104
|
-
error_description: string2().optional(),
|
|
84105
|
-
state: string2().optional(),
|
|
84106
|
-
user: string2().optional()
|
|
84107
|
-
});
|
|
84108
|
-
var zAuthPostCallbackIdPath = object({
|
|
84109
|
-
id: string2()
|
|
84110
|
-
});
|
|
84111
|
-
var zGetSessionResponse = object({
|
|
84112
|
-
session: zSession,
|
|
84113
|
-
user: zUser
|
|
84114
|
-
}).nullable();
|
|
84115
|
-
var zGetSessionPostBody = record(string2(), unknown());
|
|
84116
|
-
var zGetSessionPostResponse = object({
|
|
84117
|
-
session: zSession,
|
|
84118
|
-
user: zUser
|
|
84119
|
-
}).nullable();
|
|
84120
|
-
var zSignOutBody = record(string2(), unknown());
|
|
84121
|
-
var zSignOutResponse = object({
|
|
84122
|
-
success: boolean2().optional()
|
|
84123
|
-
});
|
|
84124
|
-
var zSignUpWithEmailAndPasswordBody = object({
|
|
84125
|
-
name: string2(),
|
|
84126
|
-
email: string2(),
|
|
84127
|
-
password: string2(),
|
|
84128
|
-
image: string2().optional(),
|
|
84129
|
-
callbackURL: string2().optional(),
|
|
84130
|
-
rememberMe: boolean2().optional()
|
|
84131
|
-
});
|
|
84132
|
-
var zSignUpWithEmailAndPasswordResponse = object({
|
|
84133
|
-
token: string2().optional(),
|
|
84134
|
-
user: object({
|
|
84135
|
-
id: string2(),
|
|
84136
|
-
email: email2(),
|
|
84137
|
-
name: string2(),
|
|
84138
|
-
image: url().optional(),
|
|
84139
|
-
emailVerified: boolean2(),
|
|
84140
|
-
createdAt: exports_iso.datetime(),
|
|
84141
|
-
updatedAt: exports_iso.datetime()
|
|
84423
|
+
var zV2ReportingCapabilitiesResponse = zReportingCapabilitiesResponse;
|
|
84424
|
+
var zV2ReportingObligationsListResponse = strictObject({
|
|
84425
|
+
data: array(zReportingObligation),
|
|
84426
|
+
meta: strictObject({
|
|
84427
|
+
total: int()
|
|
84428
|
+
}),
|
|
84429
|
+
links: strictObject({
|
|
84430
|
+
self: string2()
|
|
84142
84431
|
})
|
|
84143
84432
|
});
|
|
84144
|
-
var
|
|
84145
|
-
|
|
84146
|
-
|
|
84147
|
-
|
|
84148
|
-
rememberMe: boolean2().optional()
|
|
84149
|
-
});
|
|
84150
|
-
var zSignInEmailResponse = object({
|
|
84151
|
-
redirect: literal(false),
|
|
84152
|
-
token: string2(),
|
|
84153
|
-
url: string2().optional(),
|
|
84154
|
-
user: zUser
|
|
84155
|
-
});
|
|
84156
|
-
var zResetPasswordBody = object({
|
|
84157
|
-
newPassword: string2(),
|
|
84158
|
-
token: string2().optional()
|
|
84159
|
-
});
|
|
84160
|
-
var zResetPasswordResponse = object({
|
|
84161
|
-
status: boolean2().optional()
|
|
84162
|
-
});
|
|
84163
|
-
var zVerifyPasswordBody = object({
|
|
84164
|
-
password: string2()
|
|
84165
|
-
});
|
|
84166
|
-
var zVerifyPasswordResponse = object({
|
|
84167
|
-
status: boolean2().optional()
|
|
84168
|
-
});
|
|
84169
|
-
var zAuthGetVerifyEmailQuery = object({
|
|
84170
|
-
token: string2(),
|
|
84171
|
-
callbackURL: string2().optional()
|
|
84172
|
-
});
|
|
84173
|
-
var zAuthGetVerifyEmailResponse = object({
|
|
84174
|
-
user: zUser,
|
|
84175
|
-
status: boolean2()
|
|
84176
|
-
});
|
|
84177
|
-
var zSendVerificationEmailBody = object({
|
|
84178
|
-
email: string2(),
|
|
84179
|
-
callbackURL: string2().optional()
|
|
84433
|
+
var zV2ReportingObligationsCreateBody = zReportingObligationCreateInput;
|
|
84434
|
+
var zV2ReportingObligationsCreateHeaders = object({
|
|
84435
|
+
"Idempotency-Key": string2().optional(),
|
|
84436
|
+
Prefer: string2().optional()
|
|
84180
84437
|
});
|
|
84181
|
-
var
|
|
84182
|
-
|
|
84438
|
+
var zV2ReportingObligationsCreateResponse = zReportingObligationResponse1;
|
|
84439
|
+
var zV2ReportingObligationsDisableHeaders = object({
|
|
84440
|
+
"Idempotency-Key": string2().optional(),
|
|
84441
|
+
Prefer: string2().optional()
|
|
84183
84442
|
});
|
|
84184
|
-
var
|
|
84185
|
-
|
|
84186
|
-
callbackURL: string2().optional()
|
|
84443
|
+
var zV2ReportingObligationsDisablePath = object({
|
|
84444
|
+
obligationId: string2().min(1)
|
|
84187
84445
|
});
|
|
84188
|
-
var
|
|
84189
|
-
|
|
84190
|
-
|
|
84191
|
-
message: _enum2(["Email updated", "Verification email sent"]).optional()
|
|
84446
|
+
var zV2ReportingObligationsDisableResponse = zReportingObligationResponse3;
|
|
84447
|
+
var zV2ReportingObligationsReadPath = object({
|
|
84448
|
+
obligationId: string2().min(1)
|
|
84192
84449
|
});
|
|
84193
|
-
var
|
|
84194
|
-
|
|
84195
|
-
|
|
84196
|
-
|
|
84450
|
+
var zV2ReportingObligationsReadResponse = zReportingObligationResponse;
|
|
84451
|
+
var zV2ReportingObligationsUpdateBody = zReportingObligationDraftInput;
|
|
84452
|
+
var zV2ReportingObligationsUpdateHeaders = object({
|
|
84453
|
+
"Idempotency-Key": string2().optional(),
|
|
84454
|
+
Prefer: string2().optional()
|
|
84197
84455
|
});
|
|
84198
|
-
var
|
|
84199
|
-
|
|
84200
|
-
user: object({
|
|
84201
|
-
id: string2(),
|
|
84202
|
-
email: email2(),
|
|
84203
|
-
name: string2(),
|
|
84204
|
-
image: url().optional(),
|
|
84205
|
-
emailVerified: boolean2(),
|
|
84206
|
-
createdAt: exports_iso.datetime(),
|
|
84207
|
-
updatedAt: exports_iso.datetime()
|
|
84208
|
-
})
|
|
84456
|
+
var zV2ReportingObligationsUpdatePath = object({
|
|
84457
|
+
obligationId: string2().min(1)
|
|
84209
84458
|
});
|
|
84210
|
-
var
|
|
84211
|
-
var
|
|
84212
|
-
|
|
84459
|
+
var zV2ReportingObligationsUpdateResponse = zReportingObligationResponse2;
|
|
84460
|
+
var zV2ReportingObligationsPublishHeaders = object({
|
|
84461
|
+
"Idempotency-Key": string2().optional(),
|
|
84462
|
+
Prefer: string2().optional()
|
|
84213
84463
|
});
|
|
84214
|
-
var
|
|
84215
|
-
|
|
84216
|
-
image: string2().optional()
|
|
84464
|
+
var zV2ReportingObligationsPublishPath = object({
|
|
84465
|
+
obligationId: string2().min(1)
|
|
84217
84466
|
});
|
|
84218
|
-
var
|
|
84219
|
-
|
|
84467
|
+
var zV2ReportingObligationsPublishResponse = zReportingObligationVersionResponse;
|
|
84468
|
+
var zV2ReportingObligationsReadVersionPath = object({
|
|
84469
|
+
obligationId: string2().min(1),
|
|
84470
|
+
version: string2()
|
|
84220
84471
|
});
|
|
84221
|
-
var
|
|
84222
|
-
|
|
84223
|
-
|
|
84224
|
-
|
|
84472
|
+
var zV2ReportingObligationsReadVersionResponse = zReportingObligationVersionResponse1;
|
|
84473
|
+
var zV2ReportingSubmissionsSubmitForReviewHeaders = object({
|
|
84474
|
+
"Idempotency-Key": string2().optional(),
|
|
84475
|
+
Prefer: string2().optional()
|
|
84225
84476
|
});
|
|
84226
|
-
var
|
|
84227
|
-
|
|
84228
|
-
message: _enum2(["User deleted", "Verification email sent"])
|
|
84477
|
+
var zV2ReportingSubmissionsSubmitForReviewPath = object({
|
|
84478
|
+
submissionId: string2().min(1)
|
|
84229
84479
|
});
|
|
84230
|
-
var
|
|
84231
|
-
|
|
84232
|
-
|
|
84480
|
+
var zV2ReportingSubmissionsSubmitForReviewResponse = zReportingSubmissionResponse;
|
|
84481
|
+
var zV2ReportingSubmissionsApproveBody = zReportingSubmissionApproveInput;
|
|
84482
|
+
var zV2ReportingSubmissionsApproveHeaders = object({
|
|
84483
|
+
"Idempotency-Key": string2().optional(),
|
|
84484
|
+
Prefer: string2().optional()
|
|
84233
84485
|
});
|
|
84234
|
-
var
|
|
84235
|
-
|
|
84236
|
-
message: string2().optional()
|
|
84486
|
+
var zV2ReportingSubmissionsApprovePath = object({
|
|
84487
|
+
submissionId: string2().min(1)
|
|
84237
84488
|
});
|
|
84238
|
-
var
|
|
84239
|
-
|
|
84489
|
+
var zV2ReportingSubmissionsApproveResponse = zReportingSubmissionResponse1;
|
|
84490
|
+
var zV2ReportingSubmissionsAcknowledgeBody = zReportingSubmissionAcknowledgeInput;
|
|
84491
|
+
var zV2ReportingSubmissionsAcknowledgeHeaders = object({
|
|
84492
|
+
"Idempotency-Key": string2().optional(),
|
|
84493
|
+
Prefer: string2().optional()
|
|
84240
84494
|
});
|
|
84241
|
-
var
|
|
84242
|
-
|
|
84495
|
+
var zV2ReportingSubmissionsAcknowledgePath = object({
|
|
84496
|
+
submissionId: string2().min(1)
|
|
84243
84497
|
});
|
|
84244
|
-
var
|
|
84245
|
-
|
|
84498
|
+
var zV2ReportingSubmissionsAcknowledgeResponse = zReportingSubmissionResponse2;
|
|
84499
|
+
var zV2ReportingTrailListQuery = object({
|
|
84500
|
+
from: union([
|
|
84501
|
+
string2(),
|
|
84502
|
+
string2().regex(/^\d+$/),
|
|
84503
|
+
number2().gte(0)
|
|
84504
|
+
]),
|
|
84505
|
+
to: union([
|
|
84506
|
+
string2(),
|
|
84507
|
+
string2().regex(/^\d+$/),
|
|
84508
|
+
number2().gte(0)
|
|
84509
|
+
]),
|
|
84510
|
+
target: string2().min(1).optional()
|
|
84246
84511
|
});
|
|
84247
|
-
var
|
|
84248
|
-
var
|
|
84249
|
-
|
|
84512
|
+
var zV2ReportingTrailListResponse = zReportingTrailListResponse;
|
|
84513
|
+
var zV2ReportingTrailForResourceQuery = object({
|
|
84514
|
+
from: union([
|
|
84515
|
+
string2(),
|
|
84516
|
+
string2().regex(/^\d+$/),
|
|
84517
|
+
number2().gte(0)
|
|
84518
|
+
]),
|
|
84519
|
+
to: union([
|
|
84520
|
+
string2(),
|
|
84521
|
+
string2().regex(/^\d+$/),
|
|
84522
|
+
number2().gte(0)
|
|
84523
|
+
]),
|
|
84524
|
+
resource: string2().min(1)
|
|
84250
84525
|
});
|
|
84251
|
-
var
|
|
84252
|
-
|
|
84526
|
+
var zV2ReportingTrailForResourceResponse = zReportingTrailListResponse;
|
|
84527
|
+
var zV2ReportingTrailOperatorListQuery = object({
|
|
84528
|
+
from: union([
|
|
84529
|
+
string2(),
|
|
84530
|
+
string2().regex(/^\d+$/),
|
|
84531
|
+
number2().gte(0)
|
|
84532
|
+
]),
|
|
84533
|
+
to: union([
|
|
84534
|
+
string2(),
|
|
84535
|
+
string2().regex(/^\d+$/),
|
|
84536
|
+
number2().gte(0)
|
|
84537
|
+
]),
|
|
84538
|
+
target: string2().min(1).optional()
|
|
84253
84539
|
});
|
|
84254
|
-
var
|
|
84255
|
-
var
|
|
84256
|
-
|
|
84540
|
+
var zV2ReportingTrailOperatorListResponse = zReportingTrailListResponse;
|
|
84541
|
+
var zV2ReportingTrailEntryPath = object({
|
|
84542
|
+
entryId: string2().min(1)
|
|
84257
84543
|
});
|
|
84258
|
-
var
|
|
84259
|
-
|
|
84260
|
-
|
|
84544
|
+
var zV2ReportingTrailEntryQuery = object({
|
|
84545
|
+
from: union([
|
|
84546
|
+
string2(),
|
|
84547
|
+
string2().regex(/^\d+$/),
|
|
84548
|
+
number2().gte(0)
|
|
84549
|
+
]),
|
|
84550
|
+
to: union([
|
|
84551
|
+
string2(),
|
|
84552
|
+
string2().regex(/^\d+$/),
|
|
84553
|
+
number2().gte(0)
|
|
84554
|
+
])
|
|
84261
84555
|
});
|
|
84262
|
-
var
|
|
84556
|
+
var zV2ReportingTrailEntryResponse = zReportingTrailEntryResponse;
|
|
84557
|
+
var zSocialSignInBody = object({
|
|
84558
|
+
callbackURL: string2().optional(),
|
|
84559
|
+
newUserCallbackURL: string2().optional(),
|
|
84560
|
+
errorCallbackURL: string2().optional(),
|
|
84561
|
+
provider: union([
|
|
84562
|
+
_enum2([
|
|
84563
|
+
"apple",
|
|
84564
|
+
"atlassian",
|
|
84565
|
+
"cognito",
|
|
84566
|
+
"discord",
|
|
84567
|
+
"facebook",
|
|
84568
|
+
"figma",
|
|
84569
|
+
"github",
|
|
84570
|
+
"microsoft",
|
|
84571
|
+
"google",
|
|
84572
|
+
"huggingface",
|
|
84573
|
+
"slack",
|
|
84574
|
+
"spotify",
|
|
84575
|
+
"twitch",
|
|
84576
|
+
"twitter",
|
|
84577
|
+
"dropbox",
|
|
84578
|
+
"kick",
|
|
84579
|
+
"linear",
|
|
84580
|
+
"linkedin",
|
|
84581
|
+
"gitlab",
|
|
84582
|
+
"tiktok",
|
|
84583
|
+
"reddit",
|
|
84584
|
+
"roblox",
|
|
84585
|
+
"salesforce",
|
|
84586
|
+
"vk",
|
|
84587
|
+
"zoom",
|
|
84588
|
+
"notion",
|
|
84589
|
+
"kakao",
|
|
84590
|
+
"naver",
|
|
84591
|
+
"line",
|
|
84592
|
+
"paybin",
|
|
84593
|
+
"paypal",
|
|
84594
|
+
"polar",
|
|
84595
|
+
"railway",
|
|
84596
|
+
"vercel",
|
|
84597
|
+
"wechat"
|
|
84598
|
+
]),
|
|
84599
|
+
string2()
|
|
84600
|
+
]),
|
|
84601
|
+
disableRedirect: boolean2().optional(),
|
|
84602
|
+
idToken: object({
|
|
84603
|
+
token: string2(),
|
|
84604
|
+
nonce: string2().optional(),
|
|
84605
|
+
accessToken: string2().optional(),
|
|
84606
|
+
refreshToken: string2().optional(),
|
|
84607
|
+
expiresAt: number2().optional(),
|
|
84608
|
+
user: object({
|
|
84609
|
+
name: object({
|
|
84610
|
+
firstName: string2().optional(),
|
|
84611
|
+
lastName: string2().optional()
|
|
84612
|
+
}).optional(),
|
|
84613
|
+
email: string2().optional()
|
|
84614
|
+
}).optional()
|
|
84615
|
+
}).optional(),
|
|
84616
|
+
scopes: array(string2()).optional(),
|
|
84617
|
+
requestSignUp: boolean2().optional(),
|
|
84618
|
+
loginHint: string2().optional(),
|
|
84619
|
+
additionalData: record(string2(), unknown()).optional()
|
|
84620
|
+
});
|
|
84621
|
+
var zSocialSignInResponse = object({
|
|
84622
|
+
token: string2().optional(),
|
|
84623
|
+
user: zUser.optional(),
|
|
84624
|
+
url: string2().optional(),
|
|
84625
|
+
redirect: boolean2()
|
|
84626
|
+
});
|
|
84627
|
+
var zAuthGetCallbackIdPath = object({
|
|
84628
|
+
id: string2()
|
|
84629
|
+
});
|
|
84630
|
+
var zAuthPostCallbackIdBody = object({
|
|
84631
|
+
code: string2().optional(),
|
|
84632
|
+
error: string2().optional(),
|
|
84633
|
+
device_id: string2().optional(),
|
|
84634
|
+
error_description: string2().optional(),
|
|
84635
|
+
state: string2().optional(),
|
|
84636
|
+
user: string2().optional()
|
|
84637
|
+
});
|
|
84638
|
+
var zAuthPostCallbackIdPath = object({
|
|
84639
|
+
id: string2()
|
|
84640
|
+
});
|
|
84641
|
+
var zGetSessionResponse = object({
|
|
84642
|
+
session: zSession,
|
|
84643
|
+
user: zUser
|
|
84644
|
+
}).nullable();
|
|
84645
|
+
var zGetSessionPostBody = record(string2(), unknown());
|
|
84646
|
+
var zGetSessionPostResponse = object({
|
|
84647
|
+
session: zSession,
|
|
84648
|
+
user: zUser
|
|
84649
|
+
}).nullable();
|
|
84650
|
+
var zSignOutBody = record(string2(), unknown());
|
|
84651
|
+
var zSignOutResponse = object({
|
|
84652
|
+
success: boolean2().optional()
|
|
84653
|
+
});
|
|
84654
|
+
var zSignUpWithEmailAndPasswordBody = object({
|
|
84655
|
+
name: string2(),
|
|
84656
|
+
email: string2(),
|
|
84657
|
+
password: string2(),
|
|
84658
|
+
image: string2().optional(),
|
|
84659
|
+
callbackURL: string2().optional(),
|
|
84660
|
+
rememberMe: boolean2().optional()
|
|
84661
|
+
});
|
|
84662
|
+
var zSignUpWithEmailAndPasswordResponse = object({
|
|
84663
|
+
token: string2().optional(),
|
|
84664
|
+
user: object({
|
|
84665
|
+
id: string2(),
|
|
84666
|
+
email: email2(),
|
|
84667
|
+
name: string2(),
|
|
84668
|
+
image: url().optional(),
|
|
84669
|
+
emailVerified: boolean2(),
|
|
84670
|
+
createdAt: exports_iso.datetime(),
|
|
84671
|
+
updatedAt: exports_iso.datetime()
|
|
84672
|
+
})
|
|
84673
|
+
});
|
|
84674
|
+
var zSignInEmailBody = object({
|
|
84675
|
+
email: string2(),
|
|
84676
|
+
password: string2(),
|
|
84677
|
+
callbackURL: string2().optional(),
|
|
84678
|
+
rememberMe: boolean2().optional()
|
|
84679
|
+
});
|
|
84680
|
+
var zSignInEmailResponse = object({
|
|
84681
|
+
redirect: literal(false),
|
|
84682
|
+
token: string2(),
|
|
84683
|
+
url: string2().optional(),
|
|
84684
|
+
user: zUser
|
|
84685
|
+
});
|
|
84686
|
+
var zResetPasswordBody = object({
|
|
84687
|
+
newPassword: string2(),
|
|
84688
|
+
token: string2().optional()
|
|
84689
|
+
});
|
|
84690
|
+
var zResetPasswordResponse = object({
|
|
84691
|
+
status: boolean2().optional()
|
|
84692
|
+
});
|
|
84693
|
+
var zVerifyPasswordBody = object({
|
|
84694
|
+
password: string2()
|
|
84695
|
+
});
|
|
84696
|
+
var zVerifyPasswordResponse = object({
|
|
84697
|
+
status: boolean2().optional()
|
|
84698
|
+
});
|
|
84699
|
+
var zAuthGetVerifyEmailQuery = object({
|
|
84700
|
+
token: string2(),
|
|
84701
|
+
callbackURL: string2().optional()
|
|
84702
|
+
});
|
|
84703
|
+
var zAuthGetVerifyEmailResponse = object({
|
|
84704
|
+
user: zUser,
|
|
84705
|
+
status: boolean2()
|
|
84706
|
+
});
|
|
84707
|
+
var zSendVerificationEmailBody = object({
|
|
84708
|
+
email: string2(),
|
|
84709
|
+
callbackURL: string2().optional()
|
|
84710
|
+
});
|
|
84711
|
+
var zSendVerificationEmailResponse = object({
|
|
84712
|
+
status: boolean2().optional()
|
|
84713
|
+
});
|
|
84714
|
+
var zChangeEmailBody = object({
|
|
84715
|
+
newEmail: string2(),
|
|
84716
|
+
callbackURL: string2().optional()
|
|
84717
|
+
});
|
|
84718
|
+
var zChangeEmailResponse = object({
|
|
84719
|
+
user: zUser.optional(),
|
|
84720
|
+
status: boolean2(),
|
|
84721
|
+
message: _enum2(["Email updated", "Verification email sent"]).optional()
|
|
84722
|
+
});
|
|
84723
|
+
var zChangePasswordBody = object({
|
|
84724
|
+
newPassword: string2(),
|
|
84725
|
+
currentPassword: string2(),
|
|
84726
|
+
revokeOtherSessions: boolean2().optional()
|
|
84727
|
+
});
|
|
84728
|
+
var zChangePasswordResponse = object({
|
|
84729
|
+
token: string2().optional(),
|
|
84730
|
+
user: object({
|
|
84731
|
+
id: string2(),
|
|
84732
|
+
email: email2(),
|
|
84733
|
+
name: string2(),
|
|
84734
|
+
image: url().optional(),
|
|
84735
|
+
emailVerified: boolean2(),
|
|
84736
|
+
createdAt: exports_iso.datetime(),
|
|
84737
|
+
updatedAt: exports_iso.datetime()
|
|
84738
|
+
})
|
|
84739
|
+
});
|
|
84740
|
+
var zUpdateSessionBody = record(string2(), unknown());
|
|
84741
|
+
var zUpdateSessionResponse = object({
|
|
84742
|
+
session: zSession.optional()
|
|
84743
|
+
});
|
|
84744
|
+
var zUpdateUserBody = object({
|
|
84745
|
+
name: string2().optional(),
|
|
84746
|
+
image: string2().optional()
|
|
84747
|
+
});
|
|
84748
|
+
var zUpdateUserResponse = object({
|
|
84749
|
+
user: zUser.optional()
|
|
84750
|
+
});
|
|
84751
|
+
var zDeleteUserBody = object({
|
|
84752
|
+
callbackURL: string2().optional(),
|
|
84753
|
+
password: string2().optional(),
|
|
84754
|
+
token: string2().optional()
|
|
84755
|
+
});
|
|
84756
|
+
var zDeleteUserResponse = object({
|
|
84757
|
+
success: boolean2(),
|
|
84758
|
+
message: _enum2(["User deleted", "Verification email sent"])
|
|
84759
|
+
});
|
|
84760
|
+
var zRequestPasswordResetBody = object({
|
|
84761
|
+
email: string2(),
|
|
84762
|
+
redirectTo: string2().optional()
|
|
84763
|
+
});
|
|
84764
|
+
var zRequestPasswordResetResponse = object({
|
|
84765
|
+
status: boolean2().optional(),
|
|
84766
|
+
message: string2().optional()
|
|
84767
|
+
});
|
|
84768
|
+
var zResetPasswordCallbackPath = object({
|
|
84769
|
+
token: string2()
|
|
84770
|
+
});
|
|
84771
|
+
var zResetPasswordCallbackQuery = object({
|
|
84772
|
+
callbackURL: string2()
|
|
84773
|
+
});
|
|
84774
|
+
var zResetPasswordCallbackResponse = object({
|
|
84775
|
+
token: string2().optional()
|
|
84776
|
+
});
|
|
84777
|
+
var zListUserSessionsResponse = array(zSession);
|
|
84778
|
+
var zAuthPostRevokeSessionBody = object({
|
|
84779
|
+
token: string2()
|
|
84780
|
+
});
|
|
84781
|
+
var zAuthPostRevokeSessionResponse = object({
|
|
84782
|
+
status: boolean2()
|
|
84783
|
+
});
|
|
84784
|
+
var zAuthPostRevokeSessionsBody = record(string2(), unknown());
|
|
84785
|
+
var zAuthPostRevokeSessionsResponse = object({
|
|
84786
|
+
status: boolean2()
|
|
84787
|
+
});
|
|
84788
|
+
var zAuthPostRevokeOtherSessionsBody = record(string2(), unknown());
|
|
84789
|
+
var zAuthPostRevokeOtherSessionsResponse = object({
|
|
84790
|
+
status: boolean2()
|
|
84791
|
+
});
|
|
84792
|
+
var zLinkSocialAccountBody = object({
|
|
84263
84793
|
callbackURL: string2().optional(),
|
|
84264
84794
|
provider: union([
|
|
84265
84795
|
_enum2([
|
|
@@ -93493,6 +94023,179 @@ var v2AddonsFixedYieldClaim = (options) => (options.client ?? client).post({
|
|
|
93493
94023
|
...options.headers
|
|
93494
94024
|
}
|
|
93495
94025
|
});
|
|
94026
|
+
var v2ReportingCapabilities = (options) => (options?.client ?? client).get({
|
|
94027
|
+
requestValidator: async (data) => await object({
|
|
94028
|
+
body: never().optional(),
|
|
94029
|
+
path: never().optional(),
|
|
94030
|
+
query: never().optional()
|
|
94031
|
+
}).parseAsync(data),
|
|
94032
|
+
responseTransformer: async (data) => await zV2ReportingCapabilitiesResponse.parseAsync(data),
|
|
94033
|
+
url: "/api/v2/reporting/capabilities",
|
|
94034
|
+
...options
|
|
94035
|
+
});
|
|
94036
|
+
var v2ReportingObligationsList = (options) => (options?.client ?? client).get({
|
|
94037
|
+
requestValidator: async (data) => await object({
|
|
94038
|
+
body: never().optional(),
|
|
94039
|
+
path: never().optional(),
|
|
94040
|
+
query: never().optional()
|
|
94041
|
+
}).parseAsync(data),
|
|
94042
|
+
responseTransformer: async (data) => await zV2ReportingObligationsListResponse.parseAsync(data),
|
|
94043
|
+
url: "/api/v2/reporting/obligations",
|
|
94044
|
+
...options
|
|
94045
|
+
});
|
|
94046
|
+
var v2ReportingObligationsCreate = (options) => (options.client ?? client).post({
|
|
94047
|
+
requestValidator: async (data) => await object({
|
|
94048
|
+
body: zV2ReportingObligationsCreateBody,
|
|
94049
|
+
headers: zV2ReportingObligationsCreateHeaders.optional(),
|
|
94050
|
+
path: never().optional(),
|
|
94051
|
+
query: never().optional()
|
|
94052
|
+
}).parseAsync(data),
|
|
94053
|
+
responseTransformer: async (data) => await zV2ReportingObligationsCreateResponse.parseAsync(data),
|
|
94054
|
+
url: "/api/v2/reporting/obligations",
|
|
94055
|
+
...options,
|
|
94056
|
+
headers: {
|
|
94057
|
+
"Content-Type": "application/json",
|
|
94058
|
+
...options.headers
|
|
94059
|
+
}
|
|
94060
|
+
});
|
|
94061
|
+
var v2ReportingObligationsDisable = (options) => (options.client ?? client).delete({
|
|
94062
|
+
requestValidator: async (data) => await object({
|
|
94063
|
+
body: never().optional(),
|
|
94064
|
+
headers: zV2ReportingObligationsDisableHeaders.optional(),
|
|
94065
|
+
path: zV2ReportingObligationsDisablePath,
|
|
94066
|
+
query: never().optional()
|
|
94067
|
+
}).parseAsync(data),
|
|
94068
|
+
responseTransformer: async (data) => await zV2ReportingObligationsDisableResponse.parseAsync(data),
|
|
94069
|
+
url: "/api/v2/reporting/obligations/{obligationId}",
|
|
94070
|
+
...options
|
|
94071
|
+
});
|
|
94072
|
+
var v2ReportingObligationsRead = (options) => (options.client ?? client).get({
|
|
94073
|
+
requestValidator: async (data) => await object({
|
|
94074
|
+
body: never().optional(),
|
|
94075
|
+
path: zV2ReportingObligationsReadPath,
|
|
94076
|
+
query: never().optional()
|
|
94077
|
+
}).parseAsync(data),
|
|
94078
|
+
responseTransformer: async (data) => await zV2ReportingObligationsReadResponse.parseAsync(data),
|
|
94079
|
+
url: "/api/v2/reporting/obligations/{obligationId}",
|
|
94080
|
+
...options
|
|
94081
|
+
});
|
|
94082
|
+
var v2ReportingObligationsUpdate = (options) => (options.client ?? client).put({
|
|
94083
|
+
requestValidator: async (data) => await object({
|
|
94084
|
+
body: zV2ReportingObligationsUpdateBody,
|
|
94085
|
+
headers: zV2ReportingObligationsUpdateHeaders.optional(),
|
|
94086
|
+
path: zV2ReportingObligationsUpdatePath,
|
|
94087
|
+
query: never().optional()
|
|
94088
|
+
}).parseAsync(data),
|
|
94089
|
+
responseTransformer: async (data) => await zV2ReportingObligationsUpdateResponse.parseAsync(data),
|
|
94090
|
+
url: "/api/v2/reporting/obligations/{obligationId}",
|
|
94091
|
+
...options,
|
|
94092
|
+
headers: {
|
|
94093
|
+
"Content-Type": "application/json",
|
|
94094
|
+
...options.headers
|
|
94095
|
+
}
|
|
94096
|
+
});
|
|
94097
|
+
var v2ReportingObligationsPublish = (options) => (options.client ?? client).post({
|
|
94098
|
+
requestValidator: async (data) => await object({
|
|
94099
|
+
body: never().optional(),
|
|
94100
|
+
headers: zV2ReportingObligationsPublishHeaders.optional(),
|
|
94101
|
+
path: zV2ReportingObligationsPublishPath,
|
|
94102
|
+
query: never().optional()
|
|
94103
|
+
}).parseAsync(data),
|
|
94104
|
+
responseTransformer: async (data) => await zV2ReportingObligationsPublishResponse.parseAsync(data),
|
|
94105
|
+
url: "/api/v2/reporting/obligations/{obligationId}/publish",
|
|
94106
|
+
...options
|
|
94107
|
+
});
|
|
94108
|
+
var v2ReportingObligationsReadVersion = (options) => (options.client ?? client).get({
|
|
94109
|
+
requestValidator: async (data) => await object({
|
|
94110
|
+
body: never().optional(),
|
|
94111
|
+
path: zV2ReportingObligationsReadVersionPath,
|
|
94112
|
+
query: never().optional()
|
|
94113
|
+
}).parseAsync(data),
|
|
94114
|
+
responseTransformer: async (data) => await zV2ReportingObligationsReadVersionResponse.parseAsync(data),
|
|
94115
|
+
url: "/api/v2/reporting/obligations/{obligationId}/versions/{version}",
|
|
94116
|
+
...options
|
|
94117
|
+
});
|
|
94118
|
+
var v2ReportingSubmissionsSubmitForReview = (options) => (options.client ?? client).post({
|
|
94119
|
+
requestValidator: async (data) => await object({
|
|
94120
|
+
body: never().optional(),
|
|
94121
|
+
headers: zV2ReportingSubmissionsSubmitForReviewHeaders.optional(),
|
|
94122
|
+
path: zV2ReportingSubmissionsSubmitForReviewPath,
|
|
94123
|
+
query: never().optional()
|
|
94124
|
+
}).parseAsync(data),
|
|
94125
|
+
responseTransformer: async (data) => await zV2ReportingSubmissionsSubmitForReviewResponse.parseAsync(data),
|
|
94126
|
+
url: "/api/v2/reporting/submissions/{submissionId}/submit-for-review",
|
|
94127
|
+
...options
|
|
94128
|
+
});
|
|
94129
|
+
var v2ReportingSubmissionsApprove = (options) => (options.client ?? client).post({
|
|
94130
|
+
requestValidator: async (data) => await object({
|
|
94131
|
+
body: zV2ReportingSubmissionsApproveBody,
|
|
94132
|
+
headers: zV2ReportingSubmissionsApproveHeaders.optional(),
|
|
94133
|
+
path: zV2ReportingSubmissionsApprovePath,
|
|
94134
|
+
query: never().optional()
|
|
94135
|
+
}).parseAsync(data),
|
|
94136
|
+
responseTransformer: async (data) => await zV2ReportingSubmissionsApproveResponse.parseAsync(data),
|
|
94137
|
+
url: "/api/v2/reporting/submissions/{submissionId}/approve",
|
|
94138
|
+
...options,
|
|
94139
|
+
headers: {
|
|
94140
|
+
"Content-Type": "application/json",
|
|
94141
|
+
...options.headers
|
|
94142
|
+
}
|
|
94143
|
+
});
|
|
94144
|
+
var v2ReportingSubmissionsAcknowledge = (options) => (options.client ?? client).post({
|
|
94145
|
+
requestValidator: async (data) => await object({
|
|
94146
|
+
body: zV2ReportingSubmissionsAcknowledgeBody,
|
|
94147
|
+
headers: zV2ReportingSubmissionsAcknowledgeHeaders.optional(),
|
|
94148
|
+
path: zV2ReportingSubmissionsAcknowledgePath,
|
|
94149
|
+
query: never().optional()
|
|
94150
|
+
}).parseAsync(data),
|
|
94151
|
+
responseTransformer: async (data) => await zV2ReportingSubmissionsAcknowledgeResponse.parseAsync(data),
|
|
94152
|
+
url: "/api/v2/reporting/submissions/{submissionId}/acknowledge",
|
|
94153
|
+
...options,
|
|
94154
|
+
headers: {
|
|
94155
|
+
"Content-Type": "application/json",
|
|
94156
|
+
...options.headers
|
|
94157
|
+
}
|
|
94158
|
+
});
|
|
94159
|
+
var v2ReportingTrailList = (options) => (options.client ?? client).get({
|
|
94160
|
+
requestValidator: async (data) => await object({
|
|
94161
|
+
body: never().optional(),
|
|
94162
|
+
path: never().optional(),
|
|
94163
|
+
query: zV2ReportingTrailListQuery
|
|
94164
|
+
}).parseAsync(data),
|
|
94165
|
+
responseTransformer: async (data) => await zV2ReportingTrailListResponse.parseAsync(data),
|
|
94166
|
+
url: "/api/v2/reporting/trail",
|
|
94167
|
+
...options
|
|
94168
|
+
});
|
|
94169
|
+
var v2ReportingTrailForResource = (options) => (options.client ?? client).get({
|
|
94170
|
+
requestValidator: async (data) => await object({
|
|
94171
|
+
body: never().optional(),
|
|
94172
|
+
path: never().optional(),
|
|
94173
|
+
query: zV2ReportingTrailForResourceQuery
|
|
94174
|
+
}).parseAsync(data),
|
|
94175
|
+
responseTransformer: async (data) => await zV2ReportingTrailForResourceResponse.parseAsync(data),
|
|
94176
|
+
url: "/api/v2/reporting/trail/resource",
|
|
94177
|
+
...options
|
|
94178
|
+
});
|
|
94179
|
+
var v2ReportingTrailOperatorList = (options) => (options.client ?? client).get({
|
|
94180
|
+
requestValidator: async (data) => await object({
|
|
94181
|
+
body: never().optional(),
|
|
94182
|
+
path: never().optional(),
|
|
94183
|
+
query: zV2ReportingTrailOperatorListQuery
|
|
94184
|
+
}).parseAsync(data),
|
|
94185
|
+
responseTransformer: async (data) => await zV2ReportingTrailOperatorListResponse.parseAsync(data),
|
|
94186
|
+
url: "/api/v2/reporting/trail/operator",
|
|
94187
|
+
...options
|
|
94188
|
+
});
|
|
94189
|
+
var v2ReportingTrailEntry = (options) => (options.client ?? client).get({
|
|
94190
|
+
requestValidator: async (data) => await object({
|
|
94191
|
+
body: never().optional(),
|
|
94192
|
+
path: zV2ReportingTrailEntryPath,
|
|
94193
|
+
query: zV2ReportingTrailEntryQuery
|
|
94194
|
+
}).parseAsync(data),
|
|
94195
|
+
responseTransformer: async (data) => await zV2ReportingTrailEntryResponse.parseAsync(data),
|
|
94196
|
+
url: "/api/v2/reporting/trail/{entryId}",
|
|
94197
|
+
...options
|
|
94198
|
+
});
|
|
93496
94199
|
var socialSignIn = (options) => (options.client ?? client).post({
|
|
93497
94200
|
requestValidator: async (data) => await object({
|
|
93498
94201
|
body: zSocialSignInBody,
|
|
@@ -97308,6 +98011,72 @@ __export(exports_schemas3, {
|
|
|
97308
98011
|
zRemediationClass: () => zRemediationClass,
|
|
97309
98012
|
zRemoveUserBody: () => zRemoveUserBody,
|
|
97310
98013
|
zRemoveUserResponse: () => zRemoveUserResponse,
|
|
98014
|
+
zReportingAckSlaHours: () => zReportingAckSlaHours,
|
|
98015
|
+
zReportingAggregate: () => zReportingAggregate,
|
|
98016
|
+
zReportingCadence: () => zReportingCadence,
|
|
98017
|
+
zReportingCapabilities: () => zReportingCapabilities,
|
|
98018
|
+
zReportingCapabilitiesResponse: () => zReportingCapabilitiesResponse,
|
|
98019
|
+
zReportingDataPoint: () => zReportingDataPoint,
|
|
98020
|
+
zReportingDataPoint1: () => zReportingDataPoint1,
|
|
98021
|
+
zReportingDataPointDimensions: () => zReportingDataPointDimensions,
|
|
98022
|
+
zReportingDataPointDimensionsEncoded: () => zReportingDataPointDimensionsEncoded,
|
|
98023
|
+
zReportingDataPointDimensionsEncodedWritable: () => zReportingDataPointDimensionsEncodedWritable,
|
|
98024
|
+
zReportingDataPointSet: () => zReportingDataPointSet,
|
|
98025
|
+
zReportingDataPointSet1: () => zReportingDataPointSet1,
|
|
98026
|
+
zReportingDataPointType: () => zReportingDataPointType,
|
|
98027
|
+
zReportingDeadlineAuthoredBy: () => zReportingDeadlineAuthoredBy,
|
|
98028
|
+
zReportingDeadlineAuthoredByWritable: () => zReportingDeadlineAuthoredByWritable,
|
|
98029
|
+
zReportingDeadlineCitation: () => zReportingDeadlineCitation,
|
|
98030
|
+
zReportingDeadlineCitationWritable: () => zReportingDeadlineCitationWritable,
|
|
98031
|
+
zReportingDeadlineRule: () => zReportingDeadlineRule,
|
|
98032
|
+
zReportingDenomination: () => zReportingDenomination,
|
|
98033
|
+
zReportingDenominationWritable: () => zReportingDenominationWritable,
|
|
98034
|
+
zReportingDerivationRule: () => zReportingDerivationRule,
|
|
98035
|
+
zReportingDerivationRules: () => zReportingDerivationRules,
|
|
98036
|
+
zReportingDescription: () => zReportingDescription,
|
|
98037
|
+
zReportingEffectiveTo: () => zReportingEffectiveTo,
|
|
98038
|
+
zReportingEntityLeiEncoded: () => zReportingEntityLeiEncoded,
|
|
98039
|
+
zReportingObligation: () => zReportingObligation,
|
|
98040
|
+
zReportingObligationConfig: () => zReportingObligationConfig,
|
|
98041
|
+
zReportingObligationConfig1: () => zReportingObligationConfig1,
|
|
98042
|
+
zReportingObligationCreateInput: () => zReportingObligationCreateInput,
|
|
98043
|
+
zReportingObligationDraftInput: () => zReportingObligationDraftInput,
|
|
98044
|
+
zReportingObligationId: () => zReportingObligationId,
|
|
98045
|
+
zReportingObligationReportKind: () => zReportingObligationReportKind,
|
|
98046
|
+
zReportingObligationResponse: () => zReportingObligationResponse,
|
|
98047
|
+
zReportingObligationResponse1: () => zReportingObligationResponse1,
|
|
98048
|
+
zReportingObligationResponse2: () => zReportingObligationResponse2,
|
|
98049
|
+
zReportingObligationResponse3: () => zReportingObligationResponse3,
|
|
98050
|
+
zReportingObligationScopeExpression: () => zReportingObligationScopeExpression,
|
|
98051
|
+
zReportingObligationScopeExpression1: () => zReportingObligationScopeExpression1,
|
|
98052
|
+
zReportingObligationVersion: () => zReportingObligationVersion,
|
|
98053
|
+
zReportingObligationVersionResponse: () => zReportingObligationVersionResponse,
|
|
98054
|
+
zReportingObligationVersionResponse1: () => zReportingObligationVersionResponse1,
|
|
98055
|
+
zReportingOptionalText: () => zReportingOptionalText,
|
|
98056
|
+
zReportingOptionalText1: () => zReportingOptionalText1,
|
|
98057
|
+
zReportingOutputFormat: () => zReportingOutputFormat,
|
|
98058
|
+
zReportingReportKind: () => zReportingReportKind,
|
|
98059
|
+
zReportingRetentionClass: () => zReportingRetentionClass,
|
|
98060
|
+
zReportingScopeJurisdictions: () => zReportingScopeJurisdictions,
|
|
98061
|
+
zReportingScopeJurisdictions1: () => zReportingScopeJurisdictions1,
|
|
98062
|
+
zReportingScopeOrganizations: () => zReportingScopeOrganizations,
|
|
98063
|
+
zReportingScopeOrganizations1: () => zReportingScopeOrganizations1,
|
|
98064
|
+
zReportingScopeSelf: () => zReportingScopeSelf,
|
|
98065
|
+
zReportingSubmission: () => zReportingSubmission,
|
|
98066
|
+
zReportingSubmissionAcknowledgeInput: () => zReportingSubmissionAcknowledgeInput,
|
|
98067
|
+
zReportingSubmissionApproveInput: () => zReportingSubmissionApproveInput,
|
|
98068
|
+
zReportingSubmissionResponse: () => zReportingSubmissionResponse,
|
|
98069
|
+
zReportingSubmissionResponse1: () => zReportingSubmissionResponse1,
|
|
98070
|
+
zReportingSubmissionResponse2: () => zReportingSubmissionResponse2,
|
|
98071
|
+
zReportingTrailEntry: () => zReportingTrailEntry,
|
|
98072
|
+
zReportingTrailEntryList: () => zReportingTrailEntryList,
|
|
98073
|
+
zReportingTrailEntryResponse: () => zReportingTrailEntryResponse,
|
|
98074
|
+
zReportingTrailLinks: () => zReportingTrailLinks,
|
|
98075
|
+
zReportingTrailListResponse: () => zReportingTrailListResponse,
|
|
98076
|
+
zReportingTrailMeta: () => zReportingTrailMeta,
|
|
98077
|
+
zReportingTrailTarget: () => zReportingTrailTarget,
|
|
98078
|
+
zReportingValidationRule: () => zReportingValidationRule,
|
|
98079
|
+
zReportingValidationRules: () => zReportingValidationRules,
|
|
97311
98080
|
zRequestPasswordResetBody: () => zRequestPasswordResetBody,
|
|
97312
98081
|
zRequestPasswordResetResponse: () => zRequestPasswordResetResponse,
|
|
97313
98082
|
zResetPasswordBody: () => zResetPasswordBody,
|
|
@@ -98997,6 +99766,45 @@ __export(exports_schemas3, {
|
|
|
98997
99766
|
zV2PlatformStatusWorkflowsListResponse: () => zV2PlatformStatusWorkflowsListResponse,
|
|
98998
99767
|
zV2PlatformStatusWorkflowsResponse: () => zV2PlatformStatusWorkflowsResponse,
|
|
98999
99768
|
zV2PortfolioReturnsReadResponse: () => zV2PortfolioReturnsReadResponse,
|
|
99769
|
+
zV2ReportingCapabilitiesResponse: () => zV2ReportingCapabilitiesResponse,
|
|
99770
|
+
zV2ReportingObligationsCreateBody: () => zV2ReportingObligationsCreateBody,
|
|
99771
|
+
zV2ReportingObligationsCreateHeaders: () => zV2ReportingObligationsCreateHeaders,
|
|
99772
|
+
zV2ReportingObligationsCreateResponse: () => zV2ReportingObligationsCreateResponse,
|
|
99773
|
+
zV2ReportingObligationsDisableHeaders: () => zV2ReportingObligationsDisableHeaders,
|
|
99774
|
+
zV2ReportingObligationsDisablePath: () => zV2ReportingObligationsDisablePath,
|
|
99775
|
+
zV2ReportingObligationsDisableResponse: () => zV2ReportingObligationsDisableResponse,
|
|
99776
|
+
zV2ReportingObligationsListResponse: () => zV2ReportingObligationsListResponse,
|
|
99777
|
+
zV2ReportingObligationsPublishHeaders: () => zV2ReportingObligationsPublishHeaders,
|
|
99778
|
+
zV2ReportingObligationsPublishPath: () => zV2ReportingObligationsPublishPath,
|
|
99779
|
+
zV2ReportingObligationsPublishResponse: () => zV2ReportingObligationsPublishResponse,
|
|
99780
|
+
zV2ReportingObligationsReadPath: () => zV2ReportingObligationsReadPath,
|
|
99781
|
+
zV2ReportingObligationsReadResponse: () => zV2ReportingObligationsReadResponse,
|
|
99782
|
+
zV2ReportingObligationsReadVersionPath: () => zV2ReportingObligationsReadVersionPath,
|
|
99783
|
+
zV2ReportingObligationsReadVersionResponse: () => zV2ReportingObligationsReadVersionResponse,
|
|
99784
|
+
zV2ReportingObligationsUpdateBody: () => zV2ReportingObligationsUpdateBody,
|
|
99785
|
+
zV2ReportingObligationsUpdateHeaders: () => zV2ReportingObligationsUpdateHeaders,
|
|
99786
|
+
zV2ReportingObligationsUpdatePath: () => zV2ReportingObligationsUpdatePath,
|
|
99787
|
+
zV2ReportingObligationsUpdateResponse: () => zV2ReportingObligationsUpdateResponse,
|
|
99788
|
+
zV2ReportingSubmissionsAcknowledgeBody: () => zV2ReportingSubmissionsAcknowledgeBody,
|
|
99789
|
+
zV2ReportingSubmissionsAcknowledgeHeaders: () => zV2ReportingSubmissionsAcknowledgeHeaders,
|
|
99790
|
+
zV2ReportingSubmissionsAcknowledgePath: () => zV2ReportingSubmissionsAcknowledgePath,
|
|
99791
|
+
zV2ReportingSubmissionsAcknowledgeResponse: () => zV2ReportingSubmissionsAcknowledgeResponse,
|
|
99792
|
+
zV2ReportingSubmissionsApproveBody: () => zV2ReportingSubmissionsApproveBody,
|
|
99793
|
+
zV2ReportingSubmissionsApproveHeaders: () => zV2ReportingSubmissionsApproveHeaders,
|
|
99794
|
+
zV2ReportingSubmissionsApprovePath: () => zV2ReportingSubmissionsApprovePath,
|
|
99795
|
+
zV2ReportingSubmissionsApproveResponse: () => zV2ReportingSubmissionsApproveResponse,
|
|
99796
|
+
zV2ReportingSubmissionsSubmitForReviewHeaders: () => zV2ReportingSubmissionsSubmitForReviewHeaders,
|
|
99797
|
+
zV2ReportingSubmissionsSubmitForReviewPath: () => zV2ReportingSubmissionsSubmitForReviewPath,
|
|
99798
|
+
zV2ReportingSubmissionsSubmitForReviewResponse: () => zV2ReportingSubmissionsSubmitForReviewResponse,
|
|
99799
|
+
zV2ReportingTrailEntryPath: () => zV2ReportingTrailEntryPath,
|
|
99800
|
+
zV2ReportingTrailEntryQuery: () => zV2ReportingTrailEntryQuery,
|
|
99801
|
+
zV2ReportingTrailEntryResponse: () => zV2ReportingTrailEntryResponse,
|
|
99802
|
+
zV2ReportingTrailForResourceQuery: () => zV2ReportingTrailForResourceQuery,
|
|
99803
|
+
zV2ReportingTrailForResourceResponse: () => zV2ReportingTrailForResourceResponse,
|
|
99804
|
+
zV2ReportingTrailListQuery: () => zV2ReportingTrailListQuery,
|
|
99805
|
+
zV2ReportingTrailListResponse: () => zV2ReportingTrailListResponse,
|
|
99806
|
+
zV2ReportingTrailOperatorListQuery: () => zV2ReportingTrailOperatorListQuery,
|
|
99807
|
+
zV2ReportingTrailOperatorListResponse: () => zV2ReportingTrailOperatorListResponse,
|
|
99000
99808
|
zV2RpcForwardBody: () => zV2RpcForwardBody,
|
|
99001
99809
|
zV2RpcForwardHeaders: () => zV2RpcForwardHeaders,
|
|
99002
99810
|
zV2RpcForwardPath: () => zV2RpcForwardPath,
|
|
@@ -154014,6 +154822,788 @@ var openapi_surface_default = {
|
|
|
154014
154822
|
bodyFields: [],
|
|
154015
154823
|
examples: []
|
|
154016
154824
|
},
|
|
154825
|
+
v2ReportingCapabilities: {
|
|
154826
|
+
name: "v2ReportingCapabilities",
|
|
154827
|
+
method: "GET",
|
|
154828
|
+
url: "/api/v2/reporting/capabilities",
|
|
154829
|
+
summary: "Read reporting capabilities",
|
|
154830
|
+
description: "Returns the platform-native reports this deployment can produce for the active organization. Read it before you build against a report identifier. Repeating the request is safe.",
|
|
154831
|
+
help: "Returns the platform-native reports this deployment can produce for the active organization. Read it before you build against a report identifier. Repeating the request is safe.",
|
|
154832
|
+
tags: [
|
|
154833
|
+
"Regulatory reporting"
|
|
154834
|
+
],
|
|
154835
|
+
pathParams: [],
|
|
154836
|
+
queryParams: [],
|
|
154837
|
+
headerParams: [],
|
|
154838
|
+
requestBodyDescription: null,
|
|
154839
|
+
hasRequestBody: false,
|
|
154840
|
+
bodyIsComplex: false,
|
|
154841
|
+
bodyFields: [],
|
|
154842
|
+
examples: []
|
|
154843
|
+
},
|
|
154844
|
+
v2ReportingObligationsList: {
|
|
154845
|
+
name: "v2ReportingObligationsList",
|
|
154846
|
+
method: "GET",
|
|
154847
|
+
url: "/api/v2/reporting/obligations",
|
|
154848
|
+
summary: "List reporting obligations",
|
|
154849
|
+
description: "Returns every reporting obligation the active organization can see: the ones it configured, plus the platform catalog entries every deployment carries. A catalog entry reads `editable: false`. Repeating the request is safe.",
|
|
154850
|
+
help: "Returns every reporting obligation the active organization can see: the ones it configured, plus the platform catalog entries every deployment carries. A catalog entry reads `editable: false`. Repeating the request is safe.",
|
|
154851
|
+
tags: [
|
|
154852
|
+
"Regulatory reporting"
|
|
154853
|
+
],
|
|
154854
|
+
pathParams: [],
|
|
154855
|
+
queryParams: [],
|
|
154856
|
+
headerParams: [],
|
|
154857
|
+
requestBodyDescription: null,
|
|
154858
|
+
hasRequestBody: false,
|
|
154859
|
+
bodyIsComplex: false,
|
|
154860
|
+
bodyFields: [],
|
|
154861
|
+
examples: []
|
|
154862
|
+
},
|
|
154863
|
+
v2ReportingObligationsCreate: {
|
|
154864
|
+
name: "v2ReportingObligationsCreate",
|
|
154865
|
+
method: "POST",
|
|
154866
|
+
url: "/api/v2/reporting/obligations",
|
|
154867
|
+
summary: "Create a reporting obligation draft",
|
|
154868
|
+
description: "Creates a draft obligation. The draft is not yet a duty: nothing materializes a filing period until a version is published. You choose the identifier, so retrying after a lost response is safe.",
|
|
154869
|
+
help: "Creates a draft obligation. The draft is not yet a duty: nothing materializes a filing period until a version is published. You choose the identifier, so retrying after a lost response is safe.",
|
|
154870
|
+
tags: [
|
|
154871
|
+
"Regulatory reporting"
|
|
154872
|
+
],
|
|
154873
|
+
pathParams: [],
|
|
154874
|
+
queryParams: [],
|
|
154875
|
+
headerParams: [
|
|
154876
|
+
{
|
|
154877
|
+
name: "Idempotency-Key",
|
|
154878
|
+
in: "header",
|
|
154879
|
+
required: false,
|
|
154880
|
+
description: "Client-generated retry key for one mutation. Reuse it only for the same method, path, and body. If you omit it, the platform generates a UUIDv7 key you cannot replay after a lost response.",
|
|
154881
|
+
type: "string",
|
|
154882
|
+
enum: null,
|
|
154883
|
+
pattern: null,
|
|
154884
|
+
examples: [],
|
|
154885
|
+
fields: []
|
|
154886
|
+
},
|
|
154887
|
+
{
|
|
154888
|
+
name: "Prefer",
|
|
154889
|
+
in: "header",
|
|
154890
|
+
required: false,
|
|
154891
|
+
description: "RFC 7240 response-timing preference. Absent or `respond-async` returns 202 immediately. `wait=N` waits up to N seconds, clamped to 5 through 99. `respond-async, wait=N` waits and then degrades to 202. Poll `Location` after 202 instead of resubmitting.",
|
|
154892
|
+
type: "string",
|
|
154893
|
+
enum: null,
|
|
154894
|
+
pattern: null,
|
|
154895
|
+
examples: [],
|
|
154896
|
+
fields: []
|
|
154897
|
+
}
|
|
154898
|
+
],
|
|
154899
|
+
requestBodyDescription: "A new obligation draft. The identifier is chosen by the caller so that retrying a create after a lost response is safe.",
|
|
154900
|
+
hasRequestBody: true,
|
|
154901
|
+
bodyIsComplex: true,
|
|
154902
|
+
bodyFields: [
|
|
154903
|
+
{
|
|
154904
|
+
name: "obligationId",
|
|
154905
|
+
in: "query",
|
|
154906
|
+
required: true,
|
|
154907
|
+
description: null,
|
|
154908
|
+
type: "string",
|
|
154909
|
+
enum: null,
|
|
154910
|
+
pattern: null,
|
|
154911
|
+
examples: [],
|
|
154912
|
+
fields: []
|
|
154913
|
+
},
|
|
154914
|
+
{
|
|
154915
|
+
name: "name",
|
|
154916
|
+
in: "query",
|
|
154917
|
+
required: true,
|
|
154918
|
+
description: null,
|
|
154919
|
+
type: "string",
|
|
154920
|
+
enum: null,
|
|
154921
|
+
pattern: null,
|
|
154922
|
+
examples: [],
|
|
154923
|
+
fields: []
|
|
154924
|
+
},
|
|
154925
|
+
{
|
|
154926
|
+
name: "regime",
|
|
154927
|
+
in: "query",
|
|
154928
|
+
required: true,
|
|
154929
|
+
description: null,
|
|
154930
|
+
type: "string",
|
|
154931
|
+
enum: null,
|
|
154932
|
+
pattern: null,
|
|
154933
|
+
examples: [],
|
|
154934
|
+
fields: []
|
|
154935
|
+
}
|
|
154936
|
+
],
|
|
154937
|
+
examples: []
|
|
154938
|
+
},
|
|
154939
|
+
v2ReportingObligationsDisable: {
|
|
154940
|
+
name: "v2ReportingObligationsDisable",
|
|
154941
|
+
method: "DELETE",
|
|
154942
|
+
url: "/api/v2/reporting/obligations/{obligationId}",
|
|
154943
|
+
summary: "Disable a reporting obligation",
|
|
154944
|
+
description: "Stops new filing periods. Open periods run to completion and the published versions stay readable, because a duty the organization once owed is part of its record. There is no delete.",
|
|
154945
|
+
help: "Stops new filing periods. Open periods run to completion and the published versions stay readable, because a duty the organization once owed is part of its record. There is no delete.",
|
|
154946
|
+
tags: [
|
|
154947
|
+
"Regulatory reporting"
|
|
154948
|
+
],
|
|
154949
|
+
pathParams: [
|
|
154950
|
+
{
|
|
154951
|
+
name: "obligationId",
|
|
154952
|
+
in: "path",
|
|
154953
|
+
required: true,
|
|
154954
|
+
description: null,
|
|
154955
|
+
type: "string",
|
|
154956
|
+
enum: null,
|
|
154957
|
+
pattern: null,
|
|
154958
|
+
examples: [],
|
|
154959
|
+
fields: []
|
|
154960
|
+
}
|
|
154961
|
+
],
|
|
154962
|
+
queryParams: [],
|
|
154963
|
+
headerParams: [
|
|
154964
|
+
{
|
|
154965
|
+
name: "Idempotency-Key",
|
|
154966
|
+
in: "header",
|
|
154967
|
+
required: false,
|
|
154968
|
+
description: "Client-generated retry key for one mutation. Reuse it only for the same method, path, and body. If you omit it, the platform generates a UUIDv7 key you cannot replay after a lost response.",
|
|
154969
|
+
type: "string",
|
|
154970
|
+
enum: null,
|
|
154971
|
+
pattern: null,
|
|
154972
|
+
examples: [],
|
|
154973
|
+
fields: []
|
|
154974
|
+
},
|
|
154975
|
+
{
|
|
154976
|
+
name: "Prefer",
|
|
154977
|
+
in: "header",
|
|
154978
|
+
required: false,
|
|
154979
|
+
description: "RFC 7240 response-timing preference. Absent or `respond-async` returns 202 immediately. `wait=N` waits up to N seconds, clamped to 5 through 99. `respond-async, wait=N` waits and then degrades to 202. Poll `Location` after 202 instead of resubmitting.",
|
|
154980
|
+
type: "string",
|
|
154981
|
+
enum: null,
|
|
154982
|
+
pattern: null,
|
|
154983
|
+
examples: [],
|
|
154984
|
+
fields: []
|
|
154985
|
+
}
|
|
154986
|
+
],
|
|
154987
|
+
requestBodyDescription: null,
|
|
154988
|
+
hasRequestBody: false,
|
|
154989
|
+
bodyIsComplex: false,
|
|
154990
|
+
bodyFields: [],
|
|
154991
|
+
examples: []
|
|
154992
|
+
},
|
|
154993
|
+
v2ReportingObligationsRead: {
|
|
154994
|
+
name: "v2ReportingObligationsRead",
|
|
154995
|
+
method: "GET",
|
|
154996
|
+
url: "/api/v2/reporting/obligations/{obligationId}",
|
|
154997
|
+
summary: "Read a reporting obligation",
|
|
154998
|
+
description: "Returns one obligation as configured, with the version pointer naming its latest published version. An obligation outside the active organization answers 404. Repeating the request is safe.",
|
|
154999
|
+
help: "Returns one obligation as configured, with the version pointer naming its latest published version. An obligation outside the active organization answers 404. Repeating the request is safe.",
|
|
155000
|
+
tags: [
|
|
155001
|
+
"Regulatory reporting"
|
|
155002
|
+
],
|
|
155003
|
+
pathParams: [
|
|
155004
|
+
{
|
|
155005
|
+
name: "obligationId",
|
|
155006
|
+
in: "path",
|
|
155007
|
+
required: true,
|
|
155008
|
+
description: null,
|
|
155009
|
+
type: "string",
|
|
155010
|
+
enum: null,
|
|
155011
|
+
pattern: null,
|
|
155012
|
+
examples: [],
|
|
155013
|
+
fields: []
|
|
155014
|
+
}
|
|
155015
|
+
],
|
|
155016
|
+
queryParams: [],
|
|
155017
|
+
headerParams: [],
|
|
155018
|
+
requestBodyDescription: null,
|
|
155019
|
+
hasRequestBody: false,
|
|
155020
|
+
bodyIsComplex: false,
|
|
155021
|
+
bodyFields: [],
|
|
155022
|
+
examples: []
|
|
155023
|
+
},
|
|
155024
|
+
v2ReportingObligationsUpdate: {
|
|
155025
|
+
name: "v2ReportingObligationsUpdate",
|
|
155026
|
+
method: "PUT",
|
|
155027
|
+
url: "/api/v2/reporting/obligations/{obligationId}",
|
|
155028
|
+
summary: "Update a reporting obligation draft",
|
|
155029
|
+
description: "Replaces the draft configuration. Published versions are untouched, so a filing already generated stays explainable by the version it was generated under. A platform catalog obligation answers 409.",
|
|
155030
|
+
help: "Replaces the draft configuration. Published versions are untouched, so a filing already generated stays explainable by the version it was generated under. A platform catalog obligation answers 409.",
|
|
155031
|
+
tags: [
|
|
155032
|
+
"Regulatory reporting"
|
|
155033
|
+
],
|
|
155034
|
+
pathParams: [
|
|
155035
|
+
{
|
|
155036
|
+
name: "obligationId",
|
|
155037
|
+
in: "path",
|
|
155038
|
+
required: true,
|
|
155039
|
+
description: null,
|
|
155040
|
+
type: "string",
|
|
155041
|
+
enum: null,
|
|
155042
|
+
pattern: null,
|
|
155043
|
+
examples: [],
|
|
155044
|
+
fields: []
|
|
155045
|
+
}
|
|
155046
|
+
],
|
|
155047
|
+
queryParams: [],
|
|
155048
|
+
headerParams: [
|
|
155049
|
+
{
|
|
155050
|
+
name: "Idempotency-Key",
|
|
155051
|
+
in: "header",
|
|
155052
|
+
required: false,
|
|
155053
|
+
description: "Client-generated retry key for one mutation. Reuse it only for the same method, path, and body. If you omit it, the platform generates a UUIDv7 key you cannot replay after a lost response.",
|
|
155054
|
+
type: "string",
|
|
155055
|
+
enum: null,
|
|
155056
|
+
pattern: null,
|
|
155057
|
+
examples: [],
|
|
155058
|
+
fields: []
|
|
155059
|
+
},
|
|
155060
|
+
{
|
|
155061
|
+
name: "Prefer",
|
|
155062
|
+
in: "header",
|
|
155063
|
+
required: false,
|
|
155064
|
+
description: "RFC 7240 response-timing preference. Absent or `respond-async` returns 202 immediately. `wait=N` waits up to N seconds, clamped to 5 through 99. `respond-async, wait=N` waits and then degrades to 202. Poll `Location` after 202 instead of resubmitting.",
|
|
155065
|
+
type: "string",
|
|
155066
|
+
enum: null,
|
|
155067
|
+
pattern: null,
|
|
155068
|
+
examples: [],
|
|
155069
|
+
fields: []
|
|
155070
|
+
}
|
|
155071
|
+
],
|
|
155072
|
+
requestBodyDescription: "A new or updated obligation draft. Drafts are mutable; a published version never is.",
|
|
155073
|
+
hasRequestBody: true,
|
|
155074
|
+
bodyIsComplex: true,
|
|
155075
|
+
bodyFields: [
|
|
155076
|
+
{
|
|
155077
|
+
name: "name",
|
|
155078
|
+
in: "query",
|
|
155079
|
+
required: true,
|
|
155080
|
+
description: null,
|
|
155081
|
+
type: "string",
|
|
155082
|
+
enum: null,
|
|
155083
|
+
pattern: null,
|
|
155084
|
+
examples: [],
|
|
155085
|
+
fields: []
|
|
155086
|
+
},
|
|
155087
|
+
{
|
|
155088
|
+
name: "regime",
|
|
155089
|
+
in: "query",
|
|
155090
|
+
required: true,
|
|
155091
|
+
description: null,
|
|
155092
|
+
type: "string",
|
|
155093
|
+
enum: null,
|
|
155094
|
+
pattern: null,
|
|
155095
|
+
examples: [],
|
|
155096
|
+
fields: []
|
|
155097
|
+
}
|
|
155098
|
+
],
|
|
155099
|
+
examples: []
|
|
155100
|
+
},
|
|
155101
|
+
v2ReportingObligationsPublish: {
|
|
155102
|
+
name: "v2ReportingObligationsPublish",
|
|
155103
|
+
method: "POST",
|
|
155104
|
+
url: "/api/v2/reporting/obligations/{obligationId}/publish",
|
|
155105
|
+
summary: "Publish a reporting obligation version",
|
|
155106
|
+
description: "Freezes the current draft as the next version. From then on, filing periods materialize against it. An obligation requiring maker-checker sign-off is refused when the organization has fewer than two people who can sign, because that is a deadlock discovered on a filing deadline rather than a policy.",
|
|
155107
|
+
help: "Freezes the current draft as the next version. From then on, filing periods materialize against it. An obligation requiring maker-checker sign-off is refused when the organization has fewer than two people who can sign, because that is a deadlock discovered on a filing deadline rather than a policy.",
|
|
155108
|
+
tags: [
|
|
155109
|
+
"Regulatory reporting"
|
|
155110
|
+
],
|
|
155111
|
+
pathParams: [
|
|
155112
|
+
{
|
|
155113
|
+
name: "obligationId",
|
|
155114
|
+
in: "path",
|
|
155115
|
+
required: true,
|
|
155116
|
+
description: null,
|
|
155117
|
+
type: "string",
|
|
155118
|
+
enum: null,
|
|
155119
|
+
pattern: null,
|
|
155120
|
+
examples: [],
|
|
155121
|
+
fields: []
|
|
155122
|
+
}
|
|
155123
|
+
],
|
|
155124
|
+
queryParams: [],
|
|
155125
|
+
headerParams: [
|
|
155126
|
+
{
|
|
155127
|
+
name: "Idempotency-Key",
|
|
155128
|
+
in: "header",
|
|
155129
|
+
required: false,
|
|
155130
|
+
description: "Client-generated retry key for one mutation. Reuse it only for the same method, path, and body. If you omit it, the platform generates a UUIDv7 key you cannot replay after a lost response.",
|
|
155131
|
+
type: "string",
|
|
155132
|
+
enum: null,
|
|
155133
|
+
pattern: null,
|
|
155134
|
+
examples: [],
|
|
155135
|
+
fields: []
|
|
155136
|
+
},
|
|
155137
|
+
{
|
|
155138
|
+
name: "Prefer",
|
|
155139
|
+
in: "header",
|
|
155140
|
+
required: false,
|
|
155141
|
+
description: "RFC 7240 response-timing preference. Absent or `respond-async` returns 202 immediately. `wait=N` waits up to N seconds, clamped to 5 through 99. `respond-async, wait=N` waits and then degrades to 202. Poll `Location` after 202 instead of resubmitting.",
|
|
155142
|
+
type: "string",
|
|
155143
|
+
enum: null,
|
|
155144
|
+
pattern: null,
|
|
155145
|
+
examples: [],
|
|
155146
|
+
fields: []
|
|
155147
|
+
}
|
|
155148
|
+
],
|
|
155149
|
+
requestBodyDescription: null,
|
|
155150
|
+
hasRequestBody: false,
|
|
155151
|
+
bodyIsComplex: false,
|
|
155152
|
+
bodyFields: [],
|
|
155153
|
+
examples: []
|
|
155154
|
+
},
|
|
155155
|
+
v2ReportingObligationsReadVersion: {
|
|
155156
|
+
name: "v2ReportingObligationsReadVersion",
|
|
155157
|
+
method: "GET",
|
|
155158
|
+
url: "/api/v2/reporting/obligations/{obligationId}/versions/{version}",
|
|
155159
|
+
summary: "Read a published obligation version",
|
|
155160
|
+
description: "Returns one frozen version. A published version is never updated and never deleted, so this is what an auditor reads to see what the organization believed it owed at the time. Repeating the request is safe.",
|
|
155161
|
+
help: "Returns one frozen version. A published version is never updated and never deleted, so this is what an auditor reads to see what the organization believed it owed at the time. Repeating the request is safe.",
|
|
155162
|
+
tags: [
|
|
155163
|
+
"Regulatory reporting"
|
|
155164
|
+
],
|
|
155165
|
+
pathParams: [
|
|
155166
|
+
{
|
|
155167
|
+
name: "obligationId",
|
|
155168
|
+
in: "path",
|
|
155169
|
+
required: true,
|
|
155170
|
+
description: null,
|
|
155171
|
+
type: "string",
|
|
155172
|
+
enum: null,
|
|
155173
|
+
pattern: null,
|
|
155174
|
+
examples: [],
|
|
155175
|
+
fields: []
|
|
155176
|
+
},
|
|
155177
|
+
{
|
|
155178
|
+
name: "version",
|
|
155179
|
+
in: "path",
|
|
155180
|
+
required: true,
|
|
155181
|
+
description: null,
|
|
155182
|
+
type: "string",
|
|
155183
|
+
enum: null,
|
|
155184
|
+
pattern: null,
|
|
155185
|
+
examples: [],
|
|
155186
|
+
fields: []
|
|
155187
|
+
}
|
|
155188
|
+
],
|
|
155189
|
+
queryParams: [],
|
|
155190
|
+
headerParams: [],
|
|
155191
|
+
requestBodyDescription: null,
|
|
155192
|
+
hasRequestBody: false,
|
|
155193
|
+
bodyIsComplex: false,
|
|
155194
|
+
bodyFields: [],
|
|
155195
|
+
examples: []
|
|
155196
|
+
},
|
|
155197
|
+
v2ReportingSubmissionsSubmitForReview: {
|
|
155198
|
+
name: "v2ReportingSubmissionsSubmitForReview",
|
|
155199
|
+
method: "POST",
|
|
155200
|
+
url: "/api/v2/reporting/submissions/{submissionId}/submit-for-review",
|
|
155201
|
+
summary: "Put a submission up for approval",
|
|
155202
|
+
description: "Moves a reviewed submission to pending approval. Only a submission that passed validation can be put up; a blocked one is fixed by regenerating, because the block is about what the artifact says.",
|
|
155203
|
+
help: "Moves a reviewed submission to pending approval. Only a submission that passed validation can be put up; a blocked one is fixed by regenerating, because the block is about what the artifact says.",
|
|
155204
|
+
tags: [
|
|
155205
|
+
"Regulatory reporting"
|
|
155206
|
+
],
|
|
155207
|
+
pathParams: [
|
|
155208
|
+
{
|
|
155209
|
+
name: "submissionId",
|
|
155210
|
+
in: "path",
|
|
155211
|
+
required: true,
|
|
155212
|
+
description: null,
|
|
155213
|
+
type: "string",
|
|
155214
|
+
enum: null,
|
|
155215
|
+
pattern: null,
|
|
155216
|
+
examples: [],
|
|
155217
|
+
fields: []
|
|
155218
|
+
}
|
|
155219
|
+
],
|
|
155220
|
+
queryParams: [],
|
|
155221
|
+
headerParams: [
|
|
155222
|
+
{
|
|
155223
|
+
name: "Idempotency-Key",
|
|
155224
|
+
in: "header",
|
|
155225
|
+
required: false,
|
|
155226
|
+
description: "Client-generated retry key for one mutation. Reuse it only for the same method, path, and body. If you omit it, the platform generates a UUIDv7 key you cannot replay after a lost response.",
|
|
155227
|
+
type: "string",
|
|
155228
|
+
enum: null,
|
|
155229
|
+
pattern: null,
|
|
155230
|
+
examples: [],
|
|
155231
|
+
fields: []
|
|
155232
|
+
},
|
|
155233
|
+
{
|
|
155234
|
+
name: "Prefer",
|
|
155235
|
+
in: "header",
|
|
155236
|
+
required: false,
|
|
155237
|
+
description: "RFC 7240 response-timing preference. Absent or `respond-async` returns 202 immediately. `wait=N` waits up to N seconds, clamped to 5 through 99. `respond-async, wait=N` waits and then degrades to 202. Poll `Location` after 202 instead of resubmitting.",
|
|
155238
|
+
type: "string",
|
|
155239
|
+
enum: null,
|
|
155240
|
+
pattern: null,
|
|
155241
|
+
examples: [],
|
|
155242
|
+
fields: []
|
|
155243
|
+
}
|
|
155244
|
+
],
|
|
155245
|
+
requestBodyDescription: null,
|
|
155246
|
+
hasRequestBody: false,
|
|
155247
|
+
bodyIsComplex: false,
|
|
155248
|
+
bodyFields: [],
|
|
155249
|
+
examples: []
|
|
155250
|
+
},
|
|
155251
|
+
v2ReportingSubmissionsApprove: {
|
|
155252
|
+
name: "v2ReportingSubmissionsApprove",
|
|
155253
|
+
method: "POST",
|
|
155254
|
+
url: "/api/v2/reporting/submissions/{submissionId}/approve",
|
|
155255
|
+
summary: "Approve a submission",
|
|
155256
|
+
description: "Signs off on a submission. The approver must be someone other than the person who prepared it, must not be an operator acting as another user, and names the artifact digest they reviewed. Approving a submission that has been regenerated since is refused rather than applied to different bytes. Two approvers acting at once resolve to one winner and one conflict.",
|
|
155257
|
+
help: "Signs off on a submission. The approver must be someone other than the person who prepared it, must not be an operator acting as another user, and names the artifact digest they reviewed. Approving a submission that has been regenerated since is refused rather than applied to different bytes. Two approvers acting at once resolve to one winner and one conflict.",
|
|
155258
|
+
tags: [
|
|
155259
|
+
"Regulatory reporting"
|
|
155260
|
+
],
|
|
155261
|
+
pathParams: [
|
|
155262
|
+
{
|
|
155263
|
+
name: "submissionId",
|
|
155264
|
+
in: "path",
|
|
155265
|
+
required: true,
|
|
155266
|
+
description: null,
|
|
155267
|
+
type: "string",
|
|
155268
|
+
enum: null,
|
|
155269
|
+
pattern: null,
|
|
155270
|
+
examples: [],
|
|
155271
|
+
fields: []
|
|
155272
|
+
}
|
|
155273
|
+
],
|
|
155274
|
+
queryParams: [],
|
|
155275
|
+
headerParams: [
|
|
155276
|
+
{
|
|
155277
|
+
name: "Idempotency-Key",
|
|
155278
|
+
in: "header",
|
|
155279
|
+
required: false,
|
|
155280
|
+
description: "Client-generated retry key for one mutation. Reuse it only for the same method, path, and body. If you omit it, the platform generates a UUIDv7 key you cannot replay after a lost response.",
|
|
155281
|
+
type: "string",
|
|
155282
|
+
enum: null,
|
|
155283
|
+
pattern: null,
|
|
155284
|
+
examples: [],
|
|
155285
|
+
fields: []
|
|
155286
|
+
},
|
|
155287
|
+
{
|
|
155288
|
+
name: "Prefer",
|
|
155289
|
+
in: "header",
|
|
155290
|
+
required: false,
|
|
155291
|
+
description: "RFC 7240 response-timing preference. Absent or `respond-async` returns 202 immediately. `wait=N` waits up to N seconds, clamped to 5 through 99. `respond-async, wait=N` waits and then degrades to 202. Poll `Location` after 202 instead of resubmitting.",
|
|
155292
|
+
type: "string",
|
|
155293
|
+
enum: null,
|
|
155294
|
+
pattern: null,
|
|
155295
|
+
examples: [],
|
|
155296
|
+
fields: []
|
|
155297
|
+
}
|
|
155298
|
+
],
|
|
155299
|
+
requestBodyDescription: null,
|
|
155300
|
+
hasRequestBody: true,
|
|
155301
|
+
bodyIsComplex: false,
|
|
155302
|
+
bodyFields: [
|
|
155303
|
+
{
|
|
155304
|
+
name: "approvedDigest",
|
|
155305
|
+
in: "query",
|
|
155306
|
+
required: true,
|
|
155307
|
+
description: null,
|
|
155308
|
+
type: "string",
|
|
155309
|
+
enum: null,
|
|
155310
|
+
pattern: null,
|
|
155311
|
+
examples: [],
|
|
155312
|
+
fields: []
|
|
155313
|
+
},
|
|
155314
|
+
{
|
|
155315
|
+
name: "expectedRowVersion",
|
|
155316
|
+
in: "query",
|
|
155317
|
+
required: true,
|
|
155318
|
+
description: null,
|
|
155319
|
+
type: "integer",
|
|
155320
|
+
enum: null,
|
|
155321
|
+
pattern: null,
|
|
155322
|
+
examples: [],
|
|
155323
|
+
fields: []
|
|
155324
|
+
}
|
|
155325
|
+
],
|
|
155326
|
+
examples: []
|
|
155327
|
+
},
|
|
155328
|
+
v2ReportingSubmissionsAcknowledge: {
|
|
155329
|
+
name: "v2ReportingSubmissionsAcknowledge",
|
|
155330
|
+
method: "POST",
|
|
155331
|
+
url: "/api/v2/reporting/submissions/{submissionId}/acknowledge",
|
|
155332
|
+
summary: "Enter an acknowledgement",
|
|
155333
|
+
description: "Records the authority's acknowledgement, which discharges the filing period's duty and stops its overdue clock. Its own permission, and its own separation of duties: the entering user must differ from the approver. The claimed authority timestamp is recorded beside the server's receipt time, and one preceding submission or reaching far past entry is refused. Entering the same receipt reference twice changes nothing.",
|
|
155334
|
+
help: "Records the authority's acknowledgement, which discharges the filing period's duty and stops its overdue clock. Its own permission, and its own separation of duties: the entering user must differ from the approver. The claimed authority timestamp is recorded beside the server's receipt time, and one preceding submission or reaching far past entry is refused. Entering the same receipt reference twice changes nothing.",
|
|
155335
|
+
tags: [
|
|
155336
|
+
"Regulatory reporting"
|
|
155337
|
+
],
|
|
155338
|
+
pathParams: [
|
|
155339
|
+
{
|
|
155340
|
+
name: "submissionId",
|
|
155341
|
+
in: "path",
|
|
155342
|
+
required: true,
|
|
155343
|
+
description: null,
|
|
155344
|
+
type: "string",
|
|
155345
|
+
enum: null,
|
|
155346
|
+
pattern: null,
|
|
155347
|
+
examples: [],
|
|
155348
|
+
fields: []
|
|
155349
|
+
}
|
|
155350
|
+
],
|
|
155351
|
+
queryParams: [],
|
|
155352
|
+
headerParams: [
|
|
155353
|
+
{
|
|
155354
|
+
name: "Idempotency-Key",
|
|
155355
|
+
in: "header",
|
|
155356
|
+
required: false,
|
|
155357
|
+
description: "Client-generated retry key for one mutation. Reuse it only for the same method, path, and body. If you omit it, the platform generates a UUIDv7 key you cannot replay after a lost response.",
|
|
155358
|
+
type: "string",
|
|
155359
|
+
enum: null,
|
|
155360
|
+
pattern: null,
|
|
155361
|
+
examples: [],
|
|
155362
|
+
fields: []
|
|
155363
|
+
},
|
|
155364
|
+
{
|
|
155365
|
+
name: "Prefer",
|
|
155366
|
+
in: "header",
|
|
155367
|
+
required: false,
|
|
155368
|
+
description: "RFC 7240 response-timing preference. Absent or `respond-async` returns 202 immediately. `wait=N` waits up to N seconds, clamped to 5 through 99. `respond-async, wait=N` waits and then degrades to 202. Poll `Location` after 202 instead of resubmitting.",
|
|
155369
|
+
type: "string",
|
|
155370
|
+
enum: null,
|
|
155371
|
+
pattern: null,
|
|
155372
|
+
examples: [],
|
|
155373
|
+
fields: []
|
|
155374
|
+
}
|
|
155375
|
+
],
|
|
155376
|
+
requestBodyDescription: null,
|
|
155377
|
+
hasRequestBody: true,
|
|
155378
|
+
bodyIsComplex: true,
|
|
155379
|
+
bodyFields: [
|
|
155380
|
+
{
|
|
155381
|
+
name: "receiptReference",
|
|
155382
|
+
in: "query",
|
|
155383
|
+
required: true,
|
|
155384
|
+
description: null,
|
|
155385
|
+
type: "string",
|
|
155386
|
+
enum: null,
|
|
155387
|
+
pattern: null,
|
|
155388
|
+
examples: [],
|
|
155389
|
+
fields: []
|
|
155390
|
+
}
|
|
155391
|
+
],
|
|
155392
|
+
examples: []
|
|
155393
|
+
},
|
|
155394
|
+
v2ReportingTrailList: {
|
|
155395
|
+
name: "v2ReportingTrailList",
|
|
155396
|
+
method: "GET",
|
|
155397
|
+
url: "/api/v2/reporting/trail",
|
|
155398
|
+
summary: "Read the audit trail",
|
|
155399
|
+
description: "Returns the recorded actions of the active organization in a time window. Reading the trail is itself recorded on the trail. Only this organization's rows are returned; platform-administration rows, which belong to no organization, are visible on the operator surface instead.",
|
|
155400
|
+
help: "Returns the recorded actions of the active organization in a time window. Reading the trail is itself recorded on the trail. Only this organization's rows are returned; platform-administration rows, which belong to no organization, are visible on the operator surface instead.",
|
|
155401
|
+
tags: [
|
|
155402
|
+
"Regulatory reporting"
|
|
155403
|
+
],
|
|
155404
|
+
pathParams: [],
|
|
155405
|
+
queryParams: [
|
|
155406
|
+
{
|
|
155407
|
+
name: "from",
|
|
155408
|
+
in: "query",
|
|
155409
|
+
required: true,
|
|
155410
|
+
description: null,
|
|
155411
|
+
type: "object",
|
|
155412
|
+
enum: null,
|
|
155413
|
+
pattern: null,
|
|
155414
|
+
examples: [],
|
|
155415
|
+
fields: []
|
|
155416
|
+
},
|
|
155417
|
+
{
|
|
155418
|
+
name: "to",
|
|
155419
|
+
in: "query",
|
|
155420
|
+
required: true,
|
|
155421
|
+
description: null,
|
|
155422
|
+
type: "object",
|
|
155423
|
+
enum: null,
|
|
155424
|
+
pattern: null,
|
|
155425
|
+
examples: [],
|
|
155426
|
+
fields: []
|
|
155427
|
+
},
|
|
155428
|
+
{
|
|
155429
|
+
name: "target",
|
|
155430
|
+
in: "query",
|
|
155431
|
+
required: false,
|
|
155432
|
+
description: null,
|
|
155433
|
+
type: "string",
|
|
155434
|
+
enum: null,
|
|
155435
|
+
pattern: null,
|
|
155436
|
+
examples: [],
|
|
155437
|
+
fields: []
|
|
155438
|
+
}
|
|
155439
|
+
],
|
|
155440
|
+
headerParams: [],
|
|
155441
|
+
requestBodyDescription: null,
|
|
155442
|
+
hasRequestBody: false,
|
|
155443
|
+
bodyIsComplex: false,
|
|
155444
|
+
bodyFields: [],
|
|
155445
|
+
examples: []
|
|
155446
|
+
},
|
|
155447
|
+
v2ReportingTrailForResource: {
|
|
155448
|
+
name: "v2ReportingTrailForResource",
|
|
155449
|
+
method: "GET",
|
|
155450
|
+
url: "/api/v2/reporting/trail/resource",
|
|
155451
|
+
summary: "Read one resource's history",
|
|
155452
|
+
description: "Returns every recorded action against one resource, across every actor and every route that touched it. This is the shape an investigation asks for: what happened to this thing, rather than what did this person do.",
|
|
155453
|
+
help: "Returns every recorded action against one resource, across every actor and every route that touched it. This is the shape an investigation asks for: what happened to this thing, rather than what did this person do.",
|
|
155454
|
+
tags: [
|
|
155455
|
+
"Regulatory reporting"
|
|
155456
|
+
],
|
|
155457
|
+
pathParams: [],
|
|
155458
|
+
queryParams: [
|
|
155459
|
+
{
|
|
155460
|
+
name: "from",
|
|
155461
|
+
in: "query",
|
|
155462
|
+
required: true,
|
|
155463
|
+
description: null,
|
|
155464
|
+
type: "object",
|
|
155465
|
+
enum: null,
|
|
155466
|
+
pattern: null,
|
|
155467
|
+
examples: [],
|
|
155468
|
+
fields: []
|
|
155469
|
+
},
|
|
155470
|
+
{
|
|
155471
|
+
name: "to",
|
|
155472
|
+
in: "query",
|
|
155473
|
+
required: true,
|
|
155474
|
+
description: null,
|
|
155475
|
+
type: "object",
|
|
155476
|
+
enum: null,
|
|
155477
|
+
pattern: null,
|
|
155478
|
+
examples: [],
|
|
155479
|
+
fields: []
|
|
155480
|
+
},
|
|
155481
|
+
{
|
|
155482
|
+
name: "resource",
|
|
155483
|
+
in: "query",
|
|
155484
|
+
required: true,
|
|
155485
|
+
description: null,
|
|
155486
|
+
type: "string",
|
|
155487
|
+
enum: null,
|
|
155488
|
+
pattern: null,
|
|
155489
|
+
examples: [],
|
|
155490
|
+
fields: []
|
|
155491
|
+
}
|
|
155492
|
+
],
|
|
155493
|
+
headerParams: [],
|
|
155494
|
+
requestBodyDescription: null,
|
|
155495
|
+
hasRequestBody: false,
|
|
155496
|
+
bodyIsComplex: false,
|
|
155497
|
+
bodyFields: [],
|
|
155498
|
+
examples: []
|
|
155499
|
+
},
|
|
155500
|
+
v2ReportingTrailOperatorList: {
|
|
155501
|
+
name: "v2ReportingTrailOperatorList",
|
|
155502
|
+
method: "GET",
|
|
155503
|
+
url: "/api/v2/reporting/trail/operator",
|
|
155504
|
+
summary: "Read the audit trail across organizations",
|
|
155505
|
+
description: "Returns recorded actions across every organization, including platform-administration rows that belong to none. Requires platform administration, and the access is itself recorded: a cross-organization read of the audit trail is the most sensitive read on the platform.",
|
|
155506
|
+
help: "Returns recorded actions across every organization, including platform-administration rows that belong to none. Requires platform administration, and the access is itself recorded: a cross-organization read of the audit trail is the most sensitive read on the platform.",
|
|
155507
|
+
tags: [
|
|
155508
|
+
"Regulatory reporting"
|
|
155509
|
+
],
|
|
155510
|
+
pathParams: [],
|
|
155511
|
+
queryParams: [
|
|
155512
|
+
{
|
|
155513
|
+
name: "from",
|
|
155514
|
+
in: "query",
|
|
155515
|
+
required: true,
|
|
155516
|
+
description: null,
|
|
155517
|
+
type: "object",
|
|
155518
|
+
enum: null,
|
|
155519
|
+
pattern: null,
|
|
155520
|
+
examples: [],
|
|
155521
|
+
fields: []
|
|
155522
|
+
},
|
|
155523
|
+
{
|
|
155524
|
+
name: "to",
|
|
155525
|
+
in: "query",
|
|
155526
|
+
required: true,
|
|
155527
|
+
description: null,
|
|
155528
|
+
type: "object",
|
|
155529
|
+
enum: null,
|
|
155530
|
+
pattern: null,
|
|
155531
|
+
examples: [],
|
|
155532
|
+
fields: []
|
|
155533
|
+
},
|
|
155534
|
+
{
|
|
155535
|
+
name: "target",
|
|
155536
|
+
in: "query",
|
|
155537
|
+
required: false,
|
|
155538
|
+
description: null,
|
|
155539
|
+
type: "string",
|
|
155540
|
+
enum: null,
|
|
155541
|
+
pattern: null,
|
|
155542
|
+
examples: [],
|
|
155543
|
+
fields: []
|
|
155544
|
+
}
|
|
155545
|
+
],
|
|
155546
|
+
headerParams: [],
|
|
155547
|
+
requestBodyDescription: null,
|
|
155548
|
+
hasRequestBody: false,
|
|
155549
|
+
bodyIsComplex: false,
|
|
155550
|
+
bodyFields: [],
|
|
155551
|
+
examples: []
|
|
155552
|
+
},
|
|
155553
|
+
v2ReportingTrailEntry: {
|
|
155554
|
+
name: "v2ReportingTrailEntry",
|
|
155555
|
+
method: "GET",
|
|
155556
|
+
url: "/api/v2/reporting/trail/{entryId}",
|
|
155557
|
+
summary: "Read one audit trail entry",
|
|
155558
|
+
description: "Returns one recorded action. An entry belonging to another organization answers 404 rather than 403: a 403 would confirm the identifier exists, which is itself a cross-organization disclosure.",
|
|
155559
|
+
help: "Returns one recorded action. An entry belonging to another organization answers 404 rather than 403: a 403 would confirm the identifier exists, which is itself a cross-organization disclosure.",
|
|
155560
|
+
tags: [
|
|
155561
|
+
"Regulatory reporting"
|
|
155562
|
+
],
|
|
155563
|
+
pathParams: [
|
|
155564
|
+
{
|
|
155565
|
+
name: "entryId",
|
|
155566
|
+
in: "path",
|
|
155567
|
+
required: true,
|
|
155568
|
+
description: null,
|
|
155569
|
+
type: "string",
|
|
155570
|
+
enum: null,
|
|
155571
|
+
pattern: null,
|
|
155572
|
+
examples: [],
|
|
155573
|
+
fields: []
|
|
155574
|
+
}
|
|
155575
|
+
],
|
|
155576
|
+
queryParams: [
|
|
155577
|
+
{
|
|
155578
|
+
name: "from",
|
|
155579
|
+
in: "query",
|
|
155580
|
+
required: true,
|
|
155581
|
+
description: null,
|
|
155582
|
+
type: "object",
|
|
155583
|
+
enum: null,
|
|
155584
|
+
pattern: null,
|
|
155585
|
+
examples: [],
|
|
155586
|
+
fields: []
|
|
155587
|
+
},
|
|
155588
|
+
{
|
|
155589
|
+
name: "to",
|
|
155590
|
+
in: "query",
|
|
155591
|
+
required: true,
|
|
155592
|
+
description: null,
|
|
155593
|
+
type: "object",
|
|
155594
|
+
enum: null,
|
|
155595
|
+
pattern: null,
|
|
155596
|
+
examples: [],
|
|
155597
|
+
fields: []
|
|
155598
|
+
}
|
|
155599
|
+
],
|
|
155600
|
+
headerParams: [],
|
|
155601
|
+
requestBodyDescription: null,
|
|
155602
|
+
hasRequestBody: false,
|
|
155603
|
+
bodyIsComplex: false,
|
|
155604
|
+
bodyFields: [],
|
|
155605
|
+
examples: []
|
|
155606
|
+
},
|
|
154017
155607
|
socialSignIn: {
|
|
154018
155608
|
name: "socialSignIn",
|
|
154019
155609
|
method: "POST",
|
|
@@ -158371,6 +159961,7 @@ var openapi_surface_default = {
|
|
|
158371
159961
|
"Fees and pricing": "Read and configure token prices, transaction fees, AUM fees, fee exemptions, collection events, and reconciliation state.",
|
|
158372
159962
|
"Primary offerings": "Create and operate primary token offerings, investor purchases, allocations, claims, refunds, vesting, and offering documents.",
|
|
158373
159963
|
"Trading venue": "Trade platform tokens on permissioned central limit orderbook markets: market data, depth and trades, signed order placement and cancellation, participant working orders and blotter, and venue-operator market administration.",
|
|
159964
|
+
"Regulatory reporting": "Read the reporting duties the organisation owes and the filings that discharge them: obligations, filing periods with their deadlines, and the submissions made against a period. Reports are generated from platform data; a report refuses rather than approximates a figure it cannot derive.",
|
|
158374
159965
|
"XvP settlements": "Create and operate exchange-versus-payment settlements, including approvals, secret handling, execution, cancellation, and expiry recovery.",
|
|
158375
159966
|
Airdrops: "Inspect token distribution instances created by push, vesting, and time-bound airdrop factories.",
|
|
158376
159967
|
Governance: "Create proposals and polls, cast votes, manage execution, export results, and inspect token voting power and delegation.",
|
|
@@ -158874,7 +160465,7 @@ async function runCommand(context, operation, errorContext = UNKNOWN_COMMAND_ERR
|
|
|
158874
160465
|
// package.json
|
|
158875
160466
|
var package_default2 = {
|
|
158876
160467
|
name: "@settlemint/dalp-cli",
|
|
158877
|
-
version: "3.1.4-main.
|
|
160468
|
+
version: "3.1.4-main.32577438836",
|
|
158878
160469
|
private: false,
|
|
158879
160470
|
description: "CLI for the Digital Asset Lifecycle Platform \u2014 manage tokens, identities, compliance, and more from the command line.",
|
|
158880
160471
|
homepage: "https://settlemint.com",
|
|
@@ -160603,4 +162194,4 @@ if (false) {}
|
|
|
160603
162194
|
// src/bin.ts
|
|
160604
162195
|
await cli.serve();
|
|
160605
162196
|
|
|
160606
|
-
//# debugId=
|
|
162197
|
+
//# debugId=0B9A06DB5F29525D64756E2164756E21
|