@husar.ai/cli 0.2.3 → 0.2.5
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.d.ts +2 -0
- package/dist/cli.js +82 -0
- package/dist/cli.js.map +1 -0
- package/dist/functions/parser.d.ts +7 -0
- package/dist/functions/parser.js +30 -0
- package/dist/functions/parser.js.map +1 -0
- package/dist/index.d.ts +1 -2
- package/dist/index.js +1 -68
- package/dist/index.js.map +1 -1
- package/dist/zeus/const.js +438 -473
- package/dist/zeus/const.js.map +1 -1
- package/dist/zeus/index.d.ts +1967 -1871
- package/dist/zeus/index.js +11 -28
- package/dist/zeus/index.js.map +1 -1
- package/package.json +8 -4
- package/src/cli.ts +104 -0
- package/src/functions/parser.ts +35 -0
- package/src/index.ts +1 -82
- package/src/zeus/const.ts +440 -475
- package/src/zeus/index.ts +1997 -1833
package/src/zeus/index.ts
CHANGED
|
@@ -1178,6 +1178,12 @@ export type ValueTypes = {
|
|
|
1178
1178
|
path?:boolean | `@${string}`,
|
|
1179
1179
|
__typename?: boolean | `@${string}`
|
|
1180
1180
|
}>;
|
|
1181
|
+
["GenerateHusarShapeImplementorInput"]: {
|
|
1182
|
+
prompt: string | Variable<any, string>,
|
|
1183
|
+
existingFileContent?: string | undefined | null | Variable<any, string>,
|
|
1184
|
+
backendGraphQlContent?: string | undefined | null | Variable<any, string>,
|
|
1185
|
+
includeShapes?: Array<string> | undefined | null | Variable<any, string>
|
|
1186
|
+
};
|
|
1181
1187
|
/** This enum is defined externally and injected via federation */
|
|
1182
1188
|
["CMSType"]:CMSType;
|
|
1183
1189
|
["Query"]: AliasType<{
|
|
@@ -1189,646 +1195,696 @@ export type ValueTypes = {
|
|
|
1189
1195
|
listShapes?:ValueTypes["Shape"],
|
|
1190
1196
|
tailwind?:ValueTypes["TailwindConfiguration"],
|
|
1191
1197
|
listForms?:ValueTypes["Form"],
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
modelShapenewshape?:boolean | `@${string}`,
|
|
1237
|
-
previewFieldsShapenewshape?:boolean | `@${string}`,
|
|
1238
|
-
oneShapenewshape?:ValueTypes["Shapenewshape"],
|
|
1239
|
-
fieldSetShapepricing_table?:boolean | `@${string}`,
|
|
1240
|
-
modelShapepricing_table?:boolean | `@${string}`,
|
|
1241
|
-
previewFieldsShapepricing_table?:boolean | `@${string}`,
|
|
1242
|
-
oneShapepricing_table?:ValueTypes["Shapepricing_table"],
|
|
1243
|
-
fieldSetShapepricingv1?:boolean | `@${string}`,
|
|
1244
|
-
modelShapepricingv1?:boolean | `@${string}`,
|
|
1245
|
-
previewFieldsShapepricingv1?:boolean | `@${string}`,
|
|
1246
|
-
oneShapepricingv1?:ValueTypes["Shapepricingv1"],
|
|
1247
|
-
fieldSetShapeprofile_info?:boolean | `@${string}`,
|
|
1248
|
-
modelShapeprofile_info?:boolean | `@${string}`,
|
|
1249
|
-
previewFieldsShapeprofile_info?:boolean | `@${string}`,
|
|
1250
|
-
oneShapeprofile_info?:ValueTypes["Shapeprofile_info"],
|
|
1251
|
-
fieldSetShapesupport?:boolean | `@${string}`,
|
|
1252
|
-
modelShapesupport?:boolean | `@${string}`,
|
|
1253
|
-
previewFieldsShapesupport?:boolean | `@${string}`,
|
|
1254
|
-
oneShapesupport?:ValueTypes["Shapesupport"],
|
|
1255
|
-
fieldSetShapeusage?:boolean | `@${string}`,
|
|
1256
|
-
modelShapeusage?:boolean | `@${string}`,
|
|
1257
|
-
previewFieldsShapeusage?:boolean | `@${string}`,
|
|
1258
|
-
oneShapeusage?:ValueTypes["Shapeusage"],
|
|
1259
|
-
variantsViewaccount?:ValueTypes["Viewaccount"],
|
|
1260
|
-
fieldSetViewaccount?:boolean | `@${string}`,
|
|
1261
|
-
modelViewaccount?:boolean | `@${string}`,
|
|
1262
|
-
previewFieldsViewaccount?:boolean | `@${string}`,
|
|
1263
|
-
oneViewaccount?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>},ValueTypes["Viewaccount"]],
|
|
1264
|
-
oneAsScalarViewaccount?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>},boolean | `@${string}`],
|
|
1265
|
-
variantsViewfeatures?:ValueTypes["Viewfeatures"],
|
|
1266
|
-
fieldSetViewfeatures?:boolean | `@${string}`,
|
|
1267
|
-
modelViewfeatures?:boolean | `@${string}`,
|
|
1268
|
-
previewFieldsViewfeatures?:boolean | `@${string}`,
|
|
1269
|
-
oneViewfeatures?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>},ValueTypes["Viewfeatures"]],
|
|
1270
|
-
oneAsScalarViewfeatures?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>},boolean | `@${string}`],
|
|
1271
|
-
variantsViewhomepage?:ValueTypes["Viewhomepage"],
|
|
1272
|
-
fieldSetViewhomepage?:boolean | `@${string}`,
|
|
1273
|
-
modelViewhomepage?:boolean | `@${string}`,
|
|
1274
|
-
previewFieldsViewhomepage?:boolean | `@${string}`,
|
|
1275
|
-
oneViewhomepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>},ValueTypes["Viewhomepage"]],
|
|
1276
|
-
oneAsScalarViewhomepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>},boolean | `@${string}`],
|
|
1277
|
-
variantsViewhowitworks?:ValueTypes["Viewhowitworks"],
|
|
1278
|
-
fieldSetViewhowitworks?:boolean | `@${string}`,
|
|
1279
|
-
modelViewhowitworks?:boolean | `@${string}`,
|
|
1280
|
-
previewFieldsViewhowitworks?:boolean | `@${string}`,
|
|
1281
|
-
oneViewhowitworks?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>},ValueTypes["Viewhowitworks"]],
|
|
1282
|
-
oneAsScalarViewhowitworks?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>},boolean | `@${string}`],
|
|
1283
|
-
variantsViewpricing?:ValueTypes["Viewpricing"],
|
|
1284
|
-
fieldSetViewpricing?:boolean | `@${string}`,
|
|
1285
|
-
modelViewpricing?:boolean | `@${string}`,
|
|
1286
|
-
previewFieldsViewpricing?:boolean | `@${string}`,
|
|
1287
|
-
oneViewpricing?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>},ValueTypes["Viewpricing"]],
|
|
1288
|
-
oneAsScalarViewpricing?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>},boolean | `@${string}`],
|
|
1198
|
+
fieldSetShapeexamples_contactform?:boolean | `@${string}`,
|
|
1199
|
+
modelShapeexamples_contactform?:boolean | `@${string}`,
|
|
1200
|
+
previewFieldsShapeexamples_contactform?:boolean | `@${string}`,
|
|
1201
|
+
oneShapeexamples_contactform?:ValueTypes["Shapeexamples_contactform"],
|
|
1202
|
+
fieldSetShapeexamples_featuregrid?:boolean | `@${string}`,
|
|
1203
|
+
modelShapeexamples_featuregrid?:boolean | `@${string}`,
|
|
1204
|
+
previewFieldsShapeexamples_featuregrid?:boolean | `@${string}`,
|
|
1205
|
+
oneShapeexamples_featuregrid?:ValueTypes["Shapeexamples_featuregrid"],
|
|
1206
|
+
fieldSetShapeexamples_herosection?:boolean | `@${string}`,
|
|
1207
|
+
modelShapeexamples_herosection?:boolean | `@${string}`,
|
|
1208
|
+
previewFieldsShapeexamples_herosection?:boolean | `@${string}`,
|
|
1209
|
+
oneShapeexamples_herosection?:ValueTypes["Shapeexamples_herosection"],
|
|
1210
|
+
fieldSetShapeexamples_newslettersignup?:boolean | `@${string}`,
|
|
1211
|
+
modelShapeexamples_newslettersignup?:boolean | `@${string}`,
|
|
1212
|
+
previewFieldsShapeexamples_newslettersignup?:boolean | `@${string}`,
|
|
1213
|
+
oneShapeexamples_newslettersignup?:ValueTypes["Shapeexamples_newslettersignup"],
|
|
1214
|
+
fieldSetShapeexamples_pricingplans?:boolean | `@${string}`,
|
|
1215
|
+
modelShapeexamples_pricingplans?:boolean | `@${string}`,
|
|
1216
|
+
previewFieldsShapeexamples_pricingplans?:boolean | `@${string}`,
|
|
1217
|
+
oneShapeexamples_pricingplans?:ValueTypes["Shapeexamples_pricingplans"],
|
|
1218
|
+
fieldSetShapeexamples_pricingplans_1?:boolean | `@${string}`,
|
|
1219
|
+
modelShapeexamples_pricingplans_1?:boolean | `@${string}`,
|
|
1220
|
+
previewFieldsShapeexamples_pricingplans_1?:boolean | `@${string}`,
|
|
1221
|
+
oneShapeexamples_pricingplans_1?:ValueTypes["Shapeexamples_pricingplans_1"],
|
|
1222
|
+
fieldSetShapeexamples_productcard?:boolean | `@${string}`,
|
|
1223
|
+
modelShapeexamples_productcard?:boolean | `@${string}`,
|
|
1224
|
+
previewFieldsShapeexamples_productcard?:boolean | `@${string}`,
|
|
1225
|
+
oneShapeexamples_productcard?:ValueTypes["Shapeexamples_productcard"],
|
|
1226
|
+
fieldSetShapeexamples_testimonialcard?:boolean | `@${string}`,
|
|
1227
|
+
modelShapeexamples_testimonialcard?:boolean | `@${string}`,
|
|
1228
|
+
previewFieldsShapeexamples_testimonialcard?:boolean | `@${string}`,
|
|
1229
|
+
oneShapeexamples_testimonialcard?:ValueTypes["Shapeexamples_testimonialcard"],
|
|
1230
|
+
fieldSetShapeexamplescontactform?:boolean | `@${string}`,
|
|
1231
|
+
modelShapeexamplescontactform?:boolean | `@${string}`,
|
|
1232
|
+
previewFieldsShapeexamplescontactform?:boolean | `@${string}`,
|
|
1233
|
+
oneShapeexamplescontactform?:ValueTypes["Shapeexamplescontactform"],
|
|
1234
|
+
fieldSetShapeproductcard?:boolean | `@${string}`,
|
|
1235
|
+
modelShapeproductcard?:boolean | `@${string}`,
|
|
1236
|
+
previewFieldsShapeproductcard?:boolean | `@${string}`,
|
|
1237
|
+
oneShapeproductcard?:ValueTypes["Shapeproductcard"],
|
|
1238
|
+
fieldSetShapereactcomponent?:boolean | `@${string}`,
|
|
1239
|
+
modelShapereactcomponent?:boolean | `@${string}`,
|
|
1240
|
+
previewFieldsShapereactcomponent?:boolean | `@${string}`,
|
|
1241
|
+
oneShapereactcomponent?:ValueTypes["Shapereactcomponent"],
|
|
1289
1242
|
__typename?: boolean | `@${string}`
|
|
1290
1243
|
}>;
|
|
1291
1244
|
["RootParamsType"]: AliasType<{
|
|
1292
1245
|
_version?:boolean | `@${string}`,
|
|
1293
|
-
locale?:boolean | `@${string}`,
|
|
1294
1246
|
__typename?: boolean | `@${string}`
|
|
1295
1247
|
}>;
|
|
1296
|
-
["ModelEnum"]:ModelEnum;
|
|
1297
|
-
["ViewEnum"]:ViewEnum;
|
|
1298
1248
|
["ShapeEnum"]:ShapeEnum;
|
|
1299
|
-
["
|
|
1300
|
-
|
|
1301
|
-
pageInfo?:ValueTypes["PageInfo"],
|
|
1249
|
+
["Shapeexamples_contactformSectionSectionHeading"]: AliasType<{
|
|
1250
|
+
subtitle?:boolean | `@${string}`,
|
|
1302
1251
|
__typename?: boolean | `@${string}`
|
|
1303
1252
|
}>;
|
|
1304
|
-
["
|
|
1305
|
-
|
|
1306
|
-
title?:boolean | `@${string}`,
|
|
1307
|
-
seotitle?:boolean | `@${string}`,
|
|
1308
|
-
metadesc?:boolean | `@${string}`,
|
|
1309
|
-
sortid?:boolean | `@${string}`,
|
|
1310
|
-
main_category?:boolean | `@${string}`,
|
|
1311
|
-
content?:boolean | `@${string}`,
|
|
1312
|
-
video?:ValueTypes["VideoField"],
|
|
1313
|
-
locale?:boolean | `@${string}`,
|
|
1314
|
-
slug?:boolean | `@${string}`,
|
|
1315
|
-
_id?:boolean | `@${string}`,
|
|
1316
|
-
createdAt?:boolean | `@${string}`,
|
|
1317
|
-
updatedAt?:boolean | `@${string}`,
|
|
1318
|
-
draft_version?:boolean | `@${string}`,
|
|
1319
|
-
json_ld?:boolean | `@${string}`,
|
|
1253
|
+
["Shapeexamples_contactformSectionSectionDescription"]: AliasType<{
|
|
1254
|
+
description?:boolean | `@${string}`,
|
|
1320
1255
|
__typename?: boolean | `@${string}`
|
|
1321
1256
|
}>;
|
|
1322
|
-
["
|
|
1323
|
-
|
|
1324
|
-
|
|
1257
|
+
["Shapeexamples_contactformSectionSectionForm"]: AliasType<{
|
|
1258
|
+
name?:boolean | `@${string}`,
|
|
1259
|
+
email?:boolean | `@${string}`,
|
|
1260
|
+
message?:boolean | `@${string}`,
|
|
1325
1261
|
__typename?: boolean | `@${string}`
|
|
1326
1262
|
}>;
|
|
1327
|
-
["
|
|
1328
|
-
|
|
1329
|
-
main?:ValueTypes["ViewaccountMain"],
|
|
1330
|
-
locale?:boolean | `@${string}`,
|
|
1331
|
-
slug?:boolean | `@${string}`,
|
|
1332
|
-
_id?:boolean | `@${string}`,
|
|
1333
|
-
createdAt?:boolean | `@${string}`,
|
|
1334
|
-
updatedAt?:boolean | `@${string}`,
|
|
1335
|
-
draft_version?:boolean | `@${string}`,
|
|
1336
|
-
json_ld?:boolean | `@${string}`,
|
|
1263
|
+
["Shapeexamples_contactformSectionSectionButton"]: AliasType<{
|
|
1264
|
+
button_text?:boolean | `@${string}`,
|
|
1337
1265
|
__typename?: boolean | `@${string}`
|
|
1338
1266
|
}>;
|
|
1339
|
-
["
|
|
1340
|
-
|
|
1341
|
-
|
|
1267
|
+
["Shapeexamples_contactformSectionSectionLink"]: AliasType<{
|
|
1268
|
+
cta?:boolean | `@${string}`,
|
|
1269
|
+
href?:boolean | `@${string}`,
|
|
1342
1270
|
__typename?: boolean | `@${string}`
|
|
1343
1271
|
}>;
|
|
1344
|
-
["
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1272
|
+
["Shapeexamples_contactformSectionSection"]: AliasType<{
|
|
1273
|
+
heading?:ValueTypes["Shapeexamples_contactformSectionSectionHeading"],
|
|
1274
|
+
description?:ValueTypes["Shapeexamples_contactformSectionSectionDescription"],
|
|
1275
|
+
form?:ValueTypes["Shapeexamples_contactformSectionSectionForm"],
|
|
1276
|
+
button?:ValueTypes["Shapeexamples_contactformSectionSectionButton"],
|
|
1277
|
+
link?:ValueTypes["Shapeexamples_contactformSectionSectionLink"],
|
|
1278
|
+
__typename?: boolean | `@${string}`
|
|
1279
|
+
}>;
|
|
1280
|
+
["Shapeexamples_contactformSection"]: AliasType<{
|
|
1281
|
+
section?:ValueTypes["Shapeexamples_contactformSectionSection"],
|
|
1282
|
+
__typename?: boolean | `@${string}`
|
|
1283
|
+
}>;
|
|
1284
|
+
["Shapeexamples_contactform"]: AliasType<{
|
|
1285
|
+
section?:ValueTypes["Shapeexamples_contactformSection"],
|
|
1349
1286
|
_id?:boolean | `@${string}`,
|
|
1350
1287
|
createdAt?:boolean | `@${string}`,
|
|
1351
1288
|
updatedAt?:boolean | `@${string}`,
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
}
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1289
|
+
__typename?: boolean | `@${string}`
|
|
1290
|
+
}>;
|
|
1291
|
+
["Shapeexamples_featuregridSectionSectionHeaderFeatures_title"]: AliasType<{
|
|
1292
|
+
subtitle?:boolean | `@${string}`,
|
|
1293
|
+
__typename?: boolean | `@${string}`
|
|
1294
|
+
}>;
|
|
1295
|
+
["Shapeexamples_featuregridSectionSectionHeaderFeatures_description"]: AliasType<{
|
|
1296
|
+
description?:boolean | `@${string}`,
|
|
1297
|
+
__typename?: boolean | `@${string}`
|
|
1298
|
+
}>;
|
|
1299
|
+
["Shapeexamples_featuregridSectionSectionHeader"]: AliasType<{
|
|
1300
|
+
features_title?:ValueTypes["Shapeexamples_featuregridSectionSectionHeaderFeatures_title"],
|
|
1301
|
+
features_description?:ValueTypes["Shapeexamples_featuregridSectionSectionHeaderFeatures_description"],
|
|
1302
|
+
__typename?: boolean | `@${string}`
|
|
1303
|
+
}>;
|
|
1304
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3MediaFeature_title_1"]: AliasType<{
|
|
1305
|
+
h3?:boolean | `@${string}`,
|
|
1306
|
+
__typename?: boolean | `@${string}`
|
|
1307
|
+
}>;
|
|
1308
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3MediaFeature_description_1"]: AliasType<{
|
|
1309
|
+
description?:boolean | `@${string}`,
|
|
1310
|
+
__typename?: boolean | `@${string}`
|
|
1311
|
+
}>;
|
|
1312
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3Media"]: AliasType<{
|
|
1313
|
+
image?:ValueTypes["ImageField"],
|
|
1314
|
+
feature_title_1?:ValueTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3MediaFeature_title_1"],
|
|
1315
|
+
feature_description_1?:ValueTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3MediaFeature_description_1"],
|
|
1316
|
+
__typename?: boolean | `@${string}`
|
|
1317
|
+
}>;
|
|
1318
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_2Feature_title_2"]: AliasType<{
|
|
1319
|
+
h3?:boolean | `@${string}`,
|
|
1320
|
+
__typename?: boolean | `@${string}`
|
|
1321
|
+
}>;
|
|
1322
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_2Feature_description_2"]: AliasType<{
|
|
1323
|
+
description?:boolean | `@${string}`,
|
|
1324
|
+
__typename?: boolean | `@${string}`
|
|
1325
|
+
}>;
|
|
1326
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_2"]: AliasType<{
|
|
1327
|
+
image?:ValueTypes["ImageField"],
|
|
1328
|
+
feature_title_2?:ValueTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_2Feature_title_2"],
|
|
1329
|
+
feature_description_2?:ValueTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_2Feature_description_2"],
|
|
1330
|
+
__typename?: boolean | `@${string}`
|
|
1331
|
+
}>;
|
|
1332
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_3Feature_title_3"]: AliasType<{
|
|
1333
|
+
h3?:boolean | `@${string}`,
|
|
1334
|
+
__typename?: boolean | `@${string}`
|
|
1335
|
+
}>;
|
|
1336
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_3Feature_description_3"]: AliasType<{
|
|
1337
|
+
description?:boolean | `@${string}`,
|
|
1338
|
+
__typename?: boolean | `@${string}`
|
|
1339
|
+
}>;
|
|
1340
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_3"]: AliasType<{
|
|
1341
|
+
image?:ValueTypes["ImageField"],
|
|
1342
|
+
feature_title_3?:ValueTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_3Feature_title_3"],
|
|
1343
|
+
feature_description_3?:ValueTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_3Feature_description_3"],
|
|
1344
|
+
__typename?: boolean | `@${string}`
|
|
1345
|
+
}>;
|
|
1346
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3"]: AliasType<{
|
|
1347
|
+
media?:ValueTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3Media"],
|
|
1348
|
+
media_2?:ValueTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_2"],
|
|
1349
|
+
media_3?:ValueTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_3"],
|
|
1350
|
+
__typename?: boolean | `@${string}`
|
|
1351
|
+
}>;
|
|
1352
|
+
["Shapeexamples_featuregridSectionSection"]: AliasType<{
|
|
1353
|
+
header?:ValueTypes["Shapeexamples_featuregridSectionSectionHeader"],
|
|
1354
|
+
md_gridcols3?:ValueTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3"],
|
|
1355
|
+
__typename?: boolean | `@${string}`
|
|
1356
|
+
}>;
|
|
1357
|
+
["Shapeexamples_featuregridSection"]: AliasType<{
|
|
1358
|
+
section?:ValueTypes["Shapeexamples_featuregridSectionSection"],
|
|
1359
|
+
__typename?: boolean | `@${string}`
|
|
1360
|
+
}>;
|
|
1361
|
+
["Shapeexamples_featuregrid"]: AliasType<{
|
|
1362
|
+
section?:ValueTypes["Shapeexamples_featuregridSection"],
|
|
1365
1363
|
_id?:boolean | `@${string}`,
|
|
1366
1364
|
createdAt?:boolean | `@${string}`,
|
|
1367
1365
|
updatedAt?:boolean | `@${string}`,
|
|
1368
|
-
draft_version?:boolean | `@${string}`,
|
|
1369
|
-
json_ld?:boolean | `@${string}`,
|
|
1370
1366
|
__typename?: boolean | `@${string}`
|
|
1371
1367
|
}>;
|
|
1372
|
-
["
|
|
1368
|
+
["Shapeexamples_herosectionSectionSectionHeading"]: AliasType<{
|
|
1373
1369
|
title?:boolean | `@${string}`,
|
|
1370
|
+
__typename?: boolean | `@${string}`
|
|
1371
|
+
}>;
|
|
1372
|
+
["Shapeexamples_herosectionSectionSectionDescription"]: AliasType<{
|
|
1374
1373
|
description?:boolean | `@${string}`,
|
|
1374
|
+
__typename?: boolean | `@${string}`
|
|
1375
|
+
}>;
|
|
1376
|
+
["Shapeexamples_herosectionSectionSectionSectionLink"]: AliasType<{
|
|
1377
|
+
cta?:boolean | `@${string}`,
|
|
1378
|
+
href?:boolean | `@${string}`,
|
|
1379
|
+
__typename?: boolean | `@${string}`
|
|
1380
|
+
}>;
|
|
1381
|
+
["Shapeexamples_herosectionSectionSectionSectionLink_2"]: AliasType<{
|
|
1382
|
+
cta?:boolean | `@${string}`,
|
|
1383
|
+
href?:boolean | `@${string}`,
|
|
1384
|
+
__typename?: boolean | `@${string}`
|
|
1385
|
+
}>;
|
|
1386
|
+
["Shapeexamples_herosectionSectionSectionSection"]: AliasType<{
|
|
1387
|
+
link?:ValueTypes["Shapeexamples_herosectionSectionSectionSectionLink"],
|
|
1388
|
+
link_2?:ValueTypes["Shapeexamples_herosectionSectionSectionSectionLink_2"],
|
|
1389
|
+
__typename?: boolean | `@${string}`
|
|
1390
|
+
}>;
|
|
1391
|
+
["Shapeexamples_herosectionSectionSectionMedia"]: AliasType<{
|
|
1375
1392
|
image?:ValueTypes["ImageField"],
|
|
1376
1393
|
__typename?: boolean | `@${string}`
|
|
1377
1394
|
}>;
|
|
1378
|
-
["
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
slug?:boolean | `@${string}`,
|
|
1384
|
-
_id?:boolean | `@${string}`,
|
|
1385
|
-
createdAt?:boolean | `@${string}`,
|
|
1386
|
-
updatedAt?:boolean | `@${string}`,
|
|
1387
|
-
draft_version?:boolean | `@${string}`,
|
|
1388
|
-
json_ld?:boolean | `@${string}`,
|
|
1395
|
+
["Shapeexamples_herosectionSectionSection"]: AliasType<{
|
|
1396
|
+
heading?:ValueTypes["Shapeexamples_herosectionSectionSectionHeading"],
|
|
1397
|
+
description?:ValueTypes["Shapeexamples_herosectionSectionSectionDescription"],
|
|
1398
|
+
section?:ValueTypes["Shapeexamples_herosectionSectionSectionSection"],
|
|
1399
|
+
media?:ValueTypes["Shapeexamples_herosectionSectionSectionMedia"],
|
|
1389
1400
|
__typename?: boolean | `@${string}`
|
|
1390
1401
|
}>;
|
|
1391
|
-
["
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
slug?:boolean | `@${string}`,
|
|
1402
|
+
["Shapeexamples_herosectionSection"]: AliasType<{
|
|
1403
|
+
section?:ValueTypes["Shapeexamples_herosectionSectionSection"],
|
|
1404
|
+
__typename?: boolean | `@${string}`
|
|
1405
|
+
}>;
|
|
1406
|
+
["Shapeexamples_herosection"]: AliasType<{
|
|
1407
|
+
section?:ValueTypes["Shapeexamples_herosectionSection"],
|
|
1398
1408
|
_id?:boolean | `@${string}`,
|
|
1399
1409
|
createdAt?:boolean | `@${string}`,
|
|
1400
1410
|
updatedAt?:boolean | `@${string}`,
|
|
1401
|
-
draft_version?:boolean | `@${string}`,
|
|
1402
|
-
json_ld?:boolean | `@${string}`,
|
|
1403
1411
|
__typename?: boolean | `@${string}`
|
|
1404
1412
|
}>;
|
|
1405
|
-
["
|
|
1406
|
-
|
|
1407
|
-
link?:boolean | `@${string}`,
|
|
1413
|
+
["Shapeexamples_newslettersignupSectionSectionHeading"]: AliasType<{
|
|
1414
|
+
subtitle?:boolean | `@${string}`,
|
|
1408
1415
|
__typename?: boolean | `@${string}`
|
|
1409
1416
|
}>;
|
|
1410
|
-
["
|
|
1411
|
-
|
|
1417
|
+
["Shapeexamples_newslettersignupSectionSectionDescription"]: AliasType<{
|
|
1418
|
+
description?:boolean | `@${string}`,
|
|
1412
1419
|
__typename?: boolean | `@${string}`
|
|
1413
1420
|
}>;
|
|
1414
|
-
["
|
|
1415
|
-
|
|
1416
|
-
category?:ValueTypes["Shapecloud_sidebarSidebarMenuCategory"],
|
|
1421
|
+
["Shapeexamples_newslettersignupSectionSectionFormButton"]: AliasType<{
|
|
1422
|
+
button_text?:boolean | `@${string}`,
|
|
1417
1423
|
__typename?: boolean | `@${string}`
|
|
1418
1424
|
}>;
|
|
1419
|
-
["
|
|
1420
|
-
|
|
1421
|
-
|
|
1425
|
+
["Shapeexamples_newslettersignupSectionSectionForm"]: AliasType<{
|
|
1426
|
+
email?:boolean | `@${string}`,
|
|
1427
|
+
button?:ValueTypes["Shapeexamples_newslettersignupSectionSectionFormButton"],
|
|
1428
|
+
__typename?: boolean | `@${string}`
|
|
1429
|
+
}>;
|
|
1430
|
+
["Shapeexamples_newslettersignupSectionSectionDescription_2Link"]: AliasType<{
|
|
1431
|
+
cta?:boolean | `@${string}`,
|
|
1432
|
+
href?:boolean | `@${string}`,
|
|
1433
|
+
__typename?: boolean | `@${string}`
|
|
1434
|
+
}>;
|
|
1435
|
+
["Shapeexamples_newslettersignupSectionSectionDescription_2"]: AliasType<{
|
|
1436
|
+
description?:boolean | `@${string}`,
|
|
1437
|
+
link?:ValueTypes["Shapeexamples_newslettersignupSectionSectionDescription_2Link"],
|
|
1422
1438
|
__typename?: boolean | `@${string}`
|
|
1423
1439
|
}>;
|
|
1424
|
-
["
|
|
1425
|
-
|
|
1440
|
+
["Shapeexamples_newslettersignupSectionSection"]: AliasType<{
|
|
1441
|
+
heading?:ValueTypes["Shapeexamples_newslettersignupSectionSectionHeading"],
|
|
1442
|
+
description?:ValueTypes["Shapeexamples_newslettersignupSectionSectionDescription"],
|
|
1443
|
+
form?:ValueTypes["Shapeexamples_newslettersignupSectionSectionForm"],
|
|
1444
|
+
description_2?:ValueTypes["Shapeexamples_newslettersignupSectionSectionDescription_2"],
|
|
1426
1445
|
__typename?: boolean | `@${string}`
|
|
1427
1446
|
}>;
|
|
1428
|
-
["
|
|
1429
|
-
|
|
1430
|
-
bottom_menu?:ValueTypes["Shapecloud_sidebarSidebarBottom_menu"],
|
|
1447
|
+
["Shapeexamples_newslettersignupSection"]: AliasType<{
|
|
1448
|
+
section?:ValueTypes["Shapeexamples_newslettersignupSectionSection"],
|
|
1431
1449
|
__typename?: boolean | `@${string}`
|
|
1432
1450
|
}>;
|
|
1433
|
-
["
|
|
1434
|
-
|
|
1451
|
+
["Shapeexamples_newslettersignup"]: AliasType<{
|
|
1452
|
+
section?:ValueTypes["Shapeexamples_newslettersignupSection"],
|
|
1435
1453
|
_id?:boolean | `@${string}`,
|
|
1436
1454
|
createdAt?:boolean | `@${string}`,
|
|
1437
1455
|
updatedAt?:boolean | `@${string}`,
|
|
1438
1456
|
__typename?: boolean | `@${string}`
|
|
1439
1457
|
}>;
|
|
1440
|
-
["
|
|
1458
|
+
["Shapeexamples_pricingplansSectionSectionHeaderPricing_title"]: AliasType<{
|
|
1459
|
+
subtitle?:boolean | `@${string}`,
|
|
1460
|
+
__typename?: boolean | `@${string}`
|
|
1461
|
+
}>;
|
|
1462
|
+
["Shapeexamples_pricingplansSectionSectionHeaderPricing_description"]: AliasType<{
|
|
1463
|
+
description?:boolean | `@${string}`,
|
|
1464
|
+
__typename?: boolean | `@${string}`
|
|
1465
|
+
}>;
|
|
1466
|
+
["Shapeexamples_pricingplansSectionSectionHeader"]: AliasType<{
|
|
1467
|
+
pricing_title?:ValueTypes["Shapeexamples_pricingplansSectionSectionHeaderPricing_title"],
|
|
1468
|
+
pricing_description?:ValueTypes["Shapeexamples_pricingplansSectionSectionHeaderPricing_description"],
|
|
1469
|
+
__typename?: boolean | `@${string}`
|
|
1470
|
+
}>;
|
|
1471
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderPlan_name_1"]: AliasType<{
|
|
1472
|
+
h3?:boolean | `@${string}`,
|
|
1473
|
+
__typename?: boolean | `@${string}`
|
|
1474
|
+
}>;
|
|
1475
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderSectionPlan_price_1"]: AliasType<{
|
|
1441
1476
|
content?:boolean | `@${string}`,
|
|
1442
1477
|
__typename?: boolean | `@${string}`
|
|
1443
1478
|
}>;
|
|
1444
|
-
["
|
|
1445
|
-
|
|
1446
|
-
scrollspy_list?:boolean | `@${string}`,
|
|
1479
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderSection"]: AliasType<{
|
|
1480
|
+
plan_price_1?:ValueTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderSectionPlan_price_1"],
|
|
1447
1481
|
__typename?: boolean | `@${string}`
|
|
1448
1482
|
}>;
|
|
1449
|
-
["
|
|
1450
|
-
|
|
1483
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderList"]: AliasType<{
|
|
1484
|
+
items?:boolean | `@${string}`,
|
|
1451
1485
|
__typename?: boolean | `@${string}`
|
|
1452
1486
|
}>;
|
|
1453
|
-
["
|
|
1454
|
-
|
|
1455
|
-
|
|
1487
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderPlan_cta_1"]: AliasType<{
|
|
1488
|
+
cta?:boolean | `@${string}`,
|
|
1489
|
+
href?:boolean | `@${string}`,
|
|
1456
1490
|
__typename?: boolean | `@${string}`
|
|
1457
1491
|
}>;
|
|
1458
|
-
["
|
|
1459
|
-
|
|
1492
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border"]: AliasType<{
|
|
1493
|
+
plan_name_1?:ValueTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderPlan_name_1"],
|
|
1494
|
+
section?:ValueTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderSection"],
|
|
1495
|
+
list?:ValueTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderList"],
|
|
1496
|
+
plan_cta_1?:ValueTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderPlan_cta_1"],
|
|
1460
1497
|
__typename?: boolean | `@${string}`
|
|
1461
1498
|
}>;
|
|
1462
|
-
["
|
|
1463
|
-
|
|
1464
|
-
_id?:boolean | `@${string}`,
|
|
1465
|
-
createdAt?:boolean | `@${string}`,
|
|
1466
|
-
updatedAt?:boolean | `@${string}`,
|
|
1499
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2Plan_name_2"]: AliasType<{
|
|
1500
|
+
h3?:boolean | `@${string}`,
|
|
1467
1501
|
__typename?: boolean | `@${string}`
|
|
1468
1502
|
}>;
|
|
1469
|
-
["
|
|
1470
|
-
|
|
1471
|
-
link?:boolean | `@${string}`,
|
|
1503
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2SectionPlan_price_2"]: AliasType<{
|
|
1504
|
+
content?:boolean | `@${string}`,
|
|
1472
1505
|
__typename?: boolean | `@${string}`
|
|
1473
1506
|
}>;
|
|
1474
|
-
["
|
|
1475
|
-
|
|
1507
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2Section"]: AliasType<{
|
|
1508
|
+
plan_price_2?:ValueTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2SectionPlan_price_2"],
|
|
1476
1509
|
__typename?: boolean | `@${string}`
|
|
1477
1510
|
}>;
|
|
1478
|
-
["
|
|
1479
|
-
|
|
1480
|
-
children?:ValueTypes["Shapedocs_navMainListChildren"],
|
|
1511
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2List"]: AliasType<{
|
|
1512
|
+
items?:boolean | `@${string}`,
|
|
1481
1513
|
__typename?: boolean | `@${string}`
|
|
1482
1514
|
}>;
|
|
1483
|
-
["
|
|
1484
|
-
|
|
1515
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2Plan_cta_2"]: AliasType<{
|
|
1516
|
+
cta?:boolean | `@${string}`,
|
|
1517
|
+
href?:boolean | `@${string}`,
|
|
1485
1518
|
__typename?: boolean | `@${string}`
|
|
1486
1519
|
}>;
|
|
1487
|
-
["
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1520
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2"]: AliasType<{
|
|
1521
|
+
plan_name_2?:ValueTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2Plan_name_2"],
|
|
1522
|
+
section?:ValueTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2Section"],
|
|
1523
|
+
list?:ValueTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2List"],
|
|
1524
|
+
plan_cta_2?:ValueTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2Plan_cta_2"],
|
|
1492
1525
|
__typename?: boolean | `@${string}`
|
|
1493
1526
|
}>;
|
|
1494
|
-
["
|
|
1495
|
-
|
|
1496
|
-
|
|
1527
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3Plan_name_3"]: AliasType<{
|
|
1528
|
+
h3?:boolean | `@${string}`,
|
|
1529
|
+
__typename?: boolean | `@${string}`
|
|
1530
|
+
}>;
|
|
1531
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3SectionPlan_price_3"]: AliasType<{
|
|
1497
1532
|
content?:boolean | `@${string}`,
|
|
1498
1533
|
__typename?: boolean | `@${string}`
|
|
1499
1534
|
}>;
|
|
1500
|
-
["
|
|
1501
|
-
|
|
1502
|
-
_id?:boolean | `@${string}`,
|
|
1503
|
-
createdAt?:boolean | `@${string}`,
|
|
1504
|
-
updatedAt?:boolean | `@${string}`,
|
|
1535
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3Section"]: AliasType<{
|
|
1536
|
+
plan_price_3?:ValueTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3SectionPlan_price_3"],
|
|
1505
1537
|
__typename?: boolean | `@${string}`
|
|
1506
1538
|
}>;
|
|
1507
|
-
["
|
|
1508
|
-
|
|
1509
|
-
terms_of_service?:boolean | `@${string}`,
|
|
1510
|
-
contact_us?:boolean | `@${string}`,
|
|
1539
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3List"]: AliasType<{
|
|
1540
|
+
items?:boolean | `@${string}`,
|
|
1511
1541
|
__typename?: boolean | `@${string}`
|
|
1512
1542
|
}>;
|
|
1513
|
-
["
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
footer_copy?:boolean | `@${string}`,
|
|
1543
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3Plan_cta_3"]: AliasType<{
|
|
1544
|
+
cta?:boolean | `@${string}`,
|
|
1545
|
+
href?:boolean | `@${string}`,
|
|
1517
1546
|
__typename?: boolean | `@${string}`
|
|
1518
1547
|
}>;
|
|
1519
|
-
["
|
|
1520
|
-
|
|
1548
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3"]: AliasType<{
|
|
1549
|
+
plan_name_3?:ValueTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3Plan_name_3"],
|
|
1550
|
+
section?:ValueTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3Section"],
|
|
1551
|
+
list?:ValueTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3List"],
|
|
1552
|
+
plan_cta_3?:ValueTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3Plan_cta_3"],
|
|
1521
1553
|
__typename?: boolean | `@${string}`
|
|
1522
1554
|
}>;
|
|
1523
|
-
["
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
updatedAt?:boolean | `@${string}`,
|
|
1555
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3"]: AliasType<{
|
|
1556
|
+
border?:ValueTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border"],
|
|
1557
|
+
border_2?:ValueTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2"],
|
|
1558
|
+
border_3?:ValueTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3"],
|
|
1528
1559
|
__typename?: boolean | `@${string}`
|
|
1529
1560
|
}>;
|
|
1530
|
-
["
|
|
1531
|
-
|
|
1561
|
+
["Shapeexamples_pricingplansSectionSection"]: AliasType<{
|
|
1562
|
+
header?:ValueTypes["Shapeexamples_pricingplansSectionSectionHeader"],
|
|
1563
|
+
md_gridcols3?:ValueTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3"],
|
|
1532
1564
|
__typename?: boolean | `@${string}`
|
|
1533
1565
|
}>;
|
|
1534
|
-
["
|
|
1535
|
-
|
|
1536
|
-
logo?:boolean | `@${string}`,
|
|
1537
|
-
slogan_parent?:ValueTypes["ShapeheroHero_componentSlogan_parent"],
|
|
1538
|
-
subslogan?:boolean | `@${string}`,
|
|
1566
|
+
["Shapeexamples_pricingplansSection"]: AliasType<{
|
|
1567
|
+
section?:ValueTypes["Shapeexamples_pricingplansSectionSection"],
|
|
1539
1568
|
__typename?: boolean | `@${string}`
|
|
1540
1569
|
}>;
|
|
1541
|
-
["
|
|
1542
|
-
|
|
1570
|
+
["Shapeexamples_pricingplans"]: AliasType<{
|
|
1571
|
+
section?:ValueTypes["Shapeexamples_pricingplansSection"],
|
|
1543
1572
|
_id?:boolean | `@${string}`,
|
|
1544
1573
|
createdAt?:boolean | `@${string}`,
|
|
1545
1574
|
updatedAt?:boolean | `@${string}`,
|
|
1546
1575
|
__typename?: boolean | `@${string}`
|
|
1547
1576
|
}>;
|
|
1548
|
-
["
|
|
1549
|
-
|
|
1577
|
+
["Shapeexamples_pricingplans_1ContainerPricingHeader"]: AliasType<{
|
|
1578
|
+
subtitle?:boolean | `@${string}`,
|
|
1579
|
+
description?:boolean | `@${string}`,
|
|
1580
|
+
__typename?: boolean | `@${string}`
|
|
1581
|
+
}>;
|
|
1582
|
+
["Shapeexamples_pricingplans_1ContainerPricingPlansPlan_itemsPriceblock"]: AliasType<{
|
|
1583
|
+
price?:boolean | `@${string}`,
|
|
1550
1584
|
__typename?: boolean | `@${string}`
|
|
1551
1585
|
}>;
|
|
1552
|
-
["
|
|
1586
|
+
["Shapeexamples_pricingplans_1ContainerPricingPlansPlan_itemsCta"]: AliasType<{
|
|
1553
1587
|
title?:boolean | `@${string}`,
|
|
1554
|
-
|
|
1555
|
-
features?:ValueTypes["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"],
|
|
1588
|
+
href?:boolean | `@${string}`,
|
|
1556
1589
|
__typename?: boolean | `@${string}`
|
|
1557
1590
|
}>;
|
|
1558
|
-
["
|
|
1559
|
-
|
|
1591
|
+
["Shapeexamples_pricingplans_1ContainerPricingPlansPlan_items"]: AliasType<{
|
|
1592
|
+
name?:boolean | `@${string}`,
|
|
1593
|
+
priceblock?:ValueTypes["Shapeexamples_pricingplans_1ContainerPricingPlansPlan_itemsPriceblock"],
|
|
1594
|
+
features?:boolean | `@${string}`,
|
|
1595
|
+
cta?:ValueTypes["Shapeexamples_pricingplans_1ContainerPricingPlansPlan_itemsCta"],
|
|
1560
1596
|
__typename?: boolean | `@${string}`
|
|
1561
1597
|
}>;
|
|
1562
|
-
["
|
|
1563
|
-
|
|
1598
|
+
["Shapeexamples_pricingplans_1ContainerPricingPlans"]: AliasType<{
|
|
1599
|
+
plan_items?:ValueTypes["Shapeexamples_pricingplans_1ContainerPricingPlansPlan_items"],
|
|
1564
1600
|
__typename?: boolean | `@${string}`
|
|
1565
1601
|
}>;
|
|
1566
|
-
["
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
presentation?:ValueTypes["ShapeheroxHero_sectionHero_containerPresentation"],
|
|
1602
|
+
["Shapeexamples_pricingplans_1ContainerPricing"]: AliasType<{
|
|
1603
|
+
header?:ValueTypes["Shapeexamples_pricingplans_1ContainerPricingHeader"],
|
|
1604
|
+
plans?:ValueTypes["Shapeexamples_pricingplans_1ContainerPricingPlans"],
|
|
1570
1605
|
__typename?: boolean | `@${string}`
|
|
1571
1606
|
}>;
|
|
1572
|
-
["
|
|
1573
|
-
|
|
1607
|
+
["Shapeexamples_pricingplans_1Container"]: AliasType<{
|
|
1608
|
+
pricing?:ValueTypes["Shapeexamples_pricingplans_1ContainerPricing"],
|
|
1574
1609
|
__typename?: boolean | `@${string}`
|
|
1575
1610
|
}>;
|
|
1576
|
-
["
|
|
1577
|
-
|
|
1611
|
+
["Shapeexamples_pricingplans_1"]: AliasType<{
|
|
1612
|
+
container?:ValueTypes["Shapeexamples_pricingplans_1Container"],
|
|
1578
1613
|
_id?:boolean | `@${string}`,
|
|
1579
1614
|
createdAt?:boolean | `@${string}`,
|
|
1580
1615
|
updatedAt?:boolean | `@${string}`,
|
|
1581
1616
|
__typename?: boolean | `@${string}`
|
|
1582
1617
|
}>;
|
|
1583
|
-
["
|
|
1584
|
-
|
|
1585
|
-
link?:boolean | `@${string}`,
|
|
1586
|
-
remove_button?:boolean | `@${string}`,
|
|
1618
|
+
["Shapeexamples_productcardSectionSectionMediaRounded"]: AliasType<{
|
|
1619
|
+
content?:boolean | `@${string}`,
|
|
1587
1620
|
__typename?: boolean | `@${string}`
|
|
1588
1621
|
}>;
|
|
1589
|
-
["
|
|
1590
|
-
|
|
1622
|
+
["Shapeexamples_productcardSectionSectionMedia"]: AliasType<{
|
|
1623
|
+
image?:ValueTypes["ImageField"],
|
|
1624
|
+
rounded?:ValueTypes["Shapeexamples_productcardSectionSectionMediaRounded"],
|
|
1591
1625
|
__typename?: boolean | `@${string}`
|
|
1592
1626
|
}>;
|
|
1593
|
-
["
|
|
1594
|
-
title?:boolean | `@${string}`,
|
|
1627
|
+
["Shapeexamples_productcardSectionSectionSectionProduct_title"]: AliasType<{
|
|
1595
1628
|
subtitle?:boolean | `@${string}`,
|
|
1596
|
-
projects?:ValueTypes["Shapelista_projektowListProjects"],
|
|
1597
1629
|
__typename?: boolean | `@${string}`
|
|
1598
1630
|
}>;
|
|
1599
|
-
["
|
|
1600
|
-
|
|
1601
|
-
_id?:boolean | `@${string}`,
|
|
1602
|
-
createdAt?:boolean | `@${string}`,
|
|
1603
|
-
updatedAt?:boolean | `@${string}`,
|
|
1631
|
+
["Shapeexamples_productcardSectionSectionSectionProduct_description"]: AliasType<{
|
|
1632
|
+
description?:boolean | `@${string}`,
|
|
1604
1633
|
__typename?: boolean | `@${string}`
|
|
1605
1634
|
}>;
|
|
1606
|
-
["
|
|
1607
|
-
|
|
1635
|
+
["Shapeexamples_productcardSectionSectionSectionSectionSectionInline"]: AliasType<{
|
|
1636
|
+
content?:boolean | `@${string}`,
|
|
1637
|
+
__typename?: boolean | `@${string}`
|
|
1638
|
+
}>;
|
|
1639
|
+
["Shapeexamples_productcardSectionSectionSectionSectionSectionProduct_price"]: AliasType<{
|
|
1640
|
+
content?:boolean | `@${string}`,
|
|
1641
|
+
__typename?: boolean | `@${string}`
|
|
1642
|
+
}>;
|
|
1643
|
+
["Shapeexamples_productcardSectionSectionSectionSectionSection"]: AliasType<{
|
|
1644
|
+
inline?:ValueTypes["Shapeexamples_productcardSectionSectionSectionSectionSectionInline"],
|
|
1645
|
+
product_price?:ValueTypes["Shapeexamples_productcardSectionSectionSectionSectionSectionProduct_price"],
|
|
1646
|
+
__typename?: boolean | `@${string}`
|
|
1647
|
+
}>;
|
|
1648
|
+
["Shapeexamples_productcardSectionSectionSectionSectionProduct_cta_url"]: AliasType<{
|
|
1649
|
+
cta?:boolean | `@${string}`,
|
|
1608
1650
|
href?:boolean | `@${string}`,
|
|
1609
1651
|
__typename?: boolean | `@${string}`
|
|
1610
1652
|
}>;
|
|
1611
|
-
["
|
|
1612
|
-
|
|
1653
|
+
["Shapeexamples_productcardSectionSectionSectionSection"]: AliasType<{
|
|
1654
|
+
section?:ValueTypes["Shapeexamples_productcardSectionSectionSectionSectionSection"],
|
|
1655
|
+
product_cta_url?:ValueTypes["Shapeexamples_productcardSectionSectionSectionSectionProduct_cta_url"],
|
|
1613
1656
|
__typename?: boolean | `@${string}`
|
|
1614
1657
|
}>;
|
|
1615
|
-
["
|
|
1616
|
-
|
|
1617
|
-
|
|
1658
|
+
["Shapeexamples_productcardSectionSectionSectionFormLabel"]: AliasType<{
|
|
1659
|
+
html_for?:boolean | `@${string}`,
|
|
1660
|
+
content?:boolean | `@${string}`,
|
|
1618
1661
|
__typename?: boolean | `@${string}`
|
|
1619
1662
|
}>;
|
|
1620
|
-
["
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
createdAt?:boolean | `@${string}`,
|
|
1624
|
-
updatedAt?:boolean | `@${string}`,
|
|
1663
|
+
["Shapeexamples_productcardSectionSectionSectionFormLabel_2"]: AliasType<{
|
|
1664
|
+
html_for?:boolean | `@${string}`,
|
|
1665
|
+
content?:boolean | `@${string}`,
|
|
1625
1666
|
__typename?: boolean | `@${string}`
|
|
1626
1667
|
}>;
|
|
1627
|
-
["
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
|
|
1668
|
+
["Shapeexamples_productcardSectionSectionSectionForm"]: AliasType<{
|
|
1669
|
+
label?:ValueTypes["Shapeexamples_productcardSectionSectionSectionFormLabel"],
|
|
1670
|
+
product_color?:boolean | `@${string}`,
|
|
1671
|
+
label_2?:ValueTypes["Shapeexamples_productcardSectionSectionSectionFormLabel_2"],
|
|
1672
|
+
product_quantity?:boolean | `@${string}`,
|
|
1673
|
+
__typename?: boolean | `@${string}`
|
|
1674
|
+
}>;
|
|
1675
|
+
["Shapeexamples_productcardSectionSectionSection"]: AliasType<{
|
|
1676
|
+
product_title?:ValueTypes["Shapeexamples_productcardSectionSectionSectionProduct_title"],
|
|
1677
|
+
product_description?:ValueTypes["Shapeexamples_productcardSectionSectionSectionProduct_description"],
|
|
1678
|
+
section?:ValueTypes["Shapeexamples_productcardSectionSectionSectionSection"],
|
|
1679
|
+
form?:ValueTypes["Shapeexamples_productcardSectionSectionSectionForm"],
|
|
1633
1680
|
__typename?: boolean | `@${string}`
|
|
1634
1681
|
}>;
|
|
1635
|
-
["
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
hero_image?:ValueTypes["ImageField"],
|
|
1682
|
+
["Shapeexamples_productcardSectionSection"]: AliasType<{
|
|
1683
|
+
media?:ValueTypes["Shapeexamples_productcardSectionSectionMedia"],
|
|
1684
|
+
section?:ValueTypes["Shapeexamples_productcardSectionSectionSection"],
|
|
1639
1685
|
__typename?: boolean | `@${string}`
|
|
1640
1686
|
}>;
|
|
1641
|
-
["
|
|
1642
|
-
|
|
1687
|
+
["Shapeexamples_productcardSection"]: AliasType<{
|
|
1688
|
+
section?:ValueTypes["Shapeexamples_productcardSectionSection"],
|
|
1689
|
+
__typename?: boolean | `@${string}`
|
|
1690
|
+
}>;
|
|
1691
|
+
["Shapeexamples_productcard"]: AliasType<{
|
|
1692
|
+
section?:ValueTypes["Shapeexamples_productcardSection"],
|
|
1643
1693
|
_id?:boolean | `@${string}`,
|
|
1644
1694
|
createdAt?:boolean | `@${string}`,
|
|
1645
1695
|
updatedAt?:boolean | `@${string}`,
|
|
1646
1696
|
__typename?: boolean | `@${string}`
|
|
1647
1697
|
}>;
|
|
1648
|
-
["
|
|
1649
|
-
title?:boolean | `@${string}`,
|
|
1698
|
+
["Shapeexamples_testimonialcardSectionFigureBlockquoteQuote"]: AliasType<{
|
|
1650
1699
|
description?:boolean | `@${string}`,
|
|
1651
1700
|
__typename?: boolean | `@${string}`
|
|
1652
1701
|
}>;
|
|
1653
|
-
["
|
|
1654
|
-
|
|
1655
|
-
unit?:boolean | `@${string}`,
|
|
1656
|
-
price?:boolean | `@${string}`,
|
|
1702
|
+
["Shapeexamples_testimonialcardSectionFigureBlockquote"]: AliasType<{
|
|
1703
|
+
quote?:ValueTypes["Shapeexamples_testimonialcardSectionFigureBlockquoteQuote"],
|
|
1657
1704
|
__typename?: boolean | `@${string}`
|
|
1658
1705
|
}>;
|
|
1659
|
-
["
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1706
|
+
["Shapeexamples_testimonialcardSectionFigureFigcaptionSectionAuthor"]: AliasType<{
|
|
1707
|
+
content?:boolean | `@${string}`,
|
|
1708
|
+
__typename?: boolean | `@${string}`
|
|
1709
|
+
}>;
|
|
1710
|
+
["Shapeexamples_testimonialcardSectionFigureFigcaptionSectionRole"]: AliasType<{
|
|
1711
|
+
content?:boolean | `@${string}`,
|
|
1712
|
+
__typename?: boolean | `@${string}`
|
|
1713
|
+
}>;
|
|
1714
|
+
["Shapeexamples_testimonialcardSectionFigureFigcaptionSection"]: AliasType<{
|
|
1715
|
+
author?:ValueTypes["Shapeexamples_testimonialcardSectionFigureFigcaptionSectionAuthor"],
|
|
1716
|
+
role?:ValueTypes["Shapeexamples_testimonialcardSectionFigureFigcaptionSectionRole"],
|
|
1717
|
+
__typename?: boolean | `@${string}`
|
|
1718
|
+
}>;
|
|
1719
|
+
["Shapeexamples_testimonialcardSectionFigureFigcaptionLink"]: AliasType<{
|
|
1720
|
+
cta?:boolean | `@${string}`,
|
|
1721
|
+
href?:boolean | `@${string}`,
|
|
1663
1722
|
__typename?: boolean | `@${string}`
|
|
1664
1723
|
}>;
|
|
1665
|
-
["
|
|
1666
|
-
|
|
1667
|
-
|
|
1724
|
+
["Shapeexamples_testimonialcardSectionFigureFigcaption"]: AliasType<{
|
|
1725
|
+
section?:ValueTypes["Shapeexamples_testimonialcardSectionFigureFigcaptionSection"],
|
|
1726
|
+
link?:ValueTypes["Shapeexamples_testimonialcardSectionFigureFigcaptionLink"],
|
|
1668
1727
|
__typename?: boolean | `@${string}`
|
|
1669
1728
|
}>;
|
|
1670
|
-
["
|
|
1671
|
-
|
|
1672
|
-
|
|
1729
|
+
["Shapeexamples_testimonialcardSectionFigure"]: AliasType<{
|
|
1730
|
+
image?:ValueTypes["ImageField"],
|
|
1731
|
+
blockquote?:ValueTypes["Shapeexamples_testimonialcardSectionFigureBlockquote"],
|
|
1732
|
+
figcaption?:ValueTypes["Shapeexamples_testimonialcardSectionFigureFigcaption"],
|
|
1733
|
+
__typename?: boolean | `@${string}`
|
|
1734
|
+
}>;
|
|
1735
|
+
["Shapeexamples_testimonialcardSection"]: AliasType<{
|
|
1736
|
+
figure?:ValueTypes["Shapeexamples_testimonialcardSectionFigure"],
|
|
1673
1737
|
__typename?: boolean | `@${string}`
|
|
1674
1738
|
}>;
|
|
1675
|
-
["
|
|
1676
|
-
|
|
1739
|
+
["Shapeexamples_testimonialcard"]: AliasType<{
|
|
1740
|
+
section?:ValueTypes["Shapeexamples_testimonialcardSection"],
|
|
1677
1741
|
_id?:boolean | `@${string}`,
|
|
1678
1742
|
createdAt?:boolean | `@${string}`,
|
|
1679
1743
|
updatedAt?:boolean | `@${string}`,
|
|
1680
1744
|
__typename?: boolean | `@${string}`
|
|
1681
1745
|
}>;
|
|
1682
|
-
["
|
|
1683
|
-
|
|
1684
|
-
description?:boolean | `@${string}`,
|
|
1746
|
+
["ShapeexamplescontactformSectionSectionHeading"]: AliasType<{
|
|
1747
|
+
subtitle?:boolean | `@${string}`,
|
|
1685
1748
|
__typename?: boolean | `@${string}`
|
|
1686
1749
|
}>;
|
|
1687
|
-
["
|
|
1688
|
-
|
|
1750
|
+
["ShapeexamplescontactformSectionSectionDescription"]: AliasType<{
|
|
1751
|
+
description?:boolean | `@${string}`,
|
|
1689
1752
|
__typename?: boolean | `@${string}`
|
|
1690
1753
|
}>;
|
|
1691
|
-
["
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
feature_list?:ValueTypes["Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list"],
|
|
1696
|
-
cta?:boolean | `@${string}`,
|
|
1754
|
+
["ShapeexamplescontactformSectionSectionForm"]: AliasType<{
|
|
1755
|
+
name?:boolean | `@${string}`,
|
|
1756
|
+
email?:boolean | `@${string}`,
|
|
1757
|
+
message?:boolean | `@${string}`,
|
|
1697
1758
|
__typename?: boolean | `@${string}`
|
|
1698
1759
|
}>;
|
|
1699
|
-
["
|
|
1700
|
-
|
|
1760
|
+
["ShapeexamplescontactformSectionSectionButton"]: AliasType<{
|
|
1761
|
+
button_text?:boolean | `@${string}`,
|
|
1701
1762
|
__typename?: boolean | `@${string}`
|
|
1702
1763
|
}>;
|
|
1703
|
-
["
|
|
1704
|
-
plan_name?:boolean | `@${string}`,
|
|
1705
|
-
price?:boolean | `@${string}`,
|
|
1706
|
-
plan_description?:boolean | `@${string}`,
|
|
1707
|
-
feature_list?:ValueTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list"],
|
|
1764
|
+
["ShapeexamplescontactformSectionSectionLink"]: AliasType<{
|
|
1708
1765
|
cta?:boolean | `@${string}`,
|
|
1766
|
+
href?:boolean | `@${string}`,
|
|
1709
1767
|
__typename?: boolean | `@${string}`
|
|
1710
1768
|
}>;
|
|
1711
|
-
["
|
|
1712
|
-
|
|
1713
|
-
|
|
1769
|
+
["ShapeexamplescontactformSectionSection"]: AliasType<{
|
|
1770
|
+
heading?:ValueTypes["ShapeexamplescontactformSectionSectionHeading"],
|
|
1771
|
+
description?:ValueTypes["ShapeexamplescontactformSectionSectionDescription"],
|
|
1772
|
+
form?:ValueTypes["ShapeexamplescontactformSectionSectionForm"],
|
|
1773
|
+
button?:ValueTypes["ShapeexamplescontactformSectionSectionButton"],
|
|
1774
|
+
link?:ValueTypes["ShapeexamplescontactformSectionSectionLink"],
|
|
1714
1775
|
__typename?: boolean | `@${string}`
|
|
1715
1776
|
}>;
|
|
1716
|
-
["
|
|
1717
|
-
|
|
1718
|
-
plans_grid?:ValueTypes["Shapepricingv1Pricing_sectionPlans_grid"],
|
|
1777
|
+
["ShapeexamplescontactformSection"]: AliasType<{
|
|
1778
|
+
section?:ValueTypes["ShapeexamplescontactformSectionSection"],
|
|
1719
1779
|
__typename?: boolean | `@${string}`
|
|
1720
1780
|
}>;
|
|
1721
|
-
["
|
|
1722
|
-
|
|
1781
|
+
["Shapeexamplescontactform"]: AliasType<{
|
|
1782
|
+
section?:ValueTypes["ShapeexamplescontactformSection"],
|
|
1723
1783
|
_id?:boolean | `@${string}`,
|
|
1724
1784
|
createdAt?:boolean | `@${string}`,
|
|
1725
1785
|
updatedAt?:boolean | `@${string}`,
|
|
1726
1786
|
__typename?: boolean | `@${string}`
|
|
1727
1787
|
}>;
|
|
1728
|
-
["
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
email?:boolean | `@${string}`,
|
|
1788
|
+
["ShapeproductcardProductcardProductcard_innerMedia"]: AliasType<{
|
|
1789
|
+
product_image?:ValueTypes["ImageField"],
|
|
1790
|
+
badge?:boolean | `@${string}`,
|
|
1732
1791
|
__typename?: boolean | `@${string}`
|
|
1733
1792
|
}>;
|
|
1734
|
-
["
|
|
1735
|
-
|
|
1736
|
-
|
|
1793
|
+
["ShapeproductcardProductcardProductcard_innerContentPriceblockPricepart"]: AliasType<{
|
|
1794
|
+
price_label?:boolean | `@${string}`,
|
|
1795
|
+
product_price?:boolean | `@${string}`,
|
|
1737
1796
|
__typename?: boolean | `@${string}`
|
|
1738
1797
|
}>;
|
|
1739
|
-
["
|
|
1740
|
-
|
|
1798
|
+
["ShapeproductcardProductcardProductcard_innerContentPriceblockCta"]: AliasType<{
|
|
1799
|
+
cta?:boolean | `@${string}`,
|
|
1800
|
+
href?:boolean | `@${string}`,
|
|
1741
1801
|
__typename?: boolean | `@${string}`
|
|
1742
1802
|
}>;
|
|
1743
|
-
["
|
|
1744
|
-
|
|
1745
|
-
|
|
1803
|
+
["ShapeproductcardProductcardProductcard_innerContentPriceblock"]: AliasType<{
|
|
1804
|
+
pricepart?:ValueTypes["ShapeproductcardProductcardProductcard_innerContentPriceblockPricepart"],
|
|
1805
|
+
cta?:ValueTypes["ShapeproductcardProductcardProductcard_innerContentPriceblockCta"],
|
|
1746
1806
|
__typename?: boolean | `@${string}`
|
|
1747
1807
|
}>;
|
|
1748
|
-
["
|
|
1749
|
-
|
|
1750
|
-
|
|
1808
|
+
["ShapeproductcardProductcardProductcard_innerContentOptions"]: AliasType<{
|
|
1809
|
+
product_color_label?:boolean | `@${string}`,
|
|
1810
|
+
product_color?:boolean | `@${string}`,
|
|
1811
|
+
product_quantity_label?:boolean | `@${string}`,
|
|
1812
|
+
product_quantity?:boolean | `@${string}`,
|
|
1751
1813
|
__typename?: boolean | `@${string}`
|
|
1752
1814
|
}>;
|
|
1753
|
-
["
|
|
1754
|
-
|
|
1755
|
-
|
|
1815
|
+
["ShapeproductcardProductcardProductcard_innerContent"]: AliasType<{
|
|
1816
|
+
product_title?:boolean | `@${string}`,
|
|
1817
|
+
product_description?:boolean | `@${string}`,
|
|
1818
|
+
priceblock?:ValueTypes["ShapeproductcardProductcardProductcard_innerContentPriceblock"],
|
|
1819
|
+
options?:ValueTypes["ShapeproductcardProductcardProductcard_innerContentOptions"],
|
|
1756
1820
|
__typename?: boolean | `@${string}`
|
|
1757
1821
|
}>;
|
|
1758
|
-
["
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
monthly_api_requests?:ValueTypes["Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests"],
|
|
1822
|
+
["ShapeproductcardProductcardProductcard_inner"]: AliasType<{
|
|
1823
|
+
media?:ValueTypes["ShapeproductcardProductcardProductcard_innerMedia"],
|
|
1824
|
+
content?:ValueTypes["ShapeproductcardProductcardProductcard_innerContent"],
|
|
1762
1825
|
__typename?: boolean | `@${string}`
|
|
1763
1826
|
}>;
|
|
1764
|
-
["
|
|
1765
|
-
|
|
1766
|
-
plan_status?:ValueTypes["Shapeprofile_infoProfile_sectionPlan_status"],
|
|
1767
|
-
usage_section?:ValueTypes["Shapeprofile_infoProfile_sectionUsage_section"],
|
|
1827
|
+
["ShapeproductcardProductcard"]: AliasType<{
|
|
1828
|
+
productcard_inner?:ValueTypes["ShapeproductcardProductcardProductcard_inner"],
|
|
1768
1829
|
__typename?: boolean | `@${string}`
|
|
1769
1830
|
}>;
|
|
1770
|
-
["
|
|
1771
|
-
|
|
1831
|
+
["Shapeproductcard"]: AliasType<{
|
|
1832
|
+
productcard?:ValueTypes["ShapeproductcardProductcard"],
|
|
1772
1833
|
_id?:boolean | `@${string}`,
|
|
1773
1834
|
createdAt?:boolean | `@${string}`,
|
|
1774
1835
|
updatedAt?:boolean | `@${string}`,
|
|
1775
1836
|
__typename?: boolean | `@${string}`
|
|
1776
1837
|
}>;
|
|
1777
|
-
["
|
|
1838
|
+
["ShapereactcomponentSectionSectionHeading"]: AliasType<{
|
|
1778
1839
|
title?:boolean | `@${string}`,
|
|
1840
|
+
__typename?: boolean | `@${string}`
|
|
1841
|
+
}>;
|
|
1842
|
+
["ShapereactcomponentSectionSectionDescription"]: AliasType<{
|
|
1779
1843
|
description?:boolean | `@${string}`,
|
|
1780
1844
|
__typename?: boolean | `@${string}`
|
|
1781
1845
|
}>;
|
|
1782
|
-
["
|
|
1846
|
+
["ShapereactcomponentSectionSectionMedia"]: AliasType<{
|
|
1783
1847
|
image?:ValueTypes["ImageField"],
|
|
1784
|
-
|
|
1785
|
-
|
|
1848
|
+
__typename?: boolean | `@${string}`
|
|
1849
|
+
}>;
|
|
1850
|
+
["ShapereactcomponentSectionSectionLink"]: AliasType<{
|
|
1786
1851
|
cta?:boolean | `@${string}`,
|
|
1852
|
+
href?:boolean | `@${string}`,
|
|
1787
1853
|
__typename?: boolean | `@${string}`
|
|
1788
1854
|
}>;
|
|
1789
|
-
["
|
|
1790
|
-
|
|
1855
|
+
["ShapereactcomponentSectionSectionForm"]: AliasType<{
|
|
1856
|
+
name?:boolean | `@${string}`,
|
|
1857
|
+
description?:boolean | `@${string}`,
|
|
1791
1858
|
__typename?: boolean | `@${string}`
|
|
1792
1859
|
}>;
|
|
1793
|
-
["
|
|
1794
|
-
|
|
1795
|
-
features_grid?:ValueTypes["ShapesupportSectionFeatures_grid"],
|
|
1860
|
+
["ShapereactcomponentSectionSectionButton"]: AliasType<{
|
|
1861
|
+
button_text?:boolean | `@${string}`,
|
|
1796
1862
|
__typename?: boolean | `@${string}`
|
|
1797
1863
|
}>;
|
|
1798
|
-
["
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1864
|
+
["ShapereactcomponentSectionSection"]: AliasType<{
|
|
1865
|
+
heading?:ValueTypes["ShapereactcomponentSectionSectionHeading"],
|
|
1866
|
+
description?:ValueTypes["ShapereactcomponentSectionSectionDescription"],
|
|
1867
|
+
media?:ValueTypes["ShapereactcomponentSectionSectionMedia"],
|
|
1868
|
+
link?:ValueTypes["ShapereactcomponentSectionSectionLink"],
|
|
1869
|
+
form?:ValueTypes["ShapereactcomponentSectionSectionForm"],
|
|
1870
|
+
button?:ValueTypes["ShapereactcomponentSectionSectionButton"],
|
|
1803
1871
|
__typename?: boolean | `@${string}`
|
|
1804
1872
|
}>;
|
|
1805
|
-
["
|
|
1806
|
-
|
|
1807
|
-
subtitle?:boolean | `@${string}`,
|
|
1808
|
-
period?:boolean | `@${string}`,
|
|
1809
|
-
tokens_consumed?:boolean | `@${string}`,
|
|
1873
|
+
["ShapereactcomponentSection"]: AliasType<{
|
|
1874
|
+
section?:ValueTypes["ShapereactcomponentSectionSection"],
|
|
1810
1875
|
__typename?: boolean | `@${string}`
|
|
1811
1876
|
}>;
|
|
1812
|
-
["
|
|
1813
|
-
|
|
1877
|
+
["Shapereactcomponent"]: AliasType<{
|
|
1878
|
+
section?:ValueTypes["ShapereactcomponentSection"],
|
|
1814
1879
|
_id?:boolean | `@${string}`,
|
|
1815
1880
|
createdAt?:boolean | `@${string}`,
|
|
1816
1881
|
updatedAt?:boolean | `@${string}`,
|
|
1817
1882
|
__typename?: boolean | `@${string}`
|
|
1818
1883
|
}>;
|
|
1819
1884
|
["RootParamsInput"]: {
|
|
1820
|
-
_version?: string | undefined | null | Variable<any, string
|
|
1821
|
-
locale?: string | undefined | null | Variable<any, string>
|
|
1885
|
+
_version?: string | undefined | null | Variable<any, string>
|
|
1822
1886
|
};
|
|
1823
1887
|
["RootParamsEnum"]:RootParamsEnum;
|
|
1824
|
-
["docsSortInput"]: {
|
|
1825
|
-
slug?: ValueTypes["Sort"] | undefined | null | Variable<any, string>,
|
|
1826
|
-
createdAt?: ValueTypes["Sort"] | undefined | null | Variable<any, string>,
|
|
1827
|
-
updatedAt?: ValueTypes["Sort"] | undefined | null | Variable<any, string>
|
|
1828
|
-
};
|
|
1829
|
-
["docsFilterInput"]: {
|
|
1830
|
-
slug?: ValueTypes["FilterInputString"] | undefined | null | Variable<any, string>
|
|
1831
|
-
};
|
|
1832
1888
|
["ID"]:unknown
|
|
1833
1889
|
}
|
|
1834
1890
|
|
|
@@ -2094,6 +2150,12 @@ export type ResolverInputTypes = {
|
|
|
2094
2150
|
path?:boolean | `@${string}`,
|
|
2095
2151
|
__typename?: boolean | `@${string}`
|
|
2096
2152
|
}>;
|
|
2153
|
+
["GenerateHusarShapeImplementorInput"]: {
|
|
2154
|
+
prompt: string,
|
|
2155
|
+
existingFileContent?: string | undefined | null,
|
|
2156
|
+
backendGraphQlContent?: string | undefined | null,
|
|
2157
|
+
includeShapes?: Array<string> | undefined | null
|
|
2158
|
+
};
|
|
2097
2159
|
/** This enum is defined externally and injected via federation */
|
|
2098
2160
|
["CMSType"]:CMSType;
|
|
2099
2161
|
["Query"]: AliasType<{
|
|
@@ -2105,646 +2167,696 @@ export type ResolverInputTypes = {
|
|
|
2105
2167
|
listShapes?:ResolverInputTypes["Shape"],
|
|
2106
2168
|
tailwind?:ResolverInputTypes["TailwindConfiguration"],
|
|
2107
2169
|
listForms?:ResolverInputTypes["Form"],
|
|
2108
|
-
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
|
|
2117
|
-
|
|
2118
|
-
|
|
2119
|
-
|
|
2120
|
-
|
|
2121
|
-
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
|
|
2132
|
-
|
|
2133
|
-
|
|
2134
|
-
|
|
2135
|
-
|
|
2136
|
-
|
|
2137
|
-
|
|
2138
|
-
|
|
2139
|
-
|
|
2140
|
-
|
|
2141
|
-
|
|
2142
|
-
|
|
2143
|
-
|
|
2144
|
-
|
|
2145
|
-
|
|
2146
|
-
|
|
2147
|
-
|
|
2148
|
-
|
|
2149
|
-
|
|
2150
|
-
|
|
2151
|
-
|
|
2152
|
-
modelShapenewshape?:boolean | `@${string}`,
|
|
2153
|
-
previewFieldsShapenewshape?:boolean | `@${string}`,
|
|
2154
|
-
oneShapenewshape?:ResolverInputTypes["Shapenewshape"],
|
|
2155
|
-
fieldSetShapepricing_table?:boolean | `@${string}`,
|
|
2156
|
-
modelShapepricing_table?:boolean | `@${string}`,
|
|
2157
|
-
previewFieldsShapepricing_table?:boolean | `@${string}`,
|
|
2158
|
-
oneShapepricing_table?:ResolverInputTypes["Shapepricing_table"],
|
|
2159
|
-
fieldSetShapepricingv1?:boolean | `@${string}`,
|
|
2160
|
-
modelShapepricingv1?:boolean | `@${string}`,
|
|
2161
|
-
previewFieldsShapepricingv1?:boolean | `@${string}`,
|
|
2162
|
-
oneShapepricingv1?:ResolverInputTypes["Shapepricingv1"],
|
|
2163
|
-
fieldSetShapeprofile_info?:boolean | `@${string}`,
|
|
2164
|
-
modelShapeprofile_info?:boolean | `@${string}`,
|
|
2165
|
-
previewFieldsShapeprofile_info?:boolean | `@${string}`,
|
|
2166
|
-
oneShapeprofile_info?:ResolverInputTypes["Shapeprofile_info"],
|
|
2167
|
-
fieldSetShapesupport?:boolean | `@${string}`,
|
|
2168
|
-
modelShapesupport?:boolean | `@${string}`,
|
|
2169
|
-
previewFieldsShapesupport?:boolean | `@${string}`,
|
|
2170
|
-
oneShapesupport?:ResolverInputTypes["Shapesupport"],
|
|
2171
|
-
fieldSetShapeusage?:boolean | `@${string}`,
|
|
2172
|
-
modelShapeusage?:boolean | `@${string}`,
|
|
2173
|
-
previewFieldsShapeusage?:boolean | `@${string}`,
|
|
2174
|
-
oneShapeusage?:ResolverInputTypes["Shapeusage"],
|
|
2175
|
-
variantsViewaccount?:ResolverInputTypes["Viewaccount"],
|
|
2176
|
-
fieldSetViewaccount?:boolean | `@${string}`,
|
|
2177
|
-
modelViewaccount?:boolean | `@${string}`,
|
|
2178
|
-
previewFieldsViewaccount?:boolean | `@${string}`,
|
|
2179
|
-
oneViewaccount?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewaccount"]],
|
|
2180
|
-
oneAsScalarViewaccount?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`],
|
|
2181
|
-
variantsViewfeatures?:ResolverInputTypes["Viewfeatures"],
|
|
2182
|
-
fieldSetViewfeatures?:boolean | `@${string}`,
|
|
2183
|
-
modelViewfeatures?:boolean | `@${string}`,
|
|
2184
|
-
previewFieldsViewfeatures?:boolean | `@${string}`,
|
|
2185
|
-
oneViewfeatures?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewfeatures"]],
|
|
2186
|
-
oneAsScalarViewfeatures?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`],
|
|
2187
|
-
variantsViewhomepage?:ResolverInputTypes["Viewhomepage"],
|
|
2188
|
-
fieldSetViewhomepage?:boolean | `@${string}`,
|
|
2189
|
-
modelViewhomepage?:boolean | `@${string}`,
|
|
2190
|
-
previewFieldsViewhomepage?:boolean | `@${string}`,
|
|
2191
|
-
oneViewhomepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewhomepage"]],
|
|
2192
|
-
oneAsScalarViewhomepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`],
|
|
2193
|
-
variantsViewhowitworks?:ResolverInputTypes["Viewhowitworks"],
|
|
2194
|
-
fieldSetViewhowitworks?:boolean | `@${string}`,
|
|
2195
|
-
modelViewhowitworks?:boolean | `@${string}`,
|
|
2196
|
-
previewFieldsViewhowitworks?:boolean | `@${string}`,
|
|
2197
|
-
oneViewhowitworks?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewhowitworks"]],
|
|
2198
|
-
oneAsScalarViewhowitworks?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`],
|
|
2199
|
-
variantsViewpricing?:ResolverInputTypes["Viewpricing"],
|
|
2200
|
-
fieldSetViewpricing?:boolean | `@${string}`,
|
|
2201
|
-
modelViewpricing?:boolean | `@${string}`,
|
|
2202
|
-
previewFieldsViewpricing?:boolean | `@${string}`,
|
|
2203
|
-
oneViewpricing?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewpricing"]],
|
|
2204
|
-
oneAsScalarViewpricing?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`],
|
|
2170
|
+
fieldSetShapeexamples_contactform?:boolean | `@${string}`,
|
|
2171
|
+
modelShapeexamples_contactform?:boolean | `@${string}`,
|
|
2172
|
+
previewFieldsShapeexamples_contactform?:boolean | `@${string}`,
|
|
2173
|
+
oneShapeexamples_contactform?:ResolverInputTypes["Shapeexamples_contactform"],
|
|
2174
|
+
fieldSetShapeexamples_featuregrid?:boolean | `@${string}`,
|
|
2175
|
+
modelShapeexamples_featuregrid?:boolean | `@${string}`,
|
|
2176
|
+
previewFieldsShapeexamples_featuregrid?:boolean | `@${string}`,
|
|
2177
|
+
oneShapeexamples_featuregrid?:ResolverInputTypes["Shapeexamples_featuregrid"],
|
|
2178
|
+
fieldSetShapeexamples_herosection?:boolean | `@${string}`,
|
|
2179
|
+
modelShapeexamples_herosection?:boolean | `@${string}`,
|
|
2180
|
+
previewFieldsShapeexamples_herosection?:boolean | `@${string}`,
|
|
2181
|
+
oneShapeexamples_herosection?:ResolverInputTypes["Shapeexamples_herosection"],
|
|
2182
|
+
fieldSetShapeexamples_newslettersignup?:boolean | `@${string}`,
|
|
2183
|
+
modelShapeexamples_newslettersignup?:boolean | `@${string}`,
|
|
2184
|
+
previewFieldsShapeexamples_newslettersignup?:boolean | `@${string}`,
|
|
2185
|
+
oneShapeexamples_newslettersignup?:ResolverInputTypes["Shapeexamples_newslettersignup"],
|
|
2186
|
+
fieldSetShapeexamples_pricingplans?:boolean | `@${string}`,
|
|
2187
|
+
modelShapeexamples_pricingplans?:boolean | `@${string}`,
|
|
2188
|
+
previewFieldsShapeexamples_pricingplans?:boolean | `@${string}`,
|
|
2189
|
+
oneShapeexamples_pricingplans?:ResolverInputTypes["Shapeexamples_pricingplans"],
|
|
2190
|
+
fieldSetShapeexamples_pricingplans_1?:boolean | `@${string}`,
|
|
2191
|
+
modelShapeexamples_pricingplans_1?:boolean | `@${string}`,
|
|
2192
|
+
previewFieldsShapeexamples_pricingplans_1?:boolean | `@${string}`,
|
|
2193
|
+
oneShapeexamples_pricingplans_1?:ResolverInputTypes["Shapeexamples_pricingplans_1"],
|
|
2194
|
+
fieldSetShapeexamples_productcard?:boolean | `@${string}`,
|
|
2195
|
+
modelShapeexamples_productcard?:boolean | `@${string}`,
|
|
2196
|
+
previewFieldsShapeexamples_productcard?:boolean | `@${string}`,
|
|
2197
|
+
oneShapeexamples_productcard?:ResolverInputTypes["Shapeexamples_productcard"],
|
|
2198
|
+
fieldSetShapeexamples_testimonialcard?:boolean | `@${string}`,
|
|
2199
|
+
modelShapeexamples_testimonialcard?:boolean | `@${string}`,
|
|
2200
|
+
previewFieldsShapeexamples_testimonialcard?:boolean | `@${string}`,
|
|
2201
|
+
oneShapeexamples_testimonialcard?:ResolverInputTypes["Shapeexamples_testimonialcard"],
|
|
2202
|
+
fieldSetShapeexamplescontactform?:boolean | `@${string}`,
|
|
2203
|
+
modelShapeexamplescontactform?:boolean | `@${string}`,
|
|
2204
|
+
previewFieldsShapeexamplescontactform?:boolean | `@${string}`,
|
|
2205
|
+
oneShapeexamplescontactform?:ResolverInputTypes["Shapeexamplescontactform"],
|
|
2206
|
+
fieldSetShapeproductcard?:boolean | `@${string}`,
|
|
2207
|
+
modelShapeproductcard?:boolean | `@${string}`,
|
|
2208
|
+
previewFieldsShapeproductcard?:boolean | `@${string}`,
|
|
2209
|
+
oneShapeproductcard?:ResolverInputTypes["Shapeproductcard"],
|
|
2210
|
+
fieldSetShapereactcomponent?:boolean | `@${string}`,
|
|
2211
|
+
modelShapereactcomponent?:boolean | `@${string}`,
|
|
2212
|
+
previewFieldsShapereactcomponent?:boolean | `@${string}`,
|
|
2213
|
+
oneShapereactcomponent?:ResolverInputTypes["Shapereactcomponent"],
|
|
2205
2214
|
__typename?: boolean | `@${string}`
|
|
2206
2215
|
}>;
|
|
2207
2216
|
["RootParamsType"]: AliasType<{
|
|
2208
2217
|
_version?:boolean | `@${string}`,
|
|
2209
|
-
locale?:boolean | `@${string}`,
|
|
2210
2218
|
__typename?: boolean | `@${string}`
|
|
2211
2219
|
}>;
|
|
2212
|
-
["ModelEnum"]:ModelEnum;
|
|
2213
|
-
["ViewEnum"]:ViewEnum;
|
|
2214
2220
|
["ShapeEnum"]:ShapeEnum;
|
|
2215
|
-
["
|
|
2216
|
-
|
|
2217
|
-
pageInfo?:ResolverInputTypes["PageInfo"],
|
|
2221
|
+
["Shapeexamples_contactformSectionSectionHeading"]: AliasType<{
|
|
2222
|
+
subtitle?:boolean | `@${string}`,
|
|
2218
2223
|
__typename?: boolean | `@${string}`
|
|
2219
2224
|
}>;
|
|
2220
|
-
["
|
|
2221
|
-
|
|
2222
|
-
title?:boolean | `@${string}`,
|
|
2223
|
-
seotitle?:boolean | `@${string}`,
|
|
2224
|
-
metadesc?:boolean | `@${string}`,
|
|
2225
|
-
sortid?:boolean | `@${string}`,
|
|
2226
|
-
main_category?:boolean | `@${string}`,
|
|
2227
|
-
content?:boolean | `@${string}`,
|
|
2228
|
-
video?:ResolverInputTypes["VideoField"],
|
|
2229
|
-
locale?:boolean | `@${string}`,
|
|
2230
|
-
slug?:boolean | `@${string}`,
|
|
2231
|
-
_id?:boolean | `@${string}`,
|
|
2232
|
-
createdAt?:boolean | `@${string}`,
|
|
2233
|
-
updatedAt?:boolean | `@${string}`,
|
|
2234
|
-
draft_version?:boolean | `@${string}`,
|
|
2235
|
-
json_ld?:boolean | `@${string}`,
|
|
2225
|
+
["Shapeexamples_contactformSectionSectionDescription"]: AliasType<{
|
|
2226
|
+
description?:boolean | `@${string}`,
|
|
2236
2227
|
__typename?: boolean | `@${string}`
|
|
2237
2228
|
}>;
|
|
2238
|
-
["
|
|
2239
|
-
|
|
2240
|
-
|
|
2229
|
+
["Shapeexamples_contactformSectionSectionForm"]: AliasType<{
|
|
2230
|
+
name?:boolean | `@${string}`,
|
|
2231
|
+
email?:boolean | `@${string}`,
|
|
2232
|
+
message?:boolean | `@${string}`,
|
|
2241
2233
|
__typename?: boolean | `@${string}`
|
|
2242
2234
|
}>;
|
|
2243
|
-
["
|
|
2244
|
-
|
|
2245
|
-
main?:ResolverInputTypes["ViewaccountMain"],
|
|
2246
|
-
locale?:boolean | `@${string}`,
|
|
2247
|
-
slug?:boolean | `@${string}`,
|
|
2248
|
-
_id?:boolean | `@${string}`,
|
|
2249
|
-
createdAt?:boolean | `@${string}`,
|
|
2250
|
-
updatedAt?:boolean | `@${string}`,
|
|
2251
|
-
draft_version?:boolean | `@${string}`,
|
|
2252
|
-
json_ld?:boolean | `@${string}`,
|
|
2235
|
+
["Shapeexamples_contactformSectionSectionButton"]: AliasType<{
|
|
2236
|
+
button_text?:boolean | `@${string}`,
|
|
2253
2237
|
__typename?: boolean | `@${string}`
|
|
2254
2238
|
}>;
|
|
2255
|
-
["
|
|
2256
|
-
|
|
2257
|
-
|
|
2239
|
+
["Shapeexamples_contactformSectionSectionLink"]: AliasType<{
|
|
2240
|
+
cta?:boolean | `@${string}`,
|
|
2241
|
+
href?:boolean | `@${string}`,
|
|
2258
2242
|
__typename?: boolean | `@${string}`
|
|
2259
2243
|
}>;
|
|
2260
|
-
["
|
|
2261
|
-
|
|
2262
|
-
|
|
2263
|
-
|
|
2264
|
-
|
|
2244
|
+
["Shapeexamples_contactformSectionSection"]: AliasType<{
|
|
2245
|
+
heading?:ResolverInputTypes["Shapeexamples_contactformSectionSectionHeading"],
|
|
2246
|
+
description?:ResolverInputTypes["Shapeexamples_contactformSectionSectionDescription"],
|
|
2247
|
+
form?:ResolverInputTypes["Shapeexamples_contactformSectionSectionForm"],
|
|
2248
|
+
button?:ResolverInputTypes["Shapeexamples_contactformSectionSectionButton"],
|
|
2249
|
+
link?:ResolverInputTypes["Shapeexamples_contactformSectionSectionLink"],
|
|
2250
|
+
__typename?: boolean | `@${string}`
|
|
2251
|
+
}>;
|
|
2252
|
+
["Shapeexamples_contactformSection"]: AliasType<{
|
|
2253
|
+
section?:ResolverInputTypes["Shapeexamples_contactformSectionSection"],
|
|
2254
|
+
__typename?: boolean | `@${string}`
|
|
2255
|
+
}>;
|
|
2256
|
+
["Shapeexamples_contactform"]: AliasType<{
|
|
2257
|
+
section?:ResolverInputTypes["Shapeexamples_contactformSection"],
|
|
2265
2258
|
_id?:boolean | `@${string}`,
|
|
2266
2259
|
createdAt?:boolean | `@${string}`,
|
|
2267
2260
|
updatedAt?:boolean | `@${string}`,
|
|
2268
|
-
|
|
2269
|
-
|
|
2270
|
-
|
|
2271
|
-
}
|
|
2272
|
-
|
|
2273
|
-
|
|
2274
|
-
|
|
2275
|
-
|
|
2276
|
-
|
|
2277
|
-
|
|
2278
|
-
|
|
2279
|
-
|
|
2280
|
-
|
|
2261
|
+
__typename?: boolean | `@${string}`
|
|
2262
|
+
}>;
|
|
2263
|
+
["Shapeexamples_featuregridSectionSectionHeaderFeatures_title"]: AliasType<{
|
|
2264
|
+
subtitle?:boolean | `@${string}`,
|
|
2265
|
+
__typename?: boolean | `@${string}`
|
|
2266
|
+
}>;
|
|
2267
|
+
["Shapeexamples_featuregridSectionSectionHeaderFeatures_description"]: AliasType<{
|
|
2268
|
+
description?:boolean | `@${string}`,
|
|
2269
|
+
__typename?: boolean | `@${string}`
|
|
2270
|
+
}>;
|
|
2271
|
+
["Shapeexamples_featuregridSectionSectionHeader"]: AliasType<{
|
|
2272
|
+
features_title?:ResolverInputTypes["Shapeexamples_featuregridSectionSectionHeaderFeatures_title"],
|
|
2273
|
+
features_description?:ResolverInputTypes["Shapeexamples_featuregridSectionSectionHeaderFeatures_description"],
|
|
2274
|
+
__typename?: boolean | `@${string}`
|
|
2275
|
+
}>;
|
|
2276
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3MediaFeature_title_1"]: AliasType<{
|
|
2277
|
+
h3?:boolean | `@${string}`,
|
|
2278
|
+
__typename?: boolean | `@${string}`
|
|
2279
|
+
}>;
|
|
2280
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3MediaFeature_description_1"]: AliasType<{
|
|
2281
|
+
description?:boolean | `@${string}`,
|
|
2282
|
+
__typename?: boolean | `@${string}`
|
|
2283
|
+
}>;
|
|
2284
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3Media"]: AliasType<{
|
|
2285
|
+
image?:ResolverInputTypes["ImageField"],
|
|
2286
|
+
feature_title_1?:ResolverInputTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3MediaFeature_title_1"],
|
|
2287
|
+
feature_description_1?:ResolverInputTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3MediaFeature_description_1"],
|
|
2288
|
+
__typename?: boolean | `@${string}`
|
|
2289
|
+
}>;
|
|
2290
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_2Feature_title_2"]: AliasType<{
|
|
2291
|
+
h3?:boolean | `@${string}`,
|
|
2292
|
+
__typename?: boolean | `@${string}`
|
|
2293
|
+
}>;
|
|
2294
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_2Feature_description_2"]: AliasType<{
|
|
2295
|
+
description?:boolean | `@${string}`,
|
|
2296
|
+
__typename?: boolean | `@${string}`
|
|
2297
|
+
}>;
|
|
2298
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_2"]: AliasType<{
|
|
2299
|
+
image?:ResolverInputTypes["ImageField"],
|
|
2300
|
+
feature_title_2?:ResolverInputTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_2Feature_title_2"],
|
|
2301
|
+
feature_description_2?:ResolverInputTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_2Feature_description_2"],
|
|
2302
|
+
__typename?: boolean | `@${string}`
|
|
2303
|
+
}>;
|
|
2304
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_3Feature_title_3"]: AliasType<{
|
|
2305
|
+
h3?:boolean | `@${string}`,
|
|
2306
|
+
__typename?: boolean | `@${string}`
|
|
2307
|
+
}>;
|
|
2308
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_3Feature_description_3"]: AliasType<{
|
|
2309
|
+
description?:boolean | `@${string}`,
|
|
2310
|
+
__typename?: boolean | `@${string}`
|
|
2311
|
+
}>;
|
|
2312
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_3"]: AliasType<{
|
|
2313
|
+
image?:ResolverInputTypes["ImageField"],
|
|
2314
|
+
feature_title_3?:ResolverInputTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_3Feature_title_3"],
|
|
2315
|
+
feature_description_3?:ResolverInputTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_3Feature_description_3"],
|
|
2316
|
+
__typename?: boolean | `@${string}`
|
|
2317
|
+
}>;
|
|
2318
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3"]: AliasType<{
|
|
2319
|
+
media?:ResolverInputTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3Media"],
|
|
2320
|
+
media_2?:ResolverInputTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_2"],
|
|
2321
|
+
media_3?:ResolverInputTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_3"],
|
|
2322
|
+
__typename?: boolean | `@${string}`
|
|
2323
|
+
}>;
|
|
2324
|
+
["Shapeexamples_featuregridSectionSection"]: AliasType<{
|
|
2325
|
+
header?:ResolverInputTypes["Shapeexamples_featuregridSectionSectionHeader"],
|
|
2326
|
+
md_gridcols3?:ResolverInputTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3"],
|
|
2327
|
+
__typename?: boolean | `@${string}`
|
|
2328
|
+
}>;
|
|
2329
|
+
["Shapeexamples_featuregridSection"]: AliasType<{
|
|
2330
|
+
section?:ResolverInputTypes["Shapeexamples_featuregridSectionSection"],
|
|
2331
|
+
__typename?: boolean | `@${string}`
|
|
2332
|
+
}>;
|
|
2333
|
+
["Shapeexamples_featuregrid"]: AliasType<{
|
|
2334
|
+
section?:ResolverInputTypes["Shapeexamples_featuregridSection"],
|
|
2281
2335
|
_id?:boolean | `@${string}`,
|
|
2282
2336
|
createdAt?:boolean | `@${string}`,
|
|
2283
2337
|
updatedAt?:boolean | `@${string}`,
|
|
2284
|
-
draft_version?:boolean | `@${string}`,
|
|
2285
|
-
json_ld?:boolean | `@${string}`,
|
|
2286
2338
|
__typename?: boolean | `@${string}`
|
|
2287
2339
|
}>;
|
|
2288
|
-
["
|
|
2340
|
+
["Shapeexamples_herosectionSectionSectionHeading"]: AliasType<{
|
|
2289
2341
|
title?:boolean | `@${string}`,
|
|
2342
|
+
__typename?: boolean | `@${string}`
|
|
2343
|
+
}>;
|
|
2344
|
+
["Shapeexamples_herosectionSectionSectionDescription"]: AliasType<{
|
|
2290
2345
|
description?:boolean | `@${string}`,
|
|
2346
|
+
__typename?: boolean | `@${string}`
|
|
2347
|
+
}>;
|
|
2348
|
+
["Shapeexamples_herosectionSectionSectionSectionLink"]: AliasType<{
|
|
2349
|
+
cta?:boolean | `@${string}`,
|
|
2350
|
+
href?:boolean | `@${string}`,
|
|
2351
|
+
__typename?: boolean | `@${string}`
|
|
2352
|
+
}>;
|
|
2353
|
+
["Shapeexamples_herosectionSectionSectionSectionLink_2"]: AliasType<{
|
|
2354
|
+
cta?:boolean | `@${string}`,
|
|
2355
|
+
href?:boolean | `@${string}`,
|
|
2356
|
+
__typename?: boolean | `@${string}`
|
|
2357
|
+
}>;
|
|
2358
|
+
["Shapeexamples_herosectionSectionSectionSection"]: AliasType<{
|
|
2359
|
+
link?:ResolverInputTypes["Shapeexamples_herosectionSectionSectionSectionLink"],
|
|
2360
|
+
link_2?:ResolverInputTypes["Shapeexamples_herosectionSectionSectionSectionLink_2"],
|
|
2361
|
+
__typename?: boolean | `@${string}`
|
|
2362
|
+
}>;
|
|
2363
|
+
["Shapeexamples_herosectionSectionSectionMedia"]: AliasType<{
|
|
2291
2364
|
image?:ResolverInputTypes["ImageField"],
|
|
2292
2365
|
__typename?: boolean | `@${string}`
|
|
2293
2366
|
}>;
|
|
2294
|
-
["
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
|
|
2298
|
-
|
|
2299
|
-
slug?:boolean | `@${string}`,
|
|
2300
|
-
_id?:boolean | `@${string}`,
|
|
2301
|
-
createdAt?:boolean | `@${string}`,
|
|
2302
|
-
updatedAt?:boolean | `@${string}`,
|
|
2303
|
-
draft_version?:boolean | `@${string}`,
|
|
2304
|
-
json_ld?:boolean | `@${string}`,
|
|
2367
|
+
["Shapeexamples_herosectionSectionSection"]: AliasType<{
|
|
2368
|
+
heading?:ResolverInputTypes["Shapeexamples_herosectionSectionSectionHeading"],
|
|
2369
|
+
description?:ResolverInputTypes["Shapeexamples_herosectionSectionSectionDescription"],
|
|
2370
|
+
section?:ResolverInputTypes["Shapeexamples_herosectionSectionSectionSection"],
|
|
2371
|
+
media?:ResolverInputTypes["Shapeexamples_herosectionSectionSectionMedia"],
|
|
2305
2372
|
__typename?: boolean | `@${string}`
|
|
2306
2373
|
}>;
|
|
2307
|
-
["
|
|
2308
|
-
|
|
2309
|
-
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
|
|
2313
|
-
slug?:boolean | `@${string}`,
|
|
2374
|
+
["Shapeexamples_herosectionSection"]: AliasType<{
|
|
2375
|
+
section?:ResolverInputTypes["Shapeexamples_herosectionSectionSection"],
|
|
2376
|
+
__typename?: boolean | `@${string}`
|
|
2377
|
+
}>;
|
|
2378
|
+
["Shapeexamples_herosection"]: AliasType<{
|
|
2379
|
+
section?:ResolverInputTypes["Shapeexamples_herosectionSection"],
|
|
2314
2380
|
_id?:boolean | `@${string}`,
|
|
2315
2381
|
createdAt?:boolean | `@${string}`,
|
|
2316
2382
|
updatedAt?:boolean | `@${string}`,
|
|
2317
|
-
draft_version?:boolean | `@${string}`,
|
|
2318
|
-
json_ld?:boolean | `@${string}`,
|
|
2319
2383
|
__typename?: boolean | `@${string}`
|
|
2320
2384
|
}>;
|
|
2321
|
-
["
|
|
2322
|
-
|
|
2323
|
-
link?:boolean | `@${string}`,
|
|
2385
|
+
["Shapeexamples_newslettersignupSectionSectionHeading"]: AliasType<{
|
|
2386
|
+
subtitle?:boolean | `@${string}`,
|
|
2324
2387
|
__typename?: boolean | `@${string}`
|
|
2325
2388
|
}>;
|
|
2326
|
-
["
|
|
2327
|
-
|
|
2389
|
+
["Shapeexamples_newslettersignupSectionSectionDescription"]: AliasType<{
|
|
2390
|
+
description?:boolean | `@${string}`,
|
|
2328
2391
|
__typename?: boolean | `@${string}`
|
|
2329
2392
|
}>;
|
|
2330
|
-
["
|
|
2331
|
-
|
|
2332
|
-
category?:ResolverInputTypes["Shapecloud_sidebarSidebarMenuCategory"],
|
|
2393
|
+
["Shapeexamples_newslettersignupSectionSectionFormButton"]: AliasType<{
|
|
2394
|
+
button_text?:boolean | `@${string}`,
|
|
2333
2395
|
__typename?: boolean | `@${string}`
|
|
2334
2396
|
}>;
|
|
2335
|
-
["
|
|
2336
|
-
|
|
2337
|
-
|
|
2397
|
+
["Shapeexamples_newslettersignupSectionSectionForm"]: AliasType<{
|
|
2398
|
+
email?:boolean | `@${string}`,
|
|
2399
|
+
button?:ResolverInputTypes["Shapeexamples_newslettersignupSectionSectionFormButton"],
|
|
2400
|
+
__typename?: boolean | `@${string}`
|
|
2401
|
+
}>;
|
|
2402
|
+
["Shapeexamples_newslettersignupSectionSectionDescription_2Link"]: AliasType<{
|
|
2403
|
+
cta?:boolean | `@${string}`,
|
|
2404
|
+
href?:boolean | `@${string}`,
|
|
2405
|
+
__typename?: boolean | `@${string}`
|
|
2406
|
+
}>;
|
|
2407
|
+
["Shapeexamples_newslettersignupSectionSectionDescription_2"]: AliasType<{
|
|
2408
|
+
description?:boolean | `@${string}`,
|
|
2409
|
+
link?:ResolverInputTypes["Shapeexamples_newslettersignupSectionSectionDescription_2Link"],
|
|
2338
2410
|
__typename?: boolean | `@${string}`
|
|
2339
2411
|
}>;
|
|
2340
|
-
["
|
|
2341
|
-
|
|
2412
|
+
["Shapeexamples_newslettersignupSectionSection"]: AliasType<{
|
|
2413
|
+
heading?:ResolverInputTypes["Shapeexamples_newslettersignupSectionSectionHeading"],
|
|
2414
|
+
description?:ResolverInputTypes["Shapeexamples_newslettersignupSectionSectionDescription"],
|
|
2415
|
+
form?:ResolverInputTypes["Shapeexamples_newslettersignupSectionSectionForm"],
|
|
2416
|
+
description_2?:ResolverInputTypes["Shapeexamples_newslettersignupSectionSectionDescription_2"],
|
|
2342
2417
|
__typename?: boolean | `@${string}`
|
|
2343
2418
|
}>;
|
|
2344
|
-
["
|
|
2345
|
-
|
|
2346
|
-
bottom_menu?:ResolverInputTypes["Shapecloud_sidebarSidebarBottom_menu"],
|
|
2419
|
+
["Shapeexamples_newslettersignupSection"]: AliasType<{
|
|
2420
|
+
section?:ResolverInputTypes["Shapeexamples_newslettersignupSectionSection"],
|
|
2347
2421
|
__typename?: boolean | `@${string}`
|
|
2348
2422
|
}>;
|
|
2349
|
-
["
|
|
2350
|
-
|
|
2423
|
+
["Shapeexamples_newslettersignup"]: AliasType<{
|
|
2424
|
+
section?:ResolverInputTypes["Shapeexamples_newslettersignupSection"],
|
|
2351
2425
|
_id?:boolean | `@${string}`,
|
|
2352
2426
|
createdAt?:boolean | `@${string}`,
|
|
2353
2427
|
updatedAt?:boolean | `@${string}`,
|
|
2354
2428
|
__typename?: boolean | `@${string}`
|
|
2355
2429
|
}>;
|
|
2356
|
-
["
|
|
2430
|
+
["Shapeexamples_pricingplansSectionSectionHeaderPricing_title"]: AliasType<{
|
|
2431
|
+
subtitle?:boolean | `@${string}`,
|
|
2432
|
+
__typename?: boolean | `@${string}`
|
|
2433
|
+
}>;
|
|
2434
|
+
["Shapeexamples_pricingplansSectionSectionHeaderPricing_description"]: AliasType<{
|
|
2435
|
+
description?:boolean | `@${string}`,
|
|
2436
|
+
__typename?: boolean | `@${string}`
|
|
2437
|
+
}>;
|
|
2438
|
+
["Shapeexamples_pricingplansSectionSectionHeader"]: AliasType<{
|
|
2439
|
+
pricing_title?:ResolverInputTypes["Shapeexamples_pricingplansSectionSectionHeaderPricing_title"],
|
|
2440
|
+
pricing_description?:ResolverInputTypes["Shapeexamples_pricingplansSectionSectionHeaderPricing_description"],
|
|
2441
|
+
__typename?: boolean | `@${string}`
|
|
2442
|
+
}>;
|
|
2443
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderPlan_name_1"]: AliasType<{
|
|
2444
|
+
h3?:boolean | `@${string}`,
|
|
2445
|
+
__typename?: boolean | `@${string}`
|
|
2446
|
+
}>;
|
|
2447
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderSectionPlan_price_1"]: AliasType<{
|
|
2357
2448
|
content?:boolean | `@${string}`,
|
|
2358
2449
|
__typename?: boolean | `@${string}`
|
|
2359
2450
|
}>;
|
|
2360
|
-
["
|
|
2361
|
-
|
|
2362
|
-
scrollspy_list?:boolean | `@${string}`,
|
|
2451
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderSection"]: AliasType<{
|
|
2452
|
+
plan_price_1?:ResolverInputTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderSectionPlan_price_1"],
|
|
2363
2453
|
__typename?: boolean | `@${string}`
|
|
2364
2454
|
}>;
|
|
2365
|
-
["
|
|
2366
|
-
|
|
2455
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderList"]: AliasType<{
|
|
2456
|
+
items?:boolean | `@${string}`,
|
|
2367
2457
|
__typename?: boolean | `@${string}`
|
|
2368
2458
|
}>;
|
|
2369
|
-
["
|
|
2370
|
-
|
|
2371
|
-
|
|
2459
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderPlan_cta_1"]: AliasType<{
|
|
2460
|
+
cta?:boolean | `@${string}`,
|
|
2461
|
+
href?:boolean | `@${string}`,
|
|
2372
2462
|
__typename?: boolean | `@${string}`
|
|
2373
2463
|
}>;
|
|
2374
|
-
["
|
|
2375
|
-
|
|
2464
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border"]: AliasType<{
|
|
2465
|
+
plan_name_1?:ResolverInputTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderPlan_name_1"],
|
|
2466
|
+
section?:ResolverInputTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderSection"],
|
|
2467
|
+
list?:ResolverInputTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderList"],
|
|
2468
|
+
plan_cta_1?:ResolverInputTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderPlan_cta_1"],
|
|
2376
2469
|
__typename?: boolean | `@${string}`
|
|
2377
2470
|
}>;
|
|
2378
|
-
["
|
|
2379
|
-
|
|
2380
|
-
_id?:boolean | `@${string}`,
|
|
2381
|
-
createdAt?:boolean | `@${string}`,
|
|
2382
|
-
updatedAt?:boolean | `@${string}`,
|
|
2471
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2Plan_name_2"]: AliasType<{
|
|
2472
|
+
h3?:boolean | `@${string}`,
|
|
2383
2473
|
__typename?: boolean | `@${string}`
|
|
2384
2474
|
}>;
|
|
2385
|
-
["
|
|
2386
|
-
|
|
2387
|
-
link?:boolean | `@${string}`,
|
|
2475
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2SectionPlan_price_2"]: AliasType<{
|
|
2476
|
+
content?:boolean | `@${string}`,
|
|
2388
2477
|
__typename?: boolean | `@${string}`
|
|
2389
2478
|
}>;
|
|
2390
|
-
["
|
|
2391
|
-
|
|
2479
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2Section"]: AliasType<{
|
|
2480
|
+
plan_price_2?:ResolverInputTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2SectionPlan_price_2"],
|
|
2392
2481
|
__typename?: boolean | `@${string}`
|
|
2393
2482
|
}>;
|
|
2394
|
-
["
|
|
2395
|
-
|
|
2396
|
-
children?:ResolverInputTypes["Shapedocs_navMainListChildren"],
|
|
2483
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2List"]: AliasType<{
|
|
2484
|
+
items?:boolean | `@${string}`,
|
|
2397
2485
|
__typename?: boolean | `@${string}`
|
|
2398
2486
|
}>;
|
|
2399
|
-
["
|
|
2400
|
-
|
|
2487
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2Plan_cta_2"]: AliasType<{
|
|
2488
|
+
cta?:boolean | `@${string}`,
|
|
2489
|
+
href?:boolean | `@${string}`,
|
|
2401
2490
|
__typename?: boolean | `@${string}`
|
|
2402
2491
|
}>;
|
|
2403
|
-
["
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2492
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2"]: AliasType<{
|
|
2493
|
+
plan_name_2?:ResolverInputTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2Plan_name_2"],
|
|
2494
|
+
section?:ResolverInputTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2Section"],
|
|
2495
|
+
list?:ResolverInputTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2List"],
|
|
2496
|
+
plan_cta_2?:ResolverInputTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2Plan_cta_2"],
|
|
2408
2497
|
__typename?: boolean | `@${string}`
|
|
2409
2498
|
}>;
|
|
2410
|
-
["
|
|
2411
|
-
|
|
2412
|
-
|
|
2499
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3Plan_name_3"]: AliasType<{
|
|
2500
|
+
h3?:boolean | `@${string}`,
|
|
2501
|
+
__typename?: boolean | `@${string}`
|
|
2502
|
+
}>;
|
|
2503
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3SectionPlan_price_3"]: AliasType<{
|
|
2413
2504
|
content?:boolean | `@${string}`,
|
|
2414
2505
|
__typename?: boolean | `@${string}`
|
|
2415
2506
|
}>;
|
|
2416
|
-
["
|
|
2417
|
-
|
|
2418
|
-
_id?:boolean | `@${string}`,
|
|
2419
|
-
createdAt?:boolean | `@${string}`,
|
|
2420
|
-
updatedAt?:boolean | `@${string}`,
|
|
2507
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3Section"]: AliasType<{
|
|
2508
|
+
plan_price_3?:ResolverInputTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3SectionPlan_price_3"],
|
|
2421
2509
|
__typename?: boolean | `@${string}`
|
|
2422
2510
|
}>;
|
|
2423
|
-
["
|
|
2424
|
-
|
|
2425
|
-
terms_of_service?:boolean | `@${string}`,
|
|
2426
|
-
contact_us?:boolean | `@${string}`,
|
|
2511
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3List"]: AliasType<{
|
|
2512
|
+
items?:boolean | `@${string}`,
|
|
2427
2513
|
__typename?: boolean | `@${string}`
|
|
2428
2514
|
}>;
|
|
2429
|
-
["
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
footer_copy?:boolean | `@${string}`,
|
|
2515
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3Plan_cta_3"]: AliasType<{
|
|
2516
|
+
cta?:boolean | `@${string}`,
|
|
2517
|
+
href?:boolean | `@${string}`,
|
|
2433
2518
|
__typename?: boolean | `@${string}`
|
|
2434
2519
|
}>;
|
|
2435
|
-
["
|
|
2436
|
-
|
|
2520
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3"]: AliasType<{
|
|
2521
|
+
plan_name_3?:ResolverInputTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3Plan_name_3"],
|
|
2522
|
+
section?:ResolverInputTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3Section"],
|
|
2523
|
+
list?:ResolverInputTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3List"],
|
|
2524
|
+
plan_cta_3?:ResolverInputTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3Plan_cta_3"],
|
|
2437
2525
|
__typename?: boolean | `@${string}`
|
|
2438
2526
|
}>;
|
|
2439
|
-
["
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
|
|
2443
|
-
updatedAt?:boolean | `@${string}`,
|
|
2527
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3"]: AliasType<{
|
|
2528
|
+
border?:ResolverInputTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border"],
|
|
2529
|
+
border_2?:ResolverInputTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2"],
|
|
2530
|
+
border_3?:ResolverInputTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3"],
|
|
2444
2531
|
__typename?: boolean | `@${string}`
|
|
2445
2532
|
}>;
|
|
2446
|
-
["
|
|
2447
|
-
|
|
2533
|
+
["Shapeexamples_pricingplansSectionSection"]: AliasType<{
|
|
2534
|
+
header?:ResolverInputTypes["Shapeexamples_pricingplansSectionSectionHeader"],
|
|
2535
|
+
md_gridcols3?:ResolverInputTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3"],
|
|
2448
2536
|
__typename?: boolean | `@${string}`
|
|
2449
2537
|
}>;
|
|
2450
|
-
["
|
|
2451
|
-
|
|
2452
|
-
logo?:boolean | `@${string}`,
|
|
2453
|
-
slogan_parent?:ResolverInputTypes["ShapeheroHero_componentSlogan_parent"],
|
|
2454
|
-
subslogan?:boolean | `@${string}`,
|
|
2538
|
+
["Shapeexamples_pricingplansSection"]: AliasType<{
|
|
2539
|
+
section?:ResolverInputTypes["Shapeexamples_pricingplansSectionSection"],
|
|
2455
2540
|
__typename?: boolean | `@${string}`
|
|
2456
2541
|
}>;
|
|
2457
|
-
["
|
|
2458
|
-
|
|
2542
|
+
["Shapeexamples_pricingplans"]: AliasType<{
|
|
2543
|
+
section?:ResolverInputTypes["Shapeexamples_pricingplansSection"],
|
|
2459
2544
|
_id?:boolean | `@${string}`,
|
|
2460
2545
|
createdAt?:boolean | `@${string}`,
|
|
2461
2546
|
updatedAt?:boolean | `@${string}`,
|
|
2462
2547
|
__typename?: boolean | `@${string}`
|
|
2463
2548
|
}>;
|
|
2464
|
-
["
|
|
2465
|
-
|
|
2549
|
+
["Shapeexamples_pricingplans_1ContainerPricingHeader"]: AliasType<{
|
|
2550
|
+
subtitle?:boolean | `@${string}`,
|
|
2551
|
+
description?:boolean | `@${string}`,
|
|
2466
2552
|
__typename?: boolean | `@${string}`
|
|
2467
2553
|
}>;
|
|
2468
|
-
["
|
|
2554
|
+
["Shapeexamples_pricingplans_1ContainerPricingPlansPlan_itemsPriceblock"]: AliasType<{
|
|
2555
|
+
price?:boolean | `@${string}`,
|
|
2556
|
+
__typename?: boolean | `@${string}`
|
|
2557
|
+
}>;
|
|
2558
|
+
["Shapeexamples_pricingplans_1ContainerPricingPlansPlan_itemsCta"]: AliasType<{
|
|
2469
2559
|
title?:boolean | `@${string}`,
|
|
2470
|
-
|
|
2471
|
-
features?:ResolverInputTypes["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"],
|
|
2560
|
+
href?:boolean | `@${string}`,
|
|
2472
2561
|
__typename?: boolean | `@${string}`
|
|
2473
2562
|
}>;
|
|
2474
|
-
["
|
|
2475
|
-
|
|
2563
|
+
["Shapeexamples_pricingplans_1ContainerPricingPlansPlan_items"]: AliasType<{
|
|
2564
|
+
name?:boolean | `@${string}`,
|
|
2565
|
+
priceblock?:ResolverInputTypes["Shapeexamples_pricingplans_1ContainerPricingPlansPlan_itemsPriceblock"],
|
|
2566
|
+
features?:boolean | `@${string}`,
|
|
2567
|
+
cta?:ResolverInputTypes["Shapeexamples_pricingplans_1ContainerPricingPlansPlan_itemsCta"],
|
|
2476
2568
|
__typename?: boolean | `@${string}`
|
|
2477
2569
|
}>;
|
|
2478
|
-
["
|
|
2479
|
-
|
|
2570
|
+
["Shapeexamples_pricingplans_1ContainerPricingPlans"]: AliasType<{
|
|
2571
|
+
plan_items?:ResolverInputTypes["Shapeexamples_pricingplans_1ContainerPricingPlansPlan_items"],
|
|
2480
2572
|
__typename?: boolean | `@${string}`
|
|
2481
2573
|
}>;
|
|
2482
|
-
["
|
|
2483
|
-
|
|
2484
|
-
|
|
2485
|
-
presentation?:ResolverInputTypes["ShapeheroxHero_sectionHero_containerPresentation"],
|
|
2574
|
+
["Shapeexamples_pricingplans_1ContainerPricing"]: AliasType<{
|
|
2575
|
+
header?:ResolverInputTypes["Shapeexamples_pricingplans_1ContainerPricingHeader"],
|
|
2576
|
+
plans?:ResolverInputTypes["Shapeexamples_pricingplans_1ContainerPricingPlans"],
|
|
2486
2577
|
__typename?: boolean | `@${string}`
|
|
2487
2578
|
}>;
|
|
2488
|
-
["
|
|
2489
|
-
|
|
2579
|
+
["Shapeexamples_pricingplans_1Container"]: AliasType<{
|
|
2580
|
+
pricing?:ResolverInputTypes["Shapeexamples_pricingplans_1ContainerPricing"],
|
|
2490
2581
|
__typename?: boolean | `@${string}`
|
|
2491
2582
|
}>;
|
|
2492
|
-
["
|
|
2493
|
-
|
|
2583
|
+
["Shapeexamples_pricingplans_1"]: AliasType<{
|
|
2584
|
+
container?:ResolverInputTypes["Shapeexamples_pricingplans_1Container"],
|
|
2494
2585
|
_id?:boolean | `@${string}`,
|
|
2495
2586
|
createdAt?:boolean | `@${string}`,
|
|
2496
2587
|
updatedAt?:boolean | `@${string}`,
|
|
2497
2588
|
__typename?: boolean | `@${string}`
|
|
2498
2589
|
}>;
|
|
2499
|
-
["
|
|
2500
|
-
|
|
2501
|
-
link?:boolean | `@${string}`,
|
|
2502
|
-
remove_button?:boolean | `@${string}`,
|
|
2590
|
+
["Shapeexamples_productcardSectionSectionMediaRounded"]: AliasType<{
|
|
2591
|
+
content?:boolean | `@${string}`,
|
|
2503
2592
|
__typename?: boolean | `@${string}`
|
|
2504
2593
|
}>;
|
|
2505
|
-
["
|
|
2506
|
-
|
|
2594
|
+
["Shapeexamples_productcardSectionSectionMedia"]: AliasType<{
|
|
2595
|
+
image?:ResolverInputTypes["ImageField"],
|
|
2596
|
+
rounded?:ResolverInputTypes["Shapeexamples_productcardSectionSectionMediaRounded"],
|
|
2507
2597
|
__typename?: boolean | `@${string}`
|
|
2508
2598
|
}>;
|
|
2509
|
-
["
|
|
2510
|
-
title?:boolean | `@${string}`,
|
|
2599
|
+
["Shapeexamples_productcardSectionSectionSectionProduct_title"]: AliasType<{
|
|
2511
2600
|
subtitle?:boolean | `@${string}`,
|
|
2512
|
-
projects?:ResolverInputTypes["Shapelista_projektowListProjects"],
|
|
2513
2601
|
__typename?: boolean | `@${string}`
|
|
2514
2602
|
}>;
|
|
2515
|
-
["
|
|
2516
|
-
|
|
2517
|
-
_id?:boolean | `@${string}`,
|
|
2518
|
-
createdAt?:boolean | `@${string}`,
|
|
2519
|
-
updatedAt?:boolean | `@${string}`,
|
|
2603
|
+
["Shapeexamples_productcardSectionSectionSectionProduct_description"]: AliasType<{
|
|
2604
|
+
description?:boolean | `@${string}`,
|
|
2520
2605
|
__typename?: boolean | `@${string}`
|
|
2521
2606
|
}>;
|
|
2522
|
-
["
|
|
2523
|
-
|
|
2607
|
+
["Shapeexamples_productcardSectionSectionSectionSectionSectionInline"]: AliasType<{
|
|
2608
|
+
content?:boolean | `@${string}`,
|
|
2609
|
+
__typename?: boolean | `@${string}`
|
|
2610
|
+
}>;
|
|
2611
|
+
["Shapeexamples_productcardSectionSectionSectionSectionSectionProduct_price"]: AliasType<{
|
|
2612
|
+
content?:boolean | `@${string}`,
|
|
2613
|
+
__typename?: boolean | `@${string}`
|
|
2614
|
+
}>;
|
|
2615
|
+
["Shapeexamples_productcardSectionSectionSectionSectionSection"]: AliasType<{
|
|
2616
|
+
inline?:ResolverInputTypes["Shapeexamples_productcardSectionSectionSectionSectionSectionInline"],
|
|
2617
|
+
product_price?:ResolverInputTypes["Shapeexamples_productcardSectionSectionSectionSectionSectionProduct_price"],
|
|
2618
|
+
__typename?: boolean | `@${string}`
|
|
2619
|
+
}>;
|
|
2620
|
+
["Shapeexamples_productcardSectionSectionSectionSectionProduct_cta_url"]: AliasType<{
|
|
2621
|
+
cta?:boolean | `@${string}`,
|
|
2524
2622
|
href?:boolean | `@${string}`,
|
|
2525
2623
|
__typename?: boolean | `@${string}`
|
|
2526
2624
|
}>;
|
|
2527
|
-
["
|
|
2528
|
-
|
|
2625
|
+
["Shapeexamples_productcardSectionSectionSectionSection"]: AliasType<{
|
|
2626
|
+
section?:ResolverInputTypes["Shapeexamples_productcardSectionSectionSectionSectionSection"],
|
|
2627
|
+
product_cta_url?:ResolverInputTypes["Shapeexamples_productcardSectionSectionSectionSectionProduct_cta_url"],
|
|
2529
2628
|
__typename?: boolean | `@${string}`
|
|
2530
2629
|
}>;
|
|
2531
|
-
["
|
|
2532
|
-
|
|
2533
|
-
|
|
2630
|
+
["Shapeexamples_productcardSectionSectionSectionFormLabel"]: AliasType<{
|
|
2631
|
+
html_for?:boolean | `@${string}`,
|
|
2632
|
+
content?:boolean | `@${string}`,
|
|
2534
2633
|
__typename?: boolean | `@${string}`
|
|
2535
2634
|
}>;
|
|
2536
|
-
["
|
|
2537
|
-
|
|
2538
|
-
|
|
2539
|
-
createdAt?:boolean | `@${string}`,
|
|
2540
|
-
updatedAt?:boolean | `@${string}`,
|
|
2635
|
+
["Shapeexamples_productcardSectionSectionSectionFormLabel_2"]: AliasType<{
|
|
2636
|
+
html_for?:boolean | `@${string}`,
|
|
2637
|
+
content?:boolean | `@${string}`,
|
|
2541
2638
|
__typename?: boolean | `@${string}`
|
|
2542
2639
|
}>;
|
|
2543
|
-
["
|
|
2544
|
-
|
|
2545
|
-
|
|
2546
|
-
|
|
2547
|
-
|
|
2548
|
-
cta_href?:boolean | `@${string}`,
|
|
2640
|
+
["Shapeexamples_productcardSectionSectionSectionForm"]: AliasType<{
|
|
2641
|
+
label?:ResolverInputTypes["Shapeexamples_productcardSectionSectionSectionFormLabel"],
|
|
2642
|
+
product_color?:boolean | `@${string}`,
|
|
2643
|
+
label_2?:ResolverInputTypes["Shapeexamples_productcardSectionSectionSectionFormLabel_2"],
|
|
2644
|
+
product_quantity?:boolean | `@${string}`,
|
|
2549
2645
|
__typename?: boolean | `@${string}`
|
|
2550
2646
|
}>;
|
|
2551
|
-
["
|
|
2552
|
-
|
|
2553
|
-
|
|
2554
|
-
|
|
2647
|
+
["Shapeexamples_productcardSectionSectionSection"]: AliasType<{
|
|
2648
|
+
product_title?:ResolverInputTypes["Shapeexamples_productcardSectionSectionSectionProduct_title"],
|
|
2649
|
+
product_description?:ResolverInputTypes["Shapeexamples_productcardSectionSectionSectionProduct_description"],
|
|
2650
|
+
section?:ResolverInputTypes["Shapeexamples_productcardSectionSectionSectionSection"],
|
|
2651
|
+
form?:ResolverInputTypes["Shapeexamples_productcardSectionSectionSectionForm"],
|
|
2555
2652
|
__typename?: boolean | `@${string}`
|
|
2556
2653
|
}>;
|
|
2557
|
-
["
|
|
2558
|
-
|
|
2654
|
+
["Shapeexamples_productcardSectionSection"]: AliasType<{
|
|
2655
|
+
media?:ResolverInputTypes["Shapeexamples_productcardSectionSectionMedia"],
|
|
2656
|
+
section?:ResolverInputTypes["Shapeexamples_productcardSectionSectionSection"],
|
|
2657
|
+
__typename?: boolean | `@${string}`
|
|
2658
|
+
}>;
|
|
2659
|
+
["Shapeexamples_productcardSection"]: AliasType<{
|
|
2660
|
+
section?:ResolverInputTypes["Shapeexamples_productcardSectionSection"],
|
|
2661
|
+
__typename?: boolean | `@${string}`
|
|
2662
|
+
}>;
|
|
2663
|
+
["Shapeexamples_productcard"]: AliasType<{
|
|
2664
|
+
section?:ResolverInputTypes["Shapeexamples_productcardSection"],
|
|
2559
2665
|
_id?:boolean | `@${string}`,
|
|
2560
2666
|
createdAt?:boolean | `@${string}`,
|
|
2561
2667
|
updatedAt?:boolean | `@${string}`,
|
|
2562
2668
|
__typename?: boolean | `@${string}`
|
|
2563
2669
|
}>;
|
|
2564
|
-
["
|
|
2565
|
-
title?:boolean | `@${string}`,
|
|
2670
|
+
["Shapeexamples_testimonialcardSectionFigureBlockquoteQuote"]: AliasType<{
|
|
2566
2671
|
description?:boolean | `@${string}`,
|
|
2567
2672
|
__typename?: boolean | `@${string}`
|
|
2568
2673
|
}>;
|
|
2569
|
-
["
|
|
2570
|
-
|
|
2571
|
-
unit?:boolean | `@${string}`,
|
|
2572
|
-
price?:boolean | `@${string}`,
|
|
2674
|
+
["Shapeexamples_testimonialcardSectionFigureBlockquote"]: AliasType<{
|
|
2675
|
+
quote?:ResolverInputTypes["Shapeexamples_testimonialcardSectionFigureBlockquoteQuote"],
|
|
2573
2676
|
__typename?: boolean | `@${string}`
|
|
2574
2677
|
}>;
|
|
2575
|
-
["
|
|
2576
|
-
|
|
2577
|
-
unit?:boolean | `@${string}`,
|
|
2578
|
-
price?:boolean | `@${string}`,
|
|
2678
|
+
["Shapeexamples_testimonialcardSectionFigureFigcaptionSectionAuthor"]: AliasType<{
|
|
2679
|
+
content?:boolean | `@${string}`,
|
|
2579
2680
|
__typename?: boolean | `@${string}`
|
|
2580
2681
|
}>;
|
|
2581
|
-
["
|
|
2582
|
-
|
|
2583
|
-
|
|
2682
|
+
["Shapeexamples_testimonialcardSectionFigureFigcaptionSectionRole"]: AliasType<{
|
|
2683
|
+
content?:boolean | `@${string}`,
|
|
2684
|
+
__typename?: boolean | `@${string}`
|
|
2685
|
+
}>;
|
|
2686
|
+
["Shapeexamples_testimonialcardSectionFigureFigcaptionSection"]: AliasType<{
|
|
2687
|
+
author?:ResolverInputTypes["Shapeexamples_testimonialcardSectionFigureFigcaptionSectionAuthor"],
|
|
2688
|
+
role?:ResolverInputTypes["Shapeexamples_testimonialcardSectionFigureFigcaptionSectionRole"],
|
|
2689
|
+
__typename?: boolean | `@${string}`
|
|
2690
|
+
}>;
|
|
2691
|
+
["Shapeexamples_testimonialcardSectionFigureFigcaptionLink"]: AliasType<{
|
|
2692
|
+
cta?:boolean | `@${string}`,
|
|
2693
|
+
href?:boolean | `@${string}`,
|
|
2584
2694
|
__typename?: boolean | `@${string}`
|
|
2585
2695
|
}>;
|
|
2586
|
-
["
|
|
2587
|
-
|
|
2588
|
-
|
|
2696
|
+
["Shapeexamples_testimonialcardSectionFigureFigcaption"]: AliasType<{
|
|
2697
|
+
section?:ResolverInputTypes["Shapeexamples_testimonialcardSectionFigureFigcaptionSection"],
|
|
2698
|
+
link?:ResolverInputTypes["Shapeexamples_testimonialcardSectionFigureFigcaptionLink"],
|
|
2589
2699
|
__typename?: boolean | `@${string}`
|
|
2590
2700
|
}>;
|
|
2591
|
-
["
|
|
2592
|
-
|
|
2701
|
+
["Shapeexamples_testimonialcardSectionFigure"]: AliasType<{
|
|
2702
|
+
image?:ResolverInputTypes["ImageField"],
|
|
2703
|
+
blockquote?:ResolverInputTypes["Shapeexamples_testimonialcardSectionFigureBlockquote"],
|
|
2704
|
+
figcaption?:ResolverInputTypes["Shapeexamples_testimonialcardSectionFigureFigcaption"],
|
|
2705
|
+
__typename?: boolean | `@${string}`
|
|
2706
|
+
}>;
|
|
2707
|
+
["Shapeexamples_testimonialcardSection"]: AliasType<{
|
|
2708
|
+
figure?:ResolverInputTypes["Shapeexamples_testimonialcardSectionFigure"],
|
|
2709
|
+
__typename?: boolean | `@${string}`
|
|
2710
|
+
}>;
|
|
2711
|
+
["Shapeexamples_testimonialcard"]: AliasType<{
|
|
2712
|
+
section?:ResolverInputTypes["Shapeexamples_testimonialcardSection"],
|
|
2593
2713
|
_id?:boolean | `@${string}`,
|
|
2594
2714
|
createdAt?:boolean | `@${string}`,
|
|
2595
2715
|
updatedAt?:boolean | `@${string}`,
|
|
2596
2716
|
__typename?: boolean | `@${string}`
|
|
2597
2717
|
}>;
|
|
2598
|
-
["
|
|
2599
|
-
|
|
2600
|
-
description?:boolean | `@${string}`,
|
|
2718
|
+
["ShapeexamplescontactformSectionSectionHeading"]: AliasType<{
|
|
2719
|
+
subtitle?:boolean | `@${string}`,
|
|
2601
2720
|
__typename?: boolean | `@${string}`
|
|
2602
2721
|
}>;
|
|
2603
|
-
["
|
|
2604
|
-
|
|
2722
|
+
["ShapeexamplescontactformSectionSectionDescription"]: AliasType<{
|
|
2723
|
+
description?:boolean | `@${string}`,
|
|
2605
2724
|
__typename?: boolean | `@${string}`
|
|
2606
2725
|
}>;
|
|
2607
|
-
["
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
feature_list?:ResolverInputTypes["Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list"],
|
|
2612
|
-
cta?:boolean | `@${string}`,
|
|
2726
|
+
["ShapeexamplescontactformSectionSectionForm"]: AliasType<{
|
|
2727
|
+
name?:boolean | `@${string}`,
|
|
2728
|
+
email?:boolean | `@${string}`,
|
|
2729
|
+
message?:boolean | `@${string}`,
|
|
2613
2730
|
__typename?: boolean | `@${string}`
|
|
2614
2731
|
}>;
|
|
2615
|
-
["
|
|
2616
|
-
|
|
2732
|
+
["ShapeexamplescontactformSectionSectionButton"]: AliasType<{
|
|
2733
|
+
button_text?:boolean | `@${string}`,
|
|
2617
2734
|
__typename?: boolean | `@${string}`
|
|
2618
2735
|
}>;
|
|
2619
|
-
["
|
|
2620
|
-
plan_name?:boolean | `@${string}`,
|
|
2621
|
-
price?:boolean | `@${string}`,
|
|
2622
|
-
plan_description?:boolean | `@${string}`,
|
|
2623
|
-
feature_list?:ResolverInputTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list"],
|
|
2736
|
+
["ShapeexamplescontactformSectionSectionLink"]: AliasType<{
|
|
2624
2737
|
cta?:boolean | `@${string}`,
|
|
2738
|
+
href?:boolean | `@${string}`,
|
|
2625
2739
|
__typename?: boolean | `@${string}`
|
|
2626
2740
|
}>;
|
|
2627
|
-
["
|
|
2628
|
-
|
|
2629
|
-
|
|
2741
|
+
["ShapeexamplescontactformSectionSection"]: AliasType<{
|
|
2742
|
+
heading?:ResolverInputTypes["ShapeexamplescontactformSectionSectionHeading"],
|
|
2743
|
+
description?:ResolverInputTypes["ShapeexamplescontactformSectionSectionDescription"],
|
|
2744
|
+
form?:ResolverInputTypes["ShapeexamplescontactformSectionSectionForm"],
|
|
2745
|
+
button?:ResolverInputTypes["ShapeexamplescontactformSectionSectionButton"],
|
|
2746
|
+
link?:ResolverInputTypes["ShapeexamplescontactformSectionSectionLink"],
|
|
2630
2747
|
__typename?: boolean | `@${string}`
|
|
2631
2748
|
}>;
|
|
2632
|
-
["
|
|
2633
|
-
|
|
2634
|
-
plans_grid?:ResolverInputTypes["Shapepricingv1Pricing_sectionPlans_grid"],
|
|
2749
|
+
["ShapeexamplescontactformSection"]: AliasType<{
|
|
2750
|
+
section?:ResolverInputTypes["ShapeexamplescontactformSectionSection"],
|
|
2635
2751
|
__typename?: boolean | `@${string}`
|
|
2636
2752
|
}>;
|
|
2637
|
-
["
|
|
2638
|
-
|
|
2753
|
+
["Shapeexamplescontactform"]: AliasType<{
|
|
2754
|
+
section?:ResolverInputTypes["ShapeexamplescontactformSection"],
|
|
2639
2755
|
_id?:boolean | `@${string}`,
|
|
2640
2756
|
createdAt?:boolean | `@${string}`,
|
|
2641
2757
|
updatedAt?:boolean | `@${string}`,
|
|
2642
2758
|
__typename?: boolean | `@${string}`
|
|
2643
2759
|
}>;
|
|
2644
|
-
["
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
email?:boolean | `@${string}`,
|
|
2760
|
+
["ShapeproductcardProductcardProductcard_innerMedia"]: AliasType<{
|
|
2761
|
+
product_image?:ResolverInputTypes["ImageField"],
|
|
2762
|
+
badge?:boolean | `@${string}`,
|
|
2648
2763
|
__typename?: boolean | `@${string}`
|
|
2649
2764
|
}>;
|
|
2650
|
-
["
|
|
2651
|
-
|
|
2652
|
-
|
|
2765
|
+
["ShapeproductcardProductcardProductcard_innerContentPriceblockPricepart"]: AliasType<{
|
|
2766
|
+
price_label?:boolean | `@${string}`,
|
|
2767
|
+
product_price?:boolean | `@${string}`,
|
|
2653
2768
|
__typename?: boolean | `@${string}`
|
|
2654
2769
|
}>;
|
|
2655
|
-
["
|
|
2656
|
-
|
|
2770
|
+
["ShapeproductcardProductcardProductcard_innerContentPriceblockCta"]: AliasType<{
|
|
2771
|
+
cta?:boolean | `@${string}`,
|
|
2772
|
+
href?:boolean | `@${string}`,
|
|
2657
2773
|
__typename?: boolean | `@${string}`
|
|
2658
2774
|
}>;
|
|
2659
|
-
["
|
|
2660
|
-
|
|
2661
|
-
|
|
2775
|
+
["ShapeproductcardProductcardProductcard_innerContentPriceblock"]: AliasType<{
|
|
2776
|
+
pricepart?:ResolverInputTypes["ShapeproductcardProductcardProductcard_innerContentPriceblockPricepart"],
|
|
2777
|
+
cta?:ResolverInputTypes["ShapeproductcardProductcardProductcard_innerContentPriceblockCta"],
|
|
2662
2778
|
__typename?: boolean | `@${string}`
|
|
2663
2779
|
}>;
|
|
2664
|
-
["
|
|
2665
|
-
|
|
2666
|
-
|
|
2780
|
+
["ShapeproductcardProductcardProductcard_innerContentOptions"]: AliasType<{
|
|
2781
|
+
product_color_label?:boolean | `@${string}`,
|
|
2782
|
+
product_color?:boolean | `@${string}`,
|
|
2783
|
+
product_quantity_label?:boolean | `@${string}`,
|
|
2784
|
+
product_quantity?:boolean | `@${string}`,
|
|
2667
2785
|
__typename?: boolean | `@${string}`
|
|
2668
2786
|
}>;
|
|
2669
|
-
["
|
|
2670
|
-
|
|
2671
|
-
|
|
2787
|
+
["ShapeproductcardProductcardProductcard_innerContent"]: AliasType<{
|
|
2788
|
+
product_title?:boolean | `@${string}`,
|
|
2789
|
+
product_description?:boolean | `@${string}`,
|
|
2790
|
+
priceblock?:ResolverInputTypes["ShapeproductcardProductcardProductcard_innerContentPriceblock"],
|
|
2791
|
+
options?:ResolverInputTypes["ShapeproductcardProductcardProductcard_innerContentOptions"],
|
|
2672
2792
|
__typename?: boolean | `@${string}`
|
|
2673
2793
|
}>;
|
|
2674
|
-
["
|
|
2675
|
-
|
|
2676
|
-
|
|
2677
|
-
monthly_api_requests?:ResolverInputTypes["Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests"],
|
|
2794
|
+
["ShapeproductcardProductcardProductcard_inner"]: AliasType<{
|
|
2795
|
+
media?:ResolverInputTypes["ShapeproductcardProductcardProductcard_innerMedia"],
|
|
2796
|
+
content?:ResolverInputTypes["ShapeproductcardProductcardProductcard_innerContent"],
|
|
2678
2797
|
__typename?: boolean | `@${string}`
|
|
2679
2798
|
}>;
|
|
2680
|
-
["
|
|
2681
|
-
|
|
2682
|
-
plan_status?:ResolverInputTypes["Shapeprofile_infoProfile_sectionPlan_status"],
|
|
2683
|
-
usage_section?:ResolverInputTypes["Shapeprofile_infoProfile_sectionUsage_section"],
|
|
2799
|
+
["ShapeproductcardProductcard"]: AliasType<{
|
|
2800
|
+
productcard_inner?:ResolverInputTypes["ShapeproductcardProductcardProductcard_inner"],
|
|
2684
2801
|
__typename?: boolean | `@${string}`
|
|
2685
2802
|
}>;
|
|
2686
|
-
["
|
|
2687
|
-
|
|
2803
|
+
["Shapeproductcard"]: AliasType<{
|
|
2804
|
+
productcard?:ResolverInputTypes["ShapeproductcardProductcard"],
|
|
2688
2805
|
_id?:boolean | `@${string}`,
|
|
2689
2806
|
createdAt?:boolean | `@${string}`,
|
|
2690
2807
|
updatedAt?:boolean | `@${string}`,
|
|
2691
2808
|
__typename?: boolean | `@${string}`
|
|
2692
2809
|
}>;
|
|
2693
|
-
["
|
|
2810
|
+
["ShapereactcomponentSectionSectionHeading"]: AliasType<{
|
|
2694
2811
|
title?:boolean | `@${string}`,
|
|
2812
|
+
__typename?: boolean | `@${string}`
|
|
2813
|
+
}>;
|
|
2814
|
+
["ShapereactcomponentSectionSectionDescription"]: AliasType<{
|
|
2695
2815
|
description?:boolean | `@${string}`,
|
|
2696
2816
|
__typename?: boolean | `@${string}`
|
|
2697
2817
|
}>;
|
|
2698
|
-
["
|
|
2818
|
+
["ShapereactcomponentSectionSectionMedia"]: AliasType<{
|
|
2699
2819
|
image?:ResolverInputTypes["ImageField"],
|
|
2700
|
-
|
|
2701
|
-
|
|
2820
|
+
__typename?: boolean | `@${string}`
|
|
2821
|
+
}>;
|
|
2822
|
+
["ShapereactcomponentSectionSectionLink"]: AliasType<{
|
|
2702
2823
|
cta?:boolean | `@${string}`,
|
|
2824
|
+
href?:boolean | `@${string}`,
|
|
2703
2825
|
__typename?: boolean | `@${string}`
|
|
2704
2826
|
}>;
|
|
2705
|
-
["
|
|
2706
|
-
|
|
2827
|
+
["ShapereactcomponentSectionSectionForm"]: AliasType<{
|
|
2828
|
+
name?:boolean | `@${string}`,
|
|
2829
|
+
description?:boolean | `@${string}`,
|
|
2707
2830
|
__typename?: boolean | `@${string}`
|
|
2708
2831
|
}>;
|
|
2709
|
-
["
|
|
2710
|
-
|
|
2711
|
-
features_grid?:ResolverInputTypes["ShapesupportSectionFeatures_grid"],
|
|
2832
|
+
["ShapereactcomponentSectionSectionButton"]: AliasType<{
|
|
2833
|
+
button_text?:boolean | `@${string}`,
|
|
2712
2834
|
__typename?: boolean | `@${string}`
|
|
2713
2835
|
}>;
|
|
2714
|
-
["
|
|
2715
|
-
|
|
2716
|
-
|
|
2717
|
-
|
|
2718
|
-
|
|
2836
|
+
["ShapereactcomponentSectionSection"]: AliasType<{
|
|
2837
|
+
heading?:ResolverInputTypes["ShapereactcomponentSectionSectionHeading"],
|
|
2838
|
+
description?:ResolverInputTypes["ShapereactcomponentSectionSectionDescription"],
|
|
2839
|
+
media?:ResolverInputTypes["ShapereactcomponentSectionSectionMedia"],
|
|
2840
|
+
link?:ResolverInputTypes["ShapereactcomponentSectionSectionLink"],
|
|
2841
|
+
form?:ResolverInputTypes["ShapereactcomponentSectionSectionForm"],
|
|
2842
|
+
button?:ResolverInputTypes["ShapereactcomponentSectionSectionButton"],
|
|
2719
2843
|
__typename?: boolean | `@${string}`
|
|
2720
2844
|
}>;
|
|
2721
|
-
["
|
|
2722
|
-
|
|
2723
|
-
subtitle?:boolean | `@${string}`,
|
|
2724
|
-
period?:boolean | `@${string}`,
|
|
2725
|
-
tokens_consumed?:boolean | `@${string}`,
|
|
2845
|
+
["ShapereactcomponentSection"]: AliasType<{
|
|
2846
|
+
section?:ResolverInputTypes["ShapereactcomponentSectionSection"],
|
|
2726
2847
|
__typename?: boolean | `@${string}`
|
|
2727
2848
|
}>;
|
|
2728
|
-
["
|
|
2729
|
-
|
|
2849
|
+
["Shapereactcomponent"]: AliasType<{
|
|
2850
|
+
section?:ResolverInputTypes["ShapereactcomponentSection"],
|
|
2730
2851
|
_id?:boolean | `@${string}`,
|
|
2731
2852
|
createdAt?:boolean | `@${string}`,
|
|
2732
2853
|
updatedAt?:boolean | `@${string}`,
|
|
2733
2854
|
__typename?: boolean | `@${string}`
|
|
2734
2855
|
}>;
|
|
2735
2856
|
["RootParamsInput"]: {
|
|
2736
|
-
_version?: string | undefined | null
|
|
2737
|
-
locale?: string | undefined | null
|
|
2857
|
+
_version?: string | undefined | null
|
|
2738
2858
|
};
|
|
2739
2859
|
["RootParamsEnum"]:RootParamsEnum;
|
|
2740
|
-
["docsSortInput"]: {
|
|
2741
|
-
slug?: ResolverInputTypes["Sort"] | undefined | null,
|
|
2742
|
-
createdAt?: ResolverInputTypes["Sort"] | undefined | null,
|
|
2743
|
-
updatedAt?: ResolverInputTypes["Sort"] | undefined | null
|
|
2744
|
-
};
|
|
2745
|
-
["docsFilterInput"]: {
|
|
2746
|
-
slug?: ResolverInputTypes["FilterInputString"] | undefined | null
|
|
2747
|
-
};
|
|
2748
2860
|
["schema"]: AliasType<{
|
|
2749
2861
|
query?:ResolverInputTypes["Query"],
|
|
2750
2862
|
mutation?:ResolverInputTypes["Mutation"],
|
|
@@ -2975,6 +3087,12 @@ export type ModelTypes = {
|
|
|
2975
3087
|
["FormDisplayField"]: {
|
|
2976
3088
|
label?: string | undefined | null,
|
|
2977
3089
|
path?: string | undefined | null
|
|
3090
|
+
};
|
|
3091
|
+
["GenerateHusarShapeImplementorInput"]: {
|
|
3092
|
+
prompt: string,
|
|
3093
|
+
existingFileContent?: string | undefined | null,
|
|
3094
|
+
backendGraphQlContent?: string | undefined | null,
|
|
3095
|
+
includeShapes?: Array<string> | undefined | null
|
|
2978
3096
|
};
|
|
2979
3097
|
["CMSType"]:CMSType;
|
|
2980
3098
|
["Query"]: {
|
|
@@ -2986,559 +3104,567 @@ export type ModelTypes = {
|
|
|
2986
3104
|
listShapes?: Array<ModelTypes["Shape"]> | undefined | null,
|
|
2987
3105
|
tailwind?: ModelTypes["TailwindConfiguration"] | undefined | null,
|
|
2988
3106
|
listForms?: Array<ModelTypes["Form"]> | undefined | null,
|
|
2989
|
-
|
|
2990
|
-
|
|
2991
|
-
|
|
2992
|
-
|
|
2993
|
-
|
|
2994
|
-
|
|
2995
|
-
|
|
2996
|
-
|
|
2997
|
-
|
|
2998
|
-
|
|
2999
|
-
|
|
3000
|
-
|
|
3001
|
-
|
|
3002
|
-
|
|
3003
|
-
|
|
3004
|
-
|
|
3005
|
-
|
|
3006
|
-
|
|
3007
|
-
|
|
3008
|
-
|
|
3009
|
-
|
|
3010
|
-
|
|
3011
|
-
|
|
3012
|
-
|
|
3013
|
-
|
|
3014
|
-
|
|
3015
|
-
|
|
3016
|
-
|
|
3017
|
-
|
|
3018
|
-
|
|
3019
|
-
|
|
3020
|
-
|
|
3021
|
-
|
|
3022
|
-
|
|
3023
|
-
|
|
3024
|
-
|
|
3025
|
-
|
|
3026
|
-
|
|
3027
|
-
|
|
3028
|
-
|
|
3029
|
-
|
|
3030
|
-
|
|
3031
|
-
|
|
3032
|
-
|
|
3033
|
-
|
|
3034
|
-
|
|
3035
|
-
|
|
3036
|
-
|
|
3037
|
-
|
|
3038
|
-
|
|
3039
|
-
|
|
3040
|
-
|
|
3041
|
-
|
|
3042
|
-
|
|
3043
|
-
|
|
3044
|
-
|
|
3045
|
-
|
|
3046
|
-
|
|
3047
|
-
|
|
3048
|
-
|
|
3049
|
-
|
|
3050
|
-
|
|
3051
|
-
|
|
3052
|
-
|
|
3053
|
-
|
|
3054
|
-
|
|
3055
|
-
|
|
3056
|
-
|
|
3057
|
-
|
|
3058
|
-
|
|
3059
|
-
|
|
3060
|
-
|
|
3061
|
-
|
|
3062
|
-
|
|
3063
|
-
|
|
3064
|
-
|
|
3065
|
-
|
|
3066
|
-
|
|
3067
|
-
|
|
3068
|
-
|
|
3069
|
-
|
|
3070
|
-
|
|
3071
|
-
|
|
3072
|
-
|
|
3073
|
-
|
|
3074
|
-
|
|
3075
|
-
|
|
3076
|
-
|
|
3077
|
-
|
|
3078
|
-
|
|
3079
|
-
|
|
3080
|
-
|
|
3081
|
-
|
|
3082
|
-
|
|
3083
|
-
|
|
3084
|
-
|
|
3085
|
-
|
|
3107
|
+
fieldSetShapeexamples_contactform: string,
|
|
3108
|
+
modelShapeexamples_contactform: ModelTypes["ModelNavigationCompiled"],
|
|
3109
|
+
previewFieldsShapeexamples_contactform: ModelTypes["ModelNavigationCompiled"],
|
|
3110
|
+
oneShapeexamples_contactform?: ModelTypes["Shapeexamples_contactform"] | undefined | null,
|
|
3111
|
+
fieldSetShapeexamples_featuregrid: string,
|
|
3112
|
+
modelShapeexamples_featuregrid: ModelTypes["ModelNavigationCompiled"],
|
|
3113
|
+
previewFieldsShapeexamples_featuregrid: ModelTypes["ModelNavigationCompiled"],
|
|
3114
|
+
oneShapeexamples_featuregrid?: ModelTypes["Shapeexamples_featuregrid"] | undefined | null,
|
|
3115
|
+
fieldSetShapeexamples_herosection: string,
|
|
3116
|
+
modelShapeexamples_herosection: ModelTypes["ModelNavigationCompiled"],
|
|
3117
|
+
previewFieldsShapeexamples_herosection: ModelTypes["ModelNavigationCompiled"],
|
|
3118
|
+
oneShapeexamples_herosection?: ModelTypes["Shapeexamples_herosection"] | undefined | null,
|
|
3119
|
+
fieldSetShapeexamples_newslettersignup: string,
|
|
3120
|
+
modelShapeexamples_newslettersignup: ModelTypes["ModelNavigationCompiled"],
|
|
3121
|
+
previewFieldsShapeexamples_newslettersignup: ModelTypes["ModelNavigationCompiled"],
|
|
3122
|
+
oneShapeexamples_newslettersignup?: ModelTypes["Shapeexamples_newslettersignup"] | undefined | null,
|
|
3123
|
+
fieldSetShapeexamples_pricingplans: string,
|
|
3124
|
+
modelShapeexamples_pricingplans: ModelTypes["ModelNavigationCompiled"],
|
|
3125
|
+
previewFieldsShapeexamples_pricingplans: ModelTypes["ModelNavigationCompiled"],
|
|
3126
|
+
oneShapeexamples_pricingplans?: ModelTypes["Shapeexamples_pricingplans"] | undefined | null,
|
|
3127
|
+
fieldSetShapeexamples_pricingplans_1: string,
|
|
3128
|
+
modelShapeexamples_pricingplans_1: ModelTypes["ModelNavigationCompiled"],
|
|
3129
|
+
previewFieldsShapeexamples_pricingplans_1: ModelTypes["ModelNavigationCompiled"],
|
|
3130
|
+
oneShapeexamples_pricingplans_1?: ModelTypes["Shapeexamples_pricingplans_1"] | undefined | null,
|
|
3131
|
+
fieldSetShapeexamples_productcard: string,
|
|
3132
|
+
modelShapeexamples_productcard: ModelTypes["ModelNavigationCompiled"],
|
|
3133
|
+
previewFieldsShapeexamples_productcard: ModelTypes["ModelNavigationCompiled"],
|
|
3134
|
+
oneShapeexamples_productcard?: ModelTypes["Shapeexamples_productcard"] | undefined | null,
|
|
3135
|
+
fieldSetShapeexamples_testimonialcard: string,
|
|
3136
|
+
modelShapeexamples_testimonialcard: ModelTypes["ModelNavigationCompiled"],
|
|
3137
|
+
previewFieldsShapeexamples_testimonialcard: ModelTypes["ModelNavigationCompiled"],
|
|
3138
|
+
oneShapeexamples_testimonialcard?: ModelTypes["Shapeexamples_testimonialcard"] | undefined | null,
|
|
3139
|
+
fieldSetShapeexamplescontactform: string,
|
|
3140
|
+
modelShapeexamplescontactform: ModelTypes["ModelNavigationCompiled"],
|
|
3141
|
+
previewFieldsShapeexamplescontactform: ModelTypes["ModelNavigationCompiled"],
|
|
3142
|
+
oneShapeexamplescontactform?: ModelTypes["Shapeexamplescontactform"] | undefined | null,
|
|
3143
|
+
fieldSetShapeproductcard: string,
|
|
3144
|
+
modelShapeproductcard: ModelTypes["ModelNavigationCompiled"],
|
|
3145
|
+
previewFieldsShapeproductcard: ModelTypes["ModelNavigationCompiled"],
|
|
3146
|
+
oneShapeproductcard?: ModelTypes["Shapeproductcard"] | undefined | null,
|
|
3147
|
+
fieldSetShapereactcomponent: string,
|
|
3148
|
+
modelShapereactcomponent: ModelTypes["ModelNavigationCompiled"],
|
|
3149
|
+
previewFieldsShapereactcomponent: ModelTypes["ModelNavigationCompiled"],
|
|
3150
|
+
oneShapereactcomponent?: ModelTypes["Shapereactcomponent"] | undefined | null
|
|
3151
|
+
};
|
|
3152
|
+
["RootParamsType"]: {
|
|
3153
|
+
_version?: string | undefined | null
|
|
3154
|
+
};
|
|
3155
|
+
["ShapeEnum"]:ShapeEnum;
|
|
3156
|
+
["Shapeexamples_contactformSectionSectionHeading"]: {
|
|
3157
|
+
subtitle?: string | undefined | null
|
|
3158
|
+
};
|
|
3159
|
+
["Shapeexamples_contactformSectionSectionDescription"]: {
|
|
3160
|
+
description?: string | undefined | null
|
|
3161
|
+
};
|
|
3162
|
+
["Shapeexamples_contactformSectionSectionForm"]: {
|
|
3163
|
+
name?: string | undefined | null,
|
|
3164
|
+
email?: string | undefined | null,
|
|
3165
|
+
message?: string | undefined | null
|
|
3166
|
+
};
|
|
3167
|
+
["Shapeexamples_contactformSectionSectionButton"]: {
|
|
3168
|
+
button_text?: string | undefined | null
|
|
3169
|
+
};
|
|
3170
|
+
["Shapeexamples_contactformSectionSectionLink"]: {
|
|
3171
|
+
cta?: string | undefined | null,
|
|
3172
|
+
href?: string | undefined | null
|
|
3173
|
+
};
|
|
3174
|
+
["Shapeexamples_contactformSectionSection"]: {
|
|
3175
|
+
heading?: ModelTypes["Shapeexamples_contactformSectionSectionHeading"] | undefined | null,
|
|
3176
|
+
description?: ModelTypes["Shapeexamples_contactformSectionSectionDescription"] | undefined | null,
|
|
3177
|
+
form?: ModelTypes["Shapeexamples_contactformSectionSectionForm"] | undefined | null,
|
|
3178
|
+
button?: ModelTypes["Shapeexamples_contactformSectionSectionButton"] | undefined | null,
|
|
3179
|
+
link?: ModelTypes["Shapeexamples_contactformSectionSectionLink"] | undefined | null
|
|
3180
|
+
};
|
|
3181
|
+
["Shapeexamples_contactformSection"]: {
|
|
3182
|
+
section?: ModelTypes["Shapeexamples_contactformSectionSection"] | undefined | null
|
|
3183
|
+
};
|
|
3184
|
+
["Shapeexamples_contactform"]: {
|
|
3185
|
+
section?: ModelTypes["Shapeexamples_contactformSection"] | undefined | null,
|
|
3186
|
+
_id: string,
|
|
3187
|
+
createdAt?: number | undefined | null,
|
|
3188
|
+
updatedAt?: number | undefined | null
|
|
3189
|
+
};
|
|
3190
|
+
["Shapeexamples_featuregridSectionSectionHeaderFeatures_title"]: {
|
|
3191
|
+
subtitle?: string | undefined | null
|
|
3192
|
+
};
|
|
3193
|
+
["Shapeexamples_featuregridSectionSectionHeaderFeatures_description"]: {
|
|
3194
|
+
description?: string | undefined | null
|
|
3195
|
+
};
|
|
3196
|
+
["Shapeexamples_featuregridSectionSectionHeader"]: {
|
|
3197
|
+
features_title?: ModelTypes["Shapeexamples_featuregridSectionSectionHeaderFeatures_title"] | undefined | null,
|
|
3198
|
+
features_description?: ModelTypes["Shapeexamples_featuregridSectionSectionHeaderFeatures_description"] | undefined | null
|
|
3199
|
+
};
|
|
3200
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3MediaFeature_title_1"]: {
|
|
3201
|
+
h3?: string | undefined | null
|
|
3202
|
+
};
|
|
3203
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3MediaFeature_description_1"]: {
|
|
3204
|
+
description?: string | undefined | null
|
|
3205
|
+
};
|
|
3206
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3Media"]: {
|
|
3207
|
+
image?: ModelTypes["ImageField"] | undefined | null,
|
|
3208
|
+
feature_title_1?: ModelTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3MediaFeature_title_1"] | undefined | null,
|
|
3209
|
+
feature_description_1?: ModelTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3MediaFeature_description_1"] | undefined | null
|
|
3210
|
+
};
|
|
3211
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_2Feature_title_2"]: {
|
|
3212
|
+
h3?: string | undefined | null
|
|
3213
|
+
};
|
|
3214
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_2Feature_description_2"]: {
|
|
3215
|
+
description?: string | undefined | null
|
|
3216
|
+
};
|
|
3217
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_2"]: {
|
|
3218
|
+
image?: ModelTypes["ImageField"] | undefined | null,
|
|
3219
|
+
feature_title_2?: ModelTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_2Feature_title_2"] | undefined | null,
|
|
3220
|
+
feature_description_2?: ModelTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_2Feature_description_2"] | undefined | null
|
|
3221
|
+
};
|
|
3222
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_3Feature_title_3"]: {
|
|
3223
|
+
h3?: string | undefined | null
|
|
3224
|
+
};
|
|
3225
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_3Feature_description_3"]: {
|
|
3226
|
+
description?: string | undefined | null
|
|
3227
|
+
};
|
|
3228
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_3"]: {
|
|
3229
|
+
image?: ModelTypes["ImageField"] | undefined | null,
|
|
3230
|
+
feature_title_3?: ModelTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_3Feature_title_3"] | undefined | null,
|
|
3231
|
+
feature_description_3?: ModelTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_3Feature_description_3"] | undefined | null
|
|
3232
|
+
};
|
|
3233
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3"]: {
|
|
3234
|
+
media?: ModelTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3Media"] | undefined | null,
|
|
3235
|
+
media_2?: ModelTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_2"] | undefined | null,
|
|
3236
|
+
media_3?: ModelTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_3"] | undefined | null
|
|
3237
|
+
};
|
|
3238
|
+
["Shapeexamples_featuregridSectionSection"]: {
|
|
3239
|
+
header?: ModelTypes["Shapeexamples_featuregridSectionSectionHeader"] | undefined | null,
|
|
3240
|
+
md_gridcols3?: ModelTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3"] | undefined | null
|
|
3241
|
+
};
|
|
3242
|
+
["Shapeexamples_featuregridSection"]: {
|
|
3243
|
+
section?: ModelTypes["Shapeexamples_featuregridSectionSection"] | undefined | null
|
|
3244
|
+
};
|
|
3245
|
+
["Shapeexamples_featuregrid"]: {
|
|
3246
|
+
section?: ModelTypes["Shapeexamples_featuregridSection"] | undefined | null,
|
|
3247
|
+
_id: string,
|
|
3248
|
+
createdAt?: number | undefined | null,
|
|
3249
|
+
updatedAt?: number | undefined | null
|
|
3250
|
+
};
|
|
3251
|
+
["Shapeexamples_herosectionSectionSectionHeading"]: {
|
|
3252
|
+
title?: string | undefined | null
|
|
3253
|
+
};
|
|
3254
|
+
["Shapeexamples_herosectionSectionSectionDescription"]: {
|
|
3255
|
+
description?: string | undefined | null
|
|
3256
|
+
};
|
|
3257
|
+
["Shapeexamples_herosectionSectionSectionSectionLink"]: {
|
|
3258
|
+
cta?: string | undefined | null,
|
|
3259
|
+
href?: string | undefined | null
|
|
3086
3260
|
};
|
|
3087
|
-
["
|
|
3088
|
-
|
|
3089
|
-
|
|
3261
|
+
["Shapeexamples_herosectionSectionSectionSectionLink_2"]: {
|
|
3262
|
+
cta?: string | undefined | null,
|
|
3263
|
+
href?: string | undefined | null
|
|
3090
3264
|
};
|
|
3091
|
-
["
|
|
3092
|
-
|
|
3093
|
-
["
|
|
3094
|
-
["docs__Connection"]: {
|
|
3095
|
-
items?: Array<ModelTypes["docs"]> | undefined | null,
|
|
3096
|
-
pageInfo: ModelTypes["PageInfo"]
|
|
3265
|
+
["Shapeexamples_herosectionSectionSectionSection"]: {
|
|
3266
|
+
link?: ModelTypes["Shapeexamples_herosectionSectionSectionSectionLink"] | undefined | null,
|
|
3267
|
+
link_2?: ModelTypes["Shapeexamples_herosectionSectionSectionSectionLink_2"] | undefined | null
|
|
3097
3268
|
};
|
|
3098
|
-
["
|
|
3099
|
-
|
|
3100
|
-
title?: string | undefined | null,
|
|
3101
|
-
seotitle?: string | undefined | null,
|
|
3102
|
-
metadesc?: string | undefined | null,
|
|
3103
|
-
sortid?: number | undefined | null,
|
|
3104
|
-
main_category?: string | undefined | null,
|
|
3105
|
-
content?: string | undefined | null,
|
|
3106
|
-
video?: ModelTypes["VideoField"] | undefined | null,
|
|
3107
|
-
locale?: string | undefined | null,
|
|
3108
|
-
slug?: string | undefined | null,
|
|
3109
|
-
_id: string,
|
|
3110
|
-
createdAt?: number | undefined | null,
|
|
3111
|
-
updatedAt?: number | undefined | null,
|
|
3112
|
-
draft_version?: boolean | undefined | null,
|
|
3113
|
-
json_ld?: string | undefined | null
|
|
3114
|
-
};
|
|
3115
|
-
["ViewaccountMain"]: {
|
|
3116
|
-
profile?: ModelTypes["Shapeprofile_info"] | undefined | null,
|
|
3117
|
-
projects?: ModelTypes["Shapelista_projektow"] | undefined | null
|
|
3118
|
-
};
|
|
3119
|
-
["Viewaccount"]: {
|
|
3120
|
-
_version?: ModelTypes["VersionField"] | undefined | null,
|
|
3121
|
-
main?: ModelTypes["ViewaccountMain"] | undefined | null,
|
|
3122
|
-
locale?: string | undefined | null,
|
|
3123
|
-
slug?: string | undefined | null,
|
|
3124
|
-
_id: string,
|
|
3125
|
-
createdAt?: number | undefined | null,
|
|
3126
|
-
updatedAt?: number | undefined | null,
|
|
3127
|
-
draft_version?: boolean | undefined | null,
|
|
3128
|
-
json_ld?: string | undefined | null
|
|
3129
|
-
};
|
|
3130
|
-
["ViewfeaturesMain"]: {
|
|
3131
|
-
auto_translation?: ModelTypes["Shapefeaturepresentation"] | undefined | null,
|
|
3132
|
-
ai_component?: ModelTypes["Shapefeaturepresentation"] | undefined | null
|
|
3133
|
-
};
|
|
3134
|
-
["Viewfeatures"]: {
|
|
3135
|
-
_version?: ModelTypes["VersionField"] | undefined | null,
|
|
3136
|
-
main?: ModelTypes["ViewfeaturesMain"] | undefined | null,
|
|
3137
|
-
locale?: string | undefined | null,
|
|
3138
|
-
slug?: string | undefined | null,
|
|
3139
|
-
_id: string,
|
|
3140
|
-
createdAt?: number | undefined | null,
|
|
3141
|
-
updatedAt?: number | undefined | null,
|
|
3142
|
-
draft_version?: boolean | undefined | null,
|
|
3143
|
-
json_ld?: string | undefined | null
|
|
3144
|
-
};
|
|
3145
|
-
["Viewhomepage"]: {
|
|
3146
|
-
_version?: ModelTypes["VersionField"] | undefined | null,
|
|
3147
|
-
nav?: ModelTypes["Shapenav"] | undefined | null,
|
|
3148
|
-
main?: ModelTypes["Shapehero"] | undefined | null,
|
|
3149
|
-
hero?: ModelTypes["Shapeherox"] | undefined | null,
|
|
3150
|
-
pricing?: ModelTypes["Shapepricingv1"] | undefined | null,
|
|
3151
|
-
footer?: ModelTypes["Shapefoot"] | undefined | null,
|
|
3152
|
-
locale?: string | undefined | null,
|
|
3153
|
-
slug?: string | undefined | null,
|
|
3154
|
-
_id: string,
|
|
3155
|
-
createdAt?: number | undefined | null,
|
|
3156
|
-
updatedAt?: number | undefined | null,
|
|
3157
|
-
draft_version?: boolean | undefined | null,
|
|
3158
|
-
json_ld?: string | undefined | null
|
|
3269
|
+
["Shapeexamples_herosectionSectionSectionMedia"]: {
|
|
3270
|
+
image?: ModelTypes["ImageField"] | undefined | null
|
|
3159
3271
|
};
|
|
3160
|
-
["
|
|
3161
|
-
|
|
3162
|
-
description?:
|
|
3163
|
-
|
|
3272
|
+
["Shapeexamples_herosectionSectionSection"]: {
|
|
3273
|
+
heading?: ModelTypes["Shapeexamples_herosectionSectionSectionHeading"] | undefined | null,
|
|
3274
|
+
description?: ModelTypes["Shapeexamples_herosectionSectionSectionDescription"] | undefined | null,
|
|
3275
|
+
section?: ModelTypes["Shapeexamples_herosectionSectionSectionSection"] | undefined | null,
|
|
3276
|
+
media?: ModelTypes["Shapeexamples_herosectionSectionSectionMedia"] | undefined | null
|
|
3164
3277
|
};
|
|
3165
|
-
["
|
|
3166
|
-
|
|
3167
|
-
|
|
3168
|
-
|
|
3169
|
-
|
|
3170
|
-
slug?: string | undefined | null,
|
|
3171
|
-
_id: string,
|
|
3172
|
-
createdAt?: number | undefined | null,
|
|
3173
|
-
updatedAt?: number | undefined | null,
|
|
3174
|
-
draft_version?: boolean | undefined | null,
|
|
3175
|
-
json_ld?: string | undefined | null
|
|
3176
|
-
};
|
|
3177
|
-
["Viewpricing"]: {
|
|
3178
|
-
_version?: ModelTypes["VersionField"] | undefined | null,
|
|
3179
|
-
pricing?: ModelTypes["Shapepricingv1"] | undefined | null,
|
|
3180
|
-
table?: ModelTypes["Shapepricing_table"] | undefined | null,
|
|
3181
|
-
cta?: ModelTypes["Shapenewshape"] | undefined | null,
|
|
3182
|
-
locale?: string | undefined | null,
|
|
3183
|
-
slug?: string | undefined | null,
|
|
3278
|
+
["Shapeexamples_herosectionSection"]: {
|
|
3279
|
+
section?: ModelTypes["Shapeexamples_herosectionSectionSection"] | undefined | null
|
|
3280
|
+
};
|
|
3281
|
+
["Shapeexamples_herosection"]: {
|
|
3282
|
+
section?: ModelTypes["Shapeexamples_herosectionSection"] | undefined | null,
|
|
3184
3283
|
_id: string,
|
|
3185
3284
|
createdAt?: number | undefined | null,
|
|
3186
|
-
updatedAt?: number | undefined | null
|
|
3187
|
-
draft_version?: boolean | undefined | null,
|
|
3188
|
-
json_ld?: string | undefined | null
|
|
3285
|
+
updatedAt?: number | undefined | null
|
|
3189
3286
|
};
|
|
3190
|
-
["
|
|
3191
|
-
|
|
3192
|
-
link?: string | undefined | null
|
|
3287
|
+
["Shapeexamples_newslettersignupSectionSectionHeading"]: {
|
|
3288
|
+
subtitle?: string | undefined | null
|
|
3193
3289
|
};
|
|
3194
|
-
["
|
|
3195
|
-
|
|
3290
|
+
["Shapeexamples_newslettersignupSectionSectionDescription"]: {
|
|
3291
|
+
description?: string | undefined | null
|
|
3196
3292
|
};
|
|
3197
|
-
["
|
|
3198
|
-
|
|
3199
|
-
category?: Array<ModelTypes["Shapecloud_sidebarSidebarMenuCategory"] | undefined | null> | undefined | null
|
|
3293
|
+
["Shapeexamples_newslettersignupSectionSectionFormButton"]: {
|
|
3294
|
+
button_text?: string | undefined | null
|
|
3200
3295
|
};
|
|
3201
|
-
["
|
|
3202
|
-
|
|
3203
|
-
|
|
3296
|
+
["Shapeexamples_newslettersignupSectionSectionForm"]: {
|
|
3297
|
+
email?: string | undefined | null,
|
|
3298
|
+
button?: ModelTypes["Shapeexamples_newslettersignupSectionSectionFormButton"] | undefined | null
|
|
3299
|
+
};
|
|
3300
|
+
["Shapeexamples_newslettersignupSectionSectionDescription_2Link"]: {
|
|
3301
|
+
cta?: string | undefined | null,
|
|
3302
|
+
href?: string | undefined | null
|
|
3303
|
+
};
|
|
3304
|
+
["Shapeexamples_newslettersignupSectionSectionDescription_2"]: {
|
|
3305
|
+
description?: string | undefined | null,
|
|
3306
|
+
link?: ModelTypes["Shapeexamples_newslettersignupSectionSectionDescription_2Link"] | undefined | null
|
|
3204
3307
|
};
|
|
3205
|
-
["
|
|
3206
|
-
|
|
3308
|
+
["Shapeexamples_newslettersignupSectionSection"]: {
|
|
3309
|
+
heading?: ModelTypes["Shapeexamples_newslettersignupSectionSectionHeading"] | undefined | null,
|
|
3310
|
+
description?: ModelTypes["Shapeexamples_newslettersignupSectionSectionDescription"] | undefined | null,
|
|
3311
|
+
form?: ModelTypes["Shapeexamples_newslettersignupSectionSectionForm"] | undefined | null,
|
|
3312
|
+
description_2?: ModelTypes["Shapeexamples_newslettersignupSectionSectionDescription_2"] | undefined | null
|
|
3207
3313
|
};
|
|
3208
|
-
["
|
|
3209
|
-
|
|
3210
|
-
bottom_menu?: ModelTypes["Shapecloud_sidebarSidebarBottom_menu"] | undefined | null
|
|
3314
|
+
["Shapeexamples_newslettersignupSection"]: {
|
|
3315
|
+
section?: ModelTypes["Shapeexamples_newslettersignupSectionSection"] | undefined | null
|
|
3211
3316
|
};
|
|
3212
|
-
["
|
|
3213
|
-
|
|
3317
|
+
["Shapeexamples_newslettersignup"]: {
|
|
3318
|
+
section?: ModelTypes["Shapeexamples_newslettersignupSection"] | undefined | null,
|
|
3214
3319
|
_id: string,
|
|
3215
3320
|
createdAt?: number | undefined | null,
|
|
3216
3321
|
updatedAt?: number | undefined | null
|
|
3217
3322
|
};
|
|
3218
|
-
["
|
|
3323
|
+
["Shapeexamples_pricingplansSectionSectionHeaderPricing_title"]: {
|
|
3324
|
+
subtitle?: string | undefined | null
|
|
3325
|
+
};
|
|
3326
|
+
["Shapeexamples_pricingplansSectionSectionHeaderPricing_description"]: {
|
|
3327
|
+
description?: string | undefined | null
|
|
3328
|
+
};
|
|
3329
|
+
["Shapeexamples_pricingplansSectionSectionHeader"]: {
|
|
3330
|
+
pricing_title?: ModelTypes["Shapeexamples_pricingplansSectionSectionHeaderPricing_title"] | undefined | null,
|
|
3331
|
+
pricing_description?: ModelTypes["Shapeexamples_pricingplansSectionSectionHeaderPricing_description"] | undefined | null
|
|
3332
|
+
};
|
|
3333
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderPlan_name_1"]: {
|
|
3334
|
+
h3?: string | undefined | null
|
|
3335
|
+
};
|
|
3336
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderSectionPlan_price_1"]: {
|
|
3219
3337
|
content?: string | undefined | null
|
|
3220
3338
|
};
|
|
3221
|
-
["
|
|
3222
|
-
|
|
3223
|
-
scrollspy_list?: string | undefined | null
|
|
3339
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderSection"]: {
|
|
3340
|
+
plan_price_1?: ModelTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderSectionPlan_price_1"] | undefined | null
|
|
3224
3341
|
};
|
|
3225
|
-
["
|
|
3226
|
-
|
|
3342
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderList"]: {
|
|
3343
|
+
items?: Array<string | undefined | null> | undefined | null
|
|
3227
3344
|
};
|
|
3228
|
-
["
|
|
3229
|
-
|
|
3230
|
-
|
|
3345
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderPlan_cta_1"]: {
|
|
3346
|
+
cta?: string | undefined | null,
|
|
3347
|
+
href?: string | undefined | null
|
|
3231
3348
|
};
|
|
3232
|
-
["
|
|
3233
|
-
|
|
3349
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border"]: {
|
|
3350
|
+
plan_name_1?: ModelTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderPlan_name_1"] | undefined | null,
|
|
3351
|
+
section?: ModelTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderSection"] | undefined | null,
|
|
3352
|
+
list?: ModelTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderList"] | undefined | null,
|
|
3353
|
+
plan_cta_1?: ModelTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderPlan_cta_1"] | undefined | null
|
|
3234
3354
|
};
|
|
3235
|
-
["
|
|
3236
|
-
|
|
3237
|
-
_id: string,
|
|
3238
|
-
createdAt?: number | undefined | null,
|
|
3239
|
-
updatedAt?: number | undefined | null
|
|
3355
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2Plan_name_2"]: {
|
|
3356
|
+
h3?: string | undefined | null
|
|
3240
3357
|
};
|
|
3241
|
-
["
|
|
3242
|
-
|
|
3243
|
-
link?: string | undefined | null
|
|
3358
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2SectionPlan_price_2"]: {
|
|
3359
|
+
content?: string | undefined | null
|
|
3244
3360
|
};
|
|
3245
|
-
["
|
|
3246
|
-
|
|
3361
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2Section"]: {
|
|
3362
|
+
plan_price_2?: ModelTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2SectionPlan_price_2"] | undefined | null
|
|
3247
3363
|
};
|
|
3248
|
-
["
|
|
3249
|
-
|
|
3250
|
-
children?: ModelTypes["Shapedocs_navMainListChildren"] | undefined | null
|
|
3364
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2List"]: {
|
|
3365
|
+
items?: Array<string | undefined | null> | undefined | null
|
|
3251
3366
|
};
|
|
3252
|
-
["
|
|
3253
|
-
|
|
3367
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2Plan_cta_2"]: {
|
|
3368
|
+
cta?: string | undefined | null,
|
|
3369
|
+
href?: string | undefined | null
|
|
3254
3370
|
};
|
|
3255
|
-
["
|
|
3256
|
-
|
|
3257
|
-
|
|
3258
|
-
|
|
3259
|
-
|
|
3371
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2"]: {
|
|
3372
|
+
plan_name_2?: ModelTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2Plan_name_2"] | undefined | null,
|
|
3373
|
+
section?: ModelTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2Section"] | undefined | null,
|
|
3374
|
+
list?: ModelTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2List"] | undefined | null,
|
|
3375
|
+
plan_cta_2?: ModelTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2Plan_cta_2"] | undefined | null
|
|
3260
3376
|
};
|
|
3261
|
-
["
|
|
3262
|
-
|
|
3263
|
-
subtitle?: string | undefined | null,
|
|
3264
|
-
content?: string | undefined | null
|
|
3377
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3Plan_name_3"]: {
|
|
3378
|
+
h3?: string | undefined | null
|
|
3265
3379
|
};
|
|
3266
|
-
["
|
|
3267
|
-
|
|
3268
|
-
_id: string,
|
|
3269
|
-
createdAt?: number | undefined | null,
|
|
3270
|
-
updatedAt?: number | undefined | null
|
|
3380
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3SectionPlan_price_3"]: {
|
|
3381
|
+
content?: string | undefined | null
|
|
3271
3382
|
};
|
|
3272
|
-
["
|
|
3273
|
-
|
|
3274
|
-
terms_of_service?: string | undefined | null,
|
|
3275
|
-
contact_us?: string | undefined | null
|
|
3383
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3Section"]: {
|
|
3384
|
+
plan_price_3?: ModelTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3SectionPlan_price_3"] | undefined | null
|
|
3276
3385
|
};
|
|
3277
|
-
["
|
|
3278
|
-
|
|
3279
|
-
footer_links?: ModelTypes["ShapefootFooterFooter_containerFooter_links"] | undefined | null,
|
|
3280
|
-
footer_copy?: string | undefined | null
|
|
3386
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3List"]: {
|
|
3387
|
+
items?: Array<string | undefined | null> | undefined | null
|
|
3281
3388
|
};
|
|
3282
|
-
["
|
|
3283
|
-
|
|
3389
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3Plan_cta_3"]: {
|
|
3390
|
+
cta?: string | undefined | null,
|
|
3391
|
+
href?: string | undefined | null
|
|
3284
3392
|
};
|
|
3285
|
-
["
|
|
3286
|
-
|
|
3287
|
-
|
|
3288
|
-
|
|
3289
|
-
|
|
3393
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3"]: {
|
|
3394
|
+
plan_name_3?: ModelTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3Plan_name_3"] | undefined | null,
|
|
3395
|
+
section?: ModelTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3Section"] | undefined | null,
|
|
3396
|
+
list?: ModelTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3List"] | undefined | null,
|
|
3397
|
+
plan_cta_3?: ModelTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3Plan_cta_3"] | undefined | null
|
|
3290
3398
|
};
|
|
3291
|
-
["
|
|
3292
|
-
|
|
3399
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3"]: {
|
|
3400
|
+
border?: ModelTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border"] | undefined | null,
|
|
3401
|
+
border_2?: ModelTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2"] | undefined | null,
|
|
3402
|
+
border_3?: ModelTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3"] | undefined | null
|
|
3293
3403
|
};
|
|
3294
|
-
["
|
|
3295
|
-
|
|
3296
|
-
|
|
3297
|
-
slogan_parent?: ModelTypes["ShapeheroHero_componentSlogan_parent"] | undefined | null,
|
|
3298
|
-
subslogan?: string | undefined | null
|
|
3404
|
+
["Shapeexamples_pricingplansSectionSection"]: {
|
|
3405
|
+
header?: ModelTypes["Shapeexamples_pricingplansSectionSectionHeader"] | undefined | null,
|
|
3406
|
+
md_gridcols3?: ModelTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3"] | undefined | null
|
|
3299
3407
|
};
|
|
3300
|
-
["
|
|
3301
|
-
|
|
3408
|
+
["Shapeexamples_pricingplansSection"]: {
|
|
3409
|
+
section?: ModelTypes["Shapeexamples_pricingplansSectionSection"] | undefined | null
|
|
3410
|
+
};
|
|
3411
|
+
["Shapeexamples_pricingplans"]: {
|
|
3412
|
+
section?: ModelTypes["Shapeexamples_pricingplansSection"] | undefined | null,
|
|
3302
3413
|
_id: string,
|
|
3303
3414
|
createdAt?: number | undefined | null,
|
|
3304
3415
|
updatedAt?: number | undefined | null
|
|
3305
3416
|
};
|
|
3306
|
-
["
|
|
3307
|
-
|
|
3417
|
+
["Shapeexamples_pricingplans_1ContainerPricingHeader"]: {
|
|
3418
|
+
subtitle?: string | undefined | null,
|
|
3419
|
+
description?: string | undefined | null
|
|
3420
|
+
};
|
|
3421
|
+
["Shapeexamples_pricingplans_1ContainerPricingPlansPlan_itemsPriceblock"]: {
|
|
3422
|
+
price?: string | undefined | null
|
|
3308
3423
|
};
|
|
3309
|
-
["
|
|
3424
|
+
["Shapeexamples_pricingplans_1ContainerPricingPlansPlan_itemsCta"]: {
|
|
3310
3425
|
title?: string | undefined | null,
|
|
3311
|
-
|
|
3312
|
-
features?: ModelTypes["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"] | undefined | null
|
|
3426
|
+
href?: string | undefined | null
|
|
3313
3427
|
};
|
|
3314
|
-
["
|
|
3315
|
-
|
|
3428
|
+
["Shapeexamples_pricingplans_1ContainerPricingPlansPlan_items"]: {
|
|
3429
|
+
name?: string | undefined | null,
|
|
3430
|
+
priceblock?: ModelTypes["Shapeexamples_pricingplans_1ContainerPricingPlansPlan_itemsPriceblock"] | undefined | null,
|
|
3431
|
+
features?: Array<string | undefined | null> | undefined | null,
|
|
3432
|
+
cta?: ModelTypes["Shapeexamples_pricingplans_1ContainerPricingPlansPlan_itemsCta"] | undefined | null
|
|
3316
3433
|
};
|
|
3317
|
-
["
|
|
3318
|
-
|
|
3434
|
+
["Shapeexamples_pricingplans_1ContainerPricingPlans"]: {
|
|
3435
|
+
plan_items?: Array<ModelTypes["Shapeexamples_pricingplans_1ContainerPricingPlansPlan_items"] | undefined | null> | undefined | null
|
|
3319
3436
|
};
|
|
3320
|
-
["
|
|
3321
|
-
|
|
3322
|
-
|
|
3323
|
-
presentation?: ModelTypes["ShapeheroxHero_sectionHero_containerPresentation"] | undefined | null
|
|
3437
|
+
["Shapeexamples_pricingplans_1ContainerPricing"]: {
|
|
3438
|
+
header?: ModelTypes["Shapeexamples_pricingplans_1ContainerPricingHeader"] | undefined | null,
|
|
3439
|
+
plans?: ModelTypes["Shapeexamples_pricingplans_1ContainerPricingPlans"] | undefined | null
|
|
3324
3440
|
};
|
|
3325
|
-
["
|
|
3326
|
-
|
|
3441
|
+
["Shapeexamples_pricingplans_1Container"]: {
|
|
3442
|
+
pricing?: ModelTypes["Shapeexamples_pricingplans_1ContainerPricing"] | undefined | null
|
|
3327
3443
|
};
|
|
3328
|
-
["
|
|
3329
|
-
|
|
3444
|
+
["Shapeexamples_pricingplans_1"]: {
|
|
3445
|
+
container?: ModelTypes["Shapeexamples_pricingplans_1Container"] | undefined | null,
|
|
3330
3446
|
_id: string,
|
|
3331
3447
|
createdAt?: number | undefined | null,
|
|
3332
3448
|
updatedAt?: number | undefined | null
|
|
3333
3449
|
};
|
|
3334
|
-
["
|
|
3335
|
-
|
|
3336
|
-
link?: string | undefined | null,
|
|
3337
|
-
remove_button?: string | undefined | null
|
|
3450
|
+
["Shapeexamples_productcardSectionSectionMediaRounded"]: {
|
|
3451
|
+
content?: string | undefined | null
|
|
3338
3452
|
};
|
|
3339
|
-
["
|
|
3340
|
-
|
|
3453
|
+
["Shapeexamples_productcardSectionSectionMedia"]: {
|
|
3454
|
+
image?: ModelTypes["ImageField"] | undefined | null,
|
|
3455
|
+
rounded?: ModelTypes["Shapeexamples_productcardSectionSectionMediaRounded"] | undefined | null
|
|
3341
3456
|
};
|
|
3342
|
-
["
|
|
3343
|
-
|
|
3344
|
-
subtitle?: string | undefined | null,
|
|
3345
|
-
projects?: ModelTypes["Shapelista_projektowListProjects"] | undefined | null
|
|
3457
|
+
["Shapeexamples_productcardSectionSectionSectionProduct_title"]: {
|
|
3458
|
+
subtitle?: string | undefined | null
|
|
3346
3459
|
};
|
|
3347
|
-
["
|
|
3348
|
-
|
|
3349
|
-
_id: string,
|
|
3350
|
-
createdAt?: number | undefined | null,
|
|
3351
|
-
updatedAt?: number | undefined | null
|
|
3460
|
+
["Shapeexamples_productcardSectionSectionSectionProduct_description"]: {
|
|
3461
|
+
description?: string | undefined | null
|
|
3352
3462
|
};
|
|
3353
|
-
["
|
|
3354
|
-
|
|
3463
|
+
["Shapeexamples_productcardSectionSectionSectionSectionSectionInline"]: {
|
|
3464
|
+
content?: string | undefined | null
|
|
3465
|
+
};
|
|
3466
|
+
["Shapeexamples_productcardSectionSectionSectionSectionSectionProduct_price"]: {
|
|
3467
|
+
content?: string | undefined | null
|
|
3468
|
+
};
|
|
3469
|
+
["Shapeexamples_productcardSectionSectionSectionSectionSection"]: {
|
|
3470
|
+
inline?: ModelTypes["Shapeexamples_productcardSectionSectionSectionSectionSectionInline"] | undefined | null,
|
|
3471
|
+
product_price?: ModelTypes["Shapeexamples_productcardSectionSectionSectionSectionSectionProduct_price"] | undefined | null
|
|
3472
|
+
};
|
|
3473
|
+
["Shapeexamples_productcardSectionSectionSectionSectionProduct_cta_url"]: {
|
|
3474
|
+
cta?: string | undefined | null,
|
|
3355
3475
|
href?: string | undefined | null
|
|
3356
3476
|
};
|
|
3357
|
-
["
|
|
3358
|
-
|
|
3477
|
+
["Shapeexamples_productcardSectionSectionSectionSection"]: {
|
|
3478
|
+
section?: ModelTypes["Shapeexamples_productcardSectionSectionSectionSectionSection"] | undefined | null,
|
|
3479
|
+
product_cta_url?: ModelTypes["Shapeexamples_productcardSectionSectionSectionSectionProduct_cta_url"] | undefined | null
|
|
3359
3480
|
};
|
|
3360
|
-
["
|
|
3361
|
-
|
|
3362
|
-
|
|
3481
|
+
["Shapeexamples_productcardSectionSectionSectionFormLabel"]: {
|
|
3482
|
+
html_for?: string | undefined | null,
|
|
3483
|
+
content?: string | undefined | null
|
|
3363
3484
|
};
|
|
3364
|
-
["
|
|
3365
|
-
|
|
3366
|
-
|
|
3367
|
-
|
|
3368
|
-
|
|
3485
|
+
["Shapeexamples_productcardSectionSectionSectionFormLabel_2"]: {
|
|
3486
|
+
html_for?: string | undefined | null,
|
|
3487
|
+
content?: string | undefined | null
|
|
3488
|
+
};
|
|
3489
|
+
["Shapeexamples_productcardSectionSectionSectionForm"]: {
|
|
3490
|
+
label?: ModelTypes["Shapeexamples_productcardSectionSectionSectionFormLabel"] | undefined | null,
|
|
3491
|
+
product_color?: string | undefined | null,
|
|
3492
|
+
label_2?: ModelTypes["Shapeexamples_productcardSectionSectionSectionFormLabel_2"] | undefined | null,
|
|
3493
|
+
product_quantity?: string | undefined | null
|
|
3494
|
+
};
|
|
3495
|
+
["Shapeexamples_productcardSectionSectionSection"]: {
|
|
3496
|
+
product_title?: ModelTypes["Shapeexamples_productcardSectionSectionSectionProduct_title"] | undefined | null,
|
|
3497
|
+
product_description?: ModelTypes["Shapeexamples_productcardSectionSectionSectionProduct_description"] | undefined | null,
|
|
3498
|
+
section?: ModelTypes["Shapeexamples_productcardSectionSectionSectionSection"] | undefined | null,
|
|
3499
|
+
form?: ModelTypes["Shapeexamples_productcardSectionSectionSectionForm"] | undefined | null
|
|
3369
3500
|
};
|
|
3370
|
-
["
|
|
3371
|
-
|
|
3372
|
-
|
|
3373
|
-
subheadline?: string | undefined | null,
|
|
3374
|
-
cta_label?: string | undefined | null,
|
|
3375
|
-
cta_href?: string | undefined | null
|
|
3501
|
+
["Shapeexamples_productcardSectionSection"]: {
|
|
3502
|
+
media?: ModelTypes["Shapeexamples_productcardSectionSectionMedia"] | undefined | null,
|
|
3503
|
+
section?: ModelTypes["Shapeexamples_productcardSectionSectionSection"] | undefined | null
|
|
3376
3504
|
};
|
|
3377
|
-
["
|
|
3378
|
-
|
|
3379
|
-
content?: ModelTypes["ShapenewshapeBackgroundContent"] | undefined | null,
|
|
3380
|
-
hero_image?: ModelTypes["ImageField"] | undefined | null
|
|
3505
|
+
["Shapeexamples_productcardSection"]: {
|
|
3506
|
+
section?: ModelTypes["Shapeexamples_productcardSectionSection"] | undefined | null
|
|
3381
3507
|
};
|
|
3382
|
-
["
|
|
3383
|
-
|
|
3508
|
+
["Shapeexamples_productcard"]: {
|
|
3509
|
+
section?: ModelTypes["Shapeexamples_productcardSection"] | undefined | null,
|
|
3384
3510
|
_id: string,
|
|
3385
3511
|
createdAt?: number | undefined | null,
|
|
3386
3512
|
updatedAt?: number | undefined | null
|
|
3387
3513
|
};
|
|
3388
|
-
["
|
|
3389
|
-
|
|
3390
|
-
description?: string | undefined | null
|
|
3514
|
+
["Shapeexamples_testimonialcardSectionFigureBlockquoteQuote"]: {
|
|
3515
|
+
description?: string | undefined | null
|
|
3391
3516
|
};
|
|
3392
|
-
["
|
|
3393
|
-
|
|
3394
|
-
unit?: string | undefined | null,
|
|
3395
|
-
price?: string | undefined | null
|
|
3517
|
+
["Shapeexamples_testimonialcardSectionFigureBlockquote"]: {
|
|
3518
|
+
quote?: ModelTypes["Shapeexamples_testimonialcardSectionFigureBlockquoteQuote"] | undefined | null
|
|
3396
3519
|
};
|
|
3397
|
-
["
|
|
3398
|
-
|
|
3399
|
-
|
|
3400
|
-
|
|
3520
|
+
["Shapeexamples_testimonialcardSectionFigureFigcaptionSectionAuthor"]: {
|
|
3521
|
+
content?: string | undefined | null
|
|
3522
|
+
};
|
|
3523
|
+
["Shapeexamples_testimonialcardSectionFigureFigcaptionSectionRole"]: {
|
|
3524
|
+
content?: string | undefined | null
|
|
3525
|
+
};
|
|
3526
|
+
["Shapeexamples_testimonialcardSectionFigureFigcaptionSection"]: {
|
|
3527
|
+
author?: ModelTypes["Shapeexamples_testimonialcardSectionFigureFigcaptionSectionAuthor"] | undefined | null,
|
|
3528
|
+
role?: ModelTypes["Shapeexamples_testimonialcardSectionFigureFigcaptionSectionRole"] | undefined | null
|
|
3401
3529
|
};
|
|
3402
|
-
["
|
|
3403
|
-
|
|
3404
|
-
|
|
3530
|
+
["Shapeexamples_testimonialcardSectionFigureFigcaptionLink"]: {
|
|
3531
|
+
cta?: string | undefined | null,
|
|
3532
|
+
href?: string | undefined | null
|
|
3533
|
+
};
|
|
3534
|
+
["Shapeexamples_testimonialcardSectionFigureFigcaption"]: {
|
|
3535
|
+
section?: ModelTypes["Shapeexamples_testimonialcardSectionFigureFigcaptionSection"] | undefined | null,
|
|
3536
|
+
link?: ModelTypes["Shapeexamples_testimonialcardSectionFigureFigcaptionLink"] | undefined | null
|
|
3537
|
+
};
|
|
3538
|
+
["Shapeexamples_testimonialcardSectionFigure"]: {
|
|
3539
|
+
image?: ModelTypes["ImageField"] | undefined | null,
|
|
3540
|
+
blockquote?: ModelTypes["Shapeexamples_testimonialcardSectionFigureBlockquote"] | undefined | null,
|
|
3541
|
+
figcaption?: ModelTypes["Shapeexamples_testimonialcardSectionFigureFigcaption"] | undefined | null
|
|
3405
3542
|
};
|
|
3406
|
-
["
|
|
3407
|
-
|
|
3408
|
-
pricing_table?: ModelTypes["Shapepricing_tablePricing_sectionPricing_table"] | undefined | null
|
|
3543
|
+
["Shapeexamples_testimonialcardSection"]: {
|
|
3544
|
+
figure?: ModelTypes["Shapeexamples_testimonialcardSectionFigure"] | undefined | null
|
|
3409
3545
|
};
|
|
3410
|
-
["
|
|
3411
|
-
|
|
3546
|
+
["Shapeexamples_testimonialcard"]: {
|
|
3547
|
+
section?: ModelTypes["Shapeexamples_testimonialcardSection"] | undefined | null,
|
|
3412
3548
|
_id: string,
|
|
3413
3549
|
createdAt?: number | undefined | null,
|
|
3414
3550
|
updatedAt?: number | undefined | null
|
|
3415
3551
|
};
|
|
3416
|
-
["
|
|
3417
|
-
|
|
3418
|
-
description?: string | undefined | null
|
|
3552
|
+
["ShapeexamplescontactformSectionSectionHeading"]: {
|
|
3553
|
+
subtitle?: string | undefined | null
|
|
3419
3554
|
};
|
|
3420
|
-
["
|
|
3421
|
-
|
|
3555
|
+
["ShapeexamplescontactformSectionSectionDescription"]: {
|
|
3556
|
+
description?: string | undefined | null
|
|
3422
3557
|
};
|
|
3423
|
-
["
|
|
3424
|
-
|
|
3425
|
-
|
|
3426
|
-
|
|
3427
|
-
feature_list?: ModelTypes["Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list"] | undefined | null,
|
|
3428
|
-
cta?: string | undefined | null
|
|
3558
|
+
["ShapeexamplescontactformSectionSectionForm"]: {
|
|
3559
|
+
name?: string | undefined | null,
|
|
3560
|
+
email?: string | undefined | null,
|
|
3561
|
+
message?: string | undefined | null
|
|
3429
3562
|
};
|
|
3430
|
-
["
|
|
3431
|
-
|
|
3563
|
+
["ShapeexamplescontactformSectionSectionButton"]: {
|
|
3564
|
+
button_text?: string | undefined | null
|
|
3432
3565
|
};
|
|
3433
|
-
["
|
|
3434
|
-
|
|
3435
|
-
|
|
3436
|
-
plan_description?: string | undefined | null,
|
|
3437
|
-
feature_list?: ModelTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list"] | undefined | null,
|
|
3438
|
-
cta?: string | undefined | null
|
|
3566
|
+
["ShapeexamplescontactformSectionSectionLink"]: {
|
|
3567
|
+
cta?: string | undefined | null,
|
|
3568
|
+
href?: string | undefined | null
|
|
3439
3569
|
};
|
|
3440
|
-
["
|
|
3441
|
-
|
|
3442
|
-
|
|
3570
|
+
["ShapeexamplescontactformSectionSection"]: {
|
|
3571
|
+
heading?: ModelTypes["ShapeexamplescontactformSectionSectionHeading"] | undefined | null,
|
|
3572
|
+
description?: ModelTypes["ShapeexamplescontactformSectionSectionDescription"] | undefined | null,
|
|
3573
|
+
form?: ModelTypes["ShapeexamplescontactformSectionSectionForm"] | undefined | null,
|
|
3574
|
+
button?: ModelTypes["ShapeexamplescontactformSectionSectionButton"] | undefined | null,
|
|
3575
|
+
link?: ModelTypes["ShapeexamplescontactformSectionSectionLink"] | undefined | null
|
|
3443
3576
|
};
|
|
3444
|
-
["
|
|
3445
|
-
|
|
3446
|
-
plans_grid?: ModelTypes["Shapepricingv1Pricing_sectionPlans_grid"] | undefined | null
|
|
3577
|
+
["ShapeexamplescontactformSection"]: {
|
|
3578
|
+
section?: ModelTypes["ShapeexamplescontactformSectionSection"] | undefined | null
|
|
3447
3579
|
};
|
|
3448
|
-
["
|
|
3449
|
-
|
|
3580
|
+
["Shapeexamplescontactform"]: {
|
|
3581
|
+
section?: ModelTypes["ShapeexamplescontactformSection"] | undefined | null,
|
|
3450
3582
|
_id: string,
|
|
3451
3583
|
createdAt?: number | undefined | null,
|
|
3452
3584
|
updatedAt?: number | undefined | null
|
|
3453
3585
|
};
|
|
3454
|
-
["
|
|
3455
|
-
|
|
3456
|
-
|
|
3457
|
-
email?: string | undefined | null
|
|
3586
|
+
["ShapeproductcardProductcardProductcard_innerMedia"]: {
|
|
3587
|
+
product_image?: ModelTypes["ImageField"] | undefined | null,
|
|
3588
|
+
badge?: string | undefined | null
|
|
3458
3589
|
};
|
|
3459
|
-
["
|
|
3460
|
-
|
|
3461
|
-
|
|
3590
|
+
["ShapeproductcardProductcardProductcard_innerContentPriceblockPricepart"]: {
|
|
3591
|
+
price_label?: string | undefined | null,
|
|
3592
|
+
product_price?: string | undefined | null
|
|
3462
3593
|
};
|
|
3463
|
-
["
|
|
3464
|
-
|
|
3594
|
+
["ShapeproductcardProductcardProductcard_innerContentPriceblockCta"]: {
|
|
3595
|
+
cta?: string | undefined | null,
|
|
3596
|
+
href?: string | undefined | null
|
|
3465
3597
|
};
|
|
3466
|
-
["
|
|
3467
|
-
|
|
3468
|
-
|
|
3598
|
+
["ShapeproductcardProductcardProductcard_innerContentPriceblock"]: {
|
|
3599
|
+
pricepart?: ModelTypes["ShapeproductcardProductcardProductcard_innerContentPriceblockPricepart"] | undefined | null,
|
|
3600
|
+
cta?: ModelTypes["ShapeproductcardProductcardProductcard_innerContentPriceblockCta"] | undefined | null
|
|
3469
3601
|
};
|
|
3470
|
-
["
|
|
3471
|
-
|
|
3472
|
-
|
|
3602
|
+
["ShapeproductcardProductcardProductcard_innerContentOptions"]: {
|
|
3603
|
+
product_color_label?: string | undefined | null,
|
|
3604
|
+
product_color?: string | undefined | null,
|
|
3605
|
+
product_quantity_label?: string | undefined | null,
|
|
3606
|
+
product_quantity?: string | undefined | null
|
|
3473
3607
|
};
|
|
3474
|
-
["
|
|
3475
|
-
|
|
3476
|
-
|
|
3608
|
+
["ShapeproductcardProductcardProductcard_innerContent"]: {
|
|
3609
|
+
product_title?: string | undefined | null,
|
|
3610
|
+
product_description?: string | undefined | null,
|
|
3611
|
+
priceblock?: ModelTypes["ShapeproductcardProductcardProductcard_innerContentPriceblock"] | undefined | null,
|
|
3612
|
+
options?: ModelTypes["ShapeproductcardProductcardProductcard_innerContentOptions"] | undefined | null
|
|
3477
3613
|
};
|
|
3478
|
-
["
|
|
3479
|
-
|
|
3480
|
-
|
|
3481
|
-
monthly_api_requests?: ModelTypes["Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests"] | undefined | null
|
|
3614
|
+
["ShapeproductcardProductcardProductcard_inner"]: {
|
|
3615
|
+
media?: ModelTypes["ShapeproductcardProductcardProductcard_innerMedia"] | undefined | null,
|
|
3616
|
+
content?: ModelTypes["ShapeproductcardProductcardProductcard_innerContent"] | undefined | null
|
|
3482
3617
|
};
|
|
3483
|
-
["
|
|
3484
|
-
|
|
3485
|
-
plan_status?: ModelTypes["Shapeprofile_infoProfile_sectionPlan_status"] | undefined | null,
|
|
3486
|
-
usage_section?: ModelTypes["Shapeprofile_infoProfile_sectionUsage_section"] | undefined | null
|
|
3618
|
+
["ShapeproductcardProductcard"]: {
|
|
3619
|
+
productcard_inner?: ModelTypes["ShapeproductcardProductcardProductcard_inner"] | undefined | null
|
|
3487
3620
|
};
|
|
3488
|
-
["
|
|
3489
|
-
|
|
3621
|
+
["Shapeproductcard"]: {
|
|
3622
|
+
productcard?: ModelTypes["ShapeproductcardProductcard"] | undefined | null,
|
|
3490
3623
|
_id: string,
|
|
3491
3624
|
createdAt?: number | undefined | null,
|
|
3492
3625
|
updatedAt?: number | undefined | null
|
|
3493
3626
|
};
|
|
3494
|
-
["
|
|
3495
|
-
title?: string | undefined | null
|
|
3496
|
-
description?: string | undefined | null
|
|
3627
|
+
["ShapereactcomponentSectionSectionHeading"]: {
|
|
3628
|
+
title?: string | undefined | null
|
|
3497
3629
|
};
|
|
3498
|
-
["
|
|
3499
|
-
|
|
3500
|
-
title?: string | undefined | null,
|
|
3501
|
-
text?: string | undefined | null,
|
|
3502
|
-
cta?: string | undefined | null
|
|
3630
|
+
["ShapereactcomponentSectionSectionDescription"]: {
|
|
3631
|
+
description?: string | undefined | null
|
|
3503
3632
|
};
|
|
3504
|
-
["
|
|
3505
|
-
|
|
3633
|
+
["ShapereactcomponentSectionSectionMedia"]: {
|
|
3634
|
+
image?: ModelTypes["ImageField"] | undefined | null
|
|
3506
3635
|
};
|
|
3507
|
-
["
|
|
3508
|
-
|
|
3509
|
-
|
|
3636
|
+
["ShapereactcomponentSectionSectionLink"]: {
|
|
3637
|
+
cta?: string | undefined | null,
|
|
3638
|
+
href?: string | undefined | null
|
|
3510
3639
|
};
|
|
3511
|
-
["
|
|
3512
|
-
|
|
3513
|
-
|
|
3514
|
-
createdAt?: number | undefined | null,
|
|
3515
|
-
updatedAt?: number | undefined | null
|
|
3640
|
+
["ShapereactcomponentSectionSectionForm"]: {
|
|
3641
|
+
name?: string | undefined | null,
|
|
3642
|
+
description?: string | undefined | null
|
|
3516
3643
|
};
|
|
3517
|
-
["
|
|
3518
|
-
|
|
3519
|
-
subtitle?: string | undefined | null,
|
|
3520
|
-
period?: string | undefined | null,
|
|
3521
|
-
tokens_consumed?: number | undefined | null
|
|
3644
|
+
["ShapereactcomponentSectionSectionButton"]: {
|
|
3645
|
+
button_text?: string | undefined | null
|
|
3522
3646
|
};
|
|
3523
|
-
["
|
|
3524
|
-
|
|
3647
|
+
["ShapereactcomponentSectionSection"]: {
|
|
3648
|
+
heading?: ModelTypes["ShapereactcomponentSectionSectionHeading"] | undefined | null,
|
|
3649
|
+
description?: ModelTypes["ShapereactcomponentSectionSectionDescription"] | undefined | null,
|
|
3650
|
+
media?: ModelTypes["ShapereactcomponentSectionSectionMedia"] | undefined | null,
|
|
3651
|
+
link?: ModelTypes["ShapereactcomponentSectionSectionLink"] | undefined | null,
|
|
3652
|
+
form?: ModelTypes["ShapereactcomponentSectionSectionForm"] | undefined | null,
|
|
3653
|
+
button?: ModelTypes["ShapereactcomponentSectionSectionButton"] | undefined | null
|
|
3654
|
+
};
|
|
3655
|
+
["ShapereactcomponentSection"]: {
|
|
3656
|
+
section?: ModelTypes["ShapereactcomponentSectionSection"] | undefined | null
|
|
3657
|
+
};
|
|
3658
|
+
["Shapereactcomponent"]: {
|
|
3659
|
+
section?: ModelTypes["ShapereactcomponentSection"] | undefined | null,
|
|
3525
3660
|
_id: string,
|
|
3526
3661
|
createdAt?: number | undefined | null,
|
|
3527
3662
|
updatedAt?: number | undefined | null
|
|
3528
3663
|
};
|
|
3529
3664
|
["RootParamsInput"]: {
|
|
3530
|
-
_version?: string | undefined | null
|
|
3531
|
-
locale?: string | undefined | null
|
|
3665
|
+
_version?: string | undefined | null
|
|
3532
3666
|
};
|
|
3533
3667
|
["RootParamsEnum"]:RootParamsEnum;
|
|
3534
|
-
["docsSortInput"]: {
|
|
3535
|
-
slug?: ModelTypes["Sort"] | undefined | null,
|
|
3536
|
-
createdAt?: ModelTypes["Sort"] | undefined | null,
|
|
3537
|
-
updatedAt?: ModelTypes["Sort"] | undefined | null
|
|
3538
|
-
};
|
|
3539
|
-
["docsFilterInput"]: {
|
|
3540
|
-
slug?: ModelTypes["FilterInputString"] | undefined | null
|
|
3541
|
-
};
|
|
3542
3668
|
["schema"]: {
|
|
3543
3669
|
query?: ModelTypes["Query"] | undefined | null,
|
|
3544
3670
|
mutation?: ModelTypes["Mutation"] | undefined | null
|
|
@@ -3807,6 +3933,12 @@ export type GraphQLTypes = {
|
|
|
3807
3933
|
__typename: "FormDisplayField",
|
|
3808
3934
|
label?: string | undefined | null,
|
|
3809
3935
|
path?: string | undefined | null
|
|
3936
|
+
};
|
|
3937
|
+
["GenerateHusarShapeImplementorInput"]: {
|
|
3938
|
+
prompt: string,
|
|
3939
|
+
existingFileContent?: string | undefined | null,
|
|
3940
|
+
backendGraphQlContent?: string | undefined | null,
|
|
3941
|
+
includeShapes?: Array<string> | undefined | null
|
|
3810
3942
|
};
|
|
3811
3943
|
/** This enum is defined externally and injected via federation */
|
|
3812
3944
|
["CMSType"]: CMSType;
|
|
@@ -3820,645 +3952,695 @@ export type GraphQLTypes = {
|
|
|
3820
3952
|
listShapes?: Array<GraphQLTypes["Shape"]> | undefined | null,
|
|
3821
3953
|
tailwind?: GraphQLTypes["TailwindConfiguration"] | undefined | null,
|
|
3822
3954
|
listForms?: Array<GraphQLTypes["Form"]> | undefined | null,
|
|
3823
|
-
|
|
3824
|
-
|
|
3825
|
-
|
|
3826
|
-
|
|
3827
|
-
|
|
3828
|
-
|
|
3829
|
-
|
|
3830
|
-
|
|
3831
|
-
|
|
3832
|
-
|
|
3833
|
-
|
|
3834
|
-
|
|
3835
|
-
|
|
3836
|
-
|
|
3837
|
-
|
|
3838
|
-
|
|
3839
|
-
|
|
3840
|
-
|
|
3841
|
-
|
|
3842
|
-
|
|
3843
|
-
|
|
3844
|
-
|
|
3845
|
-
|
|
3846
|
-
|
|
3847
|
-
|
|
3848
|
-
|
|
3849
|
-
|
|
3850
|
-
|
|
3851
|
-
|
|
3852
|
-
|
|
3853
|
-
|
|
3854
|
-
|
|
3855
|
-
|
|
3856
|
-
|
|
3857
|
-
|
|
3858
|
-
|
|
3859
|
-
|
|
3860
|
-
|
|
3861
|
-
|
|
3862
|
-
|
|
3863
|
-
|
|
3864
|
-
|
|
3865
|
-
|
|
3866
|
-
|
|
3867
|
-
modelShapenewshape: GraphQLTypes["ModelNavigationCompiled"],
|
|
3868
|
-
previewFieldsShapenewshape: GraphQLTypes["ModelNavigationCompiled"],
|
|
3869
|
-
oneShapenewshape?: GraphQLTypes["Shapenewshape"] | undefined | null,
|
|
3870
|
-
fieldSetShapepricing_table: string,
|
|
3871
|
-
modelShapepricing_table: GraphQLTypes["ModelNavigationCompiled"],
|
|
3872
|
-
previewFieldsShapepricing_table: GraphQLTypes["ModelNavigationCompiled"],
|
|
3873
|
-
oneShapepricing_table?: GraphQLTypes["Shapepricing_table"] | undefined | null,
|
|
3874
|
-
fieldSetShapepricingv1: string,
|
|
3875
|
-
modelShapepricingv1: GraphQLTypes["ModelNavigationCompiled"],
|
|
3876
|
-
previewFieldsShapepricingv1: GraphQLTypes["ModelNavigationCompiled"],
|
|
3877
|
-
oneShapepricingv1?: GraphQLTypes["Shapepricingv1"] | undefined | null,
|
|
3878
|
-
fieldSetShapeprofile_info: string,
|
|
3879
|
-
modelShapeprofile_info: GraphQLTypes["ModelNavigationCompiled"],
|
|
3880
|
-
previewFieldsShapeprofile_info: GraphQLTypes["ModelNavigationCompiled"],
|
|
3881
|
-
oneShapeprofile_info?: GraphQLTypes["Shapeprofile_info"] | undefined | null,
|
|
3882
|
-
fieldSetShapesupport: string,
|
|
3883
|
-
modelShapesupport: GraphQLTypes["ModelNavigationCompiled"],
|
|
3884
|
-
previewFieldsShapesupport: GraphQLTypes["ModelNavigationCompiled"],
|
|
3885
|
-
oneShapesupport?: GraphQLTypes["Shapesupport"] | undefined | null,
|
|
3886
|
-
fieldSetShapeusage: string,
|
|
3887
|
-
modelShapeusage: GraphQLTypes["ModelNavigationCompiled"],
|
|
3888
|
-
previewFieldsShapeusage: GraphQLTypes["ModelNavigationCompiled"],
|
|
3889
|
-
oneShapeusage?: GraphQLTypes["Shapeusage"] | undefined | null,
|
|
3890
|
-
variantsViewaccount?: Array<GraphQLTypes["Viewaccount"]> | undefined | null,
|
|
3891
|
-
fieldSetViewaccount: string,
|
|
3892
|
-
modelViewaccount: GraphQLTypes["ModelNavigationCompiled"],
|
|
3893
|
-
previewFieldsViewaccount: GraphQLTypes["ModelNavigationCompiled"],
|
|
3894
|
-
oneViewaccount?: GraphQLTypes["Viewaccount"] | undefined | null,
|
|
3895
|
-
oneAsScalarViewaccount?: GraphQLTypes["ViewAsScalar"] | undefined | null,
|
|
3896
|
-
variantsViewfeatures?: Array<GraphQLTypes["Viewfeatures"]> | undefined | null,
|
|
3897
|
-
fieldSetViewfeatures: string,
|
|
3898
|
-
modelViewfeatures: GraphQLTypes["ModelNavigationCompiled"],
|
|
3899
|
-
previewFieldsViewfeatures: GraphQLTypes["ModelNavigationCompiled"],
|
|
3900
|
-
oneViewfeatures?: GraphQLTypes["Viewfeatures"] | undefined | null,
|
|
3901
|
-
oneAsScalarViewfeatures?: GraphQLTypes["ViewAsScalar"] | undefined | null,
|
|
3902
|
-
variantsViewhomepage?: Array<GraphQLTypes["Viewhomepage"]> | undefined | null,
|
|
3903
|
-
fieldSetViewhomepage: string,
|
|
3904
|
-
modelViewhomepage: GraphQLTypes["ModelNavigationCompiled"],
|
|
3905
|
-
previewFieldsViewhomepage: GraphQLTypes["ModelNavigationCompiled"],
|
|
3906
|
-
oneViewhomepage?: GraphQLTypes["Viewhomepage"] | undefined | null,
|
|
3907
|
-
oneAsScalarViewhomepage?: GraphQLTypes["ViewAsScalar"] | undefined | null,
|
|
3908
|
-
variantsViewhowitworks?: Array<GraphQLTypes["Viewhowitworks"]> | undefined | null,
|
|
3909
|
-
fieldSetViewhowitworks: string,
|
|
3910
|
-
modelViewhowitworks: GraphQLTypes["ModelNavigationCompiled"],
|
|
3911
|
-
previewFieldsViewhowitworks: GraphQLTypes["ModelNavigationCompiled"],
|
|
3912
|
-
oneViewhowitworks?: GraphQLTypes["Viewhowitworks"] | undefined | null,
|
|
3913
|
-
oneAsScalarViewhowitworks?: GraphQLTypes["ViewAsScalar"] | undefined | null,
|
|
3914
|
-
variantsViewpricing?: Array<GraphQLTypes["Viewpricing"]> | undefined | null,
|
|
3915
|
-
fieldSetViewpricing: string,
|
|
3916
|
-
modelViewpricing: GraphQLTypes["ModelNavigationCompiled"],
|
|
3917
|
-
previewFieldsViewpricing: GraphQLTypes["ModelNavigationCompiled"],
|
|
3918
|
-
oneViewpricing?: GraphQLTypes["Viewpricing"] | undefined | null,
|
|
3919
|
-
oneAsScalarViewpricing?: GraphQLTypes["ViewAsScalar"] | undefined | null
|
|
3955
|
+
fieldSetShapeexamples_contactform: string,
|
|
3956
|
+
modelShapeexamples_contactform: GraphQLTypes["ModelNavigationCompiled"],
|
|
3957
|
+
previewFieldsShapeexamples_contactform: GraphQLTypes["ModelNavigationCompiled"],
|
|
3958
|
+
oneShapeexamples_contactform?: GraphQLTypes["Shapeexamples_contactform"] | undefined | null,
|
|
3959
|
+
fieldSetShapeexamples_featuregrid: string,
|
|
3960
|
+
modelShapeexamples_featuregrid: GraphQLTypes["ModelNavigationCompiled"],
|
|
3961
|
+
previewFieldsShapeexamples_featuregrid: GraphQLTypes["ModelNavigationCompiled"],
|
|
3962
|
+
oneShapeexamples_featuregrid?: GraphQLTypes["Shapeexamples_featuregrid"] | undefined | null,
|
|
3963
|
+
fieldSetShapeexamples_herosection: string,
|
|
3964
|
+
modelShapeexamples_herosection: GraphQLTypes["ModelNavigationCompiled"],
|
|
3965
|
+
previewFieldsShapeexamples_herosection: GraphQLTypes["ModelNavigationCompiled"],
|
|
3966
|
+
oneShapeexamples_herosection?: GraphQLTypes["Shapeexamples_herosection"] | undefined | null,
|
|
3967
|
+
fieldSetShapeexamples_newslettersignup: string,
|
|
3968
|
+
modelShapeexamples_newslettersignup: GraphQLTypes["ModelNavigationCompiled"],
|
|
3969
|
+
previewFieldsShapeexamples_newslettersignup: GraphQLTypes["ModelNavigationCompiled"],
|
|
3970
|
+
oneShapeexamples_newslettersignup?: GraphQLTypes["Shapeexamples_newslettersignup"] | undefined | null,
|
|
3971
|
+
fieldSetShapeexamples_pricingplans: string,
|
|
3972
|
+
modelShapeexamples_pricingplans: GraphQLTypes["ModelNavigationCompiled"],
|
|
3973
|
+
previewFieldsShapeexamples_pricingplans: GraphQLTypes["ModelNavigationCompiled"],
|
|
3974
|
+
oneShapeexamples_pricingplans?: GraphQLTypes["Shapeexamples_pricingplans"] | undefined | null,
|
|
3975
|
+
fieldSetShapeexamples_pricingplans_1: string,
|
|
3976
|
+
modelShapeexamples_pricingplans_1: GraphQLTypes["ModelNavigationCompiled"],
|
|
3977
|
+
previewFieldsShapeexamples_pricingplans_1: GraphQLTypes["ModelNavigationCompiled"],
|
|
3978
|
+
oneShapeexamples_pricingplans_1?: GraphQLTypes["Shapeexamples_pricingplans_1"] | undefined | null,
|
|
3979
|
+
fieldSetShapeexamples_productcard: string,
|
|
3980
|
+
modelShapeexamples_productcard: GraphQLTypes["ModelNavigationCompiled"],
|
|
3981
|
+
previewFieldsShapeexamples_productcard: GraphQLTypes["ModelNavigationCompiled"],
|
|
3982
|
+
oneShapeexamples_productcard?: GraphQLTypes["Shapeexamples_productcard"] | undefined | null,
|
|
3983
|
+
fieldSetShapeexamples_testimonialcard: string,
|
|
3984
|
+
modelShapeexamples_testimonialcard: GraphQLTypes["ModelNavigationCompiled"],
|
|
3985
|
+
previewFieldsShapeexamples_testimonialcard: GraphQLTypes["ModelNavigationCompiled"],
|
|
3986
|
+
oneShapeexamples_testimonialcard?: GraphQLTypes["Shapeexamples_testimonialcard"] | undefined | null,
|
|
3987
|
+
fieldSetShapeexamplescontactform: string,
|
|
3988
|
+
modelShapeexamplescontactform: GraphQLTypes["ModelNavigationCompiled"],
|
|
3989
|
+
previewFieldsShapeexamplescontactform: GraphQLTypes["ModelNavigationCompiled"],
|
|
3990
|
+
oneShapeexamplescontactform?: GraphQLTypes["Shapeexamplescontactform"] | undefined | null,
|
|
3991
|
+
fieldSetShapeproductcard: string,
|
|
3992
|
+
modelShapeproductcard: GraphQLTypes["ModelNavigationCompiled"],
|
|
3993
|
+
previewFieldsShapeproductcard: GraphQLTypes["ModelNavigationCompiled"],
|
|
3994
|
+
oneShapeproductcard?: GraphQLTypes["Shapeproductcard"] | undefined | null,
|
|
3995
|
+
fieldSetShapereactcomponent: string,
|
|
3996
|
+
modelShapereactcomponent: GraphQLTypes["ModelNavigationCompiled"],
|
|
3997
|
+
previewFieldsShapereactcomponent: GraphQLTypes["ModelNavigationCompiled"],
|
|
3998
|
+
oneShapereactcomponent?: GraphQLTypes["Shapereactcomponent"] | undefined | null
|
|
3920
3999
|
};
|
|
3921
4000
|
["RootParamsType"]: {
|
|
3922
4001
|
__typename: "RootParamsType",
|
|
3923
|
-
_version?: string | undefined | null
|
|
3924
|
-
locale?: string | undefined | null
|
|
4002
|
+
_version?: string | undefined | null
|
|
3925
4003
|
};
|
|
3926
|
-
["ModelEnum"]: ModelEnum;
|
|
3927
|
-
["ViewEnum"]: ViewEnum;
|
|
3928
4004
|
["ShapeEnum"]: ShapeEnum;
|
|
3929
|
-
["
|
|
3930
|
-
__typename: "
|
|
3931
|
-
|
|
3932
|
-
pageInfo: GraphQLTypes["PageInfo"]
|
|
3933
|
-
};
|
|
3934
|
-
["docs"]: {
|
|
3935
|
-
__typename: "docs",
|
|
3936
|
-
_version?: GraphQLTypes["VersionField"] | undefined | null,
|
|
3937
|
-
title?: string | undefined | null,
|
|
3938
|
-
seotitle?: string | undefined | null,
|
|
3939
|
-
metadesc?: string | undefined | null,
|
|
3940
|
-
sortid?: number | undefined | null,
|
|
3941
|
-
main_category?: string | undefined | null,
|
|
3942
|
-
content?: string | undefined | null,
|
|
3943
|
-
video?: GraphQLTypes["VideoField"] | undefined | null,
|
|
3944
|
-
locale?: string | undefined | null,
|
|
3945
|
-
slug?: string | undefined | null,
|
|
3946
|
-
_id: string,
|
|
3947
|
-
createdAt?: number | undefined | null,
|
|
3948
|
-
updatedAt?: number | undefined | null,
|
|
3949
|
-
draft_version?: boolean | undefined | null,
|
|
3950
|
-
json_ld?: string | undefined | null
|
|
3951
|
-
};
|
|
3952
|
-
["ViewaccountMain"]: {
|
|
3953
|
-
__typename: "ViewaccountMain",
|
|
3954
|
-
profile?: GraphQLTypes["Shapeprofile_info"] | undefined | null,
|
|
3955
|
-
projects?: GraphQLTypes["Shapelista_projektow"] | undefined | null
|
|
3956
|
-
};
|
|
3957
|
-
["Viewaccount"]: {
|
|
3958
|
-
__typename: "Viewaccount",
|
|
3959
|
-
_version?: GraphQLTypes["VersionField"] | undefined | null,
|
|
3960
|
-
main?: GraphQLTypes["ViewaccountMain"] | undefined | null,
|
|
3961
|
-
locale?: string | undefined | null,
|
|
3962
|
-
slug?: string | undefined | null,
|
|
3963
|
-
_id: string,
|
|
3964
|
-
createdAt?: number | undefined | null,
|
|
3965
|
-
updatedAt?: number | undefined | null,
|
|
3966
|
-
draft_version?: boolean | undefined | null,
|
|
3967
|
-
json_ld?: string | undefined | null
|
|
3968
|
-
};
|
|
3969
|
-
["ViewfeaturesMain"]: {
|
|
3970
|
-
__typename: "ViewfeaturesMain",
|
|
3971
|
-
auto_translation?: GraphQLTypes["Shapefeaturepresentation"] | undefined | null,
|
|
3972
|
-
ai_component?: GraphQLTypes["Shapefeaturepresentation"] | undefined | null
|
|
3973
|
-
};
|
|
3974
|
-
["Viewfeatures"]: {
|
|
3975
|
-
__typename: "Viewfeatures",
|
|
3976
|
-
_version?: GraphQLTypes["VersionField"] | undefined | null,
|
|
3977
|
-
main?: GraphQLTypes["ViewfeaturesMain"] | undefined | null,
|
|
3978
|
-
locale?: string | undefined | null,
|
|
3979
|
-
slug?: string | undefined | null,
|
|
3980
|
-
_id: string,
|
|
3981
|
-
createdAt?: number | undefined | null,
|
|
3982
|
-
updatedAt?: number | undefined | null,
|
|
3983
|
-
draft_version?: boolean | undefined | null,
|
|
3984
|
-
json_ld?: string | undefined | null
|
|
3985
|
-
};
|
|
3986
|
-
["Viewhomepage"]: {
|
|
3987
|
-
__typename: "Viewhomepage",
|
|
3988
|
-
_version?: GraphQLTypes["VersionField"] | undefined | null,
|
|
3989
|
-
nav?: GraphQLTypes["Shapenav"] | undefined | null,
|
|
3990
|
-
main?: GraphQLTypes["Shapehero"] | undefined | null,
|
|
3991
|
-
hero?: GraphQLTypes["Shapeherox"] | undefined | null,
|
|
3992
|
-
pricing?: GraphQLTypes["Shapepricingv1"] | undefined | null,
|
|
3993
|
-
footer?: GraphQLTypes["Shapefoot"] | undefined | null,
|
|
3994
|
-
locale?: string | undefined | null,
|
|
3995
|
-
slug?: string | undefined | null,
|
|
3996
|
-
_id: string,
|
|
3997
|
-
createdAt?: number | undefined | null,
|
|
3998
|
-
updatedAt?: number | undefined | null,
|
|
3999
|
-
draft_version?: boolean | undefined | null,
|
|
4000
|
-
json_ld?: string | undefined | null
|
|
4005
|
+
["Shapeexamples_contactformSectionSectionHeading"]: {
|
|
4006
|
+
__typename: "Shapeexamples_contactformSectionSectionHeading",
|
|
4007
|
+
subtitle?: string | undefined | null
|
|
4001
4008
|
};
|
|
4002
|
-
["
|
|
4003
|
-
__typename: "
|
|
4004
|
-
|
|
4005
|
-
description?: string | undefined | null,
|
|
4006
|
-
image?: GraphQLTypes["ImageField"] | undefined | null
|
|
4009
|
+
["Shapeexamples_contactformSectionSectionDescription"]: {
|
|
4010
|
+
__typename: "Shapeexamples_contactformSectionSectionDescription",
|
|
4011
|
+
description?: string | undefined | null
|
|
4007
4012
|
};
|
|
4008
|
-
["
|
|
4009
|
-
__typename: "
|
|
4010
|
-
|
|
4011
|
-
|
|
4012
|
-
|
|
4013
|
-
|
|
4014
|
-
|
|
4015
|
-
|
|
4016
|
-
|
|
4017
|
-
|
|
4018
|
-
|
|
4019
|
-
|
|
4020
|
-
|
|
4021
|
-
|
|
4022
|
-
|
|
4023
|
-
|
|
4024
|
-
|
|
4025
|
-
|
|
4026
|
-
|
|
4027
|
-
|
|
4028
|
-
|
|
4013
|
+
["Shapeexamples_contactformSectionSectionForm"]: {
|
|
4014
|
+
__typename: "Shapeexamples_contactformSectionSectionForm",
|
|
4015
|
+
name?: string | undefined | null,
|
|
4016
|
+
email?: string | undefined | null,
|
|
4017
|
+
message?: string | undefined | null
|
|
4018
|
+
};
|
|
4019
|
+
["Shapeexamples_contactformSectionSectionButton"]: {
|
|
4020
|
+
__typename: "Shapeexamples_contactformSectionSectionButton",
|
|
4021
|
+
button_text?: string | undefined | null
|
|
4022
|
+
};
|
|
4023
|
+
["Shapeexamples_contactformSectionSectionLink"]: {
|
|
4024
|
+
__typename: "Shapeexamples_contactformSectionSectionLink",
|
|
4025
|
+
cta?: string | undefined | null,
|
|
4026
|
+
href?: string | undefined | null
|
|
4027
|
+
};
|
|
4028
|
+
["Shapeexamples_contactformSectionSection"]: {
|
|
4029
|
+
__typename: "Shapeexamples_contactformSectionSection",
|
|
4030
|
+
heading?: GraphQLTypes["Shapeexamples_contactformSectionSectionHeading"] | undefined | null,
|
|
4031
|
+
description?: GraphQLTypes["Shapeexamples_contactformSectionSectionDescription"] | undefined | null,
|
|
4032
|
+
form?: GraphQLTypes["Shapeexamples_contactformSectionSectionForm"] | undefined | null,
|
|
4033
|
+
button?: GraphQLTypes["Shapeexamples_contactformSectionSectionButton"] | undefined | null,
|
|
4034
|
+
link?: GraphQLTypes["Shapeexamples_contactformSectionSectionLink"] | undefined | null
|
|
4035
|
+
};
|
|
4036
|
+
["Shapeexamples_contactformSection"]: {
|
|
4037
|
+
__typename: "Shapeexamples_contactformSection",
|
|
4038
|
+
section?: GraphQLTypes["Shapeexamples_contactformSectionSection"] | undefined | null
|
|
4039
|
+
};
|
|
4040
|
+
["Shapeexamples_contactform"]: {
|
|
4041
|
+
__typename: "Shapeexamples_contactform",
|
|
4042
|
+
section?: GraphQLTypes["Shapeexamples_contactformSection"] | undefined | null,
|
|
4029
4043
|
_id: string,
|
|
4030
4044
|
createdAt?: number | undefined | null,
|
|
4031
|
-
updatedAt?: number | undefined | null
|
|
4032
|
-
draft_version?: boolean | undefined | null,
|
|
4033
|
-
json_ld?: string | undefined | null
|
|
4045
|
+
updatedAt?: number | undefined | null
|
|
4034
4046
|
};
|
|
4035
|
-
["
|
|
4036
|
-
__typename: "
|
|
4037
|
-
|
|
4038
|
-
link?: string | undefined | null
|
|
4047
|
+
["Shapeexamples_featuregridSectionSectionHeaderFeatures_title"]: {
|
|
4048
|
+
__typename: "Shapeexamples_featuregridSectionSectionHeaderFeatures_title",
|
|
4049
|
+
subtitle?: string | undefined | null
|
|
4039
4050
|
};
|
|
4040
|
-
["
|
|
4041
|
-
__typename: "
|
|
4042
|
-
|
|
4051
|
+
["Shapeexamples_featuregridSectionSectionHeaderFeatures_description"]: {
|
|
4052
|
+
__typename: "Shapeexamples_featuregridSectionSectionHeaderFeatures_description",
|
|
4053
|
+
description?: string | undefined | null
|
|
4043
4054
|
};
|
|
4044
|
-
["
|
|
4045
|
-
__typename: "
|
|
4046
|
-
|
|
4047
|
-
|
|
4055
|
+
["Shapeexamples_featuregridSectionSectionHeader"]: {
|
|
4056
|
+
__typename: "Shapeexamples_featuregridSectionSectionHeader",
|
|
4057
|
+
features_title?: GraphQLTypes["Shapeexamples_featuregridSectionSectionHeaderFeatures_title"] | undefined | null,
|
|
4058
|
+
features_description?: GraphQLTypes["Shapeexamples_featuregridSectionSectionHeaderFeatures_description"] | undefined | null
|
|
4048
4059
|
};
|
|
4049
|
-
["
|
|
4050
|
-
__typename: "
|
|
4051
|
-
|
|
4052
|
-
|
|
4060
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3MediaFeature_title_1"]: {
|
|
4061
|
+
__typename: "Shapeexamples_featuregridSectionSectionMd_gridcols3MediaFeature_title_1",
|
|
4062
|
+
h3?: string | undefined | null
|
|
4063
|
+
};
|
|
4064
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3MediaFeature_description_1"]: {
|
|
4065
|
+
__typename: "Shapeexamples_featuregridSectionSectionMd_gridcols3MediaFeature_description_1",
|
|
4066
|
+
description?: string | undefined | null
|
|
4067
|
+
};
|
|
4068
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3Media"]: {
|
|
4069
|
+
__typename: "Shapeexamples_featuregridSectionSectionMd_gridcols3Media",
|
|
4070
|
+
image?: GraphQLTypes["ImageField"] | undefined | null,
|
|
4071
|
+
feature_title_1?: GraphQLTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3MediaFeature_title_1"] | undefined | null,
|
|
4072
|
+
feature_description_1?: GraphQLTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3MediaFeature_description_1"] | undefined | null
|
|
4073
|
+
};
|
|
4074
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_2Feature_title_2"]: {
|
|
4075
|
+
__typename: "Shapeexamples_featuregridSectionSectionMd_gridcols3Media_2Feature_title_2",
|
|
4076
|
+
h3?: string | undefined | null
|
|
4077
|
+
};
|
|
4078
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_2Feature_description_2"]: {
|
|
4079
|
+
__typename: "Shapeexamples_featuregridSectionSectionMd_gridcols3Media_2Feature_description_2",
|
|
4080
|
+
description?: string | undefined | null
|
|
4081
|
+
};
|
|
4082
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_2"]: {
|
|
4083
|
+
__typename: "Shapeexamples_featuregridSectionSectionMd_gridcols3Media_2",
|
|
4084
|
+
image?: GraphQLTypes["ImageField"] | undefined | null,
|
|
4085
|
+
feature_title_2?: GraphQLTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_2Feature_title_2"] | undefined | null,
|
|
4086
|
+
feature_description_2?: GraphQLTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_2Feature_description_2"] | undefined | null
|
|
4053
4087
|
};
|
|
4054
|
-
["
|
|
4055
|
-
__typename: "
|
|
4056
|
-
|
|
4088
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_3Feature_title_3"]: {
|
|
4089
|
+
__typename: "Shapeexamples_featuregridSectionSectionMd_gridcols3Media_3Feature_title_3",
|
|
4090
|
+
h3?: string | undefined | null
|
|
4057
4091
|
};
|
|
4058
|
-
["
|
|
4059
|
-
__typename: "
|
|
4060
|
-
|
|
4061
|
-
bottom_menu?: GraphQLTypes["Shapecloud_sidebarSidebarBottom_menu"] | undefined | null
|
|
4092
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_3Feature_description_3"]: {
|
|
4093
|
+
__typename: "Shapeexamples_featuregridSectionSectionMd_gridcols3Media_3Feature_description_3",
|
|
4094
|
+
description?: string | undefined | null
|
|
4062
4095
|
};
|
|
4063
|
-
["
|
|
4064
|
-
__typename: "
|
|
4065
|
-
|
|
4096
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_3"]: {
|
|
4097
|
+
__typename: "Shapeexamples_featuregridSectionSectionMd_gridcols3Media_3",
|
|
4098
|
+
image?: GraphQLTypes["ImageField"] | undefined | null,
|
|
4099
|
+
feature_title_3?: GraphQLTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_3Feature_title_3"] | undefined | null,
|
|
4100
|
+
feature_description_3?: GraphQLTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_3Feature_description_3"] | undefined | null
|
|
4101
|
+
};
|
|
4102
|
+
["Shapeexamples_featuregridSectionSectionMd_gridcols3"]: {
|
|
4103
|
+
__typename: "Shapeexamples_featuregridSectionSectionMd_gridcols3",
|
|
4104
|
+
media?: GraphQLTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3Media"] | undefined | null,
|
|
4105
|
+
media_2?: GraphQLTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_2"] | undefined | null,
|
|
4106
|
+
media_3?: GraphQLTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3Media_3"] | undefined | null
|
|
4107
|
+
};
|
|
4108
|
+
["Shapeexamples_featuregridSectionSection"]: {
|
|
4109
|
+
__typename: "Shapeexamples_featuregridSectionSection",
|
|
4110
|
+
header?: GraphQLTypes["Shapeexamples_featuregridSectionSectionHeader"] | undefined | null,
|
|
4111
|
+
md_gridcols3?: GraphQLTypes["Shapeexamples_featuregridSectionSectionMd_gridcols3"] | undefined | null
|
|
4112
|
+
};
|
|
4113
|
+
["Shapeexamples_featuregridSection"]: {
|
|
4114
|
+
__typename: "Shapeexamples_featuregridSection",
|
|
4115
|
+
section?: GraphQLTypes["Shapeexamples_featuregridSectionSection"] | undefined | null
|
|
4116
|
+
};
|
|
4117
|
+
["Shapeexamples_featuregrid"]: {
|
|
4118
|
+
__typename: "Shapeexamples_featuregrid",
|
|
4119
|
+
section?: GraphQLTypes["Shapeexamples_featuregridSection"] | undefined | null,
|
|
4066
4120
|
_id: string,
|
|
4067
4121
|
createdAt?: number | undefined | null,
|
|
4068
4122
|
updatedAt?: number | undefined | null
|
|
4069
4123
|
};
|
|
4070
|
-
["
|
|
4071
|
-
__typename: "
|
|
4072
|
-
|
|
4124
|
+
["Shapeexamples_herosectionSectionSectionHeading"]: {
|
|
4125
|
+
__typename: "Shapeexamples_herosectionSectionSectionHeading",
|
|
4126
|
+
title?: string | undefined | null
|
|
4127
|
+
};
|
|
4128
|
+
["Shapeexamples_herosectionSectionSectionDescription"]: {
|
|
4129
|
+
__typename: "Shapeexamples_herosectionSectionSectionDescription",
|
|
4130
|
+
description?: string | undefined | null
|
|
4073
4131
|
};
|
|
4074
|
-
["
|
|
4075
|
-
__typename: "
|
|
4076
|
-
|
|
4077
|
-
|
|
4132
|
+
["Shapeexamples_herosectionSectionSectionSectionLink"]: {
|
|
4133
|
+
__typename: "Shapeexamples_herosectionSectionSectionSectionLink",
|
|
4134
|
+
cta?: string | undefined | null,
|
|
4135
|
+
href?: string | undefined | null
|
|
4136
|
+
};
|
|
4137
|
+
["Shapeexamples_herosectionSectionSectionSectionLink_2"]: {
|
|
4138
|
+
__typename: "Shapeexamples_herosectionSectionSectionSectionLink_2",
|
|
4139
|
+
cta?: string | undefined | null,
|
|
4140
|
+
href?: string | undefined | null
|
|
4141
|
+
};
|
|
4142
|
+
["Shapeexamples_herosectionSectionSectionSection"]: {
|
|
4143
|
+
__typename: "Shapeexamples_herosectionSectionSectionSection",
|
|
4144
|
+
link?: GraphQLTypes["Shapeexamples_herosectionSectionSectionSectionLink"] | undefined | null,
|
|
4145
|
+
link_2?: GraphQLTypes["Shapeexamples_herosectionSectionSectionSectionLink_2"] | undefined | null
|
|
4078
4146
|
};
|
|
4079
|
-
["
|
|
4080
|
-
__typename: "
|
|
4081
|
-
|
|
4147
|
+
["Shapeexamples_herosectionSectionSectionMedia"]: {
|
|
4148
|
+
__typename: "Shapeexamples_herosectionSectionSectionMedia",
|
|
4149
|
+
image?: GraphQLTypes["ImageField"] | undefined | null
|
|
4082
4150
|
};
|
|
4083
|
-
["
|
|
4084
|
-
__typename: "
|
|
4085
|
-
|
|
4086
|
-
|
|
4151
|
+
["Shapeexamples_herosectionSectionSection"]: {
|
|
4152
|
+
__typename: "Shapeexamples_herosectionSectionSection",
|
|
4153
|
+
heading?: GraphQLTypes["Shapeexamples_herosectionSectionSectionHeading"] | undefined | null,
|
|
4154
|
+
description?: GraphQLTypes["Shapeexamples_herosectionSectionSectionDescription"] | undefined | null,
|
|
4155
|
+
section?: GraphQLTypes["Shapeexamples_herosectionSectionSectionSection"] | undefined | null,
|
|
4156
|
+
media?: GraphQLTypes["Shapeexamples_herosectionSectionSectionMedia"] | undefined | null
|
|
4087
4157
|
};
|
|
4088
|
-
["
|
|
4089
|
-
__typename: "
|
|
4090
|
-
|
|
4158
|
+
["Shapeexamples_herosectionSection"]: {
|
|
4159
|
+
__typename: "Shapeexamples_herosectionSection",
|
|
4160
|
+
section?: GraphQLTypes["Shapeexamples_herosectionSectionSection"] | undefined | null
|
|
4091
4161
|
};
|
|
4092
|
-
["
|
|
4093
|
-
__typename: "
|
|
4094
|
-
|
|
4162
|
+
["Shapeexamples_herosection"]: {
|
|
4163
|
+
__typename: "Shapeexamples_herosection",
|
|
4164
|
+
section?: GraphQLTypes["Shapeexamples_herosectionSection"] | undefined | null,
|
|
4095
4165
|
_id: string,
|
|
4096
4166
|
createdAt?: number | undefined | null,
|
|
4097
4167
|
updatedAt?: number | undefined | null
|
|
4098
4168
|
};
|
|
4099
|
-
["
|
|
4100
|
-
__typename: "
|
|
4101
|
-
|
|
4102
|
-
link?: string | undefined | null
|
|
4169
|
+
["Shapeexamples_newslettersignupSectionSectionHeading"]: {
|
|
4170
|
+
__typename: "Shapeexamples_newslettersignupSectionSectionHeading",
|
|
4171
|
+
subtitle?: string | undefined | null
|
|
4103
4172
|
};
|
|
4104
|
-
["
|
|
4105
|
-
__typename: "
|
|
4106
|
-
|
|
4173
|
+
["Shapeexamples_newslettersignupSectionSectionDescription"]: {
|
|
4174
|
+
__typename: "Shapeexamples_newslettersignupSectionSectionDescription",
|
|
4175
|
+
description?: string | undefined | null
|
|
4107
4176
|
};
|
|
4108
|
-
["
|
|
4109
|
-
__typename: "
|
|
4110
|
-
|
|
4111
|
-
children?: GraphQLTypes["Shapedocs_navMainListChildren"] | undefined | null
|
|
4177
|
+
["Shapeexamples_newslettersignupSectionSectionFormButton"]: {
|
|
4178
|
+
__typename: "Shapeexamples_newslettersignupSectionSectionFormButton",
|
|
4179
|
+
button_text?: string | undefined | null
|
|
4112
4180
|
};
|
|
4113
|
-
["
|
|
4114
|
-
__typename: "
|
|
4115
|
-
|
|
4181
|
+
["Shapeexamples_newslettersignupSectionSectionForm"]: {
|
|
4182
|
+
__typename: "Shapeexamples_newslettersignupSectionSectionForm",
|
|
4183
|
+
email?: string | undefined | null,
|
|
4184
|
+
button?: GraphQLTypes["Shapeexamples_newslettersignupSectionSectionFormButton"] | undefined | null
|
|
4116
4185
|
};
|
|
4117
|
-
["
|
|
4118
|
-
__typename: "
|
|
4119
|
-
|
|
4186
|
+
["Shapeexamples_newslettersignupSectionSectionDescription_2Link"]: {
|
|
4187
|
+
__typename: "Shapeexamples_newslettersignupSectionSectionDescription_2Link",
|
|
4188
|
+
cta?: string | undefined | null,
|
|
4189
|
+
href?: string | undefined | null
|
|
4190
|
+
};
|
|
4191
|
+
["Shapeexamples_newslettersignupSectionSectionDescription_2"]: {
|
|
4192
|
+
__typename: "Shapeexamples_newslettersignupSectionSectionDescription_2",
|
|
4193
|
+
description?: string | undefined | null,
|
|
4194
|
+
link?: GraphQLTypes["Shapeexamples_newslettersignupSectionSectionDescription_2Link"] | undefined | null
|
|
4195
|
+
};
|
|
4196
|
+
["Shapeexamples_newslettersignupSectionSection"]: {
|
|
4197
|
+
__typename: "Shapeexamples_newslettersignupSectionSection",
|
|
4198
|
+
heading?: GraphQLTypes["Shapeexamples_newslettersignupSectionSectionHeading"] | undefined | null,
|
|
4199
|
+
description?: GraphQLTypes["Shapeexamples_newslettersignupSectionSectionDescription"] | undefined | null,
|
|
4200
|
+
form?: GraphQLTypes["Shapeexamples_newslettersignupSectionSectionForm"] | undefined | null,
|
|
4201
|
+
description_2?: GraphQLTypes["Shapeexamples_newslettersignupSectionSectionDescription_2"] | undefined | null
|
|
4202
|
+
};
|
|
4203
|
+
["Shapeexamples_newslettersignupSection"]: {
|
|
4204
|
+
__typename: "Shapeexamples_newslettersignupSection",
|
|
4205
|
+
section?: GraphQLTypes["Shapeexamples_newslettersignupSectionSection"] | undefined | null
|
|
4206
|
+
};
|
|
4207
|
+
["Shapeexamples_newslettersignup"]: {
|
|
4208
|
+
__typename: "Shapeexamples_newslettersignup",
|
|
4209
|
+
section?: GraphQLTypes["Shapeexamples_newslettersignupSection"] | undefined | null,
|
|
4120
4210
|
_id: string,
|
|
4121
4211
|
createdAt?: number | undefined | null,
|
|
4122
4212
|
updatedAt?: number | undefined | null
|
|
4123
4213
|
};
|
|
4124
|
-
["
|
|
4125
|
-
__typename: "
|
|
4126
|
-
|
|
4127
|
-
|
|
4214
|
+
["Shapeexamples_pricingplansSectionSectionHeaderPricing_title"]: {
|
|
4215
|
+
__typename: "Shapeexamples_pricingplansSectionSectionHeaderPricing_title",
|
|
4216
|
+
subtitle?: string | undefined | null
|
|
4217
|
+
};
|
|
4218
|
+
["Shapeexamples_pricingplansSectionSectionHeaderPricing_description"]: {
|
|
4219
|
+
__typename: "Shapeexamples_pricingplansSectionSectionHeaderPricing_description",
|
|
4220
|
+
description?: string | undefined | null
|
|
4221
|
+
};
|
|
4222
|
+
["Shapeexamples_pricingplansSectionSectionHeader"]: {
|
|
4223
|
+
__typename: "Shapeexamples_pricingplansSectionSectionHeader",
|
|
4224
|
+
pricing_title?: GraphQLTypes["Shapeexamples_pricingplansSectionSectionHeaderPricing_title"] | undefined | null,
|
|
4225
|
+
pricing_description?: GraphQLTypes["Shapeexamples_pricingplansSectionSectionHeaderPricing_description"] | undefined | null
|
|
4226
|
+
};
|
|
4227
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderPlan_name_1"]: {
|
|
4228
|
+
__typename: "Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderPlan_name_1",
|
|
4229
|
+
h3?: string | undefined | null
|
|
4230
|
+
};
|
|
4231
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderSectionPlan_price_1"]: {
|
|
4232
|
+
__typename: "Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderSectionPlan_price_1",
|
|
4128
4233
|
content?: string | undefined | null
|
|
4129
4234
|
};
|
|
4130
|
-
["
|
|
4131
|
-
__typename: "
|
|
4132
|
-
|
|
4133
|
-
_id: string,
|
|
4134
|
-
createdAt?: number | undefined | null,
|
|
4135
|
-
updatedAt?: number | undefined | null
|
|
4235
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderSection"]: {
|
|
4236
|
+
__typename: "Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderSection",
|
|
4237
|
+
plan_price_1?: GraphQLTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderSectionPlan_price_1"] | undefined | null
|
|
4136
4238
|
};
|
|
4137
|
-
["
|
|
4138
|
-
__typename: "
|
|
4139
|
-
|
|
4140
|
-
terms_of_service?: string | undefined | null,
|
|
4141
|
-
contact_us?: string | undefined | null
|
|
4142
|
-
};
|
|
4143
|
-
["ShapefootFooterFooter_container"]: {
|
|
4144
|
-
__typename: "ShapefootFooterFooter_container",
|
|
4145
|
-
footer_logo?: string | undefined | null,
|
|
4146
|
-
footer_links?: GraphQLTypes["ShapefootFooterFooter_containerFooter_links"] | undefined | null,
|
|
4147
|
-
footer_copy?: string | undefined | null
|
|
4148
|
-
};
|
|
4149
|
-
["ShapefootFooter"]: {
|
|
4150
|
-
__typename: "ShapefootFooter",
|
|
4151
|
-
footer_container?: GraphQLTypes["ShapefootFooterFooter_container"] | undefined | null
|
|
4152
|
-
};
|
|
4153
|
-
["Shapefoot"]: {
|
|
4154
|
-
__typename: "Shapefoot",
|
|
4155
|
-
footer?: GraphQLTypes["ShapefootFooter"] | undefined | null,
|
|
4156
|
-
_id: string,
|
|
4157
|
-
createdAt?: number | undefined | null,
|
|
4158
|
-
updatedAt?: number | undefined | null
|
|
4239
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderList"]: {
|
|
4240
|
+
__typename: "Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderList",
|
|
4241
|
+
items?: Array<string | undefined | null> | undefined | null
|
|
4159
4242
|
};
|
|
4160
|
-
["
|
|
4161
|
-
__typename: "
|
|
4162
|
-
|
|
4243
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderPlan_cta_1"]: {
|
|
4244
|
+
__typename: "Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderPlan_cta_1",
|
|
4245
|
+
cta?: string | undefined | null,
|
|
4246
|
+
href?: string | undefined | null
|
|
4163
4247
|
};
|
|
4164
|
-
["
|
|
4165
|
-
__typename: "
|
|
4166
|
-
|
|
4167
|
-
|
|
4168
|
-
|
|
4169
|
-
|
|
4248
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border"]: {
|
|
4249
|
+
__typename: "Shapeexamples_pricingplansSectionSectionMd_gridcols3Border",
|
|
4250
|
+
plan_name_1?: GraphQLTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderPlan_name_1"] | undefined | null,
|
|
4251
|
+
section?: GraphQLTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderSection"] | undefined | null,
|
|
4252
|
+
list?: GraphQLTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderList"] | undefined | null,
|
|
4253
|
+
plan_cta_1?: GraphQLTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderPlan_cta_1"] | undefined | null
|
|
4170
4254
|
};
|
|
4171
|
-
["
|
|
4172
|
-
__typename: "
|
|
4173
|
-
|
|
4174
|
-
_id: string,
|
|
4175
|
-
createdAt?: number | undefined | null,
|
|
4176
|
-
updatedAt?: number | undefined | null
|
|
4255
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2Plan_name_2"]: {
|
|
4256
|
+
__typename: "Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2Plan_name_2",
|
|
4257
|
+
h3?: string | undefined | null
|
|
4177
4258
|
};
|
|
4178
|
-
["
|
|
4179
|
-
__typename: "
|
|
4180
|
-
|
|
4259
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2SectionPlan_price_2"]: {
|
|
4260
|
+
__typename: "Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2SectionPlan_price_2",
|
|
4261
|
+
content?: string | undefined | null
|
|
4181
4262
|
};
|
|
4182
|
-
["
|
|
4183
|
-
__typename: "
|
|
4184
|
-
|
|
4185
|
-
|
|
4186
|
-
|
|
4263
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2Section"]: {
|
|
4264
|
+
__typename: "Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2Section",
|
|
4265
|
+
plan_price_2?: GraphQLTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2SectionPlan_price_2"] | undefined | null
|
|
4266
|
+
};
|
|
4267
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2List"]: {
|
|
4268
|
+
__typename: "Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2List",
|
|
4269
|
+
items?: Array<string | undefined | null> | undefined | null
|
|
4187
4270
|
};
|
|
4188
|
-
["
|
|
4189
|
-
__typename: "
|
|
4190
|
-
|
|
4271
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2Plan_cta_2"]: {
|
|
4272
|
+
__typename: "Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2Plan_cta_2",
|
|
4273
|
+
cta?: string | undefined | null,
|
|
4274
|
+
href?: string | undefined | null
|
|
4275
|
+
};
|
|
4276
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2"]: {
|
|
4277
|
+
__typename: "Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2",
|
|
4278
|
+
plan_name_2?: GraphQLTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2Plan_name_2"] | undefined | null,
|
|
4279
|
+
section?: GraphQLTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2Section"] | undefined | null,
|
|
4280
|
+
list?: GraphQLTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2List"] | undefined | null,
|
|
4281
|
+
plan_cta_2?: GraphQLTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2Plan_cta_2"] | undefined | null
|
|
4282
|
+
};
|
|
4283
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3Plan_name_3"]: {
|
|
4284
|
+
__typename: "Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3Plan_name_3",
|
|
4285
|
+
h3?: string | undefined | null
|
|
4286
|
+
};
|
|
4287
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3SectionPlan_price_3"]: {
|
|
4288
|
+
__typename: "Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3SectionPlan_price_3",
|
|
4289
|
+
content?: string | undefined | null
|
|
4191
4290
|
};
|
|
4192
|
-
["
|
|
4193
|
-
__typename: "
|
|
4194
|
-
|
|
4291
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3Section"]: {
|
|
4292
|
+
__typename: "Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3Section",
|
|
4293
|
+
plan_price_3?: GraphQLTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3SectionPlan_price_3"] | undefined | null
|
|
4195
4294
|
};
|
|
4196
|
-
["
|
|
4197
|
-
__typename: "
|
|
4198
|
-
|
|
4199
|
-
image_wrapper?: GraphQLTypes["ShapeheroxHero_sectionHero_containerImage_wrapper"] | undefined | null,
|
|
4200
|
-
presentation?: GraphQLTypes["ShapeheroxHero_sectionHero_containerPresentation"] | undefined | null
|
|
4295
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3List"]: {
|
|
4296
|
+
__typename: "Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3List",
|
|
4297
|
+
items?: Array<string | undefined | null> | undefined | null
|
|
4201
4298
|
};
|
|
4202
|
-
["
|
|
4203
|
-
__typename: "
|
|
4204
|
-
|
|
4299
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3Plan_cta_3"]: {
|
|
4300
|
+
__typename: "Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3Plan_cta_3",
|
|
4301
|
+
cta?: string | undefined | null,
|
|
4302
|
+
href?: string | undefined | null
|
|
4205
4303
|
};
|
|
4206
|
-
["
|
|
4207
|
-
__typename: "
|
|
4208
|
-
|
|
4304
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3"]: {
|
|
4305
|
+
__typename: "Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3",
|
|
4306
|
+
plan_name_3?: GraphQLTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3Plan_name_3"] | undefined | null,
|
|
4307
|
+
section?: GraphQLTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3Section"] | undefined | null,
|
|
4308
|
+
list?: GraphQLTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3List"] | undefined | null,
|
|
4309
|
+
plan_cta_3?: GraphQLTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3Plan_cta_3"] | undefined | null
|
|
4310
|
+
};
|
|
4311
|
+
["Shapeexamples_pricingplansSectionSectionMd_gridcols3"]: {
|
|
4312
|
+
__typename: "Shapeexamples_pricingplansSectionSectionMd_gridcols3",
|
|
4313
|
+
border?: GraphQLTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border"] | undefined | null,
|
|
4314
|
+
border_2?: GraphQLTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2"] | undefined | null,
|
|
4315
|
+
border_3?: GraphQLTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3"] | undefined | null
|
|
4316
|
+
};
|
|
4317
|
+
["Shapeexamples_pricingplansSectionSection"]: {
|
|
4318
|
+
__typename: "Shapeexamples_pricingplansSectionSection",
|
|
4319
|
+
header?: GraphQLTypes["Shapeexamples_pricingplansSectionSectionHeader"] | undefined | null,
|
|
4320
|
+
md_gridcols3?: GraphQLTypes["Shapeexamples_pricingplansSectionSectionMd_gridcols3"] | undefined | null
|
|
4321
|
+
};
|
|
4322
|
+
["Shapeexamples_pricingplansSection"]: {
|
|
4323
|
+
__typename: "Shapeexamples_pricingplansSection",
|
|
4324
|
+
section?: GraphQLTypes["Shapeexamples_pricingplansSectionSection"] | undefined | null
|
|
4325
|
+
};
|
|
4326
|
+
["Shapeexamples_pricingplans"]: {
|
|
4327
|
+
__typename: "Shapeexamples_pricingplans",
|
|
4328
|
+
section?: GraphQLTypes["Shapeexamples_pricingplansSection"] | undefined | null,
|
|
4209
4329
|
_id: string,
|
|
4210
4330
|
createdAt?: number | undefined | null,
|
|
4211
4331
|
updatedAt?: number | undefined | null
|
|
4212
4332
|
};
|
|
4213
|
-
["
|
|
4214
|
-
__typename: "
|
|
4215
|
-
|
|
4216
|
-
|
|
4217
|
-
remove_button?: string | undefined | null
|
|
4333
|
+
["Shapeexamples_pricingplans_1ContainerPricingHeader"]: {
|
|
4334
|
+
__typename: "Shapeexamples_pricingplans_1ContainerPricingHeader",
|
|
4335
|
+
subtitle?: string | undefined | null,
|
|
4336
|
+
description?: string | undefined | null
|
|
4218
4337
|
};
|
|
4219
|
-
["
|
|
4220
|
-
__typename: "
|
|
4221
|
-
|
|
4338
|
+
["Shapeexamples_pricingplans_1ContainerPricingPlansPlan_itemsPriceblock"]: {
|
|
4339
|
+
__typename: "Shapeexamples_pricingplans_1ContainerPricingPlansPlan_itemsPriceblock",
|
|
4340
|
+
price?: string | undefined | null
|
|
4222
4341
|
};
|
|
4223
|
-
["
|
|
4224
|
-
__typename: "
|
|
4342
|
+
["Shapeexamples_pricingplans_1ContainerPricingPlansPlan_itemsCta"]: {
|
|
4343
|
+
__typename: "Shapeexamples_pricingplans_1ContainerPricingPlansPlan_itemsCta",
|
|
4225
4344
|
title?: string | undefined | null,
|
|
4226
|
-
|
|
4227
|
-
projects?: GraphQLTypes["Shapelista_projektowListProjects"] | undefined | null
|
|
4345
|
+
href?: string | undefined | null
|
|
4228
4346
|
};
|
|
4229
|
-
["
|
|
4230
|
-
__typename: "
|
|
4231
|
-
|
|
4347
|
+
["Shapeexamples_pricingplans_1ContainerPricingPlansPlan_items"]: {
|
|
4348
|
+
__typename: "Shapeexamples_pricingplans_1ContainerPricingPlansPlan_items",
|
|
4349
|
+
name?: string | undefined | null,
|
|
4350
|
+
priceblock?: GraphQLTypes["Shapeexamples_pricingplans_1ContainerPricingPlansPlan_itemsPriceblock"] | undefined | null,
|
|
4351
|
+
features?: Array<string | undefined | null> | undefined | null,
|
|
4352
|
+
cta?: GraphQLTypes["Shapeexamples_pricingplans_1ContainerPricingPlansPlan_itemsCta"] | undefined | null
|
|
4353
|
+
};
|
|
4354
|
+
["Shapeexamples_pricingplans_1ContainerPricingPlans"]: {
|
|
4355
|
+
__typename: "Shapeexamples_pricingplans_1ContainerPricingPlans",
|
|
4356
|
+
plan_items?: Array<GraphQLTypes["Shapeexamples_pricingplans_1ContainerPricingPlansPlan_items"] | undefined | null> | undefined | null
|
|
4357
|
+
};
|
|
4358
|
+
["Shapeexamples_pricingplans_1ContainerPricing"]: {
|
|
4359
|
+
__typename: "Shapeexamples_pricingplans_1ContainerPricing",
|
|
4360
|
+
header?: GraphQLTypes["Shapeexamples_pricingplans_1ContainerPricingHeader"] | undefined | null,
|
|
4361
|
+
plans?: GraphQLTypes["Shapeexamples_pricingplans_1ContainerPricingPlans"] | undefined | null
|
|
4362
|
+
};
|
|
4363
|
+
["Shapeexamples_pricingplans_1Container"]: {
|
|
4364
|
+
__typename: "Shapeexamples_pricingplans_1Container",
|
|
4365
|
+
pricing?: GraphQLTypes["Shapeexamples_pricingplans_1ContainerPricing"] | undefined | null
|
|
4366
|
+
};
|
|
4367
|
+
["Shapeexamples_pricingplans_1"]: {
|
|
4368
|
+
__typename: "Shapeexamples_pricingplans_1",
|
|
4369
|
+
container?: GraphQLTypes["Shapeexamples_pricingplans_1Container"] | undefined | null,
|
|
4232
4370
|
_id: string,
|
|
4233
4371
|
createdAt?: number | undefined | null,
|
|
4234
4372
|
updatedAt?: number | undefined | null
|
|
4235
4373
|
};
|
|
4236
|
-
["
|
|
4237
|
-
__typename: "
|
|
4238
|
-
|
|
4374
|
+
["Shapeexamples_productcardSectionSectionMediaRounded"]: {
|
|
4375
|
+
__typename: "Shapeexamples_productcardSectionSectionMediaRounded",
|
|
4376
|
+
content?: string | undefined | null
|
|
4377
|
+
};
|
|
4378
|
+
["Shapeexamples_productcardSectionSectionMedia"]: {
|
|
4379
|
+
__typename: "Shapeexamples_productcardSectionSectionMedia",
|
|
4380
|
+
image?: GraphQLTypes["ImageField"] | undefined | null,
|
|
4381
|
+
rounded?: GraphQLTypes["Shapeexamples_productcardSectionSectionMediaRounded"] | undefined | null
|
|
4382
|
+
};
|
|
4383
|
+
["Shapeexamples_productcardSectionSectionSectionProduct_title"]: {
|
|
4384
|
+
__typename: "Shapeexamples_productcardSectionSectionSectionProduct_title",
|
|
4385
|
+
subtitle?: string | undefined | null
|
|
4386
|
+
};
|
|
4387
|
+
["Shapeexamples_productcardSectionSectionSectionProduct_description"]: {
|
|
4388
|
+
__typename: "Shapeexamples_productcardSectionSectionSectionProduct_description",
|
|
4389
|
+
description?: string | undefined | null
|
|
4390
|
+
};
|
|
4391
|
+
["Shapeexamples_productcardSectionSectionSectionSectionSectionInline"]: {
|
|
4392
|
+
__typename: "Shapeexamples_productcardSectionSectionSectionSectionSectionInline",
|
|
4393
|
+
content?: string | undefined | null
|
|
4394
|
+
};
|
|
4395
|
+
["Shapeexamples_productcardSectionSectionSectionSectionSectionProduct_price"]: {
|
|
4396
|
+
__typename: "Shapeexamples_productcardSectionSectionSectionSectionSectionProduct_price",
|
|
4397
|
+
content?: string | undefined | null
|
|
4398
|
+
};
|
|
4399
|
+
["Shapeexamples_productcardSectionSectionSectionSectionSection"]: {
|
|
4400
|
+
__typename: "Shapeexamples_productcardSectionSectionSectionSectionSection",
|
|
4401
|
+
inline?: GraphQLTypes["Shapeexamples_productcardSectionSectionSectionSectionSectionInline"] | undefined | null,
|
|
4402
|
+
product_price?: GraphQLTypes["Shapeexamples_productcardSectionSectionSectionSectionSectionProduct_price"] | undefined | null
|
|
4403
|
+
};
|
|
4404
|
+
["Shapeexamples_productcardSectionSectionSectionSectionProduct_cta_url"]: {
|
|
4405
|
+
__typename: "Shapeexamples_productcardSectionSectionSectionSectionProduct_cta_url",
|
|
4406
|
+
cta?: string | undefined | null,
|
|
4239
4407
|
href?: string | undefined | null
|
|
4240
4408
|
};
|
|
4241
|
-
["
|
|
4242
|
-
__typename: "
|
|
4243
|
-
|
|
4409
|
+
["Shapeexamples_productcardSectionSectionSectionSection"]: {
|
|
4410
|
+
__typename: "Shapeexamples_productcardSectionSectionSectionSection",
|
|
4411
|
+
section?: GraphQLTypes["Shapeexamples_productcardSectionSectionSectionSectionSection"] | undefined | null,
|
|
4412
|
+
product_cta_url?: GraphQLTypes["Shapeexamples_productcardSectionSectionSectionSectionProduct_cta_url"] | undefined | null
|
|
4244
4413
|
};
|
|
4245
|
-
["
|
|
4246
|
-
__typename: "
|
|
4247
|
-
|
|
4248
|
-
|
|
4414
|
+
["Shapeexamples_productcardSectionSectionSectionFormLabel"]: {
|
|
4415
|
+
__typename: "Shapeexamples_productcardSectionSectionSectionFormLabel",
|
|
4416
|
+
html_for?: string | undefined | null,
|
|
4417
|
+
content?: string | undefined | null
|
|
4249
4418
|
};
|
|
4250
|
-
["
|
|
4251
|
-
__typename: "
|
|
4252
|
-
|
|
4253
|
-
|
|
4254
|
-
createdAt?: number | undefined | null,
|
|
4255
|
-
updatedAt?: number | undefined | null
|
|
4419
|
+
["Shapeexamples_productcardSectionSectionSectionFormLabel_2"]: {
|
|
4420
|
+
__typename: "Shapeexamples_productcardSectionSectionSectionFormLabel_2",
|
|
4421
|
+
html_for?: string | undefined | null,
|
|
4422
|
+
content?: string | undefined | null
|
|
4256
4423
|
};
|
|
4257
|
-
["
|
|
4258
|
-
__typename: "
|
|
4259
|
-
|
|
4260
|
-
|
|
4261
|
-
|
|
4262
|
-
|
|
4263
|
-
|
|
4264
|
-
|
|
4265
|
-
|
|
4266
|
-
|
|
4267
|
-
|
|
4268
|
-
|
|
4269
|
-
|
|
4270
|
-
};
|
|
4271
|
-
["
|
|
4272
|
-
__typename: "
|
|
4273
|
-
|
|
4424
|
+
["Shapeexamples_productcardSectionSectionSectionForm"]: {
|
|
4425
|
+
__typename: "Shapeexamples_productcardSectionSectionSectionForm",
|
|
4426
|
+
label?: GraphQLTypes["Shapeexamples_productcardSectionSectionSectionFormLabel"] | undefined | null,
|
|
4427
|
+
product_color?: string | undefined | null,
|
|
4428
|
+
label_2?: GraphQLTypes["Shapeexamples_productcardSectionSectionSectionFormLabel_2"] | undefined | null,
|
|
4429
|
+
product_quantity?: string | undefined | null
|
|
4430
|
+
};
|
|
4431
|
+
["Shapeexamples_productcardSectionSectionSection"]: {
|
|
4432
|
+
__typename: "Shapeexamples_productcardSectionSectionSection",
|
|
4433
|
+
product_title?: GraphQLTypes["Shapeexamples_productcardSectionSectionSectionProduct_title"] | undefined | null,
|
|
4434
|
+
product_description?: GraphQLTypes["Shapeexamples_productcardSectionSectionSectionProduct_description"] | undefined | null,
|
|
4435
|
+
section?: GraphQLTypes["Shapeexamples_productcardSectionSectionSectionSection"] | undefined | null,
|
|
4436
|
+
form?: GraphQLTypes["Shapeexamples_productcardSectionSectionSectionForm"] | undefined | null
|
|
4437
|
+
};
|
|
4438
|
+
["Shapeexamples_productcardSectionSection"]: {
|
|
4439
|
+
__typename: "Shapeexamples_productcardSectionSection",
|
|
4440
|
+
media?: GraphQLTypes["Shapeexamples_productcardSectionSectionMedia"] | undefined | null,
|
|
4441
|
+
section?: GraphQLTypes["Shapeexamples_productcardSectionSectionSection"] | undefined | null
|
|
4442
|
+
};
|
|
4443
|
+
["Shapeexamples_productcardSection"]: {
|
|
4444
|
+
__typename: "Shapeexamples_productcardSection",
|
|
4445
|
+
section?: GraphQLTypes["Shapeexamples_productcardSectionSection"] | undefined | null
|
|
4446
|
+
};
|
|
4447
|
+
["Shapeexamples_productcard"]: {
|
|
4448
|
+
__typename: "Shapeexamples_productcard",
|
|
4449
|
+
section?: GraphQLTypes["Shapeexamples_productcardSection"] | undefined | null,
|
|
4274
4450
|
_id: string,
|
|
4275
4451
|
createdAt?: number | undefined | null,
|
|
4276
4452
|
updatedAt?: number | undefined | null
|
|
4277
4453
|
};
|
|
4278
|
-
["
|
|
4279
|
-
__typename: "
|
|
4280
|
-
title?: string | undefined | null,
|
|
4454
|
+
["Shapeexamples_testimonialcardSectionFigureBlockquoteQuote"]: {
|
|
4455
|
+
__typename: "Shapeexamples_testimonialcardSectionFigureBlockquoteQuote",
|
|
4281
4456
|
description?: string | undefined | null
|
|
4282
4457
|
};
|
|
4283
|
-
["
|
|
4284
|
-
__typename: "
|
|
4285
|
-
|
|
4286
|
-
unit?: string | undefined | null,
|
|
4287
|
-
price?: string | undefined | null
|
|
4458
|
+
["Shapeexamples_testimonialcardSectionFigureBlockquote"]: {
|
|
4459
|
+
__typename: "Shapeexamples_testimonialcardSectionFigureBlockquote",
|
|
4460
|
+
quote?: GraphQLTypes["Shapeexamples_testimonialcardSectionFigureBlockquoteQuote"] | undefined | null
|
|
4288
4461
|
};
|
|
4289
|
-
["
|
|
4290
|
-
__typename: "
|
|
4291
|
-
|
|
4292
|
-
unit?: string | undefined | null,
|
|
4293
|
-
price?: string | undefined | null
|
|
4462
|
+
["Shapeexamples_testimonialcardSectionFigureFigcaptionSectionAuthor"]: {
|
|
4463
|
+
__typename: "Shapeexamples_testimonialcardSectionFigureFigcaptionSectionAuthor",
|
|
4464
|
+
content?: string | undefined | null
|
|
4294
4465
|
};
|
|
4295
|
-
["
|
|
4296
|
-
__typename: "
|
|
4297
|
-
|
|
4298
|
-
rows?: Array<GraphQLTypes["Shapepricing_tablePricing_sectionPricing_tableRows"] | undefined | null> | undefined | null
|
|
4466
|
+
["Shapeexamples_testimonialcardSectionFigureFigcaptionSectionRole"]: {
|
|
4467
|
+
__typename: "Shapeexamples_testimonialcardSectionFigureFigcaptionSectionRole",
|
|
4468
|
+
content?: string | undefined | null
|
|
4299
4469
|
};
|
|
4300
|
-
["
|
|
4301
|
-
__typename: "
|
|
4302
|
-
|
|
4303
|
-
|
|
4470
|
+
["Shapeexamples_testimonialcardSectionFigureFigcaptionSection"]: {
|
|
4471
|
+
__typename: "Shapeexamples_testimonialcardSectionFigureFigcaptionSection",
|
|
4472
|
+
author?: GraphQLTypes["Shapeexamples_testimonialcardSectionFigureFigcaptionSectionAuthor"] | undefined | null,
|
|
4473
|
+
role?: GraphQLTypes["Shapeexamples_testimonialcardSectionFigureFigcaptionSectionRole"] | undefined | null
|
|
4304
4474
|
};
|
|
4305
|
-
["
|
|
4306
|
-
__typename: "
|
|
4307
|
-
|
|
4308
|
-
|
|
4309
|
-
createdAt?: number | undefined | null,
|
|
4310
|
-
updatedAt?: number | undefined | null
|
|
4475
|
+
["Shapeexamples_testimonialcardSectionFigureFigcaptionLink"]: {
|
|
4476
|
+
__typename: "Shapeexamples_testimonialcardSectionFigureFigcaptionLink",
|
|
4477
|
+
cta?: string | undefined | null,
|
|
4478
|
+
href?: string | undefined | null
|
|
4311
4479
|
};
|
|
4312
|
-
["
|
|
4313
|
-
__typename: "
|
|
4314
|
-
|
|
4315
|
-
|
|
4480
|
+
["Shapeexamples_testimonialcardSectionFigureFigcaption"]: {
|
|
4481
|
+
__typename: "Shapeexamples_testimonialcardSectionFigureFigcaption",
|
|
4482
|
+
section?: GraphQLTypes["Shapeexamples_testimonialcardSectionFigureFigcaptionSection"] | undefined | null,
|
|
4483
|
+
link?: GraphQLTypes["Shapeexamples_testimonialcardSectionFigureFigcaptionLink"] | undefined | null
|
|
4484
|
+
};
|
|
4485
|
+
["Shapeexamples_testimonialcardSectionFigure"]: {
|
|
4486
|
+
__typename: "Shapeexamples_testimonialcardSectionFigure",
|
|
4487
|
+
image?: GraphQLTypes["ImageField"] | undefined | null,
|
|
4488
|
+
blockquote?: GraphQLTypes["Shapeexamples_testimonialcardSectionFigureBlockquote"] | undefined | null,
|
|
4489
|
+
figcaption?: GraphQLTypes["Shapeexamples_testimonialcardSectionFigureFigcaption"] | undefined | null
|
|
4316
4490
|
};
|
|
4317
|
-
["
|
|
4318
|
-
__typename: "
|
|
4319
|
-
|
|
4320
|
-
};
|
|
4321
|
-
["
|
|
4322
|
-
__typename: "
|
|
4323
|
-
|
|
4324
|
-
price?: string | undefined | null,
|
|
4325
|
-
plan_description?: string | undefined | null,
|
|
4326
|
-
feature_list?: GraphQLTypes["Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list"] | undefined | null,
|
|
4327
|
-
cta?: string | undefined | null
|
|
4328
|
-
};
|
|
4329
|
-
["Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list"]: {
|
|
4330
|
-
__typename: "Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list",
|
|
4331
|
-
feature?: Array<string | undefined | null> | undefined | null
|
|
4332
|
-
};
|
|
4333
|
-
["Shapepricingv1Pricing_sectionPlans_gridPaid_plan"]: {
|
|
4334
|
-
__typename: "Shapepricingv1Pricing_sectionPlans_gridPaid_plan",
|
|
4335
|
-
plan_name?: string | undefined | null,
|
|
4336
|
-
price?: string | undefined | null,
|
|
4337
|
-
plan_description?: string | undefined | null,
|
|
4338
|
-
feature_list?: GraphQLTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list"] | undefined | null,
|
|
4339
|
-
cta?: string | undefined | null
|
|
4340
|
-
};
|
|
4341
|
-
["Shapepricingv1Pricing_sectionPlans_grid"]: {
|
|
4342
|
-
__typename: "Shapepricingv1Pricing_sectionPlans_grid",
|
|
4343
|
-
free_plan?: GraphQLTypes["Shapepricingv1Pricing_sectionPlans_gridFree_plan"] | undefined | null,
|
|
4344
|
-
paid_plan?: GraphQLTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_plan"] | undefined | null
|
|
4345
|
-
};
|
|
4346
|
-
["Shapepricingv1Pricing_section"]: {
|
|
4347
|
-
__typename: "Shapepricingv1Pricing_section",
|
|
4348
|
-
header_wrapper?: GraphQLTypes["Shapepricingv1Pricing_sectionHeader_wrapper"] | undefined | null,
|
|
4349
|
-
plans_grid?: GraphQLTypes["Shapepricingv1Pricing_sectionPlans_grid"] | undefined | null
|
|
4350
|
-
};
|
|
4351
|
-
["Shapepricingv1"]: {
|
|
4352
|
-
__typename: "Shapepricingv1",
|
|
4353
|
-
pricing_section?: GraphQLTypes["Shapepricingv1Pricing_section"] | undefined | null,
|
|
4491
|
+
["Shapeexamples_testimonialcardSection"]: {
|
|
4492
|
+
__typename: "Shapeexamples_testimonialcardSection",
|
|
4493
|
+
figure?: GraphQLTypes["Shapeexamples_testimonialcardSectionFigure"] | undefined | null
|
|
4494
|
+
};
|
|
4495
|
+
["Shapeexamples_testimonialcard"]: {
|
|
4496
|
+
__typename: "Shapeexamples_testimonialcard",
|
|
4497
|
+
section?: GraphQLTypes["Shapeexamples_testimonialcardSection"] | undefined | null,
|
|
4354
4498
|
_id: string,
|
|
4355
4499
|
createdAt?: number | undefined | null,
|
|
4356
4500
|
updatedAt?: number | undefined | null
|
|
4357
4501
|
};
|
|
4358
|
-
["
|
|
4359
|
-
__typename: "
|
|
4360
|
-
|
|
4361
|
-
company?: string | undefined | null,
|
|
4362
|
-
email?: string | undefined | null
|
|
4502
|
+
["ShapeexamplescontactformSectionSectionHeading"]: {
|
|
4503
|
+
__typename: "ShapeexamplescontactformSectionSectionHeading",
|
|
4504
|
+
subtitle?: string | undefined | null
|
|
4363
4505
|
};
|
|
4364
|
-
["
|
|
4365
|
-
__typename: "
|
|
4366
|
-
|
|
4367
|
-
info?: GraphQLTypes["Shapeprofile_infoProfile_sectionAccount_headerInfo"] | undefined | null
|
|
4506
|
+
["ShapeexamplescontactformSectionSectionDescription"]: {
|
|
4507
|
+
__typename: "ShapeexamplescontactformSectionSectionDescription",
|
|
4508
|
+
description?: string | undefined | null
|
|
4368
4509
|
};
|
|
4369
|
-
["
|
|
4370
|
-
__typename: "
|
|
4371
|
-
|
|
4510
|
+
["ShapeexamplescontactformSectionSectionForm"]: {
|
|
4511
|
+
__typename: "ShapeexamplescontactformSectionSectionForm",
|
|
4512
|
+
name?: string | undefined | null,
|
|
4513
|
+
email?: string | undefined | null,
|
|
4514
|
+
message?: string | undefined | null
|
|
4372
4515
|
};
|
|
4373
|
-
["
|
|
4374
|
-
__typename: "
|
|
4375
|
-
|
|
4376
|
-
value?: string | undefined | null
|
|
4516
|
+
["ShapeexamplescontactformSectionSectionButton"]: {
|
|
4517
|
+
__typename: "ShapeexamplescontactformSectionSectionButton",
|
|
4518
|
+
button_text?: string | undefined | null
|
|
4377
4519
|
};
|
|
4378
|
-
["
|
|
4379
|
-
__typename: "
|
|
4380
|
-
|
|
4381
|
-
|
|
4520
|
+
["ShapeexamplescontactformSectionSectionLink"]: {
|
|
4521
|
+
__typename: "ShapeexamplescontactformSectionSectionLink",
|
|
4522
|
+
cta?: string | undefined | null,
|
|
4523
|
+
href?: string | undefined | null
|
|
4382
4524
|
};
|
|
4383
|
-
["
|
|
4384
|
-
__typename: "
|
|
4385
|
-
|
|
4386
|
-
|
|
4387
|
-
|
|
4388
|
-
["
|
|
4389
|
-
|
|
4390
|
-
|
|
4391
|
-
|
|
4392
|
-
|
|
4393
|
-
|
|
4394
|
-
|
|
4395
|
-
|
|
4396
|
-
|
|
4397
|
-
|
|
4398
|
-
usage_section?: GraphQLTypes["Shapeprofile_infoProfile_sectionUsage_section"] | undefined | null
|
|
4399
|
-
};
|
|
4400
|
-
["Shapeprofile_info"]: {
|
|
4401
|
-
__typename: "Shapeprofile_info",
|
|
4402
|
-
profile_section?: GraphQLTypes["Shapeprofile_infoProfile_section"] | undefined | null,
|
|
4525
|
+
["ShapeexamplescontactformSectionSection"]: {
|
|
4526
|
+
__typename: "ShapeexamplescontactformSectionSection",
|
|
4527
|
+
heading?: GraphQLTypes["ShapeexamplescontactformSectionSectionHeading"] | undefined | null,
|
|
4528
|
+
description?: GraphQLTypes["ShapeexamplescontactformSectionSectionDescription"] | undefined | null,
|
|
4529
|
+
form?: GraphQLTypes["ShapeexamplescontactformSectionSectionForm"] | undefined | null,
|
|
4530
|
+
button?: GraphQLTypes["ShapeexamplescontactformSectionSectionButton"] | undefined | null,
|
|
4531
|
+
link?: GraphQLTypes["ShapeexamplescontactformSectionSectionLink"] | undefined | null
|
|
4532
|
+
};
|
|
4533
|
+
["ShapeexamplescontactformSection"]: {
|
|
4534
|
+
__typename: "ShapeexamplescontactformSection",
|
|
4535
|
+
section?: GraphQLTypes["ShapeexamplescontactformSectionSection"] | undefined | null
|
|
4536
|
+
};
|
|
4537
|
+
["Shapeexamplescontactform"]: {
|
|
4538
|
+
__typename: "Shapeexamplescontactform",
|
|
4539
|
+
section?: GraphQLTypes["ShapeexamplescontactformSection"] | undefined | null,
|
|
4403
4540
|
_id: string,
|
|
4404
4541
|
createdAt?: number | undefined | null,
|
|
4405
4542
|
updatedAt?: number | undefined | null
|
|
4406
4543
|
};
|
|
4407
|
-
["
|
|
4408
|
-
__typename: "
|
|
4409
|
-
|
|
4410
|
-
|
|
4411
|
-
};
|
|
4412
|
-
["ShapesupportSectionFeatures_gridFeature_item"]: {
|
|
4413
|
-
__typename: "ShapesupportSectionFeatures_gridFeature_item",
|
|
4414
|
-
image?: GraphQLTypes["ImageField"] | undefined | null,
|
|
4415
|
-
title?: string | undefined | null,
|
|
4416
|
-
text?: string | undefined | null,
|
|
4417
|
-
cta?: string | undefined | null
|
|
4544
|
+
["ShapeproductcardProductcardProductcard_innerMedia"]: {
|
|
4545
|
+
__typename: "ShapeproductcardProductcardProductcard_innerMedia",
|
|
4546
|
+
product_image?: GraphQLTypes["ImageField"] | undefined | null,
|
|
4547
|
+
badge?: string | undefined | null
|
|
4418
4548
|
};
|
|
4419
|
-
["
|
|
4420
|
-
__typename: "
|
|
4421
|
-
|
|
4549
|
+
["ShapeproductcardProductcardProductcard_innerContentPriceblockPricepart"]: {
|
|
4550
|
+
__typename: "ShapeproductcardProductcardProductcard_innerContentPriceblockPricepart",
|
|
4551
|
+
price_label?: string | undefined | null,
|
|
4552
|
+
product_price?: string | undefined | null
|
|
4422
4553
|
};
|
|
4423
|
-
["
|
|
4424
|
-
__typename: "
|
|
4425
|
-
|
|
4426
|
-
|
|
4554
|
+
["ShapeproductcardProductcardProductcard_innerContentPriceblockCta"]: {
|
|
4555
|
+
__typename: "ShapeproductcardProductcardProductcard_innerContentPriceblockCta",
|
|
4556
|
+
cta?: string | undefined | null,
|
|
4557
|
+
href?: string | undefined | null
|
|
4427
4558
|
};
|
|
4428
|
-
["
|
|
4429
|
-
__typename: "
|
|
4430
|
-
|
|
4559
|
+
["ShapeproductcardProductcardProductcard_innerContentPriceblock"]: {
|
|
4560
|
+
__typename: "ShapeproductcardProductcardProductcard_innerContentPriceblock",
|
|
4561
|
+
pricepart?: GraphQLTypes["ShapeproductcardProductcardProductcard_innerContentPriceblockPricepart"] | undefined | null,
|
|
4562
|
+
cta?: GraphQLTypes["ShapeproductcardProductcardProductcard_innerContentPriceblockCta"] | undefined | null
|
|
4563
|
+
};
|
|
4564
|
+
["ShapeproductcardProductcardProductcard_innerContentOptions"]: {
|
|
4565
|
+
__typename: "ShapeproductcardProductcardProductcard_innerContentOptions",
|
|
4566
|
+
product_color_label?: string | undefined | null,
|
|
4567
|
+
product_color?: string | undefined | null,
|
|
4568
|
+
product_quantity_label?: string | undefined | null,
|
|
4569
|
+
product_quantity?: string | undefined | null
|
|
4570
|
+
};
|
|
4571
|
+
["ShapeproductcardProductcardProductcard_innerContent"]: {
|
|
4572
|
+
__typename: "ShapeproductcardProductcardProductcard_innerContent",
|
|
4573
|
+
product_title?: string | undefined | null,
|
|
4574
|
+
product_description?: string | undefined | null,
|
|
4575
|
+
priceblock?: GraphQLTypes["ShapeproductcardProductcardProductcard_innerContentPriceblock"] | undefined | null,
|
|
4576
|
+
options?: GraphQLTypes["ShapeproductcardProductcardProductcard_innerContentOptions"] | undefined | null
|
|
4577
|
+
};
|
|
4578
|
+
["ShapeproductcardProductcardProductcard_inner"]: {
|
|
4579
|
+
__typename: "ShapeproductcardProductcardProductcard_inner",
|
|
4580
|
+
media?: GraphQLTypes["ShapeproductcardProductcardProductcard_innerMedia"] | undefined | null,
|
|
4581
|
+
content?: GraphQLTypes["ShapeproductcardProductcardProductcard_innerContent"] | undefined | null
|
|
4582
|
+
};
|
|
4583
|
+
["ShapeproductcardProductcard"]: {
|
|
4584
|
+
__typename: "ShapeproductcardProductcard",
|
|
4585
|
+
productcard_inner?: GraphQLTypes["ShapeproductcardProductcardProductcard_inner"] | undefined | null
|
|
4586
|
+
};
|
|
4587
|
+
["Shapeproductcard"]: {
|
|
4588
|
+
__typename: "Shapeproductcard",
|
|
4589
|
+
productcard?: GraphQLTypes["ShapeproductcardProductcard"] | undefined | null,
|
|
4431
4590
|
_id: string,
|
|
4432
4591
|
createdAt?: number | undefined | null,
|
|
4433
4592
|
updatedAt?: number | undefined | null
|
|
4434
4593
|
};
|
|
4435
|
-
["
|
|
4436
|
-
__typename: "
|
|
4437
|
-
title?: string | undefined | null
|
|
4438
|
-
|
|
4439
|
-
|
|
4440
|
-
|
|
4594
|
+
["ShapereactcomponentSectionSectionHeading"]: {
|
|
4595
|
+
__typename: "ShapereactcomponentSectionSectionHeading",
|
|
4596
|
+
title?: string | undefined | null
|
|
4597
|
+
};
|
|
4598
|
+
["ShapereactcomponentSectionSectionDescription"]: {
|
|
4599
|
+
__typename: "ShapereactcomponentSectionSectionDescription",
|
|
4600
|
+
description?: string | undefined | null
|
|
4601
|
+
};
|
|
4602
|
+
["ShapereactcomponentSectionSectionMedia"]: {
|
|
4603
|
+
__typename: "ShapereactcomponentSectionSectionMedia",
|
|
4604
|
+
image?: GraphQLTypes["ImageField"] | undefined | null
|
|
4605
|
+
};
|
|
4606
|
+
["ShapereactcomponentSectionSectionLink"]: {
|
|
4607
|
+
__typename: "ShapereactcomponentSectionSectionLink",
|
|
4608
|
+
cta?: string | undefined | null,
|
|
4609
|
+
href?: string | undefined | null
|
|
4610
|
+
};
|
|
4611
|
+
["ShapereactcomponentSectionSectionForm"]: {
|
|
4612
|
+
__typename: "ShapereactcomponentSectionSectionForm",
|
|
4613
|
+
name?: string | undefined | null,
|
|
4614
|
+
description?: string | undefined | null
|
|
4441
4615
|
};
|
|
4442
|
-
["
|
|
4443
|
-
__typename: "
|
|
4444
|
-
|
|
4616
|
+
["ShapereactcomponentSectionSectionButton"]: {
|
|
4617
|
+
__typename: "ShapereactcomponentSectionSectionButton",
|
|
4618
|
+
button_text?: string | undefined | null
|
|
4619
|
+
};
|
|
4620
|
+
["ShapereactcomponentSectionSection"]: {
|
|
4621
|
+
__typename: "ShapereactcomponentSectionSection",
|
|
4622
|
+
heading?: GraphQLTypes["ShapereactcomponentSectionSectionHeading"] | undefined | null,
|
|
4623
|
+
description?: GraphQLTypes["ShapereactcomponentSectionSectionDescription"] | undefined | null,
|
|
4624
|
+
media?: GraphQLTypes["ShapereactcomponentSectionSectionMedia"] | undefined | null,
|
|
4625
|
+
link?: GraphQLTypes["ShapereactcomponentSectionSectionLink"] | undefined | null,
|
|
4626
|
+
form?: GraphQLTypes["ShapereactcomponentSectionSectionForm"] | undefined | null,
|
|
4627
|
+
button?: GraphQLTypes["ShapereactcomponentSectionSectionButton"] | undefined | null
|
|
4628
|
+
};
|
|
4629
|
+
["ShapereactcomponentSection"]: {
|
|
4630
|
+
__typename: "ShapereactcomponentSection",
|
|
4631
|
+
section?: GraphQLTypes["ShapereactcomponentSectionSection"] | undefined | null
|
|
4632
|
+
};
|
|
4633
|
+
["Shapereactcomponent"]: {
|
|
4634
|
+
__typename: "Shapereactcomponent",
|
|
4635
|
+
section?: GraphQLTypes["ShapereactcomponentSection"] | undefined | null,
|
|
4445
4636
|
_id: string,
|
|
4446
4637
|
createdAt?: number | undefined | null,
|
|
4447
4638
|
updatedAt?: number | undefined | null
|
|
4448
4639
|
};
|
|
4449
4640
|
["RootParamsInput"]: {
|
|
4450
|
-
_version?: string | undefined | null
|
|
4451
|
-
locale?: string | undefined | null
|
|
4641
|
+
_version?: string | undefined | null
|
|
4452
4642
|
};
|
|
4453
4643
|
["RootParamsEnum"]: RootParamsEnum;
|
|
4454
|
-
["docsSortInput"]: {
|
|
4455
|
-
slug?: GraphQLTypes["Sort"] | undefined | null,
|
|
4456
|
-
createdAt?: GraphQLTypes["Sort"] | undefined | null,
|
|
4457
|
-
updatedAt?: GraphQLTypes["Sort"] | undefined | null
|
|
4458
|
-
};
|
|
4459
|
-
["docsFilterInput"]: {
|
|
4460
|
-
slug?: GraphQLTypes["FilterInputString"] | undefined | null
|
|
4461
|
-
};
|
|
4462
4644
|
["ID"]: "scalar" & { name: "ID" }
|
|
4463
4645
|
}
|
|
4464
4646
|
export enum Sort {
|
|
@@ -4524,36 +4706,21 @@ export enum CMSType {
|
|
|
4524
4706
|
OBJECT = "OBJECT",
|
|
4525
4707
|
OBJECT_TABS = "OBJECT_TABS"
|
|
4526
4708
|
}
|
|
4527
|
-
export enum ModelEnum {
|
|
4528
|
-
docs = "docs"
|
|
4529
|
-
}
|
|
4530
|
-
export enum ViewEnum {
|
|
4531
|
-
account = "account",
|
|
4532
|
-
features = "features",
|
|
4533
|
-
homepage = "homepage",
|
|
4534
|
-
howitworks = "howitworks",
|
|
4535
|
-
pricing = "pricing"
|
|
4536
|
-
}
|
|
4537
4709
|
export enum ShapeEnum {
|
|
4538
|
-
|
|
4539
|
-
|
|
4540
|
-
|
|
4541
|
-
|
|
4542
|
-
|
|
4543
|
-
|
|
4544
|
-
|
|
4545
|
-
|
|
4546
|
-
|
|
4547
|
-
|
|
4548
|
-
|
|
4549
|
-
pricingv1 = "pricingv1",
|
|
4550
|
-
profile_info = "profile_info",
|
|
4551
|
-
support = "support",
|
|
4552
|
-
usage = "usage"
|
|
4710
|
+
examples_contactform = "examples_contactform",
|
|
4711
|
+
examples_featuregrid = "examples_featuregrid",
|
|
4712
|
+
examples_herosection = "examples_herosection",
|
|
4713
|
+
examples_newslettersignup = "examples_newslettersignup",
|
|
4714
|
+
examples_pricingplans = "examples_pricingplans",
|
|
4715
|
+
examples_pricingplans_1 = "examples_pricingplans_1",
|
|
4716
|
+
examples_productcard = "examples_productcard",
|
|
4717
|
+
examples_testimonialcard = "examples_testimonialcard",
|
|
4718
|
+
examplescontactform = "examplescontactform",
|
|
4719
|
+
productcard = "productcard",
|
|
4720
|
+
reactcomponent = "reactcomponent"
|
|
4553
4721
|
}
|
|
4554
4722
|
export enum RootParamsEnum {
|
|
4555
|
-
_version = "_version"
|
|
4556
|
-
locale = "locale"
|
|
4723
|
+
_version = "_version"
|
|
4557
4724
|
}
|
|
4558
4725
|
|
|
4559
4726
|
type ZEUS_VARIABLES = {
|
|
@@ -4576,13 +4743,10 @@ type ZEUS_VARIABLES = {
|
|
|
4576
4743
|
["FilterInputString"]: ValueTypes["FilterInputString"];
|
|
4577
4744
|
["RootParamsAdminType"]: ValueTypes["RootParamsAdminType"];
|
|
4578
4745
|
["FormFieldType"]: ValueTypes["FormFieldType"];
|
|
4746
|
+
["GenerateHusarShapeImplementorInput"]: ValueTypes["GenerateHusarShapeImplementorInput"];
|
|
4579
4747
|
["CMSType"]: ValueTypes["CMSType"];
|
|
4580
|
-
["ModelEnum"]: ValueTypes["ModelEnum"];
|
|
4581
|
-
["ViewEnum"]: ValueTypes["ViewEnum"];
|
|
4582
4748
|
["ShapeEnum"]: ValueTypes["ShapeEnum"];
|
|
4583
4749
|
["RootParamsInput"]: ValueTypes["RootParamsInput"];
|
|
4584
4750
|
["RootParamsEnum"]: ValueTypes["RootParamsEnum"];
|
|
4585
|
-
["docsSortInput"]: ValueTypes["docsSortInput"];
|
|
4586
|
-
["docsFilterInput"]: ValueTypes["docsFilterInput"];
|
|
4587
4751
|
["ID"]: ValueTypes["ID"];
|
|
4588
4752
|
}
|