@marteye/studiojs 1.1.15 → 1.1.17
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/index.d.ts +23 -16
- package/dist/index.esm.js +8 -4
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +8 -4
- package/dist/index.js.map +1 -1
- package/dist/types.d.ts +14 -12
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4558,10 +4558,10 @@ z.object({
|
|
|
4558
4558
|
suffix: z.string().min(1, { message: "Suffix Type is required" }),
|
|
4559
4559
|
});
|
|
4560
4560
|
// Adding Sizes here will make more end points in the mainConfig object
|
|
4561
|
-
const IMAGE_SIZES_VALUES = ["small", "medium", "large"];
|
|
4562
|
-
const VIDEO_TASKS_VALUES = ["compressed", "thumbnail"];
|
|
4563
|
-
z.enum(VIDEO_TASKS_VALUES);
|
|
4564
|
-
z.enum(IMAGE_SIZES_VALUES);
|
|
4561
|
+
const IMAGE_SIZES_VALUES$1 = ["small", "medium", "large"];
|
|
4562
|
+
const VIDEO_TASKS_VALUES$1 = ["compressed", "thumbnail"];
|
|
4563
|
+
z.enum(VIDEO_TASKS_VALUES$1);
|
|
4564
|
+
z.enum(IMAGE_SIZES_VALUES$1);
|
|
4565
4565
|
const UPLOAD_PATHS = {
|
|
4566
4566
|
START_UPLOAD: "startMultipartUpload",
|
|
4567
4567
|
UPLOAD_PART: "uploadChunk",
|
|
@@ -5112,6 +5112,8 @@ const SupportedPaymentMethods = [
|
|
|
5112
5112
|
"Card",
|
|
5113
5113
|
"Credit",
|
|
5114
5114
|
];
|
|
5115
|
+
const IMAGE_SIZES_VALUES = ["small", "medium", "large"];
|
|
5116
|
+
const VIDEO_TASKS_VALUES = ["compressed", "thumbnail"];
|
|
5115
5117
|
const supportedWebhookEvents = [
|
|
5116
5118
|
"market.updated",
|
|
5117
5119
|
"sale.created",
|
|
@@ -5143,11 +5145,13 @@ const supportedWebhookEvents = [
|
|
|
5143
5145
|
|
|
5144
5146
|
var types = /*#__PURE__*/Object.freeze({
|
|
5145
5147
|
__proto__: null,
|
|
5148
|
+
IMAGE_SIZES_VALUES: IMAGE_SIZES_VALUES,
|
|
5146
5149
|
LivestockSuperTypes: LivestockSuperTypes,
|
|
5147
5150
|
SupportedCurrencyCodes: SupportedCurrencyCodes,
|
|
5148
5151
|
SupportedPaymentMethods: SupportedPaymentMethods,
|
|
5149
5152
|
SupportedSuperTypes: SupportedSuperTypes,
|
|
5150
5153
|
SupportedUnitsOfSale: SupportedUnitsOfSale,
|
|
5154
|
+
VIDEO_TASKS_VALUES: VIDEO_TASKS_VALUES,
|
|
5151
5155
|
supportedWebhookEvents: supportedWebhookEvents
|
|
5152
5156
|
});
|
|
5153
5157
|
|