@wix/auto_sdk_stores_customizations-v-3 1.0.29 → 1.0.30

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.
@@ -1145,7 +1145,6 @@ declare function createCustomization(customization: NonNullablePaths<Customizati
1145
1145
  * @requiredField customizationId
1146
1146
  * @permissionId WIX_STORES.CUSTOMIZATION_READ
1147
1147
  * @applicableIdentity APP
1148
- * @applicableIdentity VISITOR
1149
1148
  * @returns Customization.
1150
1149
  * @fqn wix.stores.catalog.customization.v3.CustomizationService.GetCustomization
1151
1150
  */
@@ -1283,7 +1282,6 @@ declare function deleteCustomization(customizationId: string): Promise<void & {
1283
1282
  * @public
1284
1283
  * @permissionId WIX_STORES.CUSTOMIZATION_READ
1285
1284
  * @applicableIdentity APP
1286
- * @applicableIdentity VISITOR
1287
1285
  * @fqn wix.stores.catalog.customization.v3.CustomizationService.QueryCustomizations
1288
1286
  */
1289
1287
  declare function queryCustomizations(options?: QueryCustomizationsOptions): CustomizationsQueryBuilder;
@@ -285,7 +285,18 @@ function queryCustomizations(payload) {
285
285
  }
286
286
  ]
287
287
  }
288
- ])
288
+ ]),
289
+ fallback: [
290
+ {
291
+ method: "POST",
292
+ url: resolveWixStoresCatalogCustomizationV3CustomizationServiceUrl({
293
+ protoPath: "/v3/customizations/query",
294
+ data: payload,
295
+ host
296
+ }),
297
+ data: payload
298
+ }
299
+ ]
289
300
  };
290
301
  return metadata;
291
302
  }