@wix/auto_sdk_ecom_draft-orders 1.0.113 → 1.0.115
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 +1 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +3 -2
- package/build/cjs/index.typings.js +1 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +3 -2
- package/build/cjs/meta.js +1 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +1 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +3 -2
- package/build/es/index.typings.mjs +1 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +3 -2
- package/build/es/meta.mjs +1 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +1 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +5 -4
- package/build/internal/cjs/index.typings.js +1 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +3 -2
- package/build/internal/cjs/meta.js +1 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +1 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +5 -4
- package/build/internal/es/index.typings.mjs +1 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +3 -2
- package/build/internal/es/meta.mjs +1 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -2374,10 +2374,11 @@ declare enum FileType {
|
|
|
2374
2374
|
SECURE_VIDEO = "SECURE_VIDEO",
|
|
2375
2375
|
SECURE_DOCUMENT = "SECURE_DOCUMENT",
|
|
2376
2376
|
SECURE_MUSIC = "SECURE_MUSIC",
|
|
2377
|
-
SECURE_ARCHIVE = "SECURE_ARCHIVE"
|
|
2377
|
+
SECURE_ARCHIVE = "SECURE_ARCHIVE",
|
|
2378
|
+
SECURE_RAW = "SECURE_RAW"
|
|
2378
2379
|
}
|
|
2379
2380
|
/** @enumType */
|
|
2380
|
-
type FileTypeWithLiterals = FileType | 'UNSPECIFIED' | 'SECURE_PICTURE' | 'SECURE_VIDEO' | 'SECURE_DOCUMENT' | 'SECURE_MUSIC' | 'SECURE_ARCHIVE';
|
|
2381
|
+
type FileTypeWithLiterals = FileType | 'UNSPECIFIED' | 'SECURE_PICTURE' | 'SECURE_VIDEO' | 'SECURE_DOCUMENT' | 'SECURE_MUSIC' | 'SECURE_ARCHIVE' | 'SECURE_RAW';
|
|
2381
2382
|
interface AddLineItemsToDraftOrderResponse {
|
|
2382
2383
|
/** Draft order calculated with the latest changes. */
|
|
2383
2384
|
calculatedDraftOrder?: CalculatedDraftOrder;
|
|
@@ -4356,11 +4357,11 @@ interface V1BalanceSummary {
|
|
|
4356
4357
|
*/
|
|
4357
4358
|
platformFee?: Price;
|
|
4358
4359
|
/**
|
|
4359
|
-
* Order total
|
|
4360
|
+
* Order total minus platform fee.
|
|
4360
4361
|
* @internal
|
|
4361
4362
|
* @readonly
|
|
4362
4363
|
*/
|
|
4363
|
-
|
|
4364
|
+
totalMinusPlatformFee?: Price;
|
|
4364
4365
|
}
|
|
4365
4366
|
interface FulfillmentStatusesAggregate {
|
|
4366
4367
|
/** Unique string values based on Fulfillment entities statuses */
|
|
@@ -3342,6 +3342,7 @@ var FileType = /* @__PURE__ */ ((FileType2) => {
|
|
|
3342
3342
|
FileType2["SECURE_DOCUMENT"] = "SECURE_DOCUMENT";
|
|
3343
3343
|
FileType2["SECURE_MUSIC"] = "SECURE_MUSIC";
|
|
3344
3344
|
FileType2["SECURE_ARCHIVE"] = "SECURE_ARCHIVE";
|
|
3345
|
+
FileType2["SECURE_RAW"] = "SECURE_RAW";
|
|
3345
3346
|
return FileType2;
|
|
3346
3347
|
})(FileType || {});
|
|
3347
3348
|
var DiscountType = /* @__PURE__ */ ((DiscountType2) => {
|