@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.
@@ -827,7 +827,7 @@ type PingResource$b = ReturnType<typeof createPingResource$b>;
827
827
  /**
828
828
  * Generated client for joomla service
829
829
  * Source: shared/specs/joomla.json
830
- * Generated: 2026-04-27T16:13:32Z
830
+ * Generated: 2026-05-14T19:11:07Z
831
831
  *
832
832
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
833
833
  */
@@ -961,7 +961,7 @@ type HealthCheckDataResource$p = ReturnType<typeof createHealthCheckDataResource
961
961
  /**
962
962
  * Generated client for commerce service
963
963
  * Source: shared/specs/commerce.json
964
- * Generated: 2026-04-27T16:13:32Z
964
+ * Generated: 2026-05-14T19:11:02Z
965
965
  *
966
966
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
967
967
  */
@@ -976,6 +976,7 @@ declare class CommerceClient extends BaseServiceClient {
976
976
  readonly healthCheck: HealthCheckResource$p;
977
977
  readonly healthCheckData: HealthCheckDataResource$p;
978
978
  constructor(http: HTTPClient, baseUrl?: string);
979
+ protected getServiceDescription(): string;
979
980
  }
980
981
 
981
982
  /**
@@ -1295,7 +1296,7 @@ type PingDataResource$a = ReturnType<typeof createPingDataResource$a>;
1295
1296
  /**
1296
1297
  * Generated client for pricing service
1297
1298
  * Source: shared/specs/pricing.json
1298
- * Generated: 2026-04-27T16:13:32Z
1299
+ * Generated: 2026-05-14T19:11:19Z
1299
1300
  *
1300
1301
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
1301
1302
  */
@@ -1691,7 +1692,7 @@ type PingDataResource$9 = ReturnType<typeof createPingDataResource$9>;
1691
1692
  /**
1692
1693
  * Generated client for vmi service
1693
1694
  * Source: shared/specs/vmi.json
1694
- * Generated: 2026-04-27T16:13:32Z
1695
+ * Generated: 2026-05-14T19:11:25Z
1695
1696
  *
1696
1697
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
1697
1698
  */
@@ -1714,6 +1715,7 @@ declare class VMIClient extends BaseServiceClient {
1714
1715
  readonly ping: PingResource$9;
1715
1716
  readonly pingData: PingDataResource$9;
1716
1717
  constructor(http: HTTPClient, baseUrl?: string);
1718
+ protected getServiceDescription(): string;
1717
1719
  }
1718
1720
 
1719
1721
  /**
@@ -1934,7 +1936,7 @@ type HealthCheckDataResource$m = ReturnType<typeof createHealthCheckDataResource
1934
1936
  /**
1935
1937
  * Generated client for open-search service
1936
1938
  * Source: shared/specs/open-search.json
1937
- * Generated: 2026-05-05T20:37:41Z
1939
+ * Generated: 2026-05-14T19:18:18Z
1938
1940
  *
1939
1941
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
1940
1942
  */
