celitech-sdk 1.3.59 → 1.3.60

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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Celitech TypeScript SDK 1.3.59
1
+ # Celitech TypeScript SDK 1.3.60
2
2
 
3
3
  Welcome to the Celitech SDK documentation. This guide will help you get started with integrating and using the Celitech SDK in your project.
4
4
 
@@ -6,8 +6,8 @@ Welcome to the Celitech SDK documentation. This guide will help you get started
6
6
 
7
7
  ## Versions
8
8
 
9
- - API version: `1.3.59`
10
- - SDK version: `1.3.59`
9
+ - API version: `1.3.60`
10
+ - SDK version: `1.3.60`
11
11
 
12
12
  ## About the API
13
13
 
package/dist/index.d.ts CHANGED
@@ -722,6 +722,7 @@ interface ListPurchasesParams {
722
722
  limit?: number;
723
723
  after?: number;
724
724
  before?: number;
725
+ purchaseId?: string;
725
726
  }
726
727
 
727
728
  /**
@@ -1083,6 +1084,7 @@ declare class PurchasesService extends BaseService {
1083
1084
  * @param {number} [params.limit] - Maximum number of purchases to be returned in the response. The value must be greater than 0 and less than or equal to 100. If not provided, the default value is 20
1084
1085
  * @param {number} [params.after] - Epoch value representing the start of the time interval for filtering purchases
1085
1086
  * @param {number} [params.before] - Epoch value representing the end of the time interval for filtering purchases
1087
+ * @param {string} [params.purchaseId] - The id of a specific purchase.
1086
1088
  * @param {RequestConfig} requestConfig - (Optional) The request configuration for retry and validation.
1087
1089
  * @returns {Promise<HttpResponse<ListPurchasesOkResponse>>} Successful Response
1088
1090
  */
package/dist/index.js CHANGED
@@ -2624,6 +2624,7 @@ var PurchasesService = class extends BaseService {
2624
2624
  * @param {number} [params.limit] - Maximum number of purchases to be returned in the response. The value must be greater than 0 and less than or equal to 100. If not provided, the default value is 20
2625
2625
  * @param {number} [params.after] - Epoch value representing the start of the time interval for filtering purchases
2626
2626
  * @param {number} [params.before] - Epoch value representing the end of the time interval for filtering purchases
2627
+ * @param {string} [params.purchaseId] - The id of a specific purchase.
2627
2628
  * @param {RequestConfig} requestConfig - (Optional) The request configuration for retry and validation.
2628
2629
  * @returns {Promise<HttpResponse<ListPurchasesOkResponse>>} Successful Response
2629
2630
  */
@@ -2667,6 +2668,9 @@ var PurchasesService = class extends BaseService {
2667
2668
  }).addQueryParam({
2668
2669
  key: "before",
2669
2670
  value: params == null ? void 0 : params.before
2671
+ }).addQueryParam({
2672
+ key: "purchaseId",
2673
+ value: params == null ? void 0 : params.purchaseId
2670
2674
  }).build();
2671
2675
  return this.client.call(request);
2672
2676
  }
package/dist/index.mjs CHANGED
@@ -2580,6 +2580,7 @@ var PurchasesService = class extends BaseService {
2580
2580
  * @param {number} [params.limit] - Maximum number of purchases to be returned in the response. The value must be greater than 0 and less than or equal to 100. If not provided, the default value is 20
2581
2581
  * @param {number} [params.after] - Epoch value representing the start of the time interval for filtering purchases
2582
2582
  * @param {number} [params.before] - Epoch value representing the end of the time interval for filtering purchases
2583
+ * @param {string} [params.purchaseId] - The id of a specific purchase.
2583
2584
  * @param {RequestConfig} requestConfig - (Optional) The request configuration for retry and validation.
2584
2585
  * @returns {Promise<HttpResponse<ListPurchasesOkResponse>>} Successful Response
2585
2586
  */
@@ -2623,6 +2624,9 @@ var PurchasesService = class extends BaseService {
2623
2624
  }).addQueryParam({
2624
2625
  key: "before",
2625
2626
  value: params == null ? void 0 : params.before
2627
+ }).addQueryParam({
2628
+ key: "purchaseId",
2629
+ value: params == null ? void 0 : params.purchaseId
2626
2630
  }).build();
2627
2631
  return this.client.call(request);
2628
2632
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "celitech-sdk",
3
- "version": "1.3.59",
3
+ "version": "1.3.60",
4
4
  "description": "Welcome to the CELITECH API documentation! Useful links: [Homepage](https://www.celitech.com) | [Support email](mailto:support@celitech.com) | [Blog](https://www.celitech.com/blog/)",
5
5
  "source": "./src/index.ts",
6
6
  "main": "./dist/index.js",