@openmeter/client 1.0.0-beta-fe22548bd395 → 1.0.0-beta-f1eac1446b89
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/lib/version.d.ts +1 -1
- package/dist/lib/version.js +1 -1
- package/dist/models/types.d.ts +12 -8
- package/package.json +1 -1
package/dist/lib/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "1.0.0-beta-
|
|
1
|
+
export declare const SDK_VERSION = "1.0.0-beta-f1eac1446b89";
|
package/dist/lib/version.js
CHANGED
|
@@ -2,4 +2,4 @@
|
|
|
2
2
|
// The committed value is a dev placeholder. The publish flow
|
|
3
3
|
// (`make -C api/spec publish-aip-sdk`) stamps the real release version here
|
|
4
4
|
// before `pnpm publish`, after `pnpm version` updates package.json.
|
|
5
|
-
export const SDK_VERSION = '1.0.0-beta-
|
|
5
|
+
export const SDK_VERSION = '1.0.0-beta-f1eac1446b89';
|
package/dist/models/types.d.ts
CHANGED
|
@@ -3195,8 +3195,9 @@ export interface CreateCreditGrantRequest {
|
|
|
3195
3195
|
/**
|
|
3196
3196
|
* Idempotency key for the credit grant creation request.
|
|
3197
3197
|
*
|
|
3198
|
-
*
|
|
3199
|
-
* creating a duplicate grant, which makes create requests
|
|
3198
|
+
* Unique per customer: reusing the same key for the same customer returns an HTTP
|
|
3199
|
+
* 409 Conflict instead of creating a duplicate grant, which makes create requests
|
|
3200
|
+
* safe to retry. The same key may be reused across different customers.
|
|
3200
3201
|
*/
|
|
3201
3202
|
key?: string;
|
|
3202
3203
|
}
|
|
@@ -3258,8 +3259,9 @@ export interface CreditGrant {
|
|
|
3258
3259
|
/**
|
|
3259
3260
|
* Idempotency key for the credit grant creation request.
|
|
3260
3261
|
*
|
|
3261
|
-
*
|
|
3262
|
-
* creating a duplicate grant, which makes create requests
|
|
3262
|
+
* Unique per customer: reusing the same key for the same customer returns an HTTP
|
|
3263
|
+
* 409 Conflict instead of creating a duplicate grant, which makes create requests
|
|
3264
|
+
* safe to retry. The same key may be reused across different customers.
|
|
3263
3265
|
*/
|
|
3264
3266
|
key?: string;
|
|
3265
3267
|
/**
|
|
@@ -5552,8 +5554,9 @@ export interface CreateCreditGrantRequestInput {
|
|
|
5552
5554
|
/**
|
|
5553
5555
|
* Idempotency key for the credit grant creation request.
|
|
5554
5556
|
*
|
|
5555
|
-
*
|
|
5556
|
-
* creating a duplicate grant, which makes create requests
|
|
5557
|
+
* Unique per customer: reusing the same key for the same customer returns an HTTP
|
|
5558
|
+
* 409 Conflict instead of creating a duplicate grant, which makes create requests
|
|
5559
|
+
* safe to retry. The same key may be reused across different customers.
|
|
5557
5560
|
*/
|
|
5558
5561
|
key?: string;
|
|
5559
5562
|
}
|
|
@@ -5615,8 +5618,9 @@ export interface CreditGrantInput {
|
|
|
5615
5618
|
/**
|
|
5616
5619
|
* Idempotency key for the credit grant creation request.
|
|
5617
5620
|
*
|
|
5618
|
-
*
|
|
5619
|
-
* creating a duplicate grant, which makes create requests
|
|
5621
|
+
* Unique per customer: reusing the same key for the same customer returns an HTTP
|
|
5622
|
+
* 409 Conflict instead of creating a duplicate grant, which makes create requests
|
|
5623
|
+
* safe to retry. The same key may be reused across different customers.
|
|
5620
5624
|
*/
|
|
5621
5625
|
key?: string;
|
|
5622
5626
|
/**
|