controlresell 0.0.23 → 0.0.24
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.
|
@@ -58,3 +58,11 @@ export declare const UpdateItemOnPlatformPayloadSchema: z.ZodObject<{
|
|
|
58
58
|
platformPrice?: number | null | undefined;
|
|
59
59
|
}>;
|
|
60
60
|
export type UpdateItemOnPlatformPayload = z.infer<typeof UpdateItemOnPlatformPayloadSchema>;
|
|
61
|
+
export declare const ItemOnPlatformsRequestSchema: z.ZodObject<{
|
|
62
|
+
accountsId: z.ZodArray<z.ZodString, "many">;
|
|
63
|
+
}, "strip", z.ZodTypeAny, {
|
|
64
|
+
accountsId: string[];
|
|
65
|
+
}, {
|
|
66
|
+
accountsId: string[];
|
|
67
|
+
}>;
|
|
68
|
+
export type ItemOnPlatformsRequest = z.infer<typeof ItemOnPlatformsRequestSchema>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UpdateItemOnPlatformPayloadSchema = exports.CreateItemOnPlatformPayloadSchema = exports.ItemOnPlatformSchema = exports.ItemOnPlatformStatusSchema = void 0;
|
|
3
|
+
exports.ItemOnPlatformsRequestSchema = exports.UpdateItemOnPlatformPayloadSchema = exports.CreateItemOnPlatformPayloadSchema = exports.ItemOnPlatformSchema = exports.ItemOnPlatformStatusSchema = void 0;
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
5
|
const primitives_1 = require("../primitives");
|
|
6
6
|
exports.ItemOnPlatformStatusSchema = zod_1.z.enum([
|
|
@@ -26,3 +26,6 @@ exports.UpdateItemOnPlatformPayloadSchema = zod_1.z.object({
|
|
|
26
26
|
status: exports.ItemOnPlatformStatusSchema.nullish(),
|
|
27
27
|
platformPrice: zod_1.z.number().nullish(),
|
|
28
28
|
});
|
|
29
|
+
exports.ItemOnPlatformsRequestSchema = zod_1.z.object({
|
|
30
|
+
accountsId: zod_1.z.array(zod_1.z.string().uuid()),
|
|
31
|
+
});
|