@openmeter/sdk 1.0.0-beta.214 → 1.0.0-beta.216
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/customers.d.cts +3 -0
- package/dist/cjs/src/client/schemas.d.cts +89 -30
- package/dist/cjs/src/zod/index.cjs +1448 -1292
- package/dist/cjs/src/zod/index.d.cts +30 -27
- package/dist/cjs/src/zod/index.js.map +1 -1
- package/dist/cjs/{tsconfig.4615b2f8.tsbuildinfo → tsconfig.73276a9a.tsbuildinfo} +1 -1
- package/dist/cjs/{tsconfig.9c445eac.tsbuildinfo → tsconfig.77ed3edb.tsbuildinfo} +1 -1
- package/dist/src/client/customers.d.ts +3 -0
- package/dist/src/client/schemas.d.ts +89 -30
- package/dist/src/zod/index.d.ts +30 -27
- package/dist/src/zod/index.js +1446 -1290
- 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
|
@@ -2350,10 +2350,16 @@ export interface components {
|
|
|
2350
2350
|
/** @description Phone number. */
|
|
2351
2351
|
phoneNumber?: string;
|
|
2352
2352
|
};
|
|
2353
|
-
/**
|
|
2353
|
+
/**
|
|
2354
|
+
* @deprecated
|
|
2355
|
+
* @description Alignment configuration for a plan or subscription.
|
|
2356
|
+
*/
|
|
2354
2357
|
Alignment: {
|
|
2355
|
-
/**
|
|
2356
|
-
*
|
|
2358
|
+
/**
|
|
2359
|
+
* @deprecated
|
|
2360
|
+
* @description Whether all Billable items and RateCards must align.
|
|
2361
|
+
* Alignment means the Price's BillingCadence must align for both duration and anchor time.
|
|
2362
|
+
*/
|
|
2357
2363
|
billablesMustAlign?: boolean;
|
|
2358
2364
|
};
|
|
2359
2365
|
/**
|
|
@@ -3629,6 +3635,11 @@ export interface components {
|
|
|
3629
3635
|
* Only with the `subscriptions` expand option.
|
|
3630
3636
|
*/
|
|
3631
3637
|
readonly subscriptions?: components['schemas']['Subscription'][];
|
|
3638
|
+
/**
|
|
3639
|
+
* Annotations
|
|
3640
|
+
* @description Set of key-value pairs managed by the system. Cannot be modified by user.
|
|
3641
|
+
*/
|
|
3642
|
+
readonly annotations?: components['schemas']['Annotations'];
|
|
3632
3643
|
};
|
|
3633
3644
|
/** @description CustomerAccess describes what features the customer has access to. */
|
|
3634
3645
|
CustomerAccess: {
|
|
@@ -9238,8 +9249,11 @@ export interface components {
|
|
|
9238
9249
|
};
|
|
9239
9250
|
/** @description Alignment details enriched with the current billing period. */
|
|
9240
9251
|
SubscriptionAlignment: {
|
|
9241
|
-
/**
|
|
9242
|
-
*
|
|
9252
|
+
/**
|
|
9253
|
+
* @deprecated
|
|
9254
|
+
* @description Whether all Billable items and RateCards must align.
|
|
9255
|
+
* Alignment means the Price's BillingCadence must align for both duration and anchor time.
|
|
9256
|
+
*/
|
|
9243
9257
|
billablesMustAlign?: boolean;
|
|
9244
9258
|
/** @description The current billing period. Only has value if the subscription is aligned and active. */
|
|
9245
9259
|
currentAlignedBillingPeriod?: components['schemas']['Period'];
|
|
@@ -9682,6 +9696,8 @@ export interface components {
|
|
|
9682
9696
|
*/
|
|
9683
9697
|
maximumAmount?: components['schemas']['Numeric'];
|
|
9684
9698
|
};
|
|
9699
|
+
/** @description ULID (Universally Unique Lexicographically Sortable Identifier) or external unique key. */
|
|
9700
|
+
ULIDOrExternalKey: string;
|
|
9685
9701
|
/** @description The request has not been applied because it lacks valid authentication credentials for the target resource. */
|
|
9686
9702
|
UnauthorizedProblemResponse: components['schemas']['UnexpectedProblemResponse'];
|
|
9687
9703
|
/** @description A Problem Details object (RFC 7807).
|
|
@@ -9717,7 +9733,7 @@ export interface components {
|
|
|
9717
9733
|
*/
|
|
9718
9734
|
instance: string;
|
|
9719
9735
|
} & {
|
|
9720
|
-
[key: string]:
|
|
9736
|
+
[key: string]: unknown;
|
|
9721
9737
|
};
|
|
9722
9738
|
/** @description Unit price. */
|
|
9723
9739
|
UnitPrice: {
|
|
@@ -9749,7 +9765,7 @@ export interface components {
|
|
|
9749
9765
|
*/
|
|
9750
9766
|
maximumAmount?: components['schemas']['Numeric'];
|
|
9751
9767
|
};
|
|
9752
|
-
/** @description Validation errors providing
|
|
9768
|
+
/** @description Validation errors providing detailed description of the issue. */
|
|
9753
9769
|
ValidationError: {
|
|
9754
9770
|
/**
|
|
9755
9771
|
* @description The path to the field.
|
|
@@ -9769,6 +9785,42 @@ export interface components {
|
|
|
9769
9785
|
/** @description Additional attributes. */
|
|
9770
9786
|
readonly attributes?: components['schemas']['Annotations'];
|
|
9771
9787
|
};
|
|
9788
|
+
/** @description A BadRequestError with a validationErrors extension. */
|
|
9789
|
+
ValidationErrorProblemResponse: {
|
|
9790
|
+
/**
|
|
9791
|
+
* Format: uri
|
|
9792
|
+
* @description Type contains a URI that identifies the problem type.
|
|
9793
|
+
* @default about:blank
|
|
9794
|
+
* @example about:blank
|
|
9795
|
+
*/
|
|
9796
|
+
type: string;
|
|
9797
|
+
/**
|
|
9798
|
+
* @description A a short, human-readable summary of the problem type.
|
|
9799
|
+
* @example Bad Request
|
|
9800
|
+
*/
|
|
9801
|
+
title: string;
|
|
9802
|
+
/**
|
|
9803
|
+
* Format: int16
|
|
9804
|
+
* @description The HTTP status code generated by the origin server for this occurrence of the problem.
|
|
9805
|
+
* @example 400
|
|
9806
|
+
*/
|
|
9807
|
+
status?: number;
|
|
9808
|
+
/**
|
|
9809
|
+
* @description A human-readable explanation specific to this occurrence of the problem.
|
|
9810
|
+
* @example The request body must be a JSON object.
|
|
9811
|
+
*/
|
|
9812
|
+
detail: string;
|
|
9813
|
+
/**
|
|
9814
|
+
* Format: uri
|
|
9815
|
+
* @description A URI reference that identifies the specific occurrence of the problem.
|
|
9816
|
+
* @example urn:request:local/JMOlctsKV8-000001
|
|
9817
|
+
*/
|
|
9818
|
+
instance: string;
|
|
9819
|
+
/** @description Validation issues. */
|
|
9820
|
+
readonly extensions?: {
|
|
9821
|
+
validationErrors?: components['schemas']['ValidationError'][];
|
|
9822
|
+
};
|
|
9823
|
+
};
|
|
9772
9824
|
/** @description ValidationIssue captures any validation issues related to the invoice.
|
|
9773
9825
|
*
|
|
9774
9826
|
* Issues with severity "critical" will prevent the invoice from being issued. */
|
|
@@ -9934,6 +9986,8 @@ export interface components {
|
|
|
9934
9986
|
'BillingProfileListCustomerOverridesParams.customerName': string;
|
|
9935
9987
|
/** @description Filter by customer primary email */
|
|
9936
9988
|
'BillingProfileListCustomerOverridesParams.customerPrimaryEmail': string;
|
|
9989
|
+
/** @description Only return customers without pinned billing profiles. This implicitly sets includeAllCustomers to true. */
|
|
9990
|
+
'BillingProfileListCustomerOverridesParams.customersWithoutPinnedProfile': boolean;
|
|
9937
9991
|
/** @description Expand the response with additional details. */
|
|
9938
9992
|
'BillingProfileListCustomerOverridesParams.expand': components['schemas']['BillingProfileCustomerOverrideExpand'][];
|
|
9939
9993
|
/** @description Include customers without customer overrides.
|
|
@@ -10475,11 +10529,13 @@ export type TaxBehavior = components['schemas']['TaxBehavior'];
|
|
|
10475
10529
|
export type TaxConfig = components['schemas']['TaxConfig'];
|
|
10476
10530
|
export type TieredPriceMode = components['schemas']['TieredPriceMode'];
|
|
10477
10531
|
export type TieredPriceWithCommitments = components['schemas']['TieredPriceWithCommitments'];
|
|
10532
|
+
export type UlidOrExternalKey = components['schemas']['ULIDOrExternalKey'];
|
|
10478
10533
|
export type UnauthorizedProblemResponse = components['schemas']['UnauthorizedProblemResponse'];
|
|
10479
10534
|
export type UnexpectedProblemResponse = components['schemas']['UnexpectedProblemResponse'];
|
|
10480
10535
|
export type UnitPrice = components['schemas']['UnitPrice'];
|
|
10481
10536
|
export type UnitPriceWithCommitments = components['schemas']['UnitPriceWithCommitments'];
|
|
10482
10537
|
export type ValidationError = components['schemas']['ValidationError'];
|
|
10538
|
+
export type ValidationErrorProblemResponse = components['schemas']['ValidationErrorProblemResponse'];
|
|
10483
10539
|
export type ValidationIssue = components['schemas']['ValidationIssue'];
|
|
10484
10540
|
export type ValidationIssueSeverity = components['schemas']['ValidationIssueSeverity'];
|
|
10485
10541
|
export type VoidInvoiceActionCreate = components['schemas']['VoidInvoiceActionCreate'];
|
|
@@ -10502,6 +10558,7 @@ export type ParameterBillingProfileListCustomerOverridesParamsCustomerId = compo
|
|
|
10502
10558
|
export type ParameterBillingProfileListCustomerOverridesParamsCustomerKey = components['parameters']['BillingProfileListCustomerOverridesParams.customerKey'];
|
|
10503
10559
|
export type ParameterBillingProfileListCustomerOverridesParamsCustomerName = components['parameters']['BillingProfileListCustomerOverridesParams.customerName'];
|
|
10504
10560
|
export type ParameterBillingProfileListCustomerOverridesParamsCustomerPrimaryEmail = components['parameters']['BillingProfileListCustomerOverridesParams.customerPrimaryEmail'];
|
|
10561
|
+
export type ParameterBillingProfileListCustomerOverridesParamsCustomersWithoutPinnedProfile = components['parameters']['BillingProfileListCustomerOverridesParams.customersWithoutPinnedProfile'];
|
|
10505
10562
|
export type ParameterBillingProfileListCustomerOverridesParamsExpand = components['parameters']['BillingProfileListCustomerOverridesParams.expand'];
|
|
10506
10563
|
export type ParameterBillingProfileListCustomerOverridesParamsIncludeAllCustomers = components['parameters']['BillingProfileListCustomerOverridesParams.includeAllCustomers'];
|
|
10507
10564
|
export type ParameterBillingProfileOrderByOrderingOrder = components['parameters']['BillingProfileOrderByOrdering.order'];
|
|
@@ -12081,6 +12138,8 @@ export interface operations {
|
|
|
12081
12138
|
query?: {
|
|
12082
12139
|
/** @description Filter by billing profile. */
|
|
12083
12140
|
billingProfile?: components['parameters']['BillingProfileListCustomerOverridesParams.billingProfile'];
|
|
12141
|
+
/** @description Only return customers without pinned billing profiles. This implicitly sets includeAllCustomers to true. */
|
|
12142
|
+
customersWithoutPinnedProfile?: components['parameters']['BillingProfileListCustomerOverridesParams.customersWithoutPinnedProfile'];
|
|
12084
12143
|
/** @description Include customers without customer overrides.
|
|
12085
12144
|
*
|
|
12086
12145
|
* If set to false only the customers specifically associated with a billing profile will be returned.
|
|
@@ -14400,7 +14459,7 @@ export interface operations {
|
|
|
14400
14459
|
};
|
|
14401
14460
|
header?: never;
|
|
14402
14461
|
path: {
|
|
14403
|
-
customerIdOrKey:
|
|
14462
|
+
customerIdOrKey: components['schemas']['ULIDOrExternalKey'];
|
|
14404
14463
|
};
|
|
14405
14464
|
cookie?: never;
|
|
14406
14465
|
};
|
|
@@ -14494,7 +14553,7 @@ export interface operations {
|
|
|
14494
14553
|
query?: never;
|
|
14495
14554
|
header?: never;
|
|
14496
14555
|
path: {
|
|
14497
|
-
customerIdOrKey:
|
|
14556
|
+
customerIdOrKey: components['schemas']['ULIDOrExternalKey'];
|
|
14498
14557
|
};
|
|
14499
14558
|
cookie?: never;
|
|
14500
14559
|
};
|
|
@@ -14592,7 +14651,7 @@ export interface operations {
|
|
|
14592
14651
|
query?: never;
|
|
14593
14652
|
header?: never;
|
|
14594
14653
|
path: {
|
|
14595
|
-
customerIdOrKey:
|
|
14654
|
+
customerIdOrKey: components['schemas']['ULIDOrExternalKey'];
|
|
14596
14655
|
};
|
|
14597
14656
|
cookie?: never;
|
|
14598
14657
|
};
|
|
@@ -14684,7 +14743,7 @@ export interface operations {
|
|
|
14684
14743
|
query?: never;
|
|
14685
14744
|
header?: never;
|
|
14686
14745
|
path: {
|
|
14687
|
-
customerIdOrKey:
|
|
14746
|
+
customerIdOrKey: components['schemas']['ULIDOrExternalKey'];
|
|
14688
14747
|
};
|
|
14689
14748
|
cookie?: never;
|
|
14690
14749
|
};
|
|
@@ -14789,7 +14848,7 @@ export interface operations {
|
|
|
14789
14848
|
};
|
|
14790
14849
|
header?: never;
|
|
14791
14850
|
path: {
|
|
14792
|
-
customerIdOrKey:
|
|
14851
|
+
customerIdOrKey: components['schemas']['ULIDOrExternalKey'];
|
|
14793
14852
|
};
|
|
14794
14853
|
cookie?: never;
|
|
14795
14854
|
};
|
|
@@ -14883,7 +14942,7 @@ export interface operations {
|
|
|
14883
14942
|
query?: never;
|
|
14884
14943
|
header?: never;
|
|
14885
14944
|
path: {
|
|
14886
|
-
customerIdOrKey:
|
|
14945
|
+
customerIdOrKey: components['schemas']['ULIDOrExternalKey'];
|
|
14887
14946
|
};
|
|
14888
14947
|
cookie?: never;
|
|
14889
14948
|
};
|
|
@@ -14981,7 +15040,7 @@ export interface operations {
|
|
|
14981
15040
|
query?: never;
|
|
14982
15041
|
header?: never;
|
|
14983
15042
|
path: {
|
|
14984
|
-
customerIdOrKey:
|
|
15043
|
+
customerIdOrKey: components['schemas']['ULIDOrExternalKey'];
|
|
14985
15044
|
appId: string;
|
|
14986
15045
|
};
|
|
14987
15046
|
cookie?: never;
|
|
@@ -15076,7 +15135,7 @@ export interface operations {
|
|
|
15076
15135
|
};
|
|
15077
15136
|
header?: never;
|
|
15078
15137
|
path: {
|
|
15079
|
-
customerIdOrKey:
|
|
15138
|
+
customerIdOrKey: components['schemas']['ULIDOrExternalKey'];
|
|
15080
15139
|
featureKey: string;
|
|
15081
15140
|
};
|
|
15082
15141
|
cookie?: never;
|
|
@@ -15180,7 +15239,7 @@ export interface operations {
|
|
|
15180
15239
|
};
|
|
15181
15240
|
header?: never;
|
|
15182
15241
|
path: {
|
|
15183
|
-
customerIdOrKey:
|
|
15242
|
+
customerIdOrKey: components['schemas']['ULIDOrExternalKey'];
|
|
15184
15243
|
};
|
|
15185
15244
|
cookie?: never;
|
|
15186
15245
|
};
|
|
@@ -22240,13 +22299,13 @@ export interface operations {
|
|
|
22240
22299
|
'application/json': components['schemas']['Subscription'];
|
|
22241
22300
|
};
|
|
22242
22301
|
};
|
|
22243
|
-
/** @description
|
|
22302
|
+
/** @description A BadRequestError with a validationErrors extension. */
|
|
22244
22303
|
400: {
|
|
22245
22304
|
headers: {
|
|
22246
22305
|
[name: string]: unknown;
|
|
22247
22306
|
};
|
|
22248
22307
|
content: {
|
|
22249
|
-
'application/problem+json': components['schemas']['
|
|
22308
|
+
'application/problem+json': components['schemas']['ValidationErrorProblemResponse'];
|
|
22250
22309
|
};
|
|
22251
22310
|
};
|
|
22252
22311
|
/** @description The request has not been applied because it lacks valid authentication credentials for the target resource. */
|
|
@@ -22429,13 +22488,13 @@ export interface operations {
|
|
|
22429
22488
|
};
|
|
22430
22489
|
content?: never;
|
|
22431
22490
|
};
|
|
22432
|
-
/** @description
|
|
22491
|
+
/** @description A BadRequestError with a validationErrors extension. */
|
|
22433
22492
|
400: {
|
|
22434
22493
|
headers: {
|
|
22435
22494
|
[name: string]: unknown;
|
|
22436
22495
|
};
|
|
22437
22496
|
content: {
|
|
22438
|
-
'application/problem+json': components['schemas']['
|
|
22497
|
+
'application/problem+json': components['schemas']['ValidationErrorProblemResponse'];
|
|
22439
22498
|
};
|
|
22440
22499
|
};
|
|
22441
22500
|
/** @description The request has not been applied because it lacks valid authentication credentials for the target resource. */
|
|
@@ -22527,13 +22586,13 @@ export interface operations {
|
|
|
22527
22586
|
'application/json': components['schemas']['Subscription'];
|
|
22528
22587
|
};
|
|
22529
22588
|
};
|
|
22530
|
-
/** @description
|
|
22589
|
+
/** @description A BadRequestError with a validationErrors extension. */
|
|
22531
22590
|
400: {
|
|
22532
22591
|
headers: {
|
|
22533
22592
|
[name: string]: unknown;
|
|
22534
22593
|
};
|
|
22535
22594
|
content: {
|
|
22536
|
-
'application/problem+json': components['schemas']['
|
|
22595
|
+
'application/problem+json': components['schemas']['ValidationErrorProblemResponse'];
|
|
22537
22596
|
};
|
|
22538
22597
|
};
|
|
22539
22598
|
/** @description The request has not been applied because it lacks valid authentication credentials for the target resource. */
|
|
@@ -23032,13 +23091,13 @@ export interface operations {
|
|
|
23032
23091
|
'application/json': components['schemas']['Subscription'];
|
|
23033
23092
|
};
|
|
23034
23093
|
};
|
|
23035
|
-
/** @description
|
|
23094
|
+
/** @description A BadRequestError with a validationErrors extension. */
|
|
23036
23095
|
400: {
|
|
23037
23096
|
headers: {
|
|
23038
23097
|
[name: string]: unknown;
|
|
23039
23098
|
};
|
|
23040
23099
|
content: {
|
|
23041
|
-
'application/problem+json': components['schemas']['
|
|
23100
|
+
'application/problem+json': components['schemas']['ValidationErrorProblemResponse'];
|
|
23042
23101
|
};
|
|
23043
23102
|
};
|
|
23044
23103
|
/** @description The request has not been applied because it lacks valid authentication credentials for the target resource. */
|
|
@@ -23139,13 +23198,13 @@ export interface operations {
|
|
|
23139
23198
|
'application/json': components['schemas']['SubscriptionChangeResponseBody'];
|
|
23140
23199
|
};
|
|
23141
23200
|
};
|
|
23142
|
-
/** @description
|
|
23201
|
+
/** @description A BadRequestError with a validationErrors extension. */
|
|
23143
23202
|
400: {
|
|
23144
23203
|
headers: {
|
|
23145
23204
|
[name: string]: unknown;
|
|
23146
23205
|
};
|
|
23147
23206
|
content: {
|
|
23148
|
-
'application/problem+json': components['schemas']['
|
|
23207
|
+
'application/problem+json': components['schemas']['ValidationErrorProblemResponse'];
|
|
23149
23208
|
};
|
|
23150
23209
|
};
|
|
23151
23210
|
/** @description The request has not been applied because it lacks valid authentication credentials for the target resource. */
|
|
@@ -23265,13 +23324,13 @@ export interface operations {
|
|
|
23265
23324
|
'application/json': components['schemas']['SubscriptionChangeResponseBody'];
|
|
23266
23325
|
};
|
|
23267
23326
|
};
|
|
23268
|
-
/** @description
|
|
23327
|
+
/** @description A BadRequestError with a validationErrors extension. */
|
|
23269
23328
|
400: {
|
|
23270
23329
|
headers: {
|
|
23271
23330
|
[name: string]: unknown;
|
|
23272
23331
|
};
|
|
23273
23332
|
content: {
|
|
23274
|
-
'application/problem+json': components['schemas']['
|
|
23333
|
+
'application/problem+json': components['schemas']['ValidationErrorProblemResponse'];
|
|
23275
23334
|
};
|
|
23276
23335
|
};
|
|
23277
23336
|
/** @description The request has not been applied because it lacks valid authentication credentials for the target resource. */
|
|
@@ -23462,13 +23521,13 @@ export interface operations {
|
|
|
23462
23521
|
'application/json': components['schemas']['Subscription'];
|
|
23463
23522
|
};
|
|
23464
23523
|
};
|
|
23465
|
-
/** @description
|
|
23524
|
+
/** @description A BadRequestError with a validationErrors extension. */
|
|
23466
23525
|
400: {
|
|
23467
23526
|
headers: {
|
|
23468
23527
|
[name: string]: unknown;
|
|
23469
23528
|
};
|
|
23470
23529
|
content: {
|
|
23471
|
-
'application/problem+json': components['schemas']['
|
|
23530
|
+
'application/problem+json': components['schemas']['ValidationErrorProblemResponse'];
|
|
23472
23531
|
};
|
|
23473
23532
|
};
|
|
23474
23533
|
/** @description The request has not been applied because it lacks valid authentication credentials for the target resource. */
|
package/dist/src/zod/index.d.ts
CHANGED
|
@@ -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
|
}, {
|
|
@@ -7576,10 +7579,10 @@ export declare const deleteCustomerParams: zod.ZodObject<{
|
|
|
7576
7579
|
* Get the overall access of a customer.
|
|
7577
7580
|
* @summary Get customer access
|
|
7578
7581
|
*/
|
|
7579
|
-
export declare const
|
|
7580
|
-
export declare const
|
|
7582
|
+
export declare const getCustomerAccessPathCustomerIdOrKeyRegExpOne: RegExp;
|
|
7583
|
+
export declare const getCustomerAccessPathCustomerIdOrKeyMaxTwo = 256;
|
|
7581
7584
|
export declare const getCustomerAccessParams: zod.ZodObject<{
|
|
7582
|
-
customerIdOrKey: zod.ZodString
|
|
7585
|
+
customerIdOrKey: zod.ZodUnion<[zod.ZodString, zod.ZodString]>;
|
|
7583
7586
|
}, "strip", zod.ZodTypeAny, {
|
|
7584
7587
|
customerIdOrKey: string;
|
|
7585
7588
|
}, {
|
|
@@ -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;
|
|
@@ -8335,12 +8338,12 @@ export declare const deleteCustomerAppDataParams: zod.ZodObject<{
|
|
|
8335
8338
|
* Checks customer access to a given feature (by key). All entitlement types share the hasAccess property in their value response, but multiple other properties are returned based on the entitlement type.
|
|
8336
8339
|
* @summary Get customer entitlement value
|
|
8337
8340
|
*/
|
|
8338
|
-
export declare const
|
|
8339
|
-
export declare const
|
|
8341
|
+
export declare const getCustomerEntitlementValuePathCustomerIdOrKeyRegExpOne: RegExp;
|
|
8342
|
+
export declare const getCustomerEntitlementValuePathCustomerIdOrKeyMaxTwo = 256;
|
|
8340
8343
|
export declare const getCustomerEntitlementValuePathFeatureKeyMax = 64;
|
|
8341
8344
|
export declare const getCustomerEntitlementValuePathFeatureKeyRegExp: RegExp;
|
|
8342
8345
|
export declare const getCustomerEntitlementValueParams: zod.ZodObject<{
|
|
8343
|
-
customerIdOrKey: zod.ZodString
|
|
8346
|
+
customerIdOrKey: zod.ZodUnion<[zod.ZodString, zod.ZodString]>;
|
|
8344
8347
|
featureKey: zod.ZodString;
|
|
8345
8348
|
}, "strip", zod.ZodTypeAny, {
|
|
8346
8349
|
featureKey: 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
|
}, {
|