@settlemint/dalp-cli 3.0.6-main.28375739495 → 3.0.6-main.28376692653
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 +76 -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({
|
|
@@ -144603,7 +144638,7 @@ function normalizeDalpBaseUrl(url2) {
|
|
|
144603
144638
|
}
|
|
144604
144639
|
var package_default = {
|
|
144605
144640
|
name: "@settlemint/dalp-sdk",
|
|
144606
|
-
version: "3.0.6-main.
|
|
144641
|
+
version: "3.0.6-main.28376692653",
|
|
144607
144642
|
private: false,
|
|
144608
144643
|
description: "Fully typed SDK for the DALP tokenization platform API",
|
|
144609
144644
|
homepage: "https://settlemint.com",
|
|
@@ -145785,6 +145820,7 @@ var DAPI_ROUTE_ERROR_IDS = {
|
|
|
145785
145820
|
"DALP-0677": "DALP-0677",
|
|
145786
145821
|
"DALP-0678": "DALP-0678",
|
|
145787
145822
|
"DALP-0679": "DALP-0679",
|
|
145823
|
+
"DALP-0680": "DALP-0680",
|
|
145788
145824
|
"DALP-9070": "DALP-9070",
|
|
145789
145825
|
"DALP-9071": "DALP-9071",
|
|
145790
145826
|
"DALP-9072": "DALP-9072",
|
|
@@ -145848,7 +145884,7 @@ var failedStateSet = new Set(FAILED_TRANSACTION_STATES);
|
|
|
145848
145884
|
// package.json
|
|
145849
145885
|
var package_default2 = {
|
|
145850
145886
|
name: "@settlemint/dalp-cli",
|
|
145851
|
-
version: "3.0.6-main.
|
|
145887
|
+
version: "3.0.6-main.28376692653",
|
|
145852
145888
|
private: false,
|
|
145853
145889
|
description: "CLI for the Digital Asset Lifecycle Platform — manage tokens, identities, compliance, and more from the command line.",
|
|
145854
145890
|
homepage: "https://settlemint.com",
|
|
@@ -156792,9 +156828,9 @@ var ENTRIES_INDEX2 = {
|
|
|
156792
156828
|
retryable: false,
|
|
156793
156829
|
expectedClientError: false,
|
|
156794
156830
|
public: {
|
|
156795
|
-
message: "
|
|
156796
|
-
why: "
|
|
156797
|
-
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."
|
|
156798
156834
|
},
|
|
156799
156835
|
observability: {
|
|
156800
156836
|
severity: "error",
|
|
@@ -163888,6 +163924,34 @@ var ENTRIES_INDEX2 = {
|
|
|
163888
163924
|
owner: "dapi",
|
|
163889
163925
|
orpcCode: "TOKEN_SALE_CANNOT_WITHDRAW_SALE_TOKEN_CURRENCY"
|
|
163890
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
|
+
},
|
|
163891
163955
|
"DALP-1001": {
|
|
163892
163956
|
id: "DALP-1001",
|
|
163893
163957
|
kind: "contract",
|
|
@@ -189504,6 +189568,7 @@ var DALP_ERROR_TYPED_FIELD_NAMES2 = {
|
|
|
189504
189568
|
"DALP-0677": [],
|
|
189505
189569
|
"DALP-0678": [],
|
|
189506
189570
|
"DALP-0679": [],
|
|
189571
|
+
"DALP-0680": [],
|
|
189507
189572
|
"DALP-1001": [
|
|
189508
189573
|
"args",
|
|
189509
189574
|
"correlationId",
|
|
@@ -199581,6 +199646,7 @@ var DALP_ERROR_DATA_SCHEMA_BY_ID2 = {
|
|
|
199581
199646
|
"DALP-0677": DALP_ORPC_ERROR_DATA_WIRE_SCHEMA2,
|
|
199582
199647
|
"DALP-0678": DALP_ORPC_ERROR_DATA_WIRE_SCHEMA2,
|
|
199583
199648
|
"DALP-0679": DALP_ORPC_ERROR_DATA_WIRE_SCHEMA2,
|
|
199649
|
+
"DALP-0680": DALP_ORPC_ERROR_DATA_WIRE_SCHEMA2,
|
|
199584
199650
|
"DALP-1001": DALP_ORPC_ERROR_DATA_BASE_SCHEMA2.extend({
|
|
199585
199651
|
args: exports_external.record(exports_external.string(), exports_external.string()),
|
|
199586
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.28376692653",
|
|
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",
|