@settlemint/sdk-cli 1.2.1 → 1.2.2
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/README.md +1 -1
- package/dist/cli.js +8 -4
- package/dist/cli.js.map +3 -3
- package/package.json +3 -3
package/README.md
CHANGED
@@ -249,7 +249,7 @@ settlemint scs subgraph deploy --accept-defaults <subgraph-name>
|
|
249
249
|
|
250
250
|
## API Reference
|
251
251
|
|
252
|
-
See the [documentation](https://github.com/settlemint/sdk/tree/v1.2.
|
252
|
+
See the [documentation](https://github.com/settlemint/sdk/tree/v1.2.2/sdk/cli/docs/settlemint.md) for available commands.
|
253
253
|
|
254
254
|
## Contributing
|
255
255
|
|
package/dist/cli.js
CHANGED
@@ -259517,7 +259517,7 @@ function pruneCurrentEnv(currentEnv, env2) {
|
|
259517
259517
|
var package_default = {
|
259518
259518
|
name: "@settlemint/sdk-cli",
|
259519
259519
|
description: "Command-line interface for SettleMint SDK, providing development tools and project management capabilities",
|
259520
|
-
version: "1.2.
|
259520
|
+
version: "1.2.2",
|
259521
259521
|
type: "module",
|
259522
259522
|
private: false,
|
259523
259523
|
license: "FSL-1.1-MIT",
|
@@ -259566,8 +259566,8 @@ var package_default = {
|
|
259566
259566
|
"@inquirer/input": "4.1.7",
|
259567
259567
|
"@inquirer/password": "4.0.10",
|
259568
259568
|
"@inquirer/select": "4.0.10",
|
259569
|
-
"@settlemint/sdk-js": "1.2.
|
259570
|
-
"@settlemint/sdk-utils": "1.2.
|
259569
|
+
"@settlemint/sdk-js": "1.2.2",
|
259570
|
+
"@settlemint/sdk-utils": "1.2.2",
|
259571
259571
|
"@types/node": "22.13.10",
|
259572
259572
|
"@types/semver": "7.5.8",
|
259573
259573
|
"@types/which": "3.0.4",
|
@@ -262199,6 +262199,8 @@ var createCustomDeployment = graphql(`
|
|
262199
262199
|
$port: Int!
|
262200
262200
|
$provider: String!
|
262201
262201
|
$region: String!
|
262202
|
+
$size: ClusterServiceSize
|
262203
|
+
$type: ClusterServiceType
|
262202
262204
|
) {
|
262203
262205
|
createCustomDeployment(
|
262204
262206
|
applicationId: $applicationId
|
@@ -262210,6 +262212,8 @@ var createCustomDeployment = graphql(`
|
|
262210
262212
|
environmentVariables: $environmentVariables
|
262211
262213
|
provider: $provider
|
262212
262214
|
region: $region
|
262215
|
+
size: $size
|
262216
|
+
type: $type
|
262213
262217
|
) {
|
262214
262218
|
...CustomDeployment
|
262215
262219
|
}
|
@@ -273416,4 +273420,4 @@ async function sdkCliCommand(argv = process.argv) {
|
|
273416
273420
|
// src/cli.ts
|
273417
273421
|
sdkCliCommand();
|
273418
273422
|
|
273419
|
-
//# debugId=
|
273423
|
+
//# debugId=D38F19118FABF06A64756E2164756E21
|