@wix/auto_sdk_events_orders 1.0.34 → 1.0.35
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/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +5 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +5 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +5 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +5 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -2254,26 +2254,31 @@ interface QueryEventsWithPaidReservationsResponse {
|
|
|
2254
2254
|
*/
|
|
2255
2255
|
eventIds?: string[] | null;
|
|
2256
2256
|
}
|
|
2257
|
+
/** @docsIgnore */
|
|
2257
2258
|
type UpdateOrderApplicationErrors = {
|
|
2258
2259
|
code?: 'ORDER_ACTION_NOT_AVAILABLE';
|
|
2259
2260
|
description?: string;
|
|
2260
2261
|
data?: Record<string, any>;
|
|
2261
2262
|
};
|
|
2263
|
+
/** @docsIgnore */
|
|
2262
2264
|
type BulkUpdateOrdersApplicationErrors = {
|
|
2263
2265
|
code?: 'ORDER_ACTION_NOT_AVAILABLE';
|
|
2264
2266
|
description?: string;
|
|
2265
2267
|
data?: Record<string, any>;
|
|
2266
2268
|
};
|
|
2269
|
+
/** @docsIgnore */
|
|
2267
2270
|
type ConfirmOrderApplicationErrors = {
|
|
2268
2271
|
code?: 'ORDER_ACTION_NOT_AVAILABLE';
|
|
2269
2272
|
description?: string;
|
|
2270
2273
|
data?: Record<string, any>;
|
|
2271
2274
|
};
|
|
2275
|
+
/** @docsIgnore */
|
|
2272
2276
|
type CaptureAuthorizedPaymentApplicationErrors = {
|
|
2273
2277
|
code?: 'ORDER_STATUS_NOT_AUTHORIZED';
|
|
2274
2278
|
description?: string;
|
|
2275
2279
|
data?: Record<string, any>;
|
|
2276
2280
|
};
|
|
2281
|
+
/** @docsIgnore */
|
|
2277
2282
|
type VoidAuthorizedPaymentApplicationErrors = {
|
|
2278
2283
|
code?: 'ORDER_STATUS_NOT_AUTHORIZED';
|
|
2279
2284
|
description?: string;
|