@wix/pro-gallery 1.0.31 → 1.0.32

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.
Files changed (42) hide show
  1. package/build/cjs/index.typings.d.ts +1 -0
  2. package/build/cjs/index.typings.js +24 -0
  3. package/build/cjs/index.typings.js.map +1 -0
  4. package/build/cjs/meta.d.ts +1 -0
  5. package/build/cjs/meta.js +24 -0
  6. package/build/cjs/meta.js.map +1 -0
  7. package/build/cjs/src/pro-gallery-v2-gallery.http.d.ts +11 -11
  8. package/build/cjs/src/pro-gallery-v2-gallery.http.js.map +1 -1
  9. package/build/cjs/src/pro-gallery-v2-gallery.meta.d.ts +41 -0
  10. package/build/cjs/src/pro-gallery-v2-gallery.meta.js +214 -0
  11. package/build/cjs/src/pro-gallery-v2-gallery.meta.js.map +1 -0
  12. package/build/cjs/src/pro-gallery-v2-gallery.public.d.ts +114 -12
  13. package/build/cjs/src/pro-gallery-v2-gallery.public.js +2 -1
  14. package/build/cjs/src/pro-gallery-v2-gallery.public.js.map +1 -1
  15. package/build/cjs/src/pro-gallery-v2-gallery.types.d.ts +927 -13
  16. package/build/cjs/src/pro-gallery-v2-gallery.types.js +19 -1
  17. package/build/cjs/src/pro-gallery-v2-gallery.types.js.map +1 -1
  18. package/build/cjs/src/pro-gallery-v2-gallery.universal.d.ts +229 -23
  19. package/build/cjs/src/pro-gallery-v2-gallery.universal.js +23 -1
  20. package/build/cjs/src/pro-gallery-v2-gallery.universal.js.map +1 -1
  21. package/build/es/index.typings.d.ts +1 -0
  22. package/build/es/index.typings.js +2 -0
  23. package/build/es/index.typings.js.map +1 -0
  24. package/build/es/meta.d.ts +1 -0
  25. package/build/es/meta.js +2 -0
  26. package/build/es/meta.js.map +1 -0
  27. package/build/es/src/pro-gallery-v2-gallery.http.d.ts +11 -11
  28. package/build/es/src/pro-gallery-v2-gallery.http.js.map +1 -1
  29. package/build/es/src/pro-gallery-v2-gallery.meta.d.ts +41 -0
  30. package/build/es/src/pro-gallery-v2-gallery.meta.js +182 -0
  31. package/build/es/src/pro-gallery-v2-gallery.meta.js.map +1 -0
  32. package/build/es/src/pro-gallery-v2-gallery.public.d.ts +114 -12
  33. package/build/es/src/pro-gallery-v2-gallery.public.js +1 -1
  34. package/build/es/src/pro-gallery-v2-gallery.public.js.map +1 -1
  35. package/build/es/src/pro-gallery-v2-gallery.types.d.ts +927 -13
  36. package/build/es/src/pro-gallery-v2-gallery.types.js +18 -0
  37. package/build/es/src/pro-gallery-v2-gallery.types.js.map +1 -1
  38. package/build/es/src/pro-gallery-v2-gallery.universal.d.ts +229 -23
  39. package/build/es/src/pro-gallery-v2-gallery.universal.js +22 -0
  40. package/build/es/src/pro-gallery-v2-gallery.universal.js.map +1 -1
  41. package/meta/package.json +6 -0
  42. package/package.json +4 -3
@@ -108,6 +108,8 @@ export interface WixLink extends WixLinkLinkOneOf {
108
108
  address?: AddressLink;
109
109
  /** WhatsApp link type */
110
110
  whatsApp?: WhatsAppLink;
111
+ /** TPA link type */
112
+ tpaPage?: TpaPageLink;
111
113
  }
112
114
  /** @oneof */