@@ -1959,7 +1961,7 @@ declare class OpenSearchClient extends BaseServiceClient {
1959
1961
  /**
1960
1962
  * Generated types for items service
1961
1963
  * Source: shared/specs/items.json
1962
- * Generated: 2026-05-14T17:43:07Z
1964
+ * Generated: 2026-06-08T14:24:18Z
1963
1965
  *
1964
1966
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
1965
1967
  */
@@ -1994,6 +1996,17 @@ interface AttributesListParams extends EdgeCacheParams {
1994
1996
  }
1995
1997
  /** Params for GET /attributes/{attributeUid} */
1996
1998
  type AttributesGetParams = EdgeCacheParams;
1999
+ /** Params for GET /attributes/{attributeUid}/items */
2000
+ interface AttributesItemsListParams extends EdgeCacheParams {
2001
+ attributeValueUid?: number;
2002
+ excludeValues?: string;
2003
+ includeValues?: string;
2004
+ limit?: number;
2005
+ offset?: number;
2006
+ orderBy?: string;
2007
+ q?: string;
2008
+ statusCd?: number;
2009
+ }
1997
2010
  /** Params for GET /attributes/{attributeUid}/values */
1998
2011
  interface AttributesValuesListParams extends EdgeCacheParams {
1999
2012
  limit?: number;
@@ -2363,6 +2376,23 @@ interface AttributesData {
2363
2376
  [key: string]: unknown;
2364
2377
  }
2365
2378
  /** Response data — fields are MINIMUM, extra fields pass through */
2379
+ interface AttributesItemsData {
2380
+ itemAttributeValueUid?: number;
2381
+ invMastUid?: number;
2382
+ attributeUid?: number;
2383
+ attributeValue?: string | null;
2384
+ dateCreated?: string;
2385
+ createdBy?: string;
2386
+ dateLastModified?: string;
2387
+ lastMaintainedBy?: string;
2388
+ updateCd?: number;
2389
+ processCd?: number;
2390
+ statusCd?: number;
2391
+ attributeValueUid?: number;
2392
+ onlineCd?: number;
2393
+ [key: string]: unknown;
2394
+ }
2395
+ /** Response data — fields are MINIMUM, extra fields pass through */
2366
2396
  interface AttributesValuesData {
2367
2397
  attributeValueUid?: number;
2368
2398
  attributeUid?: number;
@@ -2463,23 +2493,6 @@ interface InvLocData {
2463
2493
  [key: string]: unknown;
2464
2494
  }
2465
2495
  /** Response data — fields are MINIMUM, extra fields pass through */
2466
- interface InvMastAttributesData {
2467
- itemAttributeValueUid?: number;
2468
- invMastUid?: number;
2469
- attributeUid?: number;
2470
- attributeValue?: string | null;
2471
- dateCreated?: string;
2472
- createdBy?: string;
2473
- dateLastModified?: string;
2474
- lastMaintainedBy?: string;
2475
- updateCd?: number;
2476
- processCd?: number;
2477
- statusCd?: number;
2478
- attributeValueUid?: number;
2479
- onlineCd?: number;
2480
- [key: string]: unknown;
2481
- }
2482
- /** Response data — fields are MINIMUM, extra fields pass through */
2483
2496
  interface InvMastFaqData {
2484
2497
  invMastFaqUid?: number;
2485
2498
  invMastUid?: number;
@@ -2555,6 +2568,9 @@ interface ItemsClientSpec {
2555
2568
  get: (attributeUid: number, params?: AttributesGetParams) => Promise<BaseResponse<AttributesData>>;
2556
2569
  update: (attributeUid: number, data: Record<string, unknown>) => Promise<BaseResponse<AttributesData>>;
2557
2570
  delete: (attributeUid: number) => Promise<BaseResponse<Record<string, unknown>>>;
2571
+ items: {
2572
+ list: (attributeUid: number, params?: AttributesItemsListParams) => Promise<BaseResponse<AttributesItemsData[]>>;
2573
+ };
2558
2574
  values: {
2559
2575
  list: (attributeUid: number, params?: AttributesValuesListParams) => Promise<BaseResponse<AttributesValuesData[]>>;
2560
2576
  create: (attributeUid: number, data: Record<string, unknown>) => Promise<BaseResponse<AttributesValuesData>>;
@@ -2619,11 +2635,11 @@ interface ItemsClientSpec {
2619
2635
  };
2620
2636
  attributes: {
2621
2637
  list: (invMastUid: number, params?: InvMastAttributesListParams) => Promise<BaseResponse<Record<string, unknown>>>;
2622
- create: (invMastUid: number, data: Record<string, unknown>) => Promise<BaseResponse<InvMastAttributesData>>;
2638
+ create: (invMastUid: number, data: Record<string, unknown>) => Promise<BaseResponse<AttributesItemsData>>;
2623
2639
  values: {
2624
2640
  list: (invMastUid: number, attributeUid: number, params?: InvMastAttributesValuesListParams) => Promise<BaseResponse<Record<string, unknown>>>;
2625
- create: (invMastUid: number, attributeUid: number, data: Record<string, unknown>) => Promise<BaseResponse<InvMastAttributesData>>;
2626
- update: (invMastUid: number, attributeUid: number, attributeValueUid: number, data: Record<string, unknown>) => Promise<BaseResponse<InvMastAttributesData>>;
2641
+ create: (invMastUid: number, attributeUid: number, data: Record<string, unknown>) => Promise<BaseResponse<AttributesItemsData>>;
2642
+ update: (invMastUid: number, attributeUid: number, attributeValueUid: number, data: Record<string, unknown>) => Promise<BaseResponse<AttributesItemsData>>;
2627
2643
  delete: (invMastUid: number, attributeUid: number, attributeValueUid: number) => Promise<BaseResponse<Record<string, unknown>>>;
2628
2644
  };
2629
2645
  };
@@ -2831,7 +2847,7 @@ type WhoamiDataResource$1 = ReturnType<typeof createWhoamiDataResource$1>;
2831
2847
  /**
2832
2848
  * Generated client for items service
2833
2849
  * Source: shared/specs/items.json
2834
- * Generated: 2026-05-14T17:43:07Z
2850
+ * Generated: 2026-06-08T14:24:18Z
2835
2851
  *
2836
2852
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
2837
2853
  */
@@ -3089,7 +3105,7 @@ type HealthCheckDataResource$k = ReturnType<typeof createHealthCheckDataResource
3089
3105
  /**
3090
3106
  * Generated client for legacy service
3091
3107
  * Source: shared/specs/legacy.json
3092
- * Generated: 2026-05-05T20:37:38Z
3108
+ * Generated: 2026-05-14T19:11:09Z
3093
3109
  *
3094
3110
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
3095
3111
  */
@@ -3386,7 +3402,7 @@ type PingDataResource$6 = ReturnType<typeof createPingDataResource$6>;
3386
3402
  /**
3387
3403
  * Generated client for nexus service
3388
3404
  * Source: shared/specs/nexus.json
3389
- * Generated: 2026-04-27T16:13:32Z
3405
+ * Generated: 2026-05-14T19:11:11Z
3390
3406
  *
3391
3407
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
3392
3408
  */
@@ -3409,6 +3425,7 @@ declare class NexusClient extends BaseServiceClient {
3409
3425
  readonly ping: PingResource$6;
3410
3426
  readonly pingData: PingDataResource$6;
3411
3427
  constructor(http: HTTPClient, baseUrl?: string);
3428
+ protected getServiceDescription(): string;
3412
3429
  }
3413
3430
 
3414
3431
  /**
@@ -3827,7 +3844,7 @@ type WhoamiDataResource = ReturnType<typeof createWhoamiDataResource>;
3827
3844
  /**
3828
3845
  * Generated client for agr-site service
3829
3846
  * Source: shared/specs/agr-site.json
3830
- * Generated: 2026-05-05T20:37:27Z
3847
+ * Generated: 2026-05-14T19:10:57Z
3831
3848
  *
3832
3849
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
3833
3850
  */
@@ -3864,7 +3881,7 @@ declare class AgrSiteClient extends BaseServiceClient {
3864
3881
  /**
3865
3882
  * Generated types for customers service
3866
3883
  * Source: shared/specs/customers.json
3867
- * Generated: 2026-05-14T16:15:59Z
3884
+ * Generated: 2026-06-08T16:58:52Z
3868
3885
  *
3869
3886
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
3870
3887
  */
@@ -3906,6 +3923,7 @@ interface CustomerAddressListParams extends EdgeCacheParams {
3906
3923
  }
3907
3924
  /** Params for GET /customer/{customerId}/addresses */
3908
3925
  interface CustomerAddressesListParams extends EdgeCacheParams {
3926
+ emailAddress?: string;
3909
3927
  limit?: number;
3910
3928
  offset?: number;
3911
3929
  orderBy?: string;
@@ -3938,6 +3956,9 @@ type CustomerInvoicesGetParams = EdgeCacheParams;
3938
3956
  interface CustomerOrdersListParams extends EdgeCacheParams {
3939
3957
  cancelFlag?: string;
3940
3958
  contactId?: string;
3959
+ createdFrom?: string;
3960
+ createdOn?: string;
3961
+ createdTo?: string;
3941
3962
  deleteFlag?: string;
3942
3963
  fullDocument?: string;
3943
3964
  limit?: number;
@@ -3955,12 +3976,26 @@ interface CustomerPurchasedItemsListParams extends EdgeCacheParams {
3955
3976
  }
3956
3977
  /** Params for GET /customer/{customerId}/quotes */
3957
3978
  interface CustomerQuotesListParams extends EdgeCacheParams {
3979
+ createdFrom?: string;
3980
+ createdOn?: string;
3981
+ createdTo?: string;
3958
3982
  limit?: number;
3959
3983
  offset?: number;
3960
3984
  orderBy?: string;
3961
3985
  }
3962
3986
  /** Params for GET /customer/{customerId}/quotes/{quoteNo} */
3963
3987
  type CustomerQuotesGetParams = EdgeCacheParams;
3988
+ /** Params for GET /customer/{customerId}/rmas */
3989
+ interface CustomerRmasListParams extends EdgeCacheParams {
3990
+ createdFrom?: string;
3991
+ createdOn?: string;
3992
+ createdTo?: string;
3993
+ limit?: number;
3994
+ offset?: number;
3995
+ orderBy?: string;
3996
+ }
3997
+ /** Params for GET /customer/{customerId}/rmas/{rmaNo} */
3998
+ type CustomerRmasGetParams = EdgeCacheParams;
3964
3999
  /** Params for GET /customer/{customerId}/ship-to */
3965
4000
  interface CustomerShipToListParams extends EdgeCacheParams {
3966
4001
  limit?: number;
@@ -3996,6 +4031,10 @@ interface CustomerAddressesData {
3996
4031
  processCd?: number;
3997
4032
  dateCreated?: string;
3998
4033
  dateLastModified?: string;
4034
+ emailAddress?: string | null;
4035
+ name?: string | null;
4036
+ phoneNumberMain?: string | null;
4037
+ phoneNumberMobile?: string | null;
3999
4038
  [key: string]: unknown;
4000
4039
  }
4001
4040
  /** Response data — fields are MINIMUM, extra fields pass through */
@@ -4067,6 +4106,10 @@ interface CustomersClientSpec {
4067
4106
  list: (customerId: number, params?: CustomerQuotesListParams) => Promise<BaseResponse<Record<string, unknown>>>;
4068
4107
  get: (customerId: number, quoteNo: number, params?: CustomerQuotesGetParams) => Promise<BaseResponse<Record<string, unknown>>>;
4069
4108
  };
4109
+ rmas: {
4110
+ list: (customerId: number, params?: CustomerRmasListParams) => Promise<BaseResponse<Record<string, unknown>>>;
4111
+ get: (customerId: number, rmaNo: number, params?: CustomerRmasGetParams) => Promise<BaseResponse<Record<string, unknown>>>;
4112
+ };
4070
4113
  shipTo: {
4071
4114
  list: (customerId: number, params?: CustomerShipToListParams) => Promise<BaseResponse<Record<string, unknown>>>;
4072
4115
  create: (customerId: number, data: Record<string, unknown>) => Promise<BaseResponse<Record<string, unknown>>>;
@@ -4120,7 +4163,7 @@ type HealthCheckDataResource$h = ReturnType<typeof createHealthCheckDataResource
4120
4163
  /**
4121
4164
  * Generated client for customers service
4122
4165
  * Source: shared/specs/customers.json
4123
- * Generated: 2026-05-14T16:15:59Z
4166
+ * Generated: 2026-06-08T16:58:52Z
4124
4167
  *
4125
4168
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
4126
4169
  */
@@ -4507,7 +4550,7 @@ type HealthCheckDataResource$f = ReturnType<typeof createHealthCheckDataResource
4507
4550
  /**
4508
4551
  * Generated client for p21-pim service
4509
4552
  * Source: shared/specs/p21-pim.json
4510
- * Generated: 2026-04-27T16:13:32Z
4553
+ * Generated: 2026-05-14T19:11:16Z
4511
4554
  *
4512
4555
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
4513
4556
  */
@@ -4695,7 +4738,7 @@ type PingDataResource$4 = ReturnType<typeof createPingDataResource$4>;
4695
4738
  /**
4696
4739
  * Generated client for payments service
4697
4740
  * Source: shared/specs/payments.json
4698
- * Generated: 2026-04-27T16:13:32Z
4741
+ * Generated: 2026-05-14T19:11:18Z
4699
4742
  *
4700
4743
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
4701
4744
  */
@@ -4714,6 +4757,7 @@ declare class PaymentsClient extends BaseServiceClient {
4714
4757
  readonly ping: PingResource$4;
4715
4758
  readonly pingData: PingDataResource$4;
4716
4759
  constructor(http: HTTPClient, baseUrl?: string);
4760
+ protected getServiceDescription(): string;
4717
4761
  }
4718
4762
 
4719
4763
  /**
@@ -4882,7 +4926,7 @@ type HealthCheckDataResource$d = ReturnType<typeof createHealthCheckDataResource
4882
4926
  /**
4883
4927
  * Generated client for agr-info service
4884
4928
  * Source: shared/specs/agr-info.json
4885
- * Generated: 2026-05-05T20:37:26Z
4929
+ * Generated: 2026-05-14T19:10:56Z
4886
4930
  *
4887
4931
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
4888
4932
  */
@@ -5035,7 +5079,7 @@ type PingDataResource$3 = ReturnType<typeof createPingDataResource$3>;
5035
5079
  /**
5036
5080
  * Generated client for agr-work service
5037
5081
  * Source: shared/specs/agr-work.json
5038
- * Generated: 2026-04-27T16:13:32Z
5082
+ * Generated: 2026-05-14T19:10:58Z
5039
5083
  *
5040
5084
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
5041
5085
  */
@@ -5120,7 +5164,7 @@ type HealthCheckDataResource$b = ReturnType<typeof createHealthCheckDataResource
5120
5164
  /**
5121
5165
  * Generated client for avalara service
5122
5166
  * Source: shared/specs/avalara.json
5123
- * Generated: 2026-04-27T16:13:32Z
5167
+ * Generated: 2026-05-14T19:10:59Z
5124
5168
  *
5125
5169
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
5126
5170
  */
@@ -5207,7 +5251,7 @@ type HealthCheckDataResource$a = ReturnType<typeof createHealthCheckDataResource
5207
5251
  /**
5208
5252
  * Generated client for brand-folder service
5209
5253
  * Source: shared/specs/brand-folder.json
5210
- * Generated: 2026-04-27T16:13:32Z
5254
+ * Generated: 2026-05-14T19:11:02Z
5211
5255
  *
5212
5256
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
5213
5257
  */
@@ -5309,7 +5353,7 @@ type HealthCheckDataResource$9 = ReturnType<typeof createHealthCheckDataResource
5309
5353
  /**
5310
5354
  * Generated client for gregorovich service
5311
5355
  * Source: shared/specs/gregorovich.json
5312
- * Generated: 2026-04-27T16:13:32Z
5356
+ * Generated: 2026-05-14T19:11:05Z
5313
5357
  *
5314
5358
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
5315
5359
  */
@@ -5641,7 +5685,7 @@ type PingDataResource$2 = ReturnType<typeof createPingDataResource$2>;
5641
5685
  /**
5642
5686
  * Generated client for logistics service
5643
5687
  * Source: shared/specs/logistics.json
5644
- * Generated: 2026-05-12T02:26:15Z
5688
+ * Generated: 2026-05-14T19:18:10Z
5645
5689
  *
5646
5690
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
5647
5691
  */
@@ -5790,7 +5834,7 @@ type HealthCheckDataResource$7 = ReturnType<typeof createHealthCheckDataResource
5790
5834
  /**
5791
5835
  * Generated client for p21-apis service
5792
5836
  * Source: shared/specs/p21-apis.json
5793
- * Generated: 2026-04-27T16:13:32Z
5837
+ * Generated: 2026-05-14T19:11:14Z
5794
5838
  *
5795
5839
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
5796
5840
  */
@@ -5813,6 +5857,7 @@ declare class P21ApisClient extends BaseServiceClient {
5813
5857
  readonly healthCheck: HealthCheckResource$7;
5814
5858
  readonly healthCheckData: HealthCheckDataResource$7;
5815
5859
  constructor(http: HTTPClient, baseUrl?: string);
5860
+ protected getServiceDescription(): string;
5816
5861
  }
5817
5862
 
5818
5863
  /**
@@ -6068,7 +6113,7 @@ type PingDataResource$1 = ReturnType<typeof createPingDataResource$1>;
6068
6113
  /**
6069
6114
  * Generated client for p21-core service
6070
6115
  * Source: shared/specs/p21-core.json
6071
- * Generated: 2026-04-27T16:13:32Z
6116
+ * Generated: 2026-05-14T19:11:15Z
6072
6117
  *
6073
6118
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
6074
6119
  */
@@ -6264,7 +6309,7 @@ type HealthCheckDataResource$5 = ReturnType<typeof createHealthCheckDataResource
6264
6309
  /**
6265
6310
  * Generated client for p21-sism service
6266
6311
  * Source: shared/specs/p21-sism.json
6267
- * Generated: 2026-04-27T16:13:32Z
6312
+ * Generated: 2026-05-14T19:11:17Z
6268
6313
  *
6269
6314
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
6270
6315
  */
@@ -6358,7 +6403,7 @@ type HealthCheckDataResource$4 = ReturnType<typeof createHealthCheckDataResource
6358
6403
  /**
6359
6404
  * Generated client for shipping service
6360
6405
  * Source: shared/specs/shipping.json
6361
- * Generated: 2026-04-27T16:13:32Z
6406
+ * Generated: 2026-05-14T19:11:21Z
6362
6407
  *
6363
6408
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
6364
6409
  */
@@ -6466,7 +6511,7 @@ type HealthCheckDataResource$3 = ReturnType<typeof createHealthCheckDataResource
6466
6511
  /**
6467
6512
  * Generated client for slack service
6468
6513
  * Source: shared/specs/slack.json
6469
- * Generated: 2026-04-27T16:13:32Z
6514
+ * Generated: 2026-05-14T19:11:21Z
6470
6515
  *
6471
6516
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
6472
6517
  */
@@ -6653,7 +6698,7 @@ type PingDataResource = ReturnType<typeof createPingDataResource>;
6653
6698
  /**
6654
6699
  * Generated client for smarty-streets service
6655
6700
  * Source: shared/specs/smarty-streets.json
6656
- * Generated: 2026-04-27T16:13:32Z
6701
+ * Generated: 2026-05-14T19:11:23Z
6657
6702
  *
6658
6703
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
6659
6704
  */
@@ -6788,7 +6833,7 @@ type HealthCheckDataResource$1 = ReturnType<typeof createHealthCheckDataResource
6788
6833
  /**
6789
6834
  * Generated client for ups service
6790
6835
  * Source: shared/specs/ups.json
6791
- * Generated: 2026-04-27T16:13:32Z
6836
+ * Generated: 2026-05-14T19:11:24Z
6792
6837
  *
6793
6838
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
6794
6839
  */
@@ -7305,7 +7350,7 @@ type HealthCheckDataResource = ReturnType<typeof createHealthCheckDataResource>;
7305
7350
  /**
7306
7351
  * Generated client for basecamp2 service
7307
7352
  * Source: shared/specs/basecamp2.json
7308
- * Generated: 2026-04-27T16:13:32Z
7353
+ * Generated: 2026-05-14T19:11:01Z
7309
7354
  *
7310
7355
  * DO NOT EDIT — regenerate with: python shared/scripts/generate-ts.py
7311
7356
  */
@@ -7330,6 +7375,7 @@ declare class Basecamp2Client extends BaseServiceClient {
7330
7375
  readonly healthCheck: HealthCheckResource;
7331
7376
  readonly healthCheckData: HealthCheckDataResource;
7332
7377
  constructor(http: HTTPClient, baseUrl?: string);
7378
+ protected getServiceDescription(): string;
7333
7379
  }
7334
7380
 
7335
7381
  /**