@openmeter/sdk 1.0.0-beta.214 → 1.0.0-beta.215
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/cjs/src/client/schemas.d.cts +82 -28
- package/dist/cjs/src/zod/index.cjs +1432 -1284
- package/dist/cjs/src/zod/index.d.cts +24 -21
- package/dist/cjs/src/zod/index.js.map +1 -1
- package/dist/cjs/{tsconfig.4615b2f8.tsbuildinfo → tsconfig.8e260acb.tsbuildinfo} +1 -1
- package/dist/cjs/{tsconfig.9c445eac.tsbuildinfo → tsconfig.a3b81684.tsbuildinfo} +1 -1
- package/dist/src/client/schemas.d.ts +82 -28
- package/dist/src/zod/index.d.ts +24 -21
- package/dist/src/zod/index.js +1430 -1282
- package/dist/src/zod/index.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/orval.config.ts +11 -4
- package/package.json +1 -1
|
@@ -2386,6 +2386,7 @@ export declare const listBillingProfileCustomerOverridesQueryParams: zod.ZodObje
|
|
|
2386
2386
|
customerKey: zod.ZodOptional<zod.ZodString>;
|
|
2387
2387
|
customerName: zod.ZodOptional<zod.ZodString>;
|
|
2388
2388
|
customerPrimaryEmail: zod.ZodOptional<zod.ZodString>;
|
|
2389
|
+
customersWithoutPinnedProfile: zod.ZodOptional<zod.ZodBoolean>;
|
|
2389
2390
|
expand: zod.ZodOptional<zod.ZodArray<zod.ZodEnum<["apps", "customer"]>, "many">>;
|
|
2390
2391
|
includeAllCustomers: zod.ZodDefault<zod.ZodBoolean>;
|
|
2391
2392
|
order: zod.ZodOptional<zod.ZodEnum<["ASC", "DESC"]>>;
|
|
@@ -2403,6 +2404,7 @@ export declare const listBillingProfileCustomerOverridesQueryParams: zod.ZodObje
|
|
|
2403
2404
|
order?: "ASC" | "DESC" | undefined;
|
|
2404
2405
|
orderBy?: "customerId" | "customerName" | "customerKey" | "customerPrimaryEmail" | "customerCreatedAt" | undefined;
|
|
2405
2406
|
billingProfile?: string[] | undefined;
|
|
2407
|
+
customersWithoutPinnedProfile?: boolean | undefined;
|
|
2406
2408
|
expand?: ("apps" | "customer")[] | undefined;
|
|
2407
2409
|
}, {
|
|
2408
2410
|
customerId?: string[] | undefined;
|
|
@@ -2414,6 +2416,7 @@ export declare const listBillingProfileCustomerOverridesQueryParams: zod.ZodObje
|
|
|
2414
2416
|
order?: "ASC" | "DESC" | undefined;
|
|
2415
2417
|
orderBy?: "customerId" | "customerName" | "customerKey" | "customerPrimaryEmail" | "customerCreatedAt" | undefined;
|
|
2416
2418
|
billingProfile?: string[] | undefined;
|
|
2419
|
+
customersWithoutPinnedProfile?: boolean | undefined;
|
|
2417
2420
|
expand?: ("apps" | "customer")[] | undefined;
|
|
2418
2421
|
includeAllCustomers?: boolean | undefined;
|
|
2419
2422
|
}>;
|
|
@@ -7442,10 +7445,10 @@ export declare const listCustomersQueryParams: zod.ZodObject<{
|
|
|
7442
7445
|
* Get a customer by ID or key.
|
|
7443
7446
|
* @summary Get customer
|
|
7444
7447
|
*/
|
|
7445
|
-
export declare const
|
|
7446
|
-
export declare const
|
|
7448
|
+
export declare const getCustomerPathCustomerIdOrKeyRegExpOne: RegExp;
|
|
7449
|
+
export declare const getCustomerPathCustomerIdOrKeyMaxTwo = 256;
|
|
7447
7450
|
export declare const getCustomerParams: zod.ZodObject<{
|
|
7448
|
-
customerIdOrKey: zod.ZodString
|
|
7451
|
+
customerIdOrKey: zod.ZodUnion<[zod.ZodString, zod.ZodString]>;
|
|
7449
7452
|
}, "strip", zod.ZodTypeAny, {
|
|
7450
7453
|
customerIdOrKey: string;
|
|
7451
7454
|
}, {
|
|
@@ -7462,10 +7465,10 @@ export declare const getCustomerQueryParams: zod.ZodObject<{
|
|
|
7462
7465
|
* Update a customer by ID.
|
|
7463
7466
|
* @summary Update customer
|
|
7464
7467
|
*/
|
|
7465
|
-
export declare const
|
|
7466
|
-
export declare const
|
|
7468
|
+
export declare const updateCustomerPathCustomerIdOrKeyRegExpOne: RegExp;
|
|
7469
|
+
export declare const updateCustomerPathCustomerIdOrKeyMaxTwo = 256;
|
|
7467
7470
|
export declare const updateCustomerParams: zod.ZodObject<{
|
|
7468
|
-
customerIdOrKey: zod.ZodString
|
|
7471
|
+
customerIdOrKey: zod.ZodUnion<[zod.ZodString, zod.ZodString]>;
|
|
7469
7472
|
}, "strip", zod.ZodTypeAny, {
|
|
7470
7473
|
customerIdOrKey: string;
|
|
7471
7474
|
}, {
|
|
@@ -7563,10 +7566,10 @@ export declare const updateCustomerBody: zod.ZodObject<{
|
|
|
7563
7566
|
* Delete a customer by ID.
|
|
7564
7567
|
* @summary Delete customer
|
|
7565
7568
|
*/
|
|
7566
|
-
export declare const
|
|
7567
|
-
export declare const
|
|
7569
|
+
export declare const deleteCustomerPathCustomerIdOrKeyRegExpOne: RegExp;
|
|
7570
|
+
export declare const deleteCustomerPathCustomerIdOrKeyMaxTwo = 256;
|
|
7568
7571
|
export declare const deleteCustomerParams: zod.ZodObject<{
|
|
7569
|
-
customerIdOrKey: zod.ZodString
|
|
7572
|
+
customerIdOrKey: zod.ZodUnion<[zod.ZodString, zod.ZodString]>;
|
|
7570
7573
|
}, "strip", zod.ZodTypeAny, {
|
|
7571
7574
|
customerIdOrKey: string;
|
|
7572
7575
|
}, {
|
|
@@ -7589,10 +7592,10 @@ export declare const getCustomerAccessParams: zod.ZodObject<{
|
|
|
7589
7592
|
* List customers app data.
|
|
7590
7593
|
* @summary List customer app data
|
|
7591
7594
|
*/
|
|
7592
|
-
export declare const
|
|
7593
|
-
export declare const
|
|
7595
|
+
export declare const listCustomerAppDataPathCustomerIdOrKeyRegExpOne: RegExp;
|
|
7596
|
+
export declare const listCustomerAppDataPathCustomerIdOrKeyMaxTwo = 256;
|
|
7594
7597
|
export declare const listCustomerAppDataParams: zod.ZodObject<{
|
|
7595
|
-
customerIdOrKey: zod.ZodString
|
|
7598
|
+
customerIdOrKey: zod.ZodUnion<[zod.ZodString, zod.ZodString]>;
|
|
7596
7599
|
}, "strip", zod.ZodTypeAny, {
|
|
7597
7600
|
customerIdOrKey: string;
|
|
7598
7601
|
}, {
|
|
@@ -7618,10 +7621,10 @@ export declare const listCustomerAppDataQueryParams: zod.ZodObject<{
|
|
|
7618
7621
|
* Upsert customer app data.
|
|
7619
7622
|
* @summary Upsert customer app data
|
|
7620
7623
|
*/
|
|
7621
|
-
export declare const
|
|
7622
|
-
export declare const
|
|
7624
|
+
export declare const upsertCustomerAppDataPathCustomerIdOrKeyRegExpOne: RegExp;
|
|
7625
|
+
export declare const upsertCustomerAppDataPathCustomerIdOrKeyMaxTwo = 256;
|
|
7623
7626
|
export declare const upsertCustomerAppDataParams: zod.ZodObject<{
|
|
7624
|
-
customerIdOrKey: zod.ZodString
|
|
7627
|
+
customerIdOrKey: zod.ZodUnion<[zod.ZodString, zod.ZodString]>;
|
|
7625
7628
|
}, "strip", zod.ZodTypeAny, {
|
|
7626
7629
|
customerIdOrKey: string;
|
|
7627
7630
|
}, {
|
|
@@ -8318,12 +8321,12 @@ export declare const upsertCustomerAppDataBody: zod.ZodArray<zod.ZodDiscriminate
|
|
|
8318
8321
|
* Delete customer app data.
|
|
8319
8322
|
* @summary Delete customer app data
|
|
8320
8323
|
*/
|
|
8321
|
-
export declare const
|
|
8322
|
-
export declare const
|
|
8324
|
+
export declare const deleteCustomerAppDataPathCustomerIdOrKeyRegExpOne: RegExp;
|
|
8325
|
+
export declare const deleteCustomerAppDataPathCustomerIdOrKeyMaxTwo = 256;
|
|
8323
8326
|
export declare const deleteCustomerAppDataPathAppIdRegExp: RegExp;
|
|
8324
8327
|
export declare const deleteCustomerAppDataParams: zod.ZodObject<{
|
|
8325
8328
|
appId: zod.ZodString;
|
|
8326
|
-
customerIdOrKey: zod.ZodString
|
|
8329
|
+
customerIdOrKey: zod.ZodUnion<[zod.ZodString, zod.ZodString]>;
|
|
8327
8330
|
}, "strip", zod.ZodTypeAny, {
|
|
8328
8331
|
customerIdOrKey: string;
|
|
8329
8332
|
appId: string;
|
|
@@ -8360,10 +8363,10 @@ export declare const getCustomerEntitlementValueQueryParams: zod.ZodObject<{
|
|
|
8360
8363
|
* Lists all subscriptions for a customer.
|
|
8361
8364
|
* @summary List customer subscriptions
|
|
8362
8365
|
*/
|
|
8363
|
-
export declare const
|
|
8364
|
-
export declare const
|
|
8366
|
+
export declare const listCustomerSubscriptionsPathCustomerIdOrKeyRegExpOne: RegExp;
|
|
8367
|
+
export declare const listCustomerSubscriptionsPathCustomerIdOrKeyMaxTwo = 256;
|
|
8365
8368
|
export declare const listCustomerSubscriptionsParams: zod.ZodObject<{
|
|
8366
|
-
customerIdOrKey: zod.ZodString
|
|
8369
|
+
customerIdOrKey: zod.ZodUnion<[zod.ZodString, zod.ZodString]>;
|
|
8367
8370
|
}, "strip", zod.ZodTypeAny, {
|
|
8368
8371
|
customerIdOrKey: string;
|
|
8369
8372
|
}, {
|