@simpleapps-com/augur-api 2026.5.4 → 2026.5.5
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-C72Z8ANN.d.mts → client-yZ3HRVgf.d.mts} +20 -2
- package/dist/{client-C72Z8ANN.d.ts → client-yZ3HRVgf.d.ts} +20 -2
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +59 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +59 -1
- package/dist/index.mjs.map +1 -1
- package/dist/testing.d.mts +1 -1
- package/dist/testing.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -4226,6 +4226,16 @@ var BrandsDataSchema = v11.looseObject({
|
|
|
4226
4226
|
processCd: v11.optional(v11.number()),
|
|
4227
4227
|
contentId: v11.optional(v11.nullable(v11.number()))
|
|
4228
4228
|
});
|
|
4229
|
+
var BrandsItemsDataSchema = v11.looseObject({
|
|
4230
|
+
brandsXItemsUid: v11.optional(v11.number()),
|
|
4231
|
+
brandsUid: v11.optional(v11.number()),
|
|
4232
|
+
invMastUid: v11.optional(v11.number()),
|
|
4233
|
+
dateCreated: v11.optional(v11.string()),
|
|
4234
|
+
dateLastModified: v11.optional(v11.string()),
|
|
4235
|
+
updateCd: v11.optional(v11.number()),
|
|
4236
|
+
statusCd: v11.optional(v11.number()),
|
|
4237
|
+
processCd: v11.optional(v11.number())
|
|
4238
|
+
});
|
|
4229
4239
|
var InvLocDataSchema = v11.looseObject({
|
|
4230
4240
|
companyId: v11.optional(v11.string()),
|
|
4231
4241
|
locationId: v11.optional(v11.number()),
|
|
@@ -4686,6 +4696,54 @@ var endpoints6 = [
|
|
|
4686
4696
|
responseSchema: PassthroughDataSchema6,
|
|
4687
4697
|
responseType: "passthrough"
|
|
4688
4698
|
},
|
|
4699
|
+
{
|
|
4700
|
+
method: "POST",
|
|
4701
|
+
path: "/brands/{brandsUid}/items",
|
|
4702
|
+
chain: "brands.items",
|
|
4703
|
+
action: "create",
|
|
4704
|
+
aliases: [],
|
|
4705
|
+
pathParams: ["brandsUid"],
|
|
4706
|
+
queryParams: [],
|
|
4707
|
+
edgeCache: false,
|
|
4708
|
+
responseSchema: BrandsItemsDataSchema,
|
|
4709
|
+
responseType: "object"
|
|
4710
|
+
},
|
|
4711
|
+
{
|
|
4712
|
+
method: "GET",
|
|
4713
|
+
path: "/brands/{brandsUid}/items/{brandsXItemsUid}",
|
|
4714
|
+
chain: "brands.items",
|
|
4715
|
+
action: "get",
|
|
4716
|
+
aliases: [],
|
|
4717
|
+
pathParams: ["brandsUid", "brandsXItemsUid"],
|
|
4718
|
+
queryParams: [],
|
|
4719
|
+
edgeCache: true,
|
|
4720
|
+
responseSchema: BrandsItemsDataSchema,
|
|
4721
|
+
responseType: "object"
|
|
4722
|
+
},
|
|
4723
|
+
{
|
|
4724
|
+
method: "PUT",
|
|
4725
|
+
path: "/brands/{brandsUid}/items/{brandsXItemsUid}",
|
|
4726
|
+
chain: "brands.items",
|
|
4727
|
+
action: "update",
|
|
4728
|
+
aliases: [],
|
|
4729
|
+
pathParams: ["brandsUid", "brandsXItemsUid"],
|
|
4730
|
+
queryParams: [],
|
|
4731
|
+
edgeCache: false,
|
|
4732
|
+
responseSchema: BrandsItemsDataSchema,
|
|
4733
|
+
responseType: "object"
|
|
4734
|
+
},
|
|
4735
|
+
{
|
|
4736
|
+
method: "DELETE",
|
|
4737
|
+
path: "/brands/{brandsUid}/items/{brandsXItemsUid}",
|
|
4738
|
+
chain: "brands.items",
|
|
4739
|
+
action: "delete",
|
|
4740
|
+
aliases: [],
|
|
4741
|
+
pathParams: ["brandsUid", "brandsXItemsUid"],
|
|
4742
|
+
queryParams: [],
|
|
4743
|
+
edgeCache: false,
|
|
4744
|
+
responseSchema: BrandsItemsDataSchema,
|
|
4745
|
+
responseType: "object"
|
|
4746
|
+
},
|
|
4689
4747
|
{
|
|
4690
4748
|
method: "GET",
|
|
4691
4749
|
path: "/categories/lookup",
|
|
@@ -14143,7 +14201,7 @@ function createCrossSiteAuthenticator(augurInfoToken) {
|
|
|
14143
14201
|
}
|
|
14144
14202
|
|
|
14145
14203
|
// src/index.ts
|
|
14146
|
-
var VERSION = "2026.5.
|
|
14204
|
+
var VERSION = "2026.5.5";
|
|
14147
14205
|
export {
|
|
14148
14206
|
AgrInfoClient,
|
|
14149
14207
|
AgrSiteClient,
|