@settlemint/dalp-cli 3.0.6-main.28375235681 → 3.0.6-main.28375790124
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 +77 -10
- package/package.json +1 -1
package/dist/dalp.js
CHANGED
|
@@ -61605,9 +61605,9 @@ var ENTRIES_INDEX = {
|
|
|
61605
61605
|
retryable: false,
|
|
61606
61606
|
expectedClientError: false,
|
|
61607
61607
|
public: {
|
|
61608
|
-
message: "
|
|
61609
|
-
why: "
|
|
61610
|
-
fix: "
|
|
61608
|
+
message: "Price feed system is not installed; ask an administrator to install it before setting a price",
|
|
61609
|
+
why: "Setting a token price routes through the price feed system, and this organization has no price feed system deployed yet.",
|
|
61610
|
+
fix: "Ask an administrator to install the price feed system for this organization, then set the price again."
|
|
61611
61611
|
},
|
|
61612
61612
|
observability: {
|
|
61613
61613
|
severity: "error",
|
|
@@ -68701,6 +68701,34 @@ var ENTRIES_INDEX = {
|
|
|
68701
68701
|
owner: "dapi",
|
|
68702
68702
|
orpcCode: "TOKEN_SALE_CANNOT_WITHDRAW_SALE_TOKEN_CURRENCY"
|
|
68703
68703
|
},
|
|
68704
|
+
"DALP-0680": {
|
|
68705
|
+
id: "DALP-0680",
|
|
68706
|
+
kind: "route",
|
|
68707
|
+
category: "client",
|
|
68708
|
+
status: 403,
|
|
68709
|
+
retryable: false,
|
|
68710
|
+
expectedClientError: true,
|
|
68711
|
+
public: {
|
|
68712
|
+
message: "Legacy compliance templates are turned off on this deployment",
|
|
68713
|
+
why: "This deployment runs with legacy (v1) compliance templates disabled, so the platform does not create a template pinned to the v1 compliance module set.",
|
|
68714
|
+
fix: "Create the template with the current compliance module set, or ask an operator to set `FEATURE_LEGACY_COMPLIANCE_TEMPLATES=true` on this deployment."
|
|
68715
|
+
},
|
|
68716
|
+
observability: {
|
|
68717
|
+
severity: "info",
|
|
68718
|
+
otelEventName: "dapi.error",
|
|
68719
|
+
metricAttributeKey: "dapi.error.id",
|
|
68720
|
+
dimensions: [
|
|
68721
|
+
"error.id",
|
|
68722
|
+
"error.category",
|
|
68723
|
+
"surface",
|
|
68724
|
+
"route",
|
|
68725
|
+
"status_class",
|
|
68726
|
+
"retryable"
|
|
68727
|
+
]
|
|
68728
|
+
},
|
|
68729
|
+
owner: "dapi",
|
|
68730
|
+
orpcCode: "SETTINGS_COMPLIANCE_LEGACY_TEMPLATES_DISABLED"
|
|
68731
|
+
},
|
|
68704
68732
|
"DALP-1001": {
|
|
68705
68733
|
id: "DALP-1001",
|
|
68706
68734
|
kind: "contract",
|
|
@@ -94300,6 +94328,7 @@ var DALP_ERROR_TYPED_FIELD_NAMES = {
|
|
|
94300
94328
|
"DALP-0677": [],
|
|
94301
94329
|
"DALP-0678": [],
|
|
94302
94330
|
"DALP-0679": [],
|
|
94331
|
+
"DALP-0680": [],
|
|
94303
94332
|
"DALP-1001": [
|
|
94304
94333
|
"args",
|
|
94305
94334
|
"correlationId",
|
|
@@ -104375,6 +104404,7 @@ var DALP_ERROR_DATA_SCHEMA_BY_ID = {
|
|
|
104375
104404
|
"DALP-0677": DALP_ORPC_ERROR_DATA_WIRE_SCHEMA,
|
|
104376
104405
|
"DALP-0678": DALP_ORPC_ERROR_DATA_WIRE_SCHEMA,
|
|
104377
104406
|
"DALP-0679": DALP_ORPC_ERROR_DATA_WIRE_SCHEMA,
|
|
104407
|
+
"DALP-0680": DALP_ORPC_ERROR_DATA_WIRE_SCHEMA,
|
|
104378
104408
|
"DALP-1001": DALP_ORPC_ERROR_DATA_BASE_SCHEMA.extend({
|
|
104379
104409
|
args: exports_external.record(exports_external.string(), exports_external.string()),
|
|
104380
104410
|
correlationId: exports_external.string(),
|
|
@@ -117177,6 +117207,10 @@ var CUSTOM_ERRORS = {
|
|
|
117177
117207
|
status: 500,
|
|
117178
117208
|
message: "Failed to update compliance template"
|
|
117179
117209
|
},
|
|
117210
|
+
SETTINGS_COMPLIANCE_LEGACY_TEMPLATES_DISABLED: {
|
|
117211
|
+
status: 403,
|
|
117212
|
+
message: "Legacy compliance templates are turned off on this deployment"
|
|
117213
|
+
},
|
|
117180
117214
|
SETTINGS_COMPLIANCE_TEMPLATE_INCOMPATIBLE_MODULE_SET: {
|
|
117181
117215
|
status: 422,
|
|
117182
117216
|
message: "Compliance template modules and controls must match the selected module set.",
|
|
@@ -118175,7 +118209,7 @@ var CUSTOM_ERRORS = {
|
|
|
118175
118209
|
},
|
|
118176
118210
|
TOKEN_PRICE_ISSUERSIGNEDSCALARFEEDFACTORY_ADDON_NOT_INSTALLED_DEPLOY_FEED_SETTING_PRICES: {
|
|
118177
118211
|
status: 500,
|
|
118178
|
-
message: "
|
|
118212
|
+
message: "Price feed system is not installed; ask an administrator to install it before setting a price"
|
|
118179
118213
|
},
|
|
118180
118214
|
TOKEN_PRICE_NOT_INDEXED_ENROLLED_CANNOT_BUILD_FEED_DESCRIPTION_NEW: {
|
|
118181
118215
|
status: 503,
|
|
@@ -122979,7 +123013,8 @@ var PublicConfigFeaturesSchema = exports_external.object({
|
|
|
122979
123013
|
i18nLanguageSelector: exports_external.boolean(),
|
|
122980
123014
|
changeEmail: exports_external.boolean(),
|
|
122981
123015
|
tokenSale: exports_external.boolean(),
|
|
122982
|
-
accountAbstraction: exports_external.boolean()
|
|
123016
|
+
accountAbstraction: exports_external.boolean(),
|
|
123017
|
+
legacyComplianceTemplates: exports_external.boolean()
|
|
122983
123018
|
});
|
|
122984
123019
|
var PublicConfigGetOutputSchema = exports_external.object({
|
|
122985
123020
|
app: exports_external.object({
|
|
@@ -135008,6 +135043,7 @@ var OrganizationV2DeployInputSchema = exports_external.object({
|
|
|
135008
135043
|
baseCurrency: fiatCurrency(),
|
|
135009
135044
|
targetCurrencies: exports_external.array(fiatCurrency()).min(1, "Pick at least one target currency for exchange-rate feeds"),
|
|
135010
135045
|
gasPauseEnabled: exports_external.boolean().optional(),
|
|
135046
|
+
aaEnabled: exports_external.boolean().optional(),
|
|
135011
135047
|
custody: CustodyProviderCredentialsSchema.optional()
|
|
135012
135048
|
}).superRefine((value22, ctx) => {
|
|
135013
135049
|
if (new Set(value22.targetCurrencies).size !== value22.targetCurrencies.length) {
|
|
@@ -144602,7 +144638,7 @@ function normalizeDalpBaseUrl(url2) {
|
|
|
144602
144638
|
}
|
|
144603
144639
|
var package_default = {
|
|
144604
144640
|
name: "@settlemint/dalp-sdk",
|
|
144605
|
-
version: "3.0.6-main.
|
|
144641
|
+
version: "3.0.6-main.28375790124",
|
|
144606
144642
|
private: false,
|
|
144607
144643
|
description: "Fully typed SDK for the DALP tokenization platform API",
|
|
144608
144644
|
homepage: "https://settlemint.com",
|
|
@@ -145784,6 +145820,7 @@ var DAPI_ROUTE_ERROR_IDS = {
|
|
|
145784
145820
|
"DALP-0677": "DALP-0677",
|
|
145785
145821
|
"DALP-0678": "DALP-0678",
|
|
145786
145822
|
"DALP-0679": "DALP-0679",
|
|
145823
|
+
"DALP-0680": "DALP-0680",
|
|
145787
145824
|
"DALP-9070": "DALP-9070",
|
|
145788
145825
|
"DALP-9071": "DALP-9071",
|
|
145789
145826
|
"DALP-9072": "DALP-9072",
|
|
@@ -145847,7 +145884,7 @@ var failedStateSet = new Set(FAILED_TRANSACTION_STATES);
|
|
|
145847
145884
|
// package.json
|
|
145848
145885
|
var package_default2 = {
|
|
145849
145886
|
name: "@settlemint/dalp-cli",
|
|
145850
|
-
version: "3.0.6-main.
|
|
145887
|
+
version: "3.0.6-main.28375790124",
|
|
145851
145888
|
private: false,
|
|
145852
145889
|
description: "CLI for the Digital Asset Lifecycle Platform — manage tokens, identities, compliance, and more from the command line.",
|
|
145853
145890
|
homepage: "https://settlemint.com",
|
|
@@ -156791,9 +156828,9 @@ var ENTRIES_INDEX2 = {
|
|
|
156791
156828
|
retryable: false,
|
|
156792
156829
|
expectedClientError: false,
|
|
156793
156830
|
public: {
|
|
156794
|
-
message: "
|
|
156795
|
-
why: "
|
|
156796
|
-
fix: "
|
|
156831
|
+
message: "Price feed system is not installed; ask an administrator to install it before setting a price",
|
|
156832
|
+
why: "Setting a token price routes through the price feed system, and this organization has no price feed system deployed yet.",
|
|
156833
|
+
fix: "Ask an administrator to install the price feed system for this organization, then set the price again."
|
|
156797
156834
|
},
|
|
156798
156835
|
observability: {
|
|
156799
156836
|
severity: "error",
|
|
@@ -163887,6 +163924,34 @@ var ENTRIES_INDEX2 = {
|
|
|
163887
163924
|
owner: "dapi",
|
|
163888
163925
|
orpcCode: "TOKEN_SALE_CANNOT_WITHDRAW_SALE_TOKEN_CURRENCY"
|
|
163889
163926
|
},
|
|
163927
|
+
"DALP-0680": {
|
|
163928
|
+
id: "DALP-0680",
|
|
163929
|
+
kind: "route",
|
|
163930
|
+
category: "client",
|
|
163931
|
+
status: 403,
|
|
163932
|
+
retryable: false,
|
|
163933
|
+
expectedClientError: true,
|
|
163934
|
+
public: {
|
|
163935
|
+
message: "Legacy compliance templates are turned off on this deployment",
|
|
163936
|
+
why: "This deployment runs with legacy (v1) compliance templates disabled, so the platform does not create a template pinned to the v1 compliance module set.",
|
|
163937
|
+
fix: "Create the template with the current compliance module set, or ask an operator to set `FEATURE_LEGACY_COMPLIANCE_TEMPLATES=true` on this deployment."
|
|
163938
|
+
},
|
|
163939
|
+
observability: {
|
|
163940
|
+
severity: "info",
|
|
163941
|
+
otelEventName: "dapi.error",
|
|
163942
|
+
metricAttributeKey: "dapi.error.id",
|
|
163943
|
+
dimensions: [
|
|
163944
|
+
"error.id",
|
|
163945
|
+
"error.category",
|
|
163946
|
+
"surface",
|
|
163947
|
+
"route",
|
|
163948
|
+
"status_class",
|
|
163949
|
+
"retryable"
|
|
163950
|
+
]
|
|
163951
|
+
},
|
|
163952
|
+
owner: "dapi",
|
|
163953
|
+
orpcCode: "SETTINGS_COMPLIANCE_LEGACY_TEMPLATES_DISABLED"
|
|
163954
|
+
},
|
|
163890
163955
|
"DALP-1001": {
|
|
163891
163956
|
id: "DALP-1001",
|
|
163892
163957
|
kind: "contract",
|
|
@@ -189503,6 +189568,7 @@ var DALP_ERROR_TYPED_FIELD_NAMES2 = {
|
|
|
189503
189568
|
"DALP-0677": [],
|
|
189504
189569
|
"DALP-0678": [],
|
|
189505
189570
|
"DALP-0679": [],
|
|
189571
|
+
"DALP-0680": [],
|
|
189506
189572
|
"DALP-1001": [
|
|
189507
189573
|
"args",
|
|
189508
189574
|
"correlationId",
|
|
@@ -199580,6 +199646,7 @@ var DALP_ERROR_DATA_SCHEMA_BY_ID2 = {
|
|
|
199580
199646
|
"DALP-0677": DALP_ORPC_ERROR_DATA_WIRE_SCHEMA2,
|
|
199581
199647
|
"DALP-0678": DALP_ORPC_ERROR_DATA_WIRE_SCHEMA2,
|
|
199582
199648
|
"DALP-0679": DALP_ORPC_ERROR_DATA_WIRE_SCHEMA2,
|
|
199649
|
+
"DALP-0680": DALP_ORPC_ERROR_DATA_WIRE_SCHEMA2,
|
|
199583
199650
|
"DALP-1001": DALP_ORPC_ERROR_DATA_BASE_SCHEMA2.extend({
|
|
199584
199651
|
args: exports_external.record(exports_external.string(), exports_external.string()),
|
|
199585
199652
|
correlationId: exports_external.string(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@settlemint/dalp-cli",
|
|
3
|
-
"version": "3.0.6-main.
|
|
3
|
+
"version": "3.0.6-main.28375790124",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "CLI for the Digital Asset Lifecycle Platform — manage tokens, identities, compliance, and more from the command line.",
|
|
6
6
|
"homepage": "https://settlemint.com",
|