@takeshape/schema 9.53.0 → 9.55.0
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/migration/index.d.ts +1 -0
- package/dist/migration/index.d.ts.map +1 -1
- package/dist/migration/index.js +4 -1
- package/dist/migration/to/v3.37.0.d.ts +5 -0
- package/dist/migration/to/v3.37.0.d.ts.map +1 -0
- package/dist/migration/to/v3.37.0.js +18 -0
- package/dist/project-schema/index.d.ts +4 -1
- package/dist/project-schema/index.d.ts.map +1 -1
- package/dist/project-schema/index.js +20 -3
- package/dist/project-schema/latest.d.ts +53 -1
- package/dist/project-schema/latest.d.ts.map +1 -1
- package/dist/project-schema/migrate.d.ts.map +1 -1
- package/dist/project-schema/migrate.js +4 -0
- package/dist/project-schema/v3.37.0.d.ts +1523 -0
- package/dist/project-schema/v3.37.0.d.ts.map +1 -0
- package/dist/project-schema/v3.37.0.js +5 -0
- package/dist/schemas/index.d.ts +2 -2
- package/dist/schemas/index.d.ts.map +1 -1
- package/dist/schemas/index.js +6 -4
- package/dist/schemas/index.ts +4 -2
- package/dist/schemas/project-schema/latest.json +82 -2
- package/dist/schemas/project-schema/v3.37.0.json +3211 -0
- package/dist/schemas/project-schema.json +3 -0
- package/es/migration/index.js +3 -1
- package/es/migration/to/v3.37.0.js +10 -0
- package/es/project-schema/index.js +3 -1
- package/es/project-schema/migrate.js +5 -1
- package/es/project-schema/v3.37.0.js +1 -0
- package/es/schemas/index.js +4 -3
- package/es/schemas/index.ts +4 -2
- package/es/schemas/project-schema/latest.json +82 -2
- package/es/schemas/project-schema/v3.37.0.json +3211 -0
- package/es/schemas/project-schema.json +3 -0
- package/examples/latest/betzino.json +1 -1
- package/examples/latest/blog-schema.json +1 -1
- package/examples/latest/brewery-schema.json +1 -1
- package/examples/latest/complex-project-schema.json +1 -1
- package/examples/latest/complex-schema.json +1 -1
- package/examples/latest/edit-schema.json +1 -1
- package/examples/latest/fabric-ecommerce.json +1 -1
- package/examples/latest/frank-and-fred-schema.json +1 -1
- package/examples/latest/klirr-schema.json +1 -1
- package/examples/latest/massive-schema.json +1 -1
- package/examples/latest/mill-components-schema.json +1 -1
- package/examples/latest/one-earth.json +1 -1
- package/examples/latest/pet-oneof-array.json +1 -1
- package/examples/latest/post-schema.json +1 -1
- package/examples/latest/pruned-shopify-product-schema.json +1 -1
- package/examples/latest/real-world-schema.json +1 -1
- package/examples/latest/recursive-repeater-schema.json +1 -1
- package/examples/latest/recursive-schema.json +1 -1
- package/examples/latest/rick-and-morty-ast.json +1 -1
- package/examples/latest/rick-and-morty-graphql.json +1 -1
- package/examples/latest/rick-and-morty-rest.json +1 -1
- package/examples/latest/schema-with-repeater-draftjs.json +1 -1
- package/examples/latest/shape-books-v3_2_0.json +1 -1
- package/examples/latest/shape-books.json +1 -1
- package/examples/latest/shape-editor-schema-edited.json +1 -1
- package/examples/latest/shape-editor-schema-initial.json +1 -1
- package/examples/latest/shopify-lookbook.json +1 -1
- package/examples/latest/shopify-product-2022-07.json +1 -1
- package/examples/latest/shopify-product-2023-04.json +1 -1
- package/examples/latest/shopify-store-with-widget.json +1 -1
- package/examples/latest/stripe-product-runtime-schema.json +1 -1
- package/examples/latest/stripe-starter-resolved.json +1 -1
- package/examples/latest/user-schema-no-required.json +1 -1
- package/examples/latest/user-schema-with-defaults.json +1 -1
- package/package.json +5 -5
package/es/migration/index.js
CHANGED
|
@@ -42,6 +42,7 @@ import migrateToV3_33_0 from './to/v3.33.0';
|
|
|
42
42
|
import migrateToV3_34_0 from './to/v3.34.0';
|
|
43
43
|
import migrateToV3_35_0 from './to/v3.35.0';
|
|
44
44
|
import migrateToV3_36_0 from './to/v3.36.0';
|
|
45
|
+
import migrateToV3_37_0 from './to/v3.37.0';
|
|
45
46
|
export const migrateTo = {
|
|
46
47
|
'v3.0.0': migrateToV3_0_0,
|
|
47
48
|
'v3.1.0': migrateToV3_1_0,
|
|
@@ -86,7 +87,8 @@ export const migrateTo = {
|
|
|
86
87
|
'v3.33.0': migrateToV3_33_0,
|
|
87
88
|
'v3.34.0': migrateToV3_34_0,
|
|
88
89
|
'v3.35.0': migrateToV3_35_0,
|
|
89
|
-
'v3.36.0': migrateToV3_36_0
|
|
90
|
+
'v3.36.0': migrateToV3_36_0,
|
|
91
|
+
'v3.37.0': migrateToV3_37_0
|
|
90
92
|
};
|
|
91
93
|
export * from './utils';
|
|
92
94
|
export const listTypePrefix = 'PaginatedList';
|
|
@@ -45,6 +45,7 @@ export * from './v3.33.0';
|
|
|
45
45
|
export * from './v3.34.0';
|
|
46
46
|
export * from './v3.35.0';
|
|
47
47
|
export * from './v3.36.0';
|
|
48
|
+
export * from './v3.37.0';
|
|
48
49
|
export * from './v4.0.0';
|
|
49
50
|
|
|
50
51
|
// Schema type utilities
|
|
@@ -111,5 +112,6 @@ export const isProjectSchemaJSONV3_33_0 = createVersionPredicate('3.33.0');
|
|
|
111
112
|
export const isProjectSchemaJSONV3_34_0 = createVersionPredicate('3.34.0');
|
|
112
113
|
export const isProjectSchemaJSONV3_35_0 = createVersionPredicate('3.35.0');
|
|
113
114
|
export const isProjectSchemaJSONV3_36_0 = createVersionPredicate('3.36.0');
|
|
114
|
-
export const
|
|
115
|
+
export const isProjectSchemaJSONV3_37_0 = createVersionPredicate('3.37.0');
|
|
116
|
+
export const isLatestProjectSchemaJSON = createVersionPredicate('3.37.0');
|
|
115
117
|
export const isProjectSchemaJSONV4_0_0 = createVersionPredicate('4.0.0');
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// This file is generated by "pnpm json2ts"
|
|
2
2
|
import { migrateTo } from '../migration';
|
|
3
|
-
import { isProjectSchemaJSONV1_0_0, isProjectSchemaJSONV3_0_0, isProjectSchemaJSONV3_1_0, isProjectSchemaJSONV3_2_0, isProjectSchemaJSONV3_3_0, isProjectSchemaJSONV3_4_0, isProjectSchemaJSONV3_5_0, isProjectSchemaJSONV3_5_1, isProjectSchemaJSONV3_6_0, isProjectSchemaJSONV3_7_0, isProjectSchemaJSONV3_8_0, isProjectSchemaJSONV3_9_0, isProjectSchemaJSONV3_10_0, isProjectSchemaJSONV3_11_0, isProjectSchemaJSONV3_12_0, isProjectSchemaJSONV3_12_1, isProjectSchemaJSONV3_12_2, isProjectSchemaJSONV3_12_3, isProjectSchemaJSONV3_13_0, isProjectSchemaJSONV3_14_0, isProjectSchemaJSONV3_15_0, isProjectSchemaJSONV3_16_0, isProjectSchemaJSONV3_17_0, isProjectSchemaJSONV3_17_1, isProjectSchemaJSONV3_18_0, isProjectSchemaJSONV3_18_1, isProjectSchemaJSONV3_18_2, isProjectSchemaJSONV3_19_0, isProjectSchemaJSONV3_20_0, isProjectSchemaJSONV3_21_0, isProjectSchemaJSONV3_22_0, isProjectSchemaJSONV3_23_0, isProjectSchemaJSONV3_24_0, isProjectSchemaJSONV3_25_0, isProjectSchemaJSONV3_26_0, isProjectSchemaJSONV3_27_0, isProjectSchemaJSONV3_28_0, isProjectSchemaJSONV3_29_0, isProjectSchemaJSONV3_30_0, isProjectSchemaJSONV3_31_0, isProjectSchemaJSONV3_32_0, isProjectSchemaJSONV3_33_0, isProjectSchemaJSONV3_34_0, isProjectSchemaJSONV3_35_0, isProjectSchemaJSONV4_0_0, isLatestProjectSchemaJSON } from './index'; // eslint-disable-next-line complexity
|
|
3
|
+
import { isProjectSchemaJSONV1_0_0, isProjectSchemaJSONV3_0_0, isProjectSchemaJSONV3_1_0, isProjectSchemaJSONV3_2_0, isProjectSchemaJSONV3_3_0, isProjectSchemaJSONV3_4_0, isProjectSchemaJSONV3_5_0, isProjectSchemaJSONV3_5_1, isProjectSchemaJSONV3_6_0, isProjectSchemaJSONV3_7_0, isProjectSchemaJSONV3_8_0, isProjectSchemaJSONV3_9_0, isProjectSchemaJSONV3_10_0, isProjectSchemaJSONV3_11_0, isProjectSchemaJSONV3_12_0, isProjectSchemaJSONV3_12_1, isProjectSchemaJSONV3_12_2, isProjectSchemaJSONV3_12_3, isProjectSchemaJSONV3_13_0, isProjectSchemaJSONV3_14_0, isProjectSchemaJSONV3_15_0, isProjectSchemaJSONV3_16_0, isProjectSchemaJSONV3_17_0, isProjectSchemaJSONV3_17_1, isProjectSchemaJSONV3_18_0, isProjectSchemaJSONV3_18_1, isProjectSchemaJSONV3_18_2, isProjectSchemaJSONV3_19_0, isProjectSchemaJSONV3_20_0, isProjectSchemaJSONV3_21_0, isProjectSchemaJSONV3_22_0, isProjectSchemaJSONV3_23_0, isProjectSchemaJSONV3_24_0, isProjectSchemaJSONV3_25_0, isProjectSchemaJSONV3_26_0, isProjectSchemaJSONV3_27_0, isProjectSchemaJSONV3_28_0, isProjectSchemaJSONV3_29_0, isProjectSchemaJSONV3_30_0, isProjectSchemaJSONV3_31_0, isProjectSchemaJSONV3_32_0, isProjectSchemaJSONV3_33_0, isProjectSchemaJSONV3_34_0, isProjectSchemaJSONV3_35_0, isProjectSchemaJSONV3_36_0, isProjectSchemaJSONV4_0_0, isLatestProjectSchemaJSON } from './index'; // eslint-disable-next-line complexity
|
|
4
4
|
|
|
5
5
|
export async function migrateToLatestProjectSchema(context, projectSchema) {
|
|
6
6
|
if (isLatestProjectSchemaJSON(projectSchema)) {
|
|
@@ -183,6 +183,10 @@ export async function migrateToLatestProjectSchema(context, projectSchema) {
|
|
|
183
183
|
projectSchema = await migrateTo['v3.36.0'](context, projectSchema);
|
|
184
184
|
}
|
|
185
185
|
|
|
186
|
+
if (isProjectSchemaJSONV3_36_0(projectSchema)) {
|
|
187
|
+
projectSchema = await migrateTo['v3.37.0'](context, projectSchema);
|
|
188
|
+
}
|
|
189
|
+
|
|
186
190
|
if (isProjectSchemaJSONV4_0_0(projectSchema)) {
|
|
187
191
|
throw new Error('You are using an unreleased schema version. Migration is not possible');
|
|
188
192
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/es/schemas/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// This file is generated by "pnpm json2ts"
|
|
2
|
-
export const CURRENT_SCHEMA_VERSION = '3.
|
|
2
|
+
export const CURRENT_SCHEMA_VERSION = '3.37.0';
|
|
3
3
|
export { default as anyProjectSchema } from './project-schema.json';
|
|
4
|
-
export { default as latestSchemaJson } from './project-schema/v3.
|
|
4
|
+
export { default as latestSchemaJson } from './project-schema/v3.37.0.json';
|
|
5
5
|
import metaSchemaV1_0_0 from './project-schema/meta-schema-v1.0.0.json';
|
|
6
6
|
import projectSchemaV1_0_0 from './project-schema/v1.0.0.json';
|
|
7
7
|
import metaSchemaV3_0_0 from './project-schema/meta-schema-v3.0.0.json';
|
|
@@ -59,5 +59,6 @@ import projectSchemaV3_33_0 from './project-schema/v3.33.0.json';
|
|
|
59
59
|
import projectSchemaV3_34_0 from './project-schema/v3.34.0.json';
|
|
60
60
|
import projectSchemaV3_35_0 from './project-schema/v3.35.0.json';
|
|
61
61
|
import projectSchemaV3_36_0 from './project-schema/v3.36.0.json';
|
|
62
|
+
import projectSchemaV3_37_0 from './project-schema/v3.37.0.json';
|
|
62
63
|
import projectSchemaV4_0_0 from './project-schema/v4.0.0.json';
|
|
63
|
-
export const allProjectSchemas = [metaSchemaV1_0_0, projectSchemaV1_0_0, metaSchemaV3_0_0, projectSchemaV3_0_0, metaSchemaV3_1_0, projectSchemaV3_1_0, metaSchemaV3_2_0, projectSchemaV3_2_0, metaSchemaV3_3_0, projectSchemaV3_3_0, metaSchemaV3_4_0, projectSchemaV3_4_0, metaSchemaV3_5_0, projectSchemaV3_5_0, metaSchemaV3_5_1, projectSchemaV3_5_1, metaSchemaV3_6_0, projectSchemaV3_6_0, metaSchemaV3_7_0, projectSchemaV3_7_0, metaSchemaV3_8_0, projectSchemaV3_8_0, metaSchemaV3_9_0, projectSchemaV3_9_0, projectSchemaV3_10_0, projectSchemaV3_11_0, projectSchemaV3_12_0, projectSchemaV3_12_1, projectSchemaV3_12_2, projectSchemaV3_12_3, projectSchemaV3_13_0, projectSchemaV3_14_0, projectSchemaV3_15_0, projectSchemaV3_16_0, projectSchemaV3_17_0, projectSchemaV3_17_1, projectSchemaV3_18_0, projectSchemaV3_18_1, projectSchemaV3_18_2, projectSchemaV3_19_0, projectSchemaV3_20_0, projectSchemaV3_21_0, projectSchemaV3_22_0, projectSchemaV3_23_0, projectSchemaV3_24_0, projectSchemaV3_25_0, projectSchemaV3_26_0, projectSchemaV3_27_0, projectSchemaV3_28_0, projectSchemaV3_29_0, projectSchemaV3_30_0, projectSchemaV3_31_0, projectSchemaV3_32_0, projectSchemaV3_33_0, projectSchemaV3_34_0, projectSchemaV3_35_0, projectSchemaV3_36_0, projectSchemaV4_0_0];
|
|
64
|
+
export const allProjectSchemas = [metaSchemaV1_0_0, projectSchemaV1_0_0, metaSchemaV3_0_0, projectSchemaV3_0_0, metaSchemaV3_1_0, projectSchemaV3_1_0, metaSchemaV3_2_0, projectSchemaV3_2_0, metaSchemaV3_3_0, projectSchemaV3_3_0, metaSchemaV3_4_0, projectSchemaV3_4_0, metaSchemaV3_5_0, projectSchemaV3_5_0, metaSchemaV3_5_1, projectSchemaV3_5_1, metaSchemaV3_6_0, projectSchemaV3_6_0, metaSchemaV3_7_0, projectSchemaV3_7_0, metaSchemaV3_8_0, projectSchemaV3_8_0, metaSchemaV3_9_0, projectSchemaV3_9_0, projectSchemaV3_10_0, projectSchemaV3_11_0, projectSchemaV3_12_0, projectSchemaV3_12_1, projectSchemaV3_12_2, projectSchemaV3_12_3, projectSchemaV3_13_0, projectSchemaV3_14_0, projectSchemaV3_15_0, projectSchemaV3_16_0, projectSchemaV3_17_0, projectSchemaV3_17_1, projectSchemaV3_18_0, projectSchemaV3_18_1, projectSchemaV3_18_2, projectSchemaV3_19_0, projectSchemaV3_20_0, projectSchemaV3_21_0, projectSchemaV3_22_0, projectSchemaV3_23_0, projectSchemaV3_24_0, projectSchemaV3_25_0, projectSchemaV3_26_0, projectSchemaV3_27_0, projectSchemaV3_28_0, projectSchemaV3_29_0, projectSchemaV3_30_0, projectSchemaV3_31_0, projectSchemaV3_32_0, projectSchemaV3_33_0, projectSchemaV3_34_0, projectSchemaV3_35_0, projectSchemaV3_36_0, projectSchemaV3_37_0, projectSchemaV4_0_0];
|
package/es/schemas/index.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// This file is generated by "pnpm json2ts"
|
|
2
|
-
export const CURRENT_SCHEMA_VERSION = '3.
|
|
2
|
+
export const CURRENT_SCHEMA_VERSION = '3.37.0';
|
|
3
3
|
export {default as anyProjectSchema} from './project-schema.json';
|
|
4
|
-
export {default as latestSchemaJson} from './project-schema/v3.
|
|
4
|
+
export {default as latestSchemaJson} from './project-schema/v3.37.0.json';
|
|
5
5
|
import metaSchemaV1_0_0 from './project-schema/meta-schema-v1.0.0.json';
|
|
6
6
|
import projectSchemaV1_0_0 from './project-schema/v1.0.0.json';
|
|
7
7
|
import metaSchemaV3_0_0 from './project-schema/meta-schema-v3.0.0.json';
|
|
@@ -59,6 +59,7 @@ import projectSchemaV3_33_0 from './project-schema/v3.33.0.json';
|
|
|
59
59
|
import projectSchemaV3_34_0 from './project-schema/v3.34.0.json';
|
|
60
60
|
import projectSchemaV3_35_0 from './project-schema/v3.35.0.json';
|
|
61
61
|
import projectSchemaV3_36_0 from './project-schema/v3.36.0.json';
|
|
62
|
+
import projectSchemaV3_37_0 from './project-schema/v3.37.0.json';
|
|
62
63
|
import projectSchemaV4_0_0 from './project-schema/v4.0.0.json';
|
|
63
64
|
export const allProjectSchemas = [
|
|
64
65
|
metaSchemaV1_0_0,
|
|
@@ -118,5 +119,6 @@ export const allProjectSchemas = [
|
|
|
118
119
|
projectSchemaV3_34_0,
|
|
119
120
|
projectSchemaV3_35_0,
|
|
120
121
|
projectSchemaV3_36_0,
|
|
122
|
+
projectSchemaV3_37_0,
|
|
121
123
|
projectSchemaV4_0_0
|
|
122
124
|
];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
-
"$id": "https://schema.takeshape.io/project-schema/v3.
|
|
3
|
+
"$id": "https://schema.takeshape.io/project-schema/v3.37.0#",
|
|
4
4
|
"title": "Project Schema JSON",
|
|
5
5
|
"definitions": {
|
|
6
6
|
"schemaArray": {
|
|
@@ -2796,6 +2796,80 @@
|
|
|
2796
2796
|
}
|
|
2797
2797
|
]
|
|
2798
2798
|
},
|
|
2799
|
+
"serviceHealthCheck": {
|
|
2800
|
+
"title": "Service Health Check",
|
|
2801
|
+
"description": "Configuration for ping health checks.",
|
|
2802
|
+
"type": "object",
|
|
2803
|
+
"properties": {
|
|
2804
|
+
"checkName": {
|
|
2805
|
+
"title": "Check Name",
|
|
2806
|
+
"description": "The name of a health check to run",
|
|
2807
|
+
"type": "string",
|
|
2808
|
+
"enum": [
|
|
2809
|
+
"graphqlIntrospection",
|
|
2810
|
+
"ping"
|
|
2811
|
+
]
|
|
2812
|
+
},
|
|
2813
|
+
"endpoint": {
|
|
2814
|
+
"title": "Endpoint",
|
|
2815
|
+
"description": "The endpoint to use when checking the service health.",
|
|
2816
|
+
"type": "string"
|
|
2817
|
+
},
|
|
2818
|
+
"requestMethod": {
|
|
2819
|
+
"title": "Request Method",
|
|
2820
|
+
"description": "A custom method to use for the health check request.",
|
|
2821
|
+
"type": "string",
|
|
2822
|
+
"enum": [
|
|
2823
|
+
"GET",
|
|
2824
|
+
"POST",
|
|
2825
|
+
"PUT",
|
|
2826
|
+
"PATCH",
|
|
2827
|
+
"DELETE"
|
|
2828
|
+
]
|
|
2829
|
+
},
|
|
2830
|
+
"requestHeaders": {
|
|
2831
|
+
"title": "Request Headers",
|
|
2832
|
+
"description": "Any custom headers to set with the health check request.",
|
|
2833
|
+
"type": "object",
|
|
2834
|
+
"propertyNames": {
|
|
2835
|
+
"pattern": "[0-9A-Za-z_-]+"
|
|
2836
|
+
}
|
|
2837
|
+
},
|
|
2838
|
+
"requestBody": {
|
|
2839
|
+
"title": "Request Body",
|
|
2840
|
+
"description": "A custom body to send along with the ping request.",
|
|
2841
|
+
"type": "string"
|
|
2842
|
+
},
|
|
2843
|
+
"requestBodyFormat": {
|
|
2844
|
+
"title": "Request Body Format",
|
|
2845
|
+
"description": "A custom body to send along with the ping request.",
|
|
2846
|
+
"type": "string",
|
|
2847
|
+
"enum": [
|
|
2848
|
+
"string",
|
|
2849
|
+
"form",
|
|
2850
|
+
"json"
|
|
2851
|
+
]
|
|
2852
|
+
},
|
|
2853
|
+
"requestTimeout": {
|
|
2854
|
+
"title": "Request Timeout",
|
|
2855
|
+
"description": "The amount of time to wait when receiving a response from the health check, in seconds.",
|
|
2856
|
+
"type": "number",
|
|
2857
|
+
"minimum": 2,
|
|
2858
|
+
"maximum": 60
|
|
2859
|
+
},
|
|
2860
|
+
"healthyResponseStatusCode": {
|
|
2861
|
+
"title": "Healthy Response Status Code",
|
|
2862
|
+
"description": "The response status code that qualifies as healthy.",
|
|
2863
|
+
"type": "number",
|
|
2864
|
+
"minimum": 200,
|
|
2865
|
+
"maximum": 399
|
|
2866
|
+
}
|
|
2867
|
+
},
|
|
2868
|
+
"required": [
|
|
2869
|
+
"checkName"
|
|
2870
|
+
],
|
|
2871
|
+
"additionalProperties": false
|
|
2872
|
+
},
|
|
2799
2873
|
"serviceType": {
|
|
2800
2874
|
"title": "Service Type",
|
|
2801
2875
|
"description": "The general type of this service, specifying how and where it will be utilized.",
|
|
@@ -2851,6 +2925,9 @@
|
|
|
2851
2925
|
"authentication": {
|
|
2852
2926
|
"$ref": "#/definitions/serviceAuthentication"
|
|
2853
2927
|
},
|
|
2928
|
+
"healthCheck": {
|
|
2929
|
+
"$ref": "#/definitions/serviceHealthCheck"
|
|
2930
|
+
},
|
|
2854
2931
|
"webhookId": {
|
|
2855
2932
|
"type": "string"
|
|
2856
2933
|
},
|
|
@@ -2908,6 +2985,9 @@
|
|
|
2908
2985
|
"authentication": {
|
|
2909
2986
|
"type": "string"
|
|
2910
2987
|
},
|
|
2988
|
+
"healthCheck": {
|
|
2989
|
+
"$ref": "#/definitions/serviceHealthCheck"
|
|
2990
|
+
},
|
|
2911
2991
|
"webhookId": {
|
|
2912
2992
|
"type": "string"
|
|
2913
2993
|
},
|
|
@@ -3061,7 +3141,7 @@
|
|
|
3061
3141
|
"schemaVersion": {
|
|
3062
3142
|
"type": "string",
|
|
3063
3143
|
"enum": [
|
|
3064
|
-
"3.
|
|
3144
|
+
"3.37.0"
|
|
3065
3145
|
],
|
|
3066
3146
|
"description": "The version of the schema format your project is using. We increase the version as we make breaking changes to the schema format."
|
|
3067
3147
|
},
|