@sanity/cli 3.45.0 → 3.45.1-add-input-error-boundary.14

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sanity/cli",
3
- "version": "3.45.0",
3
+ "version": "3.45.1-add-input-error-boundary.14+03b9cb0240",
4
4
  "description": "Sanity CLI tool for managing Sanity installations, managing plugins, schemas and datasets",
5
5
  "keywords": [
6
6
  "sanity",
@@ -58,9 +58,9 @@
58
58
  "dependencies": {
59
59
  "@babel/traverse": "^7.23.5",
60
60
  "@sanity/client": "^6.19.1",
61
- "@sanity/codegen": "3.45.0",
61
+ "@sanity/codegen": "3.45.1-add-input-error-boundary.14+03b9cb0240",
62
62
  "@sanity/telemetry": "^0.7.7",
63
- "@sanity/util": "3.45.0",
63
+ "@sanity/util": "3.45.1-add-input-error-boundary.14+03b9cb0240",
64
64
  "chalk": "^4.1.2",
65
65
  "debug": "^4.3.4",
66
66
  "decompress": "^4.2.0",
@@ -82,7 +82,7 @@
82
82
  "@rollup/plugin-node-resolve": "^15.2.3",
83
83
  "@sanity/eslint-config-studio": "^4.0.0",
84
84
  "@sanity/generate-help-url": "^3.0.0",
85
- "@sanity/types": "3.45.0",
85
+ "@sanity/types": "3.45.1-add-input-error-boundary.14+03b9cb0240",
86
86
  "@types/babel__traverse": "^7.20.5",
87
87
  "@types/configstore": "^5.0.1",
88
88
  "@types/cpx": "^1.5.2",
@@ -135,5 +135,5 @@
135
135
  "engines": {
136
136
  "node": ">=18"
137
137
  },
138
- "gitHead": "4ad7613258304e6134a58cfd0399409d9c5b4705"
138
+ "gitHead": "03b9cb02409c97749119b2fd9808b1d041ee1280"
139
139
  }
@@ -815,7 +815,7 @@ export default async function initSanity(
815
815
  displayName: projectName,
816
816
  organizationId: await getOrganizationId(organizations),
817
817
  subscription: selectedPlan ? {planId: selectedPlan} : undefined,
818
- metadata: {coupon: intendedCoupon},
818
+ metadata: {coupon: intendedCoupon, integration: 'cli'},
819
819
  }).then((response) => ({
820
820
  ...response,
821
821
  isFirstProject: isUsersFirstProject,
@@ -4,7 +4,10 @@ export interface CreateProjectOptions {
4
4
  displayName: string
5
5
  organizationId?: string
6
6
  subscription?: {planId: string}
7
- metadata?: {coupon?: string}
7
+ metadata?: {
8
+ coupon?: string
9
+ integration?: string
10
+ }
8
11
  }
9
12
 
10
13
  export function createProject(