@natch-the-storage/heathershaw-platform-types 1.17.1 → 1.17.3
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/validators.d.ts +2 -2
- package/build/validators.js +2 -0
- package/package.json +1 -1
package/build/validators.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export declare const cDProductCategoryLabelValues: readonly ["OTC", "Schedule 4", "Schedule 8"];
|
|
2
|
-
export declare const cDProductCategoryIdValues: readonly ["schedule_1", "schedule_4", "schedule_8"];
|
|
1
|
+
export declare const cDProductCategoryLabelValues: readonly ["OTC", "Schedule 2", "Schedule 4", "Schedule 8"];
|
|
2
|
+
export declare const cDProductCategoryIdValues: readonly ["schedule_1", "schedule_2", "schedule_4", "schedule_8"];
|
|
3
3
|
export declare const logItemTypeValues: readonly ["CREATED", "CREATED_PAID", "UPDATED", "UPDATED_DRAFT", "MARKED_FOR_PICKUP", "CANCELLED", "PAYMENT_LINK_PHONE", "PAYMENT_LINK_EMAIL", "PAYMENT_LINK_BOTH", "PARTNER_ORDERED_INVOICE", "PARTNER_ORDERED_POS", "PAID", "MARKED_PAID", "PAYMENT_LINK_PAID"];
|
|
4
4
|
export declare const orderFulfillmentValues: readonly ["PICKUP", "POST", "COURIER", "DELIVER"];
|
|
5
5
|
export declare const orderStatusValues: readonly ["TO_REVIEW", "AWAITING_PICKUP", "POSTED", "IN_TRANSIT", "DELIVERED", "COLLECTED", "CANCELLED"];
|
package/build/validators.js
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
//#region Enum value arrays ──────────────────────────────────────────────────────────
|
|
2
2
|
export const cDProductCategoryLabelValues = [
|
|
3
3
|
'OTC',
|
|
4
|
+
'Schedule 2',
|
|
4
5
|
'Schedule 4',
|
|
5
6
|
'Schedule 8',
|
|
6
7
|
];
|
|
7
8
|
// don't touch, this is how they exist in Compound Direct
|
|
8
9
|
export const cDProductCategoryIdValues = [
|
|
9
10
|
'schedule_1',
|
|
11
|
+
'schedule_2',
|
|
10
12
|
'schedule_4',
|
|
11
13
|
'schedule_8',
|
|
12
14
|
];
|