@settlemint/dalp-cli 3.1.4-release.32346190429 → 3.1.4-release.32348447845

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/dalp.js +67 -2
  2. package/package.json +1 -1
package/dist/dalp.js CHANGED
@@ -66093,6 +66093,34 @@ var ENTRIES_INDEX = {
66093
66093
  owner: "webhooks",
66094
66094
  orpcCode: "WEBHOOK_SUBSCRIPTION_INVALID"
66095
66095
  },
66096
+ "DALP-0535": {
66097
+ id: "DALP-0535",
66098
+ kind: "route",
66099
+ category: "client",
66100
+ status: 400,
66101
+ retryable: false,
66102
+ expectedClientError: true,
66103
+ public: {
66104
+ message: "Webhook endpoint URL must use HTTPS",
66105
+ why: "The endpoint URL uses a scheme other than HTTPS. Untrusted destinations must be HTTPS so delivery traffic is encrypted and the SSRF guard can apply its public-address policy.",
66106
+ fix: "Register an https:// URL, or ask an operator to add this exact origin to `DALP_WEBHOOKS_TRUSTED_DESTINATIONS` on a private-network install that needs plain HTTP."
66107
+ },
66108
+ observability: {
66109
+ severity: "info",
66110
+ otelEventName: "dapi.error",
66111
+ metricAttributeKey: "dapi.error.id",
66112
+ dimensions: [
66113
+ "error.id",
66114
+ "error.category",
66115
+ "surface",
66116
+ "route",
66117
+ "status_class",
66118
+ "retryable"
66119
+ ]
66120
+ },
66121
+ owner: "webhooks",
66122
+ orpcCode: "WEBHOOK_URL_SCHEME_REQUIRED"
66123
+ },
66096
66124
  "DALP-0600": {
66097
66125
  id: "DALP-0600",
66098
66126
  kind: "route",
@@ -93148,6 +93176,7 @@ var DALP_ERROR_TYPED_FIELD_NAMES = {
93148
93176
  ],
93149
93177
  "DALP-0533": [],
93150
93178
  "DALP-0534": [],
93179
+ "DALP-0535": [],
93151
93180
  "DALP-0600": [
93152
93181
  "removed"
93153
93182
  ],
@@ -103180,6 +103209,7 @@ var DALP_ERROR_DATA_SCHEMA_BY_ID = {
103180
103209
  }).catchall(DALP_ORPC_JSON_VALUE_SCHEMA),
103181
103210
  "DALP-0533": DALP_ORPC_ERROR_DATA_WIRE_SCHEMA,
103182
103211
  "DALP-0534": DALP_ORPC_ERROR_DATA_WIRE_SCHEMA,
103212
+ "DALP-0535": DALP_ORPC_ERROR_DATA_WIRE_SCHEMA,
103183
103213
  "DALP-0600": DALP_ORPC_ERROR_DATA_BASE_SCHEMA.extend({
103184
103214
  removed: exports_external.array(exports_external.string())
103185
103215
  }).catchall(DALP_ORPC_JSON_VALUE_SCHEMA),
@@ -117469,6 +117499,10 @@ var CUSTOM_ERRORS = {
117469
117499
  status: 400,
117470
117500
  message: "Webhook endpoint URL is not allowed"
117471
117501
  },
