@husar.ai/cli 0.1.5 → 0.1.7
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/index.js +30 -21
- package/dist/index.js.map +1 -1
- package/dist/zeus/const.d.ts +1 -0
- package/dist/zeus/const.js +217 -183
- package/dist/zeus/const.js.map +1 -1
- package/dist/zeus/index.d.ts +925 -769
- package/dist/zeus/index.js +18 -6
- package/dist/zeus/index.js.map +1 -1
- package/package.json +2 -2
- package/src/index.ts +32 -21
- package/src/zeus/const.ts +217 -183
- package/src/zeus/index.ts +926 -774
package/src/zeus/index.ts
CHANGED
|
@@ -997,6 +997,18 @@ export type ValueTypes = {
|
|
|
997
997
|
value?:boolean | `@${string}`,
|
|
998
998
|
children?:ValueTypes["Condition"],
|
|
999
999
|
__typename?: boolean | `@${string}`
|
|
1000
|
+
}>;
|
|
1001
|
+
["ActionType"]:ActionType;
|
|
1002
|
+
["Action"]: AliasType<{
|
|
1003
|
+
path?:boolean | `@${string}`,
|
|
1004
|
+
type?:boolean | `@${string}`,
|
|
1005
|
+
value?:boolean | `@${string}`,
|
|
1006
|
+
__typename?: boolean | `@${string}`
|
|
1007
|
+
}>;
|
|
1008
|
+
["Rule"]: AliasType<{
|
|
1009
|
+
conditions?:ValueTypes["Condition"],
|
|
1010
|
+
actions?:ValueTypes["Action"],
|
|
1011
|
+
__typename?: boolean | `@${string}`
|
|
1000
1012
|
}>;
|
|
1001
1013
|
["Visual"]: AliasType<{
|
|
1002
1014
|
className?:boolean | `@${string}`,
|
|
@@ -1017,6 +1029,10 @@ export type ValueTypes = {
|
|
|
1017
1029
|
ne?: string | undefined | null | Variable<any, string>,
|
|
1018
1030
|
contain?: string | undefined | null | Variable<any, string>
|
|
1019
1031
|
};
|
|
1032
|
+
["Mutation"]: AliasType<{
|
|
1033
|
+
heartbeat?:boolean | `@${string}`,
|
|
1034
|
+
__typename?: boolean | `@${string}`
|
|
1035
|
+
}>;
|
|
1020
1036
|
["RootParamsAdminType"]:unknown;
|
|
1021
1037
|
["Shape"]: AliasType<{
|
|
1022
1038
|
name?:boolean | `@${string}`,
|
|
@@ -1024,6 +1040,7 @@ export type ValueTypes = {
|
|
|
1024
1040
|
display?:boolean | `@${string}`,
|
|
1025
1041
|
previewFields?:boolean | `@${string}`,
|
|
1026
1042
|
prompt?:boolean | `@${string}`,
|
|
1043
|
+
promptResponse?:ValueTypes["AiComponent"],
|
|
1027
1044
|
fields?:ValueTypes["CMSField"],
|
|
1028
1045
|
__typename?: boolean | `@${string}`
|
|
1029
1046
|
}>;
|
|
@@ -1033,6 +1050,20 @@ export type ValueTypes = {
|
|
|
1033
1050
|
slug?:boolean | `@${string}`,
|
|
1034
1051
|
display?:boolean | `@${string}`,
|
|
1035
1052
|
__typename?: boolean | `@${string}`
|
|
1053
|
+
}>;
|
|
1054
|
+
["AiComponent"]: AliasType<{
|
|
1055
|
+
name?:boolean | `@${string}`,
|
|
1056
|
+
htmlComponent?:boolean | `@${string}`,
|
|
1057
|
+
className?:boolean | `@${string}`,
|
|
1058
|
+
textContent?:boolean | `@${string}`,
|
|
1059
|
+
children?:ValueTypes["AiComponent"],
|
|
1060
|
+
__typename?: boolean | `@${string}`
|
|
1061
|
+
}>;
|
|
1062
|
+
["FormFieldVisual"]: AliasType<{
|
|
1063
|
+
className?:boolean | `@${string}`,
|
|
1064
|
+
component?:boolean | `@${string}`,
|
|
1065
|
+
rules?:ValueTypes["Rule"],
|
|
1066
|
+
__typename?: boolean | `@${string}`
|
|
1036
1067
|
}>;
|
|
1037
1068
|
["FormField"]: AliasType<{
|
|
1038
1069
|
name?:boolean | `@${string}`,
|
|
@@ -1040,8 +1071,7 @@ export type ValueTypes = {
|
|
|
1040
1071
|
type?:boolean | `@${string}`,
|
|
1041
1072
|
list?:boolean | `@${string}`,
|
|
1042
1073
|
fields?:ValueTypes["FormField"],
|
|
1043
|
-
visual?:ValueTypes["
|
|
1044
|
-
conditions?:ValueTypes["Condition"],
|
|
1074
|
+
visual?:ValueTypes["FormFieldVisual"],
|
|
1045
1075
|
placeholder?:boolean | `@${string}`,
|
|
1046
1076
|
root?:boolean | `@${string}`,
|
|
1047
1077
|
options?:boolean | `@${string}`,
|
|
@@ -1112,11 +1142,30 @@ export type ValueTypes = {
|
|
|
1112
1142
|
label?:boolean | `@${string}`,
|
|
1113
1143
|
options?:boolean | `@${string}`,
|
|
1114
1144
|
__typename?: boolean | `@${string}`
|
|
1145
|
+
}>;
|
|
1146
|
+
["FormCheckboxField"]: AliasType<{
|
|
1147
|
+
label?:boolean | `@${string}`,
|
|
1148
|
+
__typename?: boolean | `@${string}`
|
|
1149
|
+
}>;
|
|
1150
|
+
["FormButtonField"]: AliasType<{
|
|
1151
|
+
label?:boolean | `@${string}`,
|
|
1152
|
+
__typename?: boolean | `@${string}`
|
|
1115
1153
|
}>;
|
|
1116
1154
|
["FormProductField"]: AliasType<{
|
|
1117
1155
|
label?:boolean | `@${string}`,
|
|
1118
1156
|
name?:boolean | `@${string}`,
|
|
1119
1157
|
__typename?: boolean | `@${string}`
|
|
1158
|
+
}>;
|
|
1159
|
+
["FormVariableField"]: AliasType<{
|
|
1160
|
+
label?:boolean | `@${string}`,
|
|
1161
|
+
name?:boolean | `@${string}`,
|
|
1162
|
+
defaultValue?:boolean | `@${string}`,
|
|
1163
|
+
__typename?: boolean | `@${string}`
|
|
1164
|
+
}>;
|
|
1165
|
+
["FormDisplayField"]: AliasType<{
|
|
1166
|
+
label?:boolean | `@${string}`,
|
|
1167
|
+
path?:boolean | `@${string}`,
|
|
1168
|
+
__typename?: boolean | `@${string}`
|
|
1120
1169
|
}>;
|
|
1121
1170
|
/** This enum is defined externally and injected via federation */
|
|
1122
1171
|
["CMSType"]:CMSType;
|
|
@@ -1135,10 +1184,6 @@ variantsdocsBySlug?: [{ slug: string | Variable<any, string>},ValueTypes["docs"]
|
|
|
1135
1184
|
fieldSetdocs?:boolean | `@${string}`,
|
|
1136
1185
|
modeldocs?:boolean | `@${string}`,
|
|
1137
1186
|
previewFieldsdocs?:boolean | `@${string}`,
|
|
1138
|
-
fieldSetShapecta?:boolean | `@${string}`,
|
|
1139
|
-
modelShapecta?:boolean | `@${string}`,
|
|
1140
|
-
previewFieldsShapecta?:boolean | `@${string}`,
|
|
1141
|
-
oneShapecta?:ValueTypes["Shapecta"],
|
|
1142
1187
|
fieldSetShapedocs_content?:boolean | `@${string}`,
|
|
1143
1188
|
modelShapedocs_content?:boolean | `@${string}`,
|
|
1144
1189
|
previewFieldsShapedocs_content?:boolean | `@${string}`,
|
|
@@ -1147,6 +1192,10 @@ variantsdocsBySlug?: [{ slug: string | Variable<any, string>},ValueTypes["docs"]
|
|
|
1147
1192
|
modelShapedocs_nav?:boolean | `@${string}`,
|
|
1148
1193
|
previewFieldsShapedocs_nav?:boolean | `@${string}`,
|
|
1149
1194
|
oneShapedocs_nav?:ValueTypes["Shapedocs_nav"],
|
|
1195
|
+
fieldSetShapefeaturepresentation?:boolean | `@${string}`,
|
|
1196
|
+
modelShapefeaturepresentation?:boolean | `@${string}`,
|
|
1197
|
+
previewFieldsShapefeaturepresentation?:boolean | `@${string}`,
|
|
1198
|
+
oneShapefeaturepresentation?:ValueTypes["Shapefeaturepresentation"],
|
|
1150
1199
|
fieldSetShapefoot?:boolean | `@${string}`,
|
|
1151
1200
|
modelShapefoot?:boolean | `@${string}`,
|
|
1152
1201
|
previewFieldsShapefoot?:boolean | `@${string}`,
|
|
@@ -1159,10 +1208,10 @@ variantsdocsBySlug?: [{ slug: string | Variable<any, string>},ValueTypes["docs"]
|
|
|
1159
1208
|
modelShapeherox?:boolean | `@${string}`,
|
|
1160
1209
|
previewFieldsShapeherox?:boolean | `@${string}`,
|
|
1161
1210
|
oneShapeherox?:ValueTypes["Shapeherox"],
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1211
|
+
fieldSetShapelista_projektow?:boolean | `@${string}`,
|
|
1212
|
+
modelShapelista_projektow?:boolean | `@${string}`,
|
|
1213
|
+
previewFieldsShapelista_projektow?:boolean | `@${string}`,
|
|
1214
|
+
oneShapelista_projektow?:ValueTypes["Shapelista_projektow"],
|
|
1166
1215
|
fieldSetShapenav?:boolean | `@${string}`,
|
|
1167
1216
|
modelShapenav?:boolean | `@${string}`,
|
|
1168
1217
|
previewFieldsShapenav?:boolean | `@${string}`,
|
|
@@ -1171,26 +1220,32 @@ variantsdocsBySlug?: [{ slug: string | Variable<any, string>},ValueTypes["docs"]
|
|
|
1171
1220
|
modelShapenewshape?:boolean | `@${string}`,
|
|
1172
1221
|
previewFieldsShapenewshape?:boolean | `@${string}`,
|
|
1173
1222
|
oneShapenewshape?:ValueTypes["Shapenewshape"],
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
fieldSetShapenewsletter?:boolean | `@${string}`,
|
|
1179
|
-
modelShapenewsletter?:boolean | `@${string}`,
|
|
1180
|
-
previewFieldsShapenewsletter?:boolean | `@${string}`,
|
|
1181
|
-
oneShapenewsletter?:ValueTypes["Shapenewsletter"],
|
|
1182
|
-
fieldSetShapepricing?:boolean | `@${string}`,
|
|
1183
|
-
modelShapepricing?:boolean | `@${string}`,
|
|
1184
|
-
previewFieldsShapepricing?:boolean | `@${string}`,
|
|
1185
|
-
oneShapepricing?:ValueTypes["Shapepricing"],
|
|
1223
|
+
fieldSetShapepricing_table?:boolean | `@${string}`,
|
|
1224
|
+
modelShapepricing_table?:boolean | `@${string}`,
|
|
1225
|
+
previewFieldsShapepricing_table?:boolean | `@${string}`,
|
|
1226
|
+
oneShapepricing_table?:ValueTypes["Shapepricing_table"],
|
|
1186
1227
|
fieldSetShapepricingv1?:boolean | `@${string}`,
|
|
1187
1228
|
modelShapepricingv1?:boolean | `@${string}`,
|
|
1188
1229
|
previewFieldsShapepricingv1?:boolean | `@${string}`,
|
|
1189
1230
|
oneShapepricingv1?:ValueTypes["Shapepricingv1"],
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1231
|
+
fieldSetShapeprofile_info?:boolean | `@${string}`,
|
|
1232
|
+
modelShapeprofile_info?:boolean | `@${string}`,
|
|
1233
|
+
previewFieldsShapeprofile_info?:boolean | `@${string}`,
|
|
1234
|
+
oneShapeprofile_info?:ValueTypes["Shapeprofile_info"],
|
|
1235
|
+
fieldSetShapeusage?:boolean | `@${string}`,
|
|
1236
|
+
modelShapeusage?:boolean | `@${string}`,
|
|
1237
|
+
previewFieldsShapeusage?:boolean | `@${string}`,
|
|
1238
|
+
oneShapeusage?:ValueTypes["Shapeusage"],
|
|
1239
|
+
variantsViewaccount?:ValueTypes["Viewaccount"],
|
|
1240
|
+
fieldSetViewaccount?:boolean | `@${string}`,
|
|
1241
|
+
modelViewaccount?:boolean | `@${string}`,
|
|
1242
|
+
previewFieldsViewaccount?:boolean | `@${string}`,
|
|
1243
|
+
oneViewaccount?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>},ValueTypes["Viewaccount"]],
|
|
1244
|
+
variantsViewfeatures?:ValueTypes["Viewfeatures"],
|
|
1245
|
+
fieldSetViewfeatures?:boolean | `@${string}`,
|
|
1246
|
+
modelViewfeatures?:boolean | `@${string}`,
|
|
1247
|
+
previewFieldsViewfeatures?:boolean | `@${string}`,
|
|
1248
|
+
oneViewfeatures?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>},ValueTypes["Viewfeatures"]],
|
|
1194
1249
|
variantsViewhomepage?:ValueTypes["Viewhomepage"],
|
|
1195
1250
|
fieldSetViewhomepage?:boolean | `@${string}`,
|
|
1196
1251
|
modelViewhomepage?:boolean | `@${string}`,
|
|
@@ -1201,16 +1256,11 @@ oneViewhomepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | nu
|
|
|
1201
1256
|
modelViewhowitworks?:boolean | `@${string}`,
|
|
1202
1257
|
previewFieldsViewhowitworks?:boolean | `@${string}`,
|
|
1203
1258
|
oneViewhowitworks?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>},ValueTypes["Viewhowitworks"]],
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
variantsFormtest?:ValueTypes["Formtest"],
|
|
1210
|
-
fieldSetFormtest?:boolean | `@${string}`,
|
|
1211
|
-
modelFormtest?:boolean | `@${string}`,
|
|
1212
|
-
previewFieldsFormtest?:boolean | `@${string}`,
|
|
1213
|
-
oneFormtest?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>},ValueTypes["Formtest"]],
|
|
1259
|
+
variantsViewpricing?:ValueTypes["Viewpricing"],
|
|
1260
|
+
fieldSetViewpricing?:boolean | `@${string}`,
|
|
1261
|
+
modelViewpricing?:boolean | `@${string}`,
|
|
1262
|
+
previewFieldsViewpricing?:boolean | `@${string}`,
|
|
1263
|
+
oneViewpricing?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>},ValueTypes["Viewpricing"]],
|
|
1214
1264
|
__typename?: boolean | `@${string}`
|
|
1215
1265
|
}>;
|
|
1216
1266
|
["RootParamsType"]: AliasType<{
|
|
@@ -1243,13 +1293,46 @@ oneFormtest?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null |
|
|
|
1243
1293
|
draft_version?:boolean | `@${string}`,
|
|
1244
1294
|
json_ld?:boolean | `@${string}`,
|
|
1245
1295
|
__typename?: boolean | `@${string}`
|
|
1296
|
+
}>;
|
|
1297
|
+
["ViewaccountMain"]: AliasType<{
|
|
1298
|
+
profile?:ValueTypes["Shapeprofile_info"],
|
|
1299
|
+
projects?:ValueTypes["Shapelista_projektow"],
|
|
1300
|
+
__typename?: boolean | `@${string}`
|
|
1301
|
+
}>;
|
|
1302
|
+
["Viewaccount"]: AliasType<{
|
|
1303
|
+
_version?:ValueTypes["VersionField"],
|
|
1304
|
+
main?:ValueTypes["ViewaccountMain"],
|
|
1305
|
+
locale?:boolean | `@${string}`,
|
|
1306
|
+
slug?:boolean | `@${string}`,
|
|
1307
|
+
_id?:boolean | `@${string}`,
|
|
1308
|
+
createdAt?:boolean | `@${string}`,
|
|
1309
|
+
updatedAt?:boolean | `@${string}`,
|
|
1310
|
+
draft_version?:boolean | `@${string}`,
|
|
1311
|
+
json_ld?:boolean | `@${string}`,
|
|
1312
|
+
__typename?: boolean | `@${string}`
|
|
1313
|
+
}>;
|
|
1314
|
+
["ViewfeaturesMain"]: AliasType<{
|
|
1315
|
+
auto_translation?:ValueTypes["Shapefeaturepresentation"],
|
|
1316
|
+
ai_component?:ValueTypes["Shapefeaturepresentation"],
|
|
1317
|
+
__typename?: boolean | `@${string}`
|
|
1318
|
+
}>;
|
|
1319
|
+
["Viewfeatures"]: AliasType<{
|
|
1320
|
+
_version?:ValueTypes["VersionField"],
|
|
1321
|
+
main?:ValueTypes["ViewfeaturesMain"],
|
|
1322
|
+
locale?:boolean | `@${string}`,
|
|
1323
|
+
slug?:boolean | `@${string}`,
|
|
1324
|
+
_id?:boolean | `@${string}`,
|
|
1325
|
+
createdAt?:boolean | `@${string}`,
|
|
1326
|
+
updatedAt?:boolean | `@${string}`,
|
|
1327
|
+
draft_version?:boolean | `@${string}`,
|
|
1328
|
+
json_ld?:boolean | `@${string}`,
|
|
1329
|
+
__typename?: boolean | `@${string}`
|
|
1246
1330
|
}>;
|
|
1247
1331
|
["Viewhomepage"]: AliasType<{
|
|
1248
1332
|
_version?:ValueTypes["VersionField"],
|
|
1249
1333
|
nav?:ValueTypes["Shapenav"],
|
|
1250
1334
|
main?:ValueTypes["Shapehero"],
|
|
1251
1335
|
hero?:ValueTypes["Shapeherox"],
|
|
1252
|
-
learn?:ValueTypes["Shapelearn"],
|
|
1253
1336
|
pricing?:ValueTypes["Shapepricingv1"],
|
|
1254
1337
|
footer?:ValueTypes["Shapefoot"],
|
|
1255
1338
|
locale?:boolean | `@${string}`,
|
|
@@ -1280,21 +1363,18 @@ oneFormtest?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null |
|
|
|
1280
1363
|
json_ld?:boolean | `@${string}`,
|
|
1281
1364
|
__typename?: boolean | `@${string}`
|
|
1282
1365
|
}>;
|
|
1283
|
-
["
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
}
|
|
1289
|
-
|
|
1290
|
-
cta_container?:ValueTypes["ShapectaCta_sectionCta_container"],
|
|
1291
|
-
__typename?: boolean | `@${string}`
|
|
1292
|
-
}>;
|
|
1293
|
-
["Shapecta"]: AliasType<{
|
|
1294
|
-
cta_section?:ValueTypes["ShapectaCta_section"],
|
|
1366
|
+
["Viewpricing"]: AliasType<{
|
|
1367
|
+
_version?:ValueTypes["VersionField"],
|
|
1368
|
+
pricing?:ValueTypes["Shapepricingv1"],
|
|
1369
|
+
table?:ValueTypes["Shapepricing_table"],
|
|
1370
|
+
cta?:ValueTypes["Shapenewshape"],
|
|
1371
|
+
locale?:boolean | `@${string}`,
|
|
1372
|
+
slug?:boolean | `@${string}`,
|
|
1295
1373
|
_id?:boolean | `@${string}`,
|
|
1296
1374
|
createdAt?:boolean | `@${string}`,
|
|
1297
1375
|
updatedAt?:boolean | `@${string}`,
|
|
1376
|
+
draft_version?:boolean | `@${string}`,
|
|
1377
|
+
json_ld?:boolean | `@${string}`,
|
|
1298
1378
|
__typename?: boolean | `@${string}`
|
|
1299
1379
|
}>;
|
|
1300
1380
|
["Shapedocs_contentDocumentation_pageContent_containerDoc_content"]: AliasType<{
|
|
@@ -1350,6 +1430,19 @@ oneFormtest?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null |
|
|
|
1350
1430
|
createdAt?:boolean | `@${string}`,
|
|
1351
1431
|
updatedAt?:boolean | `@${string}`,
|
|
1352
1432
|
__typename?: boolean | `@${string}`
|
|
1433
|
+
}>;
|
|
1434
|
+
["ShapefeaturepresentationMain"]: AliasType<{
|
|
1435
|
+
title?:boolean | `@${string}`,
|
|
1436
|
+
subtitle?:boolean | `@${string}`,
|
|
1437
|
+
content?:boolean | `@${string}`,
|
|
1438
|
+
__typename?: boolean | `@${string}`
|
|
1439
|
+
}>;
|
|
1440
|
+
["Shapefeaturepresentation"]: AliasType<{
|
|
1441
|
+
main?:ValueTypes["ShapefeaturepresentationMain"],
|
|
1442
|
+
_id?:boolean | `@${string}`,
|
|
1443
|
+
createdAt?:boolean | `@${string}`,
|
|
1444
|
+
updatedAt?:boolean | `@${string}`,
|
|
1445
|
+
__typename?: boolean | `@${string}`
|
|
1353
1446
|
}>;
|
|
1354
1447
|
["ShapefootFooterFooter_containerFooter_links"]: AliasType<{
|
|
1355
1448
|
privacy_policy?:boolean | `@${string}`,
|
|
@@ -1373,11 +1466,15 @@ oneFormtest?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null |
|
|
|
1373
1466
|
createdAt?:boolean | `@${string}`,
|
|
1374
1467
|
updatedAt?:boolean | `@${string}`,
|
|
1375
1468
|
__typename?: boolean | `@${string}`
|
|
1469
|
+
}>;
|
|
1470
|
+
["ShapeheroHero_componentSlogan_parent"]: AliasType<{
|
|
1471
|
+
slogan?:boolean | `@${string}`,
|
|
1472
|
+
__typename?: boolean | `@${string}`
|
|
1376
1473
|
}>;
|
|
1377
1474
|
["ShapeheroHero_component"]: AliasType<{
|
|
1378
1475
|
logoplace?:boolean | `@${string}`,
|
|
1379
1476
|
logo?:boolean | `@${string}`,
|
|
1380
|
-
|
|
1477
|
+
slogan_parent?:ValueTypes["ShapeheroHero_componentSlogan_parent"],
|
|
1381
1478
|
subslogan?:boolean | `@${string}`,
|
|
1382
1479
|
__typename?: boolean | `@${string}`
|
|
1383
1480
|
}>;
|
|
@@ -1396,16 +1493,20 @@ oneFormtest?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null |
|
|
|
1396
1493
|
title?:boolean | `@${string}`,
|
|
1397
1494
|
description?:boolean | `@${string}`,
|
|
1398
1495
|
features?:ValueTypes["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"],
|
|
1399
|
-
call_to_action?:boolean | `@${string}`,
|
|
1400
1496
|
__typename?: boolean | `@${string}`
|
|
1401
1497
|
}>;
|
|
1402
1498
|
["ShapeheroxHero_sectionHero_containerImage_wrapper"]: AliasType<{
|
|
1403
1499
|
hero_image?:ValueTypes["ImageField"],
|
|
1404
1500
|
__typename?: boolean | `@${string}`
|
|
1501
|
+
}>;
|
|
1502
|
+
["ShapeheroxHero_sectionHero_containerPresentation"]: AliasType<{
|
|
1503
|
+
video?:ValueTypes["VideoField"],
|
|
1504
|
+
__typename?: boolean | `@${string}`
|
|
1405
1505
|
}>;
|
|
1406
1506
|
["ShapeheroxHero_sectionHero_container"]: AliasType<{
|
|
1407
1507
|
text_wrapper?:ValueTypes["ShapeheroxHero_sectionHero_containerText_wrapper"],
|
|
1408
1508
|
image_wrapper?:ValueTypes["ShapeheroxHero_sectionHero_containerImage_wrapper"],
|
|
1509
|
+
presentation?:ValueTypes["ShapeheroxHero_sectionHero_containerPresentation"],
|
|
1409
1510
|
__typename?: boolean | `@${string}`
|
|
1410
1511
|
}>;
|
|
1411
1512
|
["ShapeheroxHero_section"]: AliasType<{
|
|
@@ -1419,19 +1520,24 @@ oneFormtest?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null |
|
|
|
1419
1520
|
updatedAt?:boolean | `@${string}`,
|
|
1420
1521
|
__typename?: boolean | `@${string}`
|
|
1421
1522
|
}>;
|
|
1422
|
-
["
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
cta_button?:boolean | `@${string}`,
|
|
1523
|
+
["Shapelista_projektowListProjectsInstance"]: AliasType<{
|
|
1524
|
+
title?:boolean | `@${string}`,
|
|
1525
|
+
link?:boolean | `@${string}`,
|
|
1526
|
+
remove_button?:boolean | `@${string}`,
|
|
1427
1527
|
__typename?: boolean | `@${string}`
|
|
1428
1528
|
}>;
|
|
1429
|
-
["
|
|
1430
|
-
|
|
1529
|
+
["Shapelista_projektowListProjects"]: AliasType<{
|
|
1530
|
+
instance?:ValueTypes["Shapelista_projektowListProjectsInstance"],
|
|
1431
1531
|
__typename?: boolean | `@${string}`
|
|
1432
1532
|
}>;
|
|
1433
|
-
["
|
|
1434
|
-
|
|
1533
|
+
["Shapelista_projektowList"]: AliasType<{
|
|
1534
|
+
title?:boolean | `@${string}`,
|
|
1535
|
+
subtitle?:boolean | `@${string}`,
|
|
1536
|
+
projects?:ValueTypes["Shapelista_projektowListProjects"],
|
|
1537
|
+
__typename?: boolean | `@${string}`
|
|
1538
|
+
}>;
|
|
1539
|
+
["Shapelista_projektow"]: AliasType<{
|
|
1540
|
+
list?:ValueTypes["Shapelista_projektowList"],
|
|
1435
1541
|
_id?:boolean | `@${string}`,
|
|
1436
1542
|
createdAt?:boolean | `@${string}`,
|
|
1437
1543
|
updatedAt?:boolean | `@${string}`,
|
|
@@ -1479,61 +1585,35 @@ oneFormtest?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null |
|
|
|
1479
1585
|
updatedAt?:boolean | `@${string}`,
|
|
1480
1586
|
__typename?: boolean | `@${string}`
|
|
1481
1587
|
}>;
|
|
1482
|
-
["
|
|
1483
|
-
_id?:boolean | `@${string}`,
|
|
1484
|
-
createdAt?:boolean | `@${string}`,
|
|
1485
|
-
updatedAt?:boolean | `@${string}`,
|
|
1486
|
-
__typename?: boolean | `@${string}`
|
|
1487
|
-
}>;
|
|
1488
|
-
["ShapenewsletterNewsletter_sectionNewsletter_containerNewsletter_form"]: AliasType<{
|
|
1489
|
-
email_input?:boolean | `@${string}`,
|
|
1490
|
-
subscribe_button?:boolean | `@${string}`,
|
|
1491
|
-
__typename?: boolean | `@${string}`
|
|
1492
|
-
}>;
|
|
1493
|
-
["ShapenewsletterNewsletter_sectionNewsletter_container"]: AliasType<{
|
|
1494
|
-
newsletter_heading?:boolean | `@${string}`,
|
|
1495
|
-
newsletter_description?:boolean | `@${string}`,
|
|
1496
|
-
newsletter_form?:ValueTypes["ShapenewsletterNewsletter_sectionNewsletter_containerNewsletter_form"],
|
|
1497
|
-
__typename?: boolean | `@${string}`
|
|
1498
|
-
}>;
|
|
1499
|
-
["ShapenewsletterNewsletter_section"]: AliasType<{
|
|
1500
|
-
newsletter_container?:ValueTypes["ShapenewsletterNewsletter_sectionNewsletter_container"],
|
|
1501
|
-
__typename?: boolean | `@${string}`
|
|
1502
|
-
}>;
|
|
1503
|
-
["Shapenewsletter"]: AliasType<{
|
|
1504
|
-
newsletter_section?:ValueTypes["ShapenewsletterNewsletter_section"],
|
|
1505
|
-
_id?:boolean | `@${string}`,
|
|
1506
|
-
createdAt?:boolean | `@${string}`,
|
|
1507
|
-
updatedAt?:boolean | `@${string}`,
|
|
1508
|
-
__typename?: boolean | `@${string}`
|
|
1509
|
-
}>;
|
|
1510
|
-
["ShapepricingPricing_sectionPricing_header"]: AliasType<{
|
|
1588
|
+
["Shapepricing_tablePricing_sectionHeader_wrapper"]: AliasType<{
|
|
1511
1589
|
title?:boolean | `@${string}`,
|
|
1512
|
-
|
|
1590
|
+
description?:boolean | `@${string}`,
|
|
1513
1591
|
__typename?: boolean | `@${string}`
|
|
1514
1592
|
}>;
|
|
1515
|
-
["
|
|
1516
|
-
|
|
1593
|
+
["Shapepricing_tablePricing_sectionPricing_tableTable_head"]: AliasType<{
|
|
1594
|
+
feature?:boolean | `@${string}`,
|
|
1595
|
+
unit?:boolean | `@${string}`,
|
|
1596
|
+
price?:boolean | `@${string}`,
|
|
1517
1597
|
__typename?: boolean | `@${string}`
|
|
1518
1598
|
}>;
|
|
1519
|
-
["
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
plan_cta?:boolean | `@${string}`,
|
|
1599
|
+
["Shapepricing_tablePricing_sectionPricing_tableRows"]: AliasType<{
|
|
1600
|
+
feature?:boolean | `@${string}`,
|
|
1601
|
+
unit?:boolean | `@${string}`,
|
|
1602
|
+
price?:boolean | `@${string}`,
|
|
1524
1603
|
__typename?: boolean | `@${string}`
|
|
1525
1604
|
}>;
|
|
1526
|
-
["
|
|
1527
|
-
|
|
1605
|
+
["Shapepricing_tablePricing_sectionPricing_table"]: AliasType<{
|
|
1606
|
+
table_head?:ValueTypes["Shapepricing_tablePricing_sectionPricing_tableTable_head"],
|
|
1607
|
+
rows?:ValueTypes["Shapepricing_tablePricing_sectionPricing_tableRows"],
|
|
1528
1608
|
__typename?: boolean | `@${string}`
|
|
1529
1609
|
}>;
|
|
1530
|
-
["
|
|
1531
|
-
|
|
1532
|
-
|
|
1610
|
+
["Shapepricing_tablePricing_section"]: AliasType<{
|
|
1611
|
+
header_wrapper?:ValueTypes["Shapepricing_tablePricing_sectionHeader_wrapper"],
|
|
1612
|
+
pricing_table?:ValueTypes["Shapepricing_tablePricing_sectionPricing_table"],
|
|
1533
1613
|
__typename?: boolean | `@${string}`
|
|
1534
1614
|
}>;
|
|
1535
|
-
["
|
|
1536
|
-
pricing_section?:ValueTypes["
|
|
1615
|
+
["Shapepricing_table"]: AliasType<{
|
|
1616
|
+
pricing_section?:ValueTypes["Shapepricing_tablePricing_section"],
|
|
1537
1617
|
_id?:boolean | `@${string}`,
|
|
1538
1618
|
createdAt?:boolean | `@${string}`,
|
|
1539
1619
|
updatedAt?:boolean | `@${string}`,
|
|
@@ -1585,111 +1665,67 @@ oneFormtest?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null |
|
|
|
1585
1665
|
updatedAt?:boolean | `@${string}`,
|
|
1586
1666
|
__typename?: boolean | `@${string}`
|
|
1587
1667
|
}>;
|
|
1588
|
-
["
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
}>;
|
|
1593
|
-
["ShapetestaRootHeader"]: AliasType<{
|
|
1594
|
-
nav?:ValueTypes["ShapetestaRootHeaderNav"],
|
|
1668
|
+
["Shapeprofile_infoProfile_sectionAccount_headerInfo"]: AliasType<{
|
|
1669
|
+
full_name?:boolean | `@${string}`,
|
|
1670
|
+
company?:boolean | `@${string}`,
|
|
1671
|
+
email?:boolean | `@${string}`,
|
|
1595
1672
|
__typename?: boolean | `@${string}`
|
|
1596
1673
|
}>;
|
|
1597
|
-
["
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
hero_button?:boolean | `@${string}`,
|
|
1674
|
+
["Shapeprofile_infoProfile_sectionAccount_header"]: AliasType<{
|
|
1675
|
+
avatar?:ValueTypes["ImageField"],
|
|
1676
|
+
info?:ValueTypes["Shapeprofile_infoProfile_sectionAccount_headerInfo"],
|
|
1601
1677
|
__typename?: boolean | `@${string}`
|
|
1602
1678
|
}>;
|
|
1603
|
-
["
|
|
1604
|
-
|
|
1605
|
-
features_text?:boolean | `@${string}`,
|
|
1679
|
+
["Shapeprofile_infoProfile_sectionPlan_status"]: AliasType<{
|
|
1680
|
+
plan?:boolean | `@${string}`,
|
|
1606
1681
|
__typename?: boolean | `@${string}`
|
|
1607
1682
|
}>;
|
|
1608
|
-
["
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
__typename?: boolean | `@${string}`
|
|
1612
|
-
}>;
|
|
1613
|
-
["ShapetestaRoot"]: AliasType<{
|
|
1614
|
-
header?:ValueTypes["ShapetestaRootHeader"],
|
|
1615
|
-
main?:ValueTypes["ShapetestaRootMain"],
|
|
1683
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens"]: AliasType<{
|
|
1684
|
+
label?:boolean | `@${string}`,
|
|
1685
|
+
value?:boolean | `@${string}`,
|
|
1616
1686
|
__typename?: boolean | `@${string}`
|
|
1617
1687
|
}>;
|
|
1618
|
-
["
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
createdAt?:boolean | `@${string}`,
|
|
1622
|
-
updatedAt?:boolean | `@${string}`,
|
|
1688
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens"]: AliasType<{
|
|
1689
|
+
label?:boolean | `@${string}`,
|
|
1690
|
+
value?:boolean | `@${string}`,
|
|
1623
1691
|
__typename?: boolean | `@${string}`
|
|
1624
1692
|
}>;
|
|
1625
|
-
["
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
source?:ValueTypes["FormRadioTextField"],
|
|
1693
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests"]: AliasType<{
|
|
1694
|
+
label?:boolean | `@${string}`,
|
|
1695
|
+
value?:boolean | `@${string}`,
|
|
1629
1696
|
__typename?: boolean | `@${string}`
|
|
1630
1697
|
}>;
|
|
1631
|
-
["
|
|
1632
|
-
|
|
1633
|
-
|
|
1698
|
+
["Shapeprofile_infoProfile_sectionUsage_section"]: AliasType<{
|
|
1699
|
+
ai_tokens?:ValueTypes["Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens"],
|
|
1700
|
+
translate_tokens?:ValueTypes["Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens"],
|
|
1701
|
+
monthly_api_requests?:ValueTypes["Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests"],
|
|
1634
1702
|
__typename?: boolean | `@${string}`
|
|
1635
1703
|
}>;
|
|
1636
|
-
["
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1704
|
+
["Shapeprofile_infoProfile_section"]: AliasType<{
|
|
1705
|
+
account_header?:ValueTypes["Shapeprofile_infoProfile_sectionAccount_header"],
|
|
1706
|
+
plan_status?:ValueTypes["Shapeprofile_infoProfile_sectionPlan_status"],
|
|
1707
|
+
usage_section?:ValueTypes["Shapeprofile_infoProfile_sectionUsage_section"],
|
|
1640
1708
|
__typename?: boolean | `@${string}`
|
|
1641
1709
|
}>;
|
|
1642
|
-
["
|
|
1643
|
-
|
|
1644
|
-
_version?:ValueTypes["VersionField"],
|
|
1645
|
-
step1?:ValueTypes["FormstepsStep1"],
|
|
1646
|
-
step2?:ValueTypes["FormstepsStep2"],
|
|
1647
|
-
step3?:ValueTypes["FormstepsStep3"],
|
|
1648
|
-
locale?:boolean | `@${string}`,
|
|
1649
|
-
slug?:boolean | `@${string}`,
|
|
1710
|
+
["Shapeprofile_info"]: AliasType<{
|
|
1711
|
+
profile_section?:ValueTypes["Shapeprofile_infoProfile_section"],
|
|
1650
1712
|
_id?:boolean | `@${string}`,
|
|
1651
1713
|
createdAt?:boolean | `@${string}`,
|
|
1652
1714
|
updatedAt?:boolean | `@${string}`,
|
|
1653
|
-
draft_version?:boolean | `@${string}`,
|
|
1654
|
-
json_ld?:boolean | `@${string}`,
|
|
1655
|
-
__typename?: boolean | `@${string}`
|
|
1656
|
-
}>;
|
|
1657
|
-
["FormtestWindowBasics"]: AliasType<{
|
|
1658
|
-
_mocks?:boolean | `@${string}`,
|
|
1659
|
-
type?:ValueTypes["FormRadioTextField"],
|
|
1660
1715
|
__typename?: boolean | `@${string}`
|
|
1661
1716
|
}>;
|
|
1662
|
-
["
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
__typename?: boolean | `@${string}`
|
|
1668
|
-
}>;
|
|
1669
|
-
["FormtestWindow"]: AliasType<{
|
|
1670
|
-
_mocks?:boolean | `@${string}`,
|
|
1671
|
-
basics?:ValueTypes["FormtestWindowBasics"],
|
|
1672
|
-
techincals?:ValueTypes["FormtestWindowTechincals"],
|
|
1673
|
-
__typename?: boolean | `@${string}`
|
|
1674
|
-
}>;
|
|
1675
|
-
["FormtestHome"]: AliasType<{
|
|
1676
|
-
_mocks?:boolean | `@${string}`,
|
|
1677
|
-
window?:ValueTypes["FormTextField"],
|
|
1678
|
-
add?:ValueTypes["FormRouteField"],
|
|
1717
|
+
["ShapeusageMain"]: AliasType<{
|
|
1718
|
+
title?:boolean | `@${string}`,
|
|
1719
|
+
subtitle?:boolean | `@${string}`,
|
|
1720
|
+
period?:boolean | `@${string}`,
|
|
1721
|
+
tokens_consumed?:boolean | `@${string}`,
|
|
1679
1722
|
__typename?: boolean | `@${string}`
|
|
1680
1723
|
}>;
|
|
1681
|
-
["
|
|
1682
|
-
|
|
1683
|
-
_version?:ValueTypes["VersionField"],
|
|
1684
|
-
window?:ValueTypes["FormtestWindow"],
|
|
1685
|
-
home?:ValueTypes["FormtestHome"],
|
|
1686
|
-
locale?:boolean | `@${string}`,
|
|
1687
|
-
slug?:boolean | `@${string}`,
|
|
1724
|
+
["Shapeusage"]: AliasType<{
|
|
1725
|
+
main?:ValueTypes["ShapeusageMain"],
|
|
1688
1726
|
_id?:boolean | `@${string}`,
|
|
1689
1727
|
createdAt?:boolean | `@${string}`,
|
|
1690
1728
|
updatedAt?:boolean | `@${string}`,
|
|
1691
|
-
draft_version?:boolean | `@${string}`,
|
|
1692
|
-
json_ld?:boolean | `@${string}`,
|
|
1693
1729
|
__typename?: boolean | `@${string}`
|
|
1694
1730
|
}>;
|
|
1695
1731
|
["RootParamsInput"]: {
|
|
@@ -1793,6 +1829,18 @@ export type ResolverInputTypes = {
|
|
|
1793
1829
|
value?:boolean | `@${string}`,
|
|
1794
1830
|
children?:ResolverInputTypes["Condition"],
|
|
1795
1831
|
__typename?: boolean | `@${string}`
|
|
1832
|
+
}>;
|
|
1833
|
+
["ActionType"]:ActionType;
|
|
1834
|
+
["Action"]: AliasType<{
|
|
1835
|
+
path?:boolean | `@${string}`,
|
|
1836
|
+
type?:boolean | `@${string}`,
|
|
1837
|
+
value?:boolean | `@${string}`,
|
|
1838
|
+
__typename?: boolean | `@${string}`
|
|
1839
|
+
}>;
|
|
1840
|
+
["Rule"]: AliasType<{
|
|
1841
|
+
conditions?:ResolverInputTypes["Condition"],
|
|
1842
|
+
actions?:ResolverInputTypes["Action"],
|
|
1843
|
+
__typename?: boolean | `@${string}`
|
|
1796
1844
|
}>;
|
|
1797
1845
|
["Visual"]: AliasType<{
|
|
1798
1846
|
className?:boolean | `@${string}`,
|
|
@@ -1813,6 +1861,10 @@ export type ResolverInputTypes = {
|
|
|
1813
1861
|
ne?: string | undefined | null,
|
|
1814
1862
|
contain?: string | undefined | null
|
|
1815
1863
|
};
|
|
1864
|
+
["Mutation"]: AliasType<{
|
|
1865
|
+
heartbeat?:boolean | `@${string}`,
|
|
1866
|
+
__typename?: boolean | `@${string}`
|
|
1867
|
+
}>;
|
|
1816
1868
|
["RootParamsAdminType"]:unknown;
|
|
1817
1869
|
["Shape"]: AliasType<{
|
|
1818
1870
|
name?:boolean | `@${string}`,
|
|
@@ -1820,6 +1872,7 @@ export type ResolverInputTypes = {
|
|
|
1820
1872
|
display?:boolean | `@${string}`,
|
|
1821
1873
|
previewFields?:boolean | `@${string}`,
|
|
1822
1874
|
prompt?:boolean | `@${string}`,
|
|
1875
|
+
promptResponse?:ResolverInputTypes["AiComponent"],
|
|
1823
1876
|
fields?:ResolverInputTypes["CMSField"],
|
|
1824
1877
|
__typename?: boolean | `@${string}`
|
|
1825
1878
|
}>;
|
|
@@ -1829,6 +1882,20 @@ export type ResolverInputTypes = {
|
|
|
1829
1882
|
slug?:boolean | `@${string}`,
|
|
1830
1883
|
display?:boolean | `@${string}`,
|
|
1831
1884
|
__typename?: boolean | `@${string}`
|
|
1885
|
+
}>;
|
|
1886
|
+
["AiComponent"]: AliasType<{
|
|
1887
|
+
name?:boolean | `@${string}`,
|
|
1888
|
+
htmlComponent?:boolean | `@${string}`,
|
|
1889
|
+
className?:boolean | `@${string}`,
|
|
1890
|
+
textContent?:boolean | `@${string}`,
|
|
1891
|
+
children?:ResolverInputTypes["AiComponent"],
|
|
1892
|
+
__typename?: boolean | `@${string}`
|
|
1893
|
+
}>;
|
|
1894
|
+
["FormFieldVisual"]: AliasType<{
|
|
1895
|
+
className?:boolean | `@${string}`,
|
|
1896
|
+
component?:boolean | `@${string}`,
|
|
1897
|
+
rules?:ResolverInputTypes["Rule"],
|
|
1898
|
+
__typename?: boolean | `@${string}`
|
|
1832
1899
|
}>;
|
|
1833
1900
|
["FormField"]: AliasType<{
|
|
1834
1901
|
name?:boolean | `@${string}`,
|
|
@@ -1836,8 +1903,7 @@ export type ResolverInputTypes = {
|
|
|
1836
1903
|
type?:boolean | `@${string}`,
|
|
1837
1904
|
list?:boolean | `@${string}`,
|
|
1838
1905
|
fields?:ResolverInputTypes["FormField"],
|
|
1839
|
-
visual?:ResolverInputTypes["
|
|
1840
|
-
conditions?:ResolverInputTypes["Condition"],
|
|
1906
|
+
visual?:ResolverInputTypes["FormFieldVisual"],
|
|
1841
1907
|
placeholder?:boolean | `@${string}`,
|
|
1842
1908
|
root?:boolean | `@${string}`,
|
|
1843
1909
|
options?:boolean | `@${string}`,
|
|
@@ -1908,11 +1974,30 @@ export type ResolverInputTypes = {
|
|
|
1908
1974
|
label?:boolean | `@${string}`,
|
|
1909
1975
|
options?:boolean | `@${string}`,
|
|
1910
1976
|
__typename?: boolean | `@${string}`
|
|
1977
|
+
}>;
|
|
1978
|
+
["FormCheckboxField"]: AliasType<{
|
|
1979
|
+
label?:boolean | `@${string}`,
|
|
1980
|
+
__typename?: boolean | `@${string}`
|
|
1981
|
+
}>;
|
|
1982
|
+
["FormButtonField"]: AliasType<{
|
|
1983
|
+
label?:boolean | `@${string}`,
|
|
1984
|
+
__typename?: boolean | `@${string}`
|
|
1911
1985
|
}>;
|
|
1912
1986
|
["FormProductField"]: AliasType<{
|
|
1913
1987
|
label?:boolean | `@${string}`,
|
|
1914
1988
|
name?:boolean | `@${string}`,
|
|
1915
1989
|
__typename?: boolean | `@${string}`
|
|
1990
|
+
}>;
|
|
1991
|
+
["FormVariableField"]: AliasType<{
|
|
1992
|
+
label?:boolean | `@${string}`,
|
|
1993
|
+
name?:boolean | `@${string}`,
|
|
1994
|
+
defaultValue?:boolean | `@${string}`,
|
|
1995
|
+
__typename?: boolean | `@${string}`
|
|
1996
|
+
}>;
|
|
1997
|
+
["FormDisplayField"]: AliasType<{
|
|
1998
|
+
label?:boolean | `@${string}`,
|
|
1999
|
+
path?:boolean | `@${string}`,
|
|
2000
|
+
__typename?: boolean | `@${string}`
|
|
1916
2001
|
}>;
|
|
1917
2002
|
/** This enum is defined externally and injected via federation */
|
|
1918
2003
|
["CMSType"]:CMSType;
|
|
@@ -1931,10 +2016,6 @@ variantsdocsBySlug?: [{ slug: string},ResolverInputTypes["docs"]],
|
|
|
1931
2016
|
fieldSetdocs?:boolean | `@${string}`,
|
|
1932
2017
|
modeldocs?:boolean | `@${string}`,
|
|
1933
2018
|
previewFieldsdocs?:boolean | `@${string}`,
|
|
1934
|
-
fieldSetShapecta?:boolean | `@${string}`,
|
|
1935
|
-
modelShapecta?:boolean | `@${string}`,
|
|
1936
|
-
previewFieldsShapecta?:boolean | `@${string}`,
|
|
1937
|
-
oneShapecta?:ResolverInputTypes["Shapecta"],
|
|
1938
2019
|
fieldSetShapedocs_content?:boolean | `@${string}`,
|
|
1939
2020
|
modelShapedocs_content?:boolean | `@${string}`,
|
|
1940
2021
|
previewFieldsShapedocs_content?:boolean | `@${string}`,
|
|
@@ -1943,6 +2024,10 @@ variantsdocsBySlug?: [{ slug: string},ResolverInputTypes["docs"]],
|
|
|
1943
2024
|
modelShapedocs_nav?:boolean | `@${string}`,
|
|
1944
2025
|
previewFieldsShapedocs_nav?:boolean | `@${string}`,
|
|
1945
2026
|
oneShapedocs_nav?:ResolverInputTypes["Shapedocs_nav"],
|
|
2027
|
+
fieldSetShapefeaturepresentation?:boolean | `@${string}`,
|
|
2028
|
+
modelShapefeaturepresentation?:boolean | `@${string}`,
|
|
2029
|
+
previewFieldsShapefeaturepresentation?:boolean | `@${string}`,
|
|
2030
|
+
oneShapefeaturepresentation?:ResolverInputTypes["Shapefeaturepresentation"],
|
|
1946
2031
|
fieldSetShapefoot?:boolean | `@${string}`,
|
|
1947
2032
|
modelShapefoot?:boolean | `@${string}`,
|
|
1948
2033
|
previewFieldsShapefoot?:boolean | `@${string}`,
|
|
@@ -1955,10 +2040,10 @@ variantsdocsBySlug?: [{ slug: string},ResolverInputTypes["docs"]],
|
|
|
1955
2040
|
modelShapeherox?:boolean | `@${string}`,
|
|
1956
2041
|
previewFieldsShapeherox?:boolean | `@${string}`,
|
|
1957
2042
|
oneShapeherox?:ResolverInputTypes["Shapeherox"],
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
2043
|
+
fieldSetShapelista_projektow?:boolean | `@${string}`,
|
|
2044
|
+
modelShapelista_projektow?:boolean | `@${string}`,
|
|
2045
|
+
previewFieldsShapelista_projektow?:boolean | `@${string}`,
|
|
2046
|
+
oneShapelista_projektow?:ResolverInputTypes["Shapelista_projektow"],
|
|
1962
2047
|
fieldSetShapenav?:boolean | `@${string}`,
|
|
1963
2048
|
modelShapenav?:boolean | `@${string}`,
|
|
1964
2049
|
previewFieldsShapenav?:boolean | `@${string}`,
|
|
@@ -1967,26 +2052,32 @@ variantsdocsBySlug?: [{ slug: string},ResolverInputTypes["docs"]],
|
|
|
1967
2052
|
modelShapenewshape?:boolean | `@${string}`,
|
|
1968
2053
|
previewFieldsShapenewshape?:boolean | `@${string}`,
|
|
1969
2054
|
oneShapenewshape?:ResolverInputTypes["Shapenewshape"],
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
fieldSetShapenewsletter?:boolean | `@${string}`,
|
|
1975
|
-
modelShapenewsletter?:boolean | `@${string}`,
|
|
1976
|
-
previewFieldsShapenewsletter?:boolean | `@${string}`,
|
|
1977
|
-
oneShapenewsletter?:ResolverInputTypes["Shapenewsletter"],
|
|
1978
|
-
fieldSetShapepricing?:boolean | `@${string}`,
|
|
1979
|
-
modelShapepricing?:boolean | `@${string}`,
|
|
1980
|
-
previewFieldsShapepricing?:boolean | `@${string}`,
|
|
1981
|
-
oneShapepricing?:ResolverInputTypes["Shapepricing"],
|
|
2055
|
+
fieldSetShapepricing_table?:boolean | `@${string}`,
|
|
2056
|
+
modelShapepricing_table?:boolean | `@${string}`,
|
|
2057
|
+
previewFieldsShapepricing_table?:boolean | `@${string}`,
|
|
2058
|
+
oneShapepricing_table?:ResolverInputTypes["Shapepricing_table"],
|
|
1982
2059
|
fieldSetShapepricingv1?:boolean | `@${string}`,
|
|
1983
2060
|
modelShapepricingv1?:boolean | `@${string}`,
|
|
1984
2061
|
previewFieldsShapepricingv1?:boolean | `@${string}`,
|
|
1985
2062
|
oneShapepricingv1?:ResolverInputTypes["Shapepricingv1"],
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
2063
|
+
fieldSetShapeprofile_info?:boolean | `@${string}`,
|
|
2064
|
+
modelShapeprofile_info?:boolean | `@${string}`,
|
|
2065
|
+
previewFieldsShapeprofile_info?:boolean | `@${string}`,
|
|
2066
|
+
oneShapeprofile_info?:ResolverInputTypes["Shapeprofile_info"],
|
|
2067
|
+
fieldSetShapeusage?:boolean | `@${string}`,
|
|
2068
|
+
modelShapeusage?:boolean | `@${string}`,
|
|
2069
|
+
previewFieldsShapeusage?:boolean | `@${string}`,
|
|
2070
|
+
oneShapeusage?:ResolverInputTypes["Shapeusage"],
|
|
2071
|
+
variantsViewaccount?:ResolverInputTypes["Viewaccount"],
|
|
2072
|
+
fieldSetViewaccount?:boolean | `@${string}`,
|
|
2073
|
+
modelViewaccount?:boolean | `@${string}`,
|
|
2074
|
+
previewFieldsViewaccount?:boolean | `@${string}`,
|
|
2075
|
+
oneViewaccount?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewaccount"]],
|
|
2076
|
+
variantsViewfeatures?:ResolverInputTypes["Viewfeatures"],
|
|
2077
|
+
fieldSetViewfeatures?:boolean | `@${string}`,
|
|
2078
|
+
modelViewfeatures?:boolean | `@${string}`,
|
|
2079
|
+
previewFieldsViewfeatures?:boolean | `@${string}`,
|
|
2080
|
+
oneViewfeatures?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewfeatures"]],
|
|
1990
2081
|
variantsViewhomepage?:ResolverInputTypes["Viewhomepage"],
|
|
1991
2082
|
fieldSetViewhomepage?:boolean | `@${string}`,
|
|
1992
2083
|
modelViewhomepage?:boolean | `@${string}`,
|
|
@@ -1997,16 +2088,11 @@ oneViewhomepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefi
|
|
|
1997
2088
|
modelViewhowitworks?:boolean | `@${string}`,
|
|
1998
2089
|
previewFieldsViewhowitworks?:boolean | `@${string}`,
|
|
1999
2090
|
oneViewhowitworks?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewhowitworks"]],
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
variantsFormtest?:ResolverInputTypes["Formtest"],
|
|
2006
|
-
fieldSetFormtest?:boolean | `@${string}`,
|
|
2007
|
-
modelFormtest?:boolean | `@${string}`,
|
|
2008
|
-
previewFieldsFormtest?:boolean | `@${string}`,
|
|
2009
|
-
oneFormtest?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Formtest"]],
|
|
2091
|
+
variantsViewpricing?:ResolverInputTypes["Viewpricing"],
|
|
2092
|
+
fieldSetViewpricing?:boolean | `@${string}`,
|
|
2093
|
+
modelViewpricing?:boolean | `@${string}`,
|
|
2094
|
+
previewFieldsViewpricing?:boolean | `@${string}`,
|
|
2095
|
+
oneViewpricing?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewpricing"]],
|
|
2010
2096
|
__typename?: boolean | `@${string}`
|
|
2011
2097
|
}>;
|
|
2012
2098
|
["RootParamsType"]: AliasType<{
|
|
@@ -2039,13 +2125,46 @@ oneFormtest?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined
|
|
|
2039
2125
|
draft_version?:boolean | `@${string}`,
|
|
2040
2126
|
json_ld?:boolean | `@${string}`,
|
|
2041
2127
|
__typename?: boolean | `@${string}`
|
|
2128
|
+
}>;
|
|
2129
|
+
["ViewaccountMain"]: AliasType<{
|
|
2130
|
+
profile?:ResolverInputTypes["Shapeprofile_info"],
|
|
2131
|
+
projects?:ResolverInputTypes["Shapelista_projektow"],
|
|
2132
|
+
__typename?: boolean | `@${string}`
|
|
2133
|
+
}>;
|
|
2134
|
+
["Viewaccount"]: AliasType<{
|
|
2135
|
+
_version?:ResolverInputTypes["VersionField"],
|
|
2136
|
+
main?:ResolverInputTypes["ViewaccountMain"],
|
|
2137
|
+
locale?:boolean | `@${string}`,
|
|
2138
|
+
slug?:boolean | `@${string}`,
|
|
2139
|
+
_id?:boolean | `@${string}`,
|
|
2140
|
+
createdAt?:boolean | `@${string}`,
|
|
2141
|
+
updatedAt?:boolean | `@${string}`,
|
|
2142
|
+
draft_version?:boolean | `@${string}`,
|
|
2143
|
+
json_ld?:boolean | `@${string}`,
|
|
2144
|
+
__typename?: boolean | `@${string}`
|
|
2145
|
+
}>;
|
|
2146
|
+
["ViewfeaturesMain"]: AliasType<{
|
|
2147
|
+
auto_translation?:ResolverInputTypes["Shapefeaturepresentation"],
|
|
2148
|
+
ai_component?:ResolverInputTypes["Shapefeaturepresentation"],
|
|
2149
|
+
__typename?: boolean | `@${string}`
|
|
2150
|
+
}>;
|
|
2151
|
+
["Viewfeatures"]: AliasType<{
|
|
2152
|
+
_version?:ResolverInputTypes["VersionField"],
|
|
2153
|
+
main?:ResolverInputTypes["ViewfeaturesMain"],
|
|
2154
|
+
locale?:boolean | `@${string}`,
|
|
2155
|
+
slug?:boolean | `@${string}`,
|
|
2156
|
+
_id?:boolean | `@${string}`,
|
|
2157
|
+
createdAt?:boolean | `@${string}`,
|
|
2158
|
+
updatedAt?:boolean | `@${string}`,
|
|
2159
|
+
draft_version?:boolean | `@${string}`,
|
|
2160
|
+
json_ld?:boolean | `@${string}`,
|
|
2161
|
+
__typename?: boolean | `@${string}`
|
|
2042
2162
|
}>;
|
|
2043
2163
|
["Viewhomepage"]: AliasType<{
|
|
2044
2164
|
_version?:ResolverInputTypes["VersionField"],
|
|
2045
2165
|
nav?:ResolverInputTypes["Shapenav"],
|
|
2046
2166
|
main?:ResolverInputTypes["Shapehero"],
|
|
2047
2167
|
hero?:ResolverInputTypes["Shapeherox"],
|
|
2048
|
-
learn?:ResolverInputTypes["Shapelearn"],
|
|
2049
2168
|
pricing?:ResolverInputTypes["Shapepricingv1"],
|
|
2050
2169
|
footer?:ResolverInputTypes["Shapefoot"],
|
|
2051
2170
|
locale?:boolean | `@${string}`,
|
|
@@ -2076,21 +2195,18 @@ oneFormtest?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined
|
|
|
2076
2195
|
json_ld?:boolean | `@${string}`,
|
|
2077
2196
|
__typename?: boolean | `@${string}`
|
|
2078
2197
|
}>;
|
|
2079
|
-
["
|
|
2080
|
-
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
|
|
2084
|
-
}
|
|
2085
|
-
|
|
2086
|
-
cta_container?:ResolverInputTypes["ShapectaCta_sectionCta_container"],
|
|
2087
|
-
__typename?: boolean | `@${string}`
|
|
2088
|
-
}>;
|
|
2089
|
-
["Shapecta"]: AliasType<{
|
|
2090
|
-
cta_section?:ResolverInputTypes["ShapectaCta_section"],
|
|
2198
|
+
["Viewpricing"]: AliasType<{
|
|
2199
|
+
_version?:ResolverInputTypes["VersionField"],
|
|
2200
|
+
pricing?:ResolverInputTypes["Shapepricingv1"],
|
|
2201
|
+
table?:ResolverInputTypes["Shapepricing_table"],
|
|
2202
|
+
cta?:ResolverInputTypes["Shapenewshape"],
|
|
2203
|
+
locale?:boolean | `@${string}`,
|
|
2204
|
+
slug?:boolean | `@${string}`,
|
|
2091
2205
|
_id?:boolean | `@${string}`,
|
|
2092
2206
|
createdAt?:boolean | `@${string}`,
|
|
2093
2207
|
updatedAt?:boolean | `@${string}`,
|
|
2208
|
+
draft_version?:boolean | `@${string}`,
|
|
2209
|
+
json_ld?:boolean | `@${string}`,
|
|
2094
2210
|
__typename?: boolean | `@${string}`
|
|
2095
2211
|
}>;
|
|
2096
2212
|
["Shapedocs_contentDocumentation_pageContent_containerDoc_content"]: AliasType<{
|
|
@@ -2146,6 +2262,19 @@ oneFormtest?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined
|
|
|
2146
2262
|
createdAt?:boolean | `@${string}`,
|
|
2147
2263
|
updatedAt?:boolean | `@${string}`,
|
|
2148
2264
|
__typename?: boolean | `@${string}`
|
|
2265
|
+
}>;
|
|
2266
|
+
["ShapefeaturepresentationMain"]: AliasType<{
|
|
2267
|
+
title?:boolean | `@${string}`,
|
|
2268
|
+
subtitle?:boolean | `@${string}`,
|
|
2269
|
+
content?:boolean | `@${string}`,
|
|
2270
|
+
__typename?: boolean | `@${string}`
|
|
2271
|
+
}>;
|
|
2272
|
+
["Shapefeaturepresentation"]: AliasType<{
|
|
2273
|
+
main?:ResolverInputTypes["ShapefeaturepresentationMain"],
|
|
2274
|
+
_id?:boolean | `@${string}`,
|
|
2275
|
+
createdAt?:boolean | `@${string}`,
|
|
2276
|
+
updatedAt?:boolean | `@${string}`,
|
|
2277
|
+
__typename?: boolean | `@${string}`
|
|
2149
2278
|
}>;
|
|
2150
2279
|
["ShapefootFooterFooter_containerFooter_links"]: AliasType<{
|
|
2151
2280
|
privacy_policy?:boolean | `@${string}`,
|
|
@@ -2169,11 +2298,15 @@ oneFormtest?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined
|
|
|
2169
2298
|
createdAt?:boolean | `@${string}`,
|
|
2170
2299
|
updatedAt?:boolean | `@${string}`,
|
|
2171
2300
|
__typename?: boolean | `@${string}`
|
|
2301
|
+
}>;
|
|
2302
|
+
["ShapeheroHero_componentSlogan_parent"]: AliasType<{
|
|
2303
|
+
slogan?:boolean | `@${string}`,
|
|
2304
|
+
__typename?: boolean | `@${string}`
|
|
2172
2305
|
}>;
|
|
2173
2306
|
["ShapeheroHero_component"]: AliasType<{
|
|
2174
2307
|
logoplace?:boolean | `@${string}`,
|
|
2175
2308
|
logo?:boolean | `@${string}`,
|
|
2176
|
-
|
|
2309
|
+
slogan_parent?:ResolverInputTypes["ShapeheroHero_componentSlogan_parent"],
|
|
2177
2310
|
subslogan?:boolean | `@${string}`,
|
|
2178
2311
|
__typename?: boolean | `@${string}`
|
|
2179
2312
|
}>;
|
|
@@ -2192,16 +2325,20 @@ oneFormtest?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined
|
|
|
2192
2325
|
title?:boolean | `@${string}`,
|
|
2193
2326
|
description?:boolean | `@${string}`,
|
|
2194
2327
|
features?:ResolverInputTypes["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"],
|
|
2195
|
-
call_to_action?:boolean | `@${string}`,
|
|
2196
2328
|
__typename?: boolean | `@${string}`
|
|
2197
2329
|
}>;
|
|
2198
2330
|
["ShapeheroxHero_sectionHero_containerImage_wrapper"]: AliasType<{
|
|
2199
2331
|
hero_image?:ResolverInputTypes["ImageField"],
|
|
2200
2332
|
__typename?: boolean | `@${string}`
|
|
2333
|
+
}>;
|
|
2334
|
+
["ShapeheroxHero_sectionHero_containerPresentation"]: AliasType<{
|
|
2335
|
+
video?:ResolverInputTypes["VideoField"],
|
|
2336
|
+
__typename?: boolean | `@${string}`
|
|
2201
2337
|
}>;
|
|
2202
2338
|
["ShapeheroxHero_sectionHero_container"]: AliasType<{
|
|
2203
2339
|
text_wrapper?:ResolverInputTypes["ShapeheroxHero_sectionHero_containerText_wrapper"],
|
|
2204
2340
|
image_wrapper?:ResolverInputTypes["ShapeheroxHero_sectionHero_containerImage_wrapper"],
|
|
2341
|
+
presentation?:ResolverInputTypes["ShapeheroxHero_sectionHero_containerPresentation"],
|
|
2205
2342
|
__typename?: boolean | `@${string}`
|
|
2206
2343
|
}>;
|
|
2207
2344
|
["ShapeheroxHero_section"]: AliasType<{
|
|
@@ -2215,19 +2352,24 @@ oneFormtest?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined
|
|
|
2215
2352
|
updatedAt?:boolean | `@${string}`,
|
|
2216
2353
|
__typename?: boolean | `@${string}`
|
|
2217
2354
|
}>;
|
|
2218
|
-
["
|
|
2219
|
-
|
|
2220
|
-
|
|
2221
|
-
|
|
2222
|
-
cta_button?:boolean | `@${string}`,
|
|
2355
|
+
["Shapelista_projektowListProjectsInstance"]: AliasType<{
|
|
2356
|
+
title?:boolean | `@${string}`,
|
|
2357
|
+
link?:boolean | `@${string}`,
|
|
2358
|
+
remove_button?:boolean | `@${string}`,
|
|
2223
2359
|
__typename?: boolean | `@${string}`
|
|
2224
2360
|
}>;
|
|
2225
|
-
["
|
|
2226
|
-
|
|
2361
|
+
["Shapelista_projektowListProjects"]: AliasType<{
|
|
2362
|
+
instance?:ResolverInputTypes["Shapelista_projektowListProjectsInstance"],
|
|
2227
2363
|
__typename?: boolean | `@${string}`
|
|
2228
2364
|
}>;
|
|
2229
|
-
["
|
|
2230
|
-
|
|
2365
|
+
["Shapelista_projektowList"]: AliasType<{
|
|
2366
|
+
title?:boolean | `@${string}`,
|
|
2367
|
+
subtitle?:boolean | `@${string}`,
|
|
2368
|
+
projects?:ResolverInputTypes["Shapelista_projektowListProjects"],
|
|
2369
|
+
__typename?: boolean | `@${string}`
|
|
2370
|
+
}>;
|
|
2371
|
+
["Shapelista_projektow"]: AliasType<{
|
|
2372
|
+
list?:ResolverInputTypes["Shapelista_projektowList"],
|
|
2231
2373
|
_id?:boolean | `@${string}`,
|
|
2232
2374
|
createdAt?:boolean | `@${string}`,
|
|
2233
2375
|
updatedAt?:boolean | `@${string}`,
|
|
@@ -2275,61 +2417,35 @@ oneFormtest?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined
|
|
|
2275
2417
|
updatedAt?:boolean | `@${string}`,
|
|
2276
2418
|
__typename?: boolean | `@${string}`
|
|
2277
2419
|
}>;
|
|
2278
|
-
["
|
|
2279
|
-
_id?:boolean | `@${string}`,
|
|
2280
|
-
createdAt?:boolean | `@${string}`,
|
|
2281
|
-
updatedAt?:boolean | `@${string}`,
|
|
2282
|
-
__typename?: boolean | `@${string}`
|
|
2283
|
-
}>;
|
|
2284
|
-
["ShapenewsletterNewsletter_sectionNewsletter_containerNewsletter_form"]: AliasType<{
|
|
2285
|
-
email_input?:boolean | `@${string}`,
|
|
2286
|
-
subscribe_button?:boolean | `@${string}`,
|
|
2287
|
-
__typename?: boolean | `@${string}`
|
|
2288
|
-
}>;
|
|
2289
|
-
["ShapenewsletterNewsletter_sectionNewsletter_container"]: AliasType<{
|
|
2290
|
-
newsletter_heading?:boolean | `@${string}`,
|
|
2291
|
-
newsletter_description?:boolean | `@${string}`,
|
|
2292
|
-
newsletter_form?:ResolverInputTypes["ShapenewsletterNewsletter_sectionNewsletter_containerNewsletter_form"],
|
|
2293
|
-
__typename?: boolean | `@${string}`
|
|
2294
|
-
}>;
|
|
2295
|
-
["ShapenewsletterNewsletter_section"]: AliasType<{
|
|
2296
|
-
newsletter_container?:ResolverInputTypes["ShapenewsletterNewsletter_sectionNewsletter_container"],
|
|
2297
|
-
__typename?: boolean | `@${string}`
|
|
2298
|
-
}>;
|
|
2299
|
-
["Shapenewsletter"]: AliasType<{
|
|
2300
|
-
newsletter_section?:ResolverInputTypes["ShapenewsletterNewsletter_section"],
|
|
2301
|
-
_id?:boolean | `@${string}`,
|
|
2302
|
-
createdAt?:boolean | `@${string}`,
|
|
2303
|
-
updatedAt?:boolean | `@${string}`,
|
|
2304
|
-
__typename?: boolean | `@${string}`
|
|
2305
|
-
}>;
|
|
2306
|
-
["ShapepricingPricing_sectionPricing_header"]: AliasType<{
|
|
2420
|
+
["Shapepricing_tablePricing_sectionHeader_wrapper"]: AliasType<{
|
|
2307
2421
|
title?:boolean | `@${string}`,
|
|
2308
|
-
|
|
2422
|
+
description?:boolean | `@${string}`,
|
|
2309
2423
|
__typename?: boolean | `@${string}`
|
|
2310
2424
|
}>;
|
|
2311
|
-
["
|
|
2312
|
-
|
|
2425
|
+
["Shapepricing_tablePricing_sectionPricing_tableTable_head"]: AliasType<{
|
|
2426
|
+
feature?:boolean | `@${string}`,
|
|
2427
|
+
unit?:boolean | `@${string}`,
|
|
2428
|
+
price?:boolean | `@${string}`,
|
|
2313
2429
|
__typename?: boolean | `@${string}`
|
|
2314
2430
|
}>;
|
|
2315
|
-
["
|
|
2316
|
-
|
|
2317
|
-
|
|
2318
|
-
|
|
2319
|
-
plan_cta?:boolean | `@${string}`,
|
|
2431
|
+
["Shapepricing_tablePricing_sectionPricing_tableRows"]: AliasType<{
|
|
2432
|
+
feature?:boolean | `@${string}`,
|
|
2433
|
+
unit?:boolean | `@${string}`,
|
|
2434
|
+
price?:boolean | `@${string}`,
|
|
2320
2435
|
__typename?: boolean | `@${string}`
|
|
2321
2436
|
}>;
|
|
2322
|
-
["
|
|
2323
|
-
|
|
2437
|
+
["Shapepricing_tablePricing_sectionPricing_table"]: AliasType<{
|
|
2438
|
+
table_head?:ResolverInputTypes["Shapepricing_tablePricing_sectionPricing_tableTable_head"],
|
|
2439
|
+
rows?:ResolverInputTypes["Shapepricing_tablePricing_sectionPricing_tableRows"],
|
|
2324
2440
|
__typename?: boolean | `@${string}`
|
|
2325
2441
|
}>;
|
|
2326
|
-
["
|
|
2327
|
-
|
|
2328
|
-
|
|
2442
|
+
["Shapepricing_tablePricing_section"]: AliasType<{
|
|
2443
|
+
header_wrapper?:ResolverInputTypes["Shapepricing_tablePricing_sectionHeader_wrapper"],
|
|
2444
|
+
pricing_table?:ResolverInputTypes["Shapepricing_tablePricing_sectionPricing_table"],
|
|
2329
2445
|
__typename?: boolean | `@${string}`
|
|
2330
2446
|
}>;
|
|
2331
|
-
["
|
|
2332
|
-
pricing_section?:ResolverInputTypes["
|
|
2447
|
+
["Shapepricing_table"]: AliasType<{
|
|
2448
|
+
pricing_section?:ResolverInputTypes["Shapepricing_tablePricing_section"],
|
|
2333
2449
|
_id?:boolean | `@${string}`,
|
|
2334
2450
|
createdAt?:boolean | `@${string}`,
|
|
2335
2451
|
updatedAt?:boolean | `@${string}`,
|
|
@@ -2381,111 +2497,67 @@ oneFormtest?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined
|
|
|
2381
2497
|
updatedAt?:boolean | `@${string}`,
|
|
2382
2498
|
__typename?: boolean | `@${string}`
|
|
2383
2499
|
}>;
|
|
2384
|
-
["
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
}>;
|
|
2389
|
-
["ShapetestaRootHeader"]: AliasType<{
|
|
2390
|
-
nav?:ResolverInputTypes["ShapetestaRootHeaderNav"],
|
|
2500
|
+
["Shapeprofile_infoProfile_sectionAccount_headerInfo"]: AliasType<{
|
|
2501
|
+
full_name?:boolean | `@${string}`,
|
|
2502
|
+
company?:boolean | `@${string}`,
|
|
2503
|
+
email?:boolean | `@${string}`,
|
|
2391
2504
|
__typename?: boolean | `@${string}`
|
|
2392
2505
|
}>;
|
|
2393
|
-
["
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
hero_button?:boolean | `@${string}`,
|
|
2506
|
+
["Shapeprofile_infoProfile_sectionAccount_header"]: AliasType<{
|
|
2507
|
+
avatar?:ResolverInputTypes["ImageField"],
|
|
2508
|
+
info?:ResolverInputTypes["Shapeprofile_infoProfile_sectionAccount_headerInfo"],
|
|
2397
2509
|
__typename?: boolean | `@${string}`
|
|
2398
2510
|
}>;
|
|
2399
|
-
["
|
|
2400
|
-
|
|
2401
|
-
features_text?:boolean | `@${string}`,
|
|
2511
|
+
["Shapeprofile_infoProfile_sectionPlan_status"]: AliasType<{
|
|
2512
|
+
plan?:boolean | `@${string}`,
|
|
2402
2513
|
__typename?: boolean | `@${string}`
|
|
2403
2514
|
}>;
|
|
2404
|
-
["
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
__typename?: boolean | `@${string}`
|
|
2408
|
-
}>;
|
|
2409
|
-
["ShapetestaRoot"]: AliasType<{
|
|
2410
|
-
header?:ResolverInputTypes["ShapetestaRootHeader"],
|
|
2411
|
-
main?:ResolverInputTypes["ShapetestaRootMain"],
|
|
2515
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens"]: AliasType<{
|
|
2516
|
+
label?:boolean | `@${string}`,
|
|
2517
|
+
value?:boolean | `@${string}`,
|
|
2412
2518
|
__typename?: boolean | `@${string}`
|
|
2413
2519
|
}>;
|
|
2414
|
-
["
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
createdAt?:boolean | `@${string}`,
|
|
2418
|
-
updatedAt?:boolean | `@${string}`,
|
|
2520
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens"]: AliasType<{
|
|
2521
|
+
label?:boolean | `@${string}`,
|
|
2522
|
+
value?:boolean | `@${string}`,
|
|
2419
2523
|
__typename?: boolean | `@${string}`
|
|
2420
2524
|
}>;
|
|
2421
|
-
["
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
source?:ResolverInputTypes["FormRadioTextField"],
|
|
2525
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests"]: AliasType<{
|
|
2526
|
+
label?:boolean | `@${string}`,
|
|
2527
|
+
value?:boolean | `@${string}`,
|
|
2425
2528
|
__typename?: boolean | `@${string}`
|
|
2426
2529
|
}>;
|
|
2427
|
-
["
|
|
2428
|
-
|
|
2429
|
-
|
|
2530
|
+
["Shapeprofile_infoProfile_sectionUsage_section"]: AliasType<{
|
|
2531
|
+
ai_tokens?:ResolverInputTypes["Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens"],
|
|
2532
|
+
translate_tokens?:ResolverInputTypes["Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens"],
|
|
2533
|
+
monthly_api_requests?:ResolverInputTypes["Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests"],
|
|
2430
2534
|
__typename?: boolean | `@${string}`
|
|
2431
2535
|
}>;
|
|
2432
|
-
["
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
2536
|
+
["Shapeprofile_infoProfile_section"]: AliasType<{
|
|
2537
|
+
account_header?:ResolverInputTypes["Shapeprofile_infoProfile_sectionAccount_header"],
|
|
2538
|
+
plan_status?:ResolverInputTypes["Shapeprofile_infoProfile_sectionPlan_status"],
|
|
2539
|
+
usage_section?:ResolverInputTypes["Shapeprofile_infoProfile_sectionUsage_section"],
|
|
2436
2540
|
__typename?: boolean | `@${string}`
|
|
2437
2541
|
}>;
|
|
2438
|
-
["
|
|
2439
|
-
|
|
2440
|
-
_version?:ResolverInputTypes["VersionField"],
|
|
2441
|
-
step1?:ResolverInputTypes["FormstepsStep1"],
|
|
2442
|
-
step2?:ResolverInputTypes["FormstepsStep2"],
|
|
2443
|
-
step3?:ResolverInputTypes["FormstepsStep3"],
|
|
2444
|
-
locale?:boolean | `@${string}`,
|
|
2445
|
-
slug?:boolean | `@${string}`,
|
|
2542
|
+
["Shapeprofile_info"]: AliasType<{
|
|
2543
|
+
profile_section?:ResolverInputTypes["Shapeprofile_infoProfile_section"],
|
|
2446
2544
|
_id?:boolean | `@${string}`,
|
|
2447
2545
|
createdAt?:boolean | `@${string}`,
|
|
2448
2546
|
updatedAt?:boolean | `@${string}`,
|
|
2449
|
-
draft_version?:boolean | `@${string}`,
|
|
2450
|
-
json_ld?:boolean | `@${string}`,
|
|
2451
|
-
__typename?: boolean | `@${string}`
|
|
2452
|
-
}>;
|
|
2453
|
-
["FormtestWindowBasics"]: AliasType<{
|
|
2454
|
-
_mocks?:boolean | `@${string}`,
|
|
2455
|
-
type?:ResolverInputTypes["FormRadioTextField"],
|
|
2456
|
-
__typename?: boolean | `@${string}`
|
|
2457
|
-
}>;
|
|
2458
|
-
["FormtestWindowTechincals"]: AliasType<{
|
|
2459
|
-
_mocks?:boolean | `@${string}`,
|
|
2460
|
-
width?:ResolverInputTypes["FormNumberField"],
|
|
2461
|
-
height?:ResolverInputTypes["FormNumberField"],
|
|
2462
|
-
confirm?:ResolverInputTypes["FormRouteField"],
|
|
2463
|
-
__typename?: boolean | `@${string}`
|
|
2464
|
-
}>;
|
|
2465
|
-
["FormtestWindow"]: AliasType<{
|
|
2466
|
-
_mocks?:boolean | `@${string}`,
|
|
2467
|
-
basics?:ResolverInputTypes["FormtestWindowBasics"],
|
|
2468
|
-
techincals?:ResolverInputTypes["FormtestWindowTechincals"],
|
|
2469
2547
|
__typename?: boolean | `@${string}`
|
|
2470
2548
|
}>;
|
|
2471
|
-
["
|
|
2472
|
-
|
|
2473
|
-
|
|
2474
|
-
|
|
2549
|
+
["ShapeusageMain"]: AliasType<{
|
|
2550
|
+
title?:boolean | `@${string}`,
|
|
2551
|
+
subtitle?:boolean | `@${string}`,
|
|
2552
|
+
period?:boolean | `@${string}`,
|
|
2553
|
+
tokens_consumed?:boolean | `@${string}`,
|
|
2475
2554
|
__typename?: boolean | `@${string}`
|
|
2476
2555
|
}>;
|
|
2477
|
-
["
|
|
2478
|
-
|
|
2479
|
-
_version?:ResolverInputTypes["VersionField"],
|
|
2480
|
-
window?:ResolverInputTypes["FormtestWindow"],
|
|
2481
|
-
home?:ResolverInputTypes["FormtestHome"],
|
|
2482
|
-
locale?:boolean | `@${string}`,
|
|
2483
|
-
slug?:boolean | `@${string}`,
|
|
2556
|
+
["Shapeusage"]: AliasType<{
|
|
2557
|
+
main?:ResolverInputTypes["ShapeusageMain"],
|
|
2484
2558
|
_id?:boolean | `@${string}`,
|
|
2485
2559
|
createdAt?:boolean | `@${string}`,
|
|
2486
2560
|
updatedAt?:boolean | `@${string}`,
|
|
2487
|
-
draft_version?:boolean | `@${string}`,
|
|
2488
|
-
json_ld?:boolean | `@${string}`,
|
|
2489
2561
|
__typename?: boolean | `@${string}`
|
|
2490
2562
|
}>;
|
|
2491
2563
|
["RootParamsInput"]: {
|
|
@@ -2503,6 +2575,7 @@ oneFormtest?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined
|
|
|
2503
2575
|
};
|
|
2504
2576
|
["schema"]: AliasType<{
|
|
2505
2577
|
query?:ResolverInputTypes["Query"],
|
|
2578
|
+
mutation?:ResolverInputTypes["Mutation"],
|
|
2506
2579
|
__typename?: boolean | `@${string}`
|
|
2507
2580
|
}>;
|
|
2508
2581
|
["ID"]:unknown
|
|
@@ -2583,6 +2656,16 @@ export type ModelTypes = {
|
|
|
2583
2656
|
setOperator?: ModelTypes["ConditionSetOperator"] | undefined | null,
|
|
2584
2657
|
value?: string | undefined | null,
|
|
2585
2658
|
children?: Array<ModelTypes["Condition"]> | undefined | null
|
|
2659
|
+
};
|
|
2660
|
+
["ActionType"]:ActionType;
|
|
2661
|
+
["Action"]: {
|
|
2662
|
+
path: string,
|
|
2663
|
+
type: ModelTypes["ActionType"],
|
|
2664
|
+
value: string
|
|
2665
|
+
};
|
|
2666
|
+
["Rule"]: {
|
|
2667
|
+
conditions: Array<ModelTypes["Condition"]>,
|
|
2668
|
+
actions: Array<ModelTypes["Action"]>
|
|
2586
2669
|
};
|
|
2587
2670
|
["Visual"]: {
|
|
2588
2671
|
className?: string | undefined | null,
|
|
@@ -2600,6 +2683,9 @@ export type ModelTypes = {
|
|
|
2600
2683
|
eq?: string | undefined | null,
|
|
2601
2684
|
ne?: string | undefined | null,
|
|
2602
2685
|
contain?: string | undefined | null
|
|
2686
|
+
};
|
|
2687
|
+
["Mutation"]: {
|
|
2688
|
+
heartbeat?: string | undefined | null
|
|
2603
2689
|
};
|
|
2604
2690
|
["RootParamsAdminType"]:any;
|
|
2605
2691
|
["Shape"]: {
|
|
@@ -2608,6 +2694,7 @@ export type ModelTypes = {
|
|
|
2608
2694
|
display: string,
|
|
2609
2695
|
previewFields?: ModelTypes["BakedIpsumData"] | undefined | null,
|
|
2610
2696
|
prompt?: string | undefined | null,
|
|
2697
|
+
promptResponse?: ModelTypes["AiComponent"] | undefined | null,
|
|
2611
2698
|
fields: Array<ModelTypes["CMSField"]>
|
|
2612
2699
|
};
|
|
2613
2700
|
["View"]: {
|
|
@@ -2615,6 +2702,18 @@ export type ModelTypes = {
|
|
|
2615
2702
|
fields: Array<ModelTypes["CMSField"]>,
|
|
2616
2703
|
slug: string,
|
|
2617
2704
|
display: string
|
|
2705
|
+
};
|
|
2706
|
+
["AiComponent"]: {
|
|
2707
|
+
name: string,
|
|
2708
|
+
htmlComponent?: string | undefined | null,
|
|
2709
|
+
className: string,
|
|
2710
|
+
textContent?: string | undefined | null,
|
|
2711
|
+
children?: Array<ModelTypes["AiComponent"]> | undefined | null
|
|
2712
|
+
};
|
|
2713
|
+
["FormFieldVisual"]: {
|
|
2714
|
+
className?: string | undefined | null,
|
|
2715
|
+
component?: string | undefined | null,
|
|
2716
|
+
rules?: Array<ModelTypes["Rule"]> | undefined | null
|
|
2618
2717
|
};
|
|
2619
2718
|
["FormField"]: {
|
|
2620
2719
|
name: string,
|
|
@@ -2622,8 +2721,7 @@ export type ModelTypes = {
|
|
|
2622
2721
|
type: ModelTypes["FormFieldType"],
|
|
2623
2722
|
list?: boolean | undefined | null,
|
|
2624
2723
|
fields?: Array<ModelTypes["FormField"]> | undefined | null,
|
|
2625
|
-
visual?: ModelTypes["
|
|
2626
|
-
conditions?: ModelTypes["Condition"] | undefined | null,
|
|
2724
|
+
visual?: ModelTypes["FormFieldVisual"] | undefined | null,
|
|
2627
2725
|
placeholder?: string | undefined | null,
|
|
2628
2726
|
root?: boolean | undefined | null,
|
|
2629
2727
|
options?: Array<string> | undefined | null,
|
|
@@ -2679,10 +2777,25 @@ export type ModelTypes = {
|
|
|
2679
2777
|
["FormRadioTextField"]: {
|
|
2680
2778
|
label?: string | undefined | null,
|
|
2681
2779
|
options?: Array<string> | undefined | null
|
|
2780
|
+
};
|
|
2781
|
+
["FormCheckboxField"]: {
|
|
2782
|
+
label?: string | undefined | null
|
|
2783
|
+
};
|
|
2784
|
+
["FormButtonField"]: {
|
|
2785
|
+
label?: string | undefined | null
|
|
2682
2786
|
};
|
|
2683
2787
|
["FormProductField"]: {
|
|
2684
2788
|
label?: string | undefined | null,
|
|
2685
2789
|
name?: string | undefined | null
|
|
2790
|
+
};
|
|
2791
|
+
["FormVariableField"]: {
|
|
2792
|
+
label?: string | undefined | null,
|
|
2793
|
+
name?: string | undefined | null,
|
|
2794
|
+
defaultValue?: string | undefined | null
|
|
2795
|
+
};
|
|
2796
|
+
["FormDisplayField"]: {
|
|
2797
|
+
label?: string | undefined | null,
|
|
2798
|
+
path?: string | undefined | null
|
|
2686
2799
|
};
|
|
2687
2800
|
["CMSType"]:CMSType;
|
|
2688
2801
|
["Query"]: {
|
|
@@ -2700,10 +2813,6 @@ export type ModelTypes = {
|
|
|
2700
2813
|
fieldSetdocs: string,
|
|
2701
2814
|
modeldocs: ModelTypes["ModelNavigationCompiled"],
|
|
2702
2815
|
previewFieldsdocs: ModelTypes["ModelNavigationCompiled"],
|
|
2703
|
-
fieldSetShapecta: string,
|
|
2704
|
-
modelShapecta: ModelTypes["ModelNavigationCompiled"],
|
|
2705
|
-
previewFieldsShapecta: ModelTypes["ModelNavigationCompiled"],
|
|
2706
|
-
oneShapecta?: ModelTypes["Shapecta"] | undefined | null,
|
|
2707
2816
|
fieldSetShapedocs_content: string,
|
|
2708
2817
|
modelShapedocs_content: ModelTypes["ModelNavigationCompiled"],
|
|
2709
2818
|
previewFieldsShapedocs_content: ModelTypes["ModelNavigationCompiled"],
|
|
@@ -2712,6 +2821,10 @@ export type ModelTypes = {
|
|
|
2712
2821
|
modelShapedocs_nav: ModelTypes["ModelNavigationCompiled"],
|
|
2713
2822
|
previewFieldsShapedocs_nav: ModelTypes["ModelNavigationCompiled"],
|
|
2714
2823
|
oneShapedocs_nav?: ModelTypes["Shapedocs_nav"] | undefined | null,
|
|
2824
|
+
fieldSetShapefeaturepresentation: string,
|
|
2825
|
+
modelShapefeaturepresentation: ModelTypes["ModelNavigationCompiled"],
|
|
2826
|
+
previewFieldsShapefeaturepresentation: ModelTypes["ModelNavigationCompiled"],
|
|
2827
|
+
oneShapefeaturepresentation?: ModelTypes["Shapefeaturepresentation"] | undefined | null,
|
|
2715
2828
|
fieldSetShapefoot: string,
|
|
2716
2829
|
modelShapefoot: ModelTypes["ModelNavigationCompiled"],
|
|
2717
2830
|
previewFieldsShapefoot: ModelTypes["ModelNavigationCompiled"],
|
|
@@ -2724,10 +2837,10 @@ export type ModelTypes = {
|
|
|
2724
2837
|
modelShapeherox: ModelTypes["ModelNavigationCompiled"],
|
|
2725
2838
|
previewFieldsShapeherox: ModelTypes["ModelNavigationCompiled"],
|
|
2726
2839
|
oneShapeherox?: ModelTypes["Shapeherox"] | undefined | null,
|
|
2727
|
-
|
|
2728
|
-
|
|
2729
|
-
|
|
2730
|
-
|
|
2840
|
+
fieldSetShapelista_projektow: string,
|
|
2841
|
+
modelShapelista_projektow: ModelTypes["ModelNavigationCompiled"],
|
|
2842
|
+
previewFieldsShapelista_projektow: ModelTypes["ModelNavigationCompiled"],
|
|
2843
|
+
oneShapelista_projektow?: ModelTypes["Shapelista_projektow"] | undefined | null,
|
|
2731
2844
|
fieldSetShapenav: string,
|
|
2732
2845
|
modelShapenav: ModelTypes["ModelNavigationCompiled"],
|
|
2733
2846
|
previewFieldsShapenav: ModelTypes["ModelNavigationCompiled"],
|
|
@@ -2736,26 +2849,32 @@ export type ModelTypes = {
|
|
|
2736
2849
|
modelShapenewshape: ModelTypes["ModelNavigationCompiled"],
|
|
2737
2850
|
previewFieldsShapenewshape: ModelTypes["ModelNavigationCompiled"],
|
|
2738
2851
|
oneShapenewshape?: ModelTypes["Shapenewshape"] | undefined | null,
|
|
2739
|
-
|
|
2740
|
-
|
|
2741
|
-
|
|
2742
|
-
|
|
2743
|
-
fieldSetShapenewsletter: string,
|
|
2744
|
-
modelShapenewsletter: ModelTypes["ModelNavigationCompiled"],
|
|
2745
|
-
previewFieldsShapenewsletter: ModelTypes["ModelNavigationCompiled"],
|
|
2746
|
-
oneShapenewsletter?: ModelTypes["Shapenewsletter"] | undefined | null,
|
|
2747
|
-
fieldSetShapepricing: string,
|
|
2748
|
-
modelShapepricing: ModelTypes["ModelNavigationCompiled"],
|
|
2749
|
-
previewFieldsShapepricing: ModelTypes["ModelNavigationCompiled"],
|
|
2750
|
-
oneShapepricing?: ModelTypes["Shapepricing"] | undefined | null,
|
|
2852
|
+
fieldSetShapepricing_table: string,
|
|
2853
|
+
modelShapepricing_table: ModelTypes["ModelNavigationCompiled"],
|
|
2854
|
+
previewFieldsShapepricing_table: ModelTypes["ModelNavigationCompiled"],
|
|
2855
|
+
oneShapepricing_table?: ModelTypes["Shapepricing_table"] | undefined | null,
|
|
2751
2856
|
fieldSetShapepricingv1: string,
|
|
2752
2857
|
modelShapepricingv1: ModelTypes["ModelNavigationCompiled"],
|
|
2753
2858
|
previewFieldsShapepricingv1: ModelTypes["ModelNavigationCompiled"],
|
|
2754
2859
|
oneShapepricingv1?: ModelTypes["Shapepricingv1"] | undefined | null,
|
|
2755
|
-
|
|
2756
|
-
|
|
2757
|
-
|
|
2758
|
-
|
|
2860
|
+
fieldSetShapeprofile_info: string,
|
|
2861
|
+
modelShapeprofile_info: ModelTypes["ModelNavigationCompiled"],
|
|
2862
|
+
previewFieldsShapeprofile_info: ModelTypes["ModelNavigationCompiled"],
|
|
2863
|
+
oneShapeprofile_info?: ModelTypes["Shapeprofile_info"] | undefined | null,
|
|
2864
|
+
fieldSetShapeusage: string,
|
|
2865
|
+
modelShapeusage: ModelTypes["ModelNavigationCompiled"],
|
|
2866
|
+
previewFieldsShapeusage: ModelTypes["ModelNavigationCompiled"],
|
|
2867
|
+
oneShapeusage?: ModelTypes["Shapeusage"] | undefined | null,
|
|
2868
|
+
variantsViewaccount?: Array<ModelTypes["Viewaccount"]> | undefined | null,
|
|
2869
|
+
fieldSetViewaccount: string,
|
|
2870
|
+
modelViewaccount: ModelTypes["ModelNavigationCompiled"],
|
|
2871
|
+
previewFieldsViewaccount: ModelTypes["ModelNavigationCompiled"],
|
|
2872
|
+
oneViewaccount?: ModelTypes["Viewaccount"] | undefined | null,
|
|
2873
|
+
variantsViewfeatures?: Array<ModelTypes["Viewfeatures"]> | undefined | null,
|
|
2874
|
+
fieldSetViewfeatures: string,
|
|
2875
|
+
modelViewfeatures: ModelTypes["ModelNavigationCompiled"],
|
|
2876
|
+
previewFieldsViewfeatures: ModelTypes["ModelNavigationCompiled"],
|
|
2877
|
+
oneViewfeatures?: ModelTypes["Viewfeatures"] | undefined | null,
|
|
2759
2878
|
variantsViewhomepage?: Array<ModelTypes["Viewhomepage"]> | undefined | null,
|
|
2760
2879
|
fieldSetViewhomepage: string,
|
|
2761
2880
|
modelViewhomepage: ModelTypes["ModelNavigationCompiled"],
|
|
@@ -2766,16 +2885,11 @@ export type ModelTypes = {
|
|
|
2766
2885
|
modelViewhowitworks: ModelTypes["ModelNavigationCompiled"],
|
|
2767
2886
|
previewFieldsViewhowitworks: ModelTypes["ModelNavigationCompiled"],
|
|
2768
2887
|
oneViewhowitworks?: ModelTypes["Viewhowitworks"] | undefined | null,
|
|
2769
|
-
|
|
2770
|
-
|
|
2771
|
-
|
|
2772
|
-
|
|
2773
|
-
|
|
2774
|
-
variantsFormtest?: Array<ModelTypes["Formtest"]> | undefined | null,
|
|
2775
|
-
fieldSetFormtest: string,
|
|
2776
|
-
modelFormtest: ModelTypes["ModelNavigationCompiled"],
|
|
2777
|
-
previewFieldsFormtest: ModelTypes["ModelNavigationCompiled"],
|
|
2778
|
-
oneFormtest?: ModelTypes["Formtest"] | undefined | null
|
|
2888
|
+
variantsViewpricing?: Array<ModelTypes["Viewpricing"]> | undefined | null,
|
|
2889
|
+
fieldSetViewpricing: string,
|
|
2890
|
+
modelViewpricing: ModelTypes["ModelNavigationCompiled"],
|
|
2891
|
+
previewFieldsViewpricing: ModelTypes["ModelNavigationCompiled"],
|
|
2892
|
+
oneViewpricing?: ModelTypes["Viewpricing"] | undefined | null
|
|
2779
2893
|
};
|
|
2780
2894
|
["RootParamsType"]: {
|
|
2781
2895
|
_version?: string | undefined | null,
|
|
@@ -2804,13 +2918,42 @@ export type ModelTypes = {
|
|
|
2804
2918
|
updatedAt?: number | undefined | null,
|
|
2805
2919
|
draft_version?: boolean | undefined | null,
|
|
2806
2920
|
json_ld?: string | undefined | null
|
|
2921
|
+
};
|
|
2922
|
+
["ViewaccountMain"]: {
|
|
2923
|
+
profile?: ModelTypes["Shapeprofile_info"] | undefined | null,
|
|
2924
|
+
projects?: ModelTypes["Shapelista_projektow"] | undefined | null
|
|
2925
|
+
};
|
|
2926
|
+
["Viewaccount"]: {
|
|
2927
|
+
_version?: ModelTypes["VersionField"] | undefined | null,
|
|
2928
|
+
main?: ModelTypes["ViewaccountMain"] | undefined | null,
|
|
2929
|
+
locale?: string | undefined | null,
|
|
2930
|
+
slug?: string | undefined | null,
|
|
2931
|
+
_id: string,
|
|
2932
|
+
createdAt?: number | undefined | null,
|
|
2933
|
+
updatedAt?: number | undefined | null,
|
|
2934
|
+
draft_version?: boolean | undefined | null,
|
|
2935
|
+
json_ld?: string | undefined | null
|
|
2936
|
+
};
|
|
2937
|
+
["ViewfeaturesMain"]: {
|
|
2938
|
+
auto_translation?: ModelTypes["Shapefeaturepresentation"] | undefined | null,
|
|
2939
|
+
ai_component?: ModelTypes["Shapefeaturepresentation"] | undefined | null
|
|
2940
|
+
};
|
|
2941
|
+
["Viewfeatures"]: {
|
|
2942
|
+
_version?: ModelTypes["VersionField"] | undefined | null,
|
|
2943
|
+
main?: ModelTypes["ViewfeaturesMain"] | undefined | null,
|
|
2944
|
+
locale?: string | undefined | null,
|
|
2945
|
+
slug?: string | undefined | null,
|
|
2946
|
+
_id: string,
|
|
2947
|
+
createdAt?: number | undefined | null,
|
|
2948
|
+
updatedAt?: number | undefined | null,
|
|
2949
|
+
draft_version?: boolean | undefined | null,
|
|
2950
|
+
json_ld?: string | undefined | null
|
|
2807
2951
|
};
|
|
2808
2952
|
["Viewhomepage"]: {
|
|
2809
2953
|
_version?: ModelTypes["VersionField"] | undefined | null,
|
|
2810
2954
|
nav?: ModelTypes["Shapenav"] | undefined | null,
|
|
2811
2955
|
main?: ModelTypes["Shapehero"] | undefined | null,
|
|
2812
2956
|
hero?: ModelTypes["Shapeherox"] | undefined | null,
|
|
2813
|
-
learn?: ModelTypes["Shapelearn"] | undefined | null,
|
|
2814
2957
|
pricing?: ModelTypes["Shapepricingv1"] | undefined | null,
|
|
2815
2958
|
footer?: ModelTypes["Shapefoot"] | undefined | null,
|
|
2816
2959
|
locale?: string | undefined | null,
|
|
@@ -2838,19 +2981,18 @@ export type ModelTypes = {
|
|
|
2838
2981
|
draft_version?: boolean | undefined | null,
|
|
2839
2982
|
json_ld?: string | undefined | null
|
|
2840
2983
|
};
|
|
2841
|
-
["
|
|
2842
|
-
|
|
2843
|
-
|
|
2844
|
-
|
|
2845
|
-
|
|
2846
|
-
|
|
2847
|
-
|
|
2848
|
-
};
|
|
2849
|
-
["Shapecta"]: {
|
|
2850
|
-
cta_section?: ModelTypes["ShapectaCta_section"] | undefined | null,
|
|
2984
|
+
["Viewpricing"]: {
|
|
2985
|
+
_version?: ModelTypes["VersionField"] | undefined | null,
|
|
2986
|
+
pricing?: ModelTypes["Shapepricingv1"] | undefined | null,
|
|
2987
|
+
table?: ModelTypes["Shapepricing_table"] | undefined | null,
|
|
2988
|
+
cta?: ModelTypes["Shapenewshape"] | undefined | null,
|
|
2989
|
+
locale?: string | undefined | null,
|
|
2990
|
+
slug?: string | undefined | null,
|
|
2851
2991
|
_id: string,
|
|
2852
2992
|
createdAt?: number | undefined | null,
|
|
2853
|
-
updatedAt?: number | undefined | null
|
|
2993
|
+
updatedAt?: number | undefined | null,
|
|
2994
|
+
draft_version?: boolean | undefined | null,
|
|
2995
|
+
json_ld?: string | undefined | null
|
|
2854
2996
|
};
|
|
2855
2997
|
["Shapedocs_contentDocumentation_pageContent_containerDoc_content"]: {
|
|
2856
2998
|
content?: string | undefined | null
|
|
@@ -2894,6 +3036,17 @@ export type ModelTypes = {
|
|
|
2894
3036
|
_id: string,
|
|
2895
3037
|
createdAt?: number | undefined | null,
|
|
2896
3038
|
updatedAt?: number | undefined | null
|
|
3039
|
+
};
|
|
3040
|
+
["ShapefeaturepresentationMain"]: {
|
|
3041
|
+
title?: string | undefined | null,
|
|
3042
|
+
subtitle?: string | undefined | null,
|
|
3043
|
+
content?: string | undefined | null
|
|
3044
|
+
};
|
|
3045
|
+
["Shapefeaturepresentation"]: {
|
|
3046
|
+
main?: ModelTypes["ShapefeaturepresentationMain"] | undefined | null,
|
|
3047
|
+
_id: string,
|
|
3048
|
+
createdAt?: number | undefined | null,
|
|
3049
|
+
updatedAt?: number | undefined | null
|
|
2897
3050
|
};
|
|
2898
3051
|
["ShapefootFooterFooter_containerFooter_links"]: {
|
|
2899
3052
|
privacy_policy?: string | undefined | null,
|
|
@@ -2913,11 +3066,14 @@ export type ModelTypes = {
|
|
|
2913
3066
|
_id: string,
|
|
2914
3067
|
createdAt?: number | undefined | null,
|
|
2915
3068
|
updatedAt?: number | undefined | null
|
|
3069
|
+
};
|
|
3070
|
+
["ShapeheroHero_componentSlogan_parent"]: {
|
|
3071
|
+
slogan?: string | undefined | null
|
|
2916
3072
|
};
|
|
2917
3073
|
["ShapeheroHero_component"]: {
|
|
2918
3074
|
logoplace?: string | undefined | null,
|
|
2919
3075
|
logo?: string | undefined | null,
|
|
2920
|
-
|
|
3076
|
+
slogan_parent?: ModelTypes["ShapeheroHero_componentSlogan_parent"] | undefined | null,
|
|
2921
3077
|
subslogan?: string | undefined | null
|
|
2922
3078
|
};
|
|
2923
3079
|
["Shapehero"]: {
|
|
@@ -2932,15 +3088,18 @@ export type ModelTypes = {
|
|
|
2932
3088
|
["ShapeheroxHero_sectionHero_containerText_wrapper"]: {
|
|
2933
3089
|
title?: string | undefined | null,
|
|
2934
3090
|
description?: string | undefined | null,
|
|
2935
|
-
features?: ModelTypes["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"] | undefined | null
|
|
2936
|
-
call_to_action?: string | undefined | null
|
|
3091
|
+
features?: ModelTypes["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"] | undefined | null
|
|
2937
3092
|
};
|
|
2938
3093
|
["ShapeheroxHero_sectionHero_containerImage_wrapper"]: {
|
|
2939
3094
|
hero_image?: ModelTypes["ImageField"] | undefined | null
|
|
3095
|
+
};
|
|
3096
|
+
["ShapeheroxHero_sectionHero_containerPresentation"]: {
|
|
3097
|
+
video?: ModelTypes["VideoField"] | undefined | null
|
|
2940
3098
|
};
|
|
2941
3099
|
["ShapeheroxHero_sectionHero_container"]: {
|
|
2942
3100
|
text_wrapper?: ModelTypes["ShapeheroxHero_sectionHero_containerText_wrapper"] | undefined | null,
|
|
2943
|
-
image_wrapper?: ModelTypes["ShapeheroxHero_sectionHero_containerImage_wrapper"] | undefined | null
|
|
3101
|
+
image_wrapper?: ModelTypes["ShapeheroxHero_sectionHero_containerImage_wrapper"] | undefined | null,
|
|
3102
|
+
presentation?: ModelTypes["ShapeheroxHero_sectionHero_containerPresentation"] | undefined | null
|
|
2944
3103
|
};
|
|
2945
3104
|
["ShapeheroxHero_section"]: {
|
|
2946
3105
|
hero_container?: ModelTypes["ShapeheroxHero_sectionHero_container"] | undefined | null
|
|
@@ -2951,17 +3110,21 @@ export type ModelTypes = {
|
|
|
2951
3110
|
createdAt?: number | undefined | null,
|
|
2952
3111
|
updatedAt?: number | undefined | null
|
|
2953
3112
|
};
|
|
2954
|
-
["
|
|
2955
|
-
|
|
2956
|
-
|
|
2957
|
-
|
|
2958
|
-
|
|
3113
|
+
["Shapelista_projektowListProjectsInstance"]: {
|
|
3114
|
+
title?: string | undefined | null,
|
|
3115
|
+
link?: string | undefined | null,
|
|
3116
|
+
remove_button?: string | undefined | null
|
|
3117
|
+
};
|
|
3118
|
+
["Shapelista_projektowListProjects"]: {
|
|
3119
|
+
instance?: Array<ModelTypes["Shapelista_projektowListProjectsInstance"] | undefined | null> | undefined | null
|
|
2959
3120
|
};
|
|
2960
|
-
["
|
|
2961
|
-
|
|
3121
|
+
["Shapelista_projektowList"]: {
|
|
3122
|
+
title?: string | undefined | null,
|
|
3123
|
+
subtitle?: string | undefined | null,
|
|
3124
|
+
projects?: ModelTypes["Shapelista_projektowListProjects"] | undefined | null
|
|
2962
3125
|
};
|
|
2963
|
-
["
|
|
2964
|
-
|
|
3126
|
+
["Shapelista_projektow"]: {
|
|
3127
|
+
list?: ModelTypes["Shapelista_projektowList"] | undefined | null,
|
|
2965
3128
|
_id: string,
|
|
2966
3129
|
createdAt?: number | undefined | null,
|
|
2967
3130
|
updatedAt?: number | undefined | null
|
|
@@ -3001,51 +3164,30 @@ export type ModelTypes = {
|
|
|
3001
3164
|
createdAt?: number | undefined | null,
|
|
3002
3165
|
updatedAt?: number | undefined | null
|
|
3003
3166
|
};
|
|
3004
|
-
["
|
|
3005
|
-
_id: string,
|
|
3006
|
-
createdAt?: number | undefined | null,
|
|
3007
|
-
updatedAt?: number | undefined | null
|
|
3008
|
-
};
|
|
3009
|
-
["ShapenewsletterNewsletter_sectionNewsletter_containerNewsletter_form"]: {
|
|
3010
|
-
email_input?: string | undefined | null,
|
|
3011
|
-
subscribe_button?: string | undefined | null
|
|
3012
|
-
};
|
|
3013
|
-
["ShapenewsletterNewsletter_sectionNewsletter_container"]: {
|
|
3014
|
-
newsletter_heading?: string | undefined | null,
|
|
3015
|
-
newsletter_description?: string | undefined | null,
|
|
3016
|
-
newsletter_form?: ModelTypes["ShapenewsletterNewsletter_sectionNewsletter_containerNewsletter_form"] | undefined | null
|
|
3017
|
-
};
|
|
3018
|
-
["ShapenewsletterNewsletter_section"]: {
|
|
3019
|
-
newsletter_container?: ModelTypes["ShapenewsletterNewsletter_sectionNewsletter_container"] | undefined | null
|
|
3020
|
-
};
|
|
3021
|
-
["Shapenewsletter"]: {
|
|
3022
|
-
newsletter_section?: ModelTypes["ShapenewsletterNewsletter_section"] | undefined | null,
|
|
3023
|
-
_id: string,
|
|
3024
|
-
createdAt?: number | undefined | null,
|
|
3025
|
-
updatedAt?: number | undefined | null
|
|
3026
|
-
};
|
|
3027
|
-
["ShapepricingPricing_sectionPricing_header"]: {
|
|
3167
|
+
["Shapepricing_tablePricing_sectionHeader_wrapper"]: {
|
|
3028
3168
|
title?: string | undefined | null,
|
|
3029
|
-
|
|
3169
|
+
description?: string | undefined | null
|
|
3030
3170
|
};
|
|
3031
|
-
["
|
|
3032
|
-
|
|
3171
|
+
["Shapepricing_tablePricing_sectionPricing_tableTable_head"]: {
|
|
3172
|
+
feature?: string | undefined | null,
|
|
3173
|
+
unit?: string | undefined | null,
|
|
3174
|
+
price?: string | undefined | null
|
|
3033
3175
|
};
|
|
3034
|
-
["
|
|
3035
|
-
|
|
3036
|
-
|
|
3037
|
-
|
|
3038
|
-
plan_cta?: string | undefined | null
|
|
3176
|
+
["Shapepricing_tablePricing_sectionPricing_tableRows"]: {
|
|
3177
|
+
feature?: string | undefined | null,
|
|
3178
|
+
unit?: string | undefined | null,
|
|
3179
|
+
price?: string | undefined | null
|
|
3039
3180
|
};
|
|
3040
|
-
["
|
|
3041
|
-
|
|
3181
|
+
["Shapepricing_tablePricing_sectionPricing_table"]: {
|
|
3182
|
+
table_head?: ModelTypes["Shapepricing_tablePricing_sectionPricing_tableTable_head"] | undefined | null,
|
|
3183
|
+
rows?: Array<ModelTypes["Shapepricing_tablePricing_sectionPricing_tableRows"] | undefined | null> | undefined | null
|
|
3042
3184
|
};
|
|
3043
|
-
["
|
|
3044
|
-
|
|
3045
|
-
|
|
3185
|
+
["Shapepricing_tablePricing_section"]: {
|
|
3186
|
+
header_wrapper?: ModelTypes["Shapepricing_tablePricing_sectionHeader_wrapper"] | undefined | null,
|
|
3187
|
+
pricing_table?: ModelTypes["Shapepricing_tablePricing_sectionPricing_table"] | undefined | null
|
|
3046
3188
|
};
|
|
3047
|
-
["
|
|
3048
|
-
pricing_section?: ModelTypes["
|
|
3189
|
+
["Shapepricing_table"]: {
|
|
3190
|
+
pricing_section?: ModelTypes["Shapepricing_tablePricing_section"] | undefined | null,
|
|
3049
3191
|
_id: string,
|
|
3050
3192
|
createdAt?: number | undefined | null,
|
|
3051
3193
|
updatedAt?: number | undefined | null
|
|
@@ -3088,96 +3230,57 @@ export type ModelTypes = {
|
|
|
3088
3230
|
createdAt?: number | undefined | null,
|
|
3089
3231
|
updatedAt?: number | undefined | null
|
|
3090
3232
|
};
|
|
3091
|
-
["
|
|
3092
|
-
|
|
3093
|
-
|
|
3233
|
+
["Shapeprofile_infoProfile_sectionAccount_headerInfo"]: {
|
|
3234
|
+
full_name?: string | undefined | null,
|
|
3235
|
+
company?: string | undefined | null,
|
|
3236
|
+
email?: string | undefined | null
|
|
3094
3237
|
};
|
|
3095
|
-
["
|
|
3096
|
-
|
|
3238
|
+
["Shapeprofile_infoProfile_sectionAccount_header"]: {
|
|
3239
|
+
avatar?: ModelTypes["ImageField"] | undefined | null,
|
|
3240
|
+
info?: ModelTypes["Shapeprofile_infoProfile_sectionAccount_headerInfo"] | undefined | null
|
|
3097
3241
|
};
|
|
3098
|
-
["
|
|
3099
|
-
|
|
3100
|
-
hero_text?: string | undefined | null,
|
|
3101
|
-
hero_button?: string | undefined | null
|
|
3242
|
+
["Shapeprofile_infoProfile_sectionPlan_status"]: {
|
|
3243
|
+
plan?: string | undefined | null
|
|
3102
3244
|
};
|
|
3103
|
-
["
|
|
3104
|
-
|
|
3105
|
-
|
|
3245
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens"]: {
|
|
3246
|
+
label?: string | undefined | null,
|
|
3247
|
+
value?: string | undefined | null
|
|
3106
3248
|
};
|
|
3107
|
-
["
|
|
3108
|
-
|
|
3109
|
-
|
|
3249
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens"]: {
|
|
3250
|
+
label?: string | undefined | null,
|
|
3251
|
+
value?: string | undefined | null
|
|
3110
3252
|
};
|
|
3111
|
-
["
|
|
3112
|
-
|
|
3113
|
-
|
|
3253
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests"]: {
|
|
3254
|
+
label?: string | undefined | null,
|
|
3255
|
+
value?: string | undefined | null
|
|
3256
|
+
};
|
|
3257
|
+
["Shapeprofile_infoProfile_sectionUsage_section"]: {
|
|
3258
|
+
ai_tokens?: ModelTypes["Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens"] | undefined | null,
|
|
3259
|
+
translate_tokens?: ModelTypes["Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens"] | undefined | null,
|
|
3260
|
+
monthly_api_requests?: ModelTypes["Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests"] | undefined | null
|
|
3114
3261
|
};
|
|
3115
|
-
["
|
|
3116
|
-
|
|
3262
|
+
["Shapeprofile_infoProfile_section"]: {
|
|
3263
|
+
account_header?: ModelTypes["Shapeprofile_infoProfile_sectionAccount_header"] | undefined | null,
|
|
3264
|
+
plan_status?: ModelTypes["Shapeprofile_infoProfile_sectionPlan_status"] | undefined | null,
|
|
3265
|
+
usage_section?: ModelTypes["Shapeprofile_infoProfile_sectionUsage_section"] | undefined | null
|
|
3266
|
+
};
|
|
3267
|
+
["Shapeprofile_info"]: {
|
|
3268
|
+
profile_section?: ModelTypes["Shapeprofile_infoProfile_section"] | undefined | null,
|
|
3117
3269
|
_id: string,
|
|
3118
3270
|
createdAt?: number | undefined | null,
|
|
3119
3271
|
updatedAt?: number | undefined | null
|
|
3120
3272
|
};
|
|
3121
|
-
["
|
|
3122
|
-
|
|
3123
|
-
|
|
3124
|
-
|
|
3125
|
-
|
|
3126
|
-
["FormstepsStep2"]: {
|
|
3127
|
-
_mocks?: string | undefined | null,
|
|
3128
|
-
nazwisko?: ModelTypes["FormTextField"] | undefined | null
|
|
3129
|
-
};
|
|
3130
|
-
["FormstepsStep3"]: {
|
|
3131
|
-
_mocks?: string | undefined | null,
|
|
3132
|
-
email?: ModelTypes["FormTextField"] | undefined | null,
|
|
3133
|
-
koniec?: ModelTypes["FormSubmitField"] | undefined | null
|
|
3134
|
-
};
|
|
3135
|
-
["Formsteps"]: {
|
|
3136
|
-
_mocks?: string | undefined | null,
|
|
3137
|
-
_version?: ModelTypes["VersionField"] | undefined | null,
|
|
3138
|
-
step1?: ModelTypes["FormstepsStep1"] | undefined | null,
|
|
3139
|
-
step2?: ModelTypes["FormstepsStep2"] | undefined | null,
|
|
3140
|
-
step3?: ModelTypes["FormstepsStep3"] | undefined | null,
|
|
3141
|
-
locale?: string | undefined | null,
|
|
3142
|
-
slug?: string | undefined | null,
|
|
3143
|
-
_id: string,
|
|
3144
|
-
createdAt?: string | undefined | null,
|
|
3145
|
-
updatedAt?: string | undefined | null,
|
|
3146
|
-
draft_version?: string | undefined | null,
|
|
3147
|
-
json_ld?: string | undefined | null
|
|
3273
|
+
["ShapeusageMain"]: {
|
|
3274
|
+
title?: string | undefined | null,
|
|
3275
|
+
subtitle?: string | undefined | null,
|
|
3276
|
+
period?: string | undefined | null,
|
|
3277
|
+
tokens_consumed?: number | undefined | null
|
|
3148
3278
|
};
|
|
3149
|
-
["
|
|
3150
|
-
|
|
3151
|
-
type?: ModelTypes["FormRadioTextField"] | undefined | null
|
|
3152
|
-
};
|
|
3153
|
-
["FormtestWindowTechincals"]: {
|
|
3154
|
-
_mocks?: string | undefined | null,
|
|
3155
|
-
width?: ModelTypes["FormNumberField"] | undefined | null,
|
|
3156
|
-
height?: ModelTypes["FormNumberField"] | undefined | null,
|
|
3157
|
-
confirm?: ModelTypes["FormRouteField"] | undefined | null
|
|
3158
|
-
};
|
|
3159
|
-
["FormtestWindow"]: {
|
|
3160
|
-
_mocks?: string | undefined | null,
|
|
3161
|
-
basics?: ModelTypes["FormtestWindowBasics"] | undefined | null,
|
|
3162
|
-
techincals?: ModelTypes["FormtestWindowTechincals"] | undefined | null
|
|
3163
|
-
};
|
|
3164
|
-
["FormtestHome"]: {
|
|
3165
|
-
_mocks?: string | undefined | null,
|
|
3166
|
-
window?: ModelTypes["FormTextField"] | undefined | null,
|
|
3167
|
-
add?: ModelTypes["FormRouteField"] | undefined | null
|
|
3168
|
-
};
|
|
3169
|
-
["Formtest"]: {
|
|
3170
|
-
_mocks?: string | undefined | null,
|
|
3171
|
-
_version?: ModelTypes["VersionField"] | undefined | null,
|
|
3172
|
-
window?: ModelTypes["FormtestWindow"] | undefined | null,
|
|
3173
|
-
home?: ModelTypes["FormtestHome"] | undefined | null,
|
|
3174
|
-
locale?: string | undefined | null,
|
|
3175
|
-
slug?: string | undefined | null,
|
|
3279
|
+
["Shapeusage"]: {
|
|
3280
|
+
main?: ModelTypes["ShapeusageMain"] | undefined | null,
|
|
3176
3281
|
_id: string,
|
|
3177
|
-
createdAt?:
|
|
3178
|
-
updatedAt?:
|
|
3179
|
-
draft_version?: string | undefined | null,
|
|
3180
|
-
json_ld?: string | undefined | null
|
|
3282
|
+
createdAt?: number | undefined | null,
|
|
3283
|
+
updatedAt?: number | undefined | null
|
|
3181
3284
|
};
|
|
3182
3285
|
["RootParamsInput"]: {
|
|
3183
3286
|
_version?: string | undefined | null,
|
|
@@ -3193,7 +3296,8 @@ export type ModelTypes = {
|
|
|
3193
3296
|
slug?: ModelTypes["FilterInputString"] | undefined | null
|
|
3194
3297
|
};
|
|
3195
3298
|
["schema"]: {
|
|
3196
|
-
query?: ModelTypes["Query"] | undefined | null
|
|
3299
|
+
query?: ModelTypes["Query"] | undefined | null,
|
|
3300
|
+
mutation?: ModelTypes["Mutation"] | undefined | null
|
|
3197
3301
|
};
|
|
3198
3302
|
["ID"]:any
|
|
3199
3303
|
}
|
|
@@ -3283,6 +3387,18 @@ export type GraphQLTypes = {
|
|
|
3283
3387
|
setOperator?: GraphQLTypes["ConditionSetOperator"] | undefined | null,
|
|
3284
3388
|
value?: string | undefined | null,
|
|
3285
3389
|
children?: Array<GraphQLTypes["Condition"]> | undefined | null
|
|
3390
|
+
};
|
|
3391
|
+
["ActionType"]: ActionType;
|
|
3392
|
+
["Action"]: {
|
|
3393
|
+
__typename: "Action",
|
|
3394
|
+
path: string,
|
|
3395
|
+
type: GraphQLTypes["ActionType"],
|
|
3396
|
+
value: string
|
|
3397
|
+
};
|
|
3398
|
+
["Rule"]: {
|
|
3399
|
+
__typename: "Rule",
|
|
3400
|
+
conditions: Array<GraphQLTypes["Condition"]>,
|
|
3401
|
+
actions: Array<GraphQLTypes["Action"]>
|
|
3286
3402
|
};
|
|
3287
3403
|
["Visual"]: {
|
|
3288
3404
|
__typename: "Visual",
|
|
@@ -3302,6 +3418,10 @@ export type GraphQLTypes = {
|
|
|
3302
3418
|
eq?: string | undefined | null,
|
|
3303
3419
|
ne?: string | undefined | null,
|
|
3304
3420
|
contain?: string | undefined | null
|
|
3421
|
+
};
|
|
3422
|
+
["Mutation"]: {
|
|
3423
|
+
__typename: "Mutation",
|
|
3424
|
+
heartbeat?: string | undefined | null
|
|
3305
3425
|
};
|
|
3306
3426
|
["RootParamsAdminType"]: "scalar" & { name: "RootParamsAdminType" };
|
|
3307
3427
|
["Shape"]: {
|
|
@@ -3311,6 +3431,7 @@ export type GraphQLTypes = {
|
|
|
3311
3431
|
display: string,
|
|
3312
3432
|
previewFields?: GraphQLTypes["BakedIpsumData"] | undefined | null,
|
|
3313
3433
|
prompt?: string | undefined | null,
|
|
3434
|
+
promptResponse?: GraphQLTypes["AiComponent"] | undefined | null,
|
|
3314
3435
|
fields: Array<GraphQLTypes["CMSField"]>
|
|
3315
3436
|
};
|
|
3316
3437
|
["View"]: {
|
|
@@ -3319,6 +3440,20 @@ export type GraphQLTypes = {
|
|
|
3319
3440
|
fields: Array<GraphQLTypes["CMSField"]>,
|
|
3320
3441
|
slug: string,
|
|
3321
3442
|
display: string
|
|
3443
|
+
};
|
|
3444
|
+
["AiComponent"]: {
|
|
3445
|
+
__typename: "AiComponent",
|
|
3446
|
+
name: string,
|
|
3447
|
+
htmlComponent?: string | undefined | null,
|
|
3448
|
+
className: string,
|
|
3449
|
+
textContent?: string | undefined | null,
|
|
3450
|
+
children?: Array<GraphQLTypes["AiComponent"]> | undefined | null
|
|
3451
|
+
};
|
|
3452
|
+
["FormFieldVisual"]: {
|
|
3453
|
+
__typename: "FormFieldVisual",
|
|
3454
|
+
className?: string | undefined | null,
|
|
3455
|
+
component?: string | undefined | null,
|
|
3456
|
+
rules?: Array<GraphQLTypes["Rule"]> | undefined | null
|
|
3322
3457
|
};
|
|
3323
3458
|
["FormField"]: {
|
|
3324
3459
|
__typename: "FormField",
|
|
@@ -3327,8 +3462,7 @@ export type GraphQLTypes = {
|
|
|
3327
3462
|
type: GraphQLTypes["FormFieldType"],
|
|
3328
3463
|
list?: boolean | undefined | null,
|
|
3329
3464
|
fields?: Array<GraphQLTypes["FormField"]> | undefined | null,
|
|
3330
|
-
visual?: GraphQLTypes["
|
|
3331
|
-
conditions?: GraphQLTypes["Condition"] | undefined | null,
|
|
3465
|
+
visual?: GraphQLTypes["FormFieldVisual"] | undefined | null,
|
|
3332
3466
|
placeholder?: string | undefined | null,
|
|
3333
3467
|
root?: boolean | undefined | null,
|
|
3334
3468
|
options?: Array<string> | undefined | null,
|
|
@@ -3398,11 +3532,30 @@ export type GraphQLTypes = {
|
|
|
3398
3532
|
__typename: "FormRadioTextField",
|
|
3399
3533
|
label?: string | undefined | null,
|
|
3400
3534
|
options?: Array<string> | undefined | null
|
|
3535
|
+
};
|
|
3536
|
+
["FormCheckboxField"]: {
|
|
3537
|
+
__typename: "FormCheckboxField",
|
|
3538
|
+
label?: string | undefined | null
|
|
3539
|
+
};
|
|
3540
|
+
["FormButtonField"]: {
|
|
3541
|
+
__typename: "FormButtonField",
|
|
3542
|
+
label?: string | undefined | null
|
|
3401
3543
|
};
|
|
3402
3544
|
["FormProductField"]: {
|
|
3403
3545
|
__typename: "FormProductField",
|
|
3404
3546
|
label?: string | undefined | null,
|
|
3405
3547
|
name?: string | undefined | null
|
|
3548
|
+
};
|
|
3549
|
+
["FormVariableField"]: {
|
|
3550
|
+
__typename: "FormVariableField",
|
|
3551
|
+
label?: string | undefined | null,
|
|
3552
|
+
name?: string | undefined | null,
|
|
3553
|
+
defaultValue?: string | undefined | null
|
|
3554
|
+
};
|
|
3555
|
+
["FormDisplayField"]: {
|
|
3556
|
+
__typename: "FormDisplayField",
|
|
3557
|
+
label?: string | undefined | null,
|
|
3558
|
+
path?: string | undefined | null
|
|
3406
3559
|
};
|
|
3407
3560
|
/** This enum is defined externally and injected via federation */
|
|
3408
3561
|
["CMSType"]: CMSType;
|
|
@@ -3422,10 +3575,6 @@ export type GraphQLTypes = {
|
|
|
3422
3575
|
fieldSetdocs: string,
|
|
3423
3576
|
modeldocs: GraphQLTypes["ModelNavigationCompiled"],
|
|
3424
3577
|
previewFieldsdocs: GraphQLTypes["ModelNavigationCompiled"],
|
|
3425
|
-
fieldSetShapecta: string,
|
|
3426
|
-
modelShapecta: GraphQLTypes["ModelNavigationCompiled"],
|
|
3427
|
-
previewFieldsShapecta: GraphQLTypes["ModelNavigationCompiled"],
|
|
3428
|
-
oneShapecta?: GraphQLTypes["Shapecta"] | undefined | null,
|
|
3429
3578
|
fieldSetShapedocs_content: string,
|
|
3430
3579
|
modelShapedocs_content: GraphQLTypes["ModelNavigationCompiled"],
|
|
3431
3580
|
previewFieldsShapedocs_content: GraphQLTypes["ModelNavigationCompiled"],
|
|
@@ -3434,6 +3583,10 @@ export type GraphQLTypes = {
|
|
|
3434
3583
|
modelShapedocs_nav: GraphQLTypes["ModelNavigationCompiled"],
|
|
3435
3584
|
previewFieldsShapedocs_nav: GraphQLTypes["ModelNavigationCompiled"],
|
|
3436
3585
|
oneShapedocs_nav?: GraphQLTypes["Shapedocs_nav"] | undefined | null,
|
|
3586
|
+
fieldSetShapefeaturepresentation: string,
|
|
3587
|
+
modelShapefeaturepresentation: GraphQLTypes["ModelNavigationCompiled"],
|
|
3588
|
+
previewFieldsShapefeaturepresentation: GraphQLTypes["ModelNavigationCompiled"],
|
|
3589
|
+
oneShapefeaturepresentation?: GraphQLTypes["Shapefeaturepresentation"] | undefined | null,
|
|
3437
3590
|
fieldSetShapefoot: string,
|
|
3438
3591
|
modelShapefoot: GraphQLTypes["ModelNavigationCompiled"],
|
|
3439
3592
|
previewFieldsShapefoot: GraphQLTypes["ModelNavigationCompiled"],
|
|
@@ -3446,10 +3599,10 @@ export type GraphQLTypes = {
|
|
|
3446
3599
|
modelShapeherox: GraphQLTypes["ModelNavigationCompiled"],
|
|
3447
3600
|
previewFieldsShapeherox: GraphQLTypes["ModelNavigationCompiled"],
|
|
3448
3601
|
oneShapeherox?: GraphQLTypes["Shapeherox"] | undefined | null,
|
|
3449
|
-
|
|
3450
|
-
|
|
3451
|
-
|
|
3452
|
-
|
|
3602
|
+
fieldSetShapelista_projektow: string,
|
|
3603
|
+
modelShapelista_projektow: GraphQLTypes["ModelNavigationCompiled"],
|
|
3604
|
+
previewFieldsShapelista_projektow: GraphQLTypes["ModelNavigationCompiled"],
|
|
3605
|
+
oneShapelista_projektow?: GraphQLTypes["Shapelista_projektow"] | undefined | null,
|
|
3453
3606
|
fieldSetShapenav: string,
|
|
3454
3607
|
modelShapenav: GraphQLTypes["ModelNavigationCompiled"],
|
|
3455
3608
|
previewFieldsShapenav: GraphQLTypes["ModelNavigationCompiled"],
|
|
@@ -3458,26 +3611,32 @@ export type GraphQLTypes = {
|
|
|
3458
3611
|
modelShapenewshape: GraphQLTypes["ModelNavigationCompiled"],
|
|
3459
3612
|
previewFieldsShapenewshape: GraphQLTypes["ModelNavigationCompiled"],
|
|
3460
3613
|
oneShapenewshape?: GraphQLTypes["Shapenewshape"] | undefined | null,
|
|
3461
|
-
|
|
3462
|
-
|
|
3463
|
-
|
|
3464
|
-
|
|
3465
|
-
fieldSetShapenewsletter: string,
|
|
3466
|
-
modelShapenewsletter: GraphQLTypes["ModelNavigationCompiled"],
|
|
3467
|
-
previewFieldsShapenewsletter: GraphQLTypes["ModelNavigationCompiled"],
|
|
3468
|
-
oneShapenewsletter?: GraphQLTypes["Shapenewsletter"] | undefined | null,
|
|
3469
|
-
fieldSetShapepricing: string,
|
|
3470
|
-
modelShapepricing: GraphQLTypes["ModelNavigationCompiled"],
|
|
3471
|
-
previewFieldsShapepricing: GraphQLTypes["ModelNavigationCompiled"],
|
|
3472
|
-
oneShapepricing?: GraphQLTypes["Shapepricing"] | undefined | null,
|
|
3614
|
+
fieldSetShapepricing_table: string,
|
|
3615
|
+
modelShapepricing_table: GraphQLTypes["ModelNavigationCompiled"],
|
|
3616
|
+
previewFieldsShapepricing_table: GraphQLTypes["ModelNavigationCompiled"],
|
|
3617
|
+
oneShapepricing_table?: GraphQLTypes["Shapepricing_table"] | undefined | null,
|
|
3473
3618
|
fieldSetShapepricingv1: string,
|
|
3474
3619
|
modelShapepricingv1: GraphQLTypes["ModelNavigationCompiled"],
|
|
3475
3620
|
previewFieldsShapepricingv1: GraphQLTypes["ModelNavigationCompiled"],
|
|
3476
3621
|
oneShapepricingv1?: GraphQLTypes["Shapepricingv1"] | undefined | null,
|
|
3477
|
-
|
|
3478
|
-
|
|
3479
|
-
|
|
3480
|
-
|
|
3622
|
+
fieldSetShapeprofile_info: string,
|
|
3623
|
+
modelShapeprofile_info: GraphQLTypes["ModelNavigationCompiled"],
|
|
3624
|
+
previewFieldsShapeprofile_info: GraphQLTypes["ModelNavigationCompiled"],
|
|
3625
|
+
oneShapeprofile_info?: GraphQLTypes["Shapeprofile_info"] | undefined | null,
|
|
3626
|
+
fieldSetShapeusage: string,
|
|
3627
|
+
modelShapeusage: GraphQLTypes["ModelNavigationCompiled"],
|
|
3628
|
+
previewFieldsShapeusage: GraphQLTypes["ModelNavigationCompiled"],
|
|
3629
|
+
oneShapeusage?: GraphQLTypes["Shapeusage"] | undefined | null,
|
|
3630
|
+
variantsViewaccount?: Array<GraphQLTypes["Viewaccount"]> | undefined | null,
|
|
3631
|
+
fieldSetViewaccount: string,
|
|
3632
|
+
modelViewaccount: GraphQLTypes["ModelNavigationCompiled"],
|
|
3633
|
+
previewFieldsViewaccount: GraphQLTypes["ModelNavigationCompiled"],
|
|
3634
|
+
oneViewaccount?: GraphQLTypes["Viewaccount"] | undefined | null,
|
|
3635
|
+
variantsViewfeatures?: Array<GraphQLTypes["Viewfeatures"]> | undefined | null,
|
|
3636
|
+
fieldSetViewfeatures: string,
|
|
3637
|
+
modelViewfeatures: GraphQLTypes["ModelNavigationCompiled"],
|
|
3638
|
+
previewFieldsViewfeatures: GraphQLTypes["ModelNavigationCompiled"],
|
|
3639
|
+
oneViewfeatures?: GraphQLTypes["Viewfeatures"] | undefined | null,
|
|
3481
3640
|
variantsViewhomepage?: Array<GraphQLTypes["Viewhomepage"]> | undefined | null,
|
|
3482
3641
|
fieldSetViewhomepage: string,
|
|
3483
3642
|
modelViewhomepage: GraphQLTypes["ModelNavigationCompiled"],
|
|
@@ -3488,16 +3647,11 @@ export type GraphQLTypes = {
|
|
|
3488
3647
|
modelViewhowitworks: GraphQLTypes["ModelNavigationCompiled"],
|
|
3489
3648
|
previewFieldsViewhowitworks: GraphQLTypes["ModelNavigationCompiled"],
|
|
3490
3649
|
oneViewhowitworks?: GraphQLTypes["Viewhowitworks"] | undefined | null,
|
|
3491
|
-
|
|
3492
|
-
|
|
3493
|
-
|
|
3494
|
-
|
|
3495
|
-
|
|
3496
|
-
variantsFormtest?: Array<GraphQLTypes["Formtest"]> | undefined | null,
|
|
3497
|
-
fieldSetFormtest: string,
|
|
3498
|
-
modelFormtest: GraphQLTypes["ModelNavigationCompiled"],
|
|
3499
|
-
previewFieldsFormtest: GraphQLTypes["ModelNavigationCompiled"],
|
|
3500
|
-
oneFormtest?: GraphQLTypes["Formtest"] | undefined | null
|
|
3650
|
+
variantsViewpricing?: Array<GraphQLTypes["Viewpricing"]> | undefined | null,
|
|
3651
|
+
fieldSetViewpricing: string,
|
|
3652
|
+
modelViewpricing: GraphQLTypes["ModelNavigationCompiled"],
|
|
3653
|
+
previewFieldsViewpricing: GraphQLTypes["ModelNavigationCompiled"],
|
|
3654
|
+
oneViewpricing?: GraphQLTypes["Viewpricing"] | undefined | null
|
|
3501
3655
|
};
|
|
3502
3656
|
["RootParamsType"]: {
|
|
3503
3657
|
__typename: "RootParamsType",
|
|
@@ -3529,6 +3683,40 @@ export type GraphQLTypes = {
|
|
|
3529
3683
|
updatedAt?: number | undefined | null,
|
|
3530
3684
|
draft_version?: boolean | undefined | null,
|
|
3531
3685
|
json_ld?: string | undefined | null
|
|
3686
|
+
};
|
|
3687
|
+
["ViewaccountMain"]: {
|
|
3688
|
+
__typename: "ViewaccountMain",
|
|
3689
|
+
profile?: GraphQLTypes["Shapeprofile_info"] | undefined | null,
|
|
3690
|
+
projects?: GraphQLTypes["Shapelista_projektow"] | undefined | null
|
|
3691
|
+
};
|
|
3692
|
+
["Viewaccount"]: {
|
|
3693
|
+
__typename: "Viewaccount",
|
|
3694
|
+
_version?: GraphQLTypes["VersionField"] | undefined | null,
|
|
3695
|
+
main?: GraphQLTypes["ViewaccountMain"] | undefined | null,
|
|
3696
|
+
locale?: string | undefined | null,
|
|
3697
|
+
slug?: string | undefined | null,
|
|
3698
|
+
_id: string,
|
|
3699
|
+
createdAt?: number | undefined | null,
|
|
3700
|
+
updatedAt?: number | undefined | null,
|
|
3701
|
+
draft_version?: boolean | undefined | null,
|
|
3702
|
+
json_ld?: string | undefined | null
|
|
3703
|
+
};
|
|
3704
|
+
["ViewfeaturesMain"]: {
|
|
3705
|
+
__typename: "ViewfeaturesMain",
|
|
3706
|
+
auto_translation?: GraphQLTypes["Shapefeaturepresentation"] | undefined | null,
|
|
3707
|
+
ai_component?: GraphQLTypes["Shapefeaturepresentation"] | undefined | null
|
|
3708
|
+
};
|
|
3709
|
+
["Viewfeatures"]: {
|
|
3710
|
+
__typename: "Viewfeatures",
|
|
3711
|
+
_version?: GraphQLTypes["VersionField"] | undefined | null,
|
|
3712
|
+
main?: GraphQLTypes["ViewfeaturesMain"] | undefined | null,
|
|
3713
|
+
locale?: string | undefined | null,
|
|
3714
|
+
slug?: string | undefined | null,
|
|
3715
|
+
_id: string,
|
|
3716
|
+
createdAt?: number | undefined | null,
|
|
3717
|
+
updatedAt?: number | undefined | null,
|
|
3718
|
+
draft_version?: boolean | undefined | null,
|
|
3719
|
+
json_ld?: string | undefined | null
|
|
3532
3720
|
};
|
|
3533
3721
|
["Viewhomepage"]: {
|
|
3534
3722
|
__typename: "Viewhomepage",
|
|
@@ -3536,7 +3724,6 @@ export type GraphQLTypes = {
|
|
|
3536
3724
|
nav?: GraphQLTypes["Shapenav"] | undefined | null,
|
|
3537
3725
|
main?: GraphQLTypes["Shapehero"] | undefined | null,
|
|
3538
3726
|
hero?: GraphQLTypes["Shapeherox"] | undefined | null,
|
|
3539
|
-
learn?: GraphQLTypes["Shapelearn"] | undefined | null,
|
|
3540
3727
|
pricing?: GraphQLTypes["Shapepricingv1"] | undefined | null,
|
|
3541
3728
|
footer?: GraphQLTypes["Shapefoot"] | undefined | null,
|
|
3542
3729
|
locale?: string | undefined | null,
|
|
@@ -3566,22 +3753,19 @@ export type GraphQLTypes = {
|
|
|
3566
3753
|
draft_version?: boolean | undefined | null,
|
|
3567
3754
|
json_ld?: string | undefined | null
|
|
3568
3755
|
};
|
|
3569
|
-
["
|
|
3570
|
-
__typename: "
|
|
3571
|
-
|
|
3572
|
-
|
|
3573
|
-
|
|
3574
|
-
|
|
3575
|
-
|
|
3576
|
-
|
|
3577
|
-
cta_container?: GraphQLTypes["ShapectaCta_sectionCta_container"] | undefined | null
|
|
3578
|
-
};
|
|
3579
|
-
["Shapecta"]: {
|
|
3580
|
-
__typename: "Shapecta",
|
|
3581
|
-
cta_section?: GraphQLTypes["ShapectaCta_section"] | undefined | null,
|
|
3756
|
+
["Viewpricing"]: {
|
|
3757
|
+
__typename: "Viewpricing",
|
|
3758
|
+
_version?: GraphQLTypes["VersionField"] | undefined | null,
|
|
3759
|
+
pricing?: GraphQLTypes["Shapepricingv1"] | undefined | null,
|
|
3760
|
+
table?: GraphQLTypes["Shapepricing_table"] | undefined | null,
|
|
3761
|
+
cta?: GraphQLTypes["Shapenewshape"] | undefined | null,
|
|
3762
|
+
locale?: string | undefined | null,
|
|
3763
|
+
slug?: string | undefined | null,
|
|
3582
3764
|
_id: string,
|
|
3583
3765
|
createdAt?: number | undefined | null,
|
|
3584
|
-
updatedAt?: number | undefined | null
|
|
3766
|
+
updatedAt?: number | undefined | null,
|
|
3767
|
+
draft_version?: boolean | undefined | null,
|
|
3768
|
+
json_ld?: string | undefined | null
|
|
3585
3769
|
};
|
|
3586
3770
|
["Shapedocs_contentDocumentation_pageContent_containerDoc_content"]: {
|
|
3587
3771
|
__typename: "Shapedocs_contentDocumentation_pageContent_containerDoc_content",
|
|
@@ -3636,6 +3820,19 @@ export type GraphQLTypes = {
|
|
|
3636
3820
|
_id: string,
|
|
3637
3821
|
createdAt?: number | undefined | null,
|
|
3638
3822
|
updatedAt?: number | undefined | null
|
|
3823
|
+
};
|
|
3824
|
+
["ShapefeaturepresentationMain"]: {
|
|
3825
|
+
__typename: "ShapefeaturepresentationMain",
|
|
3826
|
+
title?: string | undefined | null,
|
|
3827
|
+
subtitle?: string | undefined | null,
|
|
3828
|
+
content?: string | undefined | null
|
|
3829
|
+
};
|
|
3830
|
+
["Shapefeaturepresentation"]: {
|
|
3831
|
+
__typename: "Shapefeaturepresentation",
|
|
3832
|
+
main?: GraphQLTypes["ShapefeaturepresentationMain"] | undefined | null,
|
|
3833
|
+
_id: string,
|
|
3834
|
+
createdAt?: number | undefined | null,
|
|
3835
|
+
updatedAt?: number | undefined | null
|
|
3639
3836
|
};
|
|
3640
3837
|
["ShapefootFooterFooter_containerFooter_links"]: {
|
|
3641
3838
|
__typename: "ShapefootFooterFooter_containerFooter_links",
|
|
@@ -3659,12 +3856,16 @@ export type GraphQLTypes = {
|
|
|
3659
3856
|
_id: string,
|
|
3660
3857
|
createdAt?: number | undefined | null,
|
|
3661
3858
|
updatedAt?: number | undefined | null
|
|
3859
|
+
};
|
|
3860
|
+
["ShapeheroHero_componentSlogan_parent"]: {
|
|
3861
|
+
__typename: "ShapeheroHero_componentSlogan_parent",
|
|
3862
|
+
slogan?: string | undefined | null
|
|
3662
3863
|
};
|
|
3663
3864
|
["ShapeheroHero_component"]: {
|
|
3664
3865
|
__typename: "ShapeheroHero_component",
|
|
3665
3866
|
logoplace?: string | undefined | null,
|
|
3666
3867
|
logo?: string | undefined | null,
|
|
3667
|
-
|
|
3868
|
+
slogan_parent?: GraphQLTypes["ShapeheroHero_componentSlogan_parent"] | undefined | null,
|
|
3668
3869
|
subslogan?: string | undefined | null
|
|
3669
3870
|
};
|
|
3670
3871
|
["Shapehero"]: {
|
|
@@ -3682,17 +3883,21 @@ export type GraphQLTypes = {
|
|
|
3682
3883
|
__typename: "ShapeheroxHero_sectionHero_containerText_wrapper",
|
|
3683
3884
|
title?: string | undefined | null,
|
|
3684
3885
|
description?: string | undefined | null,
|
|
3685
|
-
features?: GraphQLTypes["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"] | undefined | null
|
|
3686
|
-
call_to_action?: string | undefined | null
|
|
3886
|
+
features?: GraphQLTypes["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"] | undefined | null
|
|
3687
3887
|
};
|
|
3688
3888
|
["ShapeheroxHero_sectionHero_containerImage_wrapper"]: {
|
|
3689
3889
|
__typename: "ShapeheroxHero_sectionHero_containerImage_wrapper",
|
|
3690
3890
|
hero_image?: GraphQLTypes["ImageField"] | undefined | null
|
|
3891
|
+
};
|
|
3892
|
+
["ShapeheroxHero_sectionHero_containerPresentation"]: {
|
|
3893
|
+
__typename: "ShapeheroxHero_sectionHero_containerPresentation",
|
|
3894
|
+
video?: GraphQLTypes["VideoField"] | undefined | null
|
|
3691
3895
|
};
|
|
3692
3896
|
["ShapeheroxHero_sectionHero_container"]: {
|
|
3693
3897
|
__typename: "ShapeheroxHero_sectionHero_container",
|
|
3694
3898
|
text_wrapper?: GraphQLTypes["ShapeheroxHero_sectionHero_containerText_wrapper"] | undefined | null,
|
|
3695
|
-
image_wrapper?: GraphQLTypes["ShapeheroxHero_sectionHero_containerImage_wrapper"] | undefined | null
|
|
3899
|
+
image_wrapper?: GraphQLTypes["ShapeheroxHero_sectionHero_containerImage_wrapper"] | undefined | null,
|
|
3900
|
+
presentation?: GraphQLTypes["ShapeheroxHero_sectionHero_containerPresentation"] | undefined | null
|
|
3696
3901
|
};
|
|
3697
3902
|
["ShapeheroxHero_section"]: {
|
|
3698
3903
|
__typename: "ShapeheroxHero_section",
|
|
@@ -3705,20 +3910,25 @@ export type GraphQLTypes = {
|
|
|
3705
3910
|
createdAt?: number | undefined | null,
|
|
3706
3911
|
updatedAt?: number | undefined | null
|
|
3707
3912
|
};
|
|
3708
|
-
["
|
|
3709
|
-
__typename: "
|
|
3710
|
-
|
|
3711
|
-
|
|
3712
|
-
|
|
3713
|
-
cta_button?: string | undefined | null
|
|
3913
|
+
["Shapelista_projektowListProjectsInstance"]: {
|
|
3914
|
+
__typename: "Shapelista_projektowListProjectsInstance",
|
|
3915
|
+
title?: string | undefined | null,
|
|
3916
|
+
link?: string | undefined | null,
|
|
3917
|
+
remove_button?: string | undefined | null
|
|
3714
3918
|
};
|
|
3715
|
-
["
|
|
3716
|
-
__typename: "
|
|
3717
|
-
|
|
3919
|
+
["Shapelista_projektowListProjects"]: {
|
|
3920
|
+
__typename: "Shapelista_projektowListProjects",
|
|
3921
|
+
instance?: Array<GraphQLTypes["Shapelista_projektowListProjectsInstance"] | undefined | null> | undefined | null
|
|
3922
|
+
};
|
|
3923
|
+
["Shapelista_projektowList"]: {
|
|
3924
|
+
__typename: "Shapelista_projektowList",
|
|
3925
|
+
title?: string | undefined | null,
|
|
3926
|
+
subtitle?: string | undefined | null,
|
|
3927
|
+
projects?: GraphQLTypes["Shapelista_projektowListProjects"] | undefined | null
|
|
3718
3928
|
};
|
|
3719
|
-
["
|
|
3720
|
-
__typename: "
|
|
3721
|
-
|
|
3929
|
+
["Shapelista_projektow"]: {
|
|
3930
|
+
__typename: "Shapelista_projektow",
|
|
3931
|
+
list?: GraphQLTypes["Shapelista_projektowList"] | undefined | null,
|
|
3722
3932
|
_id: string,
|
|
3723
3933
|
createdAt?: number | undefined | null,
|
|
3724
3934
|
updatedAt?: number | undefined | null
|
|
@@ -3765,62 +3975,36 @@ export type GraphQLTypes = {
|
|
|
3765
3975
|
createdAt?: number | undefined | null,
|
|
3766
3976
|
updatedAt?: number | undefined | null
|
|
3767
3977
|
};
|
|
3768
|
-
["
|
|
3769
|
-
__typename: "
|
|
3770
|
-
_id: string,
|
|
3771
|
-
createdAt?: number | undefined | null,
|
|
3772
|
-
updatedAt?: number | undefined | null
|
|
3773
|
-
};
|
|
3774
|
-
["ShapenewsletterNewsletter_sectionNewsletter_containerNewsletter_form"]: {
|
|
3775
|
-
__typename: "ShapenewsletterNewsletter_sectionNewsletter_containerNewsletter_form",
|
|
3776
|
-
email_input?: string | undefined | null,
|
|
3777
|
-
subscribe_button?: string | undefined | null
|
|
3778
|
-
};
|
|
3779
|
-
["ShapenewsletterNewsletter_sectionNewsletter_container"]: {
|
|
3780
|
-
__typename: "ShapenewsletterNewsletter_sectionNewsletter_container",
|
|
3781
|
-
newsletter_heading?: string | undefined | null,
|
|
3782
|
-
newsletter_description?: string | undefined | null,
|
|
3783
|
-
newsletter_form?: GraphQLTypes["ShapenewsletterNewsletter_sectionNewsletter_containerNewsletter_form"] | undefined | null
|
|
3784
|
-
};
|
|
3785
|
-
["ShapenewsletterNewsletter_section"]: {
|
|
3786
|
-
__typename: "ShapenewsletterNewsletter_section",
|
|
3787
|
-
newsletter_container?: GraphQLTypes["ShapenewsletterNewsletter_sectionNewsletter_container"] | undefined | null
|
|
3788
|
-
};
|
|
3789
|
-
["Shapenewsletter"]: {
|
|
3790
|
-
__typename: "Shapenewsletter",
|
|
3791
|
-
newsletter_section?: GraphQLTypes["ShapenewsletterNewsletter_section"] | undefined | null,
|
|
3792
|
-
_id: string,
|
|
3793
|
-
createdAt?: number | undefined | null,
|
|
3794
|
-
updatedAt?: number | undefined | null
|
|
3795
|
-
};
|
|
3796
|
-
["ShapepricingPricing_sectionPricing_header"]: {
|
|
3797
|
-
__typename: "ShapepricingPricing_sectionPricing_header",
|
|
3978
|
+
["Shapepricing_tablePricing_sectionHeader_wrapper"]: {
|
|
3979
|
+
__typename: "Shapepricing_tablePricing_sectionHeader_wrapper",
|
|
3798
3980
|
title?: string | undefined | null,
|
|
3799
|
-
|
|
3800
|
-
};
|
|
3801
|
-
["
|
|
3802
|
-
__typename: "
|
|
3803
|
-
|
|
3804
|
-
|
|
3805
|
-
|
|
3806
|
-
|
|
3807
|
-
|
|
3808
|
-
|
|
3809
|
-
|
|
3810
|
-
|
|
3811
|
-
|
|
3812
|
-
|
|
3813
|
-
|
|
3814
|
-
|
|
3815
|
-
|
|
3816
|
-
["
|
|
3817
|
-
|
|
3818
|
-
|
|
3819
|
-
|
|
3820
|
-
|
|
3821
|
-
["
|
|
3822
|
-
|
|
3823
|
-
|
|
3981
|
+
description?: string | undefined | null
|
|
3982
|
+
};
|
|
3983
|
+
["Shapepricing_tablePricing_sectionPricing_tableTable_head"]: {
|
|
3984
|
+
__typename: "Shapepricing_tablePricing_sectionPricing_tableTable_head",
|
|
3985
|
+
feature?: string | undefined | null,
|
|
3986
|
+
unit?: string | undefined | null,
|
|
3987
|
+
price?: string | undefined | null
|
|
3988
|
+
};
|
|
3989
|
+
["Shapepricing_tablePricing_sectionPricing_tableRows"]: {
|
|
3990
|
+
__typename: "Shapepricing_tablePricing_sectionPricing_tableRows",
|
|
3991
|
+
feature?: string | undefined | null,
|
|
3992
|
+
unit?: string | undefined | null,
|
|
3993
|
+
price?: string | undefined | null
|
|
3994
|
+
};
|
|
3995
|
+
["Shapepricing_tablePricing_sectionPricing_table"]: {
|
|
3996
|
+
__typename: "Shapepricing_tablePricing_sectionPricing_table",
|
|
3997
|
+
table_head?: GraphQLTypes["Shapepricing_tablePricing_sectionPricing_tableTable_head"] | undefined | null,
|
|
3998
|
+
rows?: Array<GraphQLTypes["Shapepricing_tablePricing_sectionPricing_tableRows"] | undefined | null> | undefined | null
|
|
3999
|
+
};
|
|
4000
|
+
["Shapepricing_tablePricing_section"]: {
|
|
4001
|
+
__typename: "Shapepricing_tablePricing_section",
|
|
4002
|
+
header_wrapper?: GraphQLTypes["Shapepricing_tablePricing_sectionHeader_wrapper"] | undefined | null,
|
|
4003
|
+
pricing_table?: GraphQLTypes["Shapepricing_tablePricing_sectionPricing_table"] | undefined | null
|
|
4004
|
+
};
|
|
4005
|
+
["Shapepricing_table"]: {
|
|
4006
|
+
__typename: "Shapepricing_table",
|
|
4007
|
+
pricing_section?: GraphQLTypes["Shapepricing_tablePricing_section"] | undefined | null,
|
|
3824
4008
|
_id: string,
|
|
3825
4009
|
createdAt?: number | undefined | null,
|
|
3826
4010
|
updatedAt?: number | undefined | null
|
|
@@ -3871,112 +4055,68 @@ export type GraphQLTypes = {
|
|
|
3871
4055
|
createdAt?: number | undefined | null,
|
|
3872
4056
|
updatedAt?: number | undefined | null
|
|
3873
4057
|
};
|
|
3874
|
-
["
|
|
3875
|
-
__typename: "
|
|
3876
|
-
|
|
3877
|
-
|
|
4058
|
+
["Shapeprofile_infoProfile_sectionAccount_headerInfo"]: {
|
|
4059
|
+
__typename: "Shapeprofile_infoProfile_sectionAccount_headerInfo",
|
|
4060
|
+
full_name?: string | undefined | null,
|
|
4061
|
+
company?: string | undefined | null,
|
|
4062
|
+
email?: string | undefined | null
|
|
3878
4063
|
};
|
|
3879
|
-
["
|
|
3880
|
-
__typename: "
|
|
3881
|
-
|
|
3882
|
-
|
|
3883
|
-
|
|
3884
|
-
|
|
3885
|
-
|
|
3886
|
-
|
|
3887
|
-
|
|
3888
|
-
|
|
3889
|
-
|
|
3890
|
-
|
|
3891
|
-
|
|
3892
|
-
|
|
3893
|
-
|
|
3894
|
-
|
|
3895
|
-
|
|
3896
|
-
|
|
3897
|
-
|
|
3898
|
-
|
|
3899
|
-
|
|
3900
|
-
|
|
3901
|
-
|
|
3902
|
-
|
|
3903
|
-
|
|
3904
|
-
|
|
3905
|
-
|
|
3906
|
-
|
|
4064
|
+
["Shapeprofile_infoProfile_sectionAccount_header"]: {
|
|
4065
|
+
__typename: "Shapeprofile_infoProfile_sectionAccount_header",
|
|
4066
|
+
avatar?: GraphQLTypes["ImageField"] | undefined | null,
|
|
4067
|
+
info?: GraphQLTypes["Shapeprofile_infoProfile_sectionAccount_headerInfo"] | undefined | null
|
|
4068
|
+
};
|
|
4069
|
+
["Shapeprofile_infoProfile_sectionPlan_status"]: {
|
|
4070
|
+
__typename: "Shapeprofile_infoProfile_sectionPlan_status",
|
|
4071
|
+
plan?: string | undefined | null
|
|
4072
|
+
};
|
|
4073
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens"]: {
|
|
4074
|
+
__typename: "Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens",
|
|
4075
|
+
label?: string | undefined | null,
|
|
4076
|
+
value?: string | undefined | null
|
|
4077
|
+
};
|
|
4078
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens"]: {
|
|
4079
|
+
__typename: "Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens",
|
|
4080
|
+
label?: string | undefined | null,
|
|
4081
|
+
value?: string | undefined | null
|
|
4082
|
+
};
|
|
4083
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests"]: {
|
|
4084
|
+
__typename: "Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests",
|
|
4085
|
+
label?: string | undefined | null,
|
|
4086
|
+
value?: string | undefined | null
|
|
4087
|
+
};
|
|
4088
|
+
["Shapeprofile_infoProfile_sectionUsage_section"]: {
|
|
4089
|
+
__typename: "Shapeprofile_infoProfile_sectionUsage_section",
|
|
4090
|
+
ai_tokens?: GraphQLTypes["Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens"] | undefined | null,
|
|
4091
|
+
translate_tokens?: GraphQLTypes["Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens"] | undefined | null,
|
|
4092
|
+
monthly_api_requests?: GraphQLTypes["Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests"] | undefined | null
|
|
4093
|
+
};
|
|
4094
|
+
["Shapeprofile_infoProfile_section"]: {
|
|
4095
|
+
__typename: "Shapeprofile_infoProfile_section",
|
|
4096
|
+
account_header?: GraphQLTypes["Shapeprofile_infoProfile_sectionAccount_header"] | undefined | null,
|
|
4097
|
+
plan_status?: GraphQLTypes["Shapeprofile_infoProfile_sectionPlan_status"] | undefined | null,
|
|
4098
|
+
usage_section?: GraphQLTypes["Shapeprofile_infoProfile_sectionUsage_section"] | undefined | null
|
|
4099
|
+
};
|
|
4100
|
+
["Shapeprofile_info"]: {
|
|
4101
|
+
__typename: "Shapeprofile_info",
|
|
4102
|
+
profile_section?: GraphQLTypes["Shapeprofile_infoProfile_section"] | undefined | null,
|
|
3907
4103
|
_id: string,
|
|
3908
4104
|
createdAt?: number | undefined | null,
|
|
3909
4105
|
updatedAt?: number | undefined | null
|
|
3910
4106
|
};
|
|
3911
|
-
["
|
|
3912
|
-
__typename: "
|
|
3913
|
-
|
|
3914
|
-
|
|
3915
|
-
|
|
3916
|
-
|
|
3917
|
-
["FormstepsStep2"]: {
|
|
3918
|
-
__typename: "FormstepsStep2",
|
|
3919
|
-
_mocks?: string | undefined | null,
|
|
3920
|
-
nazwisko?: GraphQLTypes["FormTextField"] | undefined | null
|
|
3921
|
-
};
|
|
3922
|
-
["FormstepsStep3"]: {
|
|
3923
|
-
__typename: "FormstepsStep3",
|
|
3924
|
-
_mocks?: string | undefined | null,
|
|
3925
|
-
email?: GraphQLTypes["FormTextField"] | undefined | null,
|
|
3926
|
-
koniec?: GraphQLTypes["FormSubmitField"] | undefined | null
|
|
3927
|
-
};
|
|
3928
|
-
["Formsteps"]: {
|
|
3929
|
-
__typename: "Formsteps",
|
|
3930
|
-
_mocks?: string | undefined | null,
|
|
3931
|
-
_version?: GraphQLTypes["VersionField"] | undefined | null,
|
|
3932
|
-
step1?: GraphQLTypes["FormstepsStep1"] | undefined | null,
|
|
3933
|
-
step2?: GraphQLTypes["FormstepsStep2"] | undefined | null,
|
|
3934
|
-
step3?: GraphQLTypes["FormstepsStep3"] | undefined | null,
|
|
3935
|
-
locale?: string | undefined | null,
|
|
3936
|
-
slug?: string | undefined | null,
|
|
3937
|
-
_id: string,
|
|
3938
|
-
createdAt?: string | undefined | null,
|
|
3939
|
-
updatedAt?: string | undefined | null,
|
|
3940
|
-
draft_version?: string | undefined | null,
|
|
3941
|
-
json_ld?: string | undefined | null
|
|
4107
|
+
["ShapeusageMain"]: {
|
|
4108
|
+
__typename: "ShapeusageMain",
|
|
4109
|
+
title?: string | undefined | null,
|
|
4110
|
+
subtitle?: string | undefined | null,
|
|
4111
|
+
period?: string | undefined | null,
|
|
4112
|
+
tokens_consumed?: number | undefined | null
|
|
3942
4113
|
};
|
|
3943
|
-
["
|
|
3944
|
-
__typename: "
|
|
3945
|
-
|
|
3946
|
-
type?: GraphQLTypes["FormRadioTextField"] | undefined | null
|
|
3947
|
-
};
|
|
3948
|
-
["FormtestWindowTechincals"]: {
|
|
3949
|
-
__typename: "FormtestWindowTechincals",
|
|
3950
|
-
_mocks?: string | undefined | null,
|
|
3951
|
-
width?: GraphQLTypes["FormNumberField"] | undefined | null,
|
|
3952
|
-
height?: GraphQLTypes["FormNumberField"] | undefined | null,
|
|
3953
|
-
confirm?: GraphQLTypes["FormRouteField"] | undefined | null
|
|
3954
|
-
};
|
|
3955
|
-
["FormtestWindow"]: {
|
|
3956
|
-
__typename: "FormtestWindow",
|
|
3957
|
-
_mocks?: string | undefined | null,
|
|
3958
|
-
basics?: GraphQLTypes["FormtestWindowBasics"] | undefined | null,
|
|
3959
|
-
techincals?: GraphQLTypes["FormtestWindowTechincals"] | undefined | null
|
|
3960
|
-
};
|
|
3961
|
-
["FormtestHome"]: {
|
|
3962
|
-
__typename: "FormtestHome",
|
|
3963
|
-
_mocks?: string | undefined | null,
|
|
3964
|
-
window?: GraphQLTypes["FormTextField"] | undefined | null,
|
|
3965
|
-
add?: GraphQLTypes["FormRouteField"] | undefined | null
|
|
3966
|
-
};
|
|
3967
|
-
["Formtest"]: {
|
|
3968
|
-
__typename: "Formtest",
|
|
3969
|
-
_mocks?: string | undefined | null,
|
|
3970
|
-
_version?: GraphQLTypes["VersionField"] | undefined | null,
|
|
3971
|
-
window?: GraphQLTypes["FormtestWindow"] | undefined | null,
|
|
3972
|
-
home?: GraphQLTypes["FormtestHome"] | undefined | null,
|
|
3973
|
-
locale?: string | undefined | null,
|
|
3974
|
-
slug?: string | undefined | null,
|
|
4114
|
+
["Shapeusage"]: {
|
|
4115
|
+
__typename: "Shapeusage",
|
|
4116
|
+
main?: GraphQLTypes["ShapeusageMain"] | undefined | null,
|
|
3975
4117
|
_id: string,
|
|
3976
|
-
createdAt?:
|
|
3977
|
-
updatedAt?:
|
|
3978
|
-
draft_version?: string | undefined | null,
|
|
3979
|
-
json_ld?: string | undefined | null
|
|
4118
|
+
createdAt?: number | undefined | null,
|
|
4119
|
+
updatedAt?: number | undefined | null
|
|
3980
4120
|
};
|
|
3981
4121
|
["RootParamsInput"]: {
|
|
3982
4122
|
_version?: string | undefined | null,
|
|
@@ -4015,6 +4155,12 @@ export enum ConditionType {
|
|
|
4015
4155
|
SET = "SET",
|
|
4016
4156
|
PATH = "PATH"
|
|
4017
4157
|
}
|
|
4158
|
+
export enum ActionType {
|
|
4159
|
+
SET_VALUE = "SET_VALUE",
|
|
4160
|
+
SET_CLASSNAME = "SET_CLASSNAME",
|
|
4161
|
+
DISPLAY_VALUE = "DISPLAY_VALUE",
|
|
4162
|
+
SET_DISABLED = "SET_DISABLED"
|
|
4163
|
+
}
|
|
4018
4164
|
export enum FormFieldType {
|
|
4019
4165
|
STRING = "STRING",
|
|
4020
4166
|
TEXT = "TEXT",
|
|
@@ -4028,8 +4174,11 @@ export enum FormFieldType {
|
|
|
4028
4174
|
ARRAY_STEP = "ARRAY_STEP",
|
|
4029
4175
|
PORTAL = "PORTAL",
|
|
4030
4176
|
ROUTE = "ROUTE",
|
|
4177
|
+
BUTTON = "BUTTON",
|
|
4031
4178
|
SUBMIT = "SUBMIT",
|
|
4032
|
-
NUMBER = "NUMBER"
|
|
4179
|
+
NUMBER = "NUMBER",
|
|
4180
|
+
VARIABLE = "VARIABLE",
|
|
4181
|
+
DISPLAY = "DISPLAY"
|
|
4033
4182
|
}
|
|
4034
4183
|
/** This enum is defined externally and injected via federation */
|
|
4035
4184
|
export enum CMSType {
|
|
@@ -4054,24 +4203,26 @@ export enum ModelEnum {
|
|
|
4054
4203
|
docs = "docs"
|
|
4055
4204
|
}
|
|
4056
4205
|
export enum ViewEnum {
|
|
4206
|
+
account = "account",
|
|
4207
|
+
features = "features",
|
|
4057
4208
|
homepage = "homepage",
|
|
4058
|
-
howitworks = "howitworks"
|
|
4209
|
+
howitworks = "howitworks",
|
|
4210
|
+
pricing = "pricing"
|
|
4059
4211
|
}
|
|
4060
4212
|
export enum ShapeEnum {
|
|
4061
|
-
cta = "cta",
|
|
4062
4213
|
docs_content = "docs_content",
|
|
4063
4214
|
docs_nav = "docs_nav",
|
|
4215
|
+
featurepresentation = "featurepresentation",
|
|
4064
4216
|
foot = "foot",
|
|
4065
4217
|
hero = "hero",
|
|
4066
4218
|
herox = "herox",
|
|
4067
|
-
|
|
4219
|
+
lista_projektow = "lista_projektow",
|
|
4068
4220
|
nav = "nav",
|
|
4069
4221
|
newshape = "newshape",
|
|
4070
|
-
|
|
4071
|
-
newsletter = "newsletter",
|
|
4072
|
-
pricing = "pricing",
|
|
4222
|
+
pricing_table = "pricing_table",
|
|
4073
4223
|
pricingv1 = "pricingv1",
|
|
4074
|
-
|
|
4224
|
+
profile_info = "profile_info",
|
|
4225
|
+
usage = "usage"
|
|
4075
4226
|
}
|
|
4076
4227
|
export enum RootParamsEnum {
|
|
4077
4228
|
_version = "_version",
|
|
@@ -4089,6 +4240,7 @@ type ZEUS_VARIABLES = {
|
|
|
4089
4240
|
["ConditionSetOperator"]: ValueTypes["ConditionSetOperator"];
|
|
4090
4241
|
["ConditionOperator"]: ValueTypes["ConditionOperator"];
|
|
4091
4242
|
["ConditionType"]: ValueTypes["ConditionType"];
|
|
4243
|
+
["ActionType"]: ValueTypes["ActionType"];
|
|
4092
4244
|
["PageInput"]: ValueTypes["PageInput"];
|
|
4093
4245
|
["FilterInputString"]: ValueTypes["FilterInputString"];
|
|
4094
4246
|
["RootParamsAdminType"]: ValueTypes["RootParamsAdminType"];
|