controlresell 2.24.6 → 2.24.7
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/package.json +1 -1
- package/src/com/controlresell/models/orders/preferences/CreateOrderLabelPreferencePayload.d.ts +3 -3
- package/src/com/controlresell/models/orders/preferences/OrderLabelPreference.d.ts +6 -6
- package/src/com/controlresell/models/orders/preferences/OrderLabelPreference.js +1 -1
- package/src/com/controlresell/models/orders/preferences/OrderLabelPreference.js.map +1 -1
- package/src/com/controlresell/models/orders/preferences/OrderLabelPreference.ts +1 -1
- package/src/com/controlresell/models/orders/preferences/OrderLabelPreferenceTitleType.d.ts +1 -1
- package/src/com/controlresell/models/orders/preferences/OrderLabelPreferenceTitleType.d.ts.map +1 -1
- package/src/com/controlresell/models/orders/preferences/OrderLabelPreferenceTitleType.js +1 -1
- package/src/com/controlresell/models/orders/preferences/OrderLabelPreferenceTitleType.js.map +1 -1
- package/src/com/controlresell/models/orders/preferences/OrderLabelPreferenceTitleType.ts +1 -1
- package/src/com/controlresell/models/orders/preferences/UpdateOrderLabelPreferencePayload.d.ts +3 -3
package/package.json
CHANGED
package/src/com/controlresell/models/orders/preferences/CreateOrderLabelPreferencePayload.d.ts
CHANGED
|
@@ -2,14 +2,14 @@ import { z } from "zod";
|
|
|
2
2
|
export declare const CreateOrderLabelPreferencePayloadSchema: z.ZodObject<{
|
|
3
3
|
disableAutomaticLabelCreation: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
4
4
|
dropOffType: z.ZodEnum<["MAILBOX", "PICKUP_POINT"]>;
|
|
5
|
-
titleType: z.ZodEnum<["ITEM_NAME", "SKU", "BOTH"]>;
|
|
5
|
+
titleType: z.ZodEnum<["ITEM_NAME", "SKU", "BOTH", "NONE"]>;
|
|
6
6
|
}, "strip", z.ZodTypeAny, {
|
|
7
7
|
dropOffType: "MAILBOX" | "PICKUP_POINT";
|
|
8
|
-
titleType: "ITEM_NAME" | "SKU" | "BOTH";
|
|
8
|
+
titleType: "NONE" | "ITEM_NAME" | "SKU" | "BOTH";
|
|
9
9
|
disableAutomaticLabelCreation?: boolean | null | undefined;
|
|
10
10
|
}, {
|
|
11
11
|
dropOffType: "MAILBOX" | "PICKUP_POINT";
|
|
12
|
-
titleType: "ITEM_NAME" | "SKU" | "BOTH";
|
|
12
|
+
titleType: "NONE" | "ITEM_NAME" | "SKU" | "BOTH";
|
|
13
13
|
disableAutomaticLabelCreation?: boolean | null | undefined;
|
|
14
14
|
}>;
|
|
15
15
|
export type CreateOrderLabelPreferencePayload = z.infer<typeof CreateOrderLabelPreferencePayloadSchema>;
|
|
@@ -2,24 +2,24 @@ import { z } from "zod";
|
|
|
2
2
|
export declare const OrderLabelPreferenceSchema: z.ZodObject<{
|
|
3
3
|
id: z.ZodString;
|
|
4
4
|
userId: z.ZodNumber;
|
|
5
|
-
disableAutomaticLabelCreation: z.
|
|
5
|
+
disableAutomaticLabelCreation: z.ZodBoolean;
|
|
6
6
|
dropOffType: z.ZodEnum<["MAILBOX", "PICKUP_POINT"]>;
|
|
7
|
-
titleType: z.ZodEnum<["ITEM_NAME", "SKU", "BOTH"]>;
|
|
7
|
+
titleType: z.ZodEnum<["ITEM_NAME", "SKU", "BOTH", "NONE"]>;
|
|
8
8
|
updatedAt: z.ZodDate;
|
|
9
9
|
}, "strip", z.ZodTypeAny, {
|
|
10
10
|
id: string;
|
|
11
11
|
userId: number;
|
|
12
12
|
updatedAt: Date;
|
|
13
|
+
disableAutomaticLabelCreation: boolean;
|
|
13
14
|
dropOffType: "MAILBOX" | "PICKUP_POINT";
|
|
14
|
-
titleType: "ITEM_NAME" | "SKU" | "BOTH";
|
|
15
|
-
disableAutomaticLabelCreation?: boolean | null | undefined;
|
|
15
|
+
titleType: "NONE" | "ITEM_NAME" | "SKU" | "BOTH";
|
|
16
16
|
}, {
|
|
17
17
|
id: string;
|
|
18
18
|
userId: number;
|
|
19
19
|
updatedAt: Date;
|
|
20
|
+
disableAutomaticLabelCreation: boolean;
|
|
20
21
|
dropOffType: "MAILBOX" | "PICKUP_POINT";
|
|
21
|
-
titleType: "ITEM_NAME" | "SKU" | "BOTH";
|
|
22
|
-
disableAutomaticLabelCreation?: boolean | null | undefined;
|
|
22
|
+
titleType: "NONE" | "ITEM_NAME" | "SKU" | "BOTH";
|
|
23
23
|
}>;
|
|
24
24
|
export type OrderLabelPreference = z.infer<typeof OrderLabelPreferenceSchema>;
|
|
25
25
|
//# sourceMappingURL=OrderLabelPreference.d.ts.map
|
|
@@ -4,7 +4,7 @@ import { OrderLabelPreferenceTitleTypeSchema } from "./OrderLabelPreferenceTitle
|
|
|
4
4
|
export const OrderLabelPreferenceSchema = z.object({
|
|
5
5
|
id: z.string().uuid(),
|
|
6
6
|
userId: z.number(),
|
|
7
|
-
disableAutomaticLabelCreation: z.boolean()
|
|
7
|
+
disableAutomaticLabelCreation: z.boolean(),
|
|
8
8
|
dropOffType: OrderLabelPreferenceDropOffTypeSchema,
|
|
9
9
|
titleType: OrderLabelPreferenceTitleTypeSchema,
|
|
10
10
|
updatedAt: z.coerce.date()
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OrderLabelPreference.js","sourceRoot":"","sources":["OrderLabelPreference.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AACrB,OAAO,EAAC,qCAAqC,EAAC,MAAM,mCAAmC,CAAA;AACvF,OAAO,EAAC,mCAAmC,EAAC,MAAM,iCAAiC,CAAA;AAEnF,MAAM,CAAC,MAAM,0BAA0B,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/C,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IACrB,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;IAClB,6BAA6B,EAAE,CAAC,CAAC,OAAO,EAAE
|
|
1
|
+
{"version":3,"file":"OrderLabelPreference.js","sourceRoot":"","sources":["OrderLabelPreference.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AACrB,OAAO,EAAC,qCAAqC,EAAC,MAAM,mCAAmC,CAAA;AACvF,OAAO,EAAC,mCAAmC,EAAC,MAAM,iCAAiC,CAAA;AAEnF,MAAM,CAAC,MAAM,0BAA0B,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/C,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IACrB,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;IAClB,6BAA6B,EAAE,CAAC,CAAC,OAAO,EAAE;IAC1C,WAAW,EAAE,qCAAqC;IAClD,SAAS,EAAE,mCAAmC;IAC9C,SAAS,EAAE,CAAC,CAAC,MAAM,CAAC,IAAI,EAAE;CAC7B,CAAC,CAAA"}
|
|
@@ -5,7 +5,7 @@ import {OrderLabelPreferenceTitleTypeSchema} from "./OrderLabelPreferenceTitleTy
|
|
|
5
5
|
export const OrderLabelPreferenceSchema = z.object({
|
|
6
6
|
id: z.string().uuid(),
|
|
7
7
|
userId: z.number(),
|
|
8
|
-
disableAutomaticLabelCreation: z.boolean()
|
|
8
|
+
disableAutomaticLabelCreation: z.boolean(),
|
|
9
9
|
dropOffType: OrderLabelPreferenceDropOffTypeSchema,
|
|
10
10
|
titleType: OrderLabelPreferenceTitleTypeSchema,
|
|
11
11
|
updatedAt: z.coerce.date()
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
-
export declare const OrderLabelPreferenceTitleTypeSchema: z.ZodEnum<["ITEM_NAME", "SKU", "BOTH"]>;
|
|
2
|
+
export declare const OrderLabelPreferenceTitleTypeSchema: z.ZodEnum<["ITEM_NAME", "SKU", "BOTH", "NONE"]>;
|
|
3
3
|
export type OrderLabelPreferenceTitleType = z.infer<typeof OrderLabelPreferenceTitleTypeSchema>;
|
|
4
4
|
//# sourceMappingURL=OrderLabelPreferenceTitleType.d.ts.map
|
package/src/com/controlresell/models/orders/preferences/OrderLabelPreferenceTitleType.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OrderLabelPreferenceTitleType.d.ts","sourceRoot":"","sources":["OrderLabelPreferenceTitleType.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAErB,eAAO,MAAM,mCAAmC,
|
|
1
|
+
{"version":3,"file":"OrderLabelPreferenceTitleType.d.ts","sourceRoot":"","sources":["OrderLabelPreferenceTitleType.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAErB,eAAO,MAAM,mCAAmC,iDAE9C,CAAA;AACF,MAAM,MAAM,6BAA6B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mCAAmC,CAAC,CAAA"}
|
package/src/com/controlresell/models/orders/preferences/OrderLabelPreferenceTitleType.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OrderLabelPreferenceTitleType.js","sourceRoot":"","sources":["OrderLabelPreferenceTitleType.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAErB,MAAM,CAAC,MAAM,mCAAmC,GAAG,CAAC,CAAC,IAAI,CAAC;IACtD,WAAW,EAAE,KAAK,EAAE,MAAM;
|
|
1
|
+
{"version":3,"file":"OrderLabelPreferenceTitleType.js","sourceRoot":"","sources":["OrderLabelPreferenceTitleType.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAErB,MAAM,CAAC,MAAM,mCAAmC,GAAG,CAAC,CAAC,IAAI,CAAC;IACtD,WAAW,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM;CACrC,CAAC,CAAA"}
|
package/src/com/controlresell/models/orders/preferences/UpdateOrderLabelPreferencePayload.d.ts
CHANGED
|
@@ -2,14 +2,14 @@ import { z } from "zod";
|
|
|
2
2
|
export declare const UpdateOrderLabelPreferencePayloadSchema: z.ZodObject<{
|
|
3
3
|
disableAutomaticLabelCreation: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
4
4
|
dropOffType: z.ZodEnum<["MAILBOX", "PICKUP_POINT"]>;
|
|
5
|
-
titleType: z.ZodEnum<["ITEM_NAME", "SKU", "BOTH"]>;
|
|
5
|
+
titleType: z.ZodEnum<["ITEM_NAME", "SKU", "BOTH", "NONE"]>;
|
|
6
6
|
}, "strip", z.ZodTypeAny, {
|
|
7
7
|
dropOffType: "MAILBOX" | "PICKUP_POINT";
|
|
8
|
-
titleType: "ITEM_NAME" | "SKU" | "BOTH";
|
|
8
|
+
titleType: "NONE" | "ITEM_NAME" | "SKU" | "BOTH";
|
|
9
9
|
disableAutomaticLabelCreation?: boolean | null | undefined;
|
|
10
10
|
}, {
|
|
11
11
|
dropOffType: "MAILBOX" | "PICKUP_POINT";
|
|
12
|
-
titleType: "ITEM_NAME" | "SKU" | "BOTH";
|
|
12
|
+
titleType: "NONE" | "ITEM_NAME" | "SKU" | "BOTH";
|
|
13
13
|
disableAutomaticLabelCreation?: boolean | null | undefined;
|
|
14
14
|
}>;
|
|
15
15
|
export type UpdateOrderLabelPreferencePayload = z.infer<typeof UpdateOrderLabelPreferencePayloadSchema>;
|