117502
+ WEBHOOK_URL_SCHEME_REQUIRED: {
117503
+ status: 400,
117504
+ message: "Webhook endpoint URL must use HTTPS"
117505
+ },
117472
117506
  X_EXECUTOR_AA_DISABLED_FOR_ORG: {
117473
117507
  status: 403,
117474
117508
  message: "smart-wallet executor not available"
@@ -141757,7 +141791,7 @@ function normalizeDalpBaseUrl(url2) {
141757
141791
  }
141758
141792
  var package_default = {
141759
141793
  name: "@settlemint/dalp-sdk",
141760
- version: "3.1.4-release.32346190429",
141794
+ version: "3.1.4-release.32348447845",
141761
141795
  private: false,
141762
141796
  description: "Fully typed SDK for the DALP tokenization platform API",
141763
141797
  homepage: "https://settlemint.com",
@@ -142858,6 +142892,7 @@ var DAPI_ROUTE_ERROR_IDS = {
142858
142892
  "DALP-0532": "DALP-0532",
142859
142893
  "DALP-0533": "DALP-0533",
142860
142894
  "DALP-0534": "DALP-0534",
142895
+ "DALP-0535": "DALP-0535",
142861
142896
  "DALP-0600": "DALP-0600",
142862
142897
  "DALP-0601": "DALP-0601",
142863
142898
  "DALP-0602": "DALP-0602",
@@ -142978,7 +143013,7 @@ var failedStateSet = new Set(FAILED_TRANSACTION_STATES);
142978
143013
  // package.json
142979
143014
  var package_default2 = {
142980
143015
  name: "@settlemint/dalp-cli",
142981
- version: "3.1.4-release.32346190429",
143016
+ version: "3.1.4-release.32348447845",
142982
143017
  private: false,
142983
143018
  description: "CLI for the Digital Asset Lifecycle Platform — manage tokens, identities, compliance, and more from the command line.",
142984
143019
  homepage: "https://settlemint.com",
@@ -159003,6 +159038,34 @@ var ENTRIES_INDEX2 = {
159003
159038
  owner: "webhooks",
159004
159039
  orpcCode: "WEBHOOK_SUBSCRIPTION_INVALID"
159005
159040
  },
159041
+ "DALP-0535": {
159042
+ id: "DALP-0535",
159043
+ kind: "route",
159044
+ category: "client",
159045
+ status: 400,
159046
+ retryable: false,
159047
+ expectedClientError: true,
159048
+ public: {
159049
+ message: "Webhook endpoint URL must use HTTPS",
159050
+ why: "The endpoint URL uses a scheme other than HTTPS. Untrusted destinations must be HTTPS so delivery traffic is encrypted and the SSRF guard can apply its public-address policy.",
159051
+ fix: "Register an https:// URL, or ask an operator to add this exact origin to `DALP_WEBHOOKS_TRUSTED_DESTINATIONS` on a private-network install that needs plain HTTP."
159052
+ },
159053
+ observability: {
159054
+ severity: "info",
159055
+ otelEventName: "dapi.error",
159056
+ metricAttributeKey: "dapi.error.id",
159057
+ dimensions: [
159058
+ "error.id",
159059
+ "error.category",
159060
+ "surface",
159061
+ "route",
159062
+ "status_class",
159063
+ "retryable"
159064
+ ]
159065
+ },
159066
+ owner: "webhooks",
159067
+ orpcCode: "WEBHOOK_URL_SCHEME_REQUIRED"
159068
+ },
159006
159069
  "DALP-0600": {
159007
159070
  id: "DALP-0600",
159008
159071
  kind: "route",
@@ -186075,6 +186138,7 @@ var DALP_ERROR_TYPED_FIELD_NAMES2 = {
186075
186138
  ],
186076
186139
  "DALP-0533": [],
186077
186140
  "DALP-0534": [],
186141
+ "DALP-0535": [],
186078
186142
  "DALP-0600": [
186079
186143
  "removed"
186080
186144
  ],
@@ -196109,6 +196173,7 @@ var DALP_ERROR_DATA_SCHEMA_BY_ID2 = {
196109
196173
  }).catchall(DALP_ORPC_JSON_VALUE_SCHEMA2),
196110
196174
  "DALP-0533": DALP_ORPC_ERROR_DATA_WIRE_SCHEMA2,
196111
196175
  "DALP-0534": DALP_ORPC_ERROR_DATA_WIRE_SCHEMA2,
196176
+ "DALP-0535": DALP_ORPC_ERROR_DATA_WIRE_SCHEMA2,
196112
196177
  "DALP-0600": DALP_ORPC_ERROR_DATA_BASE_SCHEMA2.extend({
196113
196178
  removed: exports_external.array(exports_external.string())
196114
196179
  }).catchall(DALP_ORPC_JSON_VALUE_SCHEMA2),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@settlemint/dalp-cli",
3
- "version": "3.1.4-release.32346190429",
3
+ "version": "3.1.4-release.32348447845",
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",