erpnext-queue-client 1.0.6 → 1.1.0
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/client.js +41 -16
- package/dist/erpnext/decryptFromErpNext.server.d.ts +1 -1
- package/dist/erpnext/doctypeResourceRequest.d.ts +38 -0
- package/dist/erpnext/doctypeResourceRequest.js +59 -0
- package/dist/erpnext/doctypeSubmittableResourceRequest.d.ts +8 -0
- package/dist/erpnext/doctypeSubmittableResourceRequest.js +39 -0
- package/dist/erpnext/doctypes/address.d.ts +263 -0
- package/dist/erpnext/doctypes/address.js +46 -0
- package/dist/erpnext/doctypes/contact.d.ts +383 -0
- package/dist/erpnext/doctypes/contact.js +46 -0
- package/dist/erpnext/doctypes/deliveryNote.d.ts +985 -0
- package/dist/erpnext/doctypes/deliveryNote.js +38 -0
- package/dist/erpnext/doctypes/item.d.ts +572 -0
- package/dist/erpnext/doctypes/item.js +95 -0
- package/dist/erpnext/doctypes/purchaseReceipt.d.ts +743 -0
- package/dist/erpnext/doctypes/purchaseReceipt.js +50 -0
- package/dist/erpnext/doctypes/shipment.d.ts +752 -0
- package/dist/erpnext/doctypes/shipment.js +51 -0
- package/dist/erpnext/erpnextRequestWrapper.js +15 -13
- package/dist/erpnext/fileRequests.d.ts +10 -0
- package/dist/erpnext/fileRequests.js +42 -0
- package/dist/erpnext/methodRequest.d.ts +15 -0
- package/dist/erpnext/methodRequest.js +32 -0
- package/dist/erpnext/model/Address.d.ts +200 -198
- package/dist/erpnext/model/Address.js +3 -2
- package/dist/erpnext/model/Contact.d.ts +343 -344
- package/dist/erpnext/model/Contact.js +2 -2
- package/dist/erpnext/model/Country.d.ts +83 -31
- package/dist/erpnext/model/Country.js +2 -6
- package/dist/erpnext/model/Customer.d.ts +64 -65
- package/dist/erpnext/model/Customer.js +2 -2
- package/dist/erpnext/model/DeliveryNote.d.ts +1048 -1048
- package/dist/erpnext/model/DispatchRun.d.ts +399 -399
- package/dist/erpnext/model/DispatcherPreset.d.ts +94 -94
- package/dist/erpnext/model/ERPNextRequest.d.ts +47 -30
- package/dist/erpnext/model/ERPNextResponse.d.ts +4 -4
- package/dist/erpnext/model/File.d.ts +88 -88
- package/dist/erpnext/model/Fulfiller.d.ts +97 -97
- package/dist/erpnext/model/FulfillerSettings.d.ts +66 -66
- package/dist/erpnext/model/FulfillmentStation.d.ts +2 -2
- package/dist/erpnext/model/Item.d.ts +819 -819
- package/dist/erpnext/model/Item.js +2 -2
- package/dist/erpnext/model/PaymentEntry.d.ts +197 -0
- package/dist/erpnext/model/PaymentEntry.js +63 -0
- package/dist/erpnext/model/ProjectedQuantityReport.d.ts +178 -178
- package/dist/erpnext/model/PurchaseOrder.d.ts +528 -528
- package/dist/erpnext/model/Receipt.d.ts +448 -448
- package/dist/erpnext/model/Receipt.js +2 -2
- package/dist/erpnext/model/ReceiptDraft.d.ts +392 -392
- package/dist/erpnext/model/Shipment.d.ts +709 -709
- package/dist/erpnext/model/ShippingProvider.d.ts +198 -198
- package/dist/erpnext/model/StockEntry.d.ts +248 -0
- package/dist/erpnext/model/StockEntry.js +76 -0
- package/dist/erpnext/model/StockReconciliation.d.ts +187 -0
- package/dist/erpnext/model/StockReconciliation.js +44 -0
- package/dist/erpnext/model/Supplier.d.ts +105 -0
- package/dist/erpnext/model/Supplier.js +39 -0
- package/dist/erpnext/model/Waitlist.d.ts +32 -0
- package/dist/erpnext/model/Waitlist.js +19 -0
- package/dist/erpnext/model/WarehouseCategory.d.ts +6 -6
- package/dist/erpnext/resourceRequest.d.ts +39 -10
- package/dist/erpnext/resourceRequest.js +115 -14
- package/dist/index.d.ts +39 -4
- package/dist/index.js +43 -8
- package/dist/utils/fernet.server.d.ts +11 -11
- package/dist/utils/fernet.server.js +0 -1
- package/dist/utils/request.js +2 -2
- package/dist/utils/zodUtils.d.ts +2 -1
- package/dist/utils/zodUtils.js +14 -1
- package/package.json +4 -1
- package/dist/erpnext/doctypes/country.d.ts +0 -9
- package/dist/erpnext/doctypes/country.js +0 -28
- package/dist/erpnext/erpnextRequests.d.ts +0 -1
- package/dist/erpnext/erpnextRequests.js +0 -15
- package/dist/erpnext.d.ts +0 -20
- package/dist/erpnext.js +0 -45
|
@@ -25,55 +25,55 @@ export declare const Fulfiller: z.ZodObject<{
|
|
|
25
25
|
email_template: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
26
26
|
doctype: z.ZodString;
|
|
27
27
|
}, "strip", z.ZodTypeAny, {
|
|
28
|
-
name
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
email_address_field?: string;
|
|
51
|
-
email_template?: string;
|
|
28
|
+
name: string;
|
|
29
|
+
owner: string;
|
|
30
|
+
creation: string;
|
|
31
|
+
modified: string;
|
|
32
|
+
modified_by: string;
|
|
33
|
+
idx: number;
|
|
34
|
+
docstatus: number;
|
|
35
|
+
doctype: string;
|
|
36
|
+
title: string;
|
|
37
|
+
language: string;
|
|
38
|
+
active: boolean;
|
|
39
|
+
create_shipping_labels: boolean;
|
|
40
|
+
create_delivery_notes: boolean;
|
|
41
|
+
create_picking_list: boolean;
|
|
42
|
+
create_csv_file: boolean;
|
|
43
|
+
is_dropshipping: boolean;
|
|
44
|
+
fulfillment_warehouse: string;
|
|
45
|
+
pickinglist_sorting: string;
|
|
46
|
+
send_email: boolean;
|
|
47
|
+
warehouse?: string | null | undefined;
|
|
48
|
+
supplier?: string | null | undefined;
|
|
49
|
+
csv_file_type?: string | null | undefined;
|
|
50
|
+
email_address_field?: string | null | undefined;
|
|
51
|
+
email_template?: string | null | undefined;
|
|
52
52
|
}, {
|
|
53
|
-
name
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
email_address_field?: string;
|
|
76
|
-
email_template?: string;
|
|
53
|
+
name: string;
|
|
54
|
+
owner: string;
|
|
55
|
+
creation: string;
|
|
56
|
+
modified: string;
|
|
57
|
+
modified_by: string;
|
|
58
|
+
idx: number;
|
|
59
|
+
docstatus: number;
|
|
60
|
+
doctype: string;
|
|
61
|
+
title: string;
|
|
62
|
+
language: string;
|
|
63
|
+
active: number;
|
|
64
|
+
create_shipping_labels: number;
|
|
65
|
+
create_delivery_notes: number;
|
|
66
|
+
create_picking_list: number;
|
|
67
|
+
create_csv_file: number;
|
|
68
|
+
is_dropshipping: number;
|
|
69
|
+
fulfillment_warehouse: string;
|
|
70
|
+
pickinglist_sorting: string;
|
|
71
|
+
send_email: number;
|
|
72
|
+
warehouse?: string | null | undefined;
|
|
73
|
+
supplier?: string | null | undefined;
|
|
74
|
+
csv_file_type?: string | null | undefined;
|
|
75
|
+
email_address_field?: string | null | undefined;
|
|
76
|
+
email_template?: string | null | undefined;
|
|
77
77
|
}>;
|
|
78
78
|
export type FulfillerType = z.infer<typeof Fulfiller>;
|
|
79
79
|
export declare const fulfillerLeanFieldList: readonly ["name", "active", "supplier", "create_delivery_notes", "create_shipping_labels", "create_picking_list", "create_csv_file", "csv_file_type", "is_dropshipping", "warehouse", "fulfillment_warehouse", "send_email", "email_template", "email_address_field", "language", "title"];
|
|
@@ -102,40 +102,40 @@ export declare const FulfillerLean: z.ZodObject<Pick<{
|
|
|
102
102
|
email_address_field: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
103
103
|
email_template: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
104
104
|
doctype: z.ZodString;
|
|
105
|
-
}, "name" | "
|
|
106
|
-
name
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
supplier?: string;
|
|
119
|
-
|
|
120
|
-
email_address_field?: string;
|
|
121
|
-
email_template?: string;
|
|
105
|
+
}, "name" | "warehouse" | "title" | "language" | "supplier" | "active" | "create_shipping_labels" | "create_delivery_notes" | "create_picking_list" | "create_csv_file" | "csv_file_type" | "is_dropshipping" | "fulfillment_warehouse" | "send_email" | "email_address_field" | "email_template">, "strip", z.ZodTypeAny, {
|
|
106
|
+
name: string;
|
|
107
|
+
title: string;
|
|
108
|
+
language: string;
|
|
109
|
+
active: boolean;
|
|
110
|
+
create_shipping_labels: boolean;
|
|
111
|
+
create_delivery_notes: boolean;
|
|
112
|
+
create_picking_list: boolean;
|
|
113
|
+
create_csv_file: boolean;
|
|
114
|
+
is_dropshipping: boolean;
|
|
115
|
+
fulfillment_warehouse: string;
|
|
116
|
+
send_email: boolean;
|
|
117
|
+
warehouse?: string | null | undefined;
|
|
118
|
+
supplier?: string | null | undefined;
|
|
119
|
+
csv_file_type?: string | null | undefined;
|
|
120
|
+
email_address_field?: string | null | undefined;
|
|
121
|
+
email_template?: string | null | undefined;
|
|
122
122
|
}, {
|
|
123
|
-
name
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
supplier?: string;
|
|
136
|
-
|
|
137
|
-
email_address_field?: string;
|
|
138
|
-
email_template?: string;
|
|
123
|
+
name: string;
|
|
124
|
+
title: string;
|
|
125
|
+
language: string;
|
|
126
|
+
active: number;
|
|
127
|
+
create_shipping_labels: number;
|
|
128
|
+
create_delivery_notes: number;
|
|
129
|
+
create_picking_list: number;
|
|
130
|
+
create_csv_file: number;
|
|
131
|
+
is_dropshipping: number;
|
|
132
|
+
fulfillment_warehouse: string;
|
|
133
|
+
send_email: number;
|
|
134
|
+
warehouse?: string | null | undefined;
|
|
135
|
+
supplier?: string | null | undefined;
|
|
136
|
+
csv_file_type?: string | null | undefined;
|
|
137
|
+
email_address_field?: string | null | undefined;
|
|
138
|
+
email_template?: string | null | undefined;
|
|
139
139
|
}>;
|
|
140
140
|
export type FulfillerLeanType = z.infer<typeof FulfillerLean>;
|
|
141
141
|
declare const FulfillerListItem: z.ZodObject<{
|
|
@@ -144,15 +144,15 @@ declare const FulfillerListItem: z.ZodObject<{
|
|
|
144
144
|
is_dropshipping: z.ZodEffects<z.ZodNumber, boolean, number>;
|
|
145
145
|
active: z.ZodEffects<z.ZodNumber, boolean, number>;
|
|
146
146
|
}, "strip", z.ZodTypeAny, {
|
|
147
|
-
name
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
147
|
+
name: string;
|
|
148
|
+
active: boolean;
|
|
149
|
+
is_dropshipping: boolean;
|
|
150
|
+
warehouse?: string | null | undefined;
|
|
151
151
|
}, {
|
|
152
|
-
name
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
152
|
+
name: string;
|
|
153
|
+
active: number;
|
|
154
|
+
is_dropshipping: number;
|
|
155
|
+
warehouse?: string | null | undefined;
|
|
156
156
|
}>;
|
|
157
157
|
export type FulfillerListItemType = z.infer<typeof FulfillerListItem>;
|
|
158
158
|
export declare const FulfillerList: z.ZodArray<z.ZodObject<{
|
|
@@ -161,15 +161,15 @@ export declare const FulfillerList: z.ZodArray<z.ZodObject<{
|
|
|
161
161
|
is_dropshipping: z.ZodEffects<z.ZodNumber, boolean, number>;
|
|
162
162
|
active: z.ZodEffects<z.ZodNumber, boolean, number>;
|
|
163
163
|
}, "strip", z.ZodTypeAny, {
|
|
164
|
-
name
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
164
|
+
name: string;
|
|
165
|
+
active: boolean;
|
|
166
|
+
is_dropshipping: boolean;
|
|
167
|
+
warehouse?: string | null | undefined;
|
|
168
168
|
}, {
|
|
169
|
-
name
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
169
|
+
name: string;
|
|
170
|
+
active: number;
|
|
171
|
+
is_dropshipping: number;
|
|
172
|
+
warehouse?: string | null | undefined;
|
|
173
173
|
}>, "many">;
|
|
174
174
|
export type FulfillerListType = z.infer<typeof FulfillerList>;
|
|
175
175
|
export {};
|
|
@@ -11,27 +11,27 @@ export declare const FulfillerShippingSettingsItem: z.ZodObject<{
|
|
|
11
11
|
bundle_type: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Inside box">, z.ZodLiteral<"Outside box">]>>>;
|
|
12
12
|
max_bundle_with_amount: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
13
13
|
}, "strip", z.ZodTypeAny, {
|
|
14
|
-
name
|
|
15
|
-
parent
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
can_be_bundled_with?: string;
|
|
22
|
-
bundle_type?: "Inside box" | "Outside box";
|
|
23
|
-
max_bundle_with_amount?: number;
|
|
14
|
+
name: string;
|
|
15
|
+
parent: string;
|
|
16
|
+
shipping_provider: string;
|
|
17
|
+
fulfiller: string;
|
|
18
|
+
is_active: boolean;
|
|
19
|
+
is_ship_individually: boolean;
|
|
20
|
+
bundle_size: number;
|
|
21
|
+
can_be_bundled_with?: string | null | undefined;
|
|
22
|
+
bundle_type?: "Inside box" | "Outside box" | null | undefined;
|
|
23
|
+
max_bundle_with_amount?: number | null | undefined;
|
|
24
24
|
}, {
|
|
25
|
-
name
|
|
26
|
-
parent
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
can_be_bundled_with?: string;
|
|
33
|
-
bundle_type?: "Inside box" | "Outside box";
|
|
34
|
-
max_bundle_with_amount?: number;
|
|
25
|
+
name: string;
|
|
26
|
+
parent: string;
|
|
27
|
+
shipping_provider: string;
|
|
28
|
+
fulfiller: string;
|
|
29
|
+
is_active: number;
|
|
30
|
+
is_ship_individually: number;
|
|
31
|
+
bundle_size: number;
|
|
32
|
+
can_be_bundled_with?: string | null | undefined;
|
|
33
|
+
bundle_type?: "Inside box" | "Outside box" | null | undefined;
|
|
34
|
+
max_bundle_with_amount?: number | null | undefined;
|
|
35
35
|
}>;
|
|
36
36
|
export type FulfillerShippingSettingsItemType = z.infer<typeof FulfillerShippingSettingsItem>;
|
|
37
37
|
export declare const FulfillerShippingSettings: z.ZodArray<z.ZodObject<{
|
|
@@ -46,27 +46,27 @@ export declare const FulfillerShippingSettings: z.ZodArray<z.ZodObject<{
|
|
|
46
46
|
bundle_type: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Inside box">, z.ZodLiteral<"Outside box">]>>>;
|
|
47
47
|
max_bundle_with_amount: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
48
48
|
}, "strip", z.ZodTypeAny, {
|
|
49
|
-
name
|
|
50
|
-
parent
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
can_be_bundled_with?: string;
|
|
57
|
-
bundle_type?: "Inside box" | "Outside box";
|
|
58
|
-
max_bundle_with_amount?: number;
|
|
49
|
+
name: string;
|
|
50
|
+
parent: string;
|
|
51
|
+
shipping_provider: string;
|
|
52
|
+
fulfiller: string;
|
|
53
|
+
is_active: boolean;
|
|
54
|
+
is_ship_individually: boolean;
|
|
55
|
+
bundle_size: number;
|
|
56
|
+
can_be_bundled_with?: string | null | undefined;
|
|
57
|
+
bundle_type?: "Inside box" | "Outside box" | null | undefined;
|
|
58
|
+
max_bundle_with_amount?: number | null | undefined;
|
|
59
59
|
}, {
|
|
60
|
-
name
|
|
61
|
-
parent
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
can_be_bundled_with?: string;
|
|
68
|
-
bundle_type?: "Inside box" | "Outside box";
|
|
69
|
-
max_bundle_with_amount?: number;
|
|
60
|
+
name: string;
|
|
61
|
+
parent: string;
|
|
62
|
+
shipping_provider: string;
|
|
63
|
+
fulfiller: string;
|
|
64
|
+
is_active: number;
|
|
65
|
+
is_ship_individually: number;
|
|
66
|
+
bundle_size: number;
|
|
67
|
+
can_be_bundled_with?: string | null | undefined;
|
|
68
|
+
bundle_type?: "Inside box" | "Outside box" | null | undefined;
|
|
69
|
+
max_bundle_with_amount?: number | null | undefined;
|
|
70
70
|
}>, "many">;
|
|
71
71
|
export type FulfillerShippingSettingsType = z.infer<typeof FulfillerShippingSettings>;
|
|
72
72
|
export declare const FulfillerShippingSettingsWithSkus: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -83,29 +83,29 @@ export declare const FulfillerShippingSettingsWithSkus: z.ZodArray<z.ZodObject<z
|
|
|
83
83
|
}, {
|
|
84
84
|
skus: z.ZodArray<z.ZodString, "many">;
|
|
85
85
|
}>, "strip", z.ZodTypeAny, {
|
|
86
|
-
name
|
|
87
|
-
parent
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
can_be_bundled_with?: string;
|
|
95
|
-
bundle_type?: "Inside box" | "Outside box";
|
|
96
|
-
max_bundle_with_amount?: number;
|
|
86
|
+
name: string;
|
|
87
|
+
parent: string;
|
|
88
|
+
shipping_provider: string;
|
|
89
|
+
fulfiller: string;
|
|
90
|
+
is_active: boolean;
|
|
91
|
+
skus: string[];
|
|
92
|
+
is_ship_individually: boolean;
|
|
93
|
+
bundle_size: number;
|
|
94
|
+
can_be_bundled_with?: string | null | undefined;
|
|
95
|
+
bundle_type?: "Inside box" | "Outside box" | null | undefined;
|
|
96
|
+
max_bundle_with_amount?: number | null | undefined;
|
|
97
97
|
}, {
|
|
98
|
-
name
|
|
99
|
-
parent
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
can_be_bundled_with?: string;
|
|
107
|
-
bundle_type?: "Inside box" | "Outside box";
|
|
108
|
-
max_bundle_with_amount?: number;
|
|
98
|
+
name: string;
|
|
99
|
+
parent: string;
|
|
100
|
+
shipping_provider: string;
|
|
101
|
+
fulfiller: string;
|
|
102
|
+
is_active: number;
|
|
103
|
+
skus: string[];
|
|
104
|
+
is_ship_individually: number;
|
|
105
|
+
bundle_size: number;
|
|
106
|
+
can_be_bundled_with?: string | null | undefined;
|
|
107
|
+
bundle_type?: "Inside box" | "Outside box" | null | undefined;
|
|
108
|
+
max_bundle_with_amount?: number | null | undefined;
|
|
109
109
|
}>, "many">;
|
|
110
110
|
export type FulfillerShippingSettingsWithSkusType = z.infer<typeof FulfillerShippingSettingsWithSkus>;
|
|
111
111
|
declare const FulfillerShippingSettingsMinimal: z.ZodArray<z.ZodObject<Pick<{
|
|
@@ -120,11 +120,11 @@ declare const FulfillerShippingSettingsMinimal: z.ZodArray<z.ZodObject<Pick<{
|
|
|
120
120
|
bundle_type: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Inside box">, z.ZodLiteral<"Outside box">]>>>;
|
|
121
121
|
max_bundle_with_amount: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
122
122
|
}, "parent" | "fulfiller">, "strip", z.ZodTypeAny, {
|
|
123
|
-
parent
|
|
124
|
-
fulfiller
|
|
123
|
+
parent: string;
|
|
124
|
+
fulfiller: string;
|
|
125
125
|
}, {
|
|
126
|
-
parent
|
|
127
|
-
fulfiller
|
|
126
|
+
parent: string;
|
|
127
|
+
fulfiller: string;
|
|
128
128
|
}>, "many">;
|
|
129
129
|
export type FulfillerShippingSettingsMinimalType = z.infer<typeof FulfillerShippingSettingsMinimal>;
|
|
130
130
|
export {};
|
|
@@ -2,8 +2,8 @@ import { z } from "zod";
|
|
|
2
2
|
export declare const FulfillmentStations: z.ZodArray<z.ZodObject<{
|
|
3
3
|
fulfillment_station: z.ZodString;
|
|
4
4
|
}, "strip", z.ZodTypeAny, {
|
|
5
|
-
fulfillment_station
|
|
5
|
+
fulfillment_station: string;
|
|
6
6
|
}, {
|
|
7
|
-
fulfillment_station
|
|
7
|
+
fulfillment_station: string;
|
|
8
8
|
}>, "many">;
|
|
9
9
|
export type FulfillmentStationsType = z.infer<typeof FulfillmentStations>;
|