@settlemint/sdk-cli 1.1.9-prccdef578 → 1.1.9-prd6e0e922
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/cli.js +49 -13
- package/dist/cli.js.map +6 -6
- package/package.json +4 -4
package/dist/cli.js
CHANGED
@@ -274462,7 +274462,7 @@ function pruneCurrentEnv(currentEnv, env2) {
|
|
274462
274462
|
var package_default = {
|
274463
274463
|
name: "@settlemint/sdk-cli",
|
274464
274464
|
description: "Command-line interface for SettleMint SDK, providing development tools and project management capabilities",
|
274465
|
-
version: "1.1.9-
|
274465
|
+
version: "1.1.9-prd6e0e922",
|
274466
274466
|
type: "module",
|
274467
274467
|
private: false,
|
274468
274468
|
license: "FSL-1.1-MIT",
|
@@ -274510,8 +274510,8 @@ var package_default = {
|
|
274510
274510
|
"@inquirer/input": "4.1.6",
|
274511
274511
|
"@inquirer/password": "4.0.9",
|
274512
274512
|
"@inquirer/select": "4.0.9",
|
274513
|
-
"@settlemint/sdk-js": "1.1.9-
|
274514
|
-
"@settlemint/sdk-utils": "1.1.9-
|
274513
|
+
"@settlemint/sdk-js": "1.1.9-prd6e0e922",
|
274514
|
+
"@settlemint/sdk-utils": "1.1.9-prd6e0e922",
|
274515
274515
|
"@types/node": "22.13.5",
|
274516
274516
|
"@types/semver": "7.5.8",
|
274517
274517
|
"@types/which": "3.0.4",
|
@@ -274525,7 +274525,7 @@ var package_default = {
|
|
274525
274525
|
yoctocolors: "2.1.1"
|
274526
274526
|
},
|
274527
274527
|
peerDependencies: {
|
274528
|
-
hardhat: "2.22.
|
274528
|
+
hardhat: "2.22.19"
|
274529
274529
|
},
|
274530
274530
|
peerDependenciesMeta: {
|
274531
274531
|
hardhat: {
|
@@ -278629,13 +278629,22 @@ export const { client: hasuraClient, graphql: hasuraGraphql } = createHasuraClie
|
|
278629
278629
|
introspection: introspection;
|
278630
278630
|
disableMasking: true;
|
278631
278631
|
scalars: {
|
278632
|
-
DateTime:
|
278633
|
-
JSON:
|
278632
|
+
DateTime: string;
|
278633
|
+
JSON: string;
|
278634
278634
|
Bytes: string;
|
278635
278635
|
Int8: string;
|
278636
278636
|
BigInt: string;
|
278637
278637
|
BigDecimal: string;
|
278638
278638
|
Timestamp: string;
|
278639
|
+
timestampz: string;
|
278640
|
+
uuid: string;
|
278641
|
+
date: string;
|
278642
|
+
time: string;
|
278643
|
+
jsonb: string;
|
278644
|
+
numeric: string;
|
278645
|
+
interval: string;
|
278646
|
+
geometry: string;
|
278647
|
+
geography: string;
|
278639
278648
|
};
|
278640
278649
|
}>({
|
278641
278650
|
instance: process.env.SETTLEMINT_HASURA_ENDPOINT ?? "",
|
@@ -278687,13 +278696,22 @@ export const { client: portalClient, graphql: portalGraphql } = createPortalClie
|
|
278687
278696
|
introspection: introspection;
|
278688
278697
|
disableMasking: true;
|
278689
278698
|
scalars: {
|
278690
|
-
DateTime:
|
278691
|
-
JSON:
|
278699
|
+
DateTime: string;
|
278700
|
+
JSON: string;
|
278692
278701
|
Bytes: string;
|
278693
278702
|
Int8: string;
|
278694
278703
|
BigInt: string;
|
278695
278704
|
BigDecimal: string;
|
278696
278705
|
Timestamp: string;
|
278706
|
+
timestampz: string;
|
278707
|
+
uuid: string;
|
278708
|
+
date: string;
|
278709
|
+
time: string;
|
278710
|
+
jsonb: string;
|
278711
|
+
numeric: string;
|
278712
|
+
interval: string;
|
278713
|
+
geometry: string;
|
278714
|
+
geography: string;
|
278697
278715
|
};
|
278698
278716
|
}>({
|
278699
278717
|
instance: process.env.SETTLEMINT_PORTAL_GRAPHQL_ENDPOINT!,
|
@@ -278761,13 +278779,22 @@ export const { client: ${graphqlClientVariable}, graphql: ${graphqlVariable} } =
|
|
278761
278779
|
introspection: ${introspectionVariable};
|
278762
278780
|
disableMasking: true;
|
278763
278781
|
scalars: {
|
278764
|
-
DateTime:
|
278765
|
-
JSON:
|
278782
|
+
DateTime: string;
|
278783
|
+
JSON: string;
|
278766
278784
|
Bytes: string;
|
278767
278785
|
Int8: string;
|
278768
278786
|
BigInt: string;
|
278769
278787
|
BigDecimal: string;
|
278770
278788
|
Timestamp: string;
|
278789
|
+
timestampz: string;
|
278790
|
+
uuid: string;
|
278791
|
+
date: string;
|
278792
|
+
time: string;
|
278793
|
+
jsonb: string;
|
278794
|
+
numeric: string;
|
278795
|
+
interval: string;
|
278796
|
+
geometry: string;
|
278797
|
+
geography: string;
|
278771
278798
|
};
|
278772
278799
|
}>({
|
278773
278800
|
instances: JSON.parse(process.env.SETTLEMINT_THEGRAPH_SUBGRAPHS_ENDPOINTS || '[]'),
|
@@ -280166,13 +280193,22 @@ export const { client: blockscoutClient, graphql: blockscoutGraphql } = createBl
|
|
280166
280193
|
introspection: introspection;
|
280167
280194
|
disableMasking: true;
|
280168
280195
|
scalars: {
|
280169
|
-
DateTime:
|
280170
|
-
JSON:
|
280196
|
+
DateTime: string;
|
280197
|
+
JSON: string;
|
280171
280198
|
Bytes: string;
|
280172
280199
|
Int8: string;
|
280173
280200
|
BigInt: string;
|
280174
280201
|
BigDecimal: string;
|
280175
280202
|
Timestamp: string;
|
280203
|
+
timestampz: string;
|
280204
|
+
uuid: string;
|
280205
|
+
date: string;
|
280206
|
+
time: string;
|
280207
|
+
jsonb: string;
|
280208
|
+
numeric: string;
|
280209
|
+
interval: string;
|
280210
|
+
geometry: string;
|
280211
|
+
geography: string;
|
280176
280212
|
};
|
280177
280213
|
}>({
|
280178
280214
|
instance: process.env.SETTLEMINT_BLOCKSCOUT_ENDPOINT!,
|
@@ -285676,4 +285712,4 @@ async function sdkCliCommand(argv = process.argv) {
|
|
285676
285712
|
// src/cli.ts
|
285677
285713
|
sdkCliCommand();
|
285678
285714
|
|
285679
|
-
//# debugId=
|
285715
|
+
//# debugId=BF690E67DF9CCEA464756E2164756E21
|