sanity 3.77.2-server-side-schemas.13 → 3.77.2-server-side-schemas.21
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/lib/_chunks-cjs/_internal.js +1 -5
- package/lib/_chunks-cjs/_internal.js.map +1 -1
- package/lib/_chunks-cjs/deleteSchemaAction.js +9 -4
- package/lib/_chunks-cjs/deleteSchemaAction.js.map +1 -1
- package/lib/_chunks-cjs/deployAction.js +11 -10
- package/lib/_chunks-cjs/deployAction.js.map +1 -1
- package/lib/_chunks-cjs/schemaListAction.js +5 -3
- package/lib/_chunks-cjs/schemaListAction.js.map +1 -1
- package/lib/_chunks-cjs/storeSchemasAction.js +20 -12
- package/lib/_chunks-cjs/storeSchemasAction.js.map +1 -1
- package/lib/_chunks-cjs/version.js +1 -1
- package/lib/_chunks-es/version.mjs +1 -1
- package/lib/_legacy/version.esm.js +1 -1
- package/package.json +10 -10
- package/src/_internal/cli/actions/deploy/deployAction.ts +14 -22
- package/src/_internal/cli/actions/schema/deleteSchemaAction.ts +8 -3
- package/src/_internal/cli/actions/schema/schemaListAction.ts +2 -1
- package/src/_internal/cli/actions/schema/storeSchemasAction.ts +19 -14
- package/src/_internal/cli/commands/schema/deleteSchemaCommand.ts +0 -2
- package/src/_internal/cli/commands/schema/schemaListCommand.ts +0 -2
- package/src/_internal/cli/commands/schema/storeSchemaCommand.ts +1 -1
@@ -3481,8 +3481,6 @@ async function getPreviewAction$1() {
|
|
3481
3481
|
const description$4 = "Delete schemas by their IDs.", helpText$7 = `
|
3482
3482
|
**Note**: This command is experimental and subject to change.
|
3483
3483
|
|
3484
|
-
Delete schemas by their IDs.
|
3485
|
-
|
3486
3484
|
Options
|
3487
3485
|
--ids <schema_id_1,schema_id_2,...> comma-separated list of schema IDs to delete
|
3488
3486
|
|
@@ -3532,8 +3530,6 @@ var schemaGroup = {
|
|
3532
3530
|
const description$2 = "Lists all schemas in the current dataset.", helpText$5 = `
|
3533
3531
|
**Note**: This command is experimental and subject to change.
|
3534
3532
|
|
3535
|
-
Lists all schemas in the current dataset.
|
3536
|
-
|
3537
3533
|
Options
|
3538
3534
|
--json get schemas as json
|
3539
3535
|
--id <schema_id> fetch a specific schema by its ID
|
@@ -3553,7 +3549,7 @@ Examples
|
|
3553
3549
|
action: async (args, context) => (await Promise.resolve().then(function() {
|
3554
3550
|
return require("./schemaListAction.js");
|
3555
3551
|
})).default(args, context)
|
3556
|
-
}, description$1 = "", helpText$4 = `
|
3552
|
+
}, description$1 = "Store schemas into the current dataset.", helpText$4 = `
|
3557
3553
|
**Note**: This command is experimental and subject to change.
|
3558
3554
|
|
3559
3555
|
Options:
|