@husar.ai/cli 0.1.4 → 0.1.6
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 +26 -20
- package/dist/index.js.map +1 -1
- package/dist/zeus/const.d.ts +1 -0
- package/dist/zeus/const.js +505 -52
- package/dist/zeus/const.js.map +1 -1
- package/dist/zeus/index.d.ts +2495 -444
- package/dist/zeus/index.js +34 -4
- package/dist/zeus/index.js.map +1 -1
- package/package.json +2 -2
- package/src/index.ts +28 -20
- package/src/zeus/const.ts +504 -53
- package/src/zeus/index.ts +2482 -426
package/src/zeus/index.ts
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
2
|
|
|
3
3
|
import { AllTypesProps, ReturnTypes, Ops } from './const.js';
|
|
4
|
-
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
export const HOST="Specify host"
|
|
5
7
|
|
|
6
8
|
|
|
7
9
|
export const HEADERS = {}
|
|
@@ -741,7 +743,10 @@ type IsScalar<S, SCLR extends ScalarDefinition> = S extends 'scalar' & { name: i
|
|
|
741
743
|
? ReturnType<SCLR[T]['decode']>
|
|
742
744
|
: unknown
|
|
743
745
|
: unknown
|
|
746
|
+
: S extends Array<infer R>
|
|
747
|
+
? Array<IsScalar<R, SCLR>>
|
|
744
748
|
: S;
|
|
749
|
+
|
|
745
750
|
type IsArray<T, U, SCLR extends ScalarDefinition> = T extends Array<infer R>
|
|
746
751
|
? InputType<R, U, SCLR>[]
|
|
747
752
|
: InputType<T, U, SCLR>;
|
|
@@ -902,6 +907,7 @@ export type ScalarCoders = {
|
|
|
902
907
|
ModelNavigationCompiled?: ScalarResolver;
|
|
903
908
|
BakedIpsumData?: ScalarResolver;
|
|
904
909
|
JSON?: ScalarResolver;
|
|
910
|
+
RootParamsAdminType?: ScalarResolver;
|
|
905
911
|
ID?: ScalarResolver;
|
|
906
912
|
}
|
|
907
913
|
type ZEUS_UNIONS = never
|
|
@@ -991,6 +997,18 @@ export type ValueTypes = {
|
|
|
991
997
|
value?:boolean | `@${string}`,
|
|
992
998
|
children?:ValueTypes["Condition"],
|
|
993
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}`
|
|
994
1012
|
}>;
|
|
995
1013
|
["Visual"]: AliasType<{
|
|
996
1014
|
className?:boolean | `@${string}`,
|
|
@@ -1011,6 +1029,11 @@ export type ValueTypes = {
|
|
|
1011
1029
|
ne?: string | undefined | null | Variable<any, string>,
|
|
1012
1030
|
contain?: string | undefined | null | Variable<any, string>
|
|
1013
1031
|
};
|
|
1032
|
+
["Mutation"]: AliasType<{
|
|
1033
|
+
heartbeat?:boolean | `@${string}`,
|
|
1034
|
+
__typename?: boolean | `@${string}`
|
|
1035
|
+
}>;
|
|
1036
|
+
["RootParamsAdminType"]:unknown;
|
|
1014
1037
|
["Shape"]: AliasType<{
|
|
1015
1038
|
name?:boolean | `@${string}`,
|
|
1016
1039
|
slug?:boolean | `@${string}`,
|
|
@@ -1035,6 +1058,12 @@ export type ValueTypes = {
|
|
|
1035
1058
|
textContent?:boolean | `@${string}`,
|
|
1036
1059
|
children?:ValueTypes["AiComponent"],
|
|
1037
1060
|
__typename?: boolean | `@${string}`
|
|
1061
|
+
}>;
|
|
1062
|
+
["FormFieldVisual"]: AliasType<{
|
|
1063
|
+
className?:boolean | `@${string}`,
|
|
1064
|
+
component?:boolean | `@${string}`,
|
|
1065
|
+
rules?:ValueTypes["Rule"],
|
|
1066
|
+
__typename?: boolean | `@${string}`
|
|
1038
1067
|
}>;
|
|
1039
1068
|
["FormField"]: AliasType<{
|
|
1040
1069
|
name?:boolean | `@${string}`,
|
|
@@ -1042,8 +1071,7 @@ export type ValueTypes = {
|
|
|
1042
1071
|
type?:boolean | `@${string}`,
|
|
1043
1072
|
list?:boolean | `@${string}`,
|
|
1044
1073
|
fields?:ValueTypes["FormField"],
|
|
1045
|
-
visual?:ValueTypes["
|
|
1046
|
-
conditions?:ValueTypes["Condition"],
|
|
1074
|
+
visual?:ValueTypes["FormFieldVisual"],
|
|
1047
1075
|
placeholder?:boolean | `@${string}`,
|
|
1048
1076
|
root?:boolean | `@${string}`,
|
|
1049
1077
|
options?:boolean | `@${string}`,
|
|
@@ -1114,11 +1142,30 @@ export type ValueTypes = {
|
|
|
1114
1142
|
label?:boolean | `@${string}`,
|
|
1115
1143
|
options?:boolean | `@${string}`,
|
|
1116
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}`
|
|
1117
1153
|
}>;
|
|
1118
1154
|
["FormProductField"]: AliasType<{
|
|
1119
1155
|
label?:boolean | `@${string}`,
|
|
1120
1156
|
name?:boolean | `@${string}`,
|
|
1121
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}`
|
|
1122
1169
|
}>;
|
|
1123
1170
|
/** This enum is defined externally and injected via federation */
|
|
1124
1171
|
["CMSType"]:CMSType;
|
|
@@ -1131,34 +1178,114 @@ export type ValueTypes = {
|
|
|
1131
1178
|
listShapes?:ValueTypes["Shape"],
|
|
1132
1179
|
tailwind?:ValueTypes["TailwindConfiguration"],
|
|
1133
1180
|
listForms?:ValueTypes["Form"],
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1181
|
+
listPaginateddocs?: [{ page: ValueTypes["PageInput"] | Variable<any, string>, rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>, search?: string | undefined | null | Variable<any, string>, sort?: ValueTypes["docsSortInput"] | undefined | null | Variable<any, string>, filter?: Array<ValueTypes["docsFilterInput"] | undefined | null> | undefined | null | Variable<any, string>},ValueTypes["docs__Connection"]],
|
|
1182
|
+
onedocsBySlug?: [{ slug: string | Variable<any, string>, rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>},ValueTypes["docs"]],
|
|
1183
|
+
variantsdocsBySlug?: [{ slug: string | Variable<any, string>},ValueTypes["docs"]],
|
|
1184
|
+
fieldSetdocs?:boolean | `@${string}`,
|
|
1185
|
+
modeldocs?:boolean | `@${string}`,
|
|
1186
|
+
previewFieldsdocs?:boolean | `@${string}`,
|
|
1187
|
+
fieldSetShapedocs_content?:boolean | `@${string}`,
|
|
1188
|
+
modelShapedocs_content?:boolean | `@${string}`,
|
|
1189
|
+
previewFieldsShapedocs_content?:boolean | `@${string}`,
|
|
1190
|
+
oneShapedocs_content?:ValueTypes["Shapedocs_content"],
|
|
1191
|
+
fieldSetShapedocs_nav?:boolean | `@${string}`,
|
|
1192
|
+
modelShapedocs_nav?:boolean | `@${string}`,
|
|
1193
|
+
previewFieldsShapedocs_nav?:boolean | `@${string}`,
|
|
1194
|
+
oneShapedocs_nav?:ValueTypes["Shapedocs_nav"],
|
|
1195
|
+
fieldSetShapefeaturepresentation?:boolean | `@${string}`,
|
|
1196
|
+
modelShapefeaturepresentation?:boolean | `@${string}`,
|
|
1197
|
+
previewFieldsShapefeaturepresentation?:boolean | `@${string}`,
|
|
1198
|
+
oneShapefeaturepresentation?:ValueTypes["Shapefeaturepresentation"],
|
|
1199
|
+
fieldSetShapefoot?:boolean | `@${string}`,
|
|
1200
|
+
modelShapefoot?:boolean | `@${string}`,
|
|
1201
|
+
previewFieldsShapefoot?:boolean | `@${string}`,
|
|
1202
|
+
oneShapefoot?:ValueTypes["Shapefoot"],
|
|
1203
|
+
fieldSetShapehero?:boolean | `@${string}`,
|
|
1204
|
+
modelShapehero?:boolean | `@${string}`,
|
|
1205
|
+
previewFieldsShapehero?:boolean | `@${string}`,
|
|
1206
|
+
oneShapehero?:ValueTypes["Shapehero"],
|
|
1207
|
+
fieldSetShapeherox?:boolean | `@${string}`,
|
|
1208
|
+
modelShapeherox?:boolean | `@${string}`,
|
|
1209
|
+
previewFieldsShapeherox?:boolean | `@${string}`,
|
|
1210
|
+
oneShapeherox?:ValueTypes["Shapeherox"],
|
|
1211
|
+
fieldSetShapelista_projektow?:boolean | `@${string}`,
|
|
1212
|
+
modelShapelista_projektow?:boolean | `@${string}`,
|
|
1213
|
+
previewFieldsShapelista_projektow?:boolean | `@${string}`,
|
|
1214
|
+
oneShapelista_projektow?:ValueTypes["Shapelista_projektow"],
|
|
1215
|
+
fieldSetShapenav?:boolean | `@${string}`,
|
|
1216
|
+
modelShapenav?:boolean | `@${string}`,
|
|
1217
|
+
previewFieldsShapenav?:boolean | `@${string}`,
|
|
1218
|
+
oneShapenav?:ValueTypes["Shapenav"],
|
|
1219
|
+
fieldSetShapenewshape?:boolean | `@${string}`,
|
|
1220
|
+
modelShapenewshape?:boolean | `@${string}`,
|
|
1221
|
+
previewFieldsShapenewshape?:boolean | `@${string}`,
|
|
1222
|
+
oneShapenewshape?:ValueTypes["Shapenewshape"],
|
|
1223
|
+
fieldSetShapepricing_table?:boolean | `@${string}`,
|
|
1224
|
+
modelShapepricing_table?:boolean | `@${string}`,
|
|
1225
|
+
previewFieldsShapepricing_table?:boolean | `@${string}`,
|
|
1226
|
+
oneShapepricing_table?:ValueTypes["Shapepricing_table"],
|
|
1227
|
+
fieldSetShapepricingv1?:boolean | `@${string}`,
|
|
1228
|
+
modelShapepricingv1?:boolean | `@${string}`,
|
|
1229
|
+
previewFieldsShapepricingv1?:boolean | `@${string}`,
|
|
1230
|
+
oneShapepricingv1?:ValueTypes["Shapepricingv1"],
|
|
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"]],
|
|
1249
|
+
variantsViewhomepage?:ValueTypes["Viewhomepage"],
|
|
1250
|
+
fieldSetViewhomepage?:boolean | `@${string}`,
|
|
1251
|
+
modelViewhomepage?:boolean | `@${string}`,
|
|
1252
|
+
previewFieldsViewhomepage?:boolean | `@${string}`,
|
|
1253
|
+
oneViewhomepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>},ValueTypes["Viewhomepage"]],
|
|
1254
|
+
variantsViewhowitworks?:ValueTypes["Viewhowitworks"],
|
|
1255
|
+
fieldSetViewhowitworks?:boolean | `@${string}`,
|
|
1256
|
+
modelViewhowitworks?:boolean | `@${string}`,
|
|
1257
|
+
previewFieldsViewhowitworks?:boolean | `@${string}`,
|
|
1258
|
+
oneViewhowitworks?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>},ValueTypes["Viewhowitworks"]],
|
|
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"]],
|
|
1264
|
+
__typename?: boolean | `@${string}`
|
|
1265
|
+
}>;
|
|
1266
|
+
["RootParamsType"]: AliasType<{
|
|
1267
|
+
_version?:boolean | `@${string}`,
|
|
1268
|
+
locale?:boolean | `@${string}`,
|
|
1150
1269
|
__typename?: boolean | `@${string}`
|
|
1151
1270
|
}>;
|
|
1152
1271
|
["ModelEnum"]:ModelEnum;
|
|
1272
|
+
["ViewEnum"]:ViewEnum;
|
|
1153
1273
|
["ShapeEnum"]:ShapeEnum;
|
|
1154
|
-
["
|
|
1155
|
-
items?:ValueTypes["
|
|
1274
|
+
["docs__Connection"]: AliasType<{
|
|
1275
|
+
items?:ValueTypes["docs"],
|
|
1156
1276
|
pageInfo?:ValueTypes["PageInfo"],
|
|
1157
1277
|
__typename?: boolean | `@${string}`
|
|
1158
1278
|
}>;
|
|
1159
|
-
["
|
|
1279
|
+
["docs"]: AliasType<{
|
|
1160
1280
|
_version?:ValueTypes["VersionField"],
|
|
1281
|
+
title?:boolean | `@${string}`,
|
|
1282
|
+
seotitle?:boolean | `@${string}`,
|
|
1283
|
+
metadesc?:boolean | `@${string}`,
|
|
1284
|
+
sortid?:boolean | `@${string}`,
|
|
1285
|
+
main_category?:boolean | `@${string}`,
|
|
1161
1286
|
content?:boolean | `@${string}`,
|
|
1287
|
+
video?:ValueTypes["VideoField"],
|
|
1288
|
+
locale?:boolean | `@${string}`,
|
|
1162
1289
|
slug?:boolean | `@${string}`,
|
|
1163
1290
|
_id?:boolean | `@${string}`,
|
|
1164
1291
|
createdAt?:boolean | `@${string}`,
|
|
@@ -1167,16 +1294,67 @@ variantspostBySlug?: [{ slug: string | Variable<any, string>},ValueTypes["post"]
|
|
|
1167
1294
|
json_ld?:boolean | `@${string}`,
|
|
1168
1295
|
__typename?: boolean | `@${string}`
|
|
1169
1296
|
}>;
|
|
1170
|
-
["
|
|
1171
|
-
|
|
1172
|
-
|
|
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"],
|
|
1173
1317
|
__typename?: boolean | `@${string}`
|
|
1174
1318
|
}>;
|
|
1175
|
-
["
|
|
1319
|
+
["Viewfeatures"]: AliasType<{
|
|
1176
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}`
|
|
1330
|
+
}>;
|
|
1331
|
+
["Viewhomepage"]: AliasType<{
|
|
1332
|
+
_version?:ValueTypes["VersionField"],
|
|
1333
|
+
nav?:ValueTypes["Shapenav"],
|
|
1334
|
+
main?:ValueTypes["Shapehero"],
|
|
1335
|
+
hero?:ValueTypes["Shapeherox"],
|
|
1336
|
+
pricing?:ValueTypes["Shapepricingv1"],
|
|
1337
|
+
footer?:ValueTypes["Shapefoot"],
|
|
1338
|
+
locale?:boolean | `@${string}`,
|
|
1339
|
+
slug?:boolean | `@${string}`,
|
|
1340
|
+
_id?:boolean | `@${string}`,
|
|
1341
|
+
createdAt?:boolean | `@${string}`,
|
|
1342
|
+
updatedAt?:boolean | `@${string}`,
|
|
1343
|
+
draft_version?:boolean | `@${string}`,
|
|
1344
|
+
json_ld?:boolean | `@${string}`,
|
|
1345
|
+
__typename?: boolean | `@${string}`
|
|
1346
|
+
}>;
|
|
1347
|
+
["ViewhowitworksFeature_control"]: AliasType<{
|
|
1177
1348
|
title?:boolean | `@${string}`,
|
|
1349
|
+
description?:boolean | `@${string}`,
|
|
1178
1350
|
image?:ValueTypes["ImageField"],
|
|
1179
|
-
|
|
1351
|
+
__typename?: boolean | `@${string}`
|
|
1352
|
+
}>;
|
|
1353
|
+
["Viewhowitworks"]: AliasType<{
|
|
1354
|
+
_version?:ValueTypes["VersionField"],
|
|
1355
|
+
title?:boolean | `@${string}`,
|
|
1356
|
+
feature_control?:ValueTypes["ViewhowitworksFeature_control"],
|
|
1357
|
+
locale?:boolean | `@${string}`,
|
|
1180
1358
|
slug?:boolean | `@${string}`,
|
|
1181
1359
|
_id?:boolean | `@${string}`,
|
|
1182
1360
|
createdAt?:boolean | `@${string}`,
|
|
@@ -1185,236 +1363,610 @@ variantspostBySlug?: [{ slug: string | Variable<any, string>},ValueTypes["post"]
|
|
|
1185
1363
|
json_ld?:boolean | `@${string}`,
|
|
1186
1364
|
__typename?: boolean | `@${string}`
|
|
1187
1365
|
}>;
|
|
1188
|
-
["
|
|
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}`,
|
|
1189
1373
|
_id?:boolean | `@${string}`,
|
|
1190
1374
|
createdAt?:boolean | `@${string}`,
|
|
1191
1375
|
updatedAt?:boolean | `@${string}`,
|
|
1376
|
+
draft_version?:boolean | `@${string}`,
|
|
1377
|
+
json_ld?:boolean | `@${string}`,
|
|
1192
1378
|
__typename?: boolean | `@${string}`
|
|
1193
1379
|
}>;
|
|
1194
|
-
["
|
|
1195
|
-
_version?: string | undefined | null | Variable<any, string>
|
|
1196
|
-
};
|
|
1197
|
-
["RootParamsEnum"]:RootParamsEnum;
|
|
1198
|
-
["demoSortInput"]: {
|
|
1199
|
-
slug?: ValueTypes["Sort"] | undefined | null | Variable<any, string>,
|
|
1200
|
-
createdAt?: ValueTypes["Sort"] | undefined | null | Variable<any, string>,
|
|
1201
|
-
updatedAt?: ValueTypes["Sort"] | undefined | null | Variable<any, string>
|
|
1202
|
-
};
|
|
1203
|
-
["postSortInput"]: {
|
|
1204
|
-
slug?: ValueTypes["Sort"] | undefined | null | Variable<any, string>,
|
|
1205
|
-
createdAt?: ValueTypes["Sort"] | undefined | null | Variable<any, string>,
|
|
1206
|
-
updatedAt?: ValueTypes["Sort"] | undefined | null | Variable<any, string>
|
|
1207
|
-
};
|
|
1208
|
-
["demoFilterInput"]: {
|
|
1209
|
-
slug?: ValueTypes["FilterInputString"] | undefined | null | Variable<any, string>
|
|
1210
|
-
};
|
|
1211
|
-
["postFilterInput"]: {
|
|
1212
|
-
slug?: ValueTypes["FilterInputString"] | undefined | null | Variable<any, string>
|
|
1213
|
-
};
|
|
1214
|
-
["ID"]:unknown
|
|
1215
|
-
}
|
|
1216
|
-
|
|
1217
|
-
export type ResolverInputTypes = {
|
|
1218
|
-
["ObjectId"]:unknown;
|
|
1219
|
-
["S3Scalar"]:unknown;
|
|
1220
|
-
["Timestamp"]:unknown;
|
|
1221
|
-
["ModelNavigationCompiled"]:unknown;
|
|
1222
|
-
["BakedIpsumData"]:unknown;
|
|
1223
|
-
["JSON"]:unknown;
|
|
1224
|
-
["TailwindConfiguration"]: AliasType<{
|
|
1380
|
+
["Shapedocs_contentDocumentation_pageContent_containerDoc_content"]: AliasType<{
|
|
1225
1381
|
content?:boolean | `@${string}`,
|
|
1226
|
-
contentForClient?:boolean | `@${string}`,
|
|
1227
|
-
compiledForIframe?:boolean | `@${string}`,
|
|
1228
1382
|
__typename?: boolean | `@${string}`
|
|
1229
1383
|
}>;
|
|
1230
|
-
["
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
to?:boolean | `@${string}`,
|
|
1384
|
+
["Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container"]: AliasType<{
|
|
1385
|
+
scrollspy_title?:boolean | `@${string}`,
|
|
1386
|
+
scrollspy_list?:boolean | `@${string}`,
|
|
1234
1387
|
__typename?: boolean | `@${string}`
|
|
1235
1388
|
}>;
|
|
1236
|
-
["
|
|
1237
|
-
|
|
1238
|
-
max?:boolean | `@${string}`,
|
|
1389
|
+
["Shapedocs_contentDocumentation_pageContent_containerScrollspy"]: AliasType<{
|
|
1390
|
+
scrollspy_container?:ValueTypes["Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container"],
|
|
1239
1391
|
__typename?: boolean | `@${string}`
|
|
1240
1392
|
}>;
|
|
1241
|
-
["
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
alt?:boolean | `@${string}`,
|
|
1393
|
+
["Shapedocs_contentDocumentation_pageContent_container"]: AliasType<{
|
|
1394
|
+
doc_content?:ValueTypes["Shapedocs_contentDocumentation_pageContent_containerDoc_content"],
|
|
1395
|
+
scrollspy?:ValueTypes["Shapedocs_contentDocumentation_pageContent_containerScrollspy"],
|
|
1245
1396
|
__typename?: boolean | `@${string}`
|
|
1246
1397
|
}>;
|
|
1247
|
-
["
|
|
1248
|
-
|
|
1249
|
-
previewImage?:boolean | `@${string}`,
|
|
1250
|
-
alt?:boolean | `@${string}`,
|
|
1398
|
+
["Shapedocs_contentDocumentation_page"]: AliasType<{
|
|
1399
|
+
content_container?:ValueTypes["Shapedocs_contentDocumentation_pageContent_container"],
|
|
1251
1400
|
__typename?: boolean | `@${string}`
|
|
1252
1401
|
}>;
|
|
1253
|
-
["
|
|
1402
|
+
["Shapedocs_content"]: AliasType<{
|
|
1403
|
+
documentation_page?:ValueTypes["Shapedocs_contentDocumentation_page"],
|
|
1254
1404
|
_id?:boolean | `@${string}`,
|
|
1255
|
-
|
|
1256
|
-
|
|
1405
|
+
createdAt?:boolean | `@${string}`,
|
|
1406
|
+
updatedAt?:boolean | `@${string}`,
|
|
1257
1407
|
__typename?: boolean | `@${string}`
|
|
1258
1408
|
}>;
|
|
1259
|
-
["
|
|
1260
|
-
["RootCMSParam"]: AliasType<{
|
|
1409
|
+
["Shapedocs_navMainListChildrenCategory"]: AliasType<{
|
|
1261
1410
|
name?:boolean | `@${string}`,
|
|
1262
|
-
|
|
1263
|
-
default?:boolean | `@${string}`,
|
|
1411
|
+
link?:boolean | `@${string}`,
|
|
1264
1412
|
__typename?: boolean | `@${string}`
|
|
1265
1413
|
}>;
|
|
1266
|
-
["
|
|
1267
|
-
|
|
1268
|
-
display?:boolean | `@${string}`,
|
|
1269
|
-
fields?:ResolverInputTypes["CMSField"],
|
|
1270
|
-
fieldSet?:boolean | `@${string}`,
|
|
1414
|
+
["Shapedocs_navMainListChildren"]: AliasType<{
|
|
1415
|
+
category?:ValueTypes["Shapedocs_navMainListChildrenCategory"],
|
|
1271
1416
|
__typename?: boolean | `@${string}`
|
|
1272
1417
|
}>;
|
|
1273
|
-
["
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
type?:boolean | `@${string}`,
|
|
1277
|
-
list?:boolean | `@${string}`,
|
|
1278
|
-
searchable?:boolean | `@${string}`,
|
|
1279
|
-
sortable?:boolean | `@${string}`,
|
|
1280
|
-
filterable?:boolean | `@${string}`,
|
|
1281
|
-
rangeValues?:boolean | `@${string}`,
|
|
1282
|
-
options?:boolean | `@${string}`,
|
|
1283
|
-
relation?:boolean | `@${string}`,
|
|
1284
|
-
fields?:ResolverInputTypes["CMSField"],
|
|
1285
|
-
builtIn?:boolean | `@${string}`,
|
|
1286
|
-
visual?:ResolverInputTypes["Visual"],
|
|
1287
|
-
conditions?:ResolverInputTypes["Condition"],
|
|
1288
|
-
nonTranslatable?:boolean | `@${string}`,
|
|
1418
|
+
["Shapedocs_navMainList"]: AliasType<{
|
|
1419
|
+
title?:boolean | `@${string}`,
|
|
1420
|
+
children?:ValueTypes["Shapedocs_navMainListChildren"],
|
|
1289
1421
|
__typename?: boolean | `@${string}`
|
|
1290
1422
|
}>;
|
|
1291
|
-
["
|
|
1292
|
-
["
|
|
1293
|
-
["ConditionType"]:ConditionType;
|
|
1294
|
-
["Condition"]: AliasType<{
|
|
1295
|
-
type?:boolean | `@${string}`,
|
|
1296
|
-
path?:boolean | `@${string}`,
|
|
1297
|
-
operator?:boolean | `@${string}`,
|
|
1298
|
-
setOperator?:boolean | `@${string}`,
|
|
1299
|
-
value?:boolean | `@${string}`,
|
|
1300
|
-
children?:ResolverInputTypes["Condition"],
|
|
1423
|
+
["Shapedocs_navMain"]: AliasType<{
|
|
1424
|
+
list?:ValueTypes["Shapedocs_navMainList"],
|
|
1301
1425
|
__typename?: boolean | `@${string}`
|
|
1302
1426
|
}>;
|
|
1303
|
-
["
|
|
1304
|
-
|
|
1305
|
-
|
|
1427
|
+
["Shapedocs_nav"]: AliasType<{
|
|
1428
|
+
main?:ValueTypes["Shapedocs_navMain"],
|
|
1429
|
+
_id?:boolean | `@${string}`,
|
|
1430
|
+
createdAt?:boolean | `@${string}`,
|
|
1431
|
+
updatedAt?:boolean | `@${string}`,
|
|
1306
1432
|
__typename?: boolean | `@${string}`
|
|
1307
1433
|
}>;
|
|
1308
|
-
["
|
|
1309
|
-
|
|
1310
|
-
|
|
1434
|
+
["ShapefeaturepresentationMain"]: AliasType<{
|
|
1435
|
+
title?:boolean | `@${string}`,
|
|
1436
|
+
subtitle?:boolean | `@${string}`,
|
|
1437
|
+
content?:boolean | `@${string}`,
|
|
1311
1438
|
__typename?: boolean | `@${string}`
|
|
1312
1439
|
}>;
|
|
1313
|
-
["
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
}
|
|
1317
|
-
|
|
1318
|
-
eq?: string | undefined | null,
|
|
1319
|
-
ne?: string | undefined | null,
|
|
1320
|
-
contain?: string | undefined | null
|
|
1321
|
-
};
|
|
1322
|
-
["Shape"]: AliasType<{
|
|
1323
|
-
name?:boolean | `@${string}`,
|
|
1324
|
-
slug?:boolean | `@${string}`,
|
|
1325
|
-
display?:boolean | `@${string}`,
|
|
1326
|
-
previewFields?:boolean | `@${string}`,
|
|
1327
|
-
prompt?:boolean | `@${string}`,
|
|
1328
|
-
promptResponse?:ResolverInputTypes["AiComponent"],
|
|
1329
|
-
fields?:ResolverInputTypes["CMSField"],
|
|
1440
|
+
["Shapefeaturepresentation"]: AliasType<{
|
|
1441
|
+
main?:ValueTypes["ShapefeaturepresentationMain"],
|
|
1442
|
+
_id?:boolean | `@${string}`,
|
|
1443
|
+
createdAt?:boolean | `@${string}`,
|
|
1444
|
+
updatedAt?:boolean | `@${string}`,
|
|
1330
1445
|
__typename?: boolean | `@${string}`
|
|
1331
1446
|
}>;
|
|
1332
|
-
["
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
display?:boolean | `@${string}`,
|
|
1447
|
+
["ShapefootFooterFooter_containerFooter_links"]: AliasType<{
|
|
1448
|
+
privacy_policy?:boolean | `@${string}`,
|
|
1449
|
+
terms_of_service?:boolean | `@${string}`,
|
|
1450
|
+
contact_us?:boolean | `@${string}`,
|
|
1337
1451
|
__typename?: boolean | `@${string}`
|
|
1338
1452
|
}>;
|
|
1339
|
-
["
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
textContent?:boolean | `@${string}`,
|
|
1344
|
-
children?:ResolverInputTypes["AiComponent"],
|
|
1453
|
+
["ShapefootFooterFooter_container"]: AliasType<{
|
|
1454
|
+
footer_logo?:boolean | `@${string}`,
|
|
1455
|
+
footer_links?:ValueTypes["ShapefootFooterFooter_containerFooter_links"],
|
|
1456
|
+
footer_copy?:boolean | `@${string}`,
|
|
1345
1457
|
__typename?: boolean | `@${string}`
|
|
1346
1458
|
}>;
|
|
1347
|
-
["
|
|
1348
|
-
|
|
1349
|
-
display?:boolean | `@${string}`,
|
|
1350
|
-
type?:boolean | `@${string}`,
|
|
1351
|
-
list?:boolean | `@${string}`,
|
|
1352
|
-
fields?:ResolverInputTypes["FormField"],
|
|
1353
|
-
visual?:ResolverInputTypes["Visual"],
|
|
1354
|
-
conditions?:ResolverInputTypes["Condition"],
|
|
1355
|
-
placeholder?:boolean | `@${string}`,
|
|
1356
|
-
root?:boolean | `@${string}`,
|
|
1357
|
-
options?:boolean | `@${string}`,
|
|
1358
|
-
builtIn?:boolean | `@${string}`,
|
|
1359
|
-
nonTranslatable?:boolean | `@${string}`,
|
|
1459
|
+
["ShapefootFooter"]: AliasType<{
|
|
1460
|
+
footer_container?:ValueTypes["ShapefootFooterFooter_container"],
|
|
1360
1461
|
__typename?: boolean | `@${string}`
|
|
1361
1462
|
}>;
|
|
1362
|
-
["
|
|
1363
|
-
["
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1463
|
+
["Shapefoot"]: AliasType<{
|
|
1464
|
+
footer?:ValueTypes["ShapefootFooter"],
|
|
1465
|
+
_id?:boolean | `@${string}`,
|
|
1466
|
+
createdAt?:boolean | `@${string}`,
|
|
1467
|
+
updatedAt?:boolean | `@${string}`,
|
|
1367
1468
|
__typename?: boolean | `@${string}`
|
|
1368
1469
|
}>;
|
|
1369
|
-
["
|
|
1370
|
-
|
|
1371
|
-
placeholder?:boolean | `@${string}`,
|
|
1470
|
+
["ShapeheroHero_componentSlogan_parent"]: AliasType<{
|
|
1471
|
+
slogan?:boolean | `@${string}`,
|
|
1372
1472
|
__typename?: boolean | `@${string}`
|
|
1373
1473
|
}>;
|
|
1374
|
-
["
|
|
1375
|
-
|
|
1474
|
+
["ShapeheroHero_component"]: AliasType<{
|
|
1475
|
+
logoplace?:boolean | `@${string}`,
|
|
1476
|
+
logo?:boolean | `@${string}`,
|
|
1477
|
+
slogan_parent?:ValueTypes["ShapeheroHero_componentSlogan_parent"],
|
|
1478
|
+
subslogan?:boolean | `@${string}`,
|
|
1376
1479
|
__typename?: boolean | `@${string}`
|
|
1377
1480
|
}>;
|
|
1378
|
-
["
|
|
1379
|
-
|
|
1380
|
-
|
|
1481
|
+
["Shapehero"]: AliasType<{
|
|
1482
|
+
hero_component?:ValueTypes["ShapeheroHero_component"],
|
|
1483
|
+
_id?:boolean | `@${string}`,
|
|
1484
|
+
createdAt?:boolean | `@${string}`,
|
|
1485
|
+
updatedAt?:boolean | `@${string}`,
|
|
1381
1486
|
__typename?: boolean | `@${string}`
|
|
1382
1487
|
}>;
|
|
1383
|
-
["
|
|
1384
|
-
|
|
1488
|
+
["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"]: AliasType<{
|
|
1489
|
+
feature?:boolean | `@${string}`,
|
|
1385
1490
|
__typename?: boolean | `@${string}`
|
|
1386
1491
|
}>;
|
|
1387
|
-
["
|
|
1388
|
-
|
|
1492
|
+
["ShapeheroxHero_sectionHero_containerText_wrapper"]: AliasType<{
|
|
1493
|
+
title?:boolean | `@${string}`,
|
|
1494
|
+
description?:boolean | `@${string}`,
|
|
1495
|
+
features?:ValueTypes["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"],
|
|
1389
1496
|
__typename?: boolean | `@${string}`
|
|
1390
1497
|
}>;
|
|
1391
|
-
["
|
|
1392
|
-
|
|
1393
|
-
placeholder?:boolean | `@${string}`,
|
|
1498
|
+
["ShapeheroxHero_sectionHero_containerImage_wrapper"]: AliasType<{
|
|
1499
|
+
hero_image?:ValueTypes["ImageField"],
|
|
1394
1500
|
__typename?: boolean | `@${string}`
|
|
1395
1501
|
}>;
|
|
1396
|
-
["
|
|
1397
|
-
|
|
1502
|
+
["ShapeheroxHero_sectionHero_containerPresentation"]: AliasType<{
|
|
1503
|
+
video?:ValueTypes["VideoField"],
|
|
1398
1504
|
__typename?: boolean | `@${string}`
|
|
1399
1505
|
}>;
|
|
1400
|
-
["
|
|
1401
|
-
|
|
1506
|
+
["ShapeheroxHero_sectionHero_container"]: AliasType<{
|
|
1507
|
+
text_wrapper?:ValueTypes["ShapeheroxHero_sectionHero_containerText_wrapper"],
|
|
1508
|
+
image_wrapper?:ValueTypes["ShapeheroxHero_sectionHero_containerImage_wrapper"],
|
|
1509
|
+
presentation?:ValueTypes["ShapeheroxHero_sectionHero_containerPresentation"],
|
|
1402
1510
|
__typename?: boolean | `@${string}`
|
|
1403
1511
|
}>;
|
|
1404
|
-
["
|
|
1405
|
-
|
|
1406
|
-
portal?:boolean | `@${string}`,
|
|
1512
|
+
["ShapeheroxHero_section"]: AliasType<{
|
|
1513
|
+
hero_container?:ValueTypes["ShapeheroxHero_sectionHero_container"],
|
|
1407
1514
|
__typename?: boolean | `@${string}`
|
|
1408
1515
|
}>;
|
|
1409
|
-
["
|
|
1410
|
-
|
|
1516
|
+
["Shapeherox"]: AliasType<{
|
|
1517
|
+
hero_section?:ValueTypes["ShapeheroxHero_section"],
|
|
1518
|
+
_id?:boolean | `@${string}`,
|
|
1519
|
+
createdAt?:boolean | `@${string}`,
|
|
1520
|
+
updatedAt?:boolean | `@${string}`,
|
|
1411
1521
|
__typename?: boolean | `@${string}`
|
|
1412
1522
|
}>;
|
|
1413
|
-
["
|
|
1414
|
-
|
|
1523
|
+
["Shapelista_projektowListProjectsInstance"]: AliasType<{
|
|
1524
|
+
title?:boolean | `@${string}`,
|
|
1525
|
+
link?:boolean | `@${string}`,
|
|
1526
|
+
remove_button?:boolean | `@${string}`,
|
|
1415
1527
|
__typename?: boolean | `@${string}`
|
|
1416
1528
|
}>;
|
|
1417
|
-
["
|
|
1529
|
+
["Shapelista_projektowListProjects"]: AliasType<{
|
|
1530
|
+
instance?:ValueTypes["Shapelista_projektowListProjectsInstance"],
|
|
1531
|
+
__typename?: boolean | `@${string}`
|
|
1532
|
+
}>;
|
|
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"],
|
|
1541
|
+
_id?:boolean | `@${string}`,
|
|
1542
|
+
createdAt?:boolean | `@${string}`,
|
|
1543
|
+
updatedAt?:boolean | `@${string}`,
|
|
1544
|
+
__typename?: boolean | `@${string}`
|
|
1545
|
+
}>;
|
|
1546
|
+
["ShapenavNavigationNavigation_linksLink"]: AliasType<{
|
|
1547
|
+
display?:boolean | `@${string}`,
|
|
1548
|
+
href?:boolean | `@${string}`,
|
|
1549
|
+
__typename?: boolean | `@${string}`
|
|
1550
|
+
}>;
|
|
1551
|
+
["ShapenavNavigationNavigation_links"]: AliasType<{
|
|
1552
|
+
link?:ValueTypes["ShapenavNavigationNavigation_linksLink"],
|
|
1553
|
+
__typename?: boolean | `@${string}`
|
|
1554
|
+
}>;
|
|
1555
|
+
["ShapenavNavigation"]: AliasType<{
|
|
1556
|
+
logo?:boolean | `@${string}`,
|
|
1557
|
+
navigation_links?:ValueTypes["ShapenavNavigationNavigation_links"],
|
|
1558
|
+
__typename?: boolean | `@${string}`
|
|
1559
|
+
}>;
|
|
1560
|
+
["Shapenav"]: AliasType<{
|
|
1561
|
+
navigation?:ValueTypes["ShapenavNavigation"],
|
|
1562
|
+
_id?:boolean | `@${string}`,
|
|
1563
|
+
createdAt?:boolean | `@${string}`,
|
|
1564
|
+
updatedAt?:boolean | `@${string}`,
|
|
1565
|
+
__typename?: boolean | `@${string}`
|
|
1566
|
+
}>;
|
|
1567
|
+
["ShapenewshapeBackgroundContent"]: AliasType<{
|
|
1568
|
+
badge?:boolean | `@${string}`,
|
|
1569
|
+
headline?:boolean | `@${string}`,
|
|
1570
|
+
subheadline?:boolean | `@${string}`,
|
|
1571
|
+
cta_label?:boolean | `@${string}`,
|
|
1572
|
+
cta_href?:boolean | `@${string}`,
|
|
1573
|
+
__typename?: boolean | `@${string}`
|
|
1574
|
+
}>;
|
|
1575
|
+
["ShapenewshapeBackground"]: AliasType<{
|
|
1576
|
+
overlay_gradient?:boolean | `@${string}`,
|
|
1577
|
+
content?:ValueTypes["ShapenewshapeBackgroundContent"],
|
|
1578
|
+
hero_image?:ValueTypes["ImageField"],
|
|
1579
|
+
__typename?: boolean | `@${string}`
|
|
1580
|
+
}>;
|
|
1581
|
+
["Shapenewshape"]: AliasType<{
|
|
1582
|
+
background?:ValueTypes["ShapenewshapeBackground"],
|
|
1583
|
+
_id?:boolean | `@${string}`,
|
|
1584
|
+
createdAt?:boolean | `@${string}`,
|
|
1585
|
+
updatedAt?:boolean | `@${string}`,
|
|
1586
|
+
__typename?: boolean | `@${string}`
|
|
1587
|
+
}>;
|
|
1588
|
+
["Shapepricing_tablePricing_sectionHeader_wrapper"]: AliasType<{
|
|
1589
|
+
title?:boolean | `@${string}`,
|
|
1590
|
+
description?:boolean | `@${string}`,
|
|
1591
|
+
__typename?: boolean | `@${string}`
|
|
1592
|
+
}>;
|
|
1593
|
+
["Shapepricing_tablePricing_sectionPricing_tableTable_head"]: AliasType<{
|
|
1594
|
+
feature?:boolean | `@${string}`,
|
|
1595
|
+
unit?:boolean | `@${string}`,
|
|
1596
|
+
price?:boolean | `@${string}`,
|
|
1597
|
+
__typename?: boolean | `@${string}`
|
|
1598
|
+
}>;
|
|
1599
|
+
["Shapepricing_tablePricing_sectionPricing_tableRows"]: AliasType<{
|
|
1600
|
+
feature?:boolean | `@${string}`,
|
|
1601
|
+
unit?:boolean | `@${string}`,
|
|
1602
|
+
price?:boolean | `@${string}`,
|
|
1603
|
+
__typename?: boolean | `@${string}`
|
|
1604
|
+
}>;
|
|
1605
|
+
["Shapepricing_tablePricing_sectionPricing_table"]: AliasType<{
|
|
1606
|
+
table_head?:ValueTypes["Shapepricing_tablePricing_sectionPricing_tableTable_head"],
|
|
1607
|
+
rows?:ValueTypes["Shapepricing_tablePricing_sectionPricing_tableRows"],
|
|
1608
|
+
__typename?: boolean | `@${string}`
|
|
1609
|
+
}>;
|
|
1610
|
+
["Shapepricing_tablePricing_section"]: AliasType<{
|
|
1611
|
+
header_wrapper?:ValueTypes["Shapepricing_tablePricing_sectionHeader_wrapper"],
|
|
1612
|
+
pricing_table?:ValueTypes["Shapepricing_tablePricing_sectionPricing_table"],
|
|
1613
|
+
__typename?: boolean | `@${string}`
|
|
1614
|
+
}>;
|
|
1615
|
+
["Shapepricing_table"]: AliasType<{
|
|
1616
|
+
pricing_section?:ValueTypes["Shapepricing_tablePricing_section"],
|
|
1617
|
+
_id?:boolean | `@${string}`,
|
|
1618
|
+
createdAt?:boolean | `@${string}`,
|
|
1619
|
+
updatedAt?:boolean | `@${string}`,
|
|
1620
|
+
__typename?: boolean | `@${string}`
|
|
1621
|
+
}>;
|
|
1622
|
+
["Shapepricingv1Pricing_sectionHeader_wrapper"]: AliasType<{
|
|
1623
|
+
title?:boolean | `@${string}`,
|
|
1624
|
+
description?:boolean | `@${string}`,
|
|
1625
|
+
__typename?: boolean | `@${string}`
|
|
1626
|
+
}>;
|
|
1627
|
+
["Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list"]: AliasType<{
|
|
1628
|
+
feature?:boolean | `@${string}`,
|
|
1629
|
+
__typename?: boolean | `@${string}`
|
|
1630
|
+
}>;
|
|
1631
|
+
["Shapepricingv1Pricing_sectionPlans_gridFree_plan"]: AliasType<{
|
|
1632
|
+
plan_name?:boolean | `@${string}`,
|
|
1633
|
+
price?:boolean | `@${string}`,
|
|
1634
|
+
plan_description?:boolean | `@${string}`,
|
|
1635
|
+
feature_list?:ValueTypes["Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list"],
|
|
1636
|
+
cta?:boolean | `@${string}`,
|
|
1637
|
+
__typename?: boolean | `@${string}`
|
|
1638
|
+
}>;
|
|
1639
|
+
["Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list"]: AliasType<{
|
|
1640
|
+
feature?:boolean | `@${string}`,
|
|
1641
|
+
__typename?: boolean | `@${string}`
|
|
1642
|
+
}>;
|
|
1643
|
+
["Shapepricingv1Pricing_sectionPlans_gridPaid_plan"]: AliasType<{
|
|
1644
|
+
plan_name?:boolean | `@${string}`,
|
|
1645
|
+
price?:boolean | `@${string}`,
|
|
1646
|
+
plan_description?:boolean | `@${string}`,
|
|
1647
|
+
feature_list?:ValueTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list"],
|
|
1648
|
+
cta?:boolean | `@${string}`,
|
|
1649
|
+
__typename?: boolean | `@${string}`
|
|
1650
|
+
}>;
|
|
1651
|
+
["Shapepricingv1Pricing_sectionPlans_grid"]: AliasType<{
|
|
1652
|
+
free_plan?:ValueTypes["Shapepricingv1Pricing_sectionPlans_gridFree_plan"],
|
|
1653
|
+
paid_plan?:ValueTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_plan"],
|
|
1654
|
+
__typename?: boolean | `@${string}`
|
|
1655
|
+
}>;
|
|
1656
|
+
["Shapepricingv1Pricing_section"]: AliasType<{
|
|
1657
|
+
header_wrapper?:ValueTypes["Shapepricingv1Pricing_sectionHeader_wrapper"],
|
|
1658
|
+
plans_grid?:ValueTypes["Shapepricingv1Pricing_sectionPlans_grid"],
|
|
1659
|
+
__typename?: boolean | `@${string}`
|
|
1660
|
+
}>;
|
|
1661
|
+
["Shapepricingv1"]: AliasType<{
|
|
1662
|
+
pricing_section?:ValueTypes["Shapepricingv1Pricing_section"],
|
|
1663
|
+
_id?:boolean | `@${string}`,
|
|
1664
|
+
createdAt?:boolean | `@${string}`,
|
|
1665
|
+
updatedAt?:boolean | `@${string}`,
|
|
1666
|
+
__typename?: boolean | `@${string}`
|
|
1667
|
+
}>;
|
|
1668
|
+
["Shapeprofile_infoProfile_sectionAccount_headerInfo"]: AliasType<{
|
|
1669
|
+
full_name?:boolean | `@${string}`,
|
|
1670
|
+
company?:boolean | `@${string}`,
|
|
1671
|
+
email?:boolean | `@${string}`,
|
|
1672
|
+
__typename?: boolean | `@${string}`
|
|
1673
|
+
}>;
|
|
1674
|
+
["Shapeprofile_infoProfile_sectionAccount_header"]: AliasType<{
|
|
1675
|
+
avatar?:ValueTypes["ImageField"],
|
|
1676
|
+
info?:ValueTypes["Shapeprofile_infoProfile_sectionAccount_headerInfo"],
|
|
1677
|
+
__typename?: boolean | `@${string}`
|
|
1678
|
+
}>;
|
|
1679
|
+
["Shapeprofile_infoProfile_sectionPlan_status"]: AliasType<{
|
|
1680
|
+
plan?:boolean | `@${string}`,
|
|
1681
|
+
__typename?: boolean | `@${string}`
|
|
1682
|
+
}>;
|
|
1683
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens"]: AliasType<{
|
|
1684
|
+
label?:boolean | `@${string}`,
|
|
1685
|
+
value?:boolean | `@${string}`,
|
|
1686
|
+
__typename?: boolean | `@${string}`
|
|
1687
|
+
}>;
|
|
1688
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens"]: AliasType<{
|
|
1689
|
+
label?:boolean | `@${string}`,
|
|
1690
|
+
value?:boolean | `@${string}`,
|
|
1691
|
+
__typename?: boolean | `@${string}`
|
|
1692
|
+
}>;
|
|
1693
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests"]: AliasType<{
|
|
1694
|
+
label?:boolean | `@${string}`,
|
|
1695
|
+
value?:boolean | `@${string}`,
|
|
1696
|
+
__typename?: boolean | `@${string}`
|
|
1697
|
+
}>;
|
|
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"],
|
|
1702
|
+
__typename?: boolean | `@${string}`
|
|
1703
|
+
}>;
|
|
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"],
|
|
1708
|
+
__typename?: boolean | `@${string}`
|
|
1709
|
+
}>;
|
|
1710
|
+
["Shapeprofile_info"]: AliasType<{
|
|
1711
|
+
profile_section?:ValueTypes["Shapeprofile_infoProfile_section"],
|
|
1712
|
+
_id?:boolean | `@${string}`,
|
|
1713
|
+
createdAt?:boolean | `@${string}`,
|
|
1714
|
+
updatedAt?:boolean | `@${string}`,
|
|
1715
|
+
__typename?: boolean | `@${string}`
|
|
1716
|
+
}>;
|
|
1717
|
+
["ShapeusageMain"]: AliasType<{
|
|
1718
|
+
title?:boolean | `@${string}`,
|
|
1719
|
+
subtitle?:boolean | `@${string}`,
|
|
1720
|
+
period?:boolean | `@${string}`,
|
|
1721
|
+
tokens_consumed?:boolean | `@${string}`,
|
|
1722
|
+
__typename?: boolean | `@${string}`
|
|
1723
|
+
}>;
|
|
1724
|
+
["Shapeusage"]: AliasType<{
|
|
1725
|
+
main?:ValueTypes["ShapeusageMain"],
|
|
1726
|
+
_id?:boolean | `@${string}`,
|
|
1727
|
+
createdAt?:boolean | `@${string}`,
|
|
1728
|
+
updatedAt?:boolean | `@${string}`,
|
|
1729
|
+
__typename?: boolean | `@${string}`
|
|
1730
|
+
}>;
|
|
1731
|
+
["RootParamsInput"]: {
|
|
1732
|
+
_version?: string | undefined | null | Variable<any, string>,
|
|
1733
|
+
locale?: string | undefined | null | Variable<any, string>
|
|
1734
|
+
};
|
|
1735
|
+
["RootParamsEnum"]:RootParamsEnum;
|
|
1736
|
+
["docsSortInput"]: {
|
|
1737
|
+
slug?: ValueTypes["Sort"] | undefined | null | Variable<any, string>,
|
|
1738
|
+
createdAt?: ValueTypes["Sort"] | undefined | null | Variable<any, string>,
|
|
1739
|
+
updatedAt?: ValueTypes["Sort"] | undefined | null | Variable<any, string>
|
|
1740
|
+
};
|
|
1741
|
+
["docsFilterInput"]: {
|
|
1742
|
+
slug?: ValueTypes["FilterInputString"] | undefined | null | Variable<any, string>
|
|
1743
|
+
};
|
|
1744
|
+
["ID"]:unknown
|
|
1745
|
+
}
|
|
1746
|
+
|
|
1747
|
+
export type ResolverInputTypes = {
|
|
1748
|
+
["ObjectId"]:unknown;
|
|
1749
|
+
["S3Scalar"]:unknown;
|
|
1750
|
+
["Timestamp"]:unknown;
|
|
1751
|
+
["ModelNavigationCompiled"]:unknown;
|
|
1752
|
+
["BakedIpsumData"]:unknown;
|
|
1753
|
+
["JSON"]:unknown;
|
|
1754
|
+
["TailwindConfiguration"]: AliasType<{
|
|
1755
|
+
content?:boolean | `@${string}`,
|
|
1756
|
+
contentForClient?:boolean | `@${string}`,
|
|
1757
|
+
compiledForIframe?:boolean | `@${string}`,
|
|
1758
|
+
__typename?: boolean | `@${string}`
|
|
1759
|
+
}>;
|
|
1760
|
+
["VersionField"]: AliasType<{
|
|
1761
|
+
name?:boolean | `@${string}`,
|
|
1762
|
+
from?:boolean | `@${string}`,
|
|
1763
|
+
to?:boolean | `@${string}`,
|
|
1764
|
+
__typename?: boolean | `@${string}`
|
|
1765
|
+
}>;
|
|
1766
|
+
["RangeField"]: AliasType<{
|
|
1767
|
+
min?:boolean | `@${string}`,
|
|
1768
|
+
max?:boolean | `@${string}`,
|
|
1769
|
+
__typename?: boolean | `@${string}`
|
|
1770
|
+
}>;
|
|
1771
|
+
["ImageField"]: AliasType<{
|
|
1772
|
+
url?:boolean | `@${string}`,
|
|
1773
|
+
thumbnail?:boolean | `@${string}`,
|
|
1774
|
+
alt?:boolean | `@${string}`,
|
|
1775
|
+
__typename?: boolean | `@${string}`
|
|
1776
|
+
}>;
|
|
1777
|
+
["VideoField"]: AliasType<{
|
|
1778
|
+
url?:boolean | `@${string}`,
|
|
1779
|
+
previewImage?:boolean | `@${string}`,
|
|
1780
|
+
alt?:boolean | `@${string}`,
|
|
1781
|
+
__typename?: boolean | `@${string}`
|
|
1782
|
+
}>;
|
|
1783
|
+
["InternalLink"]: AliasType<{
|
|
1784
|
+
_id?:boolean | `@${string}`,
|
|
1785
|
+
keys?:boolean | `@${string}`,
|
|
1786
|
+
href?:boolean | `@${string}`,
|
|
1787
|
+
__typename?: boolean | `@${string}`
|
|
1788
|
+
}>;
|
|
1789
|
+
["Sort"]:Sort;
|
|
1790
|
+
["RootCMSParam"]: AliasType<{
|
|
1791
|
+
name?:boolean | `@${string}`,
|
|
1792
|
+
options?:boolean | `@${string}`,
|
|
1793
|
+
default?:boolean | `@${string}`,
|
|
1794
|
+
__typename?: boolean | `@${string}`
|
|
1795
|
+
}>;
|
|
1796
|
+
["ModelNavigation"]: AliasType<{
|
|
1797
|
+
name?:boolean | `@${string}`,
|
|
1798
|
+
display?:boolean | `@${string}`,
|
|
1799
|
+
fields?:ResolverInputTypes["CMSField"],
|
|
1800
|
+
fieldSet?:boolean | `@${string}`,
|
|
1801
|
+
__typename?: boolean | `@${string}`
|
|
1802
|
+
}>;
|
|
1803
|
+
["CMSField"]: AliasType<{
|
|
1804
|
+
name?:boolean | `@${string}`,
|
|
1805
|
+
display?:boolean | `@${string}`,
|
|
1806
|
+
type?:boolean | `@${string}`,
|
|
1807
|
+
list?:boolean | `@${string}`,
|
|
1808
|
+
searchable?:boolean | `@${string}`,
|
|
1809
|
+
sortable?:boolean | `@${string}`,
|
|
1810
|
+
filterable?:boolean | `@${string}`,
|
|
1811
|
+
rangeValues?:boolean | `@${string}`,
|
|
1812
|
+
options?:boolean | `@${string}`,
|
|
1813
|
+
relation?:boolean | `@${string}`,
|
|
1814
|
+
fields?:ResolverInputTypes["CMSField"],
|
|
1815
|
+
builtIn?:boolean | `@${string}`,
|
|
1816
|
+
visual?:ResolverInputTypes["Visual"],
|
|
1817
|
+
conditions?:ResolverInputTypes["Condition"],
|
|
1818
|
+
nonTranslatable?:boolean | `@${string}`,
|
|
1819
|
+
__typename?: boolean | `@${string}`
|
|
1820
|
+
}>;
|
|
1821
|
+
["ConditionSetOperator"]:ConditionSetOperator;
|
|
1822
|
+
["ConditionOperator"]:ConditionOperator;
|
|
1823
|
+
["ConditionType"]:ConditionType;
|
|
1824
|
+
["Condition"]: AliasType<{
|
|
1825
|
+
type?:boolean | `@${string}`,
|
|
1826
|
+
path?:boolean | `@${string}`,
|
|
1827
|
+
operator?:boolean | `@${string}`,
|
|
1828
|
+
setOperator?:boolean | `@${string}`,
|
|
1829
|
+
value?:boolean | `@${string}`,
|
|
1830
|
+
children?:ResolverInputTypes["Condition"],
|
|
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}`
|
|
1844
|
+
}>;
|
|
1845
|
+
["Visual"]: AliasType<{
|
|
1846
|
+
className?:boolean | `@${string}`,
|
|
1847
|
+
component?:boolean | `@${string}`,
|
|
1848
|
+
__typename?: boolean | `@${string}`
|
|
1849
|
+
}>;
|
|
1850
|
+
["PageInfo"]: AliasType<{
|
|
1851
|
+
total?:boolean | `@${string}`,
|
|
1852
|
+
hasNext?:boolean | `@${string}`,
|
|
1853
|
+
__typename?: boolean | `@${string}`
|
|
1854
|
+
}>;
|
|
1855
|
+
["PageInput"]: {
|
|
1856
|
+
limit: number,
|
|
1857
|
+
start?: number | undefined | null
|
|
1858
|
+
};
|
|
1859
|
+
["FilterInputString"]: {
|
|
1860
|
+
eq?: string | undefined | null,
|
|
1861
|
+
ne?: string | undefined | null,
|
|
1862
|
+
contain?: string | undefined | null
|
|
1863
|
+
};
|
|
1864
|
+
["Mutation"]: AliasType<{
|
|
1865
|
+
heartbeat?:boolean | `@${string}`,
|
|
1866
|
+
__typename?: boolean | `@${string}`
|
|
1867
|
+
}>;
|
|
1868
|
+
["RootParamsAdminType"]:unknown;
|
|
1869
|
+
["Shape"]: AliasType<{
|
|
1870
|
+
name?:boolean | `@${string}`,
|
|
1871
|
+
slug?:boolean | `@${string}`,
|
|
1872
|
+
display?:boolean | `@${string}`,
|
|
1873
|
+
previewFields?:boolean | `@${string}`,
|
|
1874
|
+
prompt?:boolean | `@${string}`,
|
|
1875
|
+
promptResponse?:ResolverInputTypes["AiComponent"],
|
|
1876
|
+
fields?:ResolverInputTypes["CMSField"],
|
|
1877
|
+
__typename?: boolean | `@${string}`
|
|
1878
|
+
}>;
|
|
1879
|
+
["View"]: AliasType<{
|
|
1880
|
+
name?:boolean | `@${string}`,
|
|
1881
|
+
fields?:ResolverInputTypes["CMSField"],
|
|
1882
|
+
slug?:boolean | `@${string}`,
|
|
1883
|
+
display?:boolean | `@${string}`,
|
|
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}`
|
|
1899
|
+
}>;
|
|
1900
|
+
["FormField"]: AliasType<{
|
|
1901
|
+
name?:boolean | `@${string}`,
|
|
1902
|
+
display?:boolean | `@${string}`,
|
|
1903
|
+
type?:boolean | `@${string}`,
|
|
1904
|
+
list?:boolean | `@${string}`,
|
|
1905
|
+
fields?:ResolverInputTypes["FormField"],
|
|
1906
|
+
visual?:ResolverInputTypes["FormFieldVisual"],
|
|
1907
|
+
placeholder?:boolean | `@${string}`,
|
|
1908
|
+
root?:boolean | `@${string}`,
|
|
1909
|
+
options?:boolean | `@${string}`,
|
|
1910
|
+
builtIn?:boolean | `@${string}`,
|
|
1911
|
+
nonTranslatable?:boolean | `@${string}`,
|
|
1912
|
+
__typename?: boolean | `@${string}`
|
|
1913
|
+
}>;
|
|
1914
|
+
["FormFieldType"]:FormFieldType;
|
|
1915
|
+
["Form"]: AliasType<{
|
|
1916
|
+
name?:boolean | `@${string}`,
|
|
1917
|
+
display?:boolean | `@${string}`,
|
|
1918
|
+
fields?:ResolverInputTypes["FormField"],
|
|
1919
|
+
__typename?: boolean | `@${string}`
|
|
1920
|
+
}>;
|
|
1921
|
+
["FormTextField"]: AliasType<{
|
|
1922
|
+
label?:boolean | `@${string}`,
|
|
1923
|
+
placeholder?:boolean | `@${string}`,
|
|
1924
|
+
__typename?: boolean | `@${string}`
|
|
1925
|
+
}>;
|
|
1926
|
+
["FormBooleanField"]: AliasType<{
|
|
1927
|
+
label?:boolean | `@${string}`,
|
|
1928
|
+
__typename?: boolean | `@${string}`
|
|
1929
|
+
}>;
|
|
1930
|
+
["FormContentField"]: AliasType<{
|
|
1931
|
+
label?:boolean | `@${string}`,
|
|
1932
|
+
placeholder?:boolean | `@${string}`,
|
|
1933
|
+
__typename?: boolean | `@${string}`
|
|
1934
|
+
}>;
|
|
1935
|
+
["FormRadioField"]: AliasType<{
|
|
1936
|
+
label?:boolean | `@${string}`,
|
|
1937
|
+
__typename?: boolean | `@${string}`
|
|
1938
|
+
}>;
|
|
1939
|
+
["FormStepField"]: AliasType<{
|
|
1940
|
+
label?:boolean | `@${string}`,
|
|
1941
|
+
__typename?: boolean | `@${string}`
|
|
1942
|
+
}>;
|
|
1943
|
+
["FormTextareaField"]: AliasType<{
|
|
1944
|
+
label?:boolean | `@${string}`,
|
|
1945
|
+
placeholder?:boolean | `@${string}`,
|
|
1946
|
+
__typename?: boolean | `@${string}`
|
|
1947
|
+
}>;
|
|
1948
|
+
["FormGroupField"]: AliasType<{
|
|
1949
|
+
label?:boolean | `@${string}`,
|
|
1950
|
+
__typename?: boolean | `@${string}`
|
|
1951
|
+
}>;
|
|
1952
|
+
["FormArrayStepField"]: AliasType<{
|
|
1953
|
+
label?:boolean | `@${string}`,
|
|
1954
|
+
__typename?: boolean | `@${string}`
|
|
1955
|
+
}>;
|
|
1956
|
+
["FormRouteField"]: AliasType<{
|
|
1957
|
+
label?:boolean | `@${string}`,
|
|
1958
|
+
portal?:boolean | `@${string}`,
|
|
1959
|
+
__typename?: boolean | `@${string}`
|
|
1960
|
+
}>;
|
|
1961
|
+
["FormPortalField"]: AliasType<{
|
|
1962
|
+
label?:boolean | `@${string}`,
|
|
1963
|
+
__typename?: boolean | `@${string}`
|
|
1964
|
+
}>;
|
|
1965
|
+
["FormSubmitField"]: AliasType<{
|
|
1966
|
+
label?:boolean | `@${string}`,
|
|
1967
|
+
__typename?: boolean | `@${string}`
|
|
1968
|
+
}>;
|
|
1969
|
+
["FormNumberField"]: AliasType<{
|
|
1418
1970
|
label?:boolean | `@${string}`,
|
|
1419
1971
|
__typename?: boolean | `@${string}`
|
|
1420
1972
|
}>;
|
|
@@ -1422,11 +1974,30 @@ export type ResolverInputTypes = {
|
|
|
1422
1974
|
label?:boolean | `@${string}`,
|
|
1423
1975
|
options?:boolean | `@${string}`,
|
|
1424
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}`
|
|
1425
1985
|
}>;
|
|
1426
1986
|
["FormProductField"]: AliasType<{
|
|
1427
1987
|
label?:boolean | `@${string}`,
|
|
1428
1988
|
name?:boolean | `@${string}`,
|
|
1429
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}`
|
|
1430
2001
|
}>;
|
|
1431
2002
|
/** This enum is defined externally and injected via federation */
|
|
1432
2003
|
["CMSType"]:CMSType;
|
|
@@ -1439,88 +2010,572 @@ export type ResolverInputTypes = {
|
|
|
1439
2010
|
listShapes?:ResolverInputTypes["Shape"],
|
|
1440
2011
|
tailwind?:ResolverInputTypes["TailwindConfiguration"],
|
|
1441
2012
|
listForms?:ResolverInputTypes["Form"],
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
2013
|
+
listPaginateddocs?: [{ page: ResolverInputTypes["PageInput"], rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null, search?: string | undefined | null, sort?: ResolverInputTypes["docsSortInput"] | undefined | null, filter?: Array<ResolverInputTypes["docsFilterInput"] | undefined | null> | undefined | null},ResolverInputTypes["docs__Connection"]],
|
|
2014
|
+
onedocsBySlug?: [{ slug: string, rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["docs"]],
|
|
2015
|
+
variantsdocsBySlug?: [{ slug: string},ResolverInputTypes["docs"]],
|
|
2016
|
+
fieldSetdocs?:boolean | `@${string}`,
|
|
2017
|
+
modeldocs?:boolean | `@${string}`,
|
|
2018
|
+
previewFieldsdocs?:boolean | `@${string}`,
|
|
2019
|
+
fieldSetShapedocs_content?:boolean | `@${string}`,
|
|
2020
|
+
modelShapedocs_content?:boolean | `@${string}`,
|
|
2021
|
+
previewFieldsShapedocs_content?:boolean | `@${string}`,
|
|
2022
|
+
oneShapedocs_content?:ResolverInputTypes["Shapedocs_content"],
|
|
2023
|
+
fieldSetShapedocs_nav?:boolean | `@${string}`,
|
|
2024
|
+
modelShapedocs_nav?:boolean | `@${string}`,
|
|
2025
|
+
previewFieldsShapedocs_nav?:boolean | `@${string}`,
|
|
2026
|
+
oneShapedocs_nav?:ResolverInputTypes["Shapedocs_nav"],
|
|
2027
|
+
fieldSetShapefeaturepresentation?:boolean | `@${string}`,
|
|
2028
|
+
modelShapefeaturepresentation?:boolean | `@${string}`,
|
|
2029
|
+
previewFieldsShapefeaturepresentation?:boolean | `@${string}`,
|
|
2030
|
+
oneShapefeaturepresentation?:ResolverInputTypes["Shapefeaturepresentation"],
|
|
2031
|
+
fieldSetShapefoot?:boolean | `@${string}`,
|
|
2032
|
+
modelShapefoot?:boolean | `@${string}`,
|
|
2033
|
+
previewFieldsShapefoot?:boolean | `@${string}`,
|
|
2034
|
+
oneShapefoot?:ResolverInputTypes["Shapefoot"],
|
|
2035
|
+
fieldSetShapehero?:boolean | `@${string}`,
|
|
2036
|
+
modelShapehero?:boolean | `@${string}`,
|
|
2037
|
+
previewFieldsShapehero?:boolean | `@${string}`,
|
|
2038
|
+
oneShapehero?:ResolverInputTypes["Shapehero"],
|
|
2039
|
+
fieldSetShapeherox?:boolean | `@${string}`,
|
|
2040
|
+
modelShapeherox?:boolean | `@${string}`,
|
|
2041
|
+
previewFieldsShapeherox?:boolean | `@${string}`,
|
|
2042
|
+
oneShapeherox?:ResolverInputTypes["Shapeherox"],
|
|
2043
|
+
fieldSetShapelista_projektow?:boolean | `@${string}`,
|
|
2044
|
+
modelShapelista_projektow?:boolean | `@${string}`,
|
|
2045
|
+
previewFieldsShapelista_projektow?:boolean | `@${string}`,
|
|
2046
|
+
oneShapelista_projektow?:ResolverInputTypes["Shapelista_projektow"],
|
|
2047
|
+
fieldSetShapenav?:boolean | `@${string}`,
|
|
2048
|
+
modelShapenav?:boolean | `@${string}`,
|
|
2049
|
+
previewFieldsShapenav?:boolean | `@${string}`,
|
|
2050
|
+
oneShapenav?:ResolverInputTypes["Shapenav"],
|
|
2051
|
+
fieldSetShapenewshape?:boolean | `@${string}`,
|
|
2052
|
+
modelShapenewshape?:boolean | `@${string}`,
|
|
2053
|
+
previewFieldsShapenewshape?:boolean | `@${string}`,
|
|
2054
|
+
oneShapenewshape?:ResolverInputTypes["Shapenewshape"],
|
|
2055
|
+
fieldSetShapepricing_table?:boolean | `@${string}`,
|
|
2056
|
+
modelShapepricing_table?:boolean | `@${string}`,
|
|
2057
|
+
previewFieldsShapepricing_table?:boolean | `@${string}`,
|
|
2058
|
+
oneShapepricing_table?:ResolverInputTypes["Shapepricing_table"],
|
|
2059
|
+
fieldSetShapepricingv1?:boolean | `@${string}`,
|
|
2060
|
+
modelShapepricingv1?:boolean | `@${string}`,
|
|
2061
|
+
previewFieldsShapepricingv1?:boolean | `@${string}`,
|
|
2062
|
+
oneShapepricingv1?:ResolverInputTypes["Shapepricingv1"],
|
|
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"]],
|
|
2081
|
+
variantsViewhomepage?:ResolverInputTypes["Viewhomepage"],
|
|
2082
|
+
fieldSetViewhomepage?:boolean | `@${string}`,
|
|
2083
|
+
modelViewhomepage?:boolean | `@${string}`,
|
|
2084
|
+
previewFieldsViewhomepage?:boolean | `@${string}`,
|
|
2085
|
+
oneViewhomepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewhomepage"]],
|
|
2086
|
+
variantsViewhowitworks?:ResolverInputTypes["Viewhowitworks"],
|
|
2087
|
+
fieldSetViewhowitworks?:boolean | `@${string}`,
|
|
2088
|
+
modelViewhowitworks?:boolean | `@${string}`,
|
|
2089
|
+
previewFieldsViewhowitworks?:boolean | `@${string}`,
|
|
2090
|
+
oneViewhowitworks?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewhowitworks"]],
|
|
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"]],
|
|
2096
|
+
__typename?: boolean | `@${string}`
|
|
2097
|
+
}>;
|
|
2098
|
+
["RootParamsType"]: AliasType<{
|
|
2099
|
+
_version?:boolean | `@${string}`,
|
|
2100
|
+
locale?:boolean | `@${string}`,
|
|
2101
|
+
__typename?: boolean | `@${string}`
|
|
2102
|
+
}>;
|
|
2103
|
+
["ModelEnum"]:ModelEnum;
|
|
2104
|
+
["ViewEnum"]:ViewEnum;
|
|
2105
|
+
["ShapeEnum"]:ShapeEnum;
|
|
2106
|
+
["docs__Connection"]: AliasType<{
|
|
2107
|
+
items?:ResolverInputTypes["docs"],
|
|
2108
|
+
pageInfo?:ResolverInputTypes["PageInfo"],
|
|
2109
|
+
__typename?: boolean | `@${string}`
|
|
2110
|
+
}>;
|
|
2111
|
+
["docs"]: AliasType<{
|
|
2112
|
+
_version?:ResolverInputTypes["VersionField"],
|
|
2113
|
+
title?:boolean | `@${string}`,
|
|
2114
|
+
seotitle?:boolean | `@${string}`,
|
|
2115
|
+
metadesc?:boolean | `@${string}`,
|
|
2116
|
+
sortid?:boolean | `@${string}`,
|
|
2117
|
+
main_category?:boolean | `@${string}`,
|
|
2118
|
+
content?:boolean | `@${string}`,
|
|
2119
|
+
video?:ResolverInputTypes["VideoField"],
|
|
2120
|
+
locale?:boolean | `@${string}`,
|
|
2121
|
+
slug?:boolean | `@${string}`,
|
|
2122
|
+
_id?:boolean | `@${string}`,
|
|
2123
|
+
createdAt?:boolean | `@${string}`,
|
|
2124
|
+
updatedAt?:boolean | `@${string}`,
|
|
2125
|
+
draft_version?:boolean | `@${string}`,
|
|
2126
|
+
json_ld?:boolean | `@${string}`,
|
|
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}`
|
|
2162
|
+
}>;
|
|
2163
|
+
["Viewhomepage"]: AliasType<{
|
|
2164
|
+
_version?:ResolverInputTypes["VersionField"],
|
|
2165
|
+
nav?:ResolverInputTypes["Shapenav"],
|
|
2166
|
+
main?:ResolverInputTypes["Shapehero"],
|
|
2167
|
+
hero?:ResolverInputTypes["Shapeherox"],
|
|
2168
|
+
pricing?:ResolverInputTypes["Shapepricingv1"],
|
|
2169
|
+
footer?:ResolverInputTypes["Shapefoot"],
|
|
2170
|
+
locale?:boolean | `@${string}`,
|
|
2171
|
+
slug?:boolean | `@${string}`,
|
|
2172
|
+
_id?:boolean | `@${string}`,
|
|
2173
|
+
createdAt?:boolean | `@${string}`,
|
|
2174
|
+
updatedAt?:boolean | `@${string}`,
|
|
2175
|
+
draft_version?:boolean | `@${string}`,
|
|
2176
|
+
json_ld?:boolean | `@${string}`,
|
|
2177
|
+
__typename?: boolean | `@${string}`
|
|
2178
|
+
}>;
|
|
2179
|
+
["ViewhowitworksFeature_control"]: AliasType<{
|
|
2180
|
+
title?:boolean | `@${string}`,
|
|
2181
|
+
description?:boolean | `@${string}`,
|
|
2182
|
+
image?:ResolverInputTypes["ImageField"],
|
|
2183
|
+
__typename?: boolean | `@${string}`
|
|
2184
|
+
}>;
|
|
2185
|
+
["Viewhowitworks"]: AliasType<{
|
|
2186
|
+
_version?:ResolverInputTypes["VersionField"],
|
|
2187
|
+
title?:boolean | `@${string}`,
|
|
2188
|
+
feature_control?:ResolverInputTypes["ViewhowitworksFeature_control"],
|
|
2189
|
+
locale?:boolean | `@${string}`,
|
|
2190
|
+
slug?:boolean | `@${string}`,
|
|
2191
|
+
_id?:boolean | `@${string}`,
|
|
2192
|
+
createdAt?:boolean | `@${string}`,
|
|
2193
|
+
updatedAt?:boolean | `@${string}`,
|
|
2194
|
+
draft_version?:boolean | `@${string}`,
|
|
2195
|
+
json_ld?:boolean | `@${string}`,
|
|
2196
|
+
__typename?: boolean | `@${string}`
|
|
2197
|
+
}>;
|
|
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}`,
|
|
2205
|
+
_id?:boolean | `@${string}`,
|
|
2206
|
+
createdAt?:boolean | `@${string}`,
|
|
2207
|
+
updatedAt?:boolean | `@${string}`,
|
|
2208
|
+
draft_version?:boolean | `@${string}`,
|
|
2209
|
+
json_ld?:boolean | `@${string}`,
|
|
2210
|
+
__typename?: boolean | `@${string}`
|
|
2211
|
+
}>;
|
|
2212
|
+
["Shapedocs_contentDocumentation_pageContent_containerDoc_content"]: AliasType<{
|
|
2213
|
+
content?:boolean | `@${string}`,
|
|
2214
|
+
__typename?: boolean | `@${string}`
|
|
2215
|
+
}>;
|
|
2216
|
+
["Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container"]: AliasType<{
|
|
2217
|
+
scrollspy_title?:boolean | `@${string}`,
|
|
2218
|
+
scrollspy_list?:boolean | `@${string}`,
|
|
2219
|
+
__typename?: boolean | `@${string}`
|
|
2220
|
+
}>;
|
|
2221
|
+
["Shapedocs_contentDocumentation_pageContent_containerScrollspy"]: AliasType<{
|
|
2222
|
+
scrollspy_container?:ResolverInputTypes["Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container"],
|
|
2223
|
+
__typename?: boolean | `@${string}`
|
|
2224
|
+
}>;
|
|
2225
|
+
["Shapedocs_contentDocumentation_pageContent_container"]: AliasType<{
|
|
2226
|
+
doc_content?:ResolverInputTypes["Shapedocs_contentDocumentation_pageContent_containerDoc_content"],
|
|
2227
|
+
scrollspy?:ResolverInputTypes["Shapedocs_contentDocumentation_pageContent_containerScrollspy"],
|
|
2228
|
+
__typename?: boolean | `@${string}`
|
|
2229
|
+
}>;
|
|
2230
|
+
["Shapedocs_contentDocumentation_page"]: AliasType<{
|
|
2231
|
+
content_container?:ResolverInputTypes["Shapedocs_contentDocumentation_pageContent_container"],
|
|
2232
|
+
__typename?: boolean | `@${string}`
|
|
2233
|
+
}>;
|
|
2234
|
+
["Shapedocs_content"]: AliasType<{
|
|
2235
|
+
documentation_page?:ResolverInputTypes["Shapedocs_contentDocumentation_page"],
|
|
2236
|
+
_id?:boolean | `@${string}`,
|
|
2237
|
+
createdAt?:boolean | `@${string}`,
|
|
2238
|
+
updatedAt?:boolean | `@${string}`,
|
|
2239
|
+
__typename?: boolean | `@${string}`
|
|
2240
|
+
}>;
|
|
2241
|
+
["Shapedocs_navMainListChildrenCategory"]: AliasType<{
|
|
2242
|
+
name?:boolean | `@${string}`,
|
|
2243
|
+
link?:boolean | `@${string}`,
|
|
2244
|
+
__typename?: boolean | `@${string}`
|
|
2245
|
+
}>;
|
|
2246
|
+
["Shapedocs_navMainListChildren"]: AliasType<{
|
|
2247
|
+
category?:ResolverInputTypes["Shapedocs_navMainListChildrenCategory"],
|
|
2248
|
+
__typename?: boolean | `@${string}`
|
|
2249
|
+
}>;
|
|
2250
|
+
["Shapedocs_navMainList"]: AliasType<{
|
|
2251
|
+
title?:boolean | `@${string}`,
|
|
2252
|
+
children?:ResolverInputTypes["Shapedocs_navMainListChildren"],
|
|
2253
|
+
__typename?: boolean | `@${string}`
|
|
2254
|
+
}>;
|
|
2255
|
+
["Shapedocs_navMain"]: AliasType<{
|
|
2256
|
+
list?:ResolverInputTypes["Shapedocs_navMainList"],
|
|
2257
|
+
__typename?: boolean | `@${string}`
|
|
2258
|
+
}>;
|
|
2259
|
+
["Shapedocs_nav"]: AliasType<{
|
|
2260
|
+
main?:ResolverInputTypes["Shapedocs_navMain"],
|
|
2261
|
+
_id?:boolean | `@${string}`,
|
|
2262
|
+
createdAt?:boolean | `@${string}`,
|
|
2263
|
+
updatedAt?:boolean | `@${string}`,
|
|
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}`
|
|
2278
|
+
}>;
|
|
2279
|
+
["ShapefootFooterFooter_containerFooter_links"]: AliasType<{
|
|
2280
|
+
privacy_policy?:boolean | `@${string}`,
|
|
2281
|
+
terms_of_service?:boolean | `@${string}`,
|
|
2282
|
+
contact_us?:boolean | `@${string}`,
|
|
2283
|
+
__typename?: boolean | `@${string}`
|
|
2284
|
+
}>;
|
|
2285
|
+
["ShapefootFooterFooter_container"]: AliasType<{
|
|
2286
|
+
footer_logo?:boolean | `@${string}`,
|
|
2287
|
+
footer_links?:ResolverInputTypes["ShapefootFooterFooter_containerFooter_links"],
|
|
2288
|
+
footer_copy?:boolean | `@${string}`,
|
|
2289
|
+
__typename?: boolean | `@${string}`
|
|
2290
|
+
}>;
|
|
2291
|
+
["ShapefootFooter"]: AliasType<{
|
|
2292
|
+
footer_container?:ResolverInputTypes["ShapefootFooterFooter_container"],
|
|
2293
|
+
__typename?: boolean | `@${string}`
|
|
2294
|
+
}>;
|
|
2295
|
+
["Shapefoot"]: AliasType<{
|
|
2296
|
+
footer?:ResolverInputTypes["ShapefootFooter"],
|
|
2297
|
+
_id?:boolean | `@${string}`,
|
|
2298
|
+
createdAt?:boolean | `@${string}`,
|
|
2299
|
+
updatedAt?:boolean | `@${string}`,
|
|
2300
|
+
__typename?: boolean | `@${string}`
|
|
2301
|
+
}>;
|
|
2302
|
+
["ShapeheroHero_componentSlogan_parent"]: AliasType<{
|
|
2303
|
+
slogan?:boolean | `@${string}`,
|
|
2304
|
+
__typename?: boolean | `@${string}`
|
|
2305
|
+
}>;
|
|
2306
|
+
["ShapeheroHero_component"]: AliasType<{
|
|
2307
|
+
logoplace?:boolean | `@${string}`,
|
|
2308
|
+
logo?:boolean | `@${string}`,
|
|
2309
|
+
slogan_parent?:ResolverInputTypes["ShapeheroHero_componentSlogan_parent"],
|
|
2310
|
+
subslogan?:boolean | `@${string}`,
|
|
2311
|
+
__typename?: boolean | `@${string}`
|
|
2312
|
+
}>;
|
|
2313
|
+
["Shapehero"]: AliasType<{
|
|
2314
|
+
hero_component?:ResolverInputTypes["ShapeheroHero_component"],
|
|
2315
|
+
_id?:boolean | `@${string}`,
|
|
2316
|
+
createdAt?:boolean | `@${string}`,
|
|
2317
|
+
updatedAt?:boolean | `@${string}`,
|
|
2318
|
+
__typename?: boolean | `@${string}`
|
|
2319
|
+
}>;
|
|
2320
|
+
["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"]: AliasType<{
|
|
2321
|
+
feature?:boolean | `@${string}`,
|
|
2322
|
+
__typename?: boolean | `@${string}`
|
|
2323
|
+
}>;
|
|
2324
|
+
["ShapeheroxHero_sectionHero_containerText_wrapper"]: AliasType<{
|
|
2325
|
+
title?:boolean | `@${string}`,
|
|
2326
|
+
description?:boolean | `@${string}`,
|
|
2327
|
+
features?:ResolverInputTypes["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"],
|
|
2328
|
+
__typename?: boolean | `@${string}`
|
|
2329
|
+
}>;
|
|
2330
|
+
["ShapeheroxHero_sectionHero_containerImage_wrapper"]: AliasType<{
|
|
2331
|
+
hero_image?:ResolverInputTypes["ImageField"],
|
|
2332
|
+
__typename?: boolean | `@${string}`
|
|
2333
|
+
}>;
|
|
2334
|
+
["ShapeheroxHero_sectionHero_containerPresentation"]: AliasType<{
|
|
2335
|
+
video?:ResolverInputTypes["VideoField"],
|
|
2336
|
+
__typename?: boolean | `@${string}`
|
|
2337
|
+
}>;
|
|
2338
|
+
["ShapeheroxHero_sectionHero_container"]: AliasType<{
|
|
2339
|
+
text_wrapper?:ResolverInputTypes["ShapeheroxHero_sectionHero_containerText_wrapper"],
|
|
2340
|
+
image_wrapper?:ResolverInputTypes["ShapeheroxHero_sectionHero_containerImage_wrapper"],
|
|
2341
|
+
presentation?:ResolverInputTypes["ShapeheroxHero_sectionHero_containerPresentation"],
|
|
2342
|
+
__typename?: boolean | `@${string}`
|
|
2343
|
+
}>;
|
|
2344
|
+
["ShapeheroxHero_section"]: AliasType<{
|
|
2345
|
+
hero_container?:ResolverInputTypes["ShapeheroxHero_sectionHero_container"],
|
|
2346
|
+
__typename?: boolean | `@${string}`
|
|
2347
|
+
}>;
|
|
2348
|
+
["Shapeherox"]: AliasType<{
|
|
2349
|
+
hero_section?:ResolverInputTypes["ShapeheroxHero_section"],
|
|
2350
|
+
_id?:boolean | `@${string}`,
|
|
2351
|
+
createdAt?:boolean | `@${string}`,
|
|
2352
|
+
updatedAt?:boolean | `@${string}`,
|
|
2353
|
+
__typename?: boolean | `@${string}`
|
|
2354
|
+
}>;
|
|
2355
|
+
["Shapelista_projektowListProjectsInstance"]: AliasType<{
|
|
2356
|
+
title?:boolean | `@${string}`,
|
|
2357
|
+
link?:boolean | `@${string}`,
|
|
2358
|
+
remove_button?:boolean | `@${string}`,
|
|
2359
|
+
__typename?: boolean | `@${string}`
|
|
2360
|
+
}>;
|
|
2361
|
+
["Shapelista_projektowListProjects"]: AliasType<{
|
|
2362
|
+
instance?:ResolverInputTypes["Shapelista_projektowListProjectsInstance"],
|
|
2363
|
+
__typename?: boolean | `@${string}`
|
|
2364
|
+
}>;
|
|
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"],
|
|
2373
|
+
_id?:boolean | `@${string}`,
|
|
2374
|
+
createdAt?:boolean | `@${string}`,
|
|
2375
|
+
updatedAt?:boolean | `@${string}`,
|
|
2376
|
+
__typename?: boolean | `@${string}`
|
|
2377
|
+
}>;
|
|
2378
|
+
["ShapenavNavigationNavigation_linksLink"]: AliasType<{
|
|
2379
|
+
display?:boolean | `@${string}`,
|
|
2380
|
+
href?:boolean | `@${string}`,
|
|
2381
|
+
__typename?: boolean | `@${string}`
|
|
2382
|
+
}>;
|
|
2383
|
+
["ShapenavNavigationNavigation_links"]: AliasType<{
|
|
2384
|
+
link?:ResolverInputTypes["ShapenavNavigationNavigation_linksLink"],
|
|
2385
|
+
__typename?: boolean | `@${string}`
|
|
2386
|
+
}>;
|
|
2387
|
+
["ShapenavNavigation"]: AliasType<{
|
|
2388
|
+
logo?:boolean | `@${string}`,
|
|
2389
|
+
navigation_links?:ResolverInputTypes["ShapenavNavigationNavigation_links"],
|
|
2390
|
+
__typename?: boolean | `@${string}`
|
|
2391
|
+
}>;
|
|
2392
|
+
["Shapenav"]: AliasType<{
|
|
2393
|
+
navigation?:ResolverInputTypes["ShapenavNavigation"],
|
|
2394
|
+
_id?:boolean | `@${string}`,
|
|
2395
|
+
createdAt?:boolean | `@${string}`,
|
|
2396
|
+
updatedAt?:boolean | `@${string}`,
|
|
2397
|
+
__typename?: boolean | `@${string}`
|
|
2398
|
+
}>;
|
|
2399
|
+
["ShapenewshapeBackgroundContent"]: AliasType<{
|
|
2400
|
+
badge?:boolean | `@${string}`,
|
|
2401
|
+
headline?:boolean | `@${string}`,
|
|
2402
|
+
subheadline?:boolean | `@${string}`,
|
|
2403
|
+
cta_label?:boolean | `@${string}`,
|
|
2404
|
+
cta_href?:boolean | `@${string}`,
|
|
2405
|
+
__typename?: boolean | `@${string}`
|
|
2406
|
+
}>;
|
|
2407
|
+
["ShapenewshapeBackground"]: AliasType<{
|
|
2408
|
+
overlay_gradient?:boolean | `@${string}`,
|
|
2409
|
+
content?:ResolverInputTypes["ShapenewshapeBackgroundContent"],
|
|
2410
|
+
hero_image?:ResolverInputTypes["ImageField"],
|
|
2411
|
+
__typename?: boolean | `@${string}`
|
|
2412
|
+
}>;
|
|
2413
|
+
["Shapenewshape"]: AliasType<{
|
|
2414
|
+
background?:ResolverInputTypes["ShapenewshapeBackground"],
|
|
2415
|
+
_id?:boolean | `@${string}`,
|
|
2416
|
+
createdAt?:boolean | `@${string}`,
|
|
2417
|
+
updatedAt?:boolean | `@${string}`,
|
|
2418
|
+
__typename?: boolean | `@${string}`
|
|
2419
|
+
}>;
|
|
2420
|
+
["Shapepricing_tablePricing_sectionHeader_wrapper"]: AliasType<{
|
|
2421
|
+
title?:boolean | `@${string}`,
|
|
2422
|
+
description?:boolean | `@${string}`,
|
|
2423
|
+
__typename?: boolean | `@${string}`
|
|
2424
|
+
}>;
|
|
2425
|
+
["Shapepricing_tablePricing_sectionPricing_tableTable_head"]: AliasType<{
|
|
2426
|
+
feature?:boolean | `@${string}`,
|
|
2427
|
+
unit?:boolean | `@${string}`,
|
|
2428
|
+
price?:boolean | `@${string}`,
|
|
2429
|
+
__typename?: boolean | `@${string}`
|
|
2430
|
+
}>;
|
|
2431
|
+
["Shapepricing_tablePricing_sectionPricing_tableRows"]: AliasType<{
|
|
2432
|
+
feature?:boolean | `@${string}`,
|
|
2433
|
+
unit?:boolean | `@${string}`,
|
|
2434
|
+
price?:boolean | `@${string}`,
|
|
2435
|
+
__typename?: boolean | `@${string}`
|
|
2436
|
+
}>;
|
|
2437
|
+
["Shapepricing_tablePricing_sectionPricing_table"]: AliasType<{
|
|
2438
|
+
table_head?:ResolverInputTypes["Shapepricing_tablePricing_sectionPricing_tableTable_head"],
|
|
2439
|
+
rows?:ResolverInputTypes["Shapepricing_tablePricing_sectionPricing_tableRows"],
|
|
2440
|
+
__typename?: boolean | `@${string}`
|
|
2441
|
+
}>;
|
|
2442
|
+
["Shapepricing_tablePricing_section"]: AliasType<{
|
|
2443
|
+
header_wrapper?:ResolverInputTypes["Shapepricing_tablePricing_sectionHeader_wrapper"],
|
|
2444
|
+
pricing_table?:ResolverInputTypes["Shapepricing_tablePricing_sectionPricing_table"],
|
|
2445
|
+
__typename?: boolean | `@${string}`
|
|
2446
|
+
}>;
|
|
2447
|
+
["Shapepricing_table"]: AliasType<{
|
|
2448
|
+
pricing_section?:ResolverInputTypes["Shapepricing_tablePricing_section"],
|
|
2449
|
+
_id?:boolean | `@${string}`,
|
|
2450
|
+
createdAt?:boolean | `@${string}`,
|
|
2451
|
+
updatedAt?:boolean | `@${string}`,
|
|
2452
|
+
__typename?: boolean | `@${string}`
|
|
2453
|
+
}>;
|
|
2454
|
+
["Shapepricingv1Pricing_sectionHeader_wrapper"]: AliasType<{
|
|
2455
|
+
title?:boolean | `@${string}`,
|
|
2456
|
+
description?:boolean | `@${string}`,
|
|
2457
|
+
__typename?: boolean | `@${string}`
|
|
2458
|
+
}>;
|
|
2459
|
+
["Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list"]: AliasType<{
|
|
2460
|
+
feature?:boolean | `@${string}`,
|
|
2461
|
+
__typename?: boolean | `@${string}`
|
|
2462
|
+
}>;
|
|
2463
|
+
["Shapepricingv1Pricing_sectionPlans_gridFree_plan"]: AliasType<{
|
|
2464
|
+
plan_name?:boolean | `@${string}`,
|
|
2465
|
+
price?:boolean | `@${string}`,
|
|
2466
|
+
plan_description?:boolean | `@${string}`,
|
|
2467
|
+
feature_list?:ResolverInputTypes["Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list"],
|
|
2468
|
+
cta?:boolean | `@${string}`,
|
|
2469
|
+
__typename?: boolean | `@${string}`
|
|
2470
|
+
}>;
|
|
2471
|
+
["Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list"]: AliasType<{
|
|
2472
|
+
feature?:boolean | `@${string}`,
|
|
2473
|
+
__typename?: boolean | `@${string}`
|
|
2474
|
+
}>;
|
|
2475
|
+
["Shapepricingv1Pricing_sectionPlans_gridPaid_plan"]: AliasType<{
|
|
2476
|
+
plan_name?:boolean | `@${string}`,
|
|
2477
|
+
price?:boolean | `@${string}`,
|
|
2478
|
+
plan_description?:boolean | `@${string}`,
|
|
2479
|
+
feature_list?:ResolverInputTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list"],
|
|
2480
|
+
cta?:boolean | `@${string}`,
|
|
2481
|
+
__typename?: boolean | `@${string}`
|
|
2482
|
+
}>;
|
|
2483
|
+
["Shapepricingv1Pricing_sectionPlans_grid"]: AliasType<{
|
|
2484
|
+
free_plan?:ResolverInputTypes["Shapepricingv1Pricing_sectionPlans_gridFree_plan"],
|
|
2485
|
+
paid_plan?:ResolverInputTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_plan"],
|
|
2486
|
+
__typename?: boolean | `@${string}`
|
|
2487
|
+
}>;
|
|
2488
|
+
["Shapepricingv1Pricing_section"]: AliasType<{
|
|
2489
|
+
header_wrapper?:ResolverInputTypes["Shapepricingv1Pricing_sectionHeader_wrapper"],
|
|
2490
|
+
plans_grid?:ResolverInputTypes["Shapepricingv1Pricing_sectionPlans_grid"],
|
|
2491
|
+
__typename?: boolean | `@${string}`
|
|
2492
|
+
}>;
|
|
2493
|
+
["Shapepricingv1"]: AliasType<{
|
|
2494
|
+
pricing_section?:ResolverInputTypes["Shapepricingv1Pricing_section"],
|
|
2495
|
+
_id?:boolean | `@${string}`,
|
|
2496
|
+
createdAt?:boolean | `@${string}`,
|
|
2497
|
+
updatedAt?:boolean | `@${string}`,
|
|
2498
|
+
__typename?: boolean | `@${string}`
|
|
2499
|
+
}>;
|
|
2500
|
+
["Shapeprofile_infoProfile_sectionAccount_headerInfo"]: AliasType<{
|
|
2501
|
+
full_name?:boolean | `@${string}`,
|
|
2502
|
+
company?:boolean | `@${string}`,
|
|
2503
|
+
email?:boolean | `@${string}`,
|
|
2504
|
+
__typename?: boolean | `@${string}`
|
|
2505
|
+
}>;
|
|
2506
|
+
["Shapeprofile_infoProfile_sectionAccount_header"]: AliasType<{
|
|
2507
|
+
avatar?:ResolverInputTypes["ImageField"],
|
|
2508
|
+
info?:ResolverInputTypes["Shapeprofile_infoProfile_sectionAccount_headerInfo"],
|
|
2509
|
+
__typename?: boolean | `@${string}`
|
|
2510
|
+
}>;
|
|
2511
|
+
["Shapeprofile_infoProfile_sectionPlan_status"]: AliasType<{
|
|
2512
|
+
plan?:boolean | `@${string}`,
|
|
2513
|
+
__typename?: boolean | `@${string}`
|
|
2514
|
+
}>;
|
|
2515
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens"]: AliasType<{
|
|
2516
|
+
label?:boolean | `@${string}`,
|
|
2517
|
+
value?:boolean | `@${string}`,
|
|
2518
|
+
__typename?: boolean | `@${string}`
|
|
2519
|
+
}>;
|
|
2520
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens"]: AliasType<{
|
|
2521
|
+
label?:boolean | `@${string}`,
|
|
2522
|
+
value?:boolean | `@${string}`,
|
|
1458
2523
|
__typename?: boolean | `@${string}`
|
|
1459
2524
|
}>;
|
|
1460
|
-
["
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
items?:ResolverInputTypes["demo"],
|
|
1464
|
-
pageInfo?:ResolverInputTypes["PageInfo"],
|
|
2525
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests"]: AliasType<{
|
|
2526
|
+
label?:boolean | `@${string}`,
|
|
2527
|
+
value?:boolean | `@${string}`,
|
|
1465
2528
|
__typename?: boolean | `@${string}`
|
|
1466
2529
|
}>;
|
|
1467
|
-
["
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
_id?:boolean | `@${string}`,
|
|
1472
|
-
createdAt?:boolean | `@${string}`,
|
|
1473
|
-
updatedAt?:boolean | `@${string}`,
|
|
1474
|
-
draft_version?:boolean | `@${string}`,
|
|
1475
|
-
json_ld?:boolean | `@${string}`,
|
|
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"],
|
|
1476
2534
|
__typename?: boolean | `@${string}`
|
|
1477
2535
|
}>;
|
|
1478
|
-
["
|
|
1479
|
-
|
|
1480
|
-
|
|
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"],
|
|
1481
2540
|
__typename?: boolean | `@${string}`
|
|
1482
2541
|
}>;
|
|
1483
|
-
["
|
|
1484
|
-
|
|
1485
|
-
title?:boolean | `@${string}`,
|
|
1486
|
-
image?:ResolverInputTypes["ImageField"],
|
|
1487
|
-
content?:boolean | `@${string}`,
|
|
1488
|
-
slug?:boolean | `@${string}`,
|
|
2542
|
+
["Shapeprofile_info"]: AliasType<{
|
|
2543
|
+
profile_section?:ResolverInputTypes["Shapeprofile_infoProfile_section"],
|
|
1489
2544
|
_id?:boolean | `@${string}`,
|
|
1490
2545
|
createdAt?:boolean | `@${string}`,
|
|
1491
2546
|
updatedAt?:boolean | `@${string}`,
|
|
1492
|
-
draft_version?:boolean | `@${string}`,
|
|
1493
|
-
json_ld?:boolean | `@${string}`,
|
|
1494
2547
|
__typename?: boolean | `@${string}`
|
|
1495
2548
|
}>;
|
|
1496
|
-
["
|
|
2549
|
+
["ShapeusageMain"]: AliasType<{
|
|
2550
|
+
title?:boolean | `@${string}`,
|
|
2551
|
+
subtitle?:boolean | `@${string}`,
|
|
2552
|
+
period?:boolean | `@${string}`,
|
|
2553
|
+
tokens_consumed?:boolean | `@${string}`,
|
|
2554
|
+
__typename?: boolean | `@${string}`
|
|
2555
|
+
}>;
|
|
2556
|
+
["Shapeusage"]: AliasType<{
|
|
2557
|
+
main?:ResolverInputTypes["ShapeusageMain"],
|
|
1497
2558
|
_id?:boolean | `@${string}`,
|
|
1498
2559
|
createdAt?:boolean | `@${string}`,
|
|
1499
2560
|
updatedAt?:boolean | `@${string}`,
|
|
1500
2561
|
__typename?: boolean | `@${string}`
|
|
1501
2562
|
}>;
|
|
1502
2563
|
["RootParamsInput"]: {
|
|
1503
|
-
_version?: string | undefined | null
|
|
2564
|
+
_version?: string | undefined | null,
|
|
2565
|
+
locale?: string | undefined | null
|
|
1504
2566
|
};
|
|
1505
2567
|
["RootParamsEnum"]:RootParamsEnum;
|
|
1506
|
-
["
|
|
1507
|
-
slug?: ResolverInputTypes["Sort"] | undefined | null,
|
|
1508
|
-
createdAt?: ResolverInputTypes["Sort"] | undefined | null,
|
|
1509
|
-
updatedAt?: ResolverInputTypes["Sort"] | undefined | null
|
|
1510
|
-
};
|
|
1511
|
-
["postSortInput"]: {
|
|
2568
|
+
["docsSortInput"]: {
|
|
1512
2569
|
slug?: ResolverInputTypes["Sort"] | undefined | null,
|
|
1513
2570
|
createdAt?: ResolverInputTypes["Sort"] | undefined | null,
|
|
1514
2571
|
updatedAt?: ResolverInputTypes["Sort"] | undefined | null
|
|
1515
2572
|
};
|
|
1516
|
-
["
|
|
1517
|
-
slug?: ResolverInputTypes["FilterInputString"] | undefined | null
|
|
1518
|
-
};
|
|
1519
|
-
["postFilterInput"]: {
|
|
2573
|
+
["docsFilterInput"]: {
|
|
1520
2574
|
slug?: ResolverInputTypes["FilterInputString"] | undefined | null
|
|
1521
2575
|
};
|
|
1522
2576
|
["schema"]: AliasType<{
|
|
1523
2577
|
query?:ResolverInputTypes["Query"],
|
|
2578
|
+
mutation?:ResolverInputTypes["Mutation"],
|
|
1524
2579
|
__typename?: boolean | `@${string}`
|
|
1525
2580
|
}>;
|
|
1526
2581
|
["ID"]:unknown
|
|
@@ -1601,6 +2656,16 @@ export type ModelTypes = {
|
|
|
1601
2656
|
setOperator?: ModelTypes["ConditionSetOperator"] | undefined | null,
|
|
1602
2657
|
value?: string | undefined | null,
|
|
1603
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"]>
|
|
1604
2669
|
};
|
|
1605
2670
|
["Visual"]: {
|
|
1606
2671
|
className?: string | undefined | null,
|
|
@@ -1619,6 +2684,10 @@ export type ModelTypes = {
|
|
|
1619
2684
|
ne?: string | undefined | null,
|
|
1620
2685
|
contain?: string | undefined | null
|
|
1621
2686
|
};
|
|
2687
|
+
["Mutation"]: {
|
|
2688
|
+
heartbeat?: string | undefined | null
|
|
2689
|
+
};
|
|
2690
|
+
["RootParamsAdminType"]:any;
|
|
1622
2691
|
["Shape"]: {
|
|
1623
2692
|
name: string,
|
|
1624
2693
|
slug: string,
|
|
@@ -1628,173 +2697,607 @@ export type ModelTypes = {
|
|
|
1628
2697
|
promptResponse?: ModelTypes["AiComponent"] | undefined | null,
|
|
1629
2698
|
fields: Array<ModelTypes["CMSField"]>
|
|
1630
2699
|
};
|
|
1631
|
-
["View"]: {
|
|
1632
|
-
name: string,
|
|
1633
|
-
fields: Array<ModelTypes["CMSField"]>,
|
|
1634
|
-
slug: string,
|
|
1635
|
-
display: string
|
|
2700
|
+
["View"]: {
|
|
2701
|
+
name: string,
|
|
2702
|
+
fields: Array<ModelTypes["CMSField"]>,
|
|
2703
|
+
slug: string,
|
|
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
|
|
2717
|
+
};
|
|
2718
|
+
["FormField"]: {
|
|
2719
|
+
name: string,
|
|
2720
|
+
display?: string | undefined | null,
|
|
2721
|
+
type: ModelTypes["FormFieldType"],
|
|
2722
|
+
list?: boolean | undefined | null,
|
|
2723
|
+
fields?: Array<ModelTypes["FormField"]> | undefined | null,
|
|
2724
|
+
visual?: ModelTypes["FormFieldVisual"] | undefined | null,
|
|
2725
|
+
placeholder?: string | undefined | null,
|
|
2726
|
+
root?: boolean | undefined | null,
|
|
2727
|
+
options?: Array<string> | undefined | null,
|
|
2728
|
+
builtIn?: boolean | undefined | null,
|
|
2729
|
+
nonTranslatable?: boolean | undefined | null
|
|
2730
|
+
};
|
|
2731
|
+
["FormFieldType"]:FormFieldType;
|
|
2732
|
+
["Form"]: {
|
|
2733
|
+
name: string,
|
|
2734
|
+
display?: string | undefined | null,
|
|
2735
|
+
fields: Array<ModelTypes["FormField"]>
|
|
2736
|
+
};
|
|
2737
|
+
["FormTextField"]: {
|
|
2738
|
+
label?: string | undefined | null,
|
|
2739
|
+
placeholder?: string | undefined | null
|
|
2740
|
+
};
|
|
2741
|
+
["FormBooleanField"]: {
|
|
2742
|
+
label?: string | undefined | null
|
|
2743
|
+
};
|
|
2744
|
+
["FormContentField"]: {
|
|
2745
|
+
label?: string | undefined | null,
|
|
2746
|
+
placeholder?: string | undefined | null
|
|
2747
|
+
};
|
|
2748
|
+
["FormRadioField"]: {
|
|
2749
|
+
label?: string | undefined | null
|
|
2750
|
+
};
|
|
2751
|
+
["FormStepField"]: {
|
|
2752
|
+
label?: string | undefined | null
|
|
2753
|
+
};
|
|
2754
|
+
["FormTextareaField"]: {
|
|
2755
|
+
label?: string | undefined | null,
|
|
2756
|
+
placeholder?: string | undefined | null
|
|
2757
|
+
};
|
|
2758
|
+
["FormGroupField"]: {
|
|
2759
|
+
label?: string | undefined | null
|
|
2760
|
+
};
|
|
2761
|
+
["FormArrayStepField"]: {
|
|
2762
|
+
label?: string | undefined | null
|
|
2763
|
+
};
|
|
2764
|
+
["FormRouteField"]: {
|
|
2765
|
+
label?: string | undefined | null,
|
|
2766
|
+
portal?: string | undefined | null
|
|
2767
|
+
};
|
|
2768
|
+
["FormPortalField"]: {
|
|
2769
|
+
label?: string | undefined | null
|
|
2770
|
+
};
|
|
2771
|
+
["FormSubmitField"]: {
|
|
2772
|
+
label?: string | undefined | null
|
|
2773
|
+
};
|
|
2774
|
+
["FormNumberField"]: {
|
|
2775
|
+
label?: string | undefined | null
|
|
2776
|
+
};
|
|
2777
|
+
["FormRadioTextField"]: {
|
|
2778
|
+
label?: string | undefined | null,
|
|
2779
|
+
options?: Array<string> | undefined | null
|
|
2780
|
+
};
|
|
2781
|
+
["FormCheckboxField"]: {
|
|
2782
|
+
label?: string | undefined | null
|
|
2783
|
+
};
|
|
2784
|
+
["FormButtonField"]: {
|
|
2785
|
+
label?: string | undefined | null
|
|
2786
|
+
};
|
|
2787
|
+
["FormProductField"]: {
|
|
2788
|
+
label?: string | undefined | null,
|
|
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
|
|
2799
|
+
};
|
|
2800
|
+
["CMSType"]:CMSType;
|
|
2801
|
+
["Query"]: {
|
|
2802
|
+
navigation?: Array<ModelTypes["ModelNavigation"]> | undefined | null,
|
|
2803
|
+
rootParams?: Array<ModelTypes["RootCMSParam"]> | undefined | null,
|
|
2804
|
+
versions?: Array<ModelTypes["VersionField"]> | undefined | null,
|
|
2805
|
+
links?: Array<ModelTypes["InternalLink"]> | undefined | null,
|
|
2806
|
+
listViews?: Array<ModelTypes["View"]> | undefined | null,
|
|
2807
|
+
listShapes?: Array<ModelTypes["Shape"]> | undefined | null,
|
|
2808
|
+
tailwind?: ModelTypes["TailwindConfiguration"] | undefined | null,
|
|
2809
|
+
listForms?: Array<ModelTypes["Form"]> | undefined | null,
|
|
2810
|
+
listPaginateddocs?: ModelTypes["docs__Connection"] | undefined | null,
|
|
2811
|
+
onedocsBySlug?: ModelTypes["docs"] | undefined | null,
|
|
2812
|
+
variantsdocsBySlug?: Array<ModelTypes["docs"]> | undefined | null,
|
|
2813
|
+
fieldSetdocs: string,
|
|
2814
|
+
modeldocs: ModelTypes["ModelNavigationCompiled"],
|
|
2815
|
+
previewFieldsdocs: ModelTypes["ModelNavigationCompiled"],
|
|
2816
|
+
fieldSetShapedocs_content: string,
|
|
2817
|
+
modelShapedocs_content: ModelTypes["ModelNavigationCompiled"],
|
|
2818
|
+
previewFieldsShapedocs_content: ModelTypes["ModelNavigationCompiled"],
|
|
2819
|
+
oneShapedocs_content?: ModelTypes["Shapedocs_content"] | undefined | null,
|
|
2820
|
+
fieldSetShapedocs_nav: string,
|
|
2821
|
+
modelShapedocs_nav: ModelTypes["ModelNavigationCompiled"],
|
|
2822
|
+
previewFieldsShapedocs_nav: ModelTypes["ModelNavigationCompiled"],
|
|
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,
|
|
2828
|
+
fieldSetShapefoot: string,
|
|
2829
|
+
modelShapefoot: ModelTypes["ModelNavigationCompiled"],
|
|
2830
|
+
previewFieldsShapefoot: ModelTypes["ModelNavigationCompiled"],
|
|
2831
|
+
oneShapefoot?: ModelTypes["Shapefoot"] | undefined | null,
|
|
2832
|
+
fieldSetShapehero: string,
|
|
2833
|
+
modelShapehero: ModelTypes["ModelNavigationCompiled"],
|
|
2834
|
+
previewFieldsShapehero: ModelTypes["ModelNavigationCompiled"],
|
|
2835
|
+
oneShapehero?: ModelTypes["Shapehero"] | undefined | null,
|
|
2836
|
+
fieldSetShapeherox: string,
|
|
2837
|
+
modelShapeherox: ModelTypes["ModelNavigationCompiled"],
|
|
2838
|
+
previewFieldsShapeherox: ModelTypes["ModelNavigationCompiled"],
|
|
2839
|
+
oneShapeherox?: ModelTypes["Shapeherox"] | undefined | null,
|
|
2840
|
+
fieldSetShapelista_projektow: string,
|
|
2841
|
+
modelShapelista_projektow: ModelTypes["ModelNavigationCompiled"],
|
|
2842
|
+
previewFieldsShapelista_projektow: ModelTypes["ModelNavigationCompiled"],
|
|
2843
|
+
oneShapelista_projektow?: ModelTypes["Shapelista_projektow"] | undefined | null,
|
|
2844
|
+
fieldSetShapenav: string,
|
|
2845
|
+
modelShapenav: ModelTypes["ModelNavigationCompiled"],
|
|
2846
|
+
previewFieldsShapenav: ModelTypes["ModelNavigationCompiled"],
|
|
2847
|
+
oneShapenav?: ModelTypes["Shapenav"] | undefined | null,
|
|
2848
|
+
fieldSetShapenewshape: string,
|
|
2849
|
+
modelShapenewshape: ModelTypes["ModelNavigationCompiled"],
|
|
2850
|
+
previewFieldsShapenewshape: ModelTypes["ModelNavigationCompiled"],
|
|
2851
|
+
oneShapenewshape?: ModelTypes["Shapenewshape"] | undefined | null,
|
|
2852
|
+
fieldSetShapepricing_table: string,
|
|
2853
|
+
modelShapepricing_table: ModelTypes["ModelNavigationCompiled"],
|
|
2854
|
+
previewFieldsShapepricing_table: ModelTypes["ModelNavigationCompiled"],
|
|
2855
|
+
oneShapepricing_table?: ModelTypes["Shapepricing_table"] | undefined | null,
|
|
2856
|
+
fieldSetShapepricingv1: string,
|
|
2857
|
+
modelShapepricingv1: ModelTypes["ModelNavigationCompiled"],
|
|
2858
|
+
previewFieldsShapepricingv1: ModelTypes["ModelNavigationCompiled"],
|
|
2859
|
+
oneShapepricingv1?: ModelTypes["Shapepricingv1"] | undefined | null,
|
|
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,
|
|
2878
|
+
variantsViewhomepage?: Array<ModelTypes["Viewhomepage"]> | undefined | null,
|
|
2879
|
+
fieldSetViewhomepage: string,
|
|
2880
|
+
modelViewhomepage: ModelTypes["ModelNavigationCompiled"],
|
|
2881
|
+
previewFieldsViewhomepage: ModelTypes["ModelNavigationCompiled"],
|
|
2882
|
+
oneViewhomepage?: ModelTypes["Viewhomepage"] | undefined | null,
|
|
2883
|
+
variantsViewhowitworks?: Array<ModelTypes["Viewhowitworks"]> | undefined | null,
|
|
2884
|
+
fieldSetViewhowitworks: string,
|
|
2885
|
+
modelViewhowitworks: ModelTypes["ModelNavigationCompiled"],
|
|
2886
|
+
previewFieldsViewhowitworks: ModelTypes["ModelNavigationCompiled"],
|
|
2887
|
+
oneViewhowitworks?: ModelTypes["Viewhowitworks"] | 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
|
|
2893
|
+
};
|
|
2894
|
+
["RootParamsType"]: {
|
|
2895
|
+
_version?: string | undefined | null,
|
|
2896
|
+
locale?: string | undefined | null
|
|
2897
|
+
};
|
|
2898
|
+
["ModelEnum"]:ModelEnum;
|
|
2899
|
+
["ViewEnum"]:ViewEnum;
|
|
2900
|
+
["ShapeEnum"]:ShapeEnum;
|
|
2901
|
+
["docs__Connection"]: {
|
|
2902
|
+
items?: Array<ModelTypes["docs"]> | undefined | null,
|
|
2903
|
+
pageInfo: ModelTypes["PageInfo"]
|
|
2904
|
+
};
|
|
2905
|
+
["docs"]: {
|
|
2906
|
+
_version?: ModelTypes["VersionField"] | undefined | null,
|
|
2907
|
+
title?: string | undefined | null,
|
|
2908
|
+
seotitle?: string | undefined | null,
|
|
2909
|
+
metadesc?: string | undefined | null,
|
|
2910
|
+
sortid?: number | undefined | null,
|
|
2911
|
+
main_category?: string | undefined | null,
|
|
2912
|
+
content?: string | undefined | null,
|
|
2913
|
+
video?: ModelTypes["VideoField"] | undefined | null,
|
|
2914
|
+
locale?: string | undefined | null,
|
|
2915
|
+
slug?: string | undefined | null,
|
|
2916
|
+
_id: string,
|
|
2917
|
+
createdAt?: number | undefined | null,
|
|
2918
|
+
updatedAt?: number | undefined | null,
|
|
2919
|
+
draft_version?: boolean | undefined | null,
|
|
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
|
|
2951
|
+
};
|
|
2952
|
+
["Viewhomepage"]: {
|
|
2953
|
+
_version?: ModelTypes["VersionField"] | undefined | null,
|
|
2954
|
+
nav?: ModelTypes["Shapenav"] | undefined | null,
|
|
2955
|
+
main?: ModelTypes["Shapehero"] | undefined | null,
|
|
2956
|
+
hero?: ModelTypes["Shapeherox"] | undefined | null,
|
|
2957
|
+
pricing?: ModelTypes["Shapepricingv1"] | undefined | null,
|
|
2958
|
+
footer?: ModelTypes["Shapefoot"] | undefined | null,
|
|
2959
|
+
locale?: string | undefined | null,
|
|
2960
|
+
slug?: string | undefined | null,
|
|
2961
|
+
_id: string,
|
|
2962
|
+
createdAt?: number | undefined | null,
|
|
2963
|
+
updatedAt?: number | undefined | null,
|
|
2964
|
+
draft_version?: boolean | undefined | null,
|
|
2965
|
+
json_ld?: string | undefined | null
|
|
2966
|
+
};
|
|
2967
|
+
["ViewhowitworksFeature_control"]: {
|
|
2968
|
+
title?: string | undefined | null,
|
|
2969
|
+
description?: string | undefined | null,
|
|
2970
|
+
image?: ModelTypes["ImageField"] | undefined | null
|
|
2971
|
+
};
|
|
2972
|
+
["Viewhowitworks"]: {
|
|
2973
|
+
_version?: ModelTypes["VersionField"] | undefined | null,
|
|
2974
|
+
title?: string | undefined | null,
|
|
2975
|
+
feature_control?: ModelTypes["ViewhowitworksFeature_control"] | undefined | null,
|
|
2976
|
+
locale?: string | undefined | null,
|
|
2977
|
+
slug?: string | undefined | null,
|
|
2978
|
+
_id: string,
|
|
2979
|
+
createdAt?: number | undefined | null,
|
|
2980
|
+
updatedAt?: number | undefined | null,
|
|
2981
|
+
draft_version?: boolean | undefined | null,
|
|
2982
|
+
json_ld?: string | undefined | null
|
|
2983
|
+
};
|
|
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,
|
|
2991
|
+
_id: string,
|
|
2992
|
+
createdAt?: number | undefined | null,
|
|
2993
|
+
updatedAt?: number | undefined | null,
|
|
2994
|
+
draft_version?: boolean | undefined | null,
|
|
2995
|
+
json_ld?: string | undefined | null
|
|
2996
|
+
};
|
|
2997
|
+
["Shapedocs_contentDocumentation_pageContent_containerDoc_content"]: {
|
|
2998
|
+
content?: string | undefined | null
|
|
2999
|
+
};
|
|
3000
|
+
["Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container"]: {
|
|
3001
|
+
scrollspy_title?: string | undefined | null,
|
|
3002
|
+
scrollspy_list?: string | undefined | null
|
|
3003
|
+
};
|
|
3004
|
+
["Shapedocs_contentDocumentation_pageContent_containerScrollspy"]: {
|
|
3005
|
+
scrollspy_container?: ModelTypes["Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container"] | undefined | null
|
|
3006
|
+
};
|
|
3007
|
+
["Shapedocs_contentDocumentation_pageContent_container"]: {
|
|
3008
|
+
doc_content?: ModelTypes["Shapedocs_contentDocumentation_pageContent_containerDoc_content"] | undefined | null,
|
|
3009
|
+
scrollspy?: ModelTypes["Shapedocs_contentDocumentation_pageContent_containerScrollspy"] | undefined | null
|
|
3010
|
+
};
|
|
3011
|
+
["Shapedocs_contentDocumentation_page"]: {
|
|
3012
|
+
content_container?: ModelTypes["Shapedocs_contentDocumentation_pageContent_container"] | undefined | null
|
|
3013
|
+
};
|
|
3014
|
+
["Shapedocs_content"]: {
|
|
3015
|
+
documentation_page?: ModelTypes["Shapedocs_contentDocumentation_page"] | undefined | null,
|
|
3016
|
+
_id: string,
|
|
3017
|
+
createdAt?: number | undefined | null,
|
|
3018
|
+
updatedAt?: number | undefined | null
|
|
3019
|
+
};
|
|
3020
|
+
["Shapedocs_navMainListChildrenCategory"]: {
|
|
3021
|
+
name?: string | undefined | null,
|
|
3022
|
+
link?: string | undefined | null
|
|
3023
|
+
};
|
|
3024
|
+
["Shapedocs_navMainListChildren"]: {
|
|
3025
|
+
category?: Array<ModelTypes["Shapedocs_navMainListChildrenCategory"] | undefined | null> | undefined | null
|
|
3026
|
+
};
|
|
3027
|
+
["Shapedocs_navMainList"]: {
|
|
3028
|
+
title?: string | undefined | null,
|
|
3029
|
+
children?: ModelTypes["Shapedocs_navMainListChildren"] | undefined | null
|
|
3030
|
+
};
|
|
3031
|
+
["Shapedocs_navMain"]: {
|
|
3032
|
+
list?: Array<ModelTypes["Shapedocs_navMainList"] | undefined | null> | undefined | null
|
|
3033
|
+
};
|
|
3034
|
+
["Shapedocs_nav"]: {
|
|
3035
|
+
main?: ModelTypes["Shapedocs_navMain"] | undefined | null,
|
|
3036
|
+
_id: string,
|
|
3037
|
+
createdAt?: number | undefined | null,
|
|
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
|
|
3050
|
+
};
|
|
3051
|
+
["ShapefootFooterFooter_containerFooter_links"]: {
|
|
3052
|
+
privacy_policy?: string | undefined | null,
|
|
3053
|
+
terms_of_service?: string | undefined | null,
|
|
3054
|
+
contact_us?: string | undefined | null
|
|
3055
|
+
};
|
|
3056
|
+
["ShapefootFooterFooter_container"]: {
|
|
3057
|
+
footer_logo?: string | undefined | null,
|
|
3058
|
+
footer_links?: ModelTypes["ShapefootFooterFooter_containerFooter_links"] | undefined | null,
|
|
3059
|
+
footer_copy?: string | undefined | null
|
|
3060
|
+
};
|
|
3061
|
+
["ShapefootFooter"]: {
|
|
3062
|
+
footer_container?: ModelTypes["ShapefootFooterFooter_container"] | undefined | null
|
|
3063
|
+
};
|
|
3064
|
+
["Shapefoot"]: {
|
|
3065
|
+
footer?: ModelTypes["ShapefootFooter"] | undefined | null,
|
|
3066
|
+
_id: string,
|
|
3067
|
+
createdAt?: number | undefined | null,
|
|
3068
|
+
updatedAt?: number | undefined | null
|
|
3069
|
+
};
|
|
3070
|
+
["ShapeheroHero_componentSlogan_parent"]: {
|
|
3071
|
+
slogan?: string | undefined | null
|
|
3072
|
+
};
|
|
3073
|
+
["ShapeheroHero_component"]: {
|
|
3074
|
+
logoplace?: string | undefined | null,
|
|
3075
|
+
logo?: string | undefined | null,
|
|
3076
|
+
slogan_parent?: ModelTypes["ShapeheroHero_componentSlogan_parent"] | undefined | null,
|
|
3077
|
+
subslogan?: string | undefined | null
|
|
3078
|
+
};
|
|
3079
|
+
["Shapehero"]: {
|
|
3080
|
+
hero_component?: ModelTypes["ShapeheroHero_component"] | undefined | null,
|
|
3081
|
+
_id: string,
|
|
3082
|
+
createdAt?: number | undefined | null,
|
|
3083
|
+
updatedAt?: number | undefined | null
|
|
3084
|
+
};
|
|
3085
|
+
["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"]: {
|
|
3086
|
+
feature?: Array<string | undefined | null> | undefined | null
|
|
3087
|
+
};
|
|
3088
|
+
["ShapeheroxHero_sectionHero_containerText_wrapper"]: {
|
|
3089
|
+
title?: string | undefined | null,
|
|
3090
|
+
description?: string | undefined | null,
|
|
3091
|
+
features?: ModelTypes["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"] | undefined | null
|
|
3092
|
+
};
|
|
3093
|
+
["ShapeheroxHero_sectionHero_containerImage_wrapper"]: {
|
|
3094
|
+
hero_image?: ModelTypes["ImageField"] | undefined | null
|
|
3095
|
+
};
|
|
3096
|
+
["ShapeheroxHero_sectionHero_containerPresentation"]: {
|
|
3097
|
+
video?: ModelTypes["VideoField"] | undefined | null
|
|
3098
|
+
};
|
|
3099
|
+
["ShapeheroxHero_sectionHero_container"]: {
|
|
3100
|
+
text_wrapper?: ModelTypes["ShapeheroxHero_sectionHero_containerText_wrapper"] | undefined | null,
|
|
3101
|
+
image_wrapper?: ModelTypes["ShapeheroxHero_sectionHero_containerImage_wrapper"] | undefined | null,
|
|
3102
|
+
presentation?: ModelTypes["ShapeheroxHero_sectionHero_containerPresentation"] | undefined | null
|
|
3103
|
+
};
|
|
3104
|
+
["ShapeheroxHero_section"]: {
|
|
3105
|
+
hero_container?: ModelTypes["ShapeheroxHero_sectionHero_container"] | undefined | null
|
|
3106
|
+
};
|
|
3107
|
+
["Shapeherox"]: {
|
|
3108
|
+
hero_section?: ModelTypes["ShapeheroxHero_section"] | undefined | null,
|
|
3109
|
+
_id: string,
|
|
3110
|
+
createdAt?: number | undefined | null,
|
|
3111
|
+
updatedAt?: number | undefined | null
|
|
3112
|
+
};
|
|
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
|
|
3120
|
+
};
|
|
3121
|
+
["Shapelista_projektowList"]: {
|
|
3122
|
+
title?: string | undefined | null,
|
|
3123
|
+
subtitle?: string | undefined | null,
|
|
3124
|
+
projects?: ModelTypes["Shapelista_projektowListProjects"] | undefined | null
|
|
3125
|
+
};
|
|
3126
|
+
["Shapelista_projektow"]: {
|
|
3127
|
+
list?: ModelTypes["Shapelista_projektowList"] | undefined | null,
|
|
3128
|
+
_id: string,
|
|
3129
|
+
createdAt?: number | undefined | null,
|
|
3130
|
+
updatedAt?: number | undefined | null
|
|
3131
|
+
};
|
|
3132
|
+
["ShapenavNavigationNavigation_linksLink"]: {
|
|
3133
|
+
display?: string | undefined | null,
|
|
3134
|
+
href?: string | undefined | null
|
|
3135
|
+
};
|
|
3136
|
+
["ShapenavNavigationNavigation_links"]: {
|
|
3137
|
+
link?: Array<ModelTypes["ShapenavNavigationNavigation_linksLink"] | undefined | null> | undefined | null
|
|
3138
|
+
};
|
|
3139
|
+
["ShapenavNavigation"]: {
|
|
3140
|
+
logo?: string | undefined | null,
|
|
3141
|
+
navigation_links?: ModelTypes["ShapenavNavigationNavigation_links"] | undefined | null
|
|
3142
|
+
};
|
|
3143
|
+
["Shapenav"]: {
|
|
3144
|
+
navigation?: ModelTypes["ShapenavNavigation"] | undefined | null,
|
|
3145
|
+
_id: string,
|
|
3146
|
+
createdAt?: number | undefined | null,
|
|
3147
|
+
updatedAt?: number | undefined | null
|
|
3148
|
+
};
|
|
3149
|
+
["ShapenewshapeBackgroundContent"]: {
|
|
3150
|
+
badge?: string | undefined | null,
|
|
3151
|
+
headline?: string | undefined | null,
|
|
3152
|
+
subheadline?: string | undefined | null,
|
|
3153
|
+
cta_label?: string | undefined | null,
|
|
3154
|
+
cta_href?: string | undefined | null
|
|
3155
|
+
};
|
|
3156
|
+
["ShapenewshapeBackground"]: {
|
|
3157
|
+
overlay_gradient?: boolean | undefined | null,
|
|
3158
|
+
content?: ModelTypes["ShapenewshapeBackgroundContent"] | undefined | null,
|
|
3159
|
+
hero_image?: ModelTypes["ImageField"] | undefined | null
|
|
3160
|
+
};
|
|
3161
|
+
["Shapenewshape"]: {
|
|
3162
|
+
background?: ModelTypes["ShapenewshapeBackground"] | undefined | null,
|
|
3163
|
+
_id: string,
|
|
3164
|
+
createdAt?: number | undefined | null,
|
|
3165
|
+
updatedAt?: number | undefined | null
|
|
3166
|
+
};
|
|
3167
|
+
["Shapepricing_tablePricing_sectionHeader_wrapper"]: {
|
|
3168
|
+
title?: string | undefined | null,
|
|
3169
|
+
description?: string | undefined | null
|
|
1636
3170
|
};
|
|
1637
|
-
["
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
textContent?: string | undefined | null,
|
|
1642
|
-
children?: Array<ModelTypes["AiComponent"]> | undefined | null
|
|
3171
|
+
["Shapepricing_tablePricing_sectionPricing_tableTable_head"]: {
|
|
3172
|
+
feature?: string | undefined | null,
|
|
3173
|
+
unit?: string | undefined | null,
|
|
3174
|
+
price?: string | undefined | null
|
|
1643
3175
|
};
|
|
1644
|
-
["
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
list?: boolean | undefined | null,
|
|
1649
|
-
fields?: Array<ModelTypes["FormField"]> | undefined | null,
|
|
1650
|
-
visual?: ModelTypes["Visual"] | undefined | null,
|
|
1651
|
-
conditions?: ModelTypes["Condition"] | undefined | null,
|
|
1652
|
-
placeholder?: string | undefined | null,
|
|
1653
|
-
root?: boolean | undefined | null,
|
|
1654
|
-
options?: Array<string> | undefined | null,
|
|
1655
|
-
builtIn?: boolean | undefined | null,
|
|
1656
|
-
nonTranslatable?: boolean | undefined | null
|
|
3176
|
+
["Shapepricing_tablePricing_sectionPricing_tableRows"]: {
|
|
3177
|
+
feature?: string | undefined | null,
|
|
3178
|
+
unit?: string | undefined | null,
|
|
3179
|
+
price?: string | undefined | null
|
|
1657
3180
|
};
|
|
1658
|
-
["
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
display?: string | undefined | null,
|
|
1662
|
-
fields: Array<ModelTypes["FormField"]>
|
|
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
|
|
1663
3184
|
};
|
|
1664
|
-
["
|
|
1665
|
-
|
|
1666
|
-
|
|
3185
|
+
["Shapepricing_tablePricing_section"]: {
|
|
3186
|
+
header_wrapper?: ModelTypes["Shapepricing_tablePricing_sectionHeader_wrapper"] | undefined | null,
|
|
3187
|
+
pricing_table?: ModelTypes["Shapepricing_tablePricing_sectionPricing_table"] | undefined | null
|
|
1667
3188
|
};
|
|
1668
|
-
["
|
|
1669
|
-
|
|
3189
|
+
["Shapepricing_table"]: {
|
|
3190
|
+
pricing_section?: ModelTypes["Shapepricing_tablePricing_section"] | undefined | null,
|
|
3191
|
+
_id: string,
|
|
3192
|
+
createdAt?: number | undefined | null,
|
|
3193
|
+
updatedAt?: number | undefined | null
|
|
1670
3194
|
};
|
|
1671
|
-
["
|
|
1672
|
-
|
|
1673
|
-
|
|
3195
|
+
["Shapepricingv1Pricing_sectionHeader_wrapper"]: {
|
|
3196
|
+
title?: string | undefined | null,
|
|
3197
|
+
description?: string | undefined | null
|
|
1674
3198
|
};
|
|
1675
|
-
["
|
|
1676
|
-
|
|
3199
|
+
["Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list"]: {
|
|
3200
|
+
feature?: Array<string | undefined | null> | undefined | null
|
|
1677
3201
|
};
|
|
1678
|
-
["
|
|
1679
|
-
|
|
3202
|
+
["Shapepricingv1Pricing_sectionPlans_gridFree_plan"]: {
|
|
3203
|
+
plan_name?: string | undefined | null,
|
|
3204
|
+
price?: string | undefined | null,
|
|
3205
|
+
plan_description?: string | undefined | null,
|
|
3206
|
+
feature_list?: ModelTypes["Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list"] | undefined | null,
|
|
3207
|
+
cta?: string | undefined | null
|
|
1680
3208
|
};
|
|
1681
|
-
["
|
|
1682
|
-
|
|
1683
|
-
placeholder?: string | undefined | null
|
|
3209
|
+
["Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list"]: {
|
|
3210
|
+
feature?: Array<string | undefined | null> | undefined | null
|
|
1684
3211
|
};
|
|
1685
|
-
["
|
|
1686
|
-
|
|
3212
|
+
["Shapepricingv1Pricing_sectionPlans_gridPaid_plan"]: {
|
|
3213
|
+
plan_name?: string | undefined | null,
|
|
3214
|
+
price?: string | undefined | null,
|
|
3215
|
+
plan_description?: string | undefined | null,
|
|
3216
|
+
feature_list?: ModelTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list"] | undefined | null,
|
|
3217
|
+
cta?: string | undefined | null
|
|
1687
3218
|
};
|
|
1688
|
-
["
|
|
1689
|
-
|
|
3219
|
+
["Shapepricingv1Pricing_sectionPlans_grid"]: {
|
|
3220
|
+
free_plan?: ModelTypes["Shapepricingv1Pricing_sectionPlans_gridFree_plan"] | undefined | null,
|
|
3221
|
+
paid_plan?: ModelTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_plan"] | undefined | null
|
|
1690
3222
|
};
|
|
1691
|
-
["
|
|
1692
|
-
|
|
1693
|
-
|
|
3223
|
+
["Shapepricingv1Pricing_section"]: {
|
|
3224
|
+
header_wrapper?: ModelTypes["Shapepricingv1Pricing_sectionHeader_wrapper"] | undefined | null,
|
|
3225
|
+
plans_grid?: ModelTypes["Shapepricingv1Pricing_sectionPlans_grid"] | undefined | null
|
|
1694
3226
|
};
|
|
1695
|
-
["
|
|
1696
|
-
|
|
3227
|
+
["Shapepricingv1"]: {
|
|
3228
|
+
pricing_section?: ModelTypes["Shapepricingv1Pricing_section"] | undefined | null,
|
|
3229
|
+
_id: string,
|
|
3230
|
+
createdAt?: number | undefined | null,
|
|
3231
|
+
updatedAt?: number | undefined | null
|
|
1697
3232
|
};
|
|
1698
|
-
["
|
|
1699
|
-
|
|
3233
|
+
["Shapeprofile_infoProfile_sectionAccount_headerInfo"]: {
|
|
3234
|
+
full_name?: string | undefined | null,
|
|
3235
|
+
company?: string | undefined | null,
|
|
3236
|
+
email?: string | undefined | null
|
|
1700
3237
|
};
|
|
1701
|
-
["
|
|
1702
|
-
|
|
3238
|
+
["Shapeprofile_infoProfile_sectionAccount_header"]: {
|
|
3239
|
+
avatar?: ModelTypes["ImageField"] | undefined | null,
|
|
3240
|
+
info?: ModelTypes["Shapeprofile_infoProfile_sectionAccount_headerInfo"] | undefined | null
|
|
1703
3241
|
};
|
|
1704
|
-
["
|
|
3242
|
+
["Shapeprofile_infoProfile_sectionPlan_status"]: {
|
|
3243
|
+
plan?: string | undefined | null
|
|
3244
|
+
};
|
|
3245
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens"]: {
|
|
1705
3246
|
label?: string | undefined | null,
|
|
1706
|
-
|
|
3247
|
+
value?: string | undefined | null
|
|
1707
3248
|
};
|
|
1708
|
-
["
|
|
3249
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens"]: {
|
|
1709
3250
|
label?: string | undefined | null,
|
|
1710
|
-
|
|
3251
|
+
value?: string | undefined | null
|
|
1711
3252
|
};
|
|
1712
|
-
["
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
rootParams?: Array<ModelTypes["RootCMSParam"]> | undefined | null,
|
|
1716
|
-
versions?: Array<ModelTypes["VersionField"]> | undefined | null,
|
|
1717
|
-
links?: Array<ModelTypes["InternalLink"]> | undefined | null,
|
|
1718
|
-
listViews?: Array<ModelTypes["View"]> | undefined | null,
|
|
1719
|
-
listShapes?: Array<ModelTypes["Shape"]> | undefined | null,
|
|
1720
|
-
tailwind?: ModelTypes["TailwindConfiguration"] | undefined | null,
|
|
1721
|
-
listForms?: Array<ModelTypes["Form"]> | undefined | null,
|
|
1722
|
-
listPaginateddemo?: ModelTypes["demo__Connection"] | undefined | null,
|
|
1723
|
-
onedemoBySlug?: ModelTypes["demo"] | undefined | null,
|
|
1724
|
-
variantsdemoBySlug?: Array<ModelTypes["demo"]> | undefined | null,
|
|
1725
|
-
fieldSetdemo: string,
|
|
1726
|
-
modeldemo: ModelTypes["ModelNavigationCompiled"],
|
|
1727
|
-
previewFieldsdemo: ModelTypes["ModelNavigationCompiled"],
|
|
1728
|
-
listPaginatedpost?: ModelTypes["post__Connection"] | undefined | null,
|
|
1729
|
-
onepostBySlug?: ModelTypes["post"] | undefined | null,
|
|
1730
|
-
variantspostBySlug?: Array<ModelTypes["post"]> | undefined | null,
|
|
1731
|
-
fieldSetpost: string,
|
|
1732
|
-
modelpost: ModelTypes["ModelNavigationCompiled"],
|
|
1733
|
-
previewFieldspost: ModelTypes["ModelNavigationCompiled"],
|
|
1734
|
-
fieldSetShapetests: string,
|
|
1735
|
-
modelShapetests: ModelTypes["ModelNavigationCompiled"],
|
|
1736
|
-
previewFieldsShapetests: ModelTypes["ModelNavigationCompiled"],
|
|
1737
|
-
oneShapetests?: ModelTypes["Shapetests"] | undefined | null
|
|
3253
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests"]: {
|
|
3254
|
+
label?: string | undefined | null,
|
|
3255
|
+
value?: string | undefined | null
|
|
1738
3256
|
};
|
|
1739
|
-
["
|
|
1740
|
-
|
|
1741
|
-
["
|
|
1742
|
-
|
|
1743
|
-
pageInfo: ModelTypes["PageInfo"]
|
|
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
|
|
1744
3261
|
};
|
|
1745
|
-
["
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
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,
|
|
1749
3269
|
_id: string,
|
|
1750
3270
|
createdAt?: number | undefined | null,
|
|
1751
|
-
updatedAt?: number | undefined | null
|
|
1752
|
-
draft_version?: boolean | undefined | null,
|
|
1753
|
-
json_ld?: string | undefined | null
|
|
3271
|
+
updatedAt?: number | undefined | null
|
|
1754
3272
|
};
|
|
1755
|
-
["
|
|
1756
|
-
|
|
1757
|
-
|
|
3273
|
+
["ShapeusageMain"]: {
|
|
3274
|
+
title?: string | undefined | null,
|
|
3275
|
+
subtitle?: string | undefined | null,
|
|
3276
|
+
period?: string | undefined | null,
|
|
3277
|
+
tokens_consumed?: number | undefined | null
|
|
1758
3278
|
};
|
|
1759
|
-
["
|
|
1760
|
-
|
|
1761
|
-
title?: string | undefined | null,
|
|
1762
|
-
image?: ModelTypes["ImageField"] | undefined | null,
|
|
1763
|
-
content?: string | undefined | null,
|
|
1764
|
-
slug?: string | undefined | null,
|
|
3279
|
+
["Shapeusage"]: {
|
|
3280
|
+
main?: ModelTypes["ShapeusageMain"] | undefined | null,
|
|
1765
3281
|
_id: string,
|
|
1766
3282
|
createdAt?: number | undefined | null,
|
|
1767
|
-
updatedAt?: number | undefined | null,
|
|
1768
|
-
draft_version?: boolean | undefined | null,
|
|
1769
|
-
json_ld?: string | undefined | null
|
|
1770
|
-
};
|
|
1771
|
-
["Shapetests"]: {
|
|
1772
|
-
_id: string,
|
|
1773
|
-
createdAt?: number | undefined | null,
|
|
1774
3283
|
updatedAt?: number | undefined | null
|
|
1775
3284
|
};
|
|
1776
3285
|
["RootParamsInput"]: {
|
|
1777
|
-
_version?: string | undefined | null
|
|
3286
|
+
_version?: string | undefined | null,
|
|
3287
|
+
locale?: string | undefined | null
|
|
1778
3288
|
};
|
|
1779
3289
|
["RootParamsEnum"]:RootParamsEnum;
|
|
1780
|
-
["
|
|
1781
|
-
slug?: ModelTypes["Sort"] | undefined | null,
|
|
1782
|
-
createdAt?: ModelTypes["Sort"] | undefined | null,
|
|
1783
|
-
updatedAt?: ModelTypes["Sort"] | undefined | null
|
|
1784
|
-
};
|
|
1785
|
-
["postSortInput"]: {
|
|
3290
|
+
["docsSortInput"]: {
|
|
1786
3291
|
slug?: ModelTypes["Sort"] | undefined | null,
|
|
1787
3292
|
createdAt?: ModelTypes["Sort"] | undefined | null,
|
|
1788
3293
|
updatedAt?: ModelTypes["Sort"] | undefined | null
|
|
1789
3294
|
};
|
|
1790
|
-
["
|
|
1791
|
-
slug?: ModelTypes["FilterInputString"] | undefined | null
|
|
1792
|
-
};
|
|
1793
|
-
["postFilterInput"]: {
|
|
3295
|
+
["docsFilterInput"]: {
|
|
1794
3296
|
slug?: ModelTypes["FilterInputString"] | undefined | null
|
|
1795
3297
|
};
|
|
1796
3298
|
["schema"]: {
|
|
1797
|
-
query?: ModelTypes["Query"] | undefined | null
|
|
3299
|
+
query?: ModelTypes["Query"] | undefined | null,
|
|
3300
|
+
mutation?: ModelTypes["Mutation"] | undefined | null
|
|
1798
3301
|
};
|
|
1799
3302
|
["ID"]:any
|
|
1800
3303
|
}
|
|
@@ -1884,6 +3387,18 @@ export type GraphQLTypes = {
|
|
|
1884
3387
|
setOperator?: GraphQLTypes["ConditionSetOperator"] | undefined | null,
|
|
1885
3388
|
value?: string | undefined | null,
|
|
1886
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"]>
|
|
1887
3402
|
};
|
|
1888
3403
|
["Visual"]: {
|
|
1889
3404
|
__typename: "Visual",
|
|
@@ -1904,6 +3419,11 @@ export type GraphQLTypes = {
|
|
|
1904
3419
|
ne?: string | undefined | null,
|
|
1905
3420
|
contain?: string | undefined | null
|
|
1906
3421
|
};
|
|
3422
|
+
["Mutation"]: {
|
|
3423
|
+
__typename: "Mutation",
|
|
3424
|
+
heartbeat?: string | undefined | null
|
|
3425
|
+
};
|
|
3426
|
+
["RootParamsAdminType"]: "scalar" & { name: "RootParamsAdminType" };
|
|
1907
3427
|
["Shape"]: {
|
|
1908
3428
|
__typename: "Shape",
|
|
1909
3429
|
name: string,
|
|
@@ -1928,6 +3448,12 @@ export type GraphQLTypes = {
|
|
|
1928
3448
|
className: string,
|
|
1929
3449
|
textContent?: string | undefined | null,
|
|
1930
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
|
|
1931
3457
|
};
|
|
1932
3458
|
["FormField"]: {
|
|
1933
3459
|
__typename: "FormField",
|
|
@@ -1936,8 +3462,7 @@ export type GraphQLTypes = {
|
|
|
1936
3462
|
type: GraphQLTypes["FormFieldType"],
|
|
1937
3463
|
list?: boolean | undefined | null,
|
|
1938
3464
|
fields?: Array<GraphQLTypes["FormField"]> | undefined | null,
|
|
1939
|
-
visual?: GraphQLTypes["
|
|
1940
|
-
conditions?: GraphQLTypes["Condition"] | undefined | null,
|
|
3465
|
+
visual?: GraphQLTypes["FormFieldVisual"] | undefined | null,
|
|
1941
3466
|
placeholder?: string | undefined | null,
|
|
1942
3467
|
root?: boolean | undefined | null,
|
|
1943
3468
|
options?: Array<string> | undefined | null,
|
|
@@ -2007,11 +3532,30 @@ export type GraphQLTypes = {
|
|
|
2007
3532
|
__typename: "FormRadioTextField",
|
|
2008
3533
|
label?: string | undefined | null,
|
|
2009
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
|
|
2010
3543
|
};
|
|
2011
3544
|
["FormProductField"]: {
|
|
2012
3545
|
__typename: "FormProductField",
|
|
2013
3546
|
label?: string | undefined | null,
|
|
2014
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
|
|
2015
3559
|
};
|
|
2016
3560
|
/** This enum is defined externally and injected via federation */
|
|
2017
3561
|
["CMSType"]: CMSType;
|
|
@@ -2025,34 +3569,114 @@ export type GraphQLTypes = {
|
|
|
2025
3569
|
listShapes?: Array<GraphQLTypes["Shape"]> | undefined | null,
|
|
2026
3570
|
tailwind?: GraphQLTypes["TailwindConfiguration"] | undefined | null,
|
|
2027
3571
|
listForms?: Array<GraphQLTypes["Form"]> | undefined | null,
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
3572
|
+
listPaginateddocs?: GraphQLTypes["docs__Connection"] | undefined | null,
|
|
3573
|
+
onedocsBySlug?: GraphQLTypes["docs"] | undefined | null,
|
|
3574
|
+
variantsdocsBySlug?: Array<GraphQLTypes["docs"]> | undefined | null,
|
|
3575
|
+
fieldSetdocs: string,
|
|
3576
|
+
modeldocs: GraphQLTypes["ModelNavigationCompiled"],
|
|
3577
|
+
previewFieldsdocs: GraphQLTypes["ModelNavigationCompiled"],
|
|
3578
|
+
fieldSetShapedocs_content: string,
|
|
3579
|
+
modelShapedocs_content: GraphQLTypes["ModelNavigationCompiled"],
|
|
3580
|
+
previewFieldsShapedocs_content: GraphQLTypes["ModelNavigationCompiled"],
|
|
3581
|
+
oneShapedocs_content?: GraphQLTypes["Shapedocs_content"] | undefined | null,
|
|
3582
|
+
fieldSetShapedocs_nav: string,
|
|
3583
|
+
modelShapedocs_nav: GraphQLTypes["ModelNavigationCompiled"],
|
|
3584
|
+
previewFieldsShapedocs_nav: GraphQLTypes["ModelNavigationCompiled"],
|
|
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,
|
|
3590
|
+
fieldSetShapefoot: string,
|
|
3591
|
+
modelShapefoot: GraphQLTypes["ModelNavigationCompiled"],
|
|
3592
|
+
previewFieldsShapefoot: GraphQLTypes["ModelNavigationCompiled"],
|
|
3593
|
+
oneShapefoot?: GraphQLTypes["Shapefoot"] | undefined | null,
|
|
3594
|
+
fieldSetShapehero: string,
|
|
3595
|
+
modelShapehero: GraphQLTypes["ModelNavigationCompiled"],
|
|
3596
|
+
previewFieldsShapehero: GraphQLTypes["ModelNavigationCompiled"],
|
|
3597
|
+
oneShapehero?: GraphQLTypes["Shapehero"] | undefined | null,
|
|
3598
|
+
fieldSetShapeherox: string,
|
|
3599
|
+
modelShapeherox: GraphQLTypes["ModelNavigationCompiled"],
|
|
3600
|
+
previewFieldsShapeherox: GraphQLTypes["ModelNavigationCompiled"],
|
|
3601
|
+
oneShapeherox?: GraphQLTypes["Shapeherox"] | undefined | null,
|
|
3602
|
+
fieldSetShapelista_projektow: string,
|
|
3603
|
+
modelShapelista_projektow: GraphQLTypes["ModelNavigationCompiled"],
|
|
3604
|
+
previewFieldsShapelista_projektow: GraphQLTypes["ModelNavigationCompiled"],
|
|
3605
|
+
oneShapelista_projektow?: GraphQLTypes["Shapelista_projektow"] | undefined | null,
|
|
3606
|
+
fieldSetShapenav: string,
|
|
3607
|
+
modelShapenav: GraphQLTypes["ModelNavigationCompiled"],
|
|
3608
|
+
previewFieldsShapenav: GraphQLTypes["ModelNavigationCompiled"],
|
|
3609
|
+
oneShapenav?: GraphQLTypes["Shapenav"] | undefined | null,
|
|
3610
|
+
fieldSetShapenewshape: string,
|
|
3611
|
+
modelShapenewshape: GraphQLTypes["ModelNavigationCompiled"],
|
|
3612
|
+
previewFieldsShapenewshape: GraphQLTypes["ModelNavigationCompiled"],
|
|
3613
|
+
oneShapenewshape?: GraphQLTypes["Shapenewshape"] | undefined | null,
|
|
3614
|
+
fieldSetShapepricing_table: string,
|
|
3615
|
+
modelShapepricing_table: GraphQLTypes["ModelNavigationCompiled"],
|
|
3616
|
+
previewFieldsShapepricing_table: GraphQLTypes["ModelNavigationCompiled"],
|
|
3617
|
+
oneShapepricing_table?: GraphQLTypes["Shapepricing_table"] | undefined | null,
|
|
3618
|
+
fieldSetShapepricingv1: string,
|
|
3619
|
+
modelShapepricingv1: GraphQLTypes["ModelNavigationCompiled"],
|
|
3620
|
+
previewFieldsShapepricingv1: GraphQLTypes["ModelNavigationCompiled"],
|
|
3621
|
+
oneShapepricingv1?: GraphQLTypes["Shapepricingv1"] | undefined | null,
|
|
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,
|
|
3640
|
+
variantsViewhomepage?: Array<GraphQLTypes["Viewhomepage"]> | undefined | null,
|
|
3641
|
+
fieldSetViewhomepage: string,
|
|
3642
|
+
modelViewhomepage: GraphQLTypes["ModelNavigationCompiled"],
|
|
3643
|
+
previewFieldsViewhomepage: GraphQLTypes["ModelNavigationCompiled"],
|
|
3644
|
+
oneViewhomepage?: GraphQLTypes["Viewhomepage"] | undefined | null,
|
|
3645
|
+
variantsViewhowitworks?: Array<GraphQLTypes["Viewhowitworks"]> | undefined | null,
|
|
3646
|
+
fieldSetViewhowitworks: string,
|
|
3647
|
+
modelViewhowitworks: GraphQLTypes["ModelNavigationCompiled"],
|
|
3648
|
+
previewFieldsViewhowitworks: GraphQLTypes["ModelNavigationCompiled"],
|
|
3649
|
+
oneViewhowitworks?: GraphQLTypes["Viewhowitworks"] | 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
|
|
3655
|
+
};
|
|
3656
|
+
["RootParamsType"]: {
|
|
3657
|
+
__typename: "RootParamsType",
|
|
3658
|
+
_version?: string | undefined | null,
|
|
3659
|
+
locale?: string | undefined | null
|
|
2044
3660
|
};
|
|
2045
3661
|
["ModelEnum"]: ModelEnum;
|
|
3662
|
+
["ViewEnum"]: ViewEnum;
|
|
2046
3663
|
["ShapeEnum"]: ShapeEnum;
|
|
2047
|
-
["
|
|
2048
|
-
__typename: "
|
|
2049
|
-
items?: Array<GraphQLTypes["
|
|
3664
|
+
["docs__Connection"]: {
|
|
3665
|
+
__typename: "docs__Connection",
|
|
3666
|
+
items?: Array<GraphQLTypes["docs"]> | undefined | null,
|
|
2050
3667
|
pageInfo: GraphQLTypes["PageInfo"]
|
|
2051
3668
|
};
|
|
2052
|
-
["
|
|
2053
|
-
__typename: "
|
|
3669
|
+
["docs"]: {
|
|
3670
|
+
__typename: "docs",
|
|
2054
3671
|
_version?: GraphQLTypes["VersionField"] | undefined | null,
|
|
3672
|
+
title?: string | undefined | null,
|
|
3673
|
+
seotitle?: string | undefined | null,
|
|
3674
|
+
metadesc?: string | undefined | null,
|
|
3675
|
+
sortid?: number | undefined | null,
|
|
3676
|
+
main_category?: string | undefined | null,
|
|
2055
3677
|
content?: string | undefined | null,
|
|
3678
|
+
video?: GraphQLTypes["VideoField"] | undefined | null,
|
|
3679
|
+
locale?: string | undefined | null,
|
|
2056
3680
|
slug?: string | undefined | null,
|
|
2057
3681
|
_id: string,
|
|
2058
3682
|
createdAt?: number | undefined | null,
|
|
@@ -2060,17 +3684,82 @@ export type GraphQLTypes = {
|
|
|
2060
3684
|
draft_version?: boolean | undefined | null,
|
|
2061
3685
|
json_ld?: string | undefined | null
|
|
2062
3686
|
};
|
|
2063
|
-
["
|
|
2064
|
-
__typename: "
|
|
2065
|
-
|
|
2066
|
-
|
|
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
|
|
3720
|
+
};
|
|
3721
|
+
["Viewhomepage"]: {
|
|
3722
|
+
__typename: "Viewhomepage",
|
|
3723
|
+
_version?: GraphQLTypes["VersionField"] | undefined | null,
|
|
3724
|
+
nav?: GraphQLTypes["Shapenav"] | undefined | null,
|
|
3725
|
+
main?: GraphQLTypes["Shapehero"] | undefined | null,
|
|
3726
|
+
hero?: GraphQLTypes["Shapeherox"] | undefined | null,
|
|
3727
|
+
pricing?: GraphQLTypes["Shapepricingv1"] | undefined | null,
|
|
3728
|
+
footer?: GraphQLTypes["Shapefoot"] | undefined | null,
|
|
3729
|
+
locale?: string | undefined | null,
|
|
3730
|
+
slug?: string | undefined | null,
|
|
3731
|
+
_id: string,
|
|
3732
|
+
createdAt?: number | undefined | null,
|
|
3733
|
+
updatedAt?: number | undefined | null,
|
|
3734
|
+
draft_version?: boolean | undefined | null,
|
|
3735
|
+
json_ld?: string | undefined | null
|
|
3736
|
+
};
|
|
3737
|
+
["ViewhowitworksFeature_control"]: {
|
|
3738
|
+
__typename: "ViewhowitworksFeature_control",
|
|
3739
|
+
title?: string | undefined | null,
|
|
3740
|
+
description?: string | undefined | null,
|
|
3741
|
+
image?: GraphQLTypes["ImageField"] | undefined | null
|
|
2067
3742
|
};
|
|
2068
|
-
["
|
|
2069
|
-
__typename: "
|
|
3743
|
+
["Viewhowitworks"]: {
|
|
3744
|
+
__typename: "Viewhowitworks",
|
|
2070
3745
|
_version?: GraphQLTypes["VersionField"] | undefined | null,
|
|
2071
3746
|
title?: string | undefined | null,
|
|
2072
|
-
|
|
2073
|
-
|
|
3747
|
+
feature_control?: GraphQLTypes["ViewhowitworksFeature_control"] | undefined | null,
|
|
3748
|
+
locale?: string | undefined | null,
|
|
3749
|
+
slug?: string | undefined | null,
|
|
3750
|
+
_id: string,
|
|
3751
|
+
createdAt?: number | undefined | null,
|
|
3752
|
+
updatedAt?: number | undefined | null,
|
|
3753
|
+
draft_version?: boolean | undefined | null,
|
|
3754
|
+
json_ld?: string | undefined | null
|
|
3755
|
+
};
|
|
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,
|
|
2074
3763
|
slug?: string | undefined | null,
|
|
2075
3764
|
_id: string,
|
|
2076
3765
|
createdAt?: number | undefined | null,
|
|
@@ -2078,30 +3767,368 @@ export type GraphQLTypes = {
|
|
|
2078
3767
|
draft_version?: boolean | undefined | null,
|
|
2079
3768
|
json_ld?: string | undefined | null
|
|
2080
3769
|
};
|
|
2081
|
-
["
|
|
2082
|
-
__typename: "
|
|
3770
|
+
["Shapedocs_contentDocumentation_pageContent_containerDoc_content"]: {
|
|
3771
|
+
__typename: "Shapedocs_contentDocumentation_pageContent_containerDoc_content",
|
|
3772
|
+
content?: string | undefined | null
|
|
3773
|
+
};
|
|
3774
|
+
["Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container"]: {
|
|
3775
|
+
__typename: "Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container",
|
|
3776
|
+
scrollspy_title?: string | undefined | null,
|
|
3777
|
+
scrollspy_list?: string | undefined | null
|
|
3778
|
+
};
|
|
3779
|
+
["Shapedocs_contentDocumentation_pageContent_containerScrollspy"]: {
|
|
3780
|
+
__typename: "Shapedocs_contentDocumentation_pageContent_containerScrollspy",
|
|
3781
|
+
scrollspy_container?: GraphQLTypes["Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container"] | undefined | null
|
|
3782
|
+
};
|
|
3783
|
+
["Shapedocs_contentDocumentation_pageContent_container"]: {
|
|
3784
|
+
__typename: "Shapedocs_contentDocumentation_pageContent_container",
|
|
3785
|
+
doc_content?: GraphQLTypes["Shapedocs_contentDocumentation_pageContent_containerDoc_content"] | undefined | null,
|
|
3786
|
+
scrollspy?: GraphQLTypes["Shapedocs_contentDocumentation_pageContent_containerScrollspy"] | undefined | null
|
|
3787
|
+
};
|
|
3788
|
+
["Shapedocs_contentDocumentation_page"]: {
|
|
3789
|
+
__typename: "Shapedocs_contentDocumentation_page",
|
|
3790
|
+
content_container?: GraphQLTypes["Shapedocs_contentDocumentation_pageContent_container"] | undefined | null
|
|
3791
|
+
};
|
|
3792
|
+
["Shapedocs_content"]: {
|
|
3793
|
+
__typename: "Shapedocs_content",
|
|
3794
|
+
documentation_page?: GraphQLTypes["Shapedocs_contentDocumentation_page"] | undefined | null,
|
|
3795
|
+
_id: string,
|
|
3796
|
+
createdAt?: number | undefined | null,
|
|
3797
|
+
updatedAt?: number | undefined | null
|
|
3798
|
+
};
|
|
3799
|
+
["Shapedocs_navMainListChildrenCategory"]: {
|
|
3800
|
+
__typename: "Shapedocs_navMainListChildrenCategory",
|
|
3801
|
+
name?: string | undefined | null,
|
|
3802
|
+
link?: string | undefined | null
|
|
3803
|
+
};
|
|
3804
|
+
["Shapedocs_navMainListChildren"]: {
|
|
3805
|
+
__typename: "Shapedocs_navMainListChildren",
|
|
3806
|
+
category?: Array<GraphQLTypes["Shapedocs_navMainListChildrenCategory"] | undefined | null> | undefined | null
|
|
3807
|
+
};
|
|
3808
|
+
["Shapedocs_navMainList"]: {
|
|
3809
|
+
__typename: "Shapedocs_navMainList",
|
|
3810
|
+
title?: string | undefined | null,
|
|
3811
|
+
children?: GraphQLTypes["Shapedocs_navMainListChildren"] | undefined | null
|
|
3812
|
+
};
|
|
3813
|
+
["Shapedocs_navMain"]: {
|
|
3814
|
+
__typename: "Shapedocs_navMain",
|
|
3815
|
+
list?: Array<GraphQLTypes["Shapedocs_navMainList"] | undefined | null> | undefined | null
|
|
3816
|
+
};
|
|
3817
|
+
["Shapedocs_nav"]: {
|
|
3818
|
+
__typename: "Shapedocs_nav",
|
|
3819
|
+
main?: GraphQLTypes["Shapedocs_navMain"] | undefined | null,
|
|
3820
|
+
_id: string,
|
|
3821
|
+
createdAt?: number | undefined | null,
|
|
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
|
|
3836
|
+
};
|
|
3837
|
+
["ShapefootFooterFooter_containerFooter_links"]: {
|
|
3838
|
+
__typename: "ShapefootFooterFooter_containerFooter_links",
|
|
3839
|
+
privacy_policy?: string | undefined | null,
|
|
3840
|
+
terms_of_service?: string | undefined | null,
|
|
3841
|
+
contact_us?: string | undefined | null
|
|
3842
|
+
};
|
|
3843
|
+
["ShapefootFooterFooter_container"]: {
|
|
3844
|
+
__typename: "ShapefootFooterFooter_container",
|
|
3845
|
+
footer_logo?: string | undefined | null,
|
|
3846
|
+
footer_links?: GraphQLTypes["ShapefootFooterFooter_containerFooter_links"] | undefined | null,
|
|
3847
|
+
footer_copy?: string | undefined | null
|
|
3848
|
+
};
|
|
3849
|
+
["ShapefootFooter"]: {
|
|
3850
|
+
__typename: "ShapefootFooter",
|
|
3851
|
+
footer_container?: GraphQLTypes["ShapefootFooterFooter_container"] | undefined | null
|
|
3852
|
+
};
|
|
3853
|
+
["Shapefoot"]: {
|
|
3854
|
+
__typename: "Shapefoot",
|
|
3855
|
+
footer?: GraphQLTypes["ShapefootFooter"] | undefined | null,
|
|
3856
|
+
_id: string,
|
|
3857
|
+
createdAt?: number | undefined | null,
|
|
3858
|
+
updatedAt?: number | undefined | null
|
|
3859
|
+
};
|
|
3860
|
+
["ShapeheroHero_componentSlogan_parent"]: {
|
|
3861
|
+
__typename: "ShapeheroHero_componentSlogan_parent",
|
|
3862
|
+
slogan?: string | undefined | null
|
|
3863
|
+
};
|
|
3864
|
+
["ShapeheroHero_component"]: {
|
|
3865
|
+
__typename: "ShapeheroHero_component",
|
|
3866
|
+
logoplace?: string | undefined | null,
|
|
3867
|
+
logo?: string | undefined | null,
|
|
3868
|
+
slogan_parent?: GraphQLTypes["ShapeheroHero_componentSlogan_parent"] | undefined | null,
|
|
3869
|
+
subslogan?: string | undefined | null
|
|
3870
|
+
};
|
|
3871
|
+
["Shapehero"]: {
|
|
3872
|
+
__typename: "Shapehero",
|
|
3873
|
+
hero_component?: GraphQLTypes["ShapeheroHero_component"] | undefined | null,
|
|
3874
|
+
_id: string,
|
|
3875
|
+
createdAt?: number | undefined | null,
|
|
3876
|
+
updatedAt?: number | undefined | null
|
|
3877
|
+
};
|
|
3878
|
+
["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"]: {
|
|
3879
|
+
__typename: "ShapeheroxHero_sectionHero_containerText_wrapperFeatures",
|
|
3880
|
+
feature?: Array<string | undefined | null> | undefined | null
|
|
3881
|
+
};
|
|
3882
|
+
["ShapeheroxHero_sectionHero_containerText_wrapper"]: {
|
|
3883
|
+
__typename: "ShapeheroxHero_sectionHero_containerText_wrapper",
|
|
3884
|
+
title?: string | undefined | null,
|
|
3885
|
+
description?: string | undefined | null,
|
|
3886
|
+
features?: GraphQLTypes["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"] | undefined | null
|
|
3887
|
+
};
|
|
3888
|
+
["ShapeheroxHero_sectionHero_containerImage_wrapper"]: {
|
|
3889
|
+
__typename: "ShapeheroxHero_sectionHero_containerImage_wrapper",
|
|
3890
|
+
hero_image?: GraphQLTypes["ImageField"] | undefined | null
|
|
3891
|
+
};
|
|
3892
|
+
["ShapeheroxHero_sectionHero_containerPresentation"]: {
|
|
3893
|
+
__typename: "ShapeheroxHero_sectionHero_containerPresentation",
|
|
3894
|
+
video?: GraphQLTypes["VideoField"] | undefined | null
|
|
3895
|
+
};
|
|
3896
|
+
["ShapeheroxHero_sectionHero_container"]: {
|
|
3897
|
+
__typename: "ShapeheroxHero_sectionHero_container",
|
|
3898
|
+
text_wrapper?: GraphQLTypes["ShapeheroxHero_sectionHero_containerText_wrapper"] | undefined | null,
|
|
3899
|
+
image_wrapper?: GraphQLTypes["ShapeheroxHero_sectionHero_containerImage_wrapper"] | undefined | null,
|
|
3900
|
+
presentation?: GraphQLTypes["ShapeheroxHero_sectionHero_containerPresentation"] | undefined | null
|
|
3901
|
+
};
|
|
3902
|
+
["ShapeheroxHero_section"]: {
|
|
3903
|
+
__typename: "ShapeheroxHero_section",
|
|
3904
|
+
hero_container?: GraphQLTypes["ShapeheroxHero_sectionHero_container"] | undefined | null
|
|
3905
|
+
};
|
|
3906
|
+
["Shapeherox"]: {
|
|
3907
|
+
__typename: "Shapeherox",
|
|
3908
|
+
hero_section?: GraphQLTypes["ShapeheroxHero_section"] | undefined | null,
|
|
3909
|
+
_id: string,
|
|
3910
|
+
createdAt?: number | undefined | null,
|
|
3911
|
+
updatedAt?: number | undefined | null
|
|
3912
|
+
};
|
|
3913
|
+
["Shapelista_projektowListProjectsInstance"]: {
|
|
3914
|
+
__typename: "Shapelista_projektowListProjectsInstance",
|
|
3915
|
+
title?: string | undefined | null,
|
|
3916
|
+
link?: string | undefined | null,
|
|
3917
|
+
remove_button?: string | undefined | null
|
|
3918
|
+
};
|
|
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
|
|
3928
|
+
};
|
|
3929
|
+
["Shapelista_projektow"]: {
|
|
3930
|
+
__typename: "Shapelista_projektow",
|
|
3931
|
+
list?: GraphQLTypes["Shapelista_projektowList"] | undefined | null,
|
|
3932
|
+
_id: string,
|
|
3933
|
+
createdAt?: number | undefined | null,
|
|
3934
|
+
updatedAt?: number | undefined | null
|
|
3935
|
+
};
|
|
3936
|
+
["ShapenavNavigationNavigation_linksLink"]: {
|
|
3937
|
+
__typename: "ShapenavNavigationNavigation_linksLink",
|
|
3938
|
+
display?: string | undefined | null,
|
|
3939
|
+
href?: string | undefined | null
|
|
3940
|
+
};
|
|
3941
|
+
["ShapenavNavigationNavigation_links"]: {
|
|
3942
|
+
__typename: "ShapenavNavigationNavigation_links",
|
|
3943
|
+
link?: Array<GraphQLTypes["ShapenavNavigationNavigation_linksLink"] | undefined | null> | undefined | null
|
|
3944
|
+
};
|
|
3945
|
+
["ShapenavNavigation"]: {
|
|
3946
|
+
__typename: "ShapenavNavigation",
|
|
3947
|
+
logo?: string | undefined | null,
|
|
3948
|
+
navigation_links?: GraphQLTypes["ShapenavNavigationNavigation_links"] | undefined | null
|
|
3949
|
+
};
|
|
3950
|
+
["Shapenav"]: {
|
|
3951
|
+
__typename: "Shapenav",
|
|
3952
|
+
navigation?: GraphQLTypes["ShapenavNavigation"] | undefined | null,
|
|
3953
|
+
_id: string,
|
|
3954
|
+
createdAt?: number | undefined | null,
|
|
3955
|
+
updatedAt?: number | undefined | null
|
|
3956
|
+
};
|
|
3957
|
+
["ShapenewshapeBackgroundContent"]: {
|
|
3958
|
+
__typename: "ShapenewshapeBackgroundContent",
|
|
3959
|
+
badge?: string | undefined | null,
|
|
3960
|
+
headline?: string | undefined | null,
|
|
3961
|
+
subheadline?: string | undefined | null,
|
|
3962
|
+
cta_label?: string | undefined | null,
|
|
3963
|
+
cta_href?: string | undefined | null
|
|
3964
|
+
};
|
|
3965
|
+
["ShapenewshapeBackground"]: {
|
|
3966
|
+
__typename: "ShapenewshapeBackground",
|
|
3967
|
+
overlay_gradient?: boolean | undefined | null,
|
|
3968
|
+
content?: GraphQLTypes["ShapenewshapeBackgroundContent"] | undefined | null,
|
|
3969
|
+
hero_image?: GraphQLTypes["ImageField"] | undefined | null
|
|
3970
|
+
};
|
|
3971
|
+
["Shapenewshape"]: {
|
|
3972
|
+
__typename: "Shapenewshape",
|
|
3973
|
+
background?: GraphQLTypes["ShapenewshapeBackground"] | undefined | null,
|
|
3974
|
+
_id: string,
|
|
3975
|
+
createdAt?: number | undefined | null,
|
|
3976
|
+
updatedAt?: number | undefined | null
|
|
3977
|
+
};
|
|
3978
|
+
["Shapepricing_tablePricing_sectionHeader_wrapper"]: {
|
|
3979
|
+
__typename: "Shapepricing_tablePricing_sectionHeader_wrapper",
|
|
3980
|
+
title?: string | undefined | null,
|
|
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,
|
|
4008
|
+
_id: string,
|
|
4009
|
+
createdAt?: number | undefined | null,
|
|
4010
|
+
updatedAt?: number | undefined | null
|
|
4011
|
+
};
|
|
4012
|
+
["Shapepricingv1Pricing_sectionHeader_wrapper"]: {
|
|
4013
|
+
__typename: "Shapepricingv1Pricing_sectionHeader_wrapper",
|
|
4014
|
+
title?: string | undefined | null,
|
|
4015
|
+
description?: string | undefined | null
|
|
4016
|
+
};
|
|
4017
|
+
["Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list"]: {
|
|
4018
|
+
__typename: "Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list",
|
|
4019
|
+
feature?: Array<string | undefined | null> | undefined | null
|
|
4020
|
+
};
|
|
4021
|
+
["Shapepricingv1Pricing_sectionPlans_gridFree_plan"]: {
|
|
4022
|
+
__typename: "Shapepricingv1Pricing_sectionPlans_gridFree_plan",
|
|
4023
|
+
plan_name?: string | undefined | null,
|
|
4024
|
+
price?: string | undefined | null,
|
|
4025
|
+
plan_description?: string | undefined | null,
|
|
4026
|
+
feature_list?: GraphQLTypes["Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list"] | undefined | null,
|
|
4027
|
+
cta?: string | undefined | null
|
|
4028
|
+
};
|
|
4029
|
+
["Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list"]: {
|
|
4030
|
+
__typename: "Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list",
|
|
4031
|
+
feature?: Array<string | undefined | null> | undefined | null
|
|
4032
|
+
};
|
|
4033
|
+
["Shapepricingv1Pricing_sectionPlans_gridPaid_plan"]: {
|
|
4034
|
+
__typename: "Shapepricingv1Pricing_sectionPlans_gridPaid_plan",
|
|
4035
|
+
plan_name?: string | undefined | null,
|
|
4036
|
+
price?: string | undefined | null,
|
|
4037
|
+
plan_description?: string | undefined | null,
|
|
4038
|
+
feature_list?: GraphQLTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list"] | undefined | null,
|
|
4039
|
+
cta?: string | undefined | null
|
|
4040
|
+
};
|
|
4041
|
+
["Shapepricingv1Pricing_sectionPlans_grid"]: {
|
|
4042
|
+
__typename: "Shapepricingv1Pricing_sectionPlans_grid",
|
|
4043
|
+
free_plan?: GraphQLTypes["Shapepricingv1Pricing_sectionPlans_gridFree_plan"] | undefined | null,
|
|
4044
|
+
paid_plan?: GraphQLTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_plan"] | undefined | null
|
|
4045
|
+
};
|
|
4046
|
+
["Shapepricingv1Pricing_section"]: {
|
|
4047
|
+
__typename: "Shapepricingv1Pricing_section",
|
|
4048
|
+
header_wrapper?: GraphQLTypes["Shapepricingv1Pricing_sectionHeader_wrapper"] | undefined | null,
|
|
4049
|
+
plans_grid?: GraphQLTypes["Shapepricingv1Pricing_sectionPlans_grid"] | undefined | null
|
|
4050
|
+
};
|
|
4051
|
+
["Shapepricingv1"]: {
|
|
4052
|
+
__typename: "Shapepricingv1",
|
|
4053
|
+
pricing_section?: GraphQLTypes["Shapepricingv1Pricing_section"] | undefined | null,
|
|
4054
|
+
_id: string,
|
|
4055
|
+
createdAt?: number | undefined | null,
|
|
4056
|
+
updatedAt?: number | undefined | null
|
|
4057
|
+
};
|
|
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
|
|
4063
|
+
};
|
|
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,
|
|
4103
|
+
_id: string,
|
|
4104
|
+
createdAt?: number | undefined | null,
|
|
4105
|
+
updatedAt?: number | undefined | null
|
|
4106
|
+
};
|
|
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
|
|
4113
|
+
};
|
|
4114
|
+
["Shapeusage"]: {
|
|
4115
|
+
__typename: "Shapeusage",
|
|
4116
|
+
main?: GraphQLTypes["ShapeusageMain"] | undefined | null,
|
|
2083
4117
|
_id: string,
|
|
2084
4118
|
createdAt?: number | undefined | null,
|
|
2085
4119
|
updatedAt?: number | undefined | null
|
|
2086
4120
|
};
|
|
2087
4121
|
["RootParamsInput"]: {
|
|
2088
|
-
_version?: string | undefined | null
|
|
4122
|
+
_version?: string | undefined | null,
|
|
4123
|
+
locale?: string | undefined | null
|
|
2089
4124
|
};
|
|
2090
4125
|
["RootParamsEnum"]: RootParamsEnum;
|
|
2091
|
-
["
|
|
2092
|
-
slug?: GraphQLTypes["Sort"] | undefined | null,
|
|
2093
|
-
createdAt?: GraphQLTypes["Sort"] | undefined | null,
|
|
2094
|
-
updatedAt?: GraphQLTypes["Sort"] | undefined | null
|
|
2095
|
-
};
|
|
2096
|
-
["postSortInput"]: {
|
|
4126
|
+
["docsSortInput"]: {
|
|
2097
4127
|
slug?: GraphQLTypes["Sort"] | undefined | null,
|
|
2098
4128
|
createdAt?: GraphQLTypes["Sort"] | undefined | null,
|
|
2099
4129
|
updatedAt?: GraphQLTypes["Sort"] | undefined | null
|
|
2100
4130
|
};
|
|
2101
|
-
["
|
|
2102
|
-
slug?: GraphQLTypes["FilterInputString"] | undefined | null
|
|
2103
|
-
};
|
|
2104
|
-
["postFilterInput"]: {
|
|
4131
|
+
["docsFilterInput"]: {
|
|
2105
4132
|
slug?: GraphQLTypes["FilterInputString"] | undefined | null
|
|
2106
4133
|
};
|
|
2107
4134
|
["ID"]: "scalar" & { name: "ID" }
|
|
@@ -2128,6 +4155,12 @@ export enum ConditionType {
|
|
|
2128
4155
|
SET = "SET",
|
|
2129
4156
|
PATH = "PATH"
|
|
2130
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
|
+
}
|
|
2131
4164
|
export enum FormFieldType {
|
|
2132
4165
|
STRING = "STRING",
|
|
2133
4166
|
TEXT = "TEXT",
|
|
@@ -2141,8 +4174,11 @@ export enum FormFieldType {
|
|
|
2141
4174
|
ARRAY_STEP = "ARRAY_STEP",
|
|
2142
4175
|
PORTAL = "PORTAL",
|
|
2143
4176
|
ROUTE = "ROUTE",
|
|
4177
|
+
BUTTON = "BUTTON",
|
|
2144
4178
|
SUBMIT = "SUBMIT",
|
|
2145
|
-
NUMBER = "NUMBER"
|
|
4179
|
+
NUMBER = "NUMBER",
|
|
4180
|
+
VARIABLE = "VARIABLE",
|
|
4181
|
+
DISPLAY = "DISPLAY"
|
|
2146
4182
|
}
|
|
2147
4183
|
/** This enum is defined externally and injected via federation */
|
|
2148
4184
|
export enum CMSType {
|
|
@@ -2164,14 +4200,33 @@ export enum CMSType {
|
|
|
2164
4200
|
OBJECT_TABS = "OBJECT_TABS"
|
|
2165
4201
|
}
|
|
2166
4202
|
export enum ModelEnum {
|
|
2167
|
-
|
|
2168
|
-
|
|
4203
|
+
docs = "docs"
|
|
4204
|
+
}
|
|
4205
|
+
export enum ViewEnum {
|
|
4206
|
+
account = "account",
|
|
4207
|
+
features = "features",
|
|
4208
|
+
homepage = "homepage",
|
|
4209
|
+
howitworks = "howitworks",
|
|
4210
|
+
pricing = "pricing"
|
|
2169
4211
|
}
|
|
2170
4212
|
export enum ShapeEnum {
|
|
2171
|
-
|
|
4213
|
+
docs_content = "docs_content",
|
|
4214
|
+
docs_nav = "docs_nav",
|
|
4215
|
+
featurepresentation = "featurepresentation",
|
|
4216
|
+
foot = "foot",
|
|
4217
|
+
hero = "hero",
|
|
4218
|
+
herox = "herox",
|
|
4219
|
+
lista_projektow = "lista_projektow",
|
|
4220
|
+
nav = "nav",
|
|
4221
|
+
newshape = "newshape",
|
|
4222
|
+
pricing_table = "pricing_table",
|
|
4223
|
+
pricingv1 = "pricingv1",
|
|
4224
|
+
profile_info = "profile_info",
|
|
4225
|
+
usage = "usage"
|
|
2172
4226
|
}
|
|
2173
4227
|
export enum RootParamsEnum {
|
|
2174
|
-
_version = "_version"
|
|
4228
|
+
_version = "_version",
|
|
4229
|
+
locale = "locale"
|
|
2175
4230
|
}
|
|
2176
4231
|
|
|
2177
4232
|
type ZEUS_VARIABLES = {
|
|
@@ -2185,17 +4240,18 @@ type ZEUS_VARIABLES = {
|
|
|
2185
4240
|
["ConditionSetOperator"]: ValueTypes["ConditionSetOperator"];
|
|
2186
4241
|
["ConditionOperator"]: ValueTypes["ConditionOperator"];
|
|
2187
4242
|
["ConditionType"]: ValueTypes["ConditionType"];
|
|
4243
|
+
["ActionType"]: ValueTypes["ActionType"];
|
|
2188
4244
|
["PageInput"]: ValueTypes["PageInput"];
|
|
2189
4245
|
["FilterInputString"]: ValueTypes["FilterInputString"];
|
|
4246
|
+
["RootParamsAdminType"]: ValueTypes["RootParamsAdminType"];
|
|
2190
4247
|
["FormFieldType"]: ValueTypes["FormFieldType"];
|
|
2191
4248
|
["CMSType"]: ValueTypes["CMSType"];
|
|
2192
4249
|
["ModelEnum"]: ValueTypes["ModelEnum"];
|
|
4250
|
+
["ViewEnum"]: ValueTypes["ViewEnum"];
|
|
2193
4251
|
["ShapeEnum"]: ValueTypes["ShapeEnum"];
|
|
2194
4252
|
["RootParamsInput"]: ValueTypes["RootParamsInput"];
|
|
2195
4253
|
["RootParamsEnum"]: ValueTypes["RootParamsEnum"];
|
|
2196
|
-
["
|
|
2197
|
-
["
|
|
2198
|
-
["demoFilterInput"]: ValueTypes["demoFilterInput"];
|
|
2199
|
-
["postFilterInput"]: ValueTypes["postFilterInput"];
|
|
4254
|
+
["docsSortInput"]: ValueTypes["docsSortInput"];
|
|
4255
|
+
["docsFilterInput"]: ValueTypes["docsFilterInput"];
|
|
2200
4256
|
["ID"]: ValueTypes["ID"];
|
|
2201
4257
|
}
|