@simpleapps-com/augur-api 2026.5.3 → 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/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",
@@ -7702,6 +7760,13 @@ var CustomerAddressListParamsSchema = v17.looseObject({
7702
7760
  offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7703
7761
  q: v17.string()
7704
7762
  });
7763
+ var CustomerAddressesListParamsSchema = v17.looseObject({
7764
+ ...EdgeCacheParamsSchema.entries,
7765
+ limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7766
+ offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7767
+ orderBy: v17.optional(v17.string()),
7768
+ statusCd: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number)))
7769
+ });
7705
7770
  var CustomerContactsListParamsSchema = v17.looseObject({
7706
7771
  ...EdgeCacheParamsSchema.entries,
7707
7772
  limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
@@ -7710,6 +7775,9 @@ var CustomerContactsListParamsSchema = v17.looseObject({
7710
7775
  });
7711
7776
  var CustomerInvoicesListParamsSchema = v17.looseObject({
7712
7777
  ...EdgeCacheParamsSchema.entries,
7778
+ createdFrom: v17.optional(v17.string()),
7779
+ createdOn: v17.optional(v17.string()),
7780
+ createdTo: v17.optional(v17.string()),
7713
7781
  limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7714
7782
  offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7715
7783
  paidInFull: v17.optional(v17.string()),
@@ -7745,6 +7813,39 @@ var CustomerShipToListParamsSchema = v17.looseObject({
7745
7813
  offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7746
7814
  orderBy: v17.optional(v17.string())
7747
7815
  });
7816
+ var CustomerTagsListParamsSchema = v17.looseObject({
7817
+ ...EdgeCacheParamsSchema.entries,
7818
+ limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7819
+ offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7820
+ orderBy: v17.optional(v17.string()),
7821
+ statusCd: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number)))
7822
+ });
7823
+ var CustomerAddressesDataSchema = v17.looseObject({
7824
+ customerAddressUid: v17.optional(v17.number()),
7825
+ customerId: v17.optional(v17.number()),
7826
+ address1: v17.optional(v17.nullable(v17.string())),
7827
+ address2: v17.optional(v17.nullable(v17.string())),
7828
+ address3: v17.optional(v17.nullable(v17.string())),
7829
+ city: v17.optional(v17.nullable(v17.string())),
7830
+ state: v17.optional(v17.nullable(v17.string())),
7831
+ postalCode: v17.optional(v17.nullable(v17.string())),
7832
+ country: v17.optional(v17.nullable(v17.string())),
7833
+ updateCd: v17.optional(v17.number()),
7834
+ statusCd: v17.optional(v17.number()),
7835
+ processCd: v17.optional(v17.number()),
7836
+ dateCreated: v17.optional(v17.string()),
7837
+ dateLastModified: v17.optional(v17.string())
7838
+ });
7839
+ var CustomerTagsDataSchema = v17.looseObject({
7840
+ customerTagsUid: v17.optional(v17.number()),
7841
+ customerId: v17.optional(v17.number()),
7842
+ tag: v17.optional(v17.nullable(v17.string())),
7843
+ updateCd: v17.optional(v17.number()),
7844
+ statusCd: v17.optional(v17.number()),
7845
+ processCd: v17.optional(v17.number()),
7846
+ dateCreated: v17.optional(v17.string()),
7847
+ dateLastModified: v17.optional(v17.string())
7848
+ });
7748
7849
  var PassthroughDataSchema10 = v17.record(v17.string(), v17.unknown());
7749
7850
 
7750
7851
  // src/services/customers/generated/endpoints.ts
@@ -7845,6 +7946,66 @@ var endpoints10 = [
7845
7946
  responseSchema: PassthroughDataSchema10,
7846
7947
  responseType: "passthrough"
7847
7948
  },
7949
+ {
7950
+ method: "GET",
7951
+ path: "/customer/{customerId}/addresses",
7952
+ chain: "customer.addresses",
7953
+ action: "list",
7954
+ aliases: [],
7955
+ pathParams: ["customerId"],
7956
+ queryParams: ["limit", "offset", "orderBy", "statusCd"],
7957
+ edgeCache: true,
7958
+ responseSchema: CustomerAddressesDataSchema,
7959
+ responseType: "array"
7960
+ },
7961
+ {
7962
+ method: "POST",
7963
+ path: "/customer/{customerId}/addresses",
7964
+ chain: "customer.addresses",
7965
+ action: "create",
7966
+ aliases: [],
7967
+ pathParams: ["customerId"],
7968
+ queryParams: [],
7969
+ edgeCache: false,
7970
+ responseSchema: CustomerAddressesDataSchema,
7971
+ responseType: "object"
7972
+ },
7973
+ {
7974
+ method: "GET",
7975
+ path: "/customer/{customerId}/addresses/{customerAddressUid}",
7976
+ chain: "customer.addresses",
7977
+ action: "get",
7978
+ aliases: [],
7979
+ pathParams: ["customerId", "customerAddressUid"],
7980
+ queryParams: [],
7981
+ edgeCache: true,
7982
+ responseSchema: CustomerAddressesDataSchema,
7983
+ responseType: "object"
7984
+ },
7985
+ {
7986
+ method: "PUT",
7987
+ path: "/customer/{customerId}/addresses/{customerAddressUid}",
7988
+ chain: "customer.addresses",
7989
+ action: "update",
7990
+ aliases: [],
7991
+ pathParams: ["customerId", "customerAddressUid"],
7992
+ queryParams: [],
7993
+ edgeCache: false,
7994
+ responseSchema: CustomerAddressesDataSchema,
7995
+ responseType: "object"
7996
+ },
7997
+ {
7998
+ method: "DELETE",
7999
+ path: "/customer/{customerId}/addresses/{customerAddressUid}",
8000
+ chain: "customer.addresses",
8001
+ action: "delete",
8002
+ aliases: [],
8003
+ pathParams: ["customerId", "customerAddressUid"],
8004
+ queryParams: [],
8005
+ edgeCache: false,
8006
+ responseSchema: CustomerAddressesDataSchema,
8007
+ responseType: "object"
8008
+ },
7848
8009
  {
7849
8010
  method: "GET",
7850
8011
  path: "/customer/{customerId}/contacts",
@@ -7888,7 +8049,16 @@ var endpoints10 = [
7888
8049
  action: "list",
7889
8050
  aliases: [],
7890
8051
  pathParams: ["customerId"],
7891
- queryParams: ["limit", "offset", "paidInFull", "q", "shipToId"],
8052
+ queryParams: [
8053
+ "createdFrom",
8054
+ "createdOn",
8055
+ "createdTo",
8056
+ "limit",
8057
+ "offset",
8058
+ "paidInFull",
8059
+ "q",
8060
+ "shipToId"
8061
+ ],
7892
8062
  edgeCache: true,
7893
8063
  responseSchema: PassthroughDataSchema10,
7894
8064
  responseType: "passthrough"
@@ -8005,10 +8175,58 @@ var endpoints10 = [
8005
8175
  action: "list",
8006
8176
  aliases: [],
8007
8177
  pathParams: ["customerId"],
8178
+ queryParams: ["limit", "offset", "orderBy", "statusCd"],
8179
+ edgeCache: true,
8180
+ responseSchema: CustomerTagsDataSchema,
8181
+ responseType: "array"
8182
+ },
8183
+ {
8184
+ method: "POST",
8185
+ path: "/customer/{customerId}/tags",
8186
+ chain: "customer.tags",
8187
+ action: "create",
8188
+ aliases: [],
8189
+ pathParams: ["customerId"],
8190
+ queryParams: [],
8191
+ edgeCache: false,
8192
+ responseSchema: CustomerTagsDataSchema,
8193
+ responseType: "object"
8194
+ },
8195
+ {
8196
+ method: "GET",
8197
+ path: "/customer/{customerId}/tags/{customerTagsUid}",
8198
+ chain: "customer.tags",
8199
+ action: "get",
8200
+ aliases: [],
8201
+ pathParams: ["customerId", "customerTagsUid"],
8008
8202
  queryParams: [],
8009
8203
  edgeCache: true,
8010
- responseSchema: PassthroughDataSchema10,
8011
- responseType: "passthrough"
8204
+ responseSchema: CustomerTagsDataSchema,
8205
+ responseType: "object"
8206
+ },
8207
+ {
8208
+ method: "PUT",
8209
+ path: "/customer/{customerId}/tags/{customerTagsUid}",
8210
+ chain: "customer.tags",
8211
+ action: "update",
8212
+ aliases: [],
8213
+ pathParams: ["customerId", "customerTagsUid"],
8214
+ queryParams: [],
8215
+ edgeCache: false,
8216
+ responseSchema: CustomerTagsDataSchema,
8217
+ responseType: "object"
8218
+ },
8219
+ {
8220
+ method: "DELETE",
8221
+ path: "/customer/{customerId}/tags/{customerTagsUid}",
8222
+ chain: "customer.tags",
8223
+ action: "delete",
8224
+ aliases: [],
8225
+ pathParams: ["customerId", "customerTagsUid"],
8226
+ queryParams: [],
8227
+ edgeCache: false,
8228
+ responseSchema: CustomerTagsDataSchema,
8229
+ responseType: "object"
8012
8230
  },
8013
8231
  {
8014
8232
  method: "GET",
@@ -13983,7 +14201,7 @@ function createCrossSiteAuthenticator(augurInfoToken) {
13983
14201
  }
13984
14202
 
13985
14203
  // src/index.ts
13986
- var VERSION = "2026.5.3";
14204
+ var VERSION = "2026.5.5";
13987
14205
  export {
13988
14206
  AgrInfoClient,
13989
14207
  AgrSiteClient,