@simpleapps-com/augur-api 0.2.3 → 0.2.4
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/cjs/client.d.ts +181 -0
- package/dist/cjs/client.d.ts.map +1 -1
- package/dist/cjs/client.js +449 -0
- package/dist/cjs/client.js.map +1 -1
- package/dist/cjs/core/base-client.d.ts +104 -0
- package/dist/cjs/core/base-client.d.ts.map +1 -1
- package/dist/cjs/core/base-client.js +201 -0
- package/dist/cjs/core/base-client.js.map +1 -1
- package/dist/cjs/index.d.ts +1 -0
- package/dist/cjs/index.d.ts.map +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/services/items/client.d.ts +2 -2
- package/dist/cjs/services/items/schemas/categories.d.ts +20 -20
- package/dist/cjs/services/joomla/client.d.ts +644 -99
- package/dist/cjs/services/joomla/client.d.ts.map +1 -1
- package/dist/cjs/services/joomla/client.js +467 -98
- package/dist/cjs/services/joomla/client.js.map +1 -1
- package/dist/cjs/services/nexus/client.d.ts +1096 -22
- package/dist/cjs/services/nexus/client.d.ts.map +1 -1
- package/dist/cjs/services/nexus/client.js +754 -22
- package/dist/cjs/services/nexus/client.js.map +1 -1
- package/dist/cjs/services/orders/client.d.ts +3 -3
- package/dist/cjs/services/orders/schemas/orders.d.ts +12 -12
- package/dist/cjs/services/orders/schemas/purchase-orders.d.ts +22 -22
- package/dist/cjs/services/vmi/schemas/inventory.d.ts +6 -6
- package/dist/cjs/services/vmi/schemas/products.d.ts +6 -6
- package/dist/cjs/services/vmi/schemas/restock.d.ts +12 -12
- package/dist/esm/client.d.ts +181 -0
- package/dist/esm/client.d.ts.map +1 -1
- package/dist/esm/client.js +449 -0
- package/dist/esm/client.js.map +1 -1
- package/dist/esm/core/base-client.d.ts +104 -0
- package/dist/esm/core/base-client.d.ts.map +1 -1
- package/dist/esm/core/base-client.js +201 -0
- package/dist/esm/core/base-client.js.map +1 -1
- package/dist/esm/index.d.ts +1 -0
- package/dist/esm/index.d.ts.map +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/services/items/client.d.ts +2 -2
- package/dist/esm/services/items/schemas/categories.d.ts +20 -20
- package/dist/esm/services/joomla/client.d.ts +644 -99
- package/dist/esm/services/joomla/client.d.ts.map +1 -1
- package/dist/esm/services/joomla/client.js +467 -98
- package/dist/esm/services/joomla/client.js.map +1 -1
- package/dist/esm/services/nexus/client.d.ts +1096 -22
- package/dist/esm/services/nexus/client.d.ts.map +1 -1
- package/dist/esm/services/nexus/client.js +754 -22
- package/dist/esm/services/nexus/client.js.map +1 -1
- package/dist/esm/services/orders/client.d.ts +3 -3
- package/dist/esm/services/orders/schemas/orders.d.ts +12 -12
- package/dist/esm/services/orders/schemas/purchase-orders.d.ts +22 -22
- package/dist/esm/services/vmi/schemas/inventory.d.ts +6 -6
- package/dist/esm/services/vmi/schemas/products.d.ts +6 -6
- package/dist/esm/services/vmi/schemas/restock.d.ts +12 -12
- package/dist/types/client.d.ts +181 -0
- package/dist/types/client.d.ts.map +1 -1
- package/dist/types/core/base-client.d.ts +104 -0
- package/dist/types/core/base-client.d.ts.map +1 -1
- package/dist/types/index.d.ts +1 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/services/items/client.d.ts +2 -2
- package/dist/types/services/items/schemas/categories.d.ts +20 -20
- package/dist/types/services/joomla/client.d.ts +644 -99
- package/dist/types/services/joomla/client.d.ts.map +1 -1
- package/dist/types/services/nexus/client.d.ts +1096 -22
- package/dist/types/services/nexus/client.d.ts.map +1 -1
- package/dist/types/services/orders/client.d.ts +3 -3
- package/dist/types/services/orders/schemas/orders.d.ts +12 -12
- package/dist/types/services/orders/schemas/purchase-orders.d.ts +22 -22
- package/dist/types/services/vmi/schemas/inventory.d.ts +6 -6
- package/dist/types/services/vmi/schemas/products.d.ts +6 -6
- package/dist/types/services/vmi/schemas/restock.d.ts +12 -12
- package/package.json +1 -1
|
@@ -66,21 +66,21 @@ export declare const LookupCategoryEntitySchema: z.ZodObject<{
|
|
|
66
66
|
itemCount: z.ZodNumber;
|
|
67
67
|
fullPath: z.ZodNullable<z.ZodString>;
|
|
68
68
|
}, "strip", z.ZodTypeAny, {
|
|
69
|
+
fullPath: string | null;
|
|
69
70
|
displayOnWebFlag: "Y" | "N";
|
|
70
71
|
deleteFlag: "Y" | "N";
|
|
71
72
|
itemCategoryUid: number;
|
|
72
73
|
itemCategoryId: string;
|
|
73
74
|
itemCategoryDesc: string;
|
|
74
75
|
itemCount: number;
|
|
75
|
-
fullPath: string | null;
|
|
76
76
|
}, {
|
|
77
|
+
fullPath: string | null;
|
|
77
78
|
displayOnWebFlag: "Y" | "N";
|
|
78
79
|
deleteFlag: "Y" | "N";
|
|
79
80
|
itemCategoryUid: number;
|
|
80
81
|
itemCategoryId: string;
|
|
81
82
|
itemCategoryDesc: string;
|
|
82
83
|
itemCount: number;
|
|
83
|
-
fullPath: string | null;
|
|
84
84
|
}>;
|
|
85
85
|
export declare const SubCategorySchema: z.ZodObject<{
|
|
86
86
|
itemCategoryUid: z.ZodNumber;
|
|
@@ -91,21 +91,21 @@ export declare const SubCategorySchema: z.ZodObject<{
|
|
|
91
91
|
itemCount: z.ZodNumber;
|
|
92
92
|
fullPath: z.ZodNullable<z.ZodString>;
|
|
93
93
|
}, "strip", z.ZodTypeAny, {
|
|
94
|
+
fullPath: string | null;
|
|
94
95
|
displayOnWebFlag: "Y" | "N";
|
|
95
96
|
deleteFlag: "Y" | "N";
|
|
96
97
|
itemCategoryUid: number;
|
|
97
98
|
itemCategoryId: string;
|
|
98
99
|
itemCategoryDesc: string;
|
|
99
100
|
itemCount: number;
|
|
100
|
-
fullPath: string | null;
|
|
101
101
|
}, {
|
|
102
|
+
fullPath: string | null;
|
|
102
103
|
displayOnWebFlag: "Y" | "N";
|
|
103
104
|
deleteFlag: "Y" | "N";
|
|
104
105
|
itemCategoryUid: number;
|
|
105
106
|
itemCategoryId: string;
|
|
106
107
|
itemCategoryDesc: string;
|
|
107
108
|
itemCount: number;
|
|
108
|
-
fullPath: string | null;
|
|
109
109
|
}>;
|
|
110
110
|
export declare const LookupCategoryWithSubsSchema: z.ZodObject<{
|
|
111
111
|
itemCategoryUid: z.ZodNumber;
|
|
@@ -125,55 +125,55 @@ export declare const LookupCategoryWithSubsSchema: z.ZodObject<{
|
|
|
125
125
|
itemCount: z.ZodNumber;
|
|
126
126
|
fullPath: z.ZodNullable<z.ZodString>;
|
|
127
127
|
}, "strip", z.ZodTypeAny, {
|
|
128
|
+
fullPath: string | null;
|
|
128
129
|
displayOnWebFlag: "Y" | "N";
|
|
129
130
|
deleteFlag: "Y" | "N";
|
|
130
131
|
itemCategoryUid: number;
|
|
131
132
|
itemCategoryId: string;
|
|
132
133
|
itemCategoryDesc: string;
|
|
133
134
|
itemCount: number;
|
|
134
|
-
fullPath: string | null;
|
|
135
135
|
}, {
|
|
136
|
+
fullPath: string | null;
|
|
136
137
|
displayOnWebFlag: "Y" | "N";
|
|
137
138
|
deleteFlag: "Y" | "N";
|
|
138
139
|
itemCategoryUid: number;
|
|
139
140
|
itemCategoryId: string;
|
|
140
141
|
itemCategoryDesc: string;
|
|
141
142
|
itemCount: number;
|
|
142
|
-
fullPath: string | null;
|
|
143
143
|
}>, "many">;
|
|
144
144
|
}, "strip", z.ZodTypeAny, {
|
|
145
|
+
fullPath: string | null;
|
|
145
146
|
displayOnWebFlag: "Y" | "N";
|
|
146
147
|
deleteFlag: "Y" | "N";
|
|
147
148
|
itemCategoryUid: number;
|
|
148
149
|
itemCategoryId: string;
|
|
149
150
|
itemCategoryDesc: string;
|
|
150
151
|
itemCount: number;
|
|
151
|
-
fullPath: string | null;
|
|
152
152
|
subCategories: {
|
|
153
|
+
fullPath: string | null;
|
|
153
154
|
displayOnWebFlag: "Y" | "N";
|
|
154
155
|
deleteFlag: "Y" | "N";
|
|
155
156
|
itemCategoryUid: number;
|
|
156
157
|
itemCategoryId: string;
|
|
157
158
|
itemCategoryDesc: string;
|
|
158
159
|
itemCount: number;
|
|
159
|
-
fullPath: string | null;
|
|
160
160
|
}[];
|
|
161
161
|
}, {
|
|
162
|
+
fullPath: string | null;
|
|
162
163
|
displayOnWebFlag: "Y" | "N";
|
|
163
164
|
deleteFlag: "Y" | "N";
|
|
164
165
|
itemCategoryUid: number;
|
|
165
166
|
itemCategoryId: string;
|
|
166
167
|
itemCategoryDesc: string;
|
|
167
168
|
itemCount: number;
|
|
168
|
-
fullPath: string | null;
|
|
169
169
|
subCategories: {
|
|
170
|
+
fullPath: string | null;
|
|
170
171
|
displayOnWebFlag: "Y" | "N";
|
|
171
172
|
deleteFlag: "Y" | "N";
|
|
172
173
|
itemCategoryUid: number;
|
|
173
174
|
itemCategoryId: string;
|
|
174
175
|
itemCategoryDesc: string;
|
|
175
176
|
itemCount: number;
|
|
176
|
-
fullPath: string | null;
|
|
177
177
|
}[];
|
|
178
178
|
}>;
|
|
179
179
|
export declare const CategorySchema: z.ZodType<{
|
|
@@ -685,55 +685,55 @@ export declare const CategoryLookupResponseSchema: z.ZodObject<{
|
|
|
685
685
|
itemCount: z.ZodNumber;
|
|
686
686
|
fullPath: z.ZodNullable<z.ZodString>;
|
|
687
687
|
}, "strip", z.ZodTypeAny, {
|
|
688
|
+
fullPath: string | null;
|
|
688
689
|
displayOnWebFlag: "Y" | "N";
|
|
689
690
|
deleteFlag: "Y" | "N";
|
|
690
691
|
itemCategoryUid: number;
|
|
691
692
|
itemCategoryId: string;
|
|
692
693
|
itemCategoryDesc: string;
|
|
693
694
|
itemCount: number;
|
|
694
|
-
fullPath: string | null;
|
|
695
695
|
}, {
|
|
696
|
+
fullPath: string | null;
|
|
696
697
|
displayOnWebFlag: "Y" | "N";
|
|
697
698
|
deleteFlag: "Y" | "N";
|
|
698
699
|
itemCategoryUid: number;
|
|
699
700
|
itemCategoryId: string;
|
|
700
701
|
itemCategoryDesc: string;
|
|
701
702
|
itemCount: number;
|
|
702
|
-
fullPath: string | null;
|
|
703
703
|
}>, "many">;
|
|
704
704
|
}, "strip", z.ZodTypeAny, {
|
|
705
|
+
fullPath: string | null;
|
|
705
706
|
displayOnWebFlag: "Y" | "N";
|
|
706
707
|
deleteFlag: "Y" | "N";
|
|
707
708
|
itemCategoryUid: number;
|
|
708
709
|
itemCategoryId: string;
|
|
709
710
|
itemCategoryDesc: string;
|
|
710
711
|
itemCount: number;
|
|
711
|
-
fullPath: string | null;
|
|
712
712
|
subCategories: {
|
|
713
|
+
fullPath: string | null;
|
|
713
714
|
displayOnWebFlag: "Y" | "N";
|
|
714
715
|
deleteFlag: "Y" | "N";
|
|
715
716
|
itemCategoryUid: number;
|
|
716
717
|
itemCategoryId: string;
|
|
717
718
|
itemCategoryDesc: string;
|
|
718
719
|
itemCount: number;
|
|
719
|
-
fullPath: string | null;
|
|
720
720
|
}[];
|
|
721
721
|
}, {
|
|
722
|
+
fullPath: string | null;
|
|
722
723
|
displayOnWebFlag: "Y" | "N";
|
|
723
724
|
deleteFlag: "Y" | "N";
|
|
724
725
|
itemCategoryUid: number;
|
|
725
726
|
itemCategoryId: string;
|
|
726
727
|
itemCategoryDesc: string;
|
|
727
728
|
itemCount: number;
|
|
728
|
-
fullPath: string | null;
|
|
729
729
|
subCategories: {
|
|
730
|
+
fullPath: string | null;
|
|
730
731
|
displayOnWebFlag: "Y" | "N";
|
|
731
732
|
deleteFlag: "Y" | "N";
|
|
732
733
|
itemCategoryUid: number;
|
|
733
734
|
itemCategoryId: string;
|
|
734
735
|
itemCategoryDesc: string;
|
|
735
736
|
itemCount: number;
|
|
736
|
-
fullPath: string | null;
|
|
737
737
|
}[];
|
|
738
738
|
}>;
|
|
739
739
|
message: z.ZodString;
|
|
@@ -745,21 +745,21 @@ export declare const CategoryLookupResponseSchema: z.ZodObject<{
|
|
|
745
745
|
}, "strip", z.ZodTypeAny, {
|
|
746
746
|
params: Record<string, unknown> | unknown[];
|
|
747
747
|
data: {
|
|
748
|
+
fullPath: string | null;
|
|
748
749
|
displayOnWebFlag: "Y" | "N";
|
|
749
750
|
deleteFlag: "Y" | "N";
|
|
750
751
|
itemCategoryUid: number;
|
|
751
752
|
itemCategoryId: string;
|
|
752
753
|
itemCategoryDesc: string;
|
|
753
754
|
itemCount: number;
|
|
754
|
-
fullPath: string | null;
|
|
755
755
|
subCategories: {
|
|
756
|
+
fullPath: string | null;
|
|
756
757
|
displayOnWebFlag: "Y" | "N";
|
|
757
758
|
deleteFlag: "Y" | "N";
|
|
758
759
|
itemCategoryUid: number;
|
|
759
760
|
itemCategoryId: string;
|
|
760
761
|
itemCategoryDesc: string;
|
|
761
762
|
itemCount: number;
|
|
762
|
-
fullPath: string | null;
|
|
763
763
|
}[];
|
|
764
764
|
};
|
|
765
765
|
options: Record<string, unknown> | unknown[];
|
|
@@ -771,21 +771,21 @@ export declare const CategoryLookupResponseSchema: z.ZodObject<{
|
|
|
771
771
|
}, {
|
|
772
772
|
params: Record<string, unknown> | unknown[];
|
|
773
773
|
data: {
|
|
774
|
+
fullPath: string | null;
|
|
774
775
|
displayOnWebFlag: "Y" | "N";
|
|
775
776
|
deleteFlag: "Y" | "N";
|
|
776
777
|
itemCategoryUid: number;
|
|
777
778
|
itemCategoryId: string;
|
|
778
779
|
itemCategoryDesc: string;
|
|
779
780
|
itemCount: number;
|
|
780
|
-
fullPath: string | null;
|
|
781
781
|
subCategories: {
|
|
782
|
+
fullPath: string | null;
|
|
782
783
|
displayOnWebFlag: "Y" | "N";
|
|
783
784
|
deleteFlag: "Y" | "N";
|
|
784
785
|
itemCategoryUid: number;
|
|
785
786
|
itemCategoryId: string;
|
|
786
787
|
itemCategoryDesc: string;
|
|
787
788
|
itemCount: number;
|
|
788
|
-
fullPath: string | null;
|
|
789
789
|
}[];
|
|
790
790
|
};
|
|
791
791
|
options: Record<string, unknown> | unknown[];
|