@shopify/cli-kit 3.82.1 → 3.83.1
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/api/graphql/admin/generated/theme_duplicate.d.ts +20 -0
- package/dist/cli/api/graphql/admin/generated/theme_duplicate.js +75 -0
- package/dist/cli/api/graphql/admin/generated/theme_duplicate.js.map +1 -0
- package/dist/private/node/analytics.d.ts +1 -0
- package/dist/private/node/analytics.js +1 -0
- package/dist/private/node/analytics.js.map +1 -1
- package/dist/private/node/session/exchange.js +6 -11
- package/dist/private/node/session/exchange.js.map +1 -1
- package/dist/private/node/ui/components/AutocompletePrompt.js +11 -7
- package/dist/private/node/ui/components/AutocompletePrompt.js.map +1 -1
- package/dist/private/node/ui/components/TextAnimation.js +9 -3
- package/dist/private/node/ui/components/TextAnimation.js.map +1 -1
- package/dist/private/node/ui/components/TextAnimation.test.d.ts +1 -0
- package/dist/private/node/ui/components/TextAnimation.test.js +73 -0
- package/dist/private/node/ui/components/TextAnimation.test.js.map +1 -0
- package/dist/public/common/function.d.ts +16 -2
- package/dist/public/common/function.js +19 -1
- package/dist/public/common/function.js.map +1 -1
- package/dist/public/common/version.d.ts +1 -1
- package/dist/public/common/version.js +1 -1
- package/dist/public/common/version.js.map +1 -1
- package/dist/public/node/api/admin.js +14 -4
- package/dist/public/node/api/admin.js.map +1 -1
- package/dist/public/node/base-command.d.ts +4 -2
- package/dist/public/node/base-command.js +6 -2
- package/dist/public/node/base-command.js.map +1 -1
- package/dist/public/node/cli.d.ts +3 -3
- package/dist/public/node/custom-oclif-loader.d.ts +1 -1
- package/dist/public/node/custom-oclif-loader.js.map +1 -1
- package/dist/public/node/monorail.d.ts +1 -1
- package/dist/public/node/monorail.js +1 -1
- package/dist/public/node/monorail.js.map +1 -1
- package/dist/public/node/themes/api.d.ts +9 -0
- package/dist/public/node/themes/api.js +53 -2
- package/dist/public/node/themes/api.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shopify/cli-kit",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.83.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A set of utilities, interfaces, and models that are common across all the platform features",
|
|
6
6
|
"keywords": [
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"@bugsnag/js": "7.25.0",
|
|
91
91
|
"@graphql-typed-document-node/core": "3.2.0",
|
|
92
92
|
"@iarna/toml": "2.2.5",
|
|
93
|
-
"@oclif/core": "
|
|
93
|
+
"@oclif/core": "4.4.0",
|
|
94
94
|
"@opentelemetry/api": "1.9.0",
|
|
95
95
|
"@opentelemetry/core": "1.30.0",
|
|
96
96
|
"@opentelemetry/exporter-metrics-otlp-http": "0.57.0",
|
|
@@ -157,7 +157,7 @@
|
|
|
157
157
|
"@types/diff": "^5.2.3",
|
|
158
158
|
"@types/fs-extra": "9.0.13",
|
|
159
159
|
"@types/gradient-string": "^1.1.2",
|
|
160
|
-
"@types/lodash": "4.17.
|
|
160
|
+
"@types/lodash": "4.17.19",
|
|
161
161
|
"@types/react": "18.2.0",
|
|
162
162
|
"@types/semver": "^7.5.2",
|
|
163
163
|
"@types/which": "3.0.4",
|
|
@@ -187,9 +187,7 @@
|
|
|
187
187
|
"open-api-docs": "nx open-api-docs",
|
|
188
188
|
"lint": "nx lint",
|
|
189
189
|
"lint:fix": "nx lint:fix",
|
|
190
|
-
"
|
|
191
|
-
"test:coverage": "nx test:coverage",
|
|
192
|
-
"test:watch": "nx test:watch",
|
|
190
|
+
"vitest": "vitest",
|
|
193
191
|
"type-check": "nx type-check",
|
|
194
192
|
"refresh-code-documentation": "nx refresh-code-documentation"
|
|
195
193
|
}
|