@simpleapps-com/augur-api 2026.5.6 → 2026.6.1

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
@@ -1798,13 +1798,7 @@ var JoomlaClient = class extends BaseServiceClient {
1798
1798
  constructor(http, baseUrl = "https://joomla.augur-api.com") {
1799
1799
  super("joomla", http, baseUrl);
1800
1800
  const boundExecuteRequest = (config, params, pathParams) => {
1801
- if (pathParams !== void 0) {
1802
- return this.executeRequest(config, params, pathParams);
1803
- }
1804
- if (params !== void 0 || config.paramsSchema !== void 0) {
1805
- return this.executeRequest(config, params);
1806
- }
1807
- return this.executeRequest(config);
1801
+ return this.executeRequest(config, params, pathParams);
1808
1802
  };
1809
1803
  const proxy = createServiceProxy("joomla", boundExecuteRequest, endpoints);
1810
1804
  const dataProxy = createDataProxy(proxy);
@@ -2075,13 +2069,7 @@ var CommerceClient = class extends BaseServiceClient {
2075
2069
  constructor(http, baseUrl = "https://commerce.augur-api.com") {
2076
2070
  super("commerce", http, baseUrl);
2077
2071
  const boundExecuteRequest = (config, params, pathParams) => {
2078
- if (pathParams !== void 0) {
2079
- return this.executeRequest(config, params, pathParams);
2080
- }
2081
- if (params !== void 0 || config.paramsSchema !== void 0) {
2082
- return this.executeRequest(config, params);
2083
- }
2084
- return this.executeRequest(config);
2072
+ return this.executeRequest(config, params, pathParams);
2085
2073
  };
2086
2074
  const proxy = createServiceProxy(
2087
2075
  "commerce",
@@ -2098,6 +2086,9 @@ var CommerceClient = class extends BaseServiceClient {
2098
2086
  this.healthCheck = createHealthCheckResource2(boundExecuteRequest);
2099
2087
  this.healthCheckData = createHealthCheckDataResource2(this.healthCheck);
2100
2088
  }
2089
+ getServiceDescription() {
2090
+ return "Shopping cart and checkout engine managing cart state, checkout flow, and Prophet 21 order submission";
2091
+ }
2101
2092
  };
2102
2093
 
2103
2094
  // src/services/pricing/generated/schemas.ts
@@ -2527,13 +2518,7 @@ var PricingClient = class extends BaseServiceClient {
2527
2518
  constructor(http, baseUrl = "https://pricing.augur-api.com") {
2528
2519
  super("pricing", http, baseUrl);
2529
2520
  const boundExecuteRequest = (config, params, pathParams) => {
2530
- if (pathParams !== void 0) {
2531
- return this.executeRequest(config, params, pathParams);
2532
- }
2533
- if (params !== void 0 || config.paramsSchema !== void 0) {
2534
- return this.executeRequest(config, params);
2535
- }
2536
- return this.executeRequest(config);
2521
+ return this.executeRequest(config, params, pathParams);
2537
2522
  };
2538
2523
  const proxy = createServiceProxy("pricing", boundExecuteRequest, endpoints3);
2539
2524
  const dataProxy = createDataProxy(proxy);
@@ -3448,13 +3433,7 @@ var VMIClient = class extends BaseServiceClient {
3448
3433
  constructor(http, baseUrl = "https://vmi.augur-api.com") {
3449
3434
  super("vmi", http, baseUrl);
3450
3435
  const boundExecuteRequest = (config, params, pathParams) => {
3451
- if (pathParams !== void 0) {
3452
- return this.executeRequest(config, params, pathParams);
3453
- }
3454
- if (params !== void 0 || config.paramsSchema !== void 0) {
3455
- return this.executeRequest(config, params);
3456
- }
3457
- return this.executeRequest(config);
3436
+ return this.executeRequest(config, params, pathParams);
3458
3437
  };
3459
3438
  const proxy = createServiceProxy("vmi", boundExecuteRequest, endpoints4);
3460
3439
  const dataProxy = createDataProxy(proxy);
@@ -3475,6 +3454,9 @@ var VMIClient = class extends BaseServiceClient {
3475
3454
  this.healthCheckData = createHealthCheckDataResource4(this.healthCheck);
3476
3455
  this.pingData = createPingDataResource2(this.ping);
3477
3456
  }
3457
+ getServiceDescription() {
3458
+ return "Vendor-managed inventory for distributor profiles, warehouse stock levels, restocking, and usage tracking";
3459
+ }
3478
3460
  };
3479
3461
 
3480
3462
  // src/services/open-search/generated/schemas.ts
@@ -3864,13 +3846,7 @@ var OpenSearchClient = class extends BaseServiceClient {
3864
3846
  constructor(http, baseUrl = "https://open-search.augur-api.com") {
3865
3847
  super("open-search", http, baseUrl);
3866
3848
  const boundExecuteRequest = (config, params, pathParams) => {
3867
- if (pathParams !== void 0) {
3868
- return this.executeRequest(config, params, pathParams);
3869
- }
3870
- if (params !== void 0 || config.paramsSchema !== void 0) {
3871
- return this.executeRequest(config, params);
3872
- }
3873
- return this.executeRequest(config);
3849
+ return this.executeRequest(config, params, pathParams);
3874
3850
  };
3875
3851
  const proxy = createServiceProxy(
3876
3852
  "open-search",
@@ -3922,6 +3898,17 @@ var AttributesListParamsSchema = v11.looseObject({
3922
3898
  q: v11.optional(v11.string()),
3923
3899
  statusCd: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number)))
3924
3900
  });
3901
+ var AttributesItemsListParamsSchema = v11.looseObject({
3902
+ ...EdgeCacheParamsSchema.entries,
3903
+ attributeValueUid: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number))),
3904
+ excludeValues: v11.optional(v11.string()),
3905
+ includeValues: v11.optional(v11.string()),
3906
+ limit: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number))),
3907
+ offset: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number))),
3908
+ orderBy: v11.optional(v11.string()),
3909
+ q: v11.optional(v11.string()),
3910
+ statusCd: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number)))
3911
+ });
3925
3912
  var AttributesValuesListParamsSchema = v11.looseObject({
3926
3913
  ...EdgeCacheParamsSchema.entries,
3927
3914
  limit: v11.optional(v11.pipe(v11.unknown(), v11.transform(Number))),
@@ -4244,6 +4231,21 @@ var AttributesDataSchema = v11.looseObject({
4244
4231
  statusCd: v11.optional(v11.number()),
4245
4232
  typeCd: v11.optional(v11.number())
4246
4233
  });
4234
+ var AttributesItemsDataSchema = v11.looseObject({
4235
+ itemAttributeValueUid: v11.optional(v11.number()),
4236
+ invMastUid: v11.optional(v11.number()),
4237
+ attributeUid: v11.optional(v11.number()),
4238
+ attributeValue: v11.optional(v11.nullable(v11.string())),
4239
+ dateCreated: v11.optional(v11.string()),
4240
+ createdBy: v11.optional(v11.string()),
4241
+ dateLastModified: v11.optional(v11.string()),
4242
+ lastMaintainedBy: v11.optional(v11.string()),
4243
+ updateCd: v11.optional(v11.number()),
4244
+ processCd: v11.optional(v11.number()),
4245
+ statusCd: v11.optional(v11.number()),
4246
+ attributeValueUid: v11.optional(v11.number()),
4247
+ onlineCd: v11.optional(v11.number())
4248
+ });
4247
4249
  var AttributesValuesDataSchema = v11.looseObject({
4248
4250
  attributeValueUid: v11.optional(v11.number()),
4249
4251
  attributeUid: v11.optional(v11.number()),
@@ -4336,21 +4338,6 @@ var InvLocDataSchema = v11.looseObject({
4336
4338
  purchaseDiscountGroup: v11.optional(v11.nullable(v11.string())),
4337
4339
  salesDiscountGroup: v11.optional(v11.nullable(v11.string()))
4338
4340
  });
4339
- var InvMastAttributesDataSchema = v11.looseObject({
4340
- itemAttributeValueUid: v11.optional(v11.number()),
4341
- invMastUid: v11.optional(v11.number()),
4342
- attributeUid: v11.optional(v11.number()),
4343
- attributeValue: v11.optional(v11.nullable(v11.string())),
4344
- dateCreated: v11.optional(v11.string()),
4345
- createdBy: v11.optional(v11.string()),
4346
- dateLastModified: v11.optional(v11.string()),
4347
- lastMaintainedBy: v11.optional(v11.string()),
4348
- updateCd: v11.optional(v11.number()),
4349
- processCd: v11.optional(v11.number()),
4350
- statusCd: v11.optional(v11.number()),
4351
- attributeValueUid: v11.optional(v11.number()),
4352
- onlineCd: v11.optional(v11.number())
4353
- });
4354
4341
  var InvMastFaqDataSchema = v11.looseObject({
4355
4342
  invMastFaqUid: v11.optional(v11.number()),
4356
4343
  invMastUid: v11.optional(v11.number()),
@@ -4584,6 +4571,27 @@ var endpoints6 = [
4584
4571
  responseSchema: PassthroughDataSchema6,
4585
4572
  responseType: "passthrough"
4586
4573
  },
4574
+ {
4575
+ method: "GET",
4576
+ path: "/attributes/{attributeUid}/items",
4577
+ chain: "attributes.items",
4578
+ action: "list",
4579
+ aliases: [],
4580
+ pathParams: ["attributeUid"],
4581
+ queryParams: [
4582
+ "attributeValueUid",
4583
+ "excludeValues",
4584
+ "includeValues",
4585
+ "limit",
4586
+ "offset",
4587
+ "orderBy",
4588
+ "q",
4589
+ "statusCd"
4590
+ ],
4591
+ edgeCache: true,
4592
+ responseSchema: AttributesItemsDataSchema,
4593
+ responseType: "array"
4594
+ },
4587
4595
  {
4588
4596
  method: "GET",
4589
4597
  path: "/attributes/{attributeUid}/values",
@@ -5053,7 +5061,7 @@ var endpoints6 = [
5053
5061
  pathParams: ["invMastUid"],
5054
5062
  queryParams: [],
5055
5063
  edgeCache: false,
5056
- responseSchema: InvMastAttributesDataSchema,
5064
+ responseSchema: AttributesItemsDataSchema,
5057
5065
  responseType: "object"
5058
5066
  },
5059
5067
  {
@@ -5077,7 +5085,7 @@ var endpoints6 = [
5077
5085
  pathParams: ["invMastUid", "attributeUid"],
5078
5086
  queryParams: [],
5079
5087
  edgeCache: false,
5080
- responseSchema: InvMastAttributesDataSchema,
5088
+ responseSchema: AttributesItemsDataSchema,
5081
5089
  responseType: "object"
5082
5090
  },
5083
5091
  {
@@ -5089,7 +5097,7 @@ var endpoints6 = [
5089
5097
  pathParams: ["invMastUid", "attributeUid", "attributeValueUid"],
5090
5098
  queryParams: [],
5091
5099
  edgeCache: false,
5092
- responseSchema: InvMastAttributesDataSchema,
5100
+ responseSchema: AttributesItemsDataSchema,
5093
5101
  responseType: "object"
5094
5102
  },
5095
5103
  {
@@ -5820,13 +5828,7 @@ var ItemsClient = class extends BaseServiceClient {
5820
5828
  constructor(http, baseUrl = "https://items.augur-api.com") {
5821
5829
  super("items", http, baseUrl);
5822
5830
  const boundExecuteRequest = (config, params, pathParams) => {
5823
- if (pathParams !== void 0) {
5824
- return this.executeRequest(config, params, pathParams);
5825
- }
5826
- if (params !== void 0 || config.paramsSchema !== void 0) {
5827
- return this.executeRequest(config, params);
5828
- }
5829
- return this.executeRequest(config);
5831
+ return this.executeRequest(config, params, pathParams);
5830
5832
  };
5831
5833
  const proxy = createServiceProxy("items", boundExecuteRequest, endpoints6);
5832
5834
  const dataProxy = createDataProxy(proxy);
@@ -6292,13 +6294,7 @@ var LegacyClient = class extends BaseServiceClient {
6292
6294
  constructor(http, baseUrl = "https://legacy.augur-api.com") {
6293
6295
  super("legacy", http, baseUrl);
6294
6296
  const boundExecuteRequest = (config, params, pathParams) => {
6295
- if (pathParams !== void 0) {
6296
- return this.executeRequest(config, params, pathParams);
6297
- }
6298
- if (params !== void 0 || config.paramsSchema !== void 0) {
6299
- return this.executeRequest(config, params);
6300
- }
6301
- return this.executeRequest(config);
6297
+ return this.executeRequest(config, params, pathParams);
6302
6298
  };
6303
6299
  const proxy = createServiceProxy("legacy", boundExecuteRequest, endpoints7);
6304
6300
  const dataProxy = createDataProxy(proxy);
@@ -6936,13 +6932,7 @@ var NexusClient = class extends BaseServiceClient {
6936
6932
  constructor(http, baseUrl = "https://nexus.augur-api.com") {
6937
6933
  super("nexus", http, baseUrl);
6938
6934
  const boundExecuteRequest = (config, params, pathParams) => {
6939
- if (pathParams !== void 0) {
6940
- return this.executeRequest(config, params, pathParams);
6941
- }
6942
- if (params !== void 0 || config.paramsSchema !== void 0) {
6943
- return this.executeRequest(config, params);
6944
- }
6945
- return this.executeRequest(config);
6935
+ return this.executeRequest(config, params, pathParams);
6946
6936
  };
6947
6937
  const proxy = createServiceProxy("nexus", boundExecuteRequest, endpoints8);
6948
6938
  const dataProxy = createDataProxy(proxy);
@@ -6963,6 +6953,9 @@ var NexusClient = class extends BaseServiceClient {
6963
6953
  this.healthCheckData = createHealthCheckDataResource8(this.healthCheck);
6964
6954
  this.pingData = createPingDataResource5(this.ping);
6965
6955
  }
6956
+ getServiceDescription() {
6957
+ return "Warehouse operations for bin transfers, receiving, and inter-location inventory movements from P21";
6958
+ }
6966
6959
  };
6967
6960
 
6968
6961
  // src/services/agr-site/generated/schemas.ts
@@ -7736,13 +7729,7 @@ var AgrSiteClient = class extends BaseServiceClient {
7736
7729
  constructor(http, baseUrl = "https://agr-site.augur-api.com") {
7737
7730
  super("agr-site", http, baseUrl);
7738
7731
  const boundExecuteRequest = (config, params, pathParams) => {
7739
- if (pathParams !== void 0) {
7740
- return this.executeRequest(config, params, pathParams);
7741
- }
7742
- if (params !== void 0 || config.paramsSchema !== void 0) {
7743
- return this.executeRequest(config, params);
7744
- }
7745
- return this.executeRequest(config);
7732
+ return this.executeRequest(config, params, pathParams);
7746
7733
  };
7747
7734
  const proxy = createServiceProxy("agr-site", boundExecuteRequest, endpoints9);
7748
7735
  const dataProxy = createDataProxy(proxy);
@@ -7807,6 +7794,7 @@ var CustomerAddressListParamsSchema = v17.looseObject({
7807
7794
  });
7808
7795
  var CustomerAddressesListParamsSchema = v17.looseObject({
7809
7796
  ...EdgeCacheParamsSchema.entries,
7797
+ emailAddress: v17.optional(v17.string()),
7810
7798
  limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7811
7799
  offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7812
7800
  orderBy: v17.optional(v17.string()),
@@ -7833,6 +7821,9 @@ var CustomerOrdersListParamsSchema = v17.looseObject({
7833
7821
  ...EdgeCacheParamsSchema.entries,
7834
7822
  cancelFlag: v17.optional(v17.string()),
7835
7823
  contactId: v17.optional(v17.string()),
7824
+ createdFrom: v17.optional(v17.string()),
7825
+ createdOn: v17.optional(v17.string()),
7826
+ createdTo: v17.optional(v17.string()),
7836
7827
  deleteFlag: v17.optional(v17.string()),
7837
7828
  fullDocument: v17.optional(v17.string()),
7838
7829
  limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
@@ -7848,6 +7839,18 @@ var CustomerPurchasedItemsListParamsSchema = v17.looseObject({
7848
7839
  });
7849
7840
  var CustomerQuotesListParamsSchema = v17.looseObject({
7850
7841
  ...EdgeCacheParamsSchema.entries,
7842
+ createdFrom: v17.optional(v17.string()),
7843
+ createdOn: v17.optional(v17.string()),
7844
+ createdTo: v17.optional(v17.string()),
7845
+ limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7846
+ offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7847
+ orderBy: v17.optional(v17.string())
7848
+ });
7849
+ var CustomerRmasListParamsSchema = v17.looseObject({
7850
+ ...EdgeCacheParamsSchema.entries,
7851
+ createdFrom: v17.optional(v17.string()),
7852
+ createdOn: v17.optional(v17.string()),
7853
+ createdTo: v17.optional(v17.string()),
7851
7854
  limit: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7852
7855
  offset: v17.optional(v17.pipe(v17.unknown(), v17.transform(Number))),
7853
7856
  orderBy: v17.optional(v17.string())
@@ -7879,7 +7882,11 @@ var CustomerAddressesDataSchema = v17.looseObject({
7879
7882
  statusCd: v17.optional(v17.number()),
7880
7883
  processCd: v17.optional(v17.number()),
7881
7884
  dateCreated: v17.optional(v17.string()),
7882
- dateLastModified: v17.optional(v17.string())
7885
+ dateLastModified: v17.optional(v17.string()),
7886
+ emailAddress: v17.optional(v17.nullable(v17.string())),
7887
+ name: v17.optional(v17.nullable(v17.string())),
7888
+ phoneNumberMain: v17.optional(v17.nullable(v17.string())),
7889
+ phoneNumberMobile: v17.optional(v17.nullable(v17.string()))
7883
7890
  });
7884
7891
  var CustomerTagsDataSchema = v17.looseObject({
7885
7892
  customerTagsUid: v17.optional(v17.number()),
@@ -7998,7 +8005,7 @@ var endpoints10 = [
7998
8005
  action: "list",
7999
8006
  aliases: [],
8000
8007
  pathParams: ["customerId"],
8001
- queryParams: ["limit", "offset", "orderBy", "statusCd"],
8008
+ queryParams: ["emailAddress", "limit", "offset", "orderBy", "statusCd"],
8002
8009
  edgeCache: true,
8003
8010
  responseSchema: CustomerAddressesDataSchema,
8004
8011
  responseType: "array"
@@ -8130,6 +8137,9 @@ var endpoints10 = [
8130
8137
  queryParams: [
8131
8138
  "cancelFlag",
8132
8139
  "contactId",
8140
+ "createdFrom",
8141
+ "createdOn",
8142
+ "createdTo",
8133
8143
  "deleteFlag",
8134
8144
  "fullDocument",
8135
8145
  "limit",
@@ -8172,7 +8182,7 @@ var endpoints10 = [
8172
8182
  action: "list",
8173
8183
  aliases: [],
8174
8184
  pathParams: ["customerId"],
8175
- queryParams: ["limit", "offset", "orderBy"],
8185
+ queryParams: ["createdFrom", "createdOn", "createdTo", "limit", "offset", "orderBy"],
8176
8186
  edgeCache: true,
8177
8187
  responseSchema: PassthroughDataSchema10,
8178
8188
  responseType: "passthrough"
@@ -8189,6 +8199,30 @@ var endpoints10 = [
8189
8199
  responseSchema: PassthroughDataSchema10,
8190
8200
  responseType: "passthrough"
8191
8201
  },
8202
+ {
8203
+ method: "GET",
8204
+ path: "/customer/{customerId}/rmas",
8205
+ chain: "customer.rmas",
8206
+ action: "list",
8207
+ aliases: [],
8208
+ pathParams: ["customerId"],
8209
+ queryParams: ["createdFrom", "createdOn", "createdTo", "limit", "offset", "orderBy"],
8210
+ edgeCache: true,
8211
+ responseSchema: PassthroughDataSchema10,
8212
+ responseType: "passthrough"
8213
+ },
8214
+ {
8215
+ method: "GET",
8216
+ path: "/customer/{customerId}/rmas/{rmaNo}",
8217
+ chain: "customer.rmas",
8218
+ action: "get",
8219
+ aliases: [],
8220
+ pathParams: ["customerId", "rmaNo"],
8221
+ queryParams: [],
8222
+ edgeCache: true,
8223
+ responseSchema: PassthroughDataSchema10,
8224
+ responseType: "passthrough"
8225
+ },
8192
8226
  {
8193
8227
  method: "GET",
8194
8228
  path: "/customer/{customerId}/ship-to",
@@ -8336,13 +8370,7 @@ var CustomersClient = class extends BaseServiceClient {
8336
8370
  constructor(http, baseUrl = "https://customers.augur-api.com") {
8337
8371
  super("customers", http, baseUrl);
8338
8372
  const boundExecuteRequest = (config, params, pathParams) => {
8339
- if (pathParams !== void 0) {
8340
- return this.executeRequest(config, params, pathParams);
8341
- }
8342
- if (params !== void 0 || config.paramsSchema !== void 0) {
8343
- return this.executeRequest(config, params);
8344
- }
8345
- return this.executeRequest(config);
8373
+ return this.executeRequest(config, params, pathParams);
8346
8374
  };
8347
8375
  const proxy = createServiceProxy(
8348
8376
  "customers",
@@ -8682,13 +8710,7 @@ var OrdersClient = class extends BaseServiceClient {
8682
8710
  constructor(http, baseUrl = "https://orders.augur-api.com") {
8683
8711
  super("orders", http, baseUrl);
8684
8712
  const boundExecuteRequest = (config, params, pathParams) => {
8685
- if (pathParams !== void 0) {
8686
- return this.executeRequest(config, params, pathParams);
8687
- }
8688
- if (params !== void 0 || config.paramsSchema !== void 0) {
8689
- return this.executeRequest(config, params);
8690
- }
8691
- return this.executeRequest(config);
8713
+ return this.executeRequest(config, params, pathParams);
8692
8714
  };
8693
8715
  const proxy = createServiceProxy("orders", boundExecuteRequest, endpoints11);
8694
8716
  const dataProxy = createDataProxy(proxy);
@@ -8943,13 +8965,7 @@ var P21PimClient = class extends BaseServiceClient {
8943
8965
  constructor(http, baseUrl = "https://p21-pim.augur-api.com") {
8944
8966
  super("p21-pim", http, baseUrl);
8945
8967
  const boundExecuteRequest = (config, params, pathParams) => {
8946
- if (pathParams !== void 0) {
8947
- return this.executeRequest(config, params, pathParams);
8948
- }
8949
- if (params !== void 0 || config.paramsSchema !== void 0) {
8950
- return this.executeRequest(config, params);
8951
- }
8952
- return this.executeRequest(config);
8968
+ return this.executeRequest(config, params, pathParams);
8953
8969
  };
8954
8970
  const proxy = createServiceProxy("p21-pim", boundExecuteRequest, endpoints12);
8955
8971
  const dataProxy = createDataProxy(proxy);
@@ -9303,13 +9319,7 @@ var PaymentsClient = class extends BaseServiceClient {
9303
9319
  constructor(http, baseUrl = "https://payments.augur-api.com") {
9304
9320
  super("payments", http, baseUrl);
9305
9321
  const boundExecuteRequest = (config, params, pathParams) => {
9306
- if (pathParams !== void 0) {
9307
- return this.executeRequest(config, params, pathParams);
9308
- }
9309
- if (params !== void 0 || config.paramsSchema !== void 0) {
9310
- return this.executeRequest(config, params);
9311
- }
9312
- return this.executeRequest(config);
9322
+ return this.executeRequest(config, params, pathParams);
9313
9323
  };
9314
9324
  const proxy = createServiceProxy(
9315
9325
  "payments",
@@ -9330,6 +9340,9 @@ var PaymentsClient = class extends BaseServiceClient {
9330
9340
  this.healthCheckData = createHealthCheckDataResource13(this.healthCheck);
9331
9341
  this.pingData = createPingDataResource7(this.ping);
9332
9342
  }
9343
+ getServiceDescription() {
9344
+ return "Unified payment processing gateway supporting Moneris, PayTrace, and Element card transactions";
9345
+ }
9333
9346
  };
9334
9347
 
9335
9348
  // src/services/agr-info/generated/schemas.ts
@@ -9682,13 +9695,7 @@ var AgrInfoClient = class extends BaseServiceClient {
9682
9695
  constructor(http, baseUrl = "https://agr-info.augur-api.com") {
9683
9696
  super("agr-info", http, baseUrl);
9684
9697
  const boundExecuteRequest = (config, params, pathParams) => {
9685
- if (pathParams !== void 0) {
9686
- return this.executeRequest(config, params, pathParams);
9687
- }
9688
- if (params !== void 0 || config.paramsSchema !== void 0) {
9689
- return this.executeRequest(config, params);
9690
- }
9691
- return this.executeRequest(config);
9698
+ return this.executeRequest(config, params, pathParams);
9692
9699
  };
9693
9700
  const proxy = createServiceProxy("agr-info", boundExecuteRequest, endpoints14);
9694
9701
  const dataProxy = createDataProxy(proxy);
@@ -9875,13 +9882,7 @@ var AgrWorkClient = class extends BaseServiceClient {
9875
9882
  constructor(http, baseUrl = "https://agr-work.augur-api.com") {
9876
9883
  super("agr-work", http, baseUrl);
9877
9884
  const boundExecuteRequest = (config, params, pathParams) => {
9878
- if (pathParams !== void 0) {
9879
- return this.executeRequest(config, params, pathParams);
9880
- }
9881
- if (params !== void 0 || config.paramsSchema !== void 0) {
9882
- return this.executeRequest(config, params);
9883
- }
9884
- return this.executeRequest(config);
9885
+ return this.executeRequest(config, params, pathParams);
9885
9886
  };
9886
9887
  this.healthCheck = createHealthCheckResource15(boundExecuteRequest);
9887
9888
  this.ping = createPingResource9(boundExecuteRequest);
@@ -9976,13 +9977,7 @@ var AvalaraClient = class extends BaseServiceClient {
9976
9977
  constructor(http, baseUrl = "https://avalara.augur-api.com") {
9977
9978
  super("avalara", http, baseUrl);
9978
9979
  const boundExecuteRequest = (config, params, pathParams) => {
9979
- if (pathParams !== void 0) {
9980
- return this.executeRequest(config, params, pathParams);
9981
- }
9982
- if (params !== void 0 || config.paramsSchema !== void 0) {
9983
- return this.executeRequest(config, params);
9984
- }
9985
- return this.executeRequest(config);
9980
+ return this.executeRequest(config, params, pathParams);
9986
9981
  };
9987
9982
  const proxy = createServiceProxy("avalara", boundExecuteRequest, endpoints15);
9988
9983
  const dataProxy = createDataProxy(proxy);
@@ -10079,13 +10074,7 @@ var BrandFolderClient = class extends BaseServiceClient {
10079
10074
  constructor(http, baseUrl = "https://brand-folder.augur-api.com") {
10080
10075
  super("brand-folder", http, baseUrl);
10081
10076
  const boundExecuteRequest = (config, params, pathParams) => {
10082
- if (pathParams !== void 0) {
10083
- return this.executeRequest(config, params, pathParams);
10084
- }
10085
- if (params !== void 0 || config.paramsSchema !== void 0) {
10086
- return this.executeRequest(config, params);
10087
- }
10088
- return this.executeRequest(config);
10077
+ return this.executeRequest(config, params, pathParams);
10089
10078
  };
10090
10079
  const proxy = createServiceProxy(
10091
10080
  "brand-folder",
@@ -10217,13 +10206,7 @@ var GregorovichClient = class extends BaseServiceClient {
10217
10206
  constructor(http, baseUrl = "https://gregorovich.augur-api.com") {
10218
10207
  super("gregorovich", http, baseUrl);
10219
10208
  const boundExecuteRequest = (config, params, pathParams) => {
10220
- if (pathParams !== void 0) {
10221
- return this.executeRequest(config, params, pathParams);
10222
- }
10223
- if (params !== void 0 || config.paramsSchema !== void 0) {
10224
- return this.executeRequest(config, params);
10225
- }
10226
- return this.executeRequest(config);
10209
+ return this.executeRequest(config, params, pathParams);
10227
10210
  };
10228
10211
  const proxy = createServiceProxy(
10229
10212
  "gregorovich",
@@ -10744,13 +10727,7 @@ var LogisticsClient = class extends BaseServiceClient {
10744
10727
  constructor(http, baseUrl = "https://logistics.augur-api.com") {
10745
10728
  super("logistics", http, baseUrl);
10746
10729
  const boundExecuteRequest = (config, params, pathParams) => {
10747
- if (pathParams !== void 0) {
10748
- return this.executeRequest(config, params, pathParams);
10749
- }
10750
- if (params !== void 0 || config.paramsSchema !== void 0) {
10751
- return this.executeRequest(config, params);
10752
- }
10753
- return this.executeRequest(config);
10730
+ return this.executeRequest(config, params, pathParams);
10754
10731
  };
10755
10732
  const proxy = createServiceProxy(
10756
10733
  "logistics",
@@ -11142,13 +11119,7 @@ var P21ApisClient = class extends BaseServiceClient {
11142
11119
  constructor(http, baseUrl = "https://p21-apis.augur-api.com") {
11143
11120
  super("p21-apis", http, baseUrl);
11144
11121
  const boundExecuteRequest = (config, params, pathParams) => {
11145
- if (pathParams !== void 0) {
11146
- return this.executeRequest(config, params, pathParams);
11147
- }
11148
- if (params !== void 0 || config.paramsSchema !== void 0) {
11149
- return this.executeRequest(config, params);
11150
- }
11151
- return this.executeRequest(config);
11122
+ return this.executeRequest(config, params, pathParams);
11152
11123
  };
11153
11124
  const proxy = createServiceProxy("p21-apis", boundExecuteRequest, endpoints19);
11154
11125
  const dataProxy = createDataProxy(proxy);
@@ -11169,6 +11140,9 @@ var P21ApisClient = class extends BaseServiceClient {
11169
11140
  this.healthCheck = createHealthCheckResource20(boundExecuteRequest);
11170
11141
  this.healthCheckData = createHealthCheckDataResource20(this.healthCheck);
11171
11142
  }
11143
+ getServiceDescription() {
11144
+ return "Prophet 21 REST API abstraction for normalized CRUD operations on ERP entities";
11145
+ }
11172
11146
  };
11173
11147
 
11174
11148
  // src/services/p21-core/generated/schemas.ts
@@ -11549,13 +11523,7 @@ var P21CoreClient = class extends BaseServiceClient {
11549
11523
  constructor(http, baseUrl = "https://p21-core.augur-api.com") {
11550
11524
  super("p21-core", http, baseUrl);
11551
11525
  const boundExecuteRequest = (config, params, pathParams) => {
11552
- if (pathParams !== void 0) {
11553
- return this.executeRequest(config, params, pathParams);
11554
- }
11555
- if (params !== void 0 || config.paramsSchema !== void 0) {
11556
- return this.executeRequest(config, params);
11557
- }
11558
- return this.executeRequest(config);
11526
+ return this.executeRequest(config, params, pathParams);
11559
11527
  };
11560
11528
  const proxy = createServiceProxy("p21-core", boundExecuteRequest, endpoints20);
11561
11529
  const dataProxy = createDataProxy(proxy);
@@ -11887,13 +11855,7 @@ var P21SismClient = class extends BaseServiceClient {
11887
11855
  constructor(http, baseUrl = "https://p21-sism.augur-api.com") {
11888
11856
  super("p21-sism", http, baseUrl);
11889
11857
  const boundExecuteRequest = (config, params, pathParams) => {
11890
- if (pathParams !== void 0) {
11891
- return this.executeRequest(config, params, pathParams);
11892
- }
11893
- if (params !== void 0 || config.paramsSchema !== void 0) {
11894
- return this.executeRequest(config, params);
11895
- }
11896
- return this.executeRequest(config);
11858
+ return this.executeRequest(config, params, pathParams);
11897
11859
  };
11898
11860
  const proxy = createServiceProxy("p21-sism", boundExecuteRequest, endpoints21);
11899
11861
  const dataProxy = createDataProxy(proxy);
@@ -11999,13 +11961,7 @@ var ShippingClient = class extends BaseServiceClient {
11999
11961
  constructor(http, baseUrl = "https://shipping.augur-api.com") {
12000
11962
  super("shipping", http, baseUrl);
12001
11963
  const boundExecuteRequest = (config, params, pathParams) => {
12002
- if (pathParams !== void 0) {
12003
- return this.executeRequest(config, params, pathParams);
12004
- }
12005
- if (params !== void 0 || config.paramsSchema !== void 0) {
12006
- return this.executeRequest(config, params);
12007
- }
12008
- return this.executeRequest(config);
11964
+ return this.executeRequest(config, params, pathParams);
12009
11965
  };
12010
11966
  const proxy = createServiceProxy(
12011
11967
  "shipping",
@@ -12134,13 +12090,7 @@ var SlackClient = class extends BaseServiceClient {
12134
12090
  constructor(http, baseUrl = "https://slack.augur-api.com") {
12135
12091
  super("slack", http, baseUrl);
12136
12092
  const boundExecuteRequest = (config, params, pathParams) => {
12137
- if (pathParams !== void 0) {
12138
- return this.executeRequest(config, params, pathParams);
12139
- }
12140
- if (params !== void 0 || config.paramsSchema !== void 0) {
12141
- return this.executeRequest(config, params);
12142
- }
12143
- return this.executeRequest(config);
12093
+ return this.executeRequest(config, params, pathParams);
12144
12094
  };
12145
12095
  const proxy = createServiceProxy("slack", boundExecuteRequest, endpoints23);
12146
12096
  const dataProxy = createDataProxy(proxy);
@@ -12340,13 +12290,7 @@ var SmartyStreetsClient = class extends BaseServiceClient {
12340
12290
  constructor(http, baseUrl = "https://smarty-streets.augur-api.com") {
12341
12291
  super("smarty-streets", http, baseUrl);
12342
12292
  const boundExecuteRequest = (config, params, pathParams) => {
12343
- if (pathParams !== void 0) {
12344
- return this.executeRequest(config, params, pathParams);
12345
- }
12346
- if (params !== void 0 || config.paramsSchema !== void 0) {
12347
- return this.executeRequest(config, params);
12348
- }
12349
- return this.executeRequest(config);
12293
+ return this.executeRequest(config, params, pathParams);
12350
12294
  };
12351
12295
  const proxy = createServiceProxy(
12352
12296
  "smarty-streets",
@@ -12512,13 +12456,7 @@ var UPSClient = class extends BaseServiceClient {
12512
12456
  constructor(http, baseUrl = "https://ups.augur-api.com") {
12513
12457
  super("ups", http, baseUrl);
12514
12458
  const boundExecuteRequest = (config, params, pathParams) => {
12515
- if (pathParams !== void 0) {
12516
- return this.executeRequest(config, params, pathParams);
12517
- }
12518
- if (params !== void 0 || config.paramsSchema !== void 0) {
12519
- return this.executeRequest(config, params);
12520
- }
12521
- return this.executeRequest(config);
12459
+ return this.executeRequest(config, params, pathParams);
12522
12460
  };
12523
12461
  const proxy = createServiceProxy("ups", boundExecuteRequest, endpoints25);
12524
12462
  const dataProxy = createDataProxy(proxy);
@@ -13326,13 +13264,7 @@ var Basecamp2Client = class extends BaseServiceClient {
13326
13264
  constructor(http, baseUrl = "https://basecamp2.augur-api.com") {
13327
13265
  super("basecamp2", http, baseUrl);
13328
13266
  const boundExecuteRequest = (config, params, pathParams) => {
13329
- if (pathParams !== void 0) {
13330
- return this.executeRequest(config, params, pathParams);
13331
- }
13332
- if (params !== void 0 || config.paramsSchema !== void 0) {
13333
- return this.executeRequest(config, params);
13334
- }
13335
- return this.executeRequest(config);
13267
+ return this.executeRequest(config, params, pathParams);
13336
13268
  };
13337
13269
  const proxy = createServiceProxy(
13338
13270
  "basecamp2",
@@ -13359,6 +13291,9 @@ var Basecamp2Client = class extends BaseServiceClient {
13359
13291
  this.healthCheck = createHealthCheckResource27(boundExecuteRequest);
13360
13292
  this.healthCheckData = createHealthCheckDataResource27(this.healthCheck);
13361
13293
  }
13294
+ getServiceDescription() {
13295
+ return "Basecamp project management integration syncing todos, projects, people, and conversation data with AI analytics";
13296
+ }
13362
13297
  };
13363
13298
 
13364
13299
  // src/client.ts
@@ -14246,7 +14181,7 @@ function createCrossSiteAuthenticator(augurInfoToken) {
14246
14181
  }
14247
14182
 
14248
14183
  // src/index.ts
14249
- var VERSION = "2026.5.6";
14184
+ var VERSION = "2026.6.1";
14250
14185
  export {
14251
14186
  AgrInfoClient,
14252
14187
  AgrSiteClient,