@simpleapps-com/augur-api 2026.5.3 → 2026.5.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/index.mjs CHANGED
@@ -7702,6 +7702,13 @@ var CustomerAddressListParamsSchema = v17.looseObject({
7702
7702
  offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7703
7703
  q: v17.string()
7704
7704
  });
7705
+ var CustomerAddressesListParamsSchema = v17.looseObject({
7706
+ ...EdgeCacheParamsSchema.entries,
7707
+ limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7708
+ offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7709
+ orderBy: v17.optional(v17.string()),
7710
+ statusCd: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number)))
7711
+ });
7705
7712
  var CustomerContactsListParamsSchema = v17.looseObject({
7706
7713
  ...EdgeCacheParamsSchema.entries,
7707
7714
  limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
@@ -7710,6 +7717,9 @@ var CustomerContactsListParamsSchema = v17.looseObject({
7710
7717
  });
7711
7718
  var CustomerInvoicesListParamsSchema = v17.looseObject({
7712
7719
  ...EdgeCacheParamsSchema.entries,
7720
+ createdFrom: v17.optional(v17.string()),
7721
+ createdOn: v17.optional(v17.string()),
7722
+ createdTo: v17.optional(v17.string()),
7713
7723
  limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7714
7724
  offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7715
7725
  paidInFull: v17.optional(v17.string()),
@@ -7745,6 +7755,39 @@ var CustomerShipToListParamsSchema = v17.looseObject({
7745
7755
  offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7746
7756
  orderBy: v17.optional(v17.string())
7747
7757
  });
7758
+ var CustomerTagsListParamsSchema = v17.looseObject({
7759
+ ...EdgeCacheParamsSchema.entries,
7760
+ limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7761
+ offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7762
+ orderBy: v17.optional(v17.string()),
7763
+ statusCd: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number)))
7764
+ });
7765
+ var CustomerAddressesDataSchema = v17.looseObject({
7766
+ customerAddressUid: v17.optional(v17.number()),
7767
+ customerId: v17.optional(v17.number()),
7768
+ address1: v17.optional(v17.nullable(v17.string())),
7769
+ address2: v17.optional(v17.nullable(v17.string())),
7770
+ address3: v17.optional(v17.nullable(v17.string())),
7771
+ city: v17.optional(v17.nullable(v17.string())),
7772
+ state: v17.optional(v17.nullable(v17.string())),
7773
+ postalCode: v17.optional(v17.nullable(v17.string())),
7774
+ country: v17.optional(v17.nullable(v17.string())),
7775
+ updateCd: v17.optional(v17.number()),
7776
+ statusCd: v17.optional(v17.number()),
7777
+ processCd: v17.optional(v17.number()),
7778
+ dateCreated: v17.optional(v17.string()),
7779
+ dateLastModified: v17.optional(v17.string())
7780
+ });
7781
+ var CustomerTagsDataSchema = v17.looseObject({
7782
+ customerTagsUid: v17.optional(v17.number()),
7783
+ customerId: v17.optional(v17.number()),
7784
+ tag: v17.optional(v17.nullable(v17.string())),
7785
+ updateCd: v17.optional(v17.number()),
7786
+ statusCd: v17.optional(v17.number()),
7787
+ processCd: v17.optional(v17.number()),
7788
+ dateCreated: v17.optional(v17.string()),
7789
+ dateLastModified: v17.optional(v17.string())
7790
+ });
7748
7791
  var PassthroughDataSchema10 = v17.record(v17.string(), v17.unknown());
7749
7792
 
7750
7793
  // src/services/customers/generated/endpoints.ts
@@ -7845,6 +7888,66 @@ var endpoints10 = [
7845
7888
  responseSchema: PassthroughDataSchema10,
7846
7889
  responseType: "passthrough"
7847
7890
  },
7891
+ {
7892
+ method: "GET",
7893
+ path: "/customer/{customerId}/addresses",
7894
+ chain: "customer.addresses",
7895
+ action: "list",
7896
+ aliases: [],
7897
+ pathParams: ["customerId"],
7898
+ queryParams: ["limit", "offset", "orderBy", "statusCd"],
7899
+ edgeCache: true,
7900
+ responseSchema: CustomerAddressesDataSchema,
7901
+ responseType: "array"
7902
+ },
7903
+ {
7904
+ method: "POST",
7905
+ path: "/customer/{customerId}/addresses",
7906
+ chain: "customer.addresses",
7907
+ action: "create",
7908
+ aliases: [],
7909
+ pathParams: ["customerId"],
7910
+ queryParams: [],
7911
+ edgeCache: false,
7912
+ responseSchema: CustomerAddressesDataSchema,
7913
+ responseType: "object"
7914
+ },
7915
+ {
7916
+ method: "GET",
7917
+ path: "/customer/{customerId}/addresses/{customerAddressUid}",
7918
+ chain: "customer.addresses",
7919
+ action: "get",
7920
+ aliases: [],
7921
+ pathParams: ["customerId", "customerAddressUid"],
7922
+ queryParams: [],
7923
+ edgeCache: true,
7924
+ responseSchema: CustomerAddressesDataSchema,
7925
+ responseType: "object"
7926
+ },
7927
+ {
7928
+ method: "PUT",
7929
+ path: "/customer/{customerId}/addresses/{customerAddressUid}",
7930
+ chain: "customer.addresses",
7931
+ action: "update",
7932
+ aliases: [],
7933
+ pathParams: ["customerId", "customerAddressUid"],
7934
+ queryParams: [],
7935
+ edgeCache: false,
7936
+ responseSchema: CustomerAddressesDataSchema,
7937
+ responseType: "object"
7938
+ },
7939
+ {
7940
+ method: "DELETE",
7941
+ path: "/customer/{customerId}/addresses/{customerAddressUid}",
7942
+ chain: "customer.addresses",
7943
+ action: "delete",
7944
+ aliases: [],
7945
+ pathParams: ["customerId", "customerAddressUid"],
7946
+ queryParams: [],
7947
+ edgeCache: false,
7948
+ responseSchema: CustomerAddressesDataSchema,
7949
+ responseType: "object"
7950
+ },
7848
7951
  {
7849
7952
  method: "GET",
7850
7953
  path: "/customer/{customerId}/contacts",
@@ -7888,7 +7991,16 @@ var endpoints10 = [
7888
7991
  action: "list",
7889
7992
  aliases: [],
7890
7993
  pathParams: ["customerId"],
7891
- queryParams: ["limit", "offset", "paidInFull", "q", "shipToId"],
7994
+ queryParams: [
7995
+ "createdFrom",
7996
+ "createdOn",
7997
+ "createdTo",
7998
+ "limit",
7999
+ "offset",
8000
+ "paidInFull",
8001
+ "q",
8002
+ "shipToId"
8003
+ ],
7892
8004
  edgeCache: true,
7893
8005
  responseSchema: PassthroughDataSchema10,
7894
8006
  responseType: "passthrough"
@@ -8005,10 +8117,58 @@ var endpoints10 = [
8005
8117
  action: "list",
8006
8118
  aliases: [],
8007
8119
  pathParams: ["customerId"],
8120
+ queryParams: ["limit", "offset", "orderBy", "statusCd"],
8121
+ edgeCache: true,
8122
+ responseSchema: CustomerTagsDataSchema,
8123
+ responseType: "array"
8124
+ },
8125
+ {
8126
+ method: "POST",
8127
+ path: "/customer/{customerId}/tags",
8128
+ chain: "customer.tags",
8129
+ action: "create",
8130
+ aliases: [],
8131
+ pathParams: ["customerId"],
8132
+ queryParams: [],
8133
+ edgeCache: false,
8134
+ responseSchema: CustomerTagsDataSchema,
8135
+ responseType: "object"
8136
+ },
8137
+ {
8138
+ method: "GET",
8139
+ path: "/customer/{customerId}/tags/{customerTagsUid}",
8140
+ chain: "customer.tags",
8141
+ action: "get",
8142
+ aliases: [],
8143
+ pathParams: ["customerId", "customerTagsUid"],
8008
8144
  queryParams: [],
8009
8145
  edgeCache: true,
8010
- responseSchema: PassthroughDataSchema10,
8011
- responseType: "passthrough"
8146
+ responseSchema: CustomerTagsDataSchema,
8147
+ responseType: "object"
8148
+ },
8149
+ {
8150
+ method: "PUT",
8151
+ path: "/customer/{customerId}/tags/{customerTagsUid}",
8152
+ chain: "customer.tags",
8153
+ action: "update",
8154
+ aliases: [],
8155
+ pathParams: ["customerId", "customerTagsUid"],
8156
+ queryParams: [],
8157
+ edgeCache: false,
8158
+ responseSchema: CustomerTagsDataSchema,
8159
+ responseType: "object"
8160
+ },
8161
+ {
8162
+ method: "DELETE",
8163
+ path: "/customer/{customerId}/tags/{customerTagsUid}",
8164
+ chain: "customer.tags",
8165
+ action: "delete",
8166
+ aliases: [],
8167
+ pathParams: ["customerId", "customerTagsUid"],
8168
+ queryParams: [],
8169
+ edgeCache: false,
8170
+ responseSchema: CustomerTagsDataSchema,
8171
+ responseType: "object"
8012
8172
  },
8013
8173
  {
8014
8174
  method: "GET",
@@ -13983,7 +14143,7 @@ function createCrossSiteAuthenticator(augurInfoToken) {
13983
14143
  }
13984
14144
 
13985
14145
  // src/index.ts
13986
- var VERSION = "2026.5.3";
14146
+ var VERSION = "2026.5.4";
13987
14147
  export {
13988
14148
  AgrInfoClient,
13989
14149
  AgrSiteClient,