113
115
  export interface WixLinkLinkOneOf {
@@ -129,6 +131,8 @@ export interface WixLinkLinkOneOf {
129
131
  address?: AddressLink;
130
132
  /** WhatsApp link type */
131
133
  whatsApp?: WhatsAppLink;
134
+ /** TPA link type */
135
+ tpaPage?: TpaPageLink;
132
136
  }
133
137
  export interface ExternalLink {
134
138
  /** The url of the page */
@@ -141,6 +145,25 @@ export interface PageLink {
141
145
  pageId?: string;
142
146
  /** Where this link should open, supports _self and _blank or any name the user chooses. _self means same page, _blank means new page. */
143
147
  target?: string | null;
148
+ /** rel of link */
149
+ rel?: LinkRel[];
150
+ }
151
+ /**
152
+ * The 'rel' attribute of the link. The rel attribute defines the relationship between a linked resource and the current document.
153
+ * Further reading (also about different possible rel types): https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel
154
+ * Following are the accepted 'rel' types by Wix applications.
155
+ */
156
+ export declare enum LinkRel {
157
+ /** default (not implemented) */
158
+ unknown_link_rel = "unknown_link_rel",
159
+ /** Indicates that the current document's original author or publisher does not endorse the referenced document. */
160
+ nofollow = "nofollow",
161
+ /** Instructs the browser to navigate to the target resource without granting the new browsing context access to the document that opened it. */
162
+ noopener = "noopener",
163
+ /** No Referer header will be included. Additionally, has the same effect as noopener. */
164
+ noreferrer = "noreferrer",
165
+ /** Indicates a link that resulted from advertisements or paid placements. */
166
+ sponsored = "sponsored"
144
167
  }
145
168
  export interface AnchorLink {
146
169
  /** The name of the anchor */
@@ -149,6 +172,8 @@ export interface AnchorLink {
149
172
  anchorDataId?: string;
150
173
  /** The page id we want from the site */
151
174
  pageId?: string;
175
+ /** rel of link */
176
+ rel?: LinkRel[];
152
177
  }
153
178
  export interface DynamicPageLink {
154
179
  /** The router that handles this link */
@@ -157,6 +182,8 @@ export interface DynamicPageLink {
157
182
  innerRoute?: string;
158
183
  /** The data id (from the JSON page) of the anchor that should be used */
159
184
  anchorDataId?: string | null;
185
+ /** rel of link */
186
+ rel?: LinkRel[];
160
187
  }
161
188
  export interface DocumentLink {
162
189
  /** The id of the document */
@@ -186,6 +213,21 @@ export interface WhatsAppLink {
186
213
  /** The whatsApp phone number we want to connect with */
187
214
  phoneNumber?: string;
188
215
  }
216
+ /** Link to a TPA page */
217
+ export interface TpaPageLink {
218
+ /** Type of item (e.g. 'wix.stores.sub_pages.product') */
219
+ itemTypeIdentifier?: string;
220
+ /** Id of linked item */
221
+ itemId?: string;
222
+ /** Id of linked page */
223
+ pageId?: string;
224
+ /** Id of app being linked to (AppDefId) */
225
+ appDefinitionId?: string;
226
+ /** The relativepath of linked page */
227
+ path?: string;
228
+ /** rel of link */
229
+ rel?: LinkRel[];
230
+ }
189
231
  export declare enum Type {
190
232
  UNDEFINED = "UNDEFINED",
191
233
  IMAGE = "IMAGE",
@@ -782,8 +824,10 @@ export interface DomainEvent extends DomainEventBodyOneOf {
782
824
  updatedEvent?: EntityUpdatedEvent;
783
825
  deletedEvent?: EntityDeletedEvent;
784
826
  actionEvent?: ActionEvent;
785
- extendedFieldsUpdatedEvent?: ExtendedFieldsUpdatedEvent;
786
- /** random GUID so clients can tell if event was already handled */
827
+ /**
828
+ * Unique event ID.
829
+ * Allows clients to ignore duplicate webhooks.
830
+ */
787
831
  id?: string;
788
832
  /**
789
833
  * Assumes actions are also always typed to an entity_type
@@ -796,17 +840,13 @@ export interface DomainEvent extends DomainEventBodyOneOf {
796
840
  * Example: created/updated/deleted/started/completed/email_opened
797
841
  */
798
842
  slug?: string;
799
- /**
800
- * Assuming that all messages including Actions have id
801
- * Example: The id of the specific order, the id of a specific campaign
802
- */
843
+ /** ID of the entity associated with the event. */
803
844
  entityId?: string;
804
- /** The time of the event. Useful if there was a delay in dispatching */
845
+ /** Event timestamp. */
805
846
  eventTime?: Date;
806
847
  /**
807
- * A field that should be set if this event was triggered by an anonymize request.
808
- * For example you must set it to true when sending an event as a result of a GDPR right to be forgotten request.
809
- * NOTE: This field is not relevant for `EntityCreatedEvent` but is located here for better ergonomics of consumers.
848
+ * Whether the event was triggered as a result of a privacy regulation application
849
+ * (for example, GDPR).
810
850
  */
811
851
  triggeredByAnonymizeRequest?: boolean | null;
812
852
  /** If present, indicates the action that triggered the event. */
@@ -827,7 +867,6 @@ export interface DomainEventBodyOneOf {
827
867
  updatedEvent?: EntityUpdatedEvent;
828
868
  deletedEvent?: EntityDeletedEvent;
829
869
  actionEvent?: ActionEvent;
830
- extendedFieldsUpdatedEvent?: ExtendedFieldsUpdatedEvent;
831
870
  }
832
871
  export interface EntityCreatedEvent {
833
872
  entityAsJson?: string;
@@ -845,6 +884,881 @@ export interface EntityDeletedEvent {
845
884
  export interface ActionEvent {
846
885
  bodyAsJson?: string;
847
886
  }
848
- export interface ExtendedFieldsUpdatedEvent {
849
- currentEntityAsJson?: string;
887
+ export interface ListGalleriesResponseNonNullableFields {
888
+ galleries: {
889
+ items: {
890
+ image?: {
891
+ type: ImageType;
892
+ imageInfo?: {
893
+ id: string;
894
+ url: string;
895
+ height: number;
896
+ width: number;
897
+ };
898
+ focalPoint?: {
899
+ x: number;
900
+ y: number;
901
+ };
902
+ };
903
+ video?: {
904
+ type: VideoType;
905
+ videoInfo?: {
906
+ id: string;
907
+ url: string;
908
+ resolutions: {
909
+ url: string;
910
+ height: number;
911
+ width: number;
912
+ poster?: {
913
+ id: string;
914
+ url: string;
915
+ height: number;
916
+ width: number;
917
+ };
918
+ format: string;
919
+ }[];
920
+ posters: {
921
+ id: string;
922
+ url: string;
923
+ height: number;
924
+ width: number;
925
+ }[];
926
+ };
927
+ };
928
+ link?: {
929
+ type: LinkType;
930
+ wixLinkData?: {
931
+ external?: {
932
+ url: string;
933
+ };
934
+ page?: {
935
+ pageId: string;
936
+ rel: LinkRel[];
937
+ };
938
+ anchor?: {
939
+ anchorName: string;
940
+ anchorDataId: string;
941
+ pageId: string;
942
+ rel: LinkRel[];
943
+ };
944
+ dynamicPage?: {
945
+ routerId: string;
946
+ innerRoute: string;
947
+ rel: LinkRel[];
948
+ };
949
+ document?: {
950
+ docId: string;
951
+ indexable: boolean;
952
+ };
953
+ email?: {
954
+ recipient: string;
955
+ };
956
+ phone?: {
957
+ phoneNumber: string;
958
+ };
959
+ address?: {
960
+ address: string;
961
+ };
962
+ whatsApp?: {
963
+ phoneNumber: string;
964
+ };
965
+ tpaPage?: {
966
+ itemTypeIdentifier: string;
967
+ itemId: string;
968
+ pageId: string;
969
+ appDefinitionId: string;
970
+ path: string;
971
+ rel: LinkRel[];
972
+ };
973
+ };
974
+ };
975
+ type: Type;
976
+ tags?: {
977
+ values: string[];
978
+ };
979
+ secondaryMedia?: {
980
+ image?: {
981
+ type: ImageType;
982
+ imageInfo?: {
983
+ id: string;
984
+ url: string;
985
+ height: number;
986
+ width: number;
987
+ };
988
+ focalPoint?: {
989
+ x: number;
990
+ y: number;
991
+ };
992
+ };
993
+ };
994
+ }[];
995
+ }[];
996
+ }
997
+ export interface GetGalleryResponseNonNullableFields {
998
+ gallery?: {
999
+ items: {
1000
+ image?: {
1001
+ type: ImageType;
1002
+ imageInfo?: {
1003
+ id: string;
1004
+ url: string;
1005
+ height: number;
1006
+ width: number;
1007
+ };
1008
+ focalPoint?: {
1009
+ x: number;
1010
+ y: number;
1011
+ };
1012
+ };
1013
+ video?: {
1014
+ type: VideoType;
1015
+ videoInfo?: {
1016
+ id: string;
1017
+ url: string;
1018
+ resolutions: {
1019
+ url: string;
1020
+ height: number;
1021
+ width: number;
1022
+ poster?: {
1023
+ id: string;
1024
+ url: string;
1025
+ height: number;
1026
+ width: number;
1027
+ };
1028
+ format: string;
1029
+ }[];
1030
+ posters: {
1031
+ id: string;
1032
+ url: string;
1033
+ height: number;
1034
+ width: number;
1035
+ }[];
1036
+ };
1037
+ };
1038
+ link?: {
1039
+ type: LinkType;
1040
+ wixLinkData?: {
1041
+ external?: {
1042
+ url: string;
1043
+ };
1044
+ page?: {
1045
+ pageId: string;
1046
+ rel: LinkRel[];
1047
+ };
1048
+ anchor?: {
1049
+ anchorName: string;
1050
+ anchorDataId: string;
1051
+ pageId: string;
1052
+ rel: LinkRel[];
1053
+ };
1054
+ dynamicPage?: {
1055
+ routerId: string;
1056
+ innerRoute: string;
1057
+ rel: LinkRel[];
1058
+ };
1059
+ document?: {
1060
+ docId: string;
1061
+ indexable: boolean;
1062
+ };
1063
+ email?: {
1064
+ recipient: string;
1065
+ };
1066
+ phone?: {
1067
+ phoneNumber: string;
1068
+ };
1069
+ address?: {
1070
+ address: string;
1071
+ };
1072
+ whatsApp?: {
1073
+ phoneNumber: string;
1074
+ };
1075
+ tpaPage?: {
1076
+ itemTypeIdentifier: string;
1077
+ itemId: string;
1078
+ pageId: string;
1079
+ appDefinitionId: string;
1080
+ path: string;
1081
+ rel: LinkRel[];
1082
+ };
1083
+ };
1084
+ };
1085
+ type: Type;
1086
+ tags?: {
1087
+ values: string[];
1088
+ };
1089
+ secondaryMedia?: {
1090
+ image?: {
1091
+ type: ImageType;
1092
+ imageInfo?: {
1093
+ id: string;
1094
+ url: string;
1095
+ height: number;
1096
+ width: number;
1097
+ };
1098
+ focalPoint?: {
1099
+ x: number;
1100
+ y: number;
1101
+ };
1102
+ };
1103
+ };
1104
+ }[];
1105
+ };
1106
+ }
1107
+ export interface ListGalleryItemsResponseNonNullableFields {
1108
+ items: {
1109
+ image?: {
1110
+ type: ImageType;
1111
+ imageInfo?: {
1112
+ id: string;
1113
+ url: string;
1114
+ height: number;
1115
+ width: number;
1116
+ };
1117
+ focalPoint?: {
1118
+ x: number;
1119
+ y: number;
1120
+ };
1121
+ };
1122
+ video?: {
1123
+ type: VideoType;
1124
+ videoInfo?: {
1125
+ id: string;
1126
+ url: string;
1127
+ resolutions: {
1128
+ url: string;
1129
+ height: number;
1130
+ width: number;
1131
+ poster?: {
1132
+ id: string;
1133
+ url: string;
1134
+ height: number;
1135
+ width: number;
1136
+ };
1137
+ format: string;
1138
+ }[];
1139
+ posters: {
1140
+ id: string;
1141
+ url: string;
1142
+ height: number;
1143
+ width: number;
1144
+ }[];
1145
+ };
1146
+ };
1147
+ link?: {
1148
+ type: LinkType;
1149
+ wixLinkData?: {
1150
+ external?: {
1151
+ url: string;
1152
+ };
1153
+ page?: {
1154
+ pageId: string;
1155
+ rel: LinkRel[];
1156
+ };
1157
+ anchor?: {
1158
+ anchorName: string;
1159
+ anchorDataId: string;
1160
+ pageId: string;
1161
+ rel: LinkRel[];
1162
+ };
1163
+ dynamicPage?: {
1164
+ routerId: string;
1165
+ innerRoute: string;
1166
+ rel: LinkRel[];
1167
+ };
1168
+ document?: {
1169
+ docId: string;
1170
+ indexable: boolean;
1171
+ };
1172
+ email?: {
1173
+ recipient: string;
1174
+ };
1175
+ phone?: {
1176
+ phoneNumber: string;
1177
+ };
1178
+ address?: {
1179
+ address: string;
1180
+ };
1181
+ whatsApp?: {
1182
+ phoneNumber: string;
1183
+ };
1184
+ tpaPage?: {
1185
+ itemTypeIdentifier: string;
1186
+ itemId: string;
1187
+ pageId: string;
1188
+ appDefinitionId: string;
1189
+ path: string;
1190
+ rel: LinkRel[];
1191
+ };
1192
+ };
1193
+ };
1194
+ type: Type;
1195
+ tags?: {
1196
+ values: string[];
1197
+ };
1198
+ secondaryMedia?: {
1199
+ image?: {
1200
+ type: ImageType;
1201
+ imageInfo?: {
1202
+ id: string;
1203
+ url: string;
1204
+ height: number;
1205
+ width: number;
1206
+ };
1207
+ focalPoint?: {
1208
+ x: number;
1209
+ y: number;
1210
+ };
1211
+ };
1212
+ };
1213
+ }[];
1214
+ }
1215
+ export interface GetGalleryItemResponseNonNullableFields {
1216
+ item?: {
1217
+ image?: {
1218
+ type: ImageType;
1219
+ imageInfo?: {
1220
+ id: string;
1221
+ url: string;
1222
+ height: number;
1223
+ width: number;
1224
+ };
1225
+ focalPoint?: {
1226
+ x: number;
1227
+ y: number;
1228
+ };
1229
+ };
1230
+ video?: {
1231
+ type: VideoType;
1232
+ videoInfo?: {
1233
+ id: string;
1234
+ url: string;
1235
+ resolutions: {
1236
+ url: string;
1237
+ height: number;
1238
+ width: number;
1239
+ poster?: {
1240
+ id: string;
1241
+ url: string;
1242
+ height: number;
1243
+ width: number;
1244
+ };
1245
+ format: string;
1246
+ }[];
1247
+ posters: {
1248
+ id: string;
1249
+ url: string;
1250
+ height: number;
1251
+ width: number;
1252
+ }[];
1253
+ };
1254
+ };
1255
+ link?: {
1256
+ type: LinkType;
1257
+ wixLinkData?: {
1258
+ external?: {
1259
+ url: string;
1260
+ };
1261
+ page?: {
1262
+ pageId: string;
1263
+ rel: LinkRel[];
1264
+ };
1265
+ anchor?: {
1266
+ anchorName: string;
1267
+ anchorDataId: string;
1268
+ pageId: string;
1269
+ rel: LinkRel[];
1270
+ };
1271
+ dynamicPage?: {
1272
+ routerId: string;
1273
+ innerRoute: string;
1274
+ rel: LinkRel[];
1275
+ };
1276
+ document?: {
1277
+ docId: string;
1278
+ indexable: boolean;
1279
+ };
1280
+ email?: {
1281
+ recipient: string;
1282
+ };
1283
+ phone?: {
1284
+ phoneNumber: string;
1285
+ };
1286
+ address?: {
1287
+ address: string;
1288
+ };
1289
+ whatsApp?: {
1290
+ phoneNumber: string;
1291
+ };
1292
+ tpaPage?: {
1293
+ itemTypeIdentifier: string;
1294
+ itemId: string;
1295
+ pageId: string;
1296
+ appDefinitionId: string;
1297
+ path: string;
1298
+ rel: LinkRel[];
1299
+ };
1300
+ };
1301
+ };
1302
+ type: Type;
1303
+ tags?: {
1304
+ values: string[];
1305
+ };
1306
+ secondaryMedia?: {
1307
+ image?: {
1308
+ type: ImageType;
1309
+ imageInfo?: {
1310
+ id: string;
1311
+ url: string;
1312
+ height: number;
1313
+ width: number;
1314
+ };
1315
+ focalPoint?: {
1316
+ x: number;
1317
+ y: number;
1318
+ };
1319
+ };
1320
+ };
1321
+ };
1322
+ }
1323
+ export interface CreateGalleryResponseNonNullableFields {
1324
+ gallery?: {
1325
+ items: {
1326
+ image?: {
1327
+ type: ImageType;
1328
+ imageInfo?: {
1329
+ id: string;
1330
+ url: string;
1331
+ height: number;
1332
+ width: number;
1333
+ };
1334
+ focalPoint?: {
1335
+ x: number;
1336
+ y: number;
1337
+ };
1338
+ };
1339
+ video?: {
1340
+ type: VideoType;
1341
+ videoInfo?: {
1342
+ id: string;
1343
+ url: string;
1344
+ resolutions: {
1345
+ url: string;
1346
+ height: number;
1347
+ width: number;
1348
+ poster?: {
1349
+ id: string;
1350
+ url: string;
1351
+ height: number;
1352
+ width: number;
1353
+ };
1354
+ format: string;
1355
+ }[];
1356
+ posters: {
1357
+ id: string;
1358
+ url: string;
1359
+ height: number;
1360
+ width: number;
1361
+ }[];
1362
+ };
1363
+ };
1364
+ link?: {
1365
+ type: LinkType;
1366
+ wixLinkData?: {
1367
+ external?: {
1368
+ url: string;
1369
+ };
1370
+ page?: {
1371
+ pageId: string;
1372
+ rel: LinkRel[];
1373
+ };
1374
+ anchor?: {
1375
+ anchorName: string;
1376
+ anchorDataId: string;
1377
+ pageId: string;
1378
+ rel: LinkRel[];
1379
+ };
1380
+ dynamicPage?: {
1381
+ routerId: string;
1382
+ innerRoute: string;
1383
+ rel: LinkRel[];
1384
+ };
1385
+ document?: {
1386
+ docId: string;
1387
+ indexable: boolean;
1388
+ };
1389
+ email?: {
1390
+ recipient: string;
1391
+ };
1392
+ phone?: {
1393
+ phoneNumber: string;
1394
+ };
1395
+ address?: {
1396
+ address: string;
1397
+ };
1398
+ whatsApp?: {
1399
+ phoneNumber: string;
1400
+ };
1401
+ tpaPage?: {
1402
+ itemTypeIdentifier: string;
1403
+ itemId: string;
1404
+ pageId: string;
1405
+ appDefinitionId: string;
1406
+ path: string;
1407
+ rel: LinkRel[];
1408
+ };
1409
+ };
1410
+ };
1411
+ type: Type;
1412
+ tags?: {
1413
+ values: string[];
1414
+ };
1415
+ secondaryMedia?: {
1416
+ image?: {
1417
+ type: ImageType;
1418
+ imageInfo?: {
1419
+ id: string;
1420
+ url: string;
1421
+ height: number;
1422
+ width: number;
1423
+ };
1424
+ focalPoint?: {
1425
+ x: number;
1426
+ y: number;
1427
+ };
1428
+ };
1429
+ };
1430
+ }[];
1431
+ };
1432
+ }
1433
+ export interface UpdateGalleryResponseNonNullableFields {
1434
+ gallery?: {
1435
+ items: {
1436
+ image?: {
1437
+ type: ImageType;
1438
+ imageInfo?: {
1439
+ id: string;
1440
+ url: string;
1441
+ height: number;
1442
+ width: number;
1443
+ };
1444
+ focalPoint?: {
1445
+ x: number;
1446
+ y: number;
1447
+ };
1448
+ };
1449
+ video?: {
1450
+ type: VideoType;
1451
+ videoInfo?: {
1452
+ id: string;
1453
+ url: string;
1454
+ resolutions: {
1455
+ url: string;
1456
+ height: number;
1457
+ width: number;
1458
+ poster?: {
1459
+ id: string;
1460
+ url: string;
1461
+ height: number;
1462
+ width: number;
1463
+ };
1464
+ format: string;
1465
+ }[];
1466
+ posters: {
1467
+ id: string;
1468
+ url: string;
1469
+ height: number;
1470
+ width: number;
1471
+ }[];
1472
+ };
1473
+ };
1474
+ link?: {
1475
+ type: LinkType;
1476
+ wixLinkData?: {
1477
+ external?: {
1478
+ url: string;
1479
+ };
1480
+ page?: {
1481
+ pageId: string;
1482
+ rel: LinkRel[];
1483
+ };
1484
+ anchor?: {
1485
+ anchorName: string;
1486
+ anchorDataId: string;
1487
+ pageId: string;
1488
+ rel: LinkRel[];
1489
+ };
1490
+ dynamicPage?: {
1491
+ routerId: string;
1492
+ innerRoute: string;
1493
+ rel: LinkRel[];
1494
+ };
1495
+ document?: {
1496
+ docId: string;
1497
+ indexable: boolean;
1498
+ };
1499
+ email?: {
1500
+ recipient: string;
1501
+ };
1502
+ phone?: {
1503
+ phoneNumber: string;
1504
+ };
1505
+ address?: {
1506
+ address: string;
1507
+ };
1508
+ whatsApp?: {
1509
+ phoneNumber: string;
1510
+ };
1511
+ tpaPage?: {
1512
+ itemTypeIdentifier: string;
1513
+ itemId: string;
1514
+ pageId: string;
1515
+ appDefinitionId: string;
1516
+ path: string;
1517
+ rel: LinkRel[];
1518
+ };
1519
+ };
1520
+ };
1521
+ type: Type;
1522
+ tags?: {
1523
+ values: string[];
1524
+ };
1525
+ secondaryMedia?: {
1526
+ image?: {
1527
+ type: ImageType;
1528
+ imageInfo?: {
1529
+ id: string;
1530
+ url: string;
1531
+ height: number;
1532
+ width: number;
1533
+ };
1534
+ focalPoint?: {
1535
+ x: number;
1536
+ y: number;
1537
+ };
1538
+ };
1539
+ };
1540
+ }[];
1541
+ };
1542
+ }
1543
+ export interface DeleteGalleryResponseNonNullableFields {
1544
+ galleryId: string;
1545
+ }
1546
+ export interface CreateGalleryItemResponseNonNullableFields {
1547
+ item?: {
1548
+ image?: {
1549
+ type: ImageType;
1550
+ imageInfo?: {
1551
+ id: string;
1552
+ url: string;
1553
+ height: number;
1554
+ width: number;
1555
+ };
1556
+ focalPoint?: {
1557
+ x: number;
1558
+ y: number;
1559
+ };
1560
+ };
1561
+ video?: {
1562
+ type: VideoType;
1563
+ videoInfo?: {
1564
+ id: string;
1565
+ url: string;
1566
+ resolutions: {
1567
+ url: string;
1568
+ height: number;
1569
+ width: number;
1570
+ poster?: {
1571
+ id: string;
1572
+ url: string;
1573
+ height: number;
1574
+ width: number;
1575
+ };
1576
+ format: string;
1577
+ }[];
1578
+ posters: {
1579
+ id: string;
1580
+ url: string;
1581
+ height: number;
1582
+ width: number;
1583
+ }[];
1584
+ };
1585
+ };
1586
+ link?: {
1587
+ type: LinkType;
1588
+ wixLinkData?: {
1589
+ external?: {
1590
+ url: string;
1591
+ };
1592
+ page?: {
1593
+ pageId: string;
1594
+ rel: LinkRel[];
1595
+ };
1596
+ anchor?: {
1597
+ anchorName: string;
1598
+ anchorDataId: string;
1599
+ pageId: string;
1600
+ rel: LinkRel[];
1601
+ };
1602
+ dynamicPage?: {
1603
+ routerId: string;
1604
+ innerRoute: string;
1605
+ rel: LinkRel[];
1606
+ };
1607
+ document?: {
1608
+ docId: string;
1609
+ indexable: boolean;
1610
+ };
1611
+ email?: {
1612
+ recipient: string;
1613
+ };
1614
+ phone?: {
1615
+ phoneNumber: string;
1616
+ };
1617
+ address?: {
1618
+ address: string;
1619
+ };
1620
+ whatsApp?: {
1621
+ phoneNumber: string;
1622
+ };
1623
+ tpaPage?: {
1624
+ itemTypeIdentifier: string;
1625
+ itemId: string;
1626
+ pageId: string;
1627
+ appDefinitionId: string;
1628
+ path: string;
1629
+ rel: LinkRel[];
1630
+ };
1631
+ };
1632
+ };
1633
+ type: Type;
1634
+ tags?: {
1635
+ values: string[];
1636
+ };
1637
+ secondaryMedia?: {
1638
+ image?: {
1639
+ type: ImageType;
1640
+ imageInfo?: {
1641
+ id: string;
1642
+ url: string;
1643
+ height: number;
1644
+ width: number;
1645
+ };
1646
+ focalPoint?: {
1647
+ x: number;
1648
+ y: number;
1649
+ };
1650
+ };
1651
+ };
1652
+ };
1653
+ }
1654
+ export interface UpdateGalleryItemResponseNonNullableFields {
1655
+ item?: {
1656
+ image?: {
1657
+ type: ImageType;
1658
+ imageInfo?: {
1659
+ id: string;
1660
+ url: string;
1661
+ height: number;
1662
+ width: number;
1663
+ };
1664
+ focalPoint?: {
1665
+ x: number;
1666
+ y: number;
1667
+ };
1668
+ };
1669
+ video?: {
1670
+ type: VideoType;
1671
+ videoInfo?: {
1672
+ id: string;
1673
+ url: string;
1674
+ resolutions: {
1675
+ url: string;
1676
+ height: number;
1677
+ width: number;
1678
+ poster?: {
1679
+ id: string;
1680
+ url: string;
1681
+ height: number;
1682
+ width: number;
1683
+ };
1684
+ format: string;
1685
+ }[];
1686
+ posters: {
1687
+ id: string;
1688
+ url: string;
1689
+ height: number;
1690
+ width: number;
1691
+ }[];
1692
+ };
1693
+ };
1694
+ link?: {
1695
+ type: LinkType;
1696
+ wixLinkData?: {
1697
+ external?: {
1698
+ url: string;
1699
+ };
1700
+ page?: {
1701
+ pageId: string;
1702
+ rel: LinkRel[];
1703
+ };
1704
+ anchor?: {
1705
+ anchorName: string;
1706
+ anchorDataId: string;
1707
+ pageId: string;
1708
+ rel: LinkRel[];
1709
+ };
1710
+ dynamicPage?: {
1711
+ routerId: string;
1712
+ innerRoute: string;
1713
+ rel: LinkRel[];
1714
+ };
1715
+ document?: {
1716
+ docId: string;
1717
+ indexable: boolean;
1718
+ };
1719
+ email?: {
1720
+ recipient: string;
1721
+ };
1722
+ phone?: {
1723
+ phoneNumber: string;
1724
+ };
1725
+ address?: {
1726
+ address: string;
1727
+ };
1728
+ whatsApp?: {
1729
+ phoneNumber: string;
1730
+ };
1731
+ tpaPage?: {
1732
+ itemTypeIdentifier: string;
1733
+ itemId: string;
1734
+ pageId: string;
1735
+ appDefinitionId: string;
1736
+ path: string;
1737
+ rel: LinkRel[];
1738
+ };
1739
+ };
1740
+ };
1741
+ type: Type;
1742
+ tags?: {
1743
+ values: string[];
1744
+ };
1745
+ secondaryMedia?: {
1746
+ image?: {
1747
+ type: ImageType;
1748
+ imageInfo?: {
1749
+ id: string;
1750
+ url: string;
1751
+ height: number;
1752
+ width: number;
1753
+ };
1754
+ focalPoint?: {
1755
+ x: number;
1756
+ y: number;
1757
+ };
1758
+ };
1759
+ };
1760
+ };
1761
+ }
1762
+ export interface DeleteGalleryItemResponseNonNullableFields {
1763
+ itemId: string;
850
1764
  }