@01.software/sdk 0.2.9-dev.260306.4e16dd4 → 0.2.9-dev.260310.cf511cb
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/{auth-D_6MQo4x.d.ts → auth-CVVo5UT5.d.ts} +13 -2
- package/dist/{auth-Hs3cAUfV.d.cts → auth-CqgrT1qd.d.cts} +13 -2
- package/dist/auth.cjs.map +1 -1
- package/dist/auth.d.cts +2 -2
- package/dist/auth.d.ts +2 -2
- package/dist/auth.js.map +1 -1
- package/dist/components.d.cts +1 -1
- package/dist/components.d.ts +1 -1
- package/dist/flow.cjs +319 -61
- package/dist/flow.cjs.map +1 -1
- package/dist/flow.d.cts +88 -44
- package/dist/flow.d.ts +88 -44
- package/dist/flow.js +316 -57
- package/dist/flow.js.map +1 -1
- package/dist/index.cjs +248 -51
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +229 -44
- package/dist/index.d.ts +229 -44
- package/dist/index.js +248 -51
- package/dist/index.js.map +1 -1
- package/dist/{payload-types-p9NaGmQA.d.cts → payload-types-Cq93wqIe.d.cts} +2612 -896
- package/dist/{payload-types-p9NaGmQA.d.ts → payload-types-Cq93wqIe.d.ts} +2612 -896
- package/dist/{webhook-B9foVPGW.d.cts → webhook-C_7s0K66.d.ts} +2 -2
- package/dist/{webhook-CjgnfIo6.d.ts → webhook-NRdVwXN7.d.cts} +2 -2
- package/dist/webhook.cjs +1 -1
- package/dist/webhook.cjs.map +1 -1
- package/dist/webhook.d.cts +2 -2
- package/dist/webhook.d.ts +2 -2
- package/dist/webhook.js +1 -1
- package/dist/webhook.js.map +1 -1
- package/package.json +1 -2
|
@@ -22,6 +22,7 @@ interface Config {
|
|
|
22
22
|
};
|
|
23
23
|
collections: {
|
|
24
24
|
users: User;
|
|
25
|
+
'field-configs': FieldConfig;
|
|
25
26
|
media: Media;
|
|
26
27
|
audiences: Audience;
|
|
27
28
|
'email-logs': EmailLog;
|
|
@@ -44,12 +45,14 @@ interface Config {
|
|
|
44
45
|
orders: Order;
|
|
45
46
|
'order-products': OrderProduct;
|
|
46
47
|
transactions: Transaction;
|
|
48
|
+
'order-status-logs': OrderStatusLog;
|
|
47
49
|
fulfillments: Fulfillment;
|
|
48
50
|
'fulfillment-items': FulfillmentItem;
|
|
49
51
|
returns: Return;
|
|
50
52
|
'return-products': ReturnProduct;
|
|
51
53
|
exchanges: Exchange;
|
|
52
54
|
'exchange-products': ExchangeProduct;
|
|
55
|
+
'shipping-policies': ShippingPolicy;
|
|
53
56
|
customers: Customer;
|
|
54
57
|
'customer-addresses': CustomerAddress;
|
|
55
58
|
'customer-groups': CustomerGroup;
|
|
@@ -57,7 +60,6 @@ interface Config {
|
|
|
57
60
|
carts: Cart;
|
|
58
61
|
'cart-items': CartItem;
|
|
59
62
|
discounts: Discount;
|
|
60
|
-
'shipping-policies': ShippingPolicy;
|
|
61
63
|
posts: Post;
|
|
62
64
|
'post-authors': PostAuthor;
|
|
63
65
|
'post-categories': PostCategory;
|
|
@@ -68,10 +70,24 @@ interface Config {
|
|
|
68
70
|
'document-types': DocumentType;
|
|
69
71
|
'document-images': DocumentImage;
|
|
70
72
|
playlists: Playlist;
|
|
73
|
+
'playlist-categories': PlaylistCategory;
|
|
71
74
|
musics: Music;
|
|
72
75
|
'playlist-images': PlaylistImage;
|
|
76
|
+
galleries: Gallery;
|
|
77
|
+
'gallery-images': GalleryImage;
|
|
78
|
+
'gallery-categories': GalleryCategory;
|
|
79
|
+
'gallery-tags': GalleryTag;
|
|
73
80
|
flows: Flow;
|
|
81
|
+
'flow-node-types': FlowNodeType;
|
|
82
|
+
'flow-edge-types': FlowEdgeType;
|
|
74
83
|
'flow-images': FlowImage;
|
|
84
|
+
'flow-tags': FlowTag;
|
|
85
|
+
videos: Video;
|
|
86
|
+
'video-categories': VideoCategory;
|
|
87
|
+
'video-tags': VideoTag;
|
|
88
|
+
'video-images': VideoImage;
|
|
89
|
+
'live-streams': LiveStream;
|
|
90
|
+
'live-stream-images': LiveStreamImage;
|
|
75
91
|
forms: Form;
|
|
76
92
|
'form-submissions': FormSubmission;
|
|
77
93
|
'payload-kv': PayloadKv;
|
|
@@ -120,9 +136,13 @@ interface Config {
|
|
|
120
136
|
playlists: {
|
|
121
137
|
musics: 'musics';
|
|
122
138
|
};
|
|
139
|
+
galleries: {
|
|
140
|
+
images: 'gallery-images';
|
|
141
|
+
};
|
|
123
142
|
};
|
|
124
143
|
collectionsSelect: {
|
|
125
144
|
users: UsersSelect<false> | UsersSelect<true>;
|
|
145
|
+
'field-configs': FieldConfigsSelect<false> | FieldConfigsSelect<true>;
|
|
126
146
|
media: MediaSelect<false> | MediaSelect<true>;
|
|
127
147
|
audiences: AudiencesSelect<false> | AudiencesSelect<true>;
|
|
128
148
|
'email-logs': EmailLogsSelect<false> | EmailLogsSelect<true>;
|
|
@@ -145,12 +165,14 @@ interface Config {
|
|
|
145
165
|
orders: OrdersSelect<false> | OrdersSelect<true>;
|
|
146
166
|
'order-products': OrderProductsSelect<false> | OrderProductsSelect<true>;
|
|
147
167
|
transactions: TransactionsSelect<false> | TransactionsSelect<true>;
|
|
168
|
+
'order-status-logs': OrderStatusLogsSelect<false> | OrderStatusLogsSelect<true>;
|
|
148
169
|
fulfillments: FulfillmentsSelect<false> | FulfillmentsSelect<true>;
|
|
149
170
|
'fulfillment-items': FulfillmentItemsSelect<false> | FulfillmentItemsSelect<true>;
|
|
150
171
|
returns: ReturnsSelect<false> | ReturnsSelect<true>;
|
|
151
172
|
'return-products': ReturnProductsSelect<false> | ReturnProductsSelect<true>;
|
|
152
173
|
exchanges: ExchangesSelect<false> | ExchangesSelect<true>;
|
|
153
174
|
'exchange-products': ExchangeProductsSelect<false> | ExchangeProductsSelect<true>;
|
|
175
|
+
'shipping-policies': ShippingPoliciesSelect<false> | ShippingPoliciesSelect<true>;
|
|
154
176
|
customers: CustomersSelect<false> | CustomersSelect<true>;
|
|
155
177
|
'customer-addresses': CustomerAddressesSelect<false> | CustomerAddressesSelect<true>;
|
|
156
178
|
'customer-groups': CustomerGroupsSelect<false> | CustomerGroupsSelect<true>;
|
|
@@ -158,7 +180,6 @@ interface Config {
|
|
|
158
180
|
carts: CartsSelect<false> | CartsSelect<true>;
|
|
159
181
|
'cart-items': CartItemsSelect<false> | CartItemsSelect<true>;
|
|
160
182
|
discounts: DiscountsSelect<false> | DiscountsSelect<true>;
|
|
161
|
-
'shipping-policies': ShippingPoliciesSelect<false> | ShippingPoliciesSelect<true>;
|
|
162
183
|
posts: PostsSelect<false> | PostsSelect<true>;
|
|
163
184
|
'post-authors': PostAuthorsSelect<false> | PostAuthorsSelect<true>;
|
|
164
185
|
'post-categories': PostCategoriesSelect<false> | PostCategoriesSelect<true>;
|
|
@@ -169,10 +190,24 @@ interface Config {
|
|
|
169
190
|
'document-types': DocumentTypesSelect<false> | DocumentTypesSelect<true>;
|
|
170
191
|
'document-images': DocumentImagesSelect<false> | DocumentImagesSelect<true>;
|
|
171
192
|
playlists: PlaylistsSelect<false> | PlaylistsSelect<true>;
|
|
193
|
+
'playlist-categories': PlaylistCategoriesSelect<false> | PlaylistCategoriesSelect<true>;
|
|
172
194
|
musics: MusicsSelect<false> | MusicsSelect<true>;
|
|
173
195
|
'playlist-images': PlaylistImagesSelect<false> | PlaylistImagesSelect<true>;
|
|
196
|
+
galleries: GalleriesSelect<false> | GalleriesSelect<true>;
|
|
197
|
+
'gallery-images': GalleryImagesSelect<false> | GalleryImagesSelect<true>;
|
|
198
|
+
'gallery-categories': GalleryCategoriesSelect<false> | GalleryCategoriesSelect<true>;
|
|
199
|
+
'gallery-tags': GalleryTagsSelect<false> | GalleryTagsSelect<true>;
|
|
174
200
|
flows: FlowsSelect<false> | FlowsSelect<true>;
|
|
201
|
+
'flow-node-types': FlowNodeTypesSelect<false> | FlowNodeTypesSelect<true>;
|
|
202
|
+
'flow-edge-types': FlowEdgeTypesSelect<false> | FlowEdgeTypesSelect<true>;
|
|
175
203
|
'flow-images': FlowImagesSelect<false> | FlowImagesSelect<true>;
|
|
204
|
+
'flow-tags': FlowTagsSelect<false> | FlowTagsSelect<true>;
|
|
205
|
+
videos: VideosSelect<false> | VideosSelect<true>;
|
|
206
|
+
'video-categories': VideoCategoriesSelect<false> | VideoCategoriesSelect<true>;
|
|
207
|
+
'video-tags': VideoTagsSelect<false> | VideoTagsSelect<true>;
|
|
208
|
+
'video-images': VideoImagesSelect<false> | VideoImagesSelect<true>;
|
|
209
|
+
'live-streams': LiveStreamsSelect<false> | LiveStreamsSelect<true>;
|
|
210
|
+
'live-stream-images': LiveStreamImagesSelect<false> | LiveStreamImagesSelect<true>;
|
|
176
211
|
forms: FormsSelect<false> | FormsSelect<true>;
|
|
177
212
|
'form-submissions': FormSubmissionsSelect<false> | FormSubmissionsSelect<true>;
|
|
178
213
|
'payload-kv': PayloadKvSelect<false> | PayloadKvSelect<true>;
|
|
@@ -282,6 +317,9 @@ interface User {
|
|
|
282
317
|
emailPreferences?: {
|
|
283
318
|
usageAlerts?: boolean | null;
|
|
284
319
|
};
|
|
320
|
+
fieldConfigs?: {
|
|
321
|
+
[k: string]: unknown;
|
|
322
|
+
} | unknown[] | string | number | boolean | null;
|
|
285
323
|
updatedAt: string;
|
|
286
324
|
createdAt: string;
|
|
287
325
|
email: string;
|
|
@@ -308,8 +346,12 @@ interface User {
|
|
|
308
346
|
interface Tenant {
|
|
309
347
|
id: string;
|
|
310
348
|
name: string;
|
|
349
|
+
/**
|
|
350
|
+
* Tenant owner. Only the owner can delete the tenant or transfer ownership.
|
|
351
|
+
*/
|
|
352
|
+
owner: string | User;
|
|
311
353
|
plan: 'free' | 'starter' | 'basic' | 'pro' | 'enterprise';
|
|
312
|
-
features?: ('ecommerce' | 'playlists' | 'forms' | 'posts' | 'documents' | 'flows')[] | null;
|
|
354
|
+
features?: ('ecommerce' | 'playlists' | 'galleries' | 'forms' | 'posts' | 'documents' | 'flows' | 'videos' | 'live-streaming')[] | null;
|
|
313
355
|
/**
|
|
314
356
|
* Allowed CORS origins for browser SDK requests. Empty = all origins allowed.
|
|
315
357
|
*/
|
|
@@ -345,6 +387,21 @@ interface Tenant {
|
|
|
345
387
|
updatedAt: string;
|
|
346
388
|
createdAt: string;
|
|
347
389
|
}
|
|
390
|
+
/**
|
|
391
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
392
|
+
* via the `definition` "field-configs".
|
|
393
|
+
*/
|
|
394
|
+
interface FieldConfig {
|
|
395
|
+
id: string;
|
|
396
|
+
tenant?: (string | null) | Tenant;
|
|
397
|
+
collectionSlug: 'products' | 'product-variants' | 'product-options' | 'product-collections' | 'product-categories' | 'product-tags' | 'brands' | 'discounts' | 'shipping-policies' | 'orders' | 'customers' | 'customer-groups' | 'carts' | 'transactions' | 'returns' | 'exchanges' | 'post-authors' | 'documents' | 'posts' | 'post-categories' | 'post-tags' | 'playlists' | 'playlist-categories' | 'galleries' | 'gallery-categories' | 'gallery-tags' | 'document-categories' | 'document-types' | 'flows' | 'flow-tags' | 'flow-node-types' | 'flow-edge-types' | 'forms' | 'musics' | 'videos' | 'video-categories' | 'video-tags' | 'live-streams';
|
|
398
|
+
isHidden?: boolean | null;
|
|
399
|
+
hiddenFields?: {
|
|
400
|
+
[k: string]: unknown;
|
|
401
|
+
} | unknown[] | string | number | boolean | null;
|
|
402
|
+
updatedAt: string;
|
|
403
|
+
createdAt: string;
|
|
404
|
+
}
|
|
348
405
|
/**
|
|
349
406
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
350
407
|
* via the `definition` "media".
|
|
@@ -721,6 +778,18 @@ interface ApiUsage {
|
|
|
721
778
|
* Total document count across all tenant-scoped collections
|
|
722
779
|
*/
|
|
723
780
|
totalDocuments?: number | null;
|
|
781
|
+
/**
|
|
782
|
+
* Number of video documents
|
|
783
|
+
*/
|
|
784
|
+
videoCount?: number | null;
|
|
785
|
+
/**
|
|
786
|
+
* Weighted video minutes used (duration × quality multiplier)
|
|
787
|
+
*/
|
|
788
|
+
videoMinutesUsed?: number | null;
|
|
789
|
+
/**
|
|
790
|
+
* Monthly viewer watch time from Mux Data
|
|
791
|
+
*/
|
|
792
|
+
deliveryMinutesUsed?: number | null;
|
|
724
793
|
updatedAt: string;
|
|
725
794
|
createdAt: string;
|
|
726
795
|
}
|
|
@@ -994,6 +1063,69 @@ interface Product {
|
|
|
994
1063
|
};
|
|
995
1064
|
brand?: (string | null) | Brand;
|
|
996
1065
|
shippingPolicy?: (string | null) | ShippingPolicy;
|
|
1066
|
+
/**
|
|
1067
|
+
* Product weight (g)
|
|
1068
|
+
*/
|
|
1069
|
+
weight?: number | null;
|
|
1070
|
+
dimensions?: {
|
|
1071
|
+
width?: number | null;
|
|
1072
|
+
height?: number | null;
|
|
1073
|
+
depth?: number | null;
|
|
1074
|
+
};
|
|
1075
|
+
/**
|
|
1076
|
+
* Digital product (no shipping required)
|
|
1077
|
+
*/
|
|
1078
|
+
isDigital?: boolean | null;
|
|
1079
|
+
isFeatured?: boolean | null;
|
|
1080
|
+
publishedAt?: string | null;
|
|
1081
|
+
seo?: {
|
|
1082
|
+
/**
|
|
1083
|
+
* Search result title (falls back to document title)
|
|
1084
|
+
*/
|
|
1085
|
+
title?: string | null;
|
|
1086
|
+
/**
|
|
1087
|
+
* Search result description
|
|
1088
|
+
*/
|
|
1089
|
+
description?: string | null;
|
|
1090
|
+
/**
|
|
1091
|
+
* Block search engine indexing
|
|
1092
|
+
*/
|
|
1093
|
+
noIndex?: boolean | null;
|
|
1094
|
+
/**
|
|
1095
|
+
* Canonical URL (prevents duplicate content)
|
|
1096
|
+
*/
|
|
1097
|
+
canonical?: string | null;
|
|
1098
|
+
openGraph?: {
|
|
1099
|
+
/**
|
|
1100
|
+
* OG title (falls back to seo.title)
|
|
1101
|
+
*/
|
|
1102
|
+
title?: string | null;
|
|
1103
|
+
/**
|
|
1104
|
+
* OG description (falls back to seo.description)
|
|
1105
|
+
*/
|
|
1106
|
+
description?: string | null;
|
|
1107
|
+
/**
|
|
1108
|
+
* OG / Twitter Card image (1200×630 recommended)
|
|
1109
|
+
*/
|
|
1110
|
+
image?: (string | null) | ProductImage;
|
|
1111
|
+
};
|
|
1112
|
+
};
|
|
1113
|
+
/**
|
|
1114
|
+
* External system ID (ERP, POS)
|
|
1115
|
+
*/
|
|
1116
|
+
externalId?: string | null;
|
|
1117
|
+
/**
|
|
1118
|
+
* UPC/EAN barcode
|
|
1119
|
+
*/
|
|
1120
|
+
barcode?: string | null;
|
|
1121
|
+
/**
|
|
1122
|
+
* Minimum order quantity
|
|
1123
|
+
*/
|
|
1124
|
+
minOrderQuantity?: number | null;
|
|
1125
|
+
/**
|
|
1126
|
+
* Maximum order quantity
|
|
1127
|
+
*/
|
|
1128
|
+
maxOrderQuantity?: number | null;
|
|
997
1129
|
metadata?: {
|
|
998
1130
|
[k: string]: unknown;
|
|
999
1131
|
} | unknown[] | string | number | boolean | null;
|
|
@@ -1031,7 +1163,15 @@ interface ProductImage {
|
|
|
1031
1163
|
focalX?: number | null;
|
|
1032
1164
|
focalY?: number | null;
|
|
1033
1165
|
sizes?: {
|
|
1034
|
-
'
|
|
1166
|
+
'200'?: {
|
|
1167
|
+
url?: string | null;
|
|
1168
|
+
width?: number | null;
|
|
1169
|
+
height?: number | null;
|
|
1170
|
+
mimeType?: string | null;
|
|
1171
|
+
filesize?: number | null;
|
|
1172
|
+
filename?: string | null;
|
|
1173
|
+
};
|
|
1174
|
+
'400'?: {
|
|
1035
1175
|
url?: string | null;
|
|
1036
1176
|
width?: number | null;
|
|
1037
1177
|
height?: number | null;
|
|
@@ -1039,7 +1179,7 @@ interface ProductImage {
|
|
|
1039
1179
|
filesize?: number | null;
|
|
1040
1180
|
filename?: string | null;
|
|
1041
1181
|
};
|
|
1042
|
-
'
|
|
1182
|
+
'800'?: {
|
|
1043
1183
|
url?: string | null;
|
|
1044
1184
|
width?: number | null;
|
|
1045
1185
|
height?: number | null;
|
|
@@ -1047,7 +1187,7 @@ interface ProductImage {
|
|
|
1047
1187
|
filesize?: number | null;
|
|
1048
1188
|
filename?: string | null;
|
|
1049
1189
|
};
|
|
1050
|
-
'
|
|
1190
|
+
'1600'?: {
|
|
1051
1191
|
url?: string | null;
|
|
1052
1192
|
width?: number | null;
|
|
1053
1193
|
height?: number | null;
|
|
@@ -1086,6 +1226,20 @@ interface ProductVariant {
|
|
|
1086
1226
|
weight?: number | null;
|
|
1087
1227
|
isSoldOut?: boolean | null;
|
|
1088
1228
|
images?: (string | ProductImage)[] | null;
|
|
1229
|
+
dimensions?: {
|
|
1230
|
+
width?: number | null;
|
|
1231
|
+
height?: number | null;
|
|
1232
|
+
depth?: number | null;
|
|
1233
|
+
};
|
|
1234
|
+
/**
|
|
1235
|
+
* External system ID
|
|
1236
|
+
*/
|
|
1237
|
+
externalId?: string | null;
|
|
1238
|
+
status?: ('active' | 'inactive') | null;
|
|
1239
|
+
/**
|
|
1240
|
+
* Sort order
|
|
1241
|
+
*/
|
|
1242
|
+
position?: number | null;
|
|
1089
1243
|
metadata?: {
|
|
1090
1244
|
[k: string]: unknown;
|
|
1091
1245
|
} | unknown[] | string | number | boolean | null;
|
|
@@ -1124,6 +1278,22 @@ interface ProductOption {
|
|
|
1124
1278
|
* Price adjustment (add/subtract from base price)
|
|
1125
1279
|
*/
|
|
1126
1280
|
priceAdjustment?: number | null;
|
|
1281
|
+
/**
|
|
1282
|
+
* Option-specific barcode
|
|
1283
|
+
*/
|
|
1284
|
+
barcode?: string | null;
|
|
1285
|
+
/**
|
|
1286
|
+
* Option-specific weight (g)
|
|
1287
|
+
*/
|
|
1288
|
+
weight?: number | null;
|
|
1289
|
+
/**
|
|
1290
|
+
* Low stock alert threshold
|
|
1291
|
+
*/
|
|
1292
|
+
lowStockThreshold?: number | null;
|
|
1293
|
+
/**
|
|
1294
|
+
* External system ID
|
|
1295
|
+
*/
|
|
1296
|
+
externalId?: string | null;
|
|
1127
1297
|
metadata?: {
|
|
1128
1298
|
[k: string]: unknown;
|
|
1129
1299
|
} | unknown[] | string | number | boolean | null;
|
|
@@ -1209,6 +1379,40 @@ interface ProductCollection {
|
|
|
1209
1379
|
slug?: string | null;
|
|
1210
1380
|
status?: ('draft' | 'published' | 'archived') | null;
|
|
1211
1381
|
sortOrder?: ('manual' | 'alphabetical' | 'price-asc' | 'price-desc' | 'newest') | null;
|
|
1382
|
+
isFeatured?: boolean | null;
|
|
1383
|
+
publishedAt?: string | null;
|
|
1384
|
+
seo?: {
|
|
1385
|
+
/**
|
|
1386
|
+
* Search result title (falls back to document title)
|
|
1387
|
+
*/
|
|
1388
|
+
title?: string | null;
|
|
1389
|
+
/**
|
|
1390
|
+
* Search result description
|
|
1391
|
+
*/
|
|
1392
|
+
description?: string | null;
|
|
1393
|
+
/**
|
|
1394
|
+
* Block search engine indexing
|
|
1395
|
+
*/
|
|
1396
|
+
noIndex?: boolean | null;
|
|
1397
|
+
/**
|
|
1398
|
+
* Canonical URL (prevents duplicate content)
|
|
1399
|
+
*/
|
|
1400
|
+
canonical?: string | null;
|
|
1401
|
+
openGraph?: {
|
|
1402
|
+
/**
|
|
1403
|
+
* OG title (falls back to seo.title)
|
|
1404
|
+
*/
|
|
1405
|
+
title?: string | null;
|
|
1406
|
+
/**
|
|
1407
|
+
* OG description (falls back to seo.description)
|
|
1408
|
+
*/
|
|
1409
|
+
description?: string | null;
|
|
1410
|
+
/**
|
|
1411
|
+
* OG / Twitter Card image (1200×630 recommended)
|
|
1412
|
+
*/
|
|
1413
|
+
image?: (string | null) | ProductImage;
|
|
1414
|
+
};
|
|
1415
|
+
};
|
|
1212
1416
|
metadata?: {
|
|
1213
1417
|
[k: string]: unknown;
|
|
1214
1418
|
} | unknown[] | string | number | boolean | null;
|
|
@@ -1261,6 +1465,8 @@ interface Brand {
|
|
|
1261
1465
|
* Brand official website URL
|
|
1262
1466
|
*/
|
|
1263
1467
|
website?: string | null;
|
|
1468
|
+
isFeatured?: boolean | null;
|
|
1469
|
+
status?: ('draft' | 'published') | null;
|
|
1264
1470
|
metadata?: {
|
|
1265
1471
|
[k: string]: unknown;
|
|
1266
1472
|
} | unknown[] | string | number | boolean | null;
|
|
@@ -1301,6 +1507,12 @@ interface ShippingPolicy {
|
|
|
1301
1507
|
*/
|
|
1302
1508
|
generateSlug?: boolean | null;
|
|
1303
1509
|
slug?: string | null;
|
|
1510
|
+
description?: string | null;
|
|
1511
|
+
/**
|
|
1512
|
+
* Estimated delivery days
|
|
1513
|
+
*/
|
|
1514
|
+
estimatedDays?: number | null;
|
|
1515
|
+
status?: ('active' | 'inactive') | null;
|
|
1304
1516
|
isDefault?: boolean | null;
|
|
1305
1517
|
metadata?: {
|
|
1306
1518
|
[k: string]: unknown;
|
|
@@ -1322,9 +1534,22 @@ interface Order {
|
|
|
1322
1534
|
discountCode?: string | null;
|
|
1323
1535
|
discountAmount?: number | null;
|
|
1324
1536
|
/**
|
|
1325
|
-
*
|
|
1537
|
+
* Cumulative refunded amount
|
|
1538
|
+
*/
|
|
1539
|
+
refundedAmount?: number | null;
|
|
1540
|
+
/**
|
|
1541
|
+
* Shipping fee at time of order
|
|
1542
|
+
*/
|
|
1543
|
+
shippingFee?: number | null;
|
|
1544
|
+
source?: ('web' | 'app' | 'manual') | null;
|
|
1545
|
+
/**
|
|
1546
|
+
* Internal admin notes (not visible to customers)
|
|
1547
|
+
*/
|
|
1548
|
+
adminNotes?: string | null;
|
|
1549
|
+
/**
|
|
1550
|
+
* Notes left by customer at checkout
|
|
1326
1551
|
*/
|
|
1327
|
-
|
|
1552
|
+
customerNotes?: string | null;
|
|
1328
1553
|
customer?: (string | null) | Customer;
|
|
1329
1554
|
/**
|
|
1330
1555
|
* Customer info at the time of order
|
|
@@ -1394,6 +1619,8 @@ interface Customer {
|
|
|
1394
1619
|
* Internal notes (not visible to customers)
|
|
1395
1620
|
*/
|
|
1396
1621
|
note?: string | null;
|
|
1622
|
+
birthDate?: string | null;
|
|
1623
|
+
gender?: ('male' | 'female' | 'other' | 'prefer_not_to_say') | null;
|
|
1397
1624
|
orders?: {
|
|
1398
1625
|
docs?: (string | Order)[];
|
|
1399
1626
|
hasNextPage?: boolean;
|
|
@@ -1422,6 +1649,7 @@ interface Customer {
|
|
|
1422
1649
|
* Date marketing consent was given
|
|
1423
1650
|
*/
|
|
1424
1651
|
consentedAt?: string | null;
|
|
1652
|
+
lastLoginAt?: string | null;
|
|
1425
1653
|
metadata?: {
|
|
1426
1654
|
[k: string]: unknown;
|
|
1427
1655
|
} | unknown[] | string | number | boolean | null;
|
|
@@ -1446,6 +1674,7 @@ interface CustomerGroup {
|
|
|
1446
1674
|
description?: string | null;
|
|
1447
1675
|
color?: string | null;
|
|
1448
1676
|
image?: (string | null) | CustomerGroupImage;
|
|
1677
|
+
status?: ('active' | 'inactive') | null;
|
|
1449
1678
|
metadata?: {
|
|
1450
1679
|
[k: string]: unknown;
|
|
1451
1680
|
} | unknown[] | string | number | boolean | null;
|
|
@@ -1488,7 +1717,7 @@ interface CustomerGroupImage {
|
|
|
1488
1717
|
focalX?: number | null;
|
|
1489
1718
|
focalY?: number | null;
|
|
1490
1719
|
sizes?: {
|
|
1491
|
-
'
|
|
1720
|
+
'200'?: {
|
|
1492
1721
|
url?: string | null;
|
|
1493
1722
|
width?: number | null;
|
|
1494
1723
|
height?: number | null;
|
|
@@ -1496,7 +1725,7 @@ interface CustomerGroupImage {
|
|
|
1496
1725
|
filesize?: number | null;
|
|
1497
1726
|
filename?: string | null;
|
|
1498
1727
|
};
|
|
1499
|
-
'
|
|
1728
|
+
'400'?: {
|
|
1500
1729
|
url?: string | null;
|
|
1501
1730
|
width?: number | null;
|
|
1502
1731
|
height?: number | null;
|
|
@@ -1504,7 +1733,15 @@ interface CustomerGroupImage {
|
|
|
1504
1733
|
filesize?: number | null;
|
|
1505
1734
|
filename?: string | null;
|
|
1506
1735
|
};
|
|
1507
|
-
'
|
|
1736
|
+
'800'?: {
|
|
1737
|
+
url?: string | null;
|
|
1738
|
+
width?: number | null;
|
|
1739
|
+
height?: number | null;
|
|
1740
|
+
mimeType?: string | null;
|
|
1741
|
+
filesize?: number | null;
|
|
1742
|
+
filename?: string | null;
|
|
1743
|
+
};
|
|
1744
|
+
'1600'?: {
|
|
1508
1745
|
url?: string | null;
|
|
1509
1746
|
width?: number | null;
|
|
1510
1747
|
height?: number | null;
|
|
@@ -1567,12 +1804,20 @@ interface OrderProduct {
|
|
|
1567
1804
|
interface Transaction {
|
|
1568
1805
|
id: string;
|
|
1569
1806
|
tenant?: (string | null) | Tenant;
|
|
1807
|
+
type: 'payment' | 'refund';
|
|
1570
1808
|
status: 'pending' | 'paid' | 'failed' | 'canceled';
|
|
1571
1809
|
order: string | Order;
|
|
1572
1810
|
paymentId?: string | null;
|
|
1573
1811
|
paymentMethod?: string | null;
|
|
1574
1812
|
receiptUrl?: string | null;
|
|
1575
1813
|
totalAmount?: number | null;
|
|
1814
|
+
/**
|
|
1815
|
+
* Payment gateway provider (e.g. toss, stripe)
|
|
1816
|
+
*/
|
|
1817
|
+
pgProvider?: string | null;
|
|
1818
|
+
metadata?: {
|
|
1819
|
+
[k: string]: unknown;
|
|
1820
|
+
} | unknown[] | string | number | boolean | null;
|
|
1576
1821
|
updatedAt: string;
|
|
1577
1822
|
createdAt: string;
|
|
1578
1823
|
}
|
|
@@ -1635,6 +1880,15 @@ interface Return {
|
|
|
1635
1880
|
hasNextPage?: boolean;
|
|
1636
1881
|
totalDocs?: number;
|
|
1637
1882
|
};
|
|
1883
|
+
/**
|
|
1884
|
+
* Internal notes
|
|
1885
|
+
*/
|
|
1886
|
+
adminNotes?: string | null;
|
|
1887
|
+
completedAt?: string | null;
|
|
1888
|
+
/**
|
|
1889
|
+
* Refund receipt URL
|
|
1890
|
+
*/
|
|
1891
|
+
refundReceiptUrl?: string | null;
|
|
1638
1892
|
refundAmount: number;
|
|
1639
1893
|
updatedAt: string;
|
|
1640
1894
|
createdAt: string;
|
|
@@ -1648,7 +1902,7 @@ interface ReturnProduct {
|
|
|
1648
1902
|
tenant?: (string | null) | Tenant;
|
|
1649
1903
|
return: string | Return;
|
|
1650
1904
|
order: string | Order;
|
|
1651
|
-
status: 'requested' | 'processing' | 'approved' | 'rejected';
|
|
1905
|
+
status: 'requested' | 'processing' | 'approved' | 'rejected' | 'completed';
|
|
1652
1906
|
orderProduct: string | OrderProduct;
|
|
1653
1907
|
product: string | Product;
|
|
1654
1908
|
variant: string | ProductVariant;
|
|
@@ -1673,6 +1927,11 @@ interface Exchange {
|
|
|
1673
1927
|
*/
|
|
1674
1928
|
reasonDetail?: string | null;
|
|
1675
1929
|
shippingFee?: number | null;
|
|
1930
|
+
/**
|
|
1931
|
+
* Internal notes
|
|
1932
|
+
*/
|
|
1933
|
+
adminNotes?: string | null;
|
|
1934
|
+
completedAt?: string | null;
|
|
1676
1935
|
exchangeProducts?: {
|
|
1677
1936
|
docs?: (string | ExchangeProduct)[];
|
|
1678
1937
|
hasNextPage?: boolean;
|
|
@@ -1707,6 +1966,27 @@ interface ExchangeProduct {
|
|
|
1707
1966
|
updatedAt: string;
|
|
1708
1967
|
createdAt: string;
|
|
1709
1968
|
}
|
|
1969
|
+
/**
|
|
1970
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
1971
|
+
* via the `definition` "order-status-logs".
|
|
1972
|
+
*/
|
|
1973
|
+
interface OrderStatusLog {
|
|
1974
|
+
id: string;
|
|
1975
|
+
tenant?: (string | null) | Tenant;
|
|
1976
|
+
order: string | Order;
|
|
1977
|
+
fromStatus: 'pending' | 'paid' | 'failed' | 'canceled' | 'preparing' | 'shipped' | 'delivered' | 'confirmed' | 'return_requested' | 'return_processing' | 'returned';
|
|
1978
|
+
toStatus: 'pending' | 'paid' | 'failed' | 'canceled' | 'preparing' | 'shipped' | 'delivered' | 'confirmed' | 'return_requested' | 'return_processing' | 'returned';
|
|
1979
|
+
/**
|
|
1980
|
+
* 'user:{id}' | 'api:updateOrder' | 'system:transaction:{paymentId}' | 'system:fulfillment:{id}' | 'system:return:{id}'
|
|
1981
|
+
*/
|
|
1982
|
+
changedBy: string;
|
|
1983
|
+
reason?: string | null;
|
|
1984
|
+
metadata?: {
|
|
1985
|
+
[k: string]: unknown;
|
|
1986
|
+
} | unknown[] | string | number | boolean | null;
|
|
1987
|
+
updatedAt: string;
|
|
1988
|
+
createdAt: string;
|
|
1989
|
+
}
|
|
1710
1990
|
/**
|
|
1711
1991
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1712
1992
|
* via the `definition` "carts".
|
|
@@ -1799,7 +2079,7 @@ interface Discount {
|
|
|
1799
2079
|
/**
|
|
1800
2080
|
* Discount rate (%) or fixed amount
|
|
1801
2081
|
*/
|
|
1802
|
-
value
|
|
2082
|
+
value?: number | null;
|
|
1803
2083
|
id?: string | null;
|
|
1804
2084
|
}[] | null;
|
|
1805
2085
|
/**
|
|
@@ -1831,6 +2111,15 @@ interface Discount {
|
|
|
1831
2111
|
* Usage limit per customer (empty = unlimited)
|
|
1832
2112
|
*/
|
|
1833
2113
|
perCustomerLimit?: number | null;
|
|
2114
|
+
customerGroups?: (string | CustomerGroup)[] | null;
|
|
2115
|
+
/**
|
|
2116
|
+
* Auto-apply discount
|
|
2117
|
+
*/
|
|
2118
|
+
isAutoApply?: boolean | null;
|
|
2119
|
+
/**
|
|
2120
|
+
* Discount priority (higher = first)
|
|
2121
|
+
*/
|
|
2122
|
+
priority?: number | null;
|
|
1834
2123
|
metadata?: {
|
|
1835
2124
|
[k: string]: unknown;
|
|
1836
2125
|
} | unknown[] | string | number | boolean | null;
|
|
@@ -1878,6 +2167,43 @@ interface Post {
|
|
|
1878
2167
|
publishedAt?: string | null;
|
|
1879
2168
|
categories?: (string | PostCategory)[] | null;
|
|
1880
2169
|
tags?: (string | PostTag)[] | null;
|
|
2170
|
+
isFeatured?: boolean | null;
|
|
2171
|
+
/**
|
|
2172
|
+
* Read time (minutes)
|
|
2173
|
+
*/
|
|
2174
|
+
readTime?: number | null;
|
|
2175
|
+
seo?: {
|
|
2176
|
+
/**
|
|
2177
|
+
* Search result title (falls back to document title)
|
|
2178
|
+
*/
|
|
2179
|
+
title?: string | null;
|
|
2180
|
+
/**
|
|
2181
|
+
* Search result description
|
|
2182
|
+
*/
|
|
2183
|
+
description?: string | null;
|
|
2184
|
+
/**
|
|
2185
|
+
* Block search engine indexing
|
|
2186
|
+
*/
|
|
2187
|
+
noIndex?: boolean | null;
|
|
2188
|
+
/**
|
|
2189
|
+
* Canonical URL (prevents duplicate content)
|
|
2190
|
+
*/
|
|
2191
|
+
canonical?: string | null;
|
|
2192
|
+
openGraph?: {
|
|
2193
|
+
/**
|
|
2194
|
+
* OG title (falls back to seo.title)
|
|
2195
|
+
*/
|
|
2196
|
+
title?: string | null;
|
|
2197
|
+
/**
|
|
2198
|
+
* OG description (falls back to seo.description)
|
|
2199
|
+
*/
|
|
2200
|
+
description?: string | null;
|
|
2201
|
+
/**
|
|
2202
|
+
* OG / Twitter Card image (1200×630 recommended)
|
|
2203
|
+
*/
|
|
2204
|
+
image?: (string | null) | PostImage;
|
|
2205
|
+
};
|
|
2206
|
+
};
|
|
1881
2207
|
metadata?: {
|
|
1882
2208
|
[k: string]: unknown;
|
|
1883
2209
|
} | unknown[] | string | number | boolean | null;
|
|
@@ -1916,7 +2242,15 @@ interface PostImage {
|
|
|
1916
2242
|
focalX?: number | null;
|
|
1917
2243
|
focalY?: number | null;
|
|
1918
2244
|
sizes?: {
|
|
1919
|
-
'
|
|
2245
|
+
'200'?: {
|
|
2246
|
+
url?: string | null;
|
|
2247
|
+
width?: number | null;
|
|
2248
|
+
height?: number | null;
|
|
2249
|
+
mimeType?: string | null;
|
|
2250
|
+
filesize?: number | null;
|
|
2251
|
+
filename?: string | null;
|
|
2252
|
+
};
|
|
2253
|
+
'400'?: {
|
|
1920
2254
|
url?: string | null;
|
|
1921
2255
|
width?: number | null;
|
|
1922
2256
|
height?: number | null;
|
|
@@ -1924,7 +2258,7 @@ interface PostImage {
|
|
|
1924
2258
|
filesize?: number | null;
|
|
1925
2259
|
filename?: string | null;
|
|
1926
2260
|
};
|
|
1927
|
-
'
|
|
2261
|
+
'800'?: {
|
|
1928
2262
|
url?: string | null;
|
|
1929
2263
|
width?: number | null;
|
|
1930
2264
|
height?: number | null;
|
|
@@ -1932,7 +2266,7 @@ interface PostImage {
|
|
|
1932
2266
|
filesize?: number | null;
|
|
1933
2267
|
filename?: string | null;
|
|
1934
2268
|
};
|
|
1935
|
-
'
|
|
2269
|
+
'1600'?: {
|
|
1936
2270
|
url?: string | null;
|
|
1937
2271
|
width?: number | null;
|
|
1938
2272
|
height?: number | null;
|
|
@@ -1963,6 +2297,8 @@ interface PostAuthor {
|
|
|
1963
2297
|
hasNextPage?: boolean;
|
|
1964
2298
|
totalDocs?: number;
|
|
1965
2299
|
};
|
|
2300
|
+
email?: string | null;
|
|
2301
|
+
status?: ('active' | 'inactive') | null;
|
|
1966
2302
|
metadata?: {
|
|
1967
2303
|
[k: string]: unknown;
|
|
1968
2304
|
} | unknown[] | string | number | boolean | null;
|
|
@@ -2059,7 +2395,7 @@ interface Document {
|
|
|
2059
2395
|
/**
|
|
2060
2396
|
* Document version (e.g. 1.0, 1.1, 2.0)
|
|
2061
2397
|
*/
|
|
2062
|
-
version
|
|
2398
|
+
version?: string | null;
|
|
2063
2399
|
/**
|
|
2064
2400
|
* Effective date
|
|
2065
2401
|
*/
|
|
@@ -2073,6 +2409,40 @@ interface Document {
|
|
|
2073
2409
|
* Document that requires user agreement
|
|
2074
2410
|
*/
|
|
2075
2411
|
isRequired?: boolean | null;
|
|
2412
|
+
thumbnail?: (string | null) | DocumentImage;
|
|
2413
|
+
images?: (string | DocumentImage)[] | null;
|
|
2414
|
+
seo?: {
|
|
2415
|
+
/**
|
|
2416
|
+
* Search result title (falls back to document title)
|
|
2417
|
+
*/
|
|
2418
|
+
title?: string | null;
|
|
2419
|
+
/**
|
|
2420
|
+
* Search result description
|
|
2421
|
+
*/
|
|
2422
|
+
description?: string | null;
|
|
2423
|
+
/**
|
|
2424
|
+
* Block search engine indexing
|
|
2425
|
+
*/
|
|
2426
|
+
noIndex?: boolean | null;
|
|
2427
|
+
/**
|
|
2428
|
+
* Canonical URL (prevents duplicate content)
|
|
2429
|
+
*/
|
|
2430
|
+
canonical?: string | null;
|
|
2431
|
+
openGraph?: {
|
|
2432
|
+
/**
|
|
2433
|
+
* OG title (falls back to seo.title)
|
|
2434
|
+
*/
|
|
2435
|
+
title?: string | null;
|
|
2436
|
+
/**
|
|
2437
|
+
* OG description (falls back to seo.description)
|
|
2438
|
+
*/
|
|
2439
|
+
description?: string | null;
|
|
2440
|
+
/**
|
|
2441
|
+
* OG / Twitter Card image (1200×630 recommended)
|
|
2442
|
+
*/
|
|
2443
|
+
image?: (string | null) | DocumentImage;
|
|
2444
|
+
};
|
|
2445
|
+
};
|
|
2076
2446
|
metadata?: {
|
|
2077
2447
|
[k: string]: unknown;
|
|
2078
2448
|
} | unknown[] | string | number | boolean | null;
|
|
@@ -2132,7 +2502,15 @@ interface DocumentImage {
|
|
|
2132
2502
|
focalX?: number | null;
|
|
2133
2503
|
focalY?: number | null;
|
|
2134
2504
|
sizes?: {
|
|
2135
|
-
'
|
|
2505
|
+
'200'?: {
|
|
2506
|
+
url?: string | null;
|
|
2507
|
+
width?: number | null;
|
|
2508
|
+
height?: number | null;
|
|
2509
|
+
mimeType?: string | null;
|
|
2510
|
+
filesize?: number | null;
|
|
2511
|
+
filename?: string | null;
|
|
2512
|
+
};
|
|
2513
|
+
'400'?: {
|
|
2136
2514
|
url?: string | null;
|
|
2137
2515
|
width?: number | null;
|
|
2138
2516
|
height?: number | null;
|
|
@@ -2140,7 +2518,7 @@ interface DocumentImage {
|
|
|
2140
2518
|
filesize?: number | null;
|
|
2141
2519
|
filename?: string | null;
|
|
2142
2520
|
};
|
|
2143
|
-
'
|
|
2521
|
+
'800'?: {
|
|
2144
2522
|
url?: string | null;
|
|
2145
2523
|
width?: number | null;
|
|
2146
2524
|
height?: number | null;
|
|
@@ -2148,7 +2526,7 @@ interface DocumentImage {
|
|
|
2148
2526
|
filesize?: number | null;
|
|
2149
2527
|
filename?: string | null;
|
|
2150
2528
|
};
|
|
2151
|
-
'
|
|
2529
|
+
'1600'?: {
|
|
2152
2530
|
url?: string | null;
|
|
2153
2531
|
width?: number | null;
|
|
2154
2532
|
height?: number | null;
|
|
@@ -2195,12 +2573,19 @@ interface Playlist {
|
|
|
2195
2573
|
hasNextPage?: boolean;
|
|
2196
2574
|
totalDocs?: number;
|
|
2197
2575
|
};
|
|
2576
|
+
categories?: (string | PlaylistCategory)[] | null;
|
|
2198
2577
|
image?: (string | null) | PlaylistImage;
|
|
2199
2578
|
/**
|
|
2200
2579
|
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
2201
2580
|
*/
|
|
2202
2581
|
generateSlug?: boolean | null;
|
|
2203
2582
|
slug?: string | null;
|
|
2583
|
+
status?: ('draft' | 'published') | null;
|
|
2584
|
+
isFeatured?: boolean | null;
|
|
2585
|
+
/**
|
|
2586
|
+
* Total duration (seconds)
|
|
2587
|
+
*/
|
|
2588
|
+
totalDuration?: number | null;
|
|
2204
2589
|
metadata?: {
|
|
2205
2590
|
[k: string]: unknown;
|
|
2206
2591
|
} | unknown[] | string | number | boolean | null;
|
|
@@ -2231,6 +2616,9 @@ interface Music {
|
|
|
2231
2616
|
* Duration in seconds (auto-filled from YouTube)
|
|
2232
2617
|
*/
|
|
2233
2618
|
duration?: number | null;
|
|
2619
|
+
album?: string | null;
|
|
2620
|
+
genre?: string | null;
|
|
2621
|
+
releaseDate?: string | null;
|
|
2234
2622
|
metadata?: {
|
|
2235
2623
|
[k: string]: unknown;
|
|
2236
2624
|
} | unknown[] | string | number | boolean | null;
|
|
@@ -2239,6 +2627,28 @@ interface Music {
|
|
|
2239
2627
|
createdAt: string;
|
|
2240
2628
|
deletedAt?: string | null;
|
|
2241
2629
|
}
|
|
2630
|
+
/**
|
|
2631
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
2632
|
+
* via the `definition` "playlist-categories".
|
|
2633
|
+
*/
|
|
2634
|
+
interface PlaylistCategory {
|
|
2635
|
+
id: string;
|
|
2636
|
+
_order?: string | null;
|
|
2637
|
+
tenant?: (string | null) | Tenant;
|
|
2638
|
+
title: string;
|
|
2639
|
+
/**
|
|
2640
|
+
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
2641
|
+
*/
|
|
2642
|
+
generateSlug?: boolean | null;
|
|
2643
|
+
slug?: string | null;
|
|
2644
|
+
description?: string | null;
|
|
2645
|
+
image?: (string | null) | PlaylistImage;
|
|
2646
|
+
parent?: (string | null) | PlaylistCategory;
|
|
2647
|
+
color?: string | null;
|
|
2648
|
+
updatedAt: string;
|
|
2649
|
+
createdAt: string;
|
|
2650
|
+
deletedAt?: string | null;
|
|
2651
|
+
}
|
|
2242
2652
|
/**
|
|
2243
2653
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
2244
2654
|
* via the `definition` "playlist-images".
|
|
@@ -2269,7 +2679,15 @@ interface PlaylistImage {
|
|
|
2269
2679
|
focalX?: number | null;
|
|
2270
2680
|
focalY?: number | null;
|
|
2271
2681
|
sizes?: {
|
|
2272
|
-
'
|
|
2682
|
+
'200'?: {
|
|
2683
|
+
url?: string | null;
|
|
2684
|
+
width?: number | null;
|
|
2685
|
+
height?: number | null;
|
|
2686
|
+
mimeType?: string | null;
|
|
2687
|
+
filesize?: number | null;
|
|
2688
|
+
filename?: string | null;
|
|
2689
|
+
};
|
|
2690
|
+
'400'?: {
|
|
2273
2691
|
url?: string | null;
|
|
2274
2692
|
width?: number | null;
|
|
2275
2693
|
height?: number | null;
|
|
@@ -2277,7 +2695,7 @@ interface PlaylistImage {
|
|
|
2277
2695
|
filesize?: number | null;
|
|
2278
2696
|
filename?: string | null;
|
|
2279
2697
|
};
|
|
2280
|
-
'
|
|
2698
|
+
'800'?: {
|
|
2281
2699
|
url?: string | null;
|
|
2282
2700
|
width?: number | null;
|
|
2283
2701
|
height?: number | null;
|
|
@@ -2285,7 +2703,7 @@ interface PlaylistImage {
|
|
|
2285
2703
|
filesize?: number | null;
|
|
2286
2704
|
filename?: string | null;
|
|
2287
2705
|
};
|
|
2288
|
-
'
|
|
2706
|
+
'1600'?: {
|
|
2289
2707
|
url?: string | null;
|
|
2290
2708
|
width?: number | null;
|
|
2291
2709
|
height?: number | null;
|
|
@@ -2297,22 +2715,62 @@ interface PlaylistImage {
|
|
|
2297
2715
|
}
|
|
2298
2716
|
/**
|
|
2299
2717
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
2300
|
-
* via the `definition` "
|
|
2718
|
+
* via the `definition` "galleries".
|
|
2301
2719
|
*/
|
|
2302
|
-
interface
|
|
2720
|
+
interface Gallery {
|
|
2303
2721
|
id: string;
|
|
2722
|
+
_order?: string | null;
|
|
2304
2723
|
tenant?: (string | null) | Tenant;
|
|
2305
2724
|
title: string;
|
|
2725
|
+
description?: string | null;
|
|
2726
|
+
images?: {
|
|
2727
|
+
docs?: (string | GalleryImage)[];
|
|
2728
|
+
hasNextPage?: boolean;
|
|
2729
|
+
totalDocs?: number;
|
|
2730
|
+
};
|
|
2731
|
+
categories?: (string | GalleryCategory)[] | null;
|
|
2732
|
+
tags?: (string | GalleryTag)[] | null;
|
|
2733
|
+
status: 'draft' | 'published';
|
|
2734
|
+
thumbnail?: (string | null) | GalleryImage;
|
|
2306
2735
|
/**
|
|
2307
2736
|
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
2308
2737
|
*/
|
|
2309
2738
|
generateSlug?: boolean | null;
|
|
2310
2739
|
slug?: string | null;
|
|
2311
|
-
|
|
2312
|
-
|
|
2313
|
-
|
|
2314
|
-
|
|
2315
|
-
|
|
2740
|
+
isFeatured?: boolean | null;
|
|
2741
|
+
publishedAt?: string | null;
|
|
2742
|
+
seo?: {
|
|
2743
|
+
/**
|
|
2744
|
+
* Search result title (falls back to document title)
|
|
2745
|
+
*/
|
|
2746
|
+
title?: string | null;
|
|
2747
|
+
/**
|
|
2748
|
+
* Search result description
|
|
2749
|
+
*/
|
|
2750
|
+
description?: string | null;
|
|
2751
|
+
/**
|
|
2752
|
+
* Block search engine indexing
|
|
2753
|
+
*/
|
|
2754
|
+
noIndex?: boolean | null;
|
|
2755
|
+
/**
|
|
2756
|
+
* Canonical URL (prevents duplicate content)
|
|
2757
|
+
*/
|
|
2758
|
+
canonical?: string | null;
|
|
2759
|
+
openGraph?: {
|
|
2760
|
+
/**
|
|
2761
|
+
* OG title (falls back to seo.title)
|
|
2762
|
+
*/
|
|
2763
|
+
title?: string | null;
|
|
2764
|
+
/**
|
|
2765
|
+
* OG description (falls back to seo.description)
|
|
2766
|
+
*/
|
|
2767
|
+
description?: string | null;
|
|
2768
|
+
/**
|
|
2769
|
+
* OG / Twitter Card image (1200×630 recommended)
|
|
2770
|
+
*/
|
|
2771
|
+
image?: (string | null) | GalleryImage;
|
|
2772
|
+
};
|
|
2773
|
+
};
|
|
2316
2774
|
metadata?: {
|
|
2317
2775
|
[k: string]: unknown;
|
|
2318
2776
|
} | unknown[] | string | number | boolean | null;
|
|
@@ -2322,26 +2780,44 @@ interface Flow {
|
|
|
2322
2780
|
}
|
|
2323
2781
|
/**
|
|
2324
2782
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
2325
|
-
* via the `definition` "
|
|
2783
|
+
* via the `definition` "gallery-images".
|
|
2326
2784
|
*/
|
|
2327
|
-
interface
|
|
2785
|
+
interface GalleryImage {
|
|
2328
2786
|
id: string;
|
|
2787
|
+
'_gallery-images_images_order'?: string | null;
|
|
2329
2788
|
tenant?: (string | null) | Tenant;
|
|
2330
|
-
|
|
2331
|
-
|
|
2332
|
-
|
|
2333
|
-
|
|
2334
|
-
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
|
|
2343
|
-
|
|
2344
|
-
|
|
2789
|
+
gallery: string | Gallery;
|
|
2790
|
+
title?: string | null;
|
|
2791
|
+
content?: {
|
|
2792
|
+
root: {
|
|
2793
|
+
type: string;
|
|
2794
|
+
children: {
|
|
2795
|
+
type: any;
|
|
2796
|
+
version: number;
|
|
2797
|
+
[k: string]: unknown;
|
|
2798
|
+
}[];
|
|
2799
|
+
direction: ('ltr' | 'rtl') | null;
|
|
2800
|
+
format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
|
|
2801
|
+
indent: number;
|
|
2802
|
+
version: number;
|
|
2803
|
+
};
|
|
2804
|
+
[k: string]: unknown;
|
|
2805
|
+
} | null;
|
|
2806
|
+
alt?: string | null;
|
|
2807
|
+
lqip?: string | null;
|
|
2808
|
+
palette?: {
|
|
2809
|
+
vibrant?: string | null;
|
|
2810
|
+
muted?: string | null;
|
|
2811
|
+
darkVibrant?: string | null;
|
|
2812
|
+
darkMuted?: string | null;
|
|
2813
|
+
lightVibrant?: string | null;
|
|
2814
|
+
lightMuted?: string | null;
|
|
2815
|
+
};
|
|
2816
|
+
prefix?: string | null;
|
|
2817
|
+
updatedAt: string;
|
|
2818
|
+
createdAt: string;
|
|
2819
|
+
url?: string | null;
|
|
2820
|
+
thumbnailURL?: string | null;
|
|
2345
2821
|
filename?: string | null;
|
|
2346
2822
|
mimeType?: string | null;
|
|
2347
2823
|
filesize?: number | null;
|
|
@@ -2350,7 +2826,15 @@ interface FlowImage {
|
|
|
2350
2826
|
focalX?: number | null;
|
|
2351
2827
|
focalY?: number | null;
|
|
2352
2828
|
sizes?: {
|
|
2353
|
-
'
|
|
2829
|
+
'200'?: {
|
|
2830
|
+
url?: string | null;
|
|
2831
|
+
width?: number | null;
|
|
2832
|
+
height?: number | null;
|
|
2833
|
+
mimeType?: string | null;
|
|
2834
|
+
filesize?: number | null;
|
|
2835
|
+
filename?: string | null;
|
|
2836
|
+
};
|
|
2837
|
+
'400'?: {
|
|
2354
2838
|
url?: string | null;
|
|
2355
2839
|
width?: number | null;
|
|
2356
2840
|
height?: number | null;
|
|
@@ -2358,7 +2842,7 @@ interface FlowImage {
|
|
|
2358
2842
|
filesize?: number | null;
|
|
2359
2843
|
filename?: string | null;
|
|
2360
2844
|
};
|
|
2361
|
-
'
|
|
2845
|
+
'800'?: {
|
|
2362
2846
|
url?: string | null;
|
|
2363
2847
|
width?: number | null;
|
|
2364
2848
|
height?: number | null;
|
|
@@ -2366,7 +2850,7 @@ interface FlowImage {
|
|
|
2366
2850
|
filesize?: number | null;
|
|
2367
2851
|
filename?: string | null;
|
|
2368
2852
|
};
|
|
2369
|
-
'
|
|
2853
|
+
'1600'?: {
|
|
2370
2854
|
url?: string | null;
|
|
2371
2855
|
width?: number | null;
|
|
2372
2856
|
height?: number | null;
|
|
@@ -2378,226 +2862,754 @@ interface FlowImage {
|
|
|
2378
2862
|
}
|
|
2379
2863
|
/**
|
|
2380
2864
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
2381
|
-
* via the `definition` "
|
|
2865
|
+
* via the `definition` "gallery-categories".
|
|
2382
2866
|
*/
|
|
2383
|
-
interface
|
|
2867
|
+
interface GalleryCategory {
|
|
2384
2868
|
id: string;
|
|
2385
2869
|
_order?: string | null;
|
|
2386
2870
|
tenant?: (string | null) | Tenant;
|
|
2387
2871
|
title: string;
|
|
2388
|
-
description?: string | null;
|
|
2389
|
-
status: 'active' | 'inactive';
|
|
2390
2872
|
/**
|
|
2391
2873
|
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
2392
2874
|
*/
|
|
2393
2875
|
generateSlug?: boolean | null;
|
|
2394
2876
|
slug?: string | null;
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
required?: boolean | null;
|
|
2400
|
-
defaultValue?: boolean | null;
|
|
2401
|
-
id?: string | null;
|
|
2402
|
-
blockName?: string | null;
|
|
2403
|
-
blockType: 'checkbox';
|
|
2404
|
-
} | {
|
|
2405
|
-
name: string;
|
|
2406
|
-
label?: string | null;
|
|
2407
|
-
width?: number | null;
|
|
2408
|
-
required?: boolean | null;
|
|
2409
|
-
id?: string | null;
|
|
2410
|
-
blockName?: string | null;
|
|
2411
|
-
blockType: 'country';
|
|
2412
|
-
} | {
|
|
2413
|
-
name: string;
|
|
2414
|
-
label?: string | null;
|
|
2415
|
-
width?: number | null;
|
|
2416
|
-
required?: boolean | null;
|
|
2417
|
-
id?: string | null;
|
|
2418
|
-
blockName?: string | null;
|
|
2419
|
-
blockType: 'email';
|
|
2420
|
-
} | {
|
|
2421
|
-
message?: {
|
|
2422
|
-
root: {
|
|
2423
|
-
type: string;
|
|
2424
|
-
children: {
|
|
2425
|
-
type: any;
|
|
2426
|
-
version: number;
|
|
2427
|
-
[k: string]: unknown;
|
|
2428
|
-
}[];
|
|
2429
|
-
direction: ('ltr' | 'rtl') | null;
|
|
2430
|
-
format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
|
|
2431
|
-
indent: number;
|
|
2432
|
-
version: number;
|
|
2433
|
-
};
|
|
2434
|
-
[k: string]: unknown;
|
|
2435
|
-
} | null;
|
|
2436
|
-
id?: string | null;
|
|
2437
|
-
blockName?: string | null;
|
|
2438
|
-
blockType: 'message';
|
|
2439
|
-
} | {
|
|
2440
|
-
name: string;
|
|
2441
|
-
label?: string | null;
|
|
2442
|
-
width?: number | null;
|
|
2443
|
-
defaultValue?: number | null;
|
|
2444
|
-
required?: boolean | null;
|
|
2445
|
-
id?: string | null;
|
|
2446
|
-
blockName?: string | null;
|
|
2447
|
-
blockType: 'number';
|
|
2448
|
-
} | {
|
|
2449
|
-
name: string;
|
|
2450
|
-
label?: string | null;
|
|
2451
|
-
width?: number | null;
|
|
2452
|
-
defaultValue?: string | null;
|
|
2453
|
-
placeholder?: string | null;
|
|
2454
|
-
options?: {
|
|
2455
|
-
label: string;
|
|
2456
|
-
value: string;
|
|
2457
|
-
id?: string | null;
|
|
2458
|
-
}[] | null;
|
|
2459
|
-
required?: boolean | null;
|
|
2460
|
-
id?: string | null;
|
|
2461
|
-
blockName?: string | null;
|
|
2462
|
-
blockType: 'select';
|
|
2463
|
-
} | {
|
|
2464
|
-
name: string;
|
|
2465
|
-
label?: string | null;
|
|
2466
|
-
width?: number | null;
|
|
2467
|
-
required?: boolean | null;
|
|
2468
|
-
id?: string | null;
|
|
2469
|
-
blockName?: string | null;
|
|
2470
|
-
blockType: 'state';
|
|
2471
|
-
} | {
|
|
2472
|
-
name: string;
|
|
2473
|
-
label?: string | null;
|
|
2474
|
-
width?: number | null;
|
|
2475
|
-
defaultValue?: string | null;
|
|
2476
|
-
required?: boolean | null;
|
|
2477
|
-
placeholder?: string | null;
|
|
2478
|
-
id?: string | null;
|
|
2479
|
-
blockName?: string | null;
|
|
2480
|
-
blockType: 'text';
|
|
2481
|
-
} | {
|
|
2482
|
-
name: string;
|
|
2483
|
-
label?: string | null;
|
|
2484
|
-
width?: number | null;
|
|
2485
|
-
defaultValue?: string | null;
|
|
2486
|
-
required?: boolean | null;
|
|
2487
|
-
id?: string | null;
|
|
2488
|
-
blockName?: string | null;
|
|
2489
|
-
blockType: 'textarea';
|
|
2490
|
-
})[] | null;
|
|
2491
|
-
submitButtonLabel?: string | null;
|
|
2492
|
-
/**
|
|
2493
|
-
* Choose whether to display an on-page message or redirect to a different page after they submit the form.
|
|
2494
|
-
*/
|
|
2495
|
-
confirmationType?: ('message' | 'redirect') | null;
|
|
2496
|
-
confirmationMessage?: {
|
|
2497
|
-
root: {
|
|
2498
|
-
type: string;
|
|
2499
|
-
children: {
|
|
2500
|
-
type: any;
|
|
2501
|
-
version: number;
|
|
2502
|
-
[k: string]: unknown;
|
|
2503
|
-
}[];
|
|
2504
|
-
direction: ('ltr' | 'rtl') | null;
|
|
2505
|
-
format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
|
|
2506
|
-
indent: number;
|
|
2507
|
-
version: number;
|
|
2508
|
-
};
|
|
2509
|
-
[k: string]: unknown;
|
|
2510
|
-
} | null;
|
|
2511
|
-
redirect?: {
|
|
2512
|
-
url: string;
|
|
2513
|
-
};
|
|
2514
|
-
/**
|
|
2515
|
-
* Send custom emails when the form submits. Use comma separated lists to send the same email to multiple recipients. To reference a value from this form, wrap that field's name with double curly brackets, i.e. {{firstName}}. You can use a wildcard {{*}} to output all data and {{*:table}} to format it as an HTML table in the email.
|
|
2516
|
-
*/
|
|
2517
|
-
emails?: {
|
|
2518
|
-
emailTo?: string | null;
|
|
2519
|
-
cc?: string | null;
|
|
2520
|
-
bcc?: string | null;
|
|
2521
|
-
replyTo?: string | null;
|
|
2522
|
-
emailFrom?: string | null;
|
|
2523
|
-
subject: string;
|
|
2524
|
-
/**
|
|
2525
|
-
* Enter the message that should be sent in this email.
|
|
2526
|
-
*/
|
|
2527
|
-
message?: {
|
|
2528
|
-
root: {
|
|
2529
|
-
type: string;
|
|
2530
|
-
children: {
|
|
2531
|
-
type: any;
|
|
2532
|
-
version: number;
|
|
2533
|
-
[k: string]: unknown;
|
|
2534
|
-
}[];
|
|
2535
|
-
direction: ('ltr' | 'rtl') | null;
|
|
2536
|
-
format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
|
|
2537
|
-
indent: number;
|
|
2538
|
-
version: number;
|
|
2539
|
-
};
|
|
2540
|
-
[k: string]: unknown;
|
|
2541
|
-
} | null;
|
|
2542
|
-
id?: string | null;
|
|
2543
|
-
}[] | null;
|
|
2877
|
+
description?: string | null;
|
|
2878
|
+
image?: (string | null) | GalleryImage;
|
|
2879
|
+
parent?: (string | null) | GalleryCategory;
|
|
2880
|
+
color?: string | null;
|
|
2544
2881
|
updatedAt: string;
|
|
2545
2882
|
createdAt: string;
|
|
2546
2883
|
deletedAt?: string | null;
|
|
2547
2884
|
}
|
|
2548
2885
|
/**
|
|
2549
2886
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
2550
|
-
* via the `definition` "
|
|
2887
|
+
* via the `definition` "gallery-tags".
|
|
2551
2888
|
*/
|
|
2552
|
-
interface
|
|
2889
|
+
interface GalleryTag {
|
|
2553
2890
|
id: string;
|
|
2891
|
+
_order?: string | null;
|
|
2554
2892
|
tenant?: (string | null) | Tenant;
|
|
2555
|
-
|
|
2556
|
-
|
|
2557
|
-
|
|
2558
|
-
|
|
2559
|
-
|
|
2560
|
-
|
|
2893
|
+
title: string;
|
|
2894
|
+
/**
|
|
2895
|
+
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
2896
|
+
*/
|
|
2897
|
+
generateSlug?: boolean | null;
|
|
2898
|
+
slug?: string | null;
|
|
2899
|
+
description?: string | null;
|
|
2900
|
+
image?: (string | null) | GalleryImage;
|
|
2901
|
+
parent?: (string | null) | GalleryTag;
|
|
2902
|
+
color?: string | null;
|
|
2561
2903
|
updatedAt: string;
|
|
2562
2904
|
createdAt: string;
|
|
2563
2905
|
deletedAt?: string | null;
|
|
2564
2906
|
}
|
|
2565
2907
|
/**
|
|
2566
2908
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
2567
|
-
* via the `definition` "
|
|
2909
|
+
* via the `definition` "flows".
|
|
2568
2910
|
*/
|
|
2569
|
-
interface
|
|
2911
|
+
interface Flow {
|
|
2570
2912
|
id: string;
|
|
2571
|
-
|
|
2572
|
-
|
|
2913
|
+
tenant?: (string | null) | Tenant;
|
|
2914
|
+
title: string;
|
|
2915
|
+
/**
|
|
2916
|
+
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
2917
|
+
*/
|
|
2918
|
+
generateSlug?: boolean | null;
|
|
2919
|
+
slug?: string | null;
|
|
2920
|
+
description?: string | null;
|
|
2921
|
+
canvas: {
|
|
2922
|
+
[k: string]: unknown;
|
|
2923
|
+
} | unknown[] | string | number | boolean | null;
|
|
2924
|
+
status?: ('draft' | 'published') | null;
|
|
2925
|
+
isFeatured?: boolean | null;
|
|
2926
|
+
thumbnail?: (string | null) | FlowImage;
|
|
2927
|
+
tags?: (string | FlowTag)[] | null;
|
|
2928
|
+
metadata?: {
|
|
2573
2929
|
[k: string]: unknown;
|
|
2574
2930
|
} | unknown[] | string | number | boolean | null;
|
|
2931
|
+
updatedAt: string;
|
|
2932
|
+
createdAt: string;
|
|
2933
|
+
deletedAt?: string | null;
|
|
2934
|
+
_status?: ('draft' | 'published') | null;
|
|
2575
2935
|
}
|
|
2576
2936
|
/**
|
|
2577
2937
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
2578
|
-
* via the `definition` "
|
|
2938
|
+
* via the `definition` "flow-images".
|
|
2579
2939
|
*/
|
|
2580
|
-
interface
|
|
2940
|
+
interface FlowImage {
|
|
2581
2941
|
id: string;
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
|
|
2585
|
-
|
|
2586
|
-
|
|
2587
|
-
|
|
2588
|
-
|
|
2589
|
-
|
|
2590
|
-
|
|
2591
|
-
|
|
2592
|
-
|
|
2593
|
-
|
|
2594
|
-
|
|
2595
|
-
|
|
2596
|
-
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
|
|
2600
|
-
|
|
2942
|
+
tenant?: (string | null) | Tenant;
|
|
2943
|
+
alt?: string | null;
|
|
2944
|
+
lqip?: string | null;
|
|
2945
|
+
palette?: {
|
|
2946
|
+
vibrant?: string | null;
|
|
2947
|
+
muted?: string | null;
|
|
2948
|
+
darkVibrant?: string | null;
|
|
2949
|
+
darkMuted?: string | null;
|
|
2950
|
+
lightVibrant?: string | null;
|
|
2951
|
+
lightMuted?: string | null;
|
|
2952
|
+
};
|
|
2953
|
+
prefix?: string | null;
|
|
2954
|
+
updatedAt: string;
|
|
2955
|
+
createdAt: string;
|
|
2956
|
+
url?: string | null;
|
|
2957
|
+
thumbnailURL?: string | null;
|
|
2958
|
+
filename?: string | null;
|
|
2959
|
+
mimeType?: string | null;
|
|
2960
|
+
filesize?: number | null;
|
|
2961
|
+
width?: number | null;
|
|
2962
|
+
height?: number | null;
|
|
2963
|
+
focalX?: number | null;
|
|
2964
|
+
focalY?: number | null;
|
|
2965
|
+
sizes?: {
|
|
2966
|
+
'200'?: {
|
|
2967
|
+
url?: string | null;
|
|
2968
|
+
width?: number | null;
|
|
2969
|
+
height?: number | null;
|
|
2970
|
+
mimeType?: string | null;
|
|
2971
|
+
filesize?: number | null;
|
|
2972
|
+
filename?: string | null;
|
|
2973
|
+
};
|
|
2974
|
+
'400'?: {
|
|
2975
|
+
url?: string | null;
|
|
2976
|
+
width?: number | null;
|
|
2977
|
+
height?: number | null;
|
|
2978
|
+
mimeType?: string | null;
|
|
2979
|
+
filesize?: number | null;
|
|
2980
|
+
filename?: string | null;
|
|
2981
|
+
};
|
|
2982
|
+
'800'?: {
|
|
2983
|
+
url?: string | null;
|
|
2984
|
+
width?: number | null;
|
|
2985
|
+
height?: number | null;
|
|
2986
|
+
mimeType?: string | null;
|
|
2987
|
+
filesize?: number | null;
|
|
2988
|
+
filename?: string | null;
|
|
2989
|
+
};
|
|
2990
|
+
'1600'?: {
|
|
2991
|
+
url?: string | null;
|
|
2992
|
+
width?: number | null;
|
|
2993
|
+
height?: number | null;
|
|
2994
|
+
mimeType?: string | null;
|
|
2995
|
+
filesize?: number | null;
|
|
2996
|
+
filename?: string | null;
|
|
2997
|
+
};
|
|
2998
|
+
};
|
|
2999
|
+
}
|
|
3000
|
+
/**
|
|
3001
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
3002
|
+
* via the `definition` "flow-tags".
|
|
3003
|
+
*/
|
|
3004
|
+
interface FlowTag {
|
|
3005
|
+
id: string;
|
|
3006
|
+
_order?: string | null;
|
|
3007
|
+
tenant?: (string | null) | Tenant;
|
|
3008
|
+
title: string;
|
|
3009
|
+
/**
|
|
3010
|
+
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
3011
|
+
*/
|
|
3012
|
+
generateSlug?: boolean | null;
|
|
3013
|
+
slug?: string | null;
|
|
3014
|
+
description?: string | null;
|
|
3015
|
+
image?: (string | null) | FlowImage;
|
|
3016
|
+
parent?: (string | null) | FlowTag;
|
|
3017
|
+
color?: string | null;
|
|
3018
|
+
updatedAt: string;
|
|
3019
|
+
createdAt: string;
|
|
3020
|
+
deletedAt?: string | null;
|
|
3021
|
+
}
|
|
3022
|
+
/**
|
|
3023
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
3024
|
+
* via the `definition` "flow-node-types".
|
|
3025
|
+
*/
|
|
3026
|
+
interface FlowNodeType {
|
|
3027
|
+
id: string;
|
|
3028
|
+
_order?: string | null;
|
|
3029
|
+
tenant?: (string | null) | Tenant;
|
|
3030
|
+
title: string;
|
|
3031
|
+
/**
|
|
3032
|
+
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
3033
|
+
*/
|
|
3034
|
+
generateSlug?: boolean | null;
|
|
3035
|
+
slug?: string | null;
|
|
3036
|
+
color?: string | null;
|
|
3037
|
+
defaultSize?: {
|
|
3038
|
+
width?: number | null;
|
|
3039
|
+
height?: number | null;
|
|
3040
|
+
};
|
|
3041
|
+
/**
|
|
3042
|
+
* Display node with transparent background
|
|
3043
|
+
*/
|
|
3044
|
+
transparentBackground?: boolean | null;
|
|
3045
|
+
/**
|
|
3046
|
+
* Define custom fields to display on node
|
|
3047
|
+
*/
|
|
3048
|
+
fields?: {
|
|
3049
|
+
/**
|
|
3050
|
+
* English key (e.g. body, url)
|
|
3051
|
+
*/
|
|
3052
|
+
name: string;
|
|
3053
|
+
label: string;
|
|
3054
|
+
fieldType: 'text' | 'textarea' | 'number' | 'url' | 'color' | 'image' | 'select' | 'toggle';
|
|
3055
|
+
options?: {
|
|
3056
|
+
label: string;
|
|
3057
|
+
value: string;
|
|
3058
|
+
id?: string | null;
|
|
3059
|
+
}[] | null;
|
|
3060
|
+
defaultValue?: string | null;
|
|
3061
|
+
required?: boolean | null;
|
|
3062
|
+
id?: string | null;
|
|
3063
|
+
}[] | null;
|
|
3064
|
+
updatedAt: string;
|
|
3065
|
+
createdAt: string;
|
|
3066
|
+
deletedAt?: string | null;
|
|
3067
|
+
}
|
|
3068
|
+
/**
|
|
3069
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
3070
|
+
* via the `definition` "flow-edge-types".
|
|
3071
|
+
*/
|
|
3072
|
+
interface FlowEdgeType {
|
|
3073
|
+
id: string;
|
|
3074
|
+
_order?: string | null;
|
|
3075
|
+
tenant?: (string | null) | Tenant;
|
|
3076
|
+
title: string;
|
|
3077
|
+
/**
|
|
3078
|
+
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
3079
|
+
*/
|
|
3080
|
+
generateSlug?: boolean | null;
|
|
3081
|
+
slug?: string | null;
|
|
3082
|
+
color?: string | null;
|
|
3083
|
+
strokeWidth?: number | null;
|
|
3084
|
+
animated?: boolean | null;
|
|
3085
|
+
lineStyle?: ('default' | 'step' | 'smoothstep' | 'bezier') | null;
|
|
3086
|
+
markerStart?: ('none' | 'arrow' | 'arrowclosed') | null;
|
|
3087
|
+
markerEnd?: ('none' | 'arrow' | 'arrowclosed') | null;
|
|
3088
|
+
/**
|
|
3089
|
+
* Define custom fields to display on edge
|
|
3090
|
+
*/
|
|
3091
|
+
fields?: {
|
|
3092
|
+
/**
|
|
3093
|
+
* English key (e.g. condition, weight)
|
|
3094
|
+
*/
|
|
3095
|
+
name: string;
|
|
3096
|
+
label: string;
|
|
3097
|
+
fieldType: 'text' | 'textarea' | 'number' | 'url' | 'color' | 'select' | 'toggle';
|
|
3098
|
+
options?: {
|
|
3099
|
+
label: string;
|
|
3100
|
+
value: string;
|
|
3101
|
+
id?: string | null;
|
|
3102
|
+
}[] | null;
|
|
3103
|
+
defaultValue?: string | null;
|
|
3104
|
+
required?: boolean | null;
|
|
3105
|
+
id?: string | null;
|
|
3106
|
+
}[] | null;
|
|
3107
|
+
updatedAt: string;
|
|
3108
|
+
createdAt: string;
|
|
3109
|
+
deletedAt?: string | null;
|
|
3110
|
+
}
|
|
3111
|
+
/**
|
|
3112
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
3113
|
+
* via the `definition` "videos".
|
|
3114
|
+
*/
|
|
3115
|
+
interface Video {
|
|
3116
|
+
id: string;
|
|
3117
|
+
tenant?: (string | null) | Tenant;
|
|
3118
|
+
title?: string | null;
|
|
3119
|
+
filename?: string | null;
|
|
3120
|
+
description?: string | null;
|
|
3121
|
+
sourceLiveStream?: (string | null) | LiveStream;
|
|
3122
|
+
status?: ('waiting' | 'preparing' | 'ready' | 'errored') | null;
|
|
3123
|
+
duration?: number | null;
|
|
3124
|
+
aspectRatio?: string | null;
|
|
3125
|
+
maxResolution?: string | null;
|
|
3126
|
+
videoQuality?: ('basic' | 'plus' | 'premium') | null;
|
|
3127
|
+
mp4Support?: ('none' | 'standard' | 'capped-1080p') | null;
|
|
3128
|
+
muxAssetId?: string | null;
|
|
3129
|
+
muxPlaybackId?: string | null;
|
|
3130
|
+
muxUploadId?: string | null;
|
|
3131
|
+
thumbnail?: (string | null) | VideoImage;
|
|
3132
|
+
/**
|
|
3133
|
+
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
3134
|
+
*/
|
|
3135
|
+
generateSlug?: boolean | null;
|
|
3136
|
+
slug?: string | null;
|
|
3137
|
+
publishedAt?: string | null;
|
|
3138
|
+
isFeatured?: boolean | null;
|
|
3139
|
+
categories?: (string | VideoCategory)[] | null;
|
|
3140
|
+
tags?: (string | VideoTag)[] | null;
|
|
3141
|
+
seo?: {
|
|
3142
|
+
/**
|
|
3143
|
+
* Search result title (falls back to document title)
|
|
3144
|
+
*/
|
|
3145
|
+
title?: string | null;
|
|
3146
|
+
/**
|
|
3147
|
+
* Search result description
|
|
3148
|
+
*/
|
|
3149
|
+
description?: string | null;
|
|
3150
|
+
/**
|
|
3151
|
+
* Block search engine indexing
|
|
3152
|
+
*/
|
|
3153
|
+
noIndex?: boolean | null;
|
|
3154
|
+
/**
|
|
3155
|
+
* Canonical URL (prevents duplicate content)
|
|
3156
|
+
*/
|
|
3157
|
+
canonical?: string | null;
|
|
3158
|
+
openGraph?: {
|
|
3159
|
+
/**
|
|
3160
|
+
* OG title (falls back to seo.title)
|
|
3161
|
+
*/
|
|
3162
|
+
title?: string | null;
|
|
3163
|
+
/**
|
|
3164
|
+
* OG description (falls back to seo.description)
|
|
3165
|
+
*/
|
|
3166
|
+
description?: string | null;
|
|
3167
|
+
/**
|
|
3168
|
+
* OG / Twitter Card image (1200×630 recommended)
|
|
3169
|
+
*/
|
|
3170
|
+
image?: (string | null) | VideoImage;
|
|
3171
|
+
};
|
|
3172
|
+
};
|
|
3173
|
+
metadata?: {
|
|
3174
|
+
[k: string]: unknown;
|
|
3175
|
+
} | unknown[] | string | number | boolean | null;
|
|
3176
|
+
updatedAt: string;
|
|
3177
|
+
createdAt: string;
|
|
3178
|
+
deletedAt?: string | null;
|
|
3179
|
+
}
|
|
3180
|
+
/**
|
|
3181
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
3182
|
+
* via the `definition` "live-streams".
|
|
3183
|
+
*/
|
|
3184
|
+
interface LiveStream {
|
|
3185
|
+
id: string;
|
|
3186
|
+
tenant?: (string | null) | Tenant;
|
|
3187
|
+
title?: string | null;
|
|
3188
|
+
description?: string | null;
|
|
3189
|
+
/**
|
|
3190
|
+
* Scheduled start time
|
|
3191
|
+
*/
|
|
3192
|
+
scheduledAt?: string | null;
|
|
3193
|
+
thumbnail?: (string | null) | LiveStreamImage;
|
|
3194
|
+
/**
|
|
3195
|
+
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
3196
|
+
*/
|
|
3197
|
+
generateSlug?: boolean | null;
|
|
3198
|
+
slug?: string | null;
|
|
3199
|
+
muxLiveStreamId?: string | null;
|
|
3200
|
+
muxPlaybackId?: string | null;
|
|
3201
|
+
streamKey?: string | null;
|
|
3202
|
+
status?: ('idle' | 'active' | 'disabled') | null;
|
|
3203
|
+
latencyMode?: ('standard' | 'reduced' | 'low') | null;
|
|
3204
|
+
/**
|
|
3205
|
+
* Reconnect window (seconds)
|
|
3206
|
+
*/
|
|
3207
|
+
reconnectWindow?: number | null;
|
|
3208
|
+
activeAssetId?: string | null;
|
|
3209
|
+
recentAssetIds?: {
|
|
3210
|
+
[k: string]: unknown;
|
|
3211
|
+
} | unknown[] | string | number | boolean | null;
|
|
3212
|
+
updatedAt: string;
|
|
3213
|
+
createdAt: string;
|
|
3214
|
+
deletedAt?: string | null;
|
|
3215
|
+
}
|
|
3216
|
+
/**
|
|
3217
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
3218
|
+
* via the `definition` "live-stream-images".
|
|
3219
|
+
*/
|
|
3220
|
+
interface LiveStreamImage {
|
|
3221
|
+
id: string;
|
|
3222
|
+
tenant?: (string | null) | Tenant;
|
|
3223
|
+
alt?: string | null;
|
|
3224
|
+
lqip?: string | null;
|
|
3225
|
+
palette?: {
|
|
3226
|
+
vibrant?: string | null;
|
|
3227
|
+
muted?: string | null;
|
|
3228
|
+
darkVibrant?: string | null;
|
|
3229
|
+
darkMuted?: string | null;
|
|
3230
|
+
lightVibrant?: string | null;
|
|
3231
|
+
lightMuted?: string | null;
|
|
3232
|
+
};
|
|
3233
|
+
prefix?: string | null;
|
|
3234
|
+
updatedAt: string;
|
|
3235
|
+
createdAt: string;
|
|
3236
|
+
url?: string | null;
|
|
3237
|
+
thumbnailURL?: string | null;
|
|
3238
|
+
filename?: string | null;
|
|
3239
|
+
mimeType?: string | null;
|
|
3240
|
+
filesize?: number | null;
|
|
3241
|
+
width?: number | null;
|
|
3242
|
+
height?: number | null;
|
|
3243
|
+
focalX?: number | null;
|
|
3244
|
+
focalY?: number | null;
|
|
3245
|
+
sizes?: {
|
|
3246
|
+
'200'?: {
|
|
3247
|
+
url?: string | null;
|
|
3248
|
+
width?: number | null;
|
|
3249
|
+
height?: number | null;
|
|
3250
|
+
mimeType?: string | null;
|
|
3251
|
+
filesize?: number | null;
|
|
3252
|
+
filename?: string | null;
|
|
3253
|
+
};
|
|
3254
|
+
'400'?: {
|
|
3255
|
+
url?: string | null;
|
|
3256
|
+
width?: number | null;
|
|
3257
|
+
height?: number | null;
|
|
3258
|
+
mimeType?: string | null;
|
|
3259
|
+
filesize?: number | null;
|
|
3260
|
+
filename?: string | null;
|
|
3261
|
+
};
|
|
3262
|
+
'800'?: {
|
|
3263
|
+
url?: string | null;
|
|
3264
|
+
width?: number | null;
|
|
3265
|
+
height?: number | null;
|
|
3266
|
+
mimeType?: string | null;
|
|
3267
|
+
filesize?: number | null;
|
|
3268
|
+
filename?: string | null;
|
|
3269
|
+
};
|
|
3270
|
+
'1600'?: {
|
|
3271
|
+
url?: string | null;
|
|
3272
|
+
width?: number | null;
|
|
3273
|
+
height?: number | null;
|
|
3274
|
+
mimeType?: string | null;
|
|
3275
|
+
filesize?: number | null;
|
|
3276
|
+
filename?: string | null;
|
|
3277
|
+
};
|
|
3278
|
+
};
|
|
3279
|
+
}
|
|
3280
|
+
/**
|
|
3281
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
3282
|
+
* via the `definition` "video-images".
|
|
3283
|
+
*/
|
|
3284
|
+
interface VideoImage {
|
|
3285
|
+
id: string;
|
|
3286
|
+
tenant?: (string | null) | Tenant;
|
|
3287
|
+
alt?: string | null;
|
|
3288
|
+
lqip?: string | null;
|
|
3289
|
+
palette?: {
|
|
3290
|
+
vibrant?: string | null;
|
|
3291
|
+
muted?: string | null;
|
|
3292
|
+
darkVibrant?: string | null;
|
|
3293
|
+
darkMuted?: string | null;
|
|
3294
|
+
lightVibrant?: string | null;
|
|
3295
|
+
lightMuted?: string | null;
|
|
3296
|
+
};
|
|
3297
|
+
prefix?: string | null;
|
|
3298
|
+
updatedAt: string;
|
|
3299
|
+
createdAt: string;
|
|
3300
|
+
url?: string | null;
|
|
3301
|
+
thumbnailURL?: string | null;
|
|
3302
|
+
filename?: string | null;
|
|
3303
|
+
mimeType?: string | null;
|
|
3304
|
+
filesize?: number | null;
|
|
3305
|
+
width?: number | null;
|
|
3306
|
+
height?: number | null;
|
|
3307
|
+
focalX?: number | null;
|
|
3308
|
+
focalY?: number | null;
|
|
3309
|
+
sizes?: {
|
|
3310
|
+
'200'?: {
|
|
3311
|
+
url?: string | null;
|
|
3312
|
+
width?: number | null;
|
|
3313
|
+
height?: number | null;
|
|
3314
|
+
mimeType?: string | null;
|
|
3315
|
+
filesize?: number | null;
|
|
3316
|
+
filename?: string | null;
|
|
3317
|
+
};
|
|
3318
|
+
'400'?: {
|
|
3319
|
+
url?: string | null;
|
|
3320
|
+
width?: number | null;
|
|
3321
|
+
height?: number | null;
|
|
3322
|
+
mimeType?: string | null;
|
|
3323
|
+
filesize?: number | null;
|
|
3324
|
+
filename?: string | null;
|
|
3325
|
+
};
|
|
3326
|
+
'800'?: {
|
|
3327
|
+
url?: string | null;
|
|
3328
|
+
width?: number | null;
|
|
3329
|
+
height?: number | null;
|
|
3330
|
+
mimeType?: string | null;
|
|
3331
|
+
filesize?: number | null;
|
|
3332
|
+
filename?: string | null;
|
|
3333
|
+
};
|
|
3334
|
+
'1600'?: {
|
|
3335
|
+
url?: string | null;
|
|
3336
|
+
width?: number | null;
|
|
3337
|
+
height?: number | null;
|
|
3338
|
+
mimeType?: string | null;
|
|
3339
|
+
filesize?: number | null;
|
|
3340
|
+
filename?: string | null;
|
|
3341
|
+
};
|
|
3342
|
+
};
|
|
3343
|
+
}
|
|
3344
|
+
/**
|
|
3345
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
3346
|
+
* via the `definition` "video-categories".
|
|
3347
|
+
*/
|
|
3348
|
+
interface VideoCategory {
|
|
3349
|
+
id: string;
|
|
3350
|
+
_order?: string | null;
|
|
3351
|
+
tenant?: (string | null) | Tenant;
|
|
3352
|
+
title: string;
|
|
3353
|
+
/**
|
|
3354
|
+
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
3355
|
+
*/
|
|
3356
|
+
generateSlug?: boolean | null;
|
|
3357
|
+
slug?: string | null;
|
|
3358
|
+
description?: string | null;
|
|
3359
|
+
image?: (string | null) | VideoImage;
|
|
3360
|
+
parent?: (string | null) | VideoCategory;
|
|
3361
|
+
color?: string | null;
|
|
3362
|
+
updatedAt: string;
|
|
3363
|
+
createdAt: string;
|
|
3364
|
+
deletedAt?: string | null;
|
|
3365
|
+
}
|
|
3366
|
+
/**
|
|
3367
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
3368
|
+
* via the `definition` "video-tags".
|
|
3369
|
+
*/
|
|
3370
|
+
interface VideoTag {
|
|
3371
|
+
id: string;
|
|
3372
|
+
_order?: string | null;
|
|
3373
|
+
tenant?: (string | null) | Tenant;
|
|
3374
|
+
title: string;
|
|
3375
|
+
/**
|
|
3376
|
+
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
3377
|
+
*/
|
|
3378
|
+
generateSlug?: boolean | null;
|
|
3379
|
+
slug?: string | null;
|
|
3380
|
+
description?: string | null;
|
|
3381
|
+
image?: (string | null) | VideoImage;
|
|
3382
|
+
parent?: (string | null) | VideoTag;
|
|
3383
|
+
color?: string | null;
|
|
3384
|
+
updatedAt: string;
|
|
3385
|
+
createdAt: string;
|
|
3386
|
+
deletedAt?: string | null;
|
|
3387
|
+
}
|
|
3388
|
+
/**
|
|
3389
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
3390
|
+
* via the `definition` "forms".
|
|
3391
|
+
*/
|
|
3392
|
+
interface Form {
|
|
3393
|
+
id: string;
|
|
3394
|
+
_order?: string | null;
|
|
3395
|
+
tenant?: (string | null) | Tenant;
|
|
3396
|
+
title: string;
|
|
3397
|
+
description?: string | null;
|
|
3398
|
+
status: 'active' | 'inactive';
|
|
3399
|
+
/**
|
|
3400
|
+
* When enabled, the slug will auto-generate from the title field on save and autosave.
|
|
3401
|
+
*/
|
|
3402
|
+
generateSlug?: boolean | null;
|
|
3403
|
+
slug?: string | null;
|
|
3404
|
+
fields?: ({
|
|
3405
|
+
name: string;
|
|
3406
|
+
label?: string | null;
|
|
3407
|
+
width?: number | null;
|
|
3408
|
+
required?: boolean | null;
|
|
3409
|
+
defaultValue?: boolean | null;
|
|
3410
|
+
id?: string | null;
|
|
3411
|
+
blockName?: string | null;
|
|
3412
|
+
blockType: 'checkbox';
|
|
3413
|
+
} | {
|
|
3414
|
+
name: string;
|
|
3415
|
+
label?: string | null;
|
|
3416
|
+
width?: number | null;
|
|
3417
|
+
required?: boolean | null;
|
|
3418
|
+
id?: string | null;
|
|
3419
|
+
blockName?: string | null;
|
|
3420
|
+
blockType: 'country';
|
|
3421
|
+
} | {
|
|
3422
|
+
name: string;
|
|
3423
|
+
label?: string | null;
|
|
3424
|
+
width?: number | null;
|
|
3425
|
+
required?: boolean | null;
|
|
3426
|
+
id?: string | null;
|
|
3427
|
+
blockName?: string | null;
|
|
3428
|
+
blockType: 'email';
|
|
3429
|
+
} | {
|
|
3430
|
+
message?: {
|
|
3431
|
+
root: {
|
|
3432
|
+
type: string;
|
|
3433
|
+
children: {
|
|
3434
|
+
type: any;
|
|
3435
|
+
version: number;
|
|
3436
|
+
[k: string]: unknown;
|
|
3437
|
+
}[];
|
|
3438
|
+
direction: ('ltr' | 'rtl') | null;
|
|
3439
|
+
format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
|
|
3440
|
+
indent: number;
|
|
3441
|
+
version: number;
|
|
3442
|
+
};
|
|
3443
|
+
[k: string]: unknown;
|
|
3444
|
+
} | null;
|
|
3445
|
+
id?: string | null;
|
|
3446
|
+
blockName?: string | null;
|
|
3447
|
+
blockType: 'message';
|
|
3448
|
+
} | {
|
|
3449
|
+
name: string;
|
|
3450
|
+
label?: string | null;
|
|
3451
|
+
width?: number | null;
|
|
3452
|
+
defaultValue?: number | null;
|
|
3453
|
+
required?: boolean | null;
|
|
3454
|
+
id?: string | null;
|
|
3455
|
+
blockName?: string | null;
|
|
3456
|
+
blockType: 'number';
|
|
3457
|
+
} | {
|
|
3458
|
+
name: string;
|
|
3459
|
+
label?: string | null;
|
|
3460
|
+
width?: number | null;
|
|
3461
|
+
defaultValue?: string | null;
|
|
3462
|
+
placeholder?: string | null;
|
|
3463
|
+
options?: {
|
|
3464
|
+
label: string;
|
|
3465
|
+
value: string;
|
|
3466
|
+
id?: string | null;
|
|
3467
|
+
}[] | null;
|
|
3468
|
+
required?: boolean | null;
|
|
3469
|
+
id?: string | null;
|
|
3470
|
+
blockName?: string | null;
|
|
3471
|
+
blockType: 'select';
|
|
3472
|
+
} | {
|
|
3473
|
+
name: string;
|
|
3474
|
+
label?: string | null;
|
|
3475
|
+
width?: number | null;
|
|
3476
|
+
required?: boolean | null;
|
|
3477
|
+
id?: string | null;
|
|
3478
|
+
blockName?: string | null;
|
|
3479
|
+
blockType: 'state';
|
|
3480
|
+
} | {
|
|
3481
|
+
name: string;
|
|
3482
|
+
label?: string | null;
|
|
3483
|
+
width?: number | null;
|
|
3484
|
+
defaultValue?: string | null;
|
|
3485
|
+
required?: boolean | null;
|
|
3486
|
+
placeholder?: string | null;
|
|
3487
|
+
id?: string | null;
|
|
3488
|
+
blockName?: string | null;
|
|
3489
|
+
blockType: 'text';
|
|
3490
|
+
} | {
|
|
3491
|
+
name: string;
|
|
3492
|
+
label?: string | null;
|
|
3493
|
+
width?: number | null;
|
|
3494
|
+
defaultValue?: string | null;
|
|
3495
|
+
required?: boolean | null;
|
|
3496
|
+
id?: string | null;
|
|
3497
|
+
blockName?: string | null;
|
|
3498
|
+
blockType: 'textarea';
|
|
3499
|
+
})[] | null;
|
|
3500
|
+
submitButtonLabel?: string | null;
|
|
3501
|
+
/**
|
|
3502
|
+
* Choose whether to display an on-page message or redirect to a different page after they submit the form.
|
|
3503
|
+
*/
|
|
3504
|
+
confirmationType?: ('message' | 'redirect') | null;
|
|
3505
|
+
confirmationMessage?: {
|
|
3506
|
+
root: {
|
|
3507
|
+
type: string;
|
|
3508
|
+
children: {
|
|
3509
|
+
type: any;
|
|
3510
|
+
version: number;
|
|
3511
|
+
[k: string]: unknown;
|
|
3512
|
+
}[];
|
|
3513
|
+
direction: ('ltr' | 'rtl') | null;
|
|
3514
|
+
format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
|
|
3515
|
+
indent: number;
|
|
3516
|
+
version: number;
|
|
3517
|
+
};
|
|
3518
|
+
[k: string]: unknown;
|
|
3519
|
+
} | null;
|
|
3520
|
+
redirect?: {
|
|
3521
|
+
url: string;
|
|
3522
|
+
};
|
|
3523
|
+
/**
|
|
3524
|
+
* Send custom emails when the form submits. Use comma separated lists to send the same email to multiple recipients. To reference a value from this form, wrap that field's name with double curly brackets, i.e. {{firstName}}. You can use a wildcard {{*}} to output all data and {{*:table}} to format it as an HTML table in the email.
|
|
3525
|
+
*/
|
|
3526
|
+
emails?: {
|
|
3527
|
+
emailTo?: string | null;
|
|
3528
|
+
cc?: string | null;
|
|
3529
|
+
bcc?: string | null;
|
|
3530
|
+
replyTo?: string | null;
|
|
3531
|
+
emailFrom?: string | null;
|
|
3532
|
+
subject: string;
|
|
3533
|
+
/**
|
|
3534
|
+
* Enter the message that should be sent in this email.
|
|
3535
|
+
*/
|
|
3536
|
+
message?: {
|
|
3537
|
+
root: {
|
|
3538
|
+
type: string;
|
|
3539
|
+
children: {
|
|
3540
|
+
type: any;
|
|
3541
|
+
version: number;
|
|
3542
|
+
[k: string]: unknown;
|
|
3543
|
+
}[];
|
|
3544
|
+
direction: ('ltr' | 'rtl') | null;
|
|
3545
|
+
format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
|
|
3546
|
+
indent: number;
|
|
3547
|
+
version: number;
|
|
3548
|
+
};
|
|
3549
|
+
[k: string]: unknown;
|
|
3550
|
+
} | null;
|
|
3551
|
+
id?: string | null;
|
|
3552
|
+
}[] | null;
|
|
3553
|
+
updatedAt: string;
|
|
3554
|
+
createdAt: string;
|
|
3555
|
+
deletedAt?: string | null;
|
|
3556
|
+
}
|
|
3557
|
+
/**
|
|
3558
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
3559
|
+
* via the `definition` "form-submissions".
|
|
3560
|
+
*/
|
|
3561
|
+
interface FormSubmission {
|
|
3562
|
+
id: string;
|
|
3563
|
+
tenant?: (string | null) | Tenant;
|
|
3564
|
+
form: string | Form;
|
|
3565
|
+
submissionData?: {
|
|
3566
|
+
field: string;
|
|
3567
|
+
value: string;
|
|
3568
|
+
id?: string | null;
|
|
3569
|
+
}[] | null;
|
|
3570
|
+
updatedAt: string;
|
|
3571
|
+
createdAt: string;
|
|
3572
|
+
deletedAt?: string | null;
|
|
3573
|
+
}
|
|
3574
|
+
/**
|
|
3575
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
3576
|
+
* via the `definition` "payload-kv".
|
|
3577
|
+
*/
|
|
3578
|
+
interface PayloadKv {
|
|
3579
|
+
id: string;
|
|
3580
|
+
key: string;
|
|
3581
|
+
data: {
|
|
3582
|
+
[k: string]: unknown;
|
|
3583
|
+
} | unknown[] | string | number | boolean | null;
|
|
3584
|
+
}
|
|
3585
|
+
/**
|
|
3586
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
3587
|
+
* via the `definition` "payload-locked-documents".
|
|
3588
|
+
*/
|
|
3589
|
+
interface PayloadLockedDocument {
|
|
3590
|
+
id: string;
|
|
3591
|
+
document?: ({
|
|
3592
|
+
relationTo: 'users';
|
|
3593
|
+
value: string | User;
|
|
3594
|
+
} | null) | ({
|
|
3595
|
+
relationTo: 'field-configs';
|
|
3596
|
+
value: string | FieldConfig;
|
|
3597
|
+
} | null) | ({
|
|
3598
|
+
relationTo: 'media';
|
|
3599
|
+
value: string | Media;
|
|
3600
|
+
} | null) | ({
|
|
3601
|
+
relationTo: 'audiences';
|
|
3602
|
+
value: string | Audience;
|
|
3603
|
+
} | null) | ({
|
|
3604
|
+
relationTo: 'email-logs';
|
|
3605
|
+
value: string | EmailLog;
|
|
3606
|
+
} | null) | ({
|
|
3607
|
+
relationTo: 'tenants';
|
|
3608
|
+
value: string | Tenant;
|
|
3609
|
+
} | null) | ({
|
|
3610
|
+
relationTo: 'tenant-metadata';
|
|
3611
|
+
value: string | TenantMetadatum;
|
|
3612
|
+
} | null) | ({
|
|
2601
3613
|
relationTo: 'api-usage';
|
|
2602
3614
|
value: string | ApiUsage;
|
|
2603
3615
|
} | null) | ({
|
|
@@ -2648,6 +3660,9 @@ interface PayloadLockedDocument {
|
|
|
2648
3660
|
} | null) | ({
|
|
2649
3661
|
relationTo: 'transactions';
|
|
2650
3662
|
value: string | Transaction;
|
|
3663
|
+
} | null) | ({
|
|
3664
|
+
relationTo: 'order-status-logs';
|
|
3665
|
+
value: string | OrderStatusLog;
|
|
2651
3666
|
} | null) | ({
|
|
2652
3667
|
relationTo: 'fulfillments';
|
|
2653
3668
|
value: string | Fulfillment;
|
|
@@ -2666,6 +3681,9 @@ interface PayloadLockedDocument {
|
|
|
2666
3681
|
} | null) | ({
|
|
2667
3682
|
relationTo: 'exchange-products';
|
|
2668
3683
|
value: string | ExchangeProduct;
|
|
3684
|
+
} | null) | ({
|
|
3685
|
+
relationTo: 'shipping-policies';
|
|
3686
|
+
value: string | ShippingPolicy;
|
|
2669
3687
|
} | null) | ({
|
|
2670
3688
|
relationTo: 'customers';
|
|
2671
3689
|
value: string | Customer;
|
|
@@ -2687,9 +3705,6 @@ interface PayloadLockedDocument {
|
|
|
2687
3705
|
} | null) | ({
|
|
2688
3706
|
relationTo: 'discounts';
|
|
2689
3707
|
value: string | Discount;
|
|
2690
|
-
} | null) | ({
|
|
2691
|
-
relationTo: 'shipping-policies';
|
|
2692
|
-
value: string | ShippingPolicy;
|
|
2693
3708
|
} | null) | ({
|
|
2694
3709
|
relationTo: 'posts';
|
|
2695
3710
|
value: string | Post;
|
|
@@ -2720,18 +3735,60 @@ interface PayloadLockedDocument {
|
|
|
2720
3735
|
} | null) | ({
|
|
2721
3736
|
relationTo: 'playlists';
|
|
2722
3737
|
value: string | Playlist;
|
|
3738
|
+
} | null) | ({
|
|
3739
|
+
relationTo: 'playlist-categories';
|
|
3740
|
+
value: string | PlaylistCategory;
|
|
2723
3741
|
} | null) | ({
|
|
2724
3742
|
relationTo: 'musics';
|
|
2725
3743
|
value: string | Music;
|
|
2726
3744
|
} | null) | ({
|
|
2727
3745
|
relationTo: 'playlist-images';
|
|
2728
3746
|
value: string | PlaylistImage;
|
|
3747
|
+
} | null) | ({
|
|
3748
|
+
relationTo: 'galleries';
|
|
3749
|
+
value: string | Gallery;
|
|
3750
|
+
} | null) | ({
|
|
3751
|
+
relationTo: 'gallery-images';
|
|
3752
|
+
value: string | GalleryImage;
|
|
3753
|
+
} | null) | ({
|
|
3754
|
+
relationTo: 'gallery-categories';
|
|
3755
|
+
value: string | GalleryCategory;
|
|
3756
|
+
} | null) | ({
|
|
3757
|
+
relationTo: 'gallery-tags';
|
|
3758
|
+
value: string | GalleryTag;
|
|
2729
3759
|
} | null) | ({
|
|
2730
3760
|
relationTo: 'flows';
|
|
2731
3761
|
value: string | Flow;
|
|
3762
|
+
} | null) | ({
|
|
3763
|
+
relationTo: 'flow-node-types';
|
|
3764
|
+
value: string | FlowNodeType;
|
|
3765
|
+
} | null) | ({
|
|
3766
|
+
relationTo: 'flow-edge-types';
|
|
3767
|
+
value: string | FlowEdgeType;
|
|
2732
3768
|
} | null) | ({
|
|
2733
3769
|
relationTo: 'flow-images';
|
|
2734
3770
|
value: string | FlowImage;
|
|
3771
|
+
} | null) | ({
|
|
3772
|
+
relationTo: 'flow-tags';
|
|
3773
|
+
value: string | FlowTag;
|
|
3774
|
+
} | null) | ({
|
|
3775
|
+
relationTo: 'videos';
|
|
3776
|
+
value: string | Video;
|
|
3777
|
+
} | null) | ({
|
|
3778
|
+
relationTo: 'video-categories';
|
|
3779
|
+
value: string | VideoCategory;
|
|
3780
|
+
} | null) | ({
|
|
3781
|
+
relationTo: 'video-tags';
|
|
3782
|
+
value: string | VideoTag;
|
|
3783
|
+
} | null) | ({
|
|
3784
|
+
relationTo: 'video-images';
|
|
3785
|
+
value: string | VideoImage;
|
|
3786
|
+
} | null) | ({
|
|
3787
|
+
relationTo: 'live-streams';
|
|
3788
|
+
value: string | LiveStream;
|
|
3789
|
+
} | null) | ({
|
|
3790
|
+
relationTo: 'live-stream-images';
|
|
3791
|
+
value: string | LiveStreamImage;
|
|
2735
3792
|
} | null) | ({
|
|
2736
3793
|
relationTo: 'forms';
|
|
2737
3794
|
value: string | Form;
|
|
@@ -2795,6 +3852,7 @@ interface UsersSelect<T extends boolean = true> {
|
|
|
2795
3852
|
emailPreferences?: T | {
|
|
2796
3853
|
usageAlerts?: T;
|
|
2797
3854
|
};
|
|
3855
|
+
fieldConfigs?: T;
|
|
2798
3856
|
updatedAt?: T;
|
|
2799
3857
|
createdAt?: T;
|
|
2800
3858
|
email?: T;
|
|
@@ -2814,13 +3872,256 @@ interface UsersSelect<T extends boolean = true> {
|
|
|
2814
3872
|
}
|
|
2815
3873
|
/**
|
|
2816
3874
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
2817
|
-
* via the `definition` "
|
|
3875
|
+
* via the `definition` "field-configs_select".
|
|
3876
|
+
*/
|
|
3877
|
+
interface FieldConfigsSelect<T extends boolean = true> {
|
|
3878
|
+
tenant?: T;
|
|
3879
|
+
collectionSlug?: T;
|
|
3880
|
+
isHidden?: T;
|
|
3881
|
+
hiddenFields?: T;
|
|
3882
|
+
updatedAt?: T;
|
|
3883
|
+
createdAt?: T;
|
|
3884
|
+
}
|
|
3885
|
+
/**
|
|
3886
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
3887
|
+
* via the `definition` "media_select".
|
|
3888
|
+
*/
|
|
3889
|
+
interface MediaSelect<T extends boolean = true> {
|
|
3890
|
+
tenant?: T;
|
|
3891
|
+
alt?: T;
|
|
3892
|
+
caption?: T;
|
|
3893
|
+
credit?: T;
|
|
3894
|
+
prefix?: T;
|
|
3895
|
+
updatedAt?: T;
|
|
3896
|
+
createdAt?: T;
|
|
3897
|
+
url?: T;
|
|
3898
|
+
thumbnailURL?: T;
|
|
3899
|
+
filename?: T;
|
|
3900
|
+
mimeType?: T;
|
|
3901
|
+
filesize?: T;
|
|
3902
|
+
width?: T;
|
|
3903
|
+
height?: T;
|
|
3904
|
+
focalX?: T;
|
|
3905
|
+
focalY?: T;
|
|
3906
|
+
}
|
|
3907
|
+
/**
|
|
3908
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
3909
|
+
* via the `definition` "audiences_select".
|
|
3910
|
+
*/
|
|
3911
|
+
interface AudiencesSelect<T extends boolean = true> {
|
|
3912
|
+
_order?: T;
|
|
3913
|
+
email?: T;
|
|
3914
|
+
firstName?: T;
|
|
3915
|
+
lastName?: T;
|
|
3916
|
+
status?: T;
|
|
3917
|
+
source?: T;
|
|
3918
|
+
subscribedAt?: T;
|
|
3919
|
+
unsubscribedAt?: T;
|
|
3920
|
+
resendContactId?: T;
|
|
3921
|
+
updatedAt?: T;
|
|
3922
|
+
createdAt?: T;
|
|
3923
|
+
}
|
|
3924
|
+
/**
|
|
3925
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
3926
|
+
* via the `definition` "email-logs_select".
|
|
3927
|
+
*/
|
|
3928
|
+
interface EmailLogsSelect<T extends boolean = true> {
|
|
3929
|
+
to?: T;
|
|
3930
|
+
from?: T;
|
|
3931
|
+
subject?: T;
|
|
3932
|
+
type?: T;
|
|
3933
|
+
status?: T;
|
|
3934
|
+
sentAt?: T;
|
|
3935
|
+
error?: T;
|
|
3936
|
+
updatedAt?: T;
|
|
3937
|
+
createdAt?: T;
|
|
3938
|
+
}
|
|
3939
|
+
/**
|
|
3940
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
3941
|
+
* via the `definition` "tenants_select".
|
|
3942
|
+
*/
|
|
3943
|
+
interface TenantsSelect<T extends boolean = true> {
|
|
3944
|
+
name?: T;
|
|
3945
|
+
owner?: T;
|
|
3946
|
+
plan?: T;
|
|
3947
|
+
features?: T;
|
|
3948
|
+
cors?: T | {
|
|
3949
|
+
origin?: T;
|
|
3950
|
+
id?: T;
|
|
3951
|
+
};
|
|
3952
|
+
clientKey?: T;
|
|
3953
|
+
secretKeys?: T | {
|
|
3954
|
+
name?: T;
|
|
3955
|
+
value?: T;
|
|
3956
|
+
id?: T;
|
|
3957
|
+
};
|
|
3958
|
+
webhooks?: T | {
|
|
3959
|
+
name?: T;
|
|
3960
|
+
url?: T;
|
|
3961
|
+
secret?: T;
|
|
3962
|
+
enabled?: T;
|
|
3963
|
+
id?: T;
|
|
3964
|
+
};
|
|
3965
|
+
updatedAt?: T;
|
|
3966
|
+
createdAt?: T;
|
|
3967
|
+
}
|
|
3968
|
+
/**
|
|
3969
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
3970
|
+
* via the `definition` "tenant-metadata_select".
|
|
3971
|
+
*/
|
|
3972
|
+
interface TenantMetadataSelect<T extends boolean = true> {
|
|
3973
|
+
tenant?: T;
|
|
3974
|
+
siteInfo?: T | {
|
|
3975
|
+
title?: T;
|
|
3976
|
+
description?: T;
|
|
3977
|
+
keywords?: T;
|
|
3978
|
+
author?: T;
|
|
3979
|
+
siteUrl?: T;
|
|
3980
|
+
};
|
|
3981
|
+
branding?: T | {
|
|
3982
|
+
logo?: T;
|
|
3983
|
+
logoDark?: T;
|
|
3984
|
+
logomark?: T;
|
|
3985
|
+
favicon?: T;
|
|
3986
|
+
themeColor?: T;
|
|
3987
|
+
};
|
|
3988
|
+
openGraph?: T | {
|
|
3989
|
+
ogTitle?: T;
|
|
3990
|
+
ogDescription?: T;
|
|
3991
|
+
ogImage?: T;
|
|
3992
|
+
ogType?: T;
|
|
3993
|
+
ogLocale?: T;
|
|
3994
|
+
};
|
|
3995
|
+
twitter?: T | {
|
|
3996
|
+
twitterCard?: T;
|
|
3997
|
+
twitterSite?: T;
|
|
3998
|
+
twitterCreator?: T;
|
|
3999
|
+
twitterTitle?: T;
|
|
4000
|
+
twitterDescription?: T;
|
|
4001
|
+
twitterImage?: T;
|
|
4002
|
+
};
|
|
4003
|
+
seo?: T | {
|
|
4004
|
+
robots?: T;
|
|
4005
|
+
googleSiteVerification?: T;
|
|
4006
|
+
bingSiteVerification?: T;
|
|
4007
|
+
naverSiteVerification?: T;
|
|
4008
|
+
canonicalUrl?: T;
|
|
4009
|
+
};
|
|
4010
|
+
pwa?: T | {
|
|
4011
|
+
shortName?: T;
|
|
4012
|
+
backgroundColor?: T;
|
|
4013
|
+
display?: T;
|
|
4014
|
+
};
|
|
4015
|
+
analytics?: T | {
|
|
4016
|
+
googleAnalyticsId?: T;
|
|
4017
|
+
googleTagManagerId?: T;
|
|
4018
|
+
facebookPixelId?: T;
|
|
4019
|
+
linkedInPartnerId?: T;
|
|
4020
|
+
};
|
|
4021
|
+
updatedAt?: T;
|
|
4022
|
+
createdAt?: T;
|
|
4023
|
+
}
|
|
4024
|
+
/**
|
|
4025
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
4026
|
+
* via the `definition` "api-usage_select".
|
|
4027
|
+
*/
|
|
4028
|
+
interface ApiUsageSelect<T extends boolean = true> {
|
|
4029
|
+
tenant?: T;
|
|
4030
|
+
month?: T;
|
|
4031
|
+
count?: T;
|
|
4032
|
+
plan?: T;
|
|
4033
|
+
limit?: T;
|
|
4034
|
+
storageUsed?: T;
|
|
4035
|
+
storageLimit?: T;
|
|
4036
|
+
totalDocuments?: T;
|
|
4037
|
+
videoCount?: T;
|
|
4038
|
+
videoMinutesUsed?: T;
|
|
4039
|
+
deliveryMinutesUsed?: T;
|
|
4040
|
+
updatedAt?: T;
|
|
4041
|
+
createdAt?: T;
|
|
4042
|
+
}
|
|
4043
|
+
/**
|
|
4044
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
4045
|
+
* via the `definition` "subscriptions_select".
|
|
4046
|
+
*/
|
|
4047
|
+
interface SubscriptionsSelect<T extends boolean = true> {
|
|
4048
|
+
provider?: T;
|
|
4049
|
+
currency?: T;
|
|
4050
|
+
tenant?: T;
|
|
4051
|
+
plan?: T;
|
|
4052
|
+
billingCycle?: T;
|
|
4053
|
+
amount?: T;
|
|
4054
|
+
status?: T;
|
|
4055
|
+
billingKey?: T;
|
|
4056
|
+
customerKey?: T;
|
|
4057
|
+
cardInfo?: T | {
|
|
4058
|
+
issuerCode?: T;
|
|
4059
|
+
number?: T;
|
|
4060
|
+
cardType?: T;
|
|
4061
|
+
};
|
|
4062
|
+
polarSubscriptionId?: T;
|
|
4063
|
+
polarCustomerId?: T;
|
|
4064
|
+
polarProductId?: T;
|
|
4065
|
+
currentPeriodStart?: T;
|
|
4066
|
+
currentPeriodEnd?: T;
|
|
4067
|
+
nextBillingDate?: T;
|
|
4068
|
+
cancelAtPeriodEnd?: T;
|
|
4069
|
+
canceledAt?: T;
|
|
4070
|
+
cancelReason?: T;
|
|
4071
|
+
retryCount?: T;
|
|
4072
|
+
graceDeadline?: T;
|
|
4073
|
+
lastPaymentError?: T;
|
|
4074
|
+
pendingPlanChange?: T | {
|
|
4075
|
+
targetPlan?: T;
|
|
4076
|
+
targetAmount?: T;
|
|
4077
|
+
effectiveDate?: T;
|
|
4078
|
+
};
|
|
4079
|
+
updatedAt?: T;
|
|
4080
|
+
createdAt?: T;
|
|
4081
|
+
}
|
|
4082
|
+
/**
|
|
4083
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
4084
|
+
* via the `definition` "billing-history_select".
|
|
4085
|
+
*/
|
|
4086
|
+
interface BillingHistorySelect<T extends boolean = true> {
|
|
4087
|
+
provider?: T;
|
|
4088
|
+
currency?: T;
|
|
4089
|
+
tenant?: T;
|
|
4090
|
+
subscription?: T;
|
|
4091
|
+
type?: T;
|
|
4092
|
+
status?: T;
|
|
4093
|
+
amount?: T;
|
|
4094
|
+
paymentKey?: T;
|
|
4095
|
+
orderId?: T;
|
|
4096
|
+
orderName?: T;
|
|
4097
|
+
plan?: T;
|
|
4098
|
+
billingCycle?: T;
|
|
4099
|
+
periodStart?: T;
|
|
4100
|
+
periodEnd?: T;
|
|
4101
|
+
tossResponse?: T;
|
|
4102
|
+
polarOrderId?: T;
|
|
4103
|
+
polarResponse?: T;
|
|
4104
|
+
errorMessage?: T;
|
|
4105
|
+
retryOf?: T;
|
|
4106
|
+
updatedAt?: T;
|
|
4107
|
+
createdAt?: T;
|
|
4108
|
+
}
|
|
4109
|
+
/**
|
|
4110
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
4111
|
+
* via the `definition` "tenant-logos_select".
|
|
2818
4112
|
*/
|
|
2819
|
-
interface
|
|
4113
|
+
interface TenantLogosSelect<T extends boolean = true> {
|
|
2820
4114
|
tenant?: T;
|
|
2821
4115
|
alt?: T;
|
|
2822
|
-
|
|
2823
|
-
|
|
4116
|
+
lqip?: T;
|
|
4117
|
+
palette?: T | {
|
|
4118
|
+
vibrant?: T;
|
|
4119
|
+
muted?: T;
|
|
4120
|
+
darkVibrant?: T;
|
|
4121
|
+
darkMuted?: T;
|
|
4122
|
+
lightVibrant?: T;
|
|
4123
|
+
lightMuted?: T;
|
|
4124
|
+
};
|
|
2824
4125
|
prefix?: T;
|
|
2825
4126
|
updatedAt?: T;
|
|
2826
4127
|
createdAt?: T;
|
|
@@ -2833,210 +4134,311 @@ interface MediaSelect<T extends boolean = true> {
|
|
|
2833
4134
|
height?: T;
|
|
2834
4135
|
focalX?: T;
|
|
2835
4136
|
focalY?: T;
|
|
4137
|
+
sizes?: T | {
|
|
4138
|
+
'16'?: T | {
|
|
4139
|
+
url?: T;
|
|
4140
|
+
width?: T;
|
|
4141
|
+
height?: T;
|
|
4142
|
+
mimeType?: T;
|
|
4143
|
+
filesize?: T;
|
|
4144
|
+
filename?: T;
|
|
4145
|
+
};
|
|
4146
|
+
'32'?: T | {
|
|
4147
|
+
url?: T;
|
|
4148
|
+
width?: T;
|
|
4149
|
+
height?: T;
|
|
4150
|
+
mimeType?: T;
|
|
4151
|
+
filesize?: T;
|
|
4152
|
+
filename?: T;
|
|
4153
|
+
};
|
|
4154
|
+
'64'?: T | {
|
|
4155
|
+
url?: T;
|
|
4156
|
+
width?: T;
|
|
4157
|
+
height?: T;
|
|
4158
|
+
mimeType?: T;
|
|
4159
|
+
filesize?: T;
|
|
4160
|
+
filename?: T;
|
|
4161
|
+
};
|
|
4162
|
+
'128'?: T | {
|
|
4163
|
+
url?: T;
|
|
4164
|
+
width?: T;
|
|
4165
|
+
height?: T;
|
|
4166
|
+
mimeType?: T;
|
|
4167
|
+
filesize?: T;
|
|
4168
|
+
filename?: T;
|
|
4169
|
+
};
|
|
4170
|
+
'180'?: T | {
|
|
4171
|
+
url?: T;
|
|
4172
|
+
width?: T;
|
|
4173
|
+
height?: T;
|
|
4174
|
+
mimeType?: T;
|
|
4175
|
+
filesize?: T;
|
|
4176
|
+
filename?: T;
|
|
4177
|
+
};
|
|
4178
|
+
'192'?: T | {
|
|
4179
|
+
url?: T;
|
|
4180
|
+
width?: T;
|
|
4181
|
+
height?: T;
|
|
4182
|
+
mimeType?: T;
|
|
4183
|
+
filesize?: T;
|
|
4184
|
+
filename?: T;
|
|
4185
|
+
};
|
|
4186
|
+
'512'?: T | {
|
|
4187
|
+
url?: T;
|
|
4188
|
+
width?: T;
|
|
4189
|
+
height?: T;
|
|
4190
|
+
mimeType?: T;
|
|
4191
|
+
filesize?: T;
|
|
4192
|
+
filename?: T;
|
|
4193
|
+
};
|
|
4194
|
+
};
|
|
2836
4195
|
}
|
|
2837
4196
|
/**
|
|
2838
4197
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
2839
|
-
* via the `definition` "
|
|
4198
|
+
* via the `definition` "tenant-og-images_select".
|
|
2840
4199
|
*/
|
|
2841
|
-
interface
|
|
2842
|
-
|
|
2843
|
-
|
|
2844
|
-
|
|
2845
|
-
|
|
2846
|
-
|
|
2847
|
-
|
|
2848
|
-
|
|
2849
|
-
|
|
2850
|
-
|
|
4200
|
+
interface TenantOgImagesSelect<T extends boolean = true> {
|
|
4201
|
+
tenant?: T;
|
|
4202
|
+
alt?: T;
|
|
4203
|
+
lqip?: T;
|
|
4204
|
+
palette?: T | {
|
|
4205
|
+
vibrant?: T;
|
|
4206
|
+
muted?: T;
|
|
4207
|
+
darkVibrant?: T;
|
|
4208
|
+
darkMuted?: T;
|
|
4209
|
+
lightVibrant?: T;
|
|
4210
|
+
lightMuted?: T;
|
|
4211
|
+
};
|
|
4212
|
+
prefix?: T;
|
|
2851
4213
|
updatedAt?: T;
|
|
2852
4214
|
createdAt?: T;
|
|
4215
|
+
url?: T;
|
|
4216
|
+
thumbnailURL?: T;
|
|
4217
|
+
filename?: T;
|
|
4218
|
+
mimeType?: T;
|
|
4219
|
+
filesize?: T;
|
|
4220
|
+
width?: T;
|
|
4221
|
+
height?: T;
|
|
4222
|
+
focalX?: T;
|
|
4223
|
+
focalY?: T;
|
|
4224
|
+
sizes?: T | {
|
|
4225
|
+
'1200'?: T | {
|
|
4226
|
+
url?: T;
|
|
4227
|
+
width?: T;
|
|
4228
|
+
height?: T;
|
|
4229
|
+
mimeType?: T;
|
|
4230
|
+
filesize?: T;
|
|
4231
|
+
filename?: T;
|
|
4232
|
+
};
|
|
4233
|
+
};
|
|
2853
4234
|
}
|
|
2854
4235
|
/**
|
|
2855
4236
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
2856
|
-
* via the `definition` "
|
|
4237
|
+
* via the `definition` "products_select".
|
|
2857
4238
|
*/
|
|
2858
|
-
interface
|
|
2859
|
-
|
|
2860
|
-
|
|
2861
|
-
|
|
2862
|
-
|
|
4239
|
+
interface ProductsSelect<T extends boolean = true> {
|
|
4240
|
+
_order?: T;
|
|
4241
|
+
tenant?: T;
|
|
4242
|
+
title?: T;
|
|
4243
|
+
subtitle?: T;
|
|
4244
|
+
thumbnail?: T;
|
|
4245
|
+
images?: T;
|
|
4246
|
+
price?: T;
|
|
4247
|
+
compareAtPrice?: T;
|
|
4248
|
+
variants?: T;
|
|
4249
|
+
options?: T;
|
|
4250
|
+
description?: T;
|
|
4251
|
+
generateSlug?: T;
|
|
4252
|
+
slug?: T;
|
|
4253
|
+
sku?: T;
|
|
2863
4254
|
status?: T;
|
|
2864
|
-
|
|
2865
|
-
|
|
2866
|
-
|
|
2867
|
-
|
|
2868
|
-
|
|
2869
|
-
|
|
2870
|
-
|
|
2871
|
-
|
|
2872
|
-
|
|
2873
|
-
|
|
2874
|
-
|
|
2875
|
-
plan?: T;
|
|
2876
|
-
features?: T;
|
|
2877
|
-
cors?: T | {
|
|
2878
|
-
origin?: T;
|
|
2879
|
-
id?: T;
|
|
2880
|
-
};
|
|
2881
|
-
clientKey?: T;
|
|
2882
|
-
secretKeys?: T | {
|
|
2883
|
-
name?: T;
|
|
2884
|
-
value?: T;
|
|
2885
|
-
id?: T;
|
|
4255
|
+
isSoldOut?: T;
|
|
4256
|
+
categories?: T;
|
|
4257
|
+
tags?: T;
|
|
4258
|
+
collections?: T;
|
|
4259
|
+
brand?: T;
|
|
4260
|
+
shippingPolicy?: T;
|
|
4261
|
+
weight?: T;
|
|
4262
|
+
dimensions?: T | {
|
|
4263
|
+
width?: T;
|
|
4264
|
+
height?: T;
|
|
4265
|
+
depth?: T;
|
|
2886
4266
|
};
|
|
2887
|
-
|
|
2888
|
-
|
|
2889
|
-
|
|
2890
|
-
|
|
2891
|
-
|
|
2892
|
-
|
|
4267
|
+
isDigital?: T;
|
|
4268
|
+
isFeatured?: T;
|
|
4269
|
+
publishedAt?: T;
|
|
4270
|
+
seo?: T | {
|
|
4271
|
+
title?: T;
|
|
4272
|
+
description?: T;
|
|
4273
|
+
noIndex?: T;
|
|
4274
|
+
canonical?: T;
|
|
4275
|
+
openGraph?: T | {
|
|
4276
|
+
title?: T;
|
|
4277
|
+
description?: T;
|
|
4278
|
+
image?: T;
|
|
4279
|
+
};
|
|
2893
4280
|
};
|
|
4281
|
+
externalId?: T;
|
|
4282
|
+
barcode?: T;
|
|
4283
|
+
minOrderQuantity?: T;
|
|
4284
|
+
maxOrderQuantity?: T;
|
|
4285
|
+
metadata?: T;
|
|
2894
4286
|
updatedAt?: T;
|
|
2895
4287
|
createdAt?: T;
|
|
4288
|
+
deletedAt?: T;
|
|
2896
4289
|
}
|
|
2897
4290
|
/**
|
|
2898
4291
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
2899
|
-
* via the `definition` "
|
|
4292
|
+
* via the `definition` "product-variants_select".
|
|
2900
4293
|
*/
|
|
2901
|
-
interface
|
|
4294
|
+
interface ProductVariantsSelect<T extends boolean = true> {
|
|
4295
|
+
_order?: T;
|
|
4296
|
+
'_product-variants_variants_order'?: T;
|
|
2902
4297
|
tenant?: T;
|
|
2903
|
-
|
|
2904
|
-
|
|
2905
|
-
|
|
2906
|
-
|
|
2907
|
-
|
|
2908
|
-
|
|
2909
|
-
|
|
2910
|
-
|
|
2911
|
-
|
|
2912
|
-
|
|
2913
|
-
|
|
2914
|
-
|
|
2915
|
-
themeColor?: T;
|
|
2916
|
-
};
|
|
2917
|
-
openGraph?: T | {
|
|
2918
|
-
ogTitle?: T;
|
|
2919
|
-
ogDescription?: T;
|
|
2920
|
-
ogImage?: T;
|
|
2921
|
-
ogType?: T;
|
|
2922
|
-
ogLocale?: T;
|
|
2923
|
-
};
|
|
2924
|
-
twitter?: T | {
|
|
2925
|
-
twitterCard?: T;
|
|
2926
|
-
twitterSite?: T;
|
|
2927
|
-
twitterCreator?: T;
|
|
2928
|
-
twitterTitle?: T;
|
|
2929
|
-
twitterDescription?: T;
|
|
2930
|
-
twitterImage?: T;
|
|
2931
|
-
};
|
|
2932
|
-
seo?: T | {
|
|
2933
|
-
robots?: T;
|
|
2934
|
-
googleSiteVerification?: T;
|
|
2935
|
-
bingSiteVerification?: T;
|
|
2936
|
-
naverSiteVerification?: T;
|
|
2937
|
-
canonicalUrl?: T;
|
|
2938
|
-
};
|
|
2939
|
-
pwa?: T | {
|
|
2940
|
-
shortName?: T;
|
|
2941
|
-
backgroundColor?: T;
|
|
2942
|
-
display?: T;
|
|
2943
|
-
};
|
|
2944
|
-
analytics?: T | {
|
|
2945
|
-
googleAnalyticsId?: T;
|
|
2946
|
-
googleTagManagerId?: T;
|
|
2947
|
-
facebookPixelId?: T;
|
|
2948
|
-
linkedInPartnerId?: T;
|
|
4298
|
+
product?: T;
|
|
4299
|
+
title?: T;
|
|
4300
|
+
sku?: T;
|
|
4301
|
+
price?: T;
|
|
4302
|
+
barcode?: T;
|
|
4303
|
+
weight?: T;
|
|
4304
|
+
isSoldOut?: T;
|
|
4305
|
+
images?: T;
|
|
4306
|
+
dimensions?: T | {
|
|
4307
|
+
width?: T;
|
|
4308
|
+
height?: T;
|
|
4309
|
+
depth?: T;
|
|
2949
4310
|
};
|
|
4311
|
+
externalId?: T;
|
|
4312
|
+
status?: T;
|
|
4313
|
+
position?: T;
|
|
4314
|
+
metadata?: T;
|
|
4315
|
+
productOptions?: T;
|
|
4316
|
+
updatedAt?: T;
|
|
4317
|
+
createdAt?: T;
|
|
4318
|
+
deletedAt?: T;
|
|
4319
|
+
}
|
|
4320
|
+
/**
|
|
4321
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
4322
|
+
* via the `definition` "product-options_select".
|
|
4323
|
+
*/
|
|
4324
|
+
interface ProductOptionsSelect<T extends boolean = true> {
|
|
4325
|
+
_order?: T;
|
|
4326
|
+
'_product-options_productOptions_order'?: T;
|
|
4327
|
+
'_product-options_options_order'?: T;
|
|
4328
|
+
tenant?: T;
|
|
4329
|
+
product?: T;
|
|
4330
|
+
variant?: T;
|
|
4331
|
+
title?: T;
|
|
4332
|
+
sku?: T;
|
|
4333
|
+
stock?: T;
|
|
4334
|
+
reservedStock?: T;
|
|
4335
|
+
priceAdjustment?: T;
|
|
4336
|
+
barcode?: T;
|
|
4337
|
+
weight?: T;
|
|
4338
|
+
lowStockThreshold?: T;
|
|
4339
|
+
externalId?: T;
|
|
4340
|
+
metadata?: T;
|
|
2950
4341
|
updatedAt?: T;
|
|
2951
4342
|
createdAt?: T;
|
|
4343
|
+
deletedAt?: T;
|
|
2952
4344
|
}
|
|
2953
4345
|
/**
|
|
2954
4346
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
2955
|
-
* via the `definition` "
|
|
4347
|
+
* via the `definition` "product-categories_select".
|
|
2956
4348
|
*/
|
|
2957
|
-
interface
|
|
4349
|
+
interface ProductCategoriesSelect<T extends boolean = true> {
|
|
4350
|
+
_order?: T;
|
|
2958
4351
|
tenant?: T;
|
|
2959
|
-
|
|
2960
|
-
|
|
2961
|
-
|
|
2962
|
-
|
|
2963
|
-
|
|
2964
|
-
|
|
2965
|
-
|
|
4352
|
+
title?: T;
|
|
4353
|
+
generateSlug?: T;
|
|
4354
|
+
slug?: T;
|
|
4355
|
+
description?: T;
|
|
4356
|
+
image?: T;
|
|
4357
|
+
parent?: T;
|
|
4358
|
+
color?: T;
|
|
2966
4359
|
updatedAt?: T;
|
|
2967
4360
|
createdAt?: T;
|
|
4361
|
+
deletedAt?: T;
|
|
2968
4362
|
}
|
|
2969
4363
|
/**
|
|
2970
4364
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
2971
|
-
* via the `definition` "
|
|
4365
|
+
* via the `definition` "product-tags_select".
|
|
2972
4366
|
*/
|
|
2973
|
-
interface
|
|
2974
|
-
|
|
2975
|
-
currency?: T;
|
|
4367
|
+
interface ProductTagsSelect<T extends boolean = true> {
|
|
4368
|
+
_order?: T;
|
|
2976
4369
|
tenant?: T;
|
|
2977
|
-
|
|
2978
|
-
|
|
2979
|
-
|
|
4370
|
+
title?: T;
|
|
4371
|
+
generateSlug?: T;
|
|
4372
|
+
slug?: T;
|
|
4373
|
+
description?: T;
|
|
4374
|
+
image?: T;
|
|
4375
|
+
parent?: T;
|
|
4376
|
+
color?: T;
|
|
4377
|
+
updatedAt?: T;
|
|
4378
|
+
createdAt?: T;
|
|
4379
|
+
deletedAt?: T;
|
|
4380
|
+
}
|
|
4381
|
+
/**
|
|
4382
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
4383
|
+
* via the `definition` "product-collections_select".
|
|
4384
|
+
*/
|
|
4385
|
+
interface ProductCollectionsSelect<T extends boolean = true> {
|
|
4386
|
+
_order?: T;
|
|
4387
|
+
tenant?: T;
|
|
4388
|
+
title?: T;
|
|
4389
|
+
thumbnail?: T;
|
|
4390
|
+
images?: T;
|
|
4391
|
+
description?: T;
|
|
4392
|
+
products?: T;
|
|
4393
|
+
generateSlug?: T;
|
|
4394
|
+
slug?: T;
|
|
2980
4395
|
status?: T;
|
|
2981
|
-
|
|
2982
|
-
|
|
2983
|
-
|
|
2984
|
-
|
|
2985
|
-
|
|
2986
|
-
|
|
2987
|
-
|
|
2988
|
-
|
|
2989
|
-
|
|
2990
|
-
|
|
2991
|
-
|
|
2992
|
-
|
|
2993
|
-
|
|
2994
|
-
cancelAtPeriodEnd?: T;
|
|
2995
|
-
canceledAt?: T;
|
|
2996
|
-
cancelReason?: T;
|
|
2997
|
-
retryCount?: T;
|
|
2998
|
-
graceDeadline?: T;
|
|
2999
|
-
lastPaymentError?: T;
|
|
3000
|
-
pendingPlanChange?: T | {
|
|
3001
|
-
targetPlan?: T;
|
|
3002
|
-
targetAmount?: T;
|
|
3003
|
-
effectiveDate?: T;
|
|
4396
|
+
sortOrder?: T;
|
|
4397
|
+
isFeatured?: T;
|
|
4398
|
+
publishedAt?: T;
|
|
4399
|
+
seo?: T | {
|
|
4400
|
+
title?: T;
|
|
4401
|
+
description?: T;
|
|
4402
|
+
noIndex?: T;
|
|
4403
|
+
canonical?: T;
|
|
4404
|
+
openGraph?: T | {
|
|
4405
|
+
title?: T;
|
|
4406
|
+
description?: T;
|
|
4407
|
+
image?: T;
|
|
4408
|
+
};
|
|
3004
4409
|
};
|
|
4410
|
+
metadata?: T;
|
|
3005
4411
|
updatedAt?: T;
|
|
3006
4412
|
createdAt?: T;
|
|
4413
|
+
deletedAt?: T;
|
|
3007
4414
|
}
|
|
3008
4415
|
/**
|
|
3009
4416
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3010
|
-
* via the `definition` "
|
|
4417
|
+
* via the `definition` "brands_select".
|
|
3011
4418
|
*/
|
|
3012
|
-
interface
|
|
3013
|
-
|
|
3014
|
-
currency?: T;
|
|
4419
|
+
interface BrandsSelect<T extends boolean = true> {
|
|
4420
|
+
_order?: T;
|
|
3015
4421
|
tenant?: T;
|
|
3016
|
-
|
|
3017
|
-
|
|
4422
|
+
name?: T;
|
|
4423
|
+
generateSlug?: T;
|
|
4424
|
+
slug?: T;
|
|
4425
|
+
logo?: T;
|
|
4426
|
+
logoDark?: T;
|
|
4427
|
+
logomark?: T;
|
|
4428
|
+
description?: T;
|
|
4429
|
+
website?: T;
|
|
4430
|
+
isFeatured?: T;
|
|
3018
4431
|
status?: T;
|
|
3019
|
-
|
|
3020
|
-
paymentKey?: T;
|
|
3021
|
-
orderId?: T;
|
|
3022
|
-
orderName?: T;
|
|
3023
|
-
plan?: T;
|
|
3024
|
-
billingCycle?: T;
|
|
3025
|
-
periodStart?: T;
|
|
3026
|
-
periodEnd?: T;
|
|
3027
|
-
tossResponse?: T;
|
|
3028
|
-
polarOrderId?: T;
|
|
3029
|
-
polarResponse?: T;
|
|
3030
|
-
errorMessage?: T;
|
|
3031
|
-
retryOf?: T;
|
|
4432
|
+
metadata?: T;
|
|
3032
4433
|
updatedAt?: T;
|
|
3033
4434
|
createdAt?: T;
|
|
4435
|
+
deletedAt?: T;
|
|
3034
4436
|
}
|
|
3035
4437
|
/**
|
|
3036
4438
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3037
|
-
* via the `definition` "
|
|
4439
|
+
* via the `definition` "brand-logos_select".
|
|
3038
4440
|
*/
|
|
3039
|
-
interface
|
|
4441
|
+
interface BrandLogosSelect<T extends boolean = true> {
|
|
3040
4442
|
tenant?: T;
|
|
3041
4443
|
alt?: T;
|
|
3042
4444
|
lqip?: T;
|
|
@@ -3121,9 +4523,9 @@ interface TenantLogosSelect<T extends boolean = true> {
|
|
|
3121
4523
|
}
|
|
3122
4524
|
/**
|
|
3123
4525
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3124
|
-
* via the `definition` "
|
|
4526
|
+
* via the `definition` "product-images_select".
|
|
3125
4527
|
*/
|
|
3126
|
-
interface
|
|
4528
|
+
interface ProductImagesSelect<T extends boolean = true> {
|
|
3127
4529
|
tenant?: T;
|
|
3128
4530
|
alt?: T;
|
|
3129
4531
|
lqip?: T;
|
|
@@ -3148,7 +4550,31 @@ interface TenantOgImagesSelect<T extends boolean = true> {
|
|
|
3148
4550
|
focalX?: T;
|
|
3149
4551
|
focalY?: T;
|
|
3150
4552
|
sizes?: T | {
|
|
3151
|
-
'
|
|
4553
|
+
'200'?: T | {
|
|
4554
|
+
url?: T;
|
|
4555
|
+
width?: T;
|
|
4556
|
+
height?: T;
|
|
4557
|
+
mimeType?: T;
|
|
4558
|
+
filesize?: T;
|
|
4559
|
+
filename?: T;
|
|
4560
|
+
};
|
|
4561
|
+
'400'?: T | {
|
|
4562
|
+
url?: T;
|
|
4563
|
+
width?: T;
|
|
4564
|
+
height?: T;
|
|
4565
|
+
mimeType?: T;
|
|
4566
|
+
filesize?: T;
|
|
4567
|
+
filename?: T;
|
|
4568
|
+
};
|
|
4569
|
+
'800'?: T | {
|
|
4570
|
+
url?: T;
|
|
4571
|
+
width?: T;
|
|
4572
|
+
height?: T;
|
|
4573
|
+
mimeType?: T;
|
|
4574
|
+
filesize?: T;
|
|
4575
|
+
filename?: T;
|
|
4576
|
+
};
|
|
4577
|
+
'1600'?: T | {
|
|
3152
4578
|
url?: T;
|
|
3153
4579
|
width?: T;
|
|
3154
4580
|
height?: T;
|
|
@@ -3160,130 +4586,212 @@ interface TenantOgImagesSelect<T extends boolean = true> {
|
|
|
3160
4586
|
}
|
|
3161
4587
|
/**
|
|
3162
4588
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3163
|
-
* via the `definition` "
|
|
4589
|
+
* via the `definition` "orders_select".
|
|
4590
|
+
*/
|
|
4591
|
+
interface OrdersSelect<T extends boolean = true> {
|
|
4592
|
+
tenant?: T;
|
|
4593
|
+
orderNumber?: T;
|
|
4594
|
+
status?: T;
|
|
4595
|
+
totalAmount?: T;
|
|
4596
|
+
discountCode?: T;
|
|
4597
|
+
discountAmount?: T;
|
|
4598
|
+
refundedAmount?: T;
|
|
4599
|
+
shippingFee?: T;
|
|
4600
|
+
source?: T;
|
|
4601
|
+
adminNotes?: T;
|
|
4602
|
+
customerNotes?: T;
|
|
4603
|
+
customer?: T;
|
|
4604
|
+
customerSnapshot?: T | {
|
|
4605
|
+
name?: T;
|
|
4606
|
+
email?: T;
|
|
4607
|
+
phone?: T;
|
|
4608
|
+
};
|
|
4609
|
+
shippingAddress?: T | {
|
|
4610
|
+
recipientName?: T;
|
|
4611
|
+
phone?: T;
|
|
4612
|
+
postalCode?: T;
|
|
4613
|
+
address1?: T;
|
|
4614
|
+
address2?: T;
|
|
4615
|
+
deliveryMessage?: T;
|
|
4616
|
+
};
|
|
4617
|
+
products?: T;
|
|
4618
|
+
transactions?: T;
|
|
4619
|
+
fulfillments?: T;
|
|
4620
|
+
returns?: T;
|
|
4621
|
+
exchanges?: T;
|
|
4622
|
+
metadata?: T;
|
|
4623
|
+
updatedAt?: T;
|
|
4624
|
+
createdAt?: T;
|
|
4625
|
+
}
|
|
4626
|
+
/**
|
|
4627
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
4628
|
+
* via the `definition` "order-products_select".
|
|
4629
|
+
*/
|
|
4630
|
+
interface OrderProductsSelect<T extends boolean = true> {
|
|
4631
|
+
tenant?: T;
|
|
4632
|
+
order?: T;
|
|
4633
|
+
product?: T;
|
|
4634
|
+
variant?: T;
|
|
4635
|
+
option?: T;
|
|
4636
|
+
quantity?: T;
|
|
4637
|
+
unitPrice?: T;
|
|
4638
|
+
totalPrice?: T;
|
|
4639
|
+
title?: T;
|
|
4640
|
+
updatedAt?: T;
|
|
4641
|
+
createdAt?: T;
|
|
4642
|
+
}
|
|
4643
|
+
/**
|
|
4644
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
4645
|
+
* via the `definition` "transactions_select".
|
|
4646
|
+
*/
|
|
4647
|
+
interface TransactionsSelect<T extends boolean = true> {
|
|
4648
|
+
tenant?: T;
|
|
4649
|
+
type?: T;
|
|
4650
|
+
status?: T;
|
|
4651
|
+
order?: T;
|
|
4652
|
+
paymentId?: T;
|
|
4653
|
+
paymentMethod?: T;
|
|
4654
|
+
receiptUrl?: T;
|
|
4655
|
+
totalAmount?: T;
|
|
4656
|
+
pgProvider?: T;
|
|
4657
|
+
metadata?: T;
|
|
4658
|
+
updatedAt?: T;
|
|
4659
|
+
createdAt?: T;
|
|
4660
|
+
}
|
|
4661
|
+
/**
|
|
4662
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
4663
|
+
* via the `definition` "order-status-logs_select".
|
|
4664
|
+
*/
|
|
4665
|
+
interface OrderStatusLogsSelect<T extends boolean = true> {
|
|
4666
|
+
tenant?: T;
|
|
4667
|
+
order?: T;
|
|
4668
|
+
fromStatus?: T;
|
|
4669
|
+
toStatus?: T;
|
|
4670
|
+
changedBy?: T;
|
|
4671
|
+
reason?: T;
|
|
4672
|
+
metadata?: T;
|
|
4673
|
+
updatedAt?: T;
|
|
4674
|
+
createdAt?: T;
|
|
4675
|
+
}
|
|
4676
|
+
/**
|
|
4677
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
4678
|
+
* via the `definition` "fulfillments_select".
|
|
4679
|
+
*/
|
|
4680
|
+
interface FulfillmentsSelect<T extends boolean = true> {
|
|
4681
|
+
tenant?: T;
|
|
4682
|
+
order?: T;
|
|
4683
|
+
status?: T;
|
|
4684
|
+
carrier?: T;
|
|
4685
|
+
trackingNumber?: T;
|
|
4686
|
+
shippedAt?: T;
|
|
4687
|
+
deliveredAt?: T;
|
|
4688
|
+
items?: T;
|
|
4689
|
+
metadata?: T;
|
|
4690
|
+
updatedAt?: T;
|
|
4691
|
+
createdAt?: T;
|
|
4692
|
+
}
|
|
4693
|
+
/**
|
|
4694
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
4695
|
+
* via the `definition` "fulfillment-items_select".
|
|
3164
4696
|
*/
|
|
3165
|
-
interface
|
|
3166
|
-
_order?: T;
|
|
4697
|
+
interface FulfillmentItemsSelect<T extends boolean = true> {
|
|
3167
4698
|
tenant?: T;
|
|
3168
|
-
|
|
3169
|
-
|
|
3170
|
-
|
|
3171
|
-
images?: T;
|
|
3172
|
-
price?: T;
|
|
3173
|
-
compareAtPrice?: T;
|
|
3174
|
-
variants?: T;
|
|
3175
|
-
options?: T;
|
|
3176
|
-
description?: T;
|
|
3177
|
-
generateSlug?: T;
|
|
3178
|
-
slug?: T;
|
|
3179
|
-
sku?: T;
|
|
3180
|
-
status?: T;
|
|
3181
|
-
isSoldOut?: T;
|
|
3182
|
-
categories?: T;
|
|
3183
|
-
tags?: T;
|
|
3184
|
-
collections?: T;
|
|
3185
|
-
brand?: T;
|
|
3186
|
-
shippingPolicy?: T;
|
|
3187
|
-
metadata?: T;
|
|
4699
|
+
fulfillment?: T;
|
|
4700
|
+
orderProduct?: T;
|
|
4701
|
+
quantity?: T;
|
|
3188
4702
|
updatedAt?: T;
|
|
3189
4703
|
createdAt?: T;
|
|
3190
|
-
deletedAt?: T;
|
|
3191
4704
|
}
|
|
3192
4705
|
/**
|
|
3193
4706
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3194
|
-
* via the `definition` "
|
|
4707
|
+
* via the `definition` "returns_select".
|
|
3195
4708
|
*/
|
|
3196
|
-
interface
|
|
3197
|
-
_order?: T;
|
|
3198
|
-
'_product-variants_variants_order'?: T;
|
|
4709
|
+
interface ReturnsSelect<T extends boolean = true> {
|
|
3199
4710
|
tenant?: T;
|
|
3200
|
-
|
|
3201
|
-
|
|
3202
|
-
|
|
3203
|
-
|
|
3204
|
-
|
|
3205
|
-
|
|
3206
|
-
|
|
3207
|
-
|
|
3208
|
-
|
|
3209
|
-
productOptions?: T;
|
|
4711
|
+
order?: T;
|
|
4712
|
+
status?: T;
|
|
4713
|
+
reason?: T;
|
|
4714
|
+
reasonDetail?: T;
|
|
4715
|
+
returnProducts?: T;
|
|
4716
|
+
adminNotes?: T;
|
|
4717
|
+
completedAt?: T;
|
|
4718
|
+
refundReceiptUrl?: T;
|
|
4719
|
+
refundAmount?: T;
|
|
3210
4720
|
updatedAt?: T;
|
|
3211
4721
|
createdAt?: T;
|
|
3212
|
-
deletedAt?: T;
|
|
3213
4722
|
}
|
|
3214
4723
|
/**
|
|
3215
4724
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3216
|
-
* via the `definition` "
|
|
4725
|
+
* via the `definition` "return-products_select".
|
|
3217
4726
|
*/
|
|
3218
|
-
interface
|
|
3219
|
-
_order?: T;
|
|
3220
|
-
'_product-options_productOptions_order'?: T;
|
|
3221
|
-
'_product-options_options_order'?: T;
|
|
4727
|
+
interface ReturnProductsSelect<T extends boolean = true> {
|
|
3222
4728
|
tenant?: T;
|
|
4729
|
+
return?: T;
|
|
4730
|
+
order?: T;
|
|
4731
|
+
status?: T;
|
|
4732
|
+
orderProduct?: T;
|
|
3223
4733
|
product?: T;
|
|
3224
4734
|
variant?: T;
|
|
4735
|
+
option?: T;
|
|
4736
|
+
quantity?: T;
|
|
3225
4737
|
title?: T;
|
|
3226
|
-
sku?: T;
|
|
3227
|
-
stock?: T;
|
|
3228
|
-
reservedStock?: T;
|
|
3229
|
-
priceAdjustment?: T;
|
|
3230
|
-
metadata?: T;
|
|
3231
4738
|
updatedAt?: T;
|
|
3232
4739
|
createdAt?: T;
|
|
3233
|
-
deletedAt?: T;
|
|
3234
4740
|
}
|
|
3235
4741
|
/**
|
|
3236
4742
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3237
|
-
* via the `definition` "
|
|
4743
|
+
* via the `definition` "exchanges_select".
|
|
3238
4744
|
*/
|
|
3239
|
-
interface
|
|
3240
|
-
_order?: T;
|
|
4745
|
+
interface ExchangesSelect<T extends boolean = true> {
|
|
3241
4746
|
tenant?: T;
|
|
3242
|
-
|
|
3243
|
-
|
|
3244
|
-
|
|
3245
|
-
|
|
3246
|
-
|
|
3247
|
-
|
|
3248
|
-
|
|
4747
|
+
order?: T;
|
|
4748
|
+
status?: T;
|
|
4749
|
+
reason?: T;
|
|
4750
|
+
reasonDetail?: T;
|
|
4751
|
+
shippingFee?: T;
|
|
4752
|
+
adminNotes?: T;
|
|
4753
|
+
completedAt?: T;
|
|
4754
|
+
exchangeProducts?: T;
|
|
3249
4755
|
updatedAt?: T;
|
|
3250
4756
|
createdAt?: T;
|
|
3251
|
-
deletedAt?: T;
|
|
3252
4757
|
}
|
|
3253
4758
|
/**
|
|
3254
4759
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3255
|
-
* via the `definition` "
|
|
4760
|
+
* via the `definition` "exchange-products_select".
|
|
3256
4761
|
*/
|
|
3257
|
-
interface
|
|
3258
|
-
_order?: T;
|
|
4762
|
+
interface ExchangeProductsSelect<T extends boolean = true> {
|
|
3259
4763
|
tenant?: T;
|
|
4764
|
+
exchange?: T;
|
|
4765
|
+
order?: T;
|
|
4766
|
+
orderProduct?: T;
|
|
4767
|
+
product?: T;
|
|
4768
|
+
variant?: T;
|
|
4769
|
+
option?: T;
|
|
4770
|
+
quantity?: T;
|
|
4771
|
+
newVariant?: T;
|
|
4772
|
+
newOption?: T;
|
|
3260
4773
|
title?: T;
|
|
3261
|
-
generateSlug?: T;
|
|
3262
|
-
slug?: T;
|
|
3263
|
-
description?: T;
|
|
3264
|
-
image?: T;
|
|
3265
|
-
parent?: T;
|
|
3266
|
-
color?: T;
|
|
3267
4774
|
updatedAt?: T;
|
|
3268
4775
|
createdAt?: T;
|
|
3269
|
-
deletedAt?: T;
|
|
3270
4776
|
}
|
|
3271
4777
|
/**
|
|
3272
4778
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3273
|
-
* via the `definition` "
|
|
4779
|
+
* via the `definition` "shipping-policies_select".
|
|
3274
4780
|
*/
|
|
3275
|
-
interface
|
|
4781
|
+
interface ShippingPoliciesSelect<T extends boolean = true> {
|
|
3276
4782
|
_order?: T;
|
|
3277
4783
|
tenant?: T;
|
|
3278
4784
|
title?: T;
|
|
3279
|
-
|
|
3280
|
-
|
|
3281
|
-
|
|
3282
|
-
|
|
4785
|
+
baseFee?: T;
|
|
4786
|
+
freeShippingThreshold?: T;
|
|
4787
|
+
jejuExtraFee?: T;
|
|
4788
|
+
islandExtraFee?: T;
|
|
3283
4789
|
generateSlug?: T;
|
|
3284
4790
|
slug?: T;
|
|
4791
|
+
description?: T;
|
|
4792
|
+
estimatedDays?: T;
|
|
3285
4793
|
status?: T;
|
|
3286
|
-
|
|
4794
|
+
isDefault?: T;
|
|
3287
4795
|
metadata?: T;
|
|
3288
4796
|
updatedAt?: T;
|
|
3289
4797
|
createdAt?: T;
|
|
@@ -3291,116 +4799,82 @@ interface ProductCollectionsSelect<T extends boolean = true> {
|
|
|
3291
4799
|
}
|
|
3292
4800
|
/**
|
|
3293
4801
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3294
|
-
* via the `definition` "
|
|
4802
|
+
* via the `definition` "customers_select".
|
|
3295
4803
|
*/
|
|
3296
|
-
interface
|
|
4804
|
+
interface CustomersSelect<T extends boolean = true> {
|
|
4805
|
+
_customers_customers_order?: T;
|
|
3297
4806
|
_order?: T;
|
|
3298
4807
|
tenant?: T;
|
|
3299
4808
|
name?: T;
|
|
3300
|
-
|
|
3301
|
-
|
|
3302
|
-
|
|
3303
|
-
|
|
3304
|
-
|
|
3305
|
-
|
|
3306
|
-
|
|
4809
|
+
email?: T;
|
|
4810
|
+
phone?: T;
|
|
4811
|
+
groups?: T;
|
|
4812
|
+
socialId?: T;
|
|
4813
|
+
note?: T;
|
|
4814
|
+
birthDate?: T;
|
|
4815
|
+
gender?: T;
|
|
4816
|
+
orders?: T;
|
|
4817
|
+
addresses?: T;
|
|
4818
|
+
hashedPassword?: T;
|
|
4819
|
+
salt?: T;
|
|
4820
|
+
verificationToken?: T;
|
|
4821
|
+
resetPasswordToken?: T;
|
|
4822
|
+
resetPasswordExpiry?: T;
|
|
4823
|
+
loginAttempts?: T;
|
|
4824
|
+
lockedUntil?: T;
|
|
4825
|
+
authProvider?: T;
|
|
4826
|
+
isGuest?: T;
|
|
4827
|
+
isVerified?: T;
|
|
4828
|
+
marketingConsent?: T;
|
|
4829
|
+
consentedAt?: T;
|
|
4830
|
+
lastLoginAt?: T;
|
|
3307
4831
|
metadata?: T;
|
|
3308
4832
|
updatedAt?: T;
|
|
3309
4833
|
createdAt?: T;
|
|
3310
|
-
deletedAt?: T;
|
|
3311
4834
|
}
|
|
3312
|
-
/**
|
|
3313
|
-
* This interface was referenced by `Config`'s JSON-Schema
|
|
3314
|
-
* via the `definition` "
|
|
3315
|
-
*/
|
|
3316
|
-
interface
|
|
3317
|
-
tenant?: T;
|
|
3318
|
-
|
|
3319
|
-
|
|
3320
|
-
|
|
3321
|
-
|
|
3322
|
-
|
|
3323
|
-
|
|
3324
|
-
|
|
3325
|
-
|
|
3326
|
-
|
|
3327
|
-
|
|
3328
|
-
|
|
3329
|
-
updatedAt?: T;
|
|
3330
|
-
createdAt?: T;
|
|
3331
|
-
url?: T;
|
|
3332
|
-
thumbnailURL?: T;
|
|
3333
|
-
filename?: T;
|
|
3334
|
-
mimeType?: T;
|
|
3335
|
-
filesize?: T;
|
|
3336
|
-
width?: T;
|
|
3337
|
-
height?: T;
|
|
3338
|
-
focalX?: T;
|
|
3339
|
-
focalY?: T;
|
|
3340
|
-
sizes?: T | {
|
|
3341
|
-
'16'?: T | {
|
|
3342
|
-
url?: T;
|
|
3343
|
-
width?: T;
|
|
3344
|
-
height?: T;
|
|
3345
|
-
mimeType?: T;
|
|
3346
|
-
filesize?: T;
|
|
3347
|
-
filename?: T;
|
|
3348
|
-
};
|
|
3349
|
-
'32'?: T | {
|
|
3350
|
-
url?: T;
|
|
3351
|
-
width?: T;
|
|
3352
|
-
height?: T;
|
|
3353
|
-
mimeType?: T;
|
|
3354
|
-
filesize?: T;
|
|
3355
|
-
filename?: T;
|
|
3356
|
-
};
|
|
3357
|
-
'64'?: T | {
|
|
3358
|
-
url?: T;
|
|
3359
|
-
width?: T;
|
|
3360
|
-
height?: T;
|
|
3361
|
-
mimeType?: T;
|
|
3362
|
-
filesize?: T;
|
|
3363
|
-
filename?: T;
|
|
3364
|
-
};
|
|
3365
|
-
'128'?: T | {
|
|
3366
|
-
url?: T;
|
|
3367
|
-
width?: T;
|
|
3368
|
-
height?: T;
|
|
3369
|
-
mimeType?: T;
|
|
3370
|
-
filesize?: T;
|
|
3371
|
-
filename?: T;
|
|
3372
|
-
};
|
|
3373
|
-
'180'?: T | {
|
|
3374
|
-
url?: T;
|
|
3375
|
-
width?: T;
|
|
3376
|
-
height?: T;
|
|
3377
|
-
mimeType?: T;
|
|
3378
|
-
filesize?: T;
|
|
3379
|
-
filename?: T;
|
|
3380
|
-
};
|
|
3381
|
-
'192'?: T | {
|
|
3382
|
-
url?: T;
|
|
3383
|
-
width?: T;
|
|
3384
|
-
height?: T;
|
|
3385
|
-
mimeType?: T;
|
|
3386
|
-
filesize?: T;
|
|
3387
|
-
filename?: T;
|
|
3388
|
-
};
|
|
3389
|
-
'512'?: T | {
|
|
3390
|
-
url?: T;
|
|
3391
|
-
width?: T;
|
|
3392
|
-
height?: T;
|
|
3393
|
-
mimeType?: T;
|
|
3394
|
-
filesize?: T;
|
|
3395
|
-
filename?: T;
|
|
3396
|
-
};
|
|
3397
|
-
};
|
|
4835
|
+
/**
|
|
4836
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
4837
|
+
* via the `definition` "customer-addresses_select".
|
|
4838
|
+
*/
|
|
4839
|
+
interface CustomerAddressesSelect<T extends boolean = true> {
|
|
4840
|
+
tenant?: T;
|
|
4841
|
+
customer?: T;
|
|
4842
|
+
label?: T;
|
|
4843
|
+
recipientName?: T;
|
|
4844
|
+
phone?: T;
|
|
4845
|
+
postalCode?: T;
|
|
4846
|
+
address1?: T;
|
|
4847
|
+
address2?: T;
|
|
4848
|
+
isDefault?: T;
|
|
4849
|
+
deliveryMessage?: T;
|
|
4850
|
+
updatedAt?: T;
|
|
4851
|
+
createdAt?: T;
|
|
3398
4852
|
}
|
|
3399
4853
|
/**
|
|
3400
4854
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3401
|
-
* via the `definition` "
|
|
4855
|
+
* via the `definition` "customer-groups_select".
|
|
3402
4856
|
*/
|
|
3403
|
-
interface
|
|
4857
|
+
interface CustomerGroupsSelect<T extends boolean = true> {
|
|
4858
|
+
_order?: T;
|
|
4859
|
+
tenant?: T;
|
|
4860
|
+
title?: T;
|
|
4861
|
+
generateSlug?: T;
|
|
4862
|
+
slug?: T;
|
|
4863
|
+
description?: T;
|
|
4864
|
+
color?: T;
|
|
4865
|
+
image?: T;
|
|
4866
|
+
status?: T;
|
|
4867
|
+
metadata?: T;
|
|
4868
|
+
customers?: T;
|
|
4869
|
+
updatedAt?: T;
|
|
4870
|
+
createdAt?: T;
|
|
4871
|
+
deletedAt?: T;
|
|
4872
|
+
}
|
|
4873
|
+
/**
|
|
4874
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
4875
|
+
* via the `definition` "customer-group-images_select".
|
|
4876
|
+
*/
|
|
4877
|
+
interface CustomerGroupImagesSelect<T extends boolean = true> {
|
|
3404
4878
|
tenant?: T;
|
|
3405
4879
|
alt?: T;
|
|
3406
4880
|
lqip?: T;
|
|
@@ -3425,7 +4899,15 @@ interface ProductImagesSelect<T extends boolean = true> {
|
|
|
3425
4899
|
focalX?: T;
|
|
3426
4900
|
focalY?: T;
|
|
3427
4901
|
sizes?: T | {
|
|
3428
|
-
'
|
|
4902
|
+
'200'?: T | {
|
|
4903
|
+
url?: T;
|
|
4904
|
+
width?: T;
|
|
4905
|
+
height?: T;
|
|
4906
|
+
mimeType?: T;
|
|
4907
|
+
filesize?: T;
|
|
4908
|
+
filename?: T;
|
|
4909
|
+
};
|
|
4910
|
+
'400'?: T | {
|
|
3429
4911
|
url?: T;
|
|
3430
4912
|
width?: T;
|
|
3431
4913
|
height?: T;
|
|
@@ -3433,7 +4915,7 @@ interface ProductImagesSelect<T extends boolean = true> {
|
|
|
3433
4915
|
filesize?: T;
|
|
3434
4916
|
filename?: T;
|
|
3435
4917
|
};
|
|
3436
|
-
'
|
|
4918
|
+
'800'?: T | {
|
|
3437
4919
|
url?: T;
|
|
3438
4920
|
width?: T;
|
|
3439
4921
|
height?: T;
|
|
@@ -3441,7 +4923,7 @@ interface ProductImagesSelect<T extends boolean = true> {
|
|
|
3441
4923
|
filesize?: T;
|
|
3442
4924
|
filename?: T;
|
|
3443
4925
|
};
|
|
3444
|
-
'
|
|
4926
|
+
'1600'?: T | {
|
|
3445
4927
|
url?: T;
|
|
3446
4928
|
width?: T;
|
|
3447
4929
|
height?: T;
|
|
@@ -3453,22 +4935,12 @@ interface ProductImagesSelect<T extends boolean = true> {
|
|
|
3453
4935
|
}
|
|
3454
4936
|
/**
|
|
3455
4937
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3456
|
-
* via the `definition` "
|
|
4938
|
+
* via the `definition` "carts_select".
|
|
3457
4939
|
*/
|
|
3458
|
-
interface
|
|
4940
|
+
interface CartsSelect<T extends boolean = true> {
|
|
3459
4941
|
tenant?: T;
|
|
3460
|
-
orderNumber?: T;
|
|
3461
|
-
status?: T;
|
|
3462
|
-
totalAmount?: T;
|
|
3463
|
-
discountCode?: T;
|
|
3464
|
-
discountAmount?: T;
|
|
3465
|
-
notes?: T;
|
|
3466
4942
|
customer?: T;
|
|
3467
|
-
|
|
3468
|
-
name?: T;
|
|
3469
|
-
email?: T;
|
|
3470
|
-
phone?: T;
|
|
3471
|
-
};
|
|
4943
|
+
status?: T;
|
|
3472
4944
|
shippingAddress?: T | {
|
|
3473
4945
|
recipientName?: T;
|
|
3474
4946
|
phone?: T;
|
|
@@ -3477,217 +4949,308 @@ interface OrdersSelect<T extends boolean = true> {
|
|
|
3477
4949
|
address2?: T;
|
|
3478
4950
|
deliveryMessage?: T;
|
|
3479
4951
|
};
|
|
3480
|
-
|
|
3481
|
-
|
|
3482
|
-
|
|
3483
|
-
|
|
3484
|
-
|
|
4952
|
+
discountCode?: T;
|
|
4953
|
+
itemsTotal?: T;
|
|
4954
|
+
shippingFee?: T;
|
|
4955
|
+
discountAmount?: T;
|
|
4956
|
+
totalAmount?: T;
|
|
4957
|
+
items?: T;
|
|
4958
|
+
expiresAt?: T;
|
|
3485
4959
|
metadata?: T;
|
|
3486
4960
|
updatedAt?: T;
|
|
3487
4961
|
createdAt?: T;
|
|
3488
4962
|
}
|
|
3489
4963
|
/**
|
|
3490
4964
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3491
|
-
* via the `definition` "
|
|
4965
|
+
* via the `definition` "cart-items_select".
|
|
3492
4966
|
*/
|
|
3493
|
-
interface
|
|
4967
|
+
interface CartItemsSelect<T extends boolean = true> {
|
|
3494
4968
|
tenant?: T;
|
|
3495
|
-
|
|
4969
|
+
cart?: T;
|
|
3496
4970
|
product?: T;
|
|
3497
4971
|
variant?: T;
|
|
3498
4972
|
option?: T;
|
|
3499
4973
|
quantity?: T;
|
|
3500
4974
|
unitPrice?: T;
|
|
3501
|
-
|
|
3502
|
-
title?: T;
|
|
3503
|
-
updatedAt?: T;
|
|
3504
|
-
createdAt?: T;
|
|
3505
|
-
}
|
|
3506
|
-
/**
|
|
3507
|
-
* This interface was referenced by `Config`'s JSON-Schema
|
|
3508
|
-
* via the `definition` "transactions_select".
|
|
3509
|
-
*/
|
|
3510
|
-
interface TransactionsSelect<T extends boolean = true> {
|
|
3511
|
-
tenant?: T;
|
|
3512
|
-
status?: T;
|
|
3513
|
-
order?: T;
|
|
3514
|
-
paymentId?: T;
|
|
3515
|
-
paymentMethod?: T;
|
|
3516
|
-
receiptUrl?: T;
|
|
3517
|
-
totalAmount?: T;
|
|
4975
|
+
metadata?: T;
|
|
3518
4976
|
updatedAt?: T;
|
|
3519
4977
|
createdAt?: T;
|
|
3520
4978
|
}
|
|
3521
4979
|
/**
|
|
3522
4980
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3523
|
-
* via the `definition` "
|
|
4981
|
+
* via the `definition` "discounts_select".
|
|
3524
4982
|
*/
|
|
3525
|
-
interface
|
|
4983
|
+
interface DiscountsSelect<T extends boolean = true> {
|
|
4984
|
+
_order?: T;
|
|
3526
4985
|
tenant?: T;
|
|
3527
|
-
|
|
3528
|
-
|
|
3529
|
-
|
|
3530
|
-
|
|
3531
|
-
|
|
3532
|
-
|
|
3533
|
-
|
|
4986
|
+
code?: T;
|
|
4987
|
+
title?: T;
|
|
4988
|
+
description?: T;
|
|
4989
|
+
value?: T;
|
|
4990
|
+
tiers?: T | {
|
|
4991
|
+
minAmount?: T;
|
|
4992
|
+
discountType?: T;
|
|
4993
|
+
value?: T;
|
|
4994
|
+
id?: T;
|
|
4995
|
+
};
|
|
4996
|
+
minOrderAmount?: T;
|
|
4997
|
+
maxDiscountAmount?: T;
|
|
4998
|
+
startsAt?: T;
|
|
4999
|
+
endsAt?: T;
|
|
5000
|
+
applicableProducts?: T;
|
|
5001
|
+
applicableCategories?: T;
|
|
5002
|
+
type?: T;
|
|
5003
|
+
isActive?: T;
|
|
5004
|
+
usageLimit?: T;
|
|
5005
|
+
usageCount?: T;
|
|
5006
|
+
perCustomerLimit?: T;
|
|
5007
|
+
customerGroups?: T;
|
|
5008
|
+
isAutoApply?: T;
|
|
5009
|
+
priority?: T;
|
|
3534
5010
|
metadata?: T;
|
|
3535
5011
|
updatedAt?: T;
|
|
3536
5012
|
createdAt?: T;
|
|
5013
|
+
deletedAt?: T;
|
|
3537
5014
|
}
|
|
3538
5015
|
/**
|
|
3539
5016
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3540
|
-
* via the `definition` "
|
|
5017
|
+
* via the `definition` "posts_select".
|
|
3541
5018
|
*/
|
|
3542
|
-
interface
|
|
5019
|
+
interface PostsSelect<T extends boolean = true> {
|
|
5020
|
+
_order?: T;
|
|
3543
5021
|
tenant?: T;
|
|
3544
|
-
|
|
3545
|
-
|
|
3546
|
-
|
|
5022
|
+
title?: T;
|
|
5023
|
+
subtitle?: T;
|
|
5024
|
+
excerpt?: T;
|
|
5025
|
+
content?: T;
|
|
5026
|
+
thumbnail?: T;
|
|
5027
|
+
images?: T;
|
|
5028
|
+
generateSlug?: T;
|
|
5029
|
+
slug?: T;
|
|
5030
|
+
author?: T;
|
|
5031
|
+
publishedAt?: T;
|
|
5032
|
+
categories?: T;
|
|
5033
|
+
tags?: T;
|
|
5034
|
+
isFeatured?: T;
|
|
5035
|
+
readTime?: T;
|
|
5036
|
+
seo?: T | {
|
|
5037
|
+
title?: T;
|
|
5038
|
+
description?: T;
|
|
5039
|
+
noIndex?: T;
|
|
5040
|
+
canonical?: T;
|
|
5041
|
+
openGraph?: T | {
|
|
5042
|
+
title?: T;
|
|
5043
|
+
description?: T;
|
|
5044
|
+
image?: T;
|
|
5045
|
+
};
|
|
5046
|
+
};
|
|
5047
|
+
metadata?: T;
|
|
3547
5048
|
updatedAt?: T;
|
|
3548
5049
|
createdAt?: T;
|
|
5050
|
+
deletedAt?: T;
|
|
5051
|
+
_status?: T;
|
|
3549
5052
|
}
|
|
3550
5053
|
/**
|
|
3551
5054
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3552
|
-
* via the `definition` "
|
|
5055
|
+
* via the `definition` "post-authors_select".
|
|
3553
5056
|
*/
|
|
3554
|
-
interface
|
|
5057
|
+
interface PostAuthorsSelect<T extends boolean = true> {
|
|
5058
|
+
_order?: T;
|
|
3555
5059
|
tenant?: T;
|
|
3556
|
-
|
|
5060
|
+
name?: T;
|
|
5061
|
+
generateSlug?: T;
|
|
5062
|
+
slug?: T;
|
|
5063
|
+
avatar?: T;
|
|
5064
|
+
bio?: T;
|
|
5065
|
+
posts?: T;
|
|
5066
|
+
email?: T;
|
|
3557
5067
|
status?: T;
|
|
3558
|
-
|
|
3559
|
-
reasonDetail?: T;
|
|
3560
|
-
returnProducts?: T;
|
|
3561
|
-
refundAmount?: T;
|
|
5068
|
+
metadata?: T;
|
|
3562
5069
|
updatedAt?: T;
|
|
3563
5070
|
createdAt?: T;
|
|
5071
|
+
deletedAt?: T;
|
|
3564
5072
|
}
|
|
3565
5073
|
/**
|
|
3566
5074
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3567
|
-
* via the `definition` "
|
|
5075
|
+
* via the `definition` "post-categories_select".
|
|
3568
5076
|
*/
|
|
3569
|
-
interface
|
|
5077
|
+
interface PostCategoriesSelect<T extends boolean = true> {
|
|
5078
|
+
_order?: T;
|
|
3570
5079
|
tenant?: T;
|
|
3571
|
-
return?: T;
|
|
3572
|
-
order?: T;
|
|
3573
|
-
status?: T;
|
|
3574
|
-
orderProduct?: T;
|
|
3575
|
-
product?: T;
|
|
3576
|
-
variant?: T;
|
|
3577
|
-
option?: T;
|
|
3578
|
-
quantity?: T;
|
|
3579
5080
|
title?: T;
|
|
5081
|
+
generateSlug?: T;
|
|
5082
|
+
slug?: T;
|
|
5083
|
+
description?: T;
|
|
5084
|
+
image?: T;
|
|
5085
|
+
parent?: T;
|
|
5086
|
+
color?: T;
|
|
3580
5087
|
updatedAt?: T;
|
|
3581
5088
|
createdAt?: T;
|
|
5089
|
+
deletedAt?: T;
|
|
3582
5090
|
}
|
|
3583
5091
|
/**
|
|
3584
5092
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3585
|
-
* via the `definition` "
|
|
5093
|
+
* via the `definition` "post-tags_select".
|
|
3586
5094
|
*/
|
|
3587
|
-
interface
|
|
5095
|
+
interface PostTagsSelect<T extends boolean = true> {
|
|
5096
|
+
_order?: T;
|
|
3588
5097
|
tenant?: T;
|
|
3589
|
-
|
|
3590
|
-
|
|
3591
|
-
|
|
3592
|
-
|
|
3593
|
-
|
|
3594
|
-
|
|
5098
|
+
title?: T;
|
|
5099
|
+
generateSlug?: T;
|
|
5100
|
+
slug?: T;
|
|
5101
|
+
description?: T;
|
|
5102
|
+
image?: T;
|
|
5103
|
+
parent?: T;
|
|
5104
|
+
color?: T;
|
|
3595
5105
|
updatedAt?: T;
|
|
3596
5106
|
createdAt?: T;
|
|
5107
|
+
deletedAt?: T;
|
|
3597
5108
|
}
|
|
3598
5109
|
/**
|
|
3599
5110
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3600
|
-
* via the `definition` "
|
|
5111
|
+
* via the `definition` "post-images_select".
|
|
3601
5112
|
*/
|
|
3602
|
-
interface
|
|
5113
|
+
interface PostImagesSelect<T extends boolean = true> {
|
|
3603
5114
|
tenant?: T;
|
|
3604
|
-
|
|
3605
|
-
|
|
3606
|
-
|
|
3607
|
-
|
|
3608
|
-
|
|
3609
|
-
|
|
3610
|
-
|
|
3611
|
-
|
|
3612
|
-
|
|
3613
|
-
|
|
5115
|
+
alt?: T;
|
|
5116
|
+
lqip?: T;
|
|
5117
|
+
palette?: T | {
|
|
5118
|
+
vibrant?: T;
|
|
5119
|
+
muted?: T;
|
|
5120
|
+
darkVibrant?: T;
|
|
5121
|
+
darkMuted?: T;
|
|
5122
|
+
lightVibrant?: T;
|
|
5123
|
+
lightMuted?: T;
|
|
5124
|
+
};
|
|
5125
|
+
prefix?: T;
|
|
3614
5126
|
updatedAt?: T;
|
|
3615
5127
|
createdAt?: T;
|
|
5128
|
+
url?: T;
|
|
5129
|
+
thumbnailURL?: T;
|
|
5130
|
+
filename?: T;
|
|
5131
|
+
mimeType?: T;
|
|
5132
|
+
filesize?: T;
|
|
5133
|
+
width?: T;
|
|
5134
|
+
height?: T;
|
|
5135
|
+
focalX?: T;
|
|
5136
|
+
focalY?: T;
|
|
5137
|
+
sizes?: T | {
|
|
5138
|
+
'200'?: T | {
|
|
5139
|
+
url?: T;
|
|
5140
|
+
width?: T;
|
|
5141
|
+
height?: T;
|
|
5142
|
+
mimeType?: T;
|
|
5143
|
+
filesize?: T;
|
|
5144
|
+
filename?: T;
|
|
5145
|
+
};
|
|
5146
|
+
'400'?: T | {
|
|
5147
|
+
url?: T;
|
|
5148
|
+
width?: T;
|
|
5149
|
+
height?: T;
|
|
5150
|
+
mimeType?: T;
|
|
5151
|
+
filesize?: T;
|
|
5152
|
+
filename?: T;
|
|
5153
|
+
};
|
|
5154
|
+
'800'?: T | {
|
|
5155
|
+
url?: T;
|
|
5156
|
+
width?: T;
|
|
5157
|
+
height?: T;
|
|
5158
|
+
mimeType?: T;
|
|
5159
|
+
filesize?: T;
|
|
5160
|
+
filename?: T;
|
|
5161
|
+
};
|
|
5162
|
+
'1600'?: T | {
|
|
5163
|
+
url?: T;
|
|
5164
|
+
width?: T;
|
|
5165
|
+
height?: T;
|
|
5166
|
+
mimeType?: T;
|
|
5167
|
+
filesize?: T;
|
|
5168
|
+
filename?: T;
|
|
5169
|
+
};
|
|
5170
|
+
};
|
|
3616
5171
|
}
|
|
3617
5172
|
/**
|
|
3618
5173
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3619
|
-
* via the `definition` "
|
|
5174
|
+
* via the `definition` "documents_select".
|
|
3620
5175
|
*/
|
|
3621
|
-
interface
|
|
3622
|
-
_customers_customers_order?: T;
|
|
5176
|
+
interface DocumentsSelect<T extends boolean = true> {
|
|
3623
5177
|
_order?: T;
|
|
3624
5178
|
tenant?: T;
|
|
3625
|
-
|
|
3626
|
-
|
|
3627
|
-
|
|
3628
|
-
|
|
3629
|
-
|
|
3630
|
-
|
|
3631
|
-
|
|
3632
|
-
|
|
3633
|
-
|
|
3634
|
-
|
|
3635
|
-
|
|
3636
|
-
|
|
3637
|
-
|
|
3638
|
-
|
|
3639
|
-
|
|
3640
|
-
|
|
3641
|
-
|
|
3642
|
-
|
|
3643
|
-
|
|
3644
|
-
|
|
5179
|
+
title?: T;
|
|
5180
|
+
summary?: T;
|
|
5181
|
+
content?: T;
|
|
5182
|
+
tags?: T | {
|
|
5183
|
+
tag?: T;
|
|
5184
|
+
id?: T;
|
|
5185
|
+
};
|
|
5186
|
+
changeLog?: T;
|
|
5187
|
+
generateSlug?: T;
|
|
5188
|
+
slug?: T;
|
|
5189
|
+
type?: T;
|
|
5190
|
+
version?: T;
|
|
5191
|
+
effectiveDate?: T;
|
|
5192
|
+
expiryDate?: T;
|
|
5193
|
+
category?: T;
|
|
5194
|
+
isRequired?: T;
|
|
5195
|
+
thumbnail?: T;
|
|
5196
|
+
images?: T;
|
|
5197
|
+
seo?: T | {
|
|
5198
|
+
title?: T;
|
|
5199
|
+
description?: T;
|
|
5200
|
+
noIndex?: T;
|
|
5201
|
+
canonical?: T;
|
|
5202
|
+
openGraph?: T | {
|
|
5203
|
+
title?: T;
|
|
5204
|
+
description?: T;
|
|
5205
|
+
image?: T;
|
|
5206
|
+
};
|
|
5207
|
+
};
|
|
3645
5208
|
metadata?: T;
|
|
3646
5209
|
updatedAt?: T;
|
|
3647
5210
|
createdAt?: T;
|
|
5211
|
+
deletedAt?: T;
|
|
5212
|
+
_status?: T;
|
|
3648
5213
|
}
|
|
3649
5214
|
/**
|
|
3650
5215
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3651
|
-
* via the `definition` "
|
|
5216
|
+
* via the `definition` "document-categories_select".
|
|
3652
5217
|
*/
|
|
3653
|
-
interface
|
|
5218
|
+
interface DocumentCategoriesSelect<T extends boolean = true> {
|
|
5219
|
+
_order?: T;
|
|
3654
5220
|
tenant?: T;
|
|
3655
|
-
|
|
3656
|
-
|
|
3657
|
-
|
|
3658
|
-
|
|
3659
|
-
|
|
3660
|
-
|
|
3661
|
-
|
|
3662
|
-
isDefault?: T;
|
|
3663
|
-
deliveryMessage?: T;
|
|
5221
|
+
title?: T;
|
|
5222
|
+
generateSlug?: T;
|
|
5223
|
+
slug?: T;
|
|
5224
|
+
description?: T;
|
|
5225
|
+
image?: T;
|
|
5226
|
+
parent?: T;
|
|
5227
|
+
color?: T;
|
|
3664
5228
|
updatedAt?: T;
|
|
3665
5229
|
createdAt?: T;
|
|
5230
|
+
deletedAt?: T;
|
|
3666
5231
|
}
|
|
3667
5232
|
/**
|
|
3668
5233
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3669
|
-
* via the `definition` "
|
|
5234
|
+
* via the `definition` "document-types_select".
|
|
3670
5235
|
*/
|
|
3671
|
-
interface
|
|
5236
|
+
interface DocumentTypesSelect<T extends boolean = true> {
|
|
3672
5237
|
_order?: T;
|
|
3673
5238
|
tenant?: T;
|
|
3674
5239
|
title?: T;
|
|
3675
5240
|
generateSlug?: T;
|
|
3676
5241
|
slug?: T;
|
|
3677
5242
|
description?: T;
|
|
3678
|
-
color?: T;
|
|
3679
5243
|
image?: T;
|
|
3680
|
-
|
|
3681
|
-
customers?: T;
|
|
5244
|
+
color?: T;
|
|
3682
5245
|
updatedAt?: T;
|
|
3683
5246
|
createdAt?: T;
|
|
3684
5247
|
deletedAt?: T;
|
|
3685
5248
|
}
|
|
3686
5249
|
/**
|
|
3687
5250
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3688
|
-
* via the `definition` "
|
|
5251
|
+
* via the `definition` "document-images_select".
|
|
3689
5252
|
*/
|
|
3690
|
-
interface
|
|
5253
|
+
interface DocumentImagesSelect<T extends boolean = true> {
|
|
3691
5254
|
tenant?: T;
|
|
3692
5255
|
alt?: T;
|
|
3693
5256
|
lqip?: T;
|
|
@@ -3712,7 +5275,15 @@ interface CustomerGroupImagesSelect<T extends boolean = true> {
|
|
|
3712
5275
|
focalX?: T;
|
|
3713
5276
|
focalY?: T;
|
|
3714
5277
|
sizes?: T | {
|
|
3715
|
-
'
|
|
5278
|
+
'200'?: T | {
|
|
5279
|
+
url?: T;
|
|
5280
|
+
width?: T;
|
|
5281
|
+
height?: T;
|
|
5282
|
+
mimeType?: T;
|
|
5283
|
+
filesize?: T;
|
|
5284
|
+
filename?: T;
|
|
5285
|
+
};
|
|
5286
|
+
'400'?: T | {
|
|
3716
5287
|
url?: T;
|
|
3717
5288
|
width?: T;
|
|
3718
5289
|
height?: T;
|
|
@@ -3720,7 +5291,7 @@ interface CustomerGroupImagesSelect<T extends boolean = true> {
|
|
|
3720
5291
|
filesize?: T;
|
|
3721
5292
|
filename?: T;
|
|
3722
5293
|
};
|
|
3723
|
-
'
|
|
5294
|
+
'800'?: T | {
|
|
3724
5295
|
url?: T;
|
|
3725
5296
|
width?: T;
|
|
3726
5297
|
height?: T;
|
|
@@ -3728,7 +5299,7 @@ interface CustomerGroupImagesSelect<T extends boolean = true> {
|
|
|
3728
5299
|
filesize?: T;
|
|
3729
5300
|
filename?: T;
|
|
3730
5301
|
};
|
|
3731
|
-
'
|
|
5302
|
+
'1600'?: T | {
|
|
3732
5303
|
url?: T;
|
|
3733
5304
|
width?: T;
|
|
3734
5305
|
height?: T;
|
|
@@ -3740,138 +5311,158 @@ interface CustomerGroupImagesSelect<T extends boolean = true> {
|
|
|
3740
5311
|
}
|
|
3741
5312
|
/**
|
|
3742
5313
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3743
|
-
* via the `definition` "
|
|
5314
|
+
* via the `definition` "playlists_select".
|
|
3744
5315
|
*/
|
|
3745
|
-
interface
|
|
5316
|
+
interface PlaylistsSelect<T extends boolean = true> {
|
|
5317
|
+
_order?: T;
|
|
3746
5318
|
tenant?: T;
|
|
3747
|
-
|
|
5319
|
+
title?: T;
|
|
5320
|
+
description?: T;
|
|
5321
|
+
musics?: T;
|
|
5322
|
+
categories?: T;
|
|
5323
|
+
image?: T;
|
|
5324
|
+
generateSlug?: T;
|
|
5325
|
+
slug?: T;
|
|
3748
5326
|
status?: T;
|
|
3749
|
-
|
|
3750
|
-
|
|
3751
|
-
phone?: T;
|
|
3752
|
-
postalCode?: T;
|
|
3753
|
-
address1?: T;
|
|
3754
|
-
address2?: T;
|
|
3755
|
-
deliveryMessage?: T;
|
|
3756
|
-
};
|
|
3757
|
-
discountCode?: T;
|
|
3758
|
-
itemsTotal?: T;
|
|
3759
|
-
shippingFee?: T;
|
|
3760
|
-
discountAmount?: T;
|
|
3761
|
-
totalAmount?: T;
|
|
3762
|
-
items?: T;
|
|
3763
|
-
expiresAt?: T;
|
|
5327
|
+
isFeatured?: T;
|
|
5328
|
+
totalDuration?: T;
|
|
3764
5329
|
metadata?: T;
|
|
3765
5330
|
updatedAt?: T;
|
|
3766
5331
|
createdAt?: T;
|
|
5332
|
+
deletedAt?: T;
|
|
3767
5333
|
}
|
|
3768
5334
|
/**
|
|
3769
5335
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3770
|
-
* via the `definition` "
|
|
5336
|
+
* via the `definition` "playlist-categories_select".
|
|
3771
5337
|
*/
|
|
3772
|
-
interface
|
|
5338
|
+
interface PlaylistCategoriesSelect<T extends boolean = true> {
|
|
5339
|
+
_order?: T;
|
|
3773
5340
|
tenant?: T;
|
|
3774
|
-
|
|
3775
|
-
|
|
3776
|
-
|
|
3777
|
-
|
|
3778
|
-
|
|
3779
|
-
|
|
3780
|
-
|
|
5341
|
+
title?: T;
|
|
5342
|
+
generateSlug?: T;
|
|
5343
|
+
slug?: T;
|
|
5344
|
+
description?: T;
|
|
5345
|
+
image?: T;
|
|
5346
|
+
parent?: T;
|
|
5347
|
+
color?: T;
|
|
3781
5348
|
updatedAt?: T;
|
|
3782
5349
|
createdAt?: T;
|
|
5350
|
+
deletedAt?: T;
|
|
3783
5351
|
}
|
|
3784
5352
|
/**
|
|
3785
5353
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3786
|
-
* via the `definition` "
|
|
5354
|
+
* via the `definition` "musics_select".
|
|
3787
5355
|
*/
|
|
3788
|
-
interface
|
|
5356
|
+
interface MusicsSelect<T extends boolean = true> {
|
|
3789
5357
|
_order?: T;
|
|
5358
|
+
_musics_musics_order?: T;
|
|
3790
5359
|
tenant?: T;
|
|
3791
|
-
|
|
5360
|
+
playlist?: T;
|
|
5361
|
+
url?: T;
|
|
3792
5362
|
title?: T;
|
|
3793
|
-
|
|
3794
|
-
|
|
3795
|
-
|
|
3796
|
-
|
|
3797
|
-
|
|
3798
|
-
value?: T;
|
|
3799
|
-
id?: T;
|
|
3800
|
-
};
|
|
3801
|
-
minOrderAmount?: T;
|
|
3802
|
-
maxDiscountAmount?: T;
|
|
3803
|
-
startsAt?: T;
|
|
3804
|
-
endsAt?: T;
|
|
3805
|
-
applicableProducts?: T;
|
|
3806
|
-
applicableCategories?: T;
|
|
3807
|
-
type?: T;
|
|
3808
|
-
isActive?: T;
|
|
3809
|
-
usageLimit?: T;
|
|
3810
|
-
usageCount?: T;
|
|
3811
|
-
perCustomerLimit?: T;
|
|
5363
|
+
artist?: T;
|
|
5364
|
+
duration?: T;
|
|
5365
|
+
album?: T;
|
|
5366
|
+
genre?: T;
|
|
5367
|
+
releaseDate?: T;
|
|
3812
5368
|
metadata?: T;
|
|
5369
|
+
isValid?: T;
|
|
3813
5370
|
updatedAt?: T;
|
|
3814
5371
|
createdAt?: T;
|
|
3815
5372
|
deletedAt?: T;
|
|
3816
5373
|
}
|
|
3817
5374
|
/**
|
|
3818
5375
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3819
|
-
* via the `definition` "
|
|
5376
|
+
* via the `definition` "playlist-images_select".
|
|
3820
5377
|
*/
|
|
3821
|
-
interface
|
|
3822
|
-
_order?: T;
|
|
5378
|
+
interface PlaylistImagesSelect<T extends boolean = true> {
|
|
3823
5379
|
tenant?: T;
|
|
3824
|
-
|
|
3825
|
-
|
|
3826
|
-
|
|
3827
|
-
|
|
3828
|
-
|
|
3829
|
-
|
|
3830
|
-
|
|
3831
|
-
|
|
3832
|
-
|
|
5380
|
+
alt?: T;
|
|
5381
|
+
lqip?: T;
|
|
5382
|
+
palette?: T | {
|
|
5383
|
+
vibrant?: T;
|
|
5384
|
+
muted?: T;
|
|
5385
|
+
darkVibrant?: T;
|
|
5386
|
+
darkMuted?: T;
|
|
5387
|
+
lightVibrant?: T;
|
|
5388
|
+
lightMuted?: T;
|
|
5389
|
+
};
|
|
5390
|
+
prefix?: T;
|
|
3833
5391
|
updatedAt?: T;
|
|
3834
5392
|
createdAt?: T;
|
|
3835
|
-
|
|
5393
|
+
url?: T;
|
|
5394
|
+
thumbnailURL?: T;
|
|
5395
|
+
filename?: T;
|
|
5396
|
+
mimeType?: T;
|
|
5397
|
+
filesize?: T;
|
|
5398
|
+
width?: T;
|
|
5399
|
+
height?: T;
|
|
5400
|
+
focalX?: T;
|
|
5401
|
+
focalY?: T;
|
|
5402
|
+
sizes?: T | {
|
|
5403
|
+
'200'?: T | {
|
|
5404
|
+
url?: T;
|
|
5405
|
+
width?: T;
|
|
5406
|
+
height?: T;
|
|
5407
|
+
mimeType?: T;
|
|
5408
|
+
filesize?: T;
|
|
5409
|
+
filename?: T;
|
|
5410
|
+
};
|
|
5411
|
+
'400'?: T | {
|
|
5412
|
+
url?: T;
|
|
5413
|
+
width?: T;
|
|
5414
|
+
height?: T;
|
|
5415
|
+
mimeType?: T;
|
|
5416
|
+
filesize?: T;
|
|
5417
|
+
filename?: T;
|
|
5418
|
+
};
|
|
5419
|
+
'800'?: T | {
|
|
5420
|
+
url?: T;
|
|
5421
|
+
width?: T;
|
|
5422
|
+
height?: T;
|
|
5423
|
+
mimeType?: T;
|
|
5424
|
+
filesize?: T;
|
|
5425
|
+
filename?: T;
|
|
5426
|
+
};
|
|
5427
|
+
'1600'?: T | {
|
|
5428
|
+
url?: T;
|
|
5429
|
+
width?: T;
|
|
5430
|
+
height?: T;
|
|
5431
|
+
mimeType?: T;
|
|
5432
|
+
filesize?: T;
|
|
5433
|
+
filename?: T;
|
|
5434
|
+
};
|
|
5435
|
+
};
|
|
3836
5436
|
}
|
|
3837
5437
|
/**
|
|
3838
5438
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3839
|
-
* via the `definition` "
|
|
5439
|
+
* via the `definition` "galleries_select".
|
|
3840
5440
|
*/
|
|
3841
|
-
interface
|
|
5441
|
+
interface GalleriesSelect<T extends boolean = true> {
|
|
3842
5442
|
_order?: T;
|
|
3843
5443
|
tenant?: T;
|
|
3844
5444
|
title?: T;
|
|
3845
|
-
|
|
3846
|
-
excerpt?: T;
|
|
3847
|
-
content?: T;
|
|
3848
|
-
thumbnail?: T;
|
|
5445
|
+
description?: T;
|
|
3849
5446
|
images?: T;
|
|
3850
|
-
generateSlug?: T;
|
|
3851
|
-
slug?: T;
|
|
3852
|
-
author?: T;
|
|
3853
|
-
publishedAt?: T;
|
|
3854
5447
|
categories?: T;
|
|
3855
5448
|
tags?: T;
|
|
3856
|
-
|
|
3857
|
-
|
|
3858
|
-
createdAt?: T;
|
|
3859
|
-
deletedAt?: T;
|
|
3860
|
-
_status?: T;
|
|
3861
|
-
}
|
|
3862
|
-
/**
|
|
3863
|
-
* This interface was referenced by `Config`'s JSON-Schema
|
|
3864
|
-
* via the `definition` "post-authors_select".
|
|
3865
|
-
*/
|
|
3866
|
-
interface PostAuthorsSelect<T extends boolean = true> {
|
|
3867
|
-
_order?: T;
|
|
3868
|
-
tenant?: T;
|
|
3869
|
-
name?: T;
|
|
5449
|
+
status?: T;
|
|
5450
|
+
thumbnail?: T;
|
|
3870
5451
|
generateSlug?: T;
|
|
3871
5452
|
slug?: T;
|
|
3872
|
-
|
|
3873
|
-
|
|
3874
|
-
|
|
5453
|
+
isFeatured?: T;
|
|
5454
|
+
publishedAt?: T;
|
|
5455
|
+
seo?: T | {
|
|
5456
|
+
title?: T;
|
|
5457
|
+
description?: T;
|
|
5458
|
+
noIndex?: T;
|
|
5459
|
+
canonical?: T;
|
|
5460
|
+
openGraph?: T | {
|
|
5461
|
+
title?: T;
|
|
5462
|
+
description?: T;
|
|
5463
|
+
image?: T;
|
|
5464
|
+
};
|
|
5465
|
+
};
|
|
3875
5466
|
metadata?: T;
|
|
3876
5467
|
updatedAt?: T;
|
|
3877
5468
|
createdAt?: T;
|
|
@@ -3879,46 +5470,14 @@ interface PostAuthorsSelect<T extends boolean = true> {
|
|
|
3879
5470
|
}
|
|
3880
5471
|
/**
|
|
3881
5472
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3882
|
-
* via the `definition` "
|
|
3883
|
-
*/
|
|
3884
|
-
interface PostCategoriesSelect<T extends boolean = true> {
|
|
3885
|
-
_order?: T;
|
|
3886
|
-
tenant?: T;
|
|
3887
|
-
title?: T;
|
|
3888
|
-
generateSlug?: T;
|
|
3889
|
-
slug?: T;
|
|
3890
|
-
description?: T;
|
|
3891
|
-
image?: T;
|
|
3892
|
-
parent?: T;
|
|
3893
|
-
color?: T;
|
|
3894
|
-
updatedAt?: T;
|
|
3895
|
-
createdAt?: T;
|
|
3896
|
-
deletedAt?: T;
|
|
3897
|
-
}
|
|
3898
|
-
/**
|
|
3899
|
-
* This interface was referenced by `Config`'s JSON-Schema
|
|
3900
|
-
* via the `definition` "post-tags_select".
|
|
5473
|
+
* via the `definition` "gallery-images_select".
|
|
3901
5474
|
*/
|
|
3902
|
-
interface
|
|
3903
|
-
|
|
5475
|
+
interface GalleryImagesSelect<T extends boolean = true> {
|
|
5476
|
+
'_gallery-images_images_order'?: T;
|
|
3904
5477
|
tenant?: T;
|
|
5478
|
+
gallery?: T;
|
|
3905
5479
|
title?: T;
|
|
3906
|
-
|
|
3907
|
-
slug?: T;
|
|
3908
|
-
description?: T;
|
|
3909
|
-
image?: T;
|
|
3910
|
-
parent?: T;
|
|
3911
|
-
color?: T;
|
|
3912
|
-
updatedAt?: T;
|
|
3913
|
-
createdAt?: T;
|
|
3914
|
-
deletedAt?: T;
|
|
3915
|
-
}
|
|
3916
|
-
/**
|
|
3917
|
-
* This interface was referenced by `Config`'s JSON-Schema
|
|
3918
|
-
* via the `definition` "post-images_select".
|
|
3919
|
-
*/
|
|
3920
|
-
interface PostImagesSelect<T extends boolean = true> {
|
|
3921
|
-
tenant?: T;
|
|
5480
|
+
content?: T;
|
|
3922
5481
|
alt?: T;
|
|
3923
5482
|
lqip?: T;
|
|
3924
5483
|
palette?: T | {
|
|
@@ -3942,7 +5501,15 @@ interface PostImagesSelect<T extends boolean = true> {
|
|
|
3942
5501
|
focalX?: T;
|
|
3943
5502
|
focalY?: T;
|
|
3944
5503
|
sizes?: T | {
|
|
3945
|
-
'
|
|
5504
|
+
'200'?: T | {
|
|
5505
|
+
url?: T;
|
|
5506
|
+
width?: T;
|
|
5507
|
+
height?: T;
|
|
5508
|
+
mimeType?: T;
|
|
5509
|
+
filesize?: T;
|
|
5510
|
+
filename?: T;
|
|
5511
|
+
};
|
|
5512
|
+
'400'?: T | {
|
|
3946
5513
|
url?: T;
|
|
3947
5514
|
width?: T;
|
|
3948
5515
|
height?: T;
|
|
@@ -3950,7 +5517,7 @@ interface PostImagesSelect<T extends boolean = true> {
|
|
|
3950
5517
|
filesize?: T;
|
|
3951
5518
|
filename?: T;
|
|
3952
5519
|
};
|
|
3953
|
-
'
|
|
5520
|
+
'800'?: T | {
|
|
3954
5521
|
url?: T;
|
|
3955
5522
|
width?: T;
|
|
3956
5523
|
height?: T;
|
|
@@ -3958,7 +5525,7 @@ interface PostImagesSelect<T extends boolean = true> {
|
|
|
3958
5525
|
filesize?: T;
|
|
3959
5526
|
filename?: T;
|
|
3960
5527
|
};
|
|
3961
|
-
'
|
|
5528
|
+
'1600'?: T | {
|
|
3962
5529
|
url?: T;
|
|
3963
5530
|
width?: T;
|
|
3964
5531
|
height?: T;
|
|
@@ -3970,38 +5537,27 @@ interface PostImagesSelect<T extends boolean = true> {
|
|
|
3970
5537
|
}
|
|
3971
5538
|
/**
|
|
3972
5539
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3973
|
-
* via the `definition` "
|
|
5540
|
+
* via the `definition` "gallery-categories_select".
|
|
3974
5541
|
*/
|
|
3975
|
-
interface
|
|
5542
|
+
interface GalleryCategoriesSelect<T extends boolean = true> {
|
|
3976
5543
|
_order?: T;
|
|
3977
5544
|
tenant?: T;
|
|
3978
5545
|
title?: T;
|
|
3979
|
-
summary?: T;
|
|
3980
|
-
content?: T;
|
|
3981
|
-
tags?: T | {
|
|
3982
|
-
tag?: T;
|
|
3983
|
-
id?: T;
|
|
3984
|
-
};
|
|
3985
|
-
changeLog?: T;
|
|
3986
5546
|
generateSlug?: T;
|
|
3987
5547
|
slug?: T;
|
|
3988
|
-
|
|
3989
|
-
|
|
3990
|
-
|
|
3991
|
-
|
|
3992
|
-
category?: T;
|
|
3993
|
-
isRequired?: T;
|
|
3994
|
-
metadata?: T;
|
|
5548
|
+
description?: T;
|
|
5549
|
+
image?: T;
|
|
5550
|
+
parent?: T;
|
|
5551
|
+
color?: T;
|
|
3995
5552
|
updatedAt?: T;
|
|
3996
5553
|
createdAt?: T;
|
|
3997
5554
|
deletedAt?: T;
|
|
3998
|
-
_status?: T;
|
|
3999
5555
|
}
|
|
4000
5556
|
/**
|
|
4001
5557
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
4002
|
-
* via the `definition` "
|
|
5558
|
+
* via the `definition` "gallery-tags_select".
|
|
4003
5559
|
*/
|
|
4004
|
-
interface
|
|
5560
|
+
interface GalleryTagsSelect<T extends boolean = true> {
|
|
4005
5561
|
_order?: T;
|
|
4006
5562
|
tenant?: T;
|
|
4007
5563
|
title?: T;
|
|
@@ -4017,26 +5573,96 @@ interface DocumentCategoriesSelect<T extends boolean = true> {
|
|
|
4017
5573
|
}
|
|
4018
5574
|
/**
|
|
4019
5575
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
4020
|
-
* via the `definition` "
|
|
5576
|
+
* via the `definition` "flows_select".
|
|
4021
5577
|
*/
|
|
4022
|
-
interface
|
|
4023
|
-
_order?: T;
|
|
5578
|
+
interface FlowsSelect<T extends boolean = true> {
|
|
4024
5579
|
tenant?: T;
|
|
4025
5580
|
title?: T;
|
|
4026
5581
|
generateSlug?: T;
|
|
4027
5582
|
slug?: T;
|
|
4028
5583
|
description?: T;
|
|
4029
|
-
|
|
5584
|
+
canvas?: T;
|
|
5585
|
+
status?: T;
|
|
5586
|
+
isFeatured?: T;
|
|
5587
|
+
thumbnail?: T;
|
|
5588
|
+
tags?: T;
|
|
5589
|
+
metadata?: T;
|
|
5590
|
+
updatedAt?: T;
|
|
5591
|
+
createdAt?: T;
|
|
5592
|
+
deletedAt?: T;
|
|
5593
|
+
_status?: T;
|
|
5594
|
+
}
|
|
5595
|
+
/**
|
|
5596
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
5597
|
+
* via the `definition` "flow-node-types_select".
|
|
5598
|
+
*/
|
|
5599
|
+
interface FlowNodeTypesSelect<T extends boolean = true> {
|
|
5600
|
+
_order?: T;
|
|
5601
|
+
tenant?: T;
|
|
5602
|
+
title?: T;
|
|
5603
|
+
generateSlug?: T;
|
|
5604
|
+
slug?: T;
|
|
4030
5605
|
color?: T;
|
|
5606
|
+
defaultSize?: T | {
|
|
5607
|
+
width?: T;
|
|
5608
|
+
height?: T;
|
|
5609
|
+
};
|
|
5610
|
+
transparentBackground?: T;
|
|
5611
|
+
fields?: T | {
|
|
5612
|
+
name?: T;
|
|
5613
|
+
label?: T;
|
|
5614
|
+
fieldType?: T;
|
|
5615
|
+
options?: T | {
|
|
5616
|
+
label?: T;
|
|
5617
|
+
value?: T;
|
|
5618
|
+
id?: T;
|
|
5619
|
+
};
|
|
5620
|
+
defaultValue?: T;
|
|
5621
|
+
required?: T;
|
|
5622
|
+
id?: T;
|
|
5623
|
+
};
|
|
4031
5624
|
updatedAt?: T;
|
|
4032
5625
|
createdAt?: T;
|
|
4033
5626
|
deletedAt?: T;
|
|
4034
5627
|
}
|
|
4035
5628
|
/**
|
|
4036
5629
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
4037
|
-
* via the `definition` "
|
|
5630
|
+
* via the `definition` "flow-edge-types_select".
|
|
4038
5631
|
*/
|
|
4039
|
-
interface
|
|
5632
|
+
interface FlowEdgeTypesSelect<T extends boolean = true> {
|
|
5633
|
+
_order?: T;
|
|
5634
|
+
tenant?: T;
|
|
5635
|
+
title?: T;
|
|
5636
|
+
generateSlug?: T;
|
|
5637
|
+
slug?: T;
|
|
5638
|
+
color?: T;
|
|
5639
|
+
strokeWidth?: T;
|
|
5640
|
+
animated?: T;
|
|
5641
|
+
lineStyle?: T;
|
|
5642
|
+
markerStart?: T;
|
|
5643
|
+
markerEnd?: T;
|
|
5644
|
+
fields?: T | {
|
|
5645
|
+
name?: T;
|
|
5646
|
+
label?: T;
|
|
5647
|
+
fieldType?: T;
|
|
5648
|
+
options?: T | {
|
|
5649
|
+
label?: T;
|
|
5650
|
+
value?: T;
|
|
5651
|
+
id?: T;
|
|
5652
|
+
};
|
|
5653
|
+
defaultValue?: T;
|
|
5654
|
+
required?: T;
|
|
5655
|
+
id?: T;
|
|
5656
|
+
};
|
|
5657
|
+
updatedAt?: T;
|
|
5658
|
+
createdAt?: T;
|
|
5659
|
+
deletedAt?: T;
|
|
5660
|
+
}
|
|
5661
|
+
/**
|
|
5662
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
5663
|
+
* via the `definition` "flow-images_select".
|
|
5664
|
+
*/
|
|
5665
|
+
interface FlowImagesSelect<T extends boolean = true> {
|
|
4040
5666
|
tenant?: T;
|
|
4041
5667
|
alt?: T;
|
|
4042
5668
|
lqip?: T;
|
|
@@ -4061,7 +5687,15 @@ interface DocumentImagesSelect<T extends boolean = true> {
|
|
|
4061
5687
|
focalX?: T;
|
|
4062
5688
|
focalY?: T;
|
|
4063
5689
|
sizes?: T | {
|
|
4064
|
-
'
|
|
5690
|
+
'200'?: T | {
|
|
5691
|
+
url?: T;
|
|
5692
|
+
width?: T;
|
|
5693
|
+
height?: T;
|
|
5694
|
+
mimeType?: T;
|
|
5695
|
+
filesize?: T;
|
|
5696
|
+
filename?: T;
|
|
5697
|
+
};
|
|
5698
|
+
'400'?: T | {
|
|
4065
5699
|
url?: T;
|
|
4066
5700
|
width?: T;
|
|
4067
5701
|
height?: T;
|
|
@@ -4069,7 +5703,7 @@ interface DocumentImagesSelect<T extends boolean = true> {
|
|
|
4069
5703
|
filesize?: T;
|
|
4070
5704
|
filename?: T;
|
|
4071
5705
|
};
|
|
4072
|
-
'
|
|
5706
|
+
'800'?: T | {
|
|
4073
5707
|
url?: T;
|
|
4074
5708
|
width?: T;
|
|
4075
5709
|
height?: T;
|
|
@@ -4077,7 +5711,7 @@ interface DocumentImagesSelect<T extends boolean = true> {
|
|
|
4077
5711
|
filesize?: T;
|
|
4078
5712
|
filename?: T;
|
|
4079
5713
|
};
|
|
4080
|
-
'
|
|
5714
|
+
'1600'?: T | {
|
|
4081
5715
|
url?: T;
|
|
4082
5716
|
width?: T;
|
|
4083
5717
|
height?: T;
|
|
@@ -4089,17 +5723,59 @@ interface DocumentImagesSelect<T extends boolean = true> {
|
|
|
4089
5723
|
}
|
|
4090
5724
|
/**
|
|
4091
5725
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
4092
|
-
* via the `definition` "
|
|
5726
|
+
* via the `definition` "flow-tags_select".
|
|
4093
5727
|
*/
|
|
4094
|
-
interface
|
|
5728
|
+
interface FlowTagsSelect<T extends boolean = true> {
|
|
4095
5729
|
_order?: T;
|
|
4096
5730
|
tenant?: T;
|
|
4097
5731
|
title?: T;
|
|
5732
|
+
generateSlug?: T;
|
|
5733
|
+
slug?: T;
|
|
4098
5734
|
description?: T;
|
|
4099
|
-
musics?: T;
|
|
4100
5735
|
image?: T;
|
|
5736
|
+
parent?: T;
|
|
5737
|
+
color?: T;
|
|
5738
|
+
updatedAt?: T;
|
|
5739
|
+
createdAt?: T;
|
|
5740
|
+
deletedAt?: T;
|
|
5741
|
+
}
|
|
5742
|
+
/**
|
|
5743
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
5744
|
+
* via the `definition` "videos_select".
|
|
5745
|
+
*/
|
|
5746
|
+
interface VideosSelect<T extends boolean = true> {
|
|
5747
|
+
tenant?: T;
|
|
5748
|
+
title?: T;
|
|
5749
|
+
filename?: T;
|
|
5750
|
+
description?: T;
|
|
5751
|
+
sourceLiveStream?: T;
|
|
5752
|
+
status?: T;
|
|
5753
|
+
duration?: T;
|
|
5754
|
+
aspectRatio?: T;
|
|
5755
|
+
maxResolution?: T;
|
|
5756
|
+
videoQuality?: T;
|
|
5757
|
+
mp4Support?: T;
|
|
5758
|
+
muxAssetId?: T;
|
|
5759
|
+
muxPlaybackId?: T;
|
|
5760
|
+
muxUploadId?: T;
|
|
5761
|
+
thumbnail?: T;
|
|
4101
5762
|
generateSlug?: T;
|
|
4102
5763
|
slug?: T;
|
|
5764
|
+
publishedAt?: T;
|
|
5765
|
+
isFeatured?: T;
|
|
5766
|
+
categories?: T;
|
|
5767
|
+
tags?: T;
|
|
5768
|
+
seo?: T | {
|
|
5769
|
+
title?: T;
|
|
5770
|
+
description?: T;
|
|
5771
|
+
noIndex?: T;
|
|
5772
|
+
canonical?: T;
|
|
5773
|
+
openGraph?: T | {
|
|
5774
|
+
title?: T;
|
|
5775
|
+
description?: T;
|
|
5776
|
+
image?: T;
|
|
5777
|
+
};
|
|
5778
|
+
};
|
|
4103
5779
|
metadata?: T;
|
|
4104
5780
|
updatedAt?: T;
|
|
4105
5781
|
createdAt?: T;
|
|
@@ -4107,28 +5783,45 @@ interface PlaylistsSelect<T extends boolean = true> {
|
|
|
4107
5783
|
}
|
|
4108
5784
|
/**
|
|
4109
5785
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
4110
|
-
* via the `definition` "
|
|
5786
|
+
* via the `definition` "video-categories_select".
|
|
4111
5787
|
*/
|
|
4112
|
-
interface
|
|
5788
|
+
interface VideoCategoriesSelect<T extends boolean = true> {
|
|
4113
5789
|
_order?: T;
|
|
4114
|
-
_musics_musics_order?: T;
|
|
4115
5790
|
tenant?: T;
|
|
4116
|
-
playlist?: T;
|
|
4117
|
-
url?: T;
|
|
4118
5791
|
title?: T;
|
|
4119
|
-
|
|
4120
|
-
|
|
4121
|
-
|
|
4122
|
-
|
|
5792
|
+
generateSlug?: T;
|
|
5793
|
+
slug?: T;
|
|
5794
|
+
description?: T;
|
|
5795
|
+
image?: T;
|
|
5796
|
+
parent?: T;
|
|
5797
|
+
color?: T;
|
|
4123
5798
|
updatedAt?: T;
|
|
4124
5799
|
createdAt?: T;
|
|
4125
5800
|
deletedAt?: T;
|
|
4126
5801
|
}
|
|
4127
5802
|
/**
|
|
4128
5803
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
4129
|
-
* via the `definition` "
|
|
5804
|
+
* via the `definition` "video-tags_select".
|
|
4130
5805
|
*/
|
|
4131
|
-
interface
|
|
5806
|
+
interface VideoTagsSelect<T extends boolean = true> {
|
|
5807
|
+
_order?: T;
|
|
5808
|
+
tenant?: T;
|
|
5809
|
+
title?: T;
|
|
5810
|
+
generateSlug?: T;
|
|
5811
|
+
slug?: T;
|
|
5812
|
+
description?: T;
|
|
5813
|
+
image?: T;
|
|
5814
|
+
parent?: T;
|
|
5815
|
+
color?: T;
|
|
5816
|
+
updatedAt?: T;
|
|
5817
|
+
createdAt?: T;
|
|
5818
|
+
deletedAt?: T;
|
|
5819
|
+
}
|
|
5820
|
+
/**
|
|
5821
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
5822
|
+
* via the `definition` "video-images_select".
|
|
5823
|
+
*/
|
|
5824
|
+
interface VideoImagesSelect<T extends boolean = true> {
|
|
4132
5825
|
tenant?: T;
|
|
4133
5826
|
alt?: T;
|
|
4134
5827
|
lqip?: T;
|
|
@@ -4153,7 +5846,15 @@ interface PlaylistImagesSelect<T extends boolean = true> {
|
|
|
4153
5846
|
focalX?: T;
|
|
4154
5847
|
focalY?: T;
|
|
4155
5848
|
sizes?: T | {
|
|
4156
|
-
'
|
|
5849
|
+
'200'?: T | {
|
|
5850
|
+
url?: T;
|
|
5851
|
+
width?: T;
|
|
5852
|
+
height?: T;
|
|
5853
|
+
mimeType?: T;
|
|
5854
|
+
filesize?: T;
|
|
5855
|
+
filename?: T;
|
|
5856
|
+
};
|
|
5857
|
+
'400'?: T | {
|
|
4157
5858
|
url?: T;
|
|
4158
5859
|
width?: T;
|
|
4159
5860
|
height?: T;
|
|
@@ -4161,7 +5862,7 @@ interface PlaylistImagesSelect<T extends boolean = true> {
|
|
|
4161
5862
|
filesize?: T;
|
|
4162
5863
|
filename?: T;
|
|
4163
5864
|
};
|
|
4164
|
-
'
|
|
5865
|
+
'800'?: T | {
|
|
4165
5866
|
url?: T;
|
|
4166
5867
|
width?: T;
|
|
4167
5868
|
height?: T;
|
|
@@ -4169,7 +5870,7 @@ interface PlaylistImagesSelect<T extends boolean = true> {
|
|
|
4169
5870
|
filesize?: T;
|
|
4170
5871
|
filename?: T;
|
|
4171
5872
|
};
|
|
4172
|
-
'
|
|
5873
|
+
'1600'?: T | {
|
|
4173
5874
|
url?: T;
|
|
4174
5875
|
width?: T;
|
|
4175
5876
|
height?: T;
|
|
@@ -4181,26 +5882,33 @@ interface PlaylistImagesSelect<T extends boolean = true> {
|
|
|
4181
5882
|
}
|
|
4182
5883
|
/**
|
|
4183
5884
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
4184
|
-
* via the `definition` "
|
|
5885
|
+
* via the `definition` "live-streams_select".
|
|
4185
5886
|
*/
|
|
4186
|
-
interface
|
|
5887
|
+
interface LiveStreamsSelect<T extends boolean = true> {
|
|
4187
5888
|
tenant?: T;
|
|
4188
5889
|
title?: T;
|
|
5890
|
+
description?: T;
|
|
5891
|
+
scheduledAt?: T;
|
|
5892
|
+
thumbnail?: T;
|
|
4189
5893
|
generateSlug?: T;
|
|
4190
5894
|
slug?: T;
|
|
4191
|
-
|
|
4192
|
-
|
|
5895
|
+
muxLiveStreamId?: T;
|
|
5896
|
+
muxPlaybackId?: T;
|
|
5897
|
+
streamKey?: T;
|
|
4193
5898
|
status?: T;
|
|
4194
|
-
|
|
5899
|
+
latencyMode?: T;
|
|
5900
|
+
reconnectWindow?: T;
|
|
5901
|
+
activeAssetId?: T;
|
|
5902
|
+
recentAssetIds?: T;
|
|
4195
5903
|
updatedAt?: T;
|
|
4196
5904
|
createdAt?: T;
|
|
4197
5905
|
deletedAt?: T;
|
|
4198
5906
|
}
|
|
4199
5907
|
/**
|
|
4200
5908
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
4201
|
-
* via the `definition` "
|
|
5909
|
+
* via the `definition` "live-stream-images_select".
|
|
4202
5910
|
*/
|
|
4203
|
-
interface
|
|
5911
|
+
interface LiveStreamImagesSelect<T extends boolean = true> {
|
|
4204
5912
|
tenant?: T;
|
|
4205
5913
|
alt?: T;
|
|
4206
5914
|
lqip?: T;
|
|
@@ -4225,7 +5933,15 @@ interface FlowImagesSelect<T extends boolean = true> {
|
|
|
4225
5933
|
focalX?: T;
|
|
4226
5934
|
focalY?: T;
|
|
4227
5935
|
sizes?: T | {
|
|
4228
|
-
'
|
|
5936
|
+
'200'?: T | {
|
|
5937
|
+
url?: T;
|
|
5938
|
+
width?: T;
|
|
5939
|
+
height?: T;
|
|
5940
|
+
mimeType?: T;
|
|
5941
|
+
filesize?: T;
|
|
5942
|
+
filename?: T;
|
|
5943
|
+
};
|
|
5944
|
+
'400'?: T | {
|
|
4229
5945
|
url?: T;
|
|
4230
5946
|
width?: T;
|
|
4231
5947
|
height?: T;
|
|
@@ -4233,7 +5949,7 @@ interface FlowImagesSelect<T extends boolean = true> {
|
|
|
4233
5949
|
filesize?: T;
|
|
4234
5950
|
filename?: T;
|
|
4235
5951
|
};
|
|
4236
|
-
'
|
|
5952
|
+
'800'?: T | {
|
|
4237
5953
|
url?: T;
|
|
4238
5954
|
width?: T;
|
|
4239
5955
|
height?: T;
|
|
@@ -4241,7 +5957,7 @@ interface FlowImagesSelect<T extends boolean = true> {
|
|
|
4241
5957
|
filesize?: T;
|
|
4242
5958
|
filename?: T;
|
|
4243
5959
|
};
|
|
4244
|
-
'
|
|
5960
|
+
'1600'?: T | {
|
|
4245
5961
|
url?: T;
|
|
4246
5962
|
width?: T;
|
|
4247
5963
|
height?: T;
|
|
@@ -4444,4 +6160,4 @@ declare module 'payload' {
|
|
|
4444
6160
|
}
|
|
4445
6161
|
}
|
|
4446
6162
|
|
|
4447
|
-
export type {
|
|
6163
|
+
export type { DocumentType as $, Audience as A, BrandLogo as B, Cart as C, CustomerGroup as D, Exchange as E, Form as F, CustomerGroupImage as G, CustomerAddress as H, IframeBlock as I, FulfillmentItem as J, ReturnProduct as K, ExchangeProduct as L, Media as M, OrderStatusLog as N, Order as O, Product as P, Discount as Q, Return as R, SupportedTimezones as S, Transaction as T, UserAuthOperations as U, Post as V, PostImage as W, PostAuthor as X, PostCategory as Y, PostTag as Z, Document as _, OrderProduct as a, CartItemsSelect as a$, DocumentImage as a0, DocumentCategory as a1, Playlist as a2, Music as a3, PlaylistCategory as a4, PlaylistImage as a5, Gallery as a6, GalleryImage as a7, GalleryCategory as a8, GalleryTag as a9, TenantLogosSelect as aA, TenantOgImagesSelect as aB, ProductsSelect as aC, ProductVariantsSelect as aD, ProductOptionsSelect as aE, ProductCategoriesSelect as aF, ProductTagsSelect as aG, ProductCollectionsSelect as aH, BrandsSelect as aI, BrandLogosSelect as aJ, ProductImagesSelect as aK, OrdersSelect as aL, OrderProductsSelect as aM, TransactionsSelect as aN, OrderStatusLogsSelect as aO, FulfillmentsSelect as aP, FulfillmentItemsSelect as aQ, ReturnsSelect as aR, ReturnProductsSelect as aS, ExchangesSelect as aT, ExchangeProductsSelect as aU, ShippingPoliciesSelect as aV, CustomersSelect as aW, CustomerAddressesSelect as aX, CustomerGroupsSelect as aY, CustomerGroupImagesSelect as aZ, CartsSelect as a_, Flow as aa, FlowImage as ab, FlowTag as ac, FlowNodeType as ad, FlowEdgeType as ae, Video as af, LiveStream as ag, LiveStreamImage as ah, VideoImage as ai, VideoCategory as aj, VideoTag as ak, FormSubmission as al, PayloadKv as am, PayloadLockedDocument as an, PayloadPreference as ao, PayloadMigration as ap, UsersSelect as aq, FieldConfigsSelect as ar, MediaSelect as as, AudiencesSelect as at, EmailLogsSelect as au, TenantsSelect as av, TenantMetadataSelect as aw, ApiUsageSelect as ax, SubscriptionsSelect as ay, BillingHistorySelect as az, Fulfillment as b, DiscountsSelect as b0, PostsSelect as b1, PostAuthorsSelect as b2, PostCategoriesSelect as b3, PostTagsSelect as b4, PostImagesSelect as b5, DocumentsSelect as b6, DocumentCategoriesSelect as b7, DocumentTypesSelect as b8, DocumentImagesSelect as b9, Auth as bA, PlaylistsSelect as ba, PlaylistCategoriesSelect as bb, MusicsSelect as bc, PlaylistImagesSelect as bd, GalleriesSelect as be, GalleryImagesSelect as bf, GalleryCategoriesSelect as bg, GalleryTagsSelect as bh, FlowsSelect as bi, FlowNodeTypesSelect as bj, FlowEdgeTypesSelect as bk, FlowImagesSelect as bl, FlowTagsSelect as bm, VideosSelect as bn, VideoCategoriesSelect as bo, VideoTagsSelect as bp, VideoImagesSelect as bq, LiveStreamsSelect as br, LiveStreamImagesSelect as bs, FormsSelect as bt, FormSubmissionsSelect as bu, PayloadKvSelect as bv, PayloadLockedDocumentsSelect as bw, PayloadPreferencesSelect as bx, PayloadMigrationsSelect as by, CollectionsWidget as bz, CartItem as c, Config as d, CustomerAuthOperations as e, PlayerBlock as f, CodeBlock as g, User as h, Tenant as i, FieldConfig as j, EmailLog as k, TenantMetadatum as l, TenantOgImage as m, ApiUsage as n, Subscription as o, BillingHistory as p, TenantLogo as q, ProductImage as r, ProductVariant as s, ProductOption as t, ProductCategory as u, ProductTag as v, ProductCollection as w, Brand as x, ShippingPolicy as y, Customer as z };
|