@openmeter/sdk 1.0.0-beta.202 → 1.0.0-beta.204
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/apps.d.cts +28 -2
- package/dist/cjs/src/client/entitlements.d.cts +24 -0
- package/dist/cjs/src/client/meters.d.cts +8 -0
- package/dist/cjs/src/client/schemas.d.cts +1409 -132
- package/dist/cjs/src/portal/index.d.cts +8 -0
- package/dist/cjs/{tsconfig.28575395.tsbuildinfo → tsconfig.128cd867.tsbuildinfo} +1 -1
- package/dist/cjs/{tsconfig.cf28eb87.tsbuildinfo → tsconfig.48bd919c.tsbuildinfo} +1 -1
- package/dist/src/client/apps.d.ts +28 -2
- package/dist/src/client/entitlements.d.ts +24 -0
- package/dist/src/client/meters.d.ts +8 -0
- package/dist/src/client/schemas.d.ts +1409 -132
- package/dist/src/portal/index.d.ts +8 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -1759,6 +1759,26 @@ export interface paths {
|
|
|
1759
1759
|
patch?: never;
|
|
1760
1760
|
trace?: never;
|
|
1761
1761
|
};
|
|
1762
|
+
'/api/v2/events': {
|
|
1763
|
+
parameters: {
|
|
1764
|
+
query?: never;
|
|
1765
|
+
header?: never;
|
|
1766
|
+
path?: never;
|
|
1767
|
+
cookie?: never;
|
|
1768
|
+
};
|
|
1769
|
+
/**
|
|
1770
|
+
* List ingested events
|
|
1771
|
+
* @description List ingested events with advanced filtering and cursor pagination.
|
|
1772
|
+
*/
|
|
1773
|
+
get: operations['listEventsV2'];
|
|
1774
|
+
put?: never;
|
|
1775
|
+
post?: never;
|
|
1776
|
+
delete?: never;
|
|
1777
|
+
options?: never;
|
|
1778
|
+
head?: never;
|
|
1779
|
+
patch?: never;
|
|
1780
|
+
trace?: never;
|
|
1781
|
+
};
|
|
1762
1782
|
}
|
|
1763
1783
|
export type webhooks = Record<string, never>;
|
|
1764
1784
|
export interface components {
|
|
@@ -1845,15 +1865,24 @@ export interface components {
|
|
|
1845
1865
|
* @enum {string}
|
|
1846
1866
|
*/
|
|
1847
1867
|
AppCapabilityType: 'reportUsage' | 'reportEvents' | 'calculateTax' | 'invoiceCustomers' | 'collectPayments';
|
|
1848
|
-
/** @description
|
|
1849
|
-
|
|
1850
|
-
/**
|
|
1868
|
+
/** @description Paginated response */
|
|
1869
|
+
AppPaginatedResponse: {
|
|
1870
|
+
/**
|
|
1871
|
+
* @description The total number of items.
|
|
1872
|
+
* @example 500
|
|
1873
|
+
*/
|
|
1874
|
+
totalCount: number;
|
|
1875
|
+
/**
|
|
1876
|
+
* @description The page index.
|
|
1877
|
+
* @example 1
|
|
1878
|
+
*/
|
|
1851
1879
|
page: number;
|
|
1852
|
-
/**
|
|
1880
|
+
/**
|
|
1881
|
+
* @description The maximum number of items per page.
|
|
1882
|
+
* @example 100
|
|
1883
|
+
*/
|
|
1853
1884
|
pageSize: number;
|
|
1854
|
-
/** @description The
|
|
1855
|
-
totalCount: number;
|
|
1856
|
-
/** @description The items in the page. */
|
|
1885
|
+
/** @description The items in the current page. */
|
|
1857
1886
|
items: components['schemas']['App'][];
|
|
1858
1887
|
};
|
|
1859
1888
|
/** @description App reference
|
|
@@ -2121,7 +2150,7 @@ export interface components {
|
|
|
2121
2150
|
* If not provided, the default billing profile is chosen if available.
|
|
2122
2151
|
* @example 01G65Z755AFWAKHE12NY0CQ9FH
|
|
2123
2152
|
*/
|
|
2124
|
-
|
|
2153
|
+
billingProfileId?: string;
|
|
2125
2154
|
};
|
|
2126
2155
|
/**
|
|
2127
2156
|
* @description CustomerOverrideExpand specifies the parts of the profile to expand.
|
|
@@ -2155,17 +2184,17 @@ export interface components {
|
|
|
2155
2184
|
/** @description Paginated response */
|
|
2156
2185
|
BillingProfileCustomerOverrideWithDetailsPaginatedResponse: {
|
|
2157
2186
|
/**
|
|
2158
|
-
* @description The
|
|
2187
|
+
* @description The total number of items.
|
|
2159
2188
|
* @example 500
|
|
2160
2189
|
*/
|
|
2161
2190
|
totalCount: number;
|
|
2162
2191
|
/**
|
|
2163
|
-
* @description The
|
|
2192
|
+
* @description The page index.
|
|
2164
2193
|
* @example 1
|
|
2165
2194
|
*/
|
|
2166
2195
|
page: number;
|
|
2167
2196
|
/**
|
|
2168
|
-
* @description The
|
|
2197
|
+
* @description The maximum number of items per page.
|
|
2169
2198
|
* @example 100
|
|
2170
2199
|
*/
|
|
2171
2200
|
pageSize: number;
|
|
@@ -2185,17 +2214,17 @@ export interface components {
|
|
|
2185
2214
|
/** @description Paginated response */
|
|
2186
2215
|
BillingProfilePaginatedResponse: {
|
|
2187
2216
|
/**
|
|
2188
|
-
* @description The
|
|
2217
|
+
* @description The total number of items.
|
|
2189
2218
|
* @example 500
|
|
2190
2219
|
*/
|
|
2191
2220
|
totalCount: number;
|
|
2192
2221
|
/**
|
|
2193
|
-
* @description The
|
|
2222
|
+
* @description The page index.
|
|
2194
2223
|
* @example 1
|
|
2195
2224
|
*/
|
|
2196
2225
|
page: number;
|
|
2197
2226
|
/**
|
|
2198
|
-
* @description The
|
|
2227
|
+
* @description The maximum number of items per page.
|
|
2199
2228
|
* @example 100
|
|
2200
2229
|
*/
|
|
2201
2230
|
pageSize: number;
|
|
@@ -2269,7 +2298,7 @@ export interface components {
|
|
|
2269
2298
|
* alignment.
|
|
2270
2299
|
*
|
|
2271
2300
|
* This is useful, in case of multiple subscriptions having slightly different billing periods.
|
|
2272
|
-
* @default
|
|
2301
|
+
* @default PT2H
|
|
2273
2302
|
* @example P1D
|
|
2274
2303
|
*/
|
|
2275
2304
|
interval?: string;
|
|
@@ -2296,14 +2325,14 @@ export interface components {
|
|
|
2296
2325
|
/**
|
|
2297
2326
|
* Format: ISO8601
|
|
2298
2327
|
* @description The period for the invoice to be kept in draft status for manual reviews.
|
|
2299
|
-
* @default
|
|
2328
|
+
* @default P0D
|
|
2300
2329
|
* @example P1D
|
|
2301
2330
|
*/
|
|
2302
2331
|
draftPeriod?: string;
|
|
2303
2332
|
/**
|
|
2304
2333
|
* Format: ISO8601
|
|
2305
2334
|
* @description The period after which the invoice is due.
|
|
2306
|
-
* @default
|
|
2335
|
+
* @default P1W
|
|
2307
2336
|
* @example P1D
|
|
2308
2337
|
*/
|
|
2309
2338
|
dueAfter?: string;
|
|
@@ -2328,15 +2357,19 @@ export interface components {
|
|
|
2328
2357
|
};
|
|
2329
2358
|
/** @description Stripe CheckoutSession.custom_text */
|
|
2330
2359
|
CheckoutSessionCustomTextAfterSubmitParams: {
|
|
2360
|
+
/** @description Custom text that should be displayed after the payment confirmation button. */
|
|
2331
2361
|
afterSubmit?: {
|
|
2332
2362
|
message?: string;
|
|
2333
2363
|
};
|
|
2364
|
+
/** @description Custom text that should be displayed alongside shipping address collection. */
|
|
2334
2365
|
shippingAddress?: {
|
|
2335
2366
|
message?: string;
|
|
2336
2367
|
};
|
|
2368
|
+
/** @description Custom text that should be displayed alongside the payment confirmation button. */
|
|
2337
2369
|
submit?: {
|
|
2338
2370
|
message?: string;
|
|
2339
2371
|
};
|
|
2372
|
+
/** @description Custom text that should be displayed in place of the default terms of service agreement text. */
|
|
2340
2373
|
termsOfServiceAcceptance?: {
|
|
2341
2374
|
message?: string;
|
|
2342
2375
|
};
|
|
@@ -2514,6 +2547,8 @@ export interface components {
|
|
|
2514
2547
|
metadata?: {
|
|
2515
2548
|
[key: string]: string;
|
|
2516
2549
|
};
|
|
2550
|
+
/** @description The URL to redirect your customer back to after they authenticate or cancel their payment on the payment method’s app or site.
|
|
2551
|
+
* This parameter is required if ui_mode is embedded and redirect-based payment methods are enabled on the session. */
|
|
2517
2552
|
returnURL?: string;
|
|
2518
2553
|
/** @description The URL to which Stripe should send customers when payment or setup is complete.
|
|
2519
2554
|
* This parameter is not allowed if ui_mode is embedded.
|
|
@@ -2544,6 +2579,34 @@ export interface components {
|
|
|
2544
2579
|
sessionId: string;
|
|
2545
2580
|
/** @description The checkout session setup intent ID. */
|
|
2546
2581
|
setupIntentId: string;
|
|
2582
|
+
/** @description The client secret of the checkout session.
|
|
2583
|
+
* This can be used to initialize Stripe.js for your client-side implementation. */
|
|
2584
|
+
clientSecret?: string;
|
|
2585
|
+
/** @description A unique string to reference the Checkout Session.
|
|
2586
|
+
* This can be a customer ID, a cart ID, or similar, and can be used to reconcile the session with your internal systems. */
|
|
2587
|
+
clientReferenceId?: string;
|
|
2588
|
+
/** @description Customer's email address provided to Stripe. */
|
|
2589
|
+
customerEmail?: string;
|
|
2590
|
+
/** @description Three-letter ISO currency code, in lowercase. */
|
|
2591
|
+
currency?: components['schemas']['CurrencyCode'];
|
|
2592
|
+
/**
|
|
2593
|
+
* Format: date-time
|
|
2594
|
+
* @description Timestamp at which the checkout session was created.
|
|
2595
|
+
* @example 2023-01-01T01:01:01.001Z
|
|
2596
|
+
*/
|
|
2597
|
+
createdAt: Date;
|
|
2598
|
+
/**
|
|
2599
|
+
* Format: date-time
|
|
2600
|
+
* @description Timestamp at which the checkout session will expire.
|
|
2601
|
+
* @example 2023-01-01T01:01:01.001Z
|
|
2602
|
+
*/
|
|
2603
|
+
expiresAt?: Date;
|
|
2604
|
+
/** @description Set of key-value pairs attached to the checkout session. */
|
|
2605
|
+
metadata?: {
|
|
2606
|
+
[key: string]: string;
|
|
2607
|
+
};
|
|
2608
|
+
/** @description The status of the checkout session. */
|
|
2609
|
+
status?: string;
|
|
2547
2610
|
/** @description URL to show the checkout session. */
|
|
2548
2611
|
url?: string;
|
|
2549
2612
|
/** @description Mode
|
|
@@ -2755,17 +2818,17 @@ export interface components {
|
|
|
2755
2818
|
/** @description Paginated response */
|
|
2756
2819
|
CustomerAppDataPaginatedResponse: {
|
|
2757
2820
|
/**
|
|
2758
|
-
* @description The
|
|
2821
|
+
* @description The total number of items.
|
|
2759
2822
|
* @example 500
|
|
2760
2823
|
*/
|
|
2761
2824
|
totalCount: number;
|
|
2762
2825
|
/**
|
|
2763
|
-
* @description The
|
|
2826
|
+
* @description The page index.
|
|
2764
2827
|
* @example 1
|
|
2765
2828
|
*/
|
|
2766
2829
|
page: number;
|
|
2767
2830
|
/**
|
|
2768
|
-
* @description The
|
|
2831
|
+
* @description The maximum number of items per page.
|
|
2769
2832
|
* @example 100
|
|
2770
2833
|
*/
|
|
2771
2834
|
pageSize: number;
|
|
@@ -2839,17 +2902,17 @@ export interface components {
|
|
|
2839
2902
|
/** @description Paginated response */
|
|
2840
2903
|
CustomerPaginatedResponse: {
|
|
2841
2904
|
/**
|
|
2842
|
-
* @description The
|
|
2905
|
+
* @description The total number of items.
|
|
2843
2906
|
* @example 500
|
|
2844
2907
|
*/
|
|
2845
2908
|
totalCount: number;
|
|
2846
2909
|
/**
|
|
2847
|
-
* @description The
|
|
2910
|
+
* @description The page index.
|
|
2848
2911
|
* @example 1
|
|
2849
2912
|
*/
|
|
2850
2913
|
page: number;
|
|
2851
2914
|
/**
|
|
2852
|
-
* @description The
|
|
2915
|
+
* @description The maximum number of items per page.
|
|
2853
2916
|
* @example 100
|
|
2854
2917
|
*/
|
|
2855
2918
|
pageSize: number;
|
|
@@ -2928,7 +2991,7 @@ export interface components {
|
|
|
2928
2991
|
* Percentage
|
|
2929
2992
|
* @description The percentage of the discount.
|
|
2930
2993
|
*/
|
|
2931
|
-
percentage:
|
|
2994
|
+
percentage: components['schemas']['Percentage'];
|
|
2932
2995
|
/**
|
|
2933
2996
|
* Discounted RateCards
|
|
2934
2997
|
* @description The rate cards that the discount applies to.
|
|
@@ -3482,17 +3545,17 @@ export interface components {
|
|
|
3482
3545
|
/** @description Paginated response */
|
|
3483
3546
|
EntitlementPaginatedResponse: {
|
|
3484
3547
|
/**
|
|
3485
|
-
* @description The
|
|
3548
|
+
* @description The total number of items.
|
|
3486
3549
|
* @example 500
|
|
3487
3550
|
*/
|
|
3488
3551
|
totalCount: number;
|
|
3489
3552
|
/**
|
|
3490
|
-
* @description The
|
|
3553
|
+
* @description The page index.
|
|
3491
3554
|
* @example 1
|
|
3492
3555
|
*/
|
|
3493
3556
|
page: number;
|
|
3494
3557
|
/**
|
|
3495
|
-
* @description The
|
|
3558
|
+
* @description The maximum number of items per page.
|
|
3496
3559
|
* @example 100
|
|
3497
3560
|
*/
|
|
3498
3561
|
pageSize: number;
|
|
@@ -3845,23 +3908,81 @@ export interface components {
|
|
|
3845
3908
|
/** @description Paginated response */
|
|
3846
3909
|
FeaturePaginatedResponse: {
|
|
3847
3910
|
/**
|
|
3848
|
-
* @description The
|
|
3911
|
+
* @description The total number of items.
|
|
3849
3912
|
* @example 500
|
|
3850
3913
|
*/
|
|
3851
3914
|
totalCount: number;
|
|
3852
3915
|
/**
|
|
3853
|
-
* @description The
|
|
3916
|
+
* @description The page index.
|
|
3854
3917
|
* @example 1
|
|
3855
3918
|
*/
|
|
3856
3919
|
page: number;
|
|
3857
3920
|
/**
|
|
3858
|
-
* @description The
|
|
3921
|
+
* @description The maximum number of items per page.
|
|
3859
3922
|
* @example 100
|
|
3860
3923
|
*/
|
|
3861
3924
|
pageSize: number;
|
|
3862
3925
|
/** @description The items in the current page. */
|
|
3863
3926
|
items: components['schemas']['Feature'][];
|
|
3864
3927
|
};
|
|
3928
|
+
/** @description A filter for a string field. */
|
|
3929
|
+
FilterString: {
|
|
3930
|
+
/** @description The field must be equal to the provided value. */
|
|
3931
|
+
$eq?: string | null;
|
|
3932
|
+
/** @description The field must not be equal to the provided value. */
|
|
3933
|
+
$ne?: string | null;
|
|
3934
|
+
/** @description The field must be in the provided list of values. */
|
|
3935
|
+
$in?: string[] | null;
|
|
3936
|
+
/** @description The field must not be in the provided list of values. */
|
|
3937
|
+
$nin?: string[] | null;
|
|
3938
|
+
/** @description The field must match the provided value. */
|
|
3939
|
+
$like?: string | null;
|
|
3940
|
+
/** @description The field must not match the provided value. */
|
|
3941
|
+
$nlike?: string | null;
|
|
3942
|
+
/** @description The field must match the provided value, ignoring case. */
|
|
3943
|
+
$ilike?: string | null;
|
|
3944
|
+
/** @description The field must not match the provided value, ignoring case. */
|
|
3945
|
+
$nilike?: string | null;
|
|
3946
|
+
/** @description The field must be greater than the provided value. */
|
|
3947
|
+
$gt?: string | null;
|
|
3948
|
+
/** @description The field must be greater than or equal to the provided value. */
|
|
3949
|
+
$gte?: string | null;
|
|
3950
|
+
/** @description The field must be less than the provided value. */
|
|
3951
|
+
$lt?: string | null;
|
|
3952
|
+
/** @description The field must be less than or equal to the provided value. */
|
|
3953
|
+
$lte?: string | null;
|
|
3954
|
+
/** @description Provide a list of filters to be combined with a logical AND. */
|
|
3955
|
+
$and?: components['schemas']['FilterString'][] | null;
|
|
3956
|
+
/** @description Provide a list of filters to be combined with a logical OR. */
|
|
3957
|
+
$or?: components['schemas']['FilterString'][] | null;
|
|
3958
|
+
};
|
|
3959
|
+
/** @description A filter for a time field. */
|
|
3960
|
+
FilterTime: {
|
|
3961
|
+
/**
|
|
3962
|
+
* Format: date-time
|
|
3963
|
+
* @description The field must be greater than the provided value.
|
|
3964
|
+
*/
|
|
3965
|
+
$gt?: Date | null;
|
|
3966
|
+
/**
|
|
3967
|
+
* Format: date-time
|
|
3968
|
+
* @description The field must be greater than or equal to the provided value.
|
|
3969
|
+
*/
|
|
3970
|
+
$gte?: Date | null;
|
|
3971
|
+
/**
|
|
3972
|
+
* Format: date-time
|
|
3973
|
+
* @description The field must be less than the provided value.
|
|
3974
|
+
*/
|
|
3975
|
+
$lt?: Date | null;
|
|
3976
|
+
/**
|
|
3977
|
+
* Format: date-time
|
|
3978
|
+
* @description The field must be less than or equal to the provided value.
|
|
3979
|
+
*/
|
|
3980
|
+
$lte?: Date | null;
|
|
3981
|
+
/** @description Provide a list of filters to be combined with a logical AND. */
|
|
3982
|
+
$and?: components['schemas']['FilterTime'][] | null;
|
|
3983
|
+
/** @description Provide a list of filters to be combined with a logical OR. */
|
|
3984
|
+
$or?: components['schemas']['FilterTime'][] | null;
|
|
3985
|
+
};
|
|
3865
3986
|
/** @description Flat price. */
|
|
3866
3987
|
FlatPrice: {
|
|
3867
3988
|
/**
|
|
@@ -3951,17 +4072,17 @@ export interface components {
|
|
|
3951
4072
|
/** @description Paginated response */
|
|
3952
4073
|
GrantPaginatedResponse: {
|
|
3953
4074
|
/**
|
|
3954
|
-
* @description The
|
|
4075
|
+
* @description The total number of items.
|
|
3955
4076
|
* @example 500
|
|
3956
4077
|
*/
|
|
3957
4078
|
totalCount: number;
|
|
3958
4079
|
/**
|
|
3959
|
-
* @description The
|
|
4080
|
+
* @description The page index.
|
|
3960
4081
|
* @example 1
|
|
3961
4082
|
*/
|
|
3962
4083
|
page: number;
|
|
3963
4084
|
/**
|
|
3964
|
-
* @description The
|
|
4085
|
+
* @description The maximum number of items per page.
|
|
3965
4086
|
* @example 100
|
|
3966
4087
|
*/
|
|
3967
4088
|
pageSize: number;
|
|
@@ -4027,6 +4148,13 @@ export interface components {
|
|
|
4027
4148
|
*/
|
|
4028
4149
|
storedAt: Date;
|
|
4029
4150
|
};
|
|
4151
|
+
/** @description A response for cursor pagination. */
|
|
4152
|
+
IngestedEventCursorPaginatedResponse: {
|
|
4153
|
+
/** @description The items in the response. */
|
|
4154
|
+
items: components['schemas']['IngestedEvent'][];
|
|
4155
|
+
/** @description The cursor of the last item in the list. */
|
|
4156
|
+
nextCursor?: string;
|
|
4157
|
+
};
|
|
4030
4158
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
4031
4159
|
InternalServerErrorProblemResponse: components['schemas']['UnexpectedProblemResponse'];
|
|
4032
4160
|
/** @description Invoice represents an invoice in the system. */
|
|
@@ -4556,17 +4684,17 @@ export interface components {
|
|
|
4556
4684
|
/** @description Paginated response */
|
|
4557
4685
|
InvoicePaginatedResponse: {
|
|
4558
4686
|
/**
|
|
4559
|
-
* @description The
|
|
4687
|
+
* @description The total number of items.
|
|
4560
4688
|
* @example 500
|
|
4561
4689
|
*/
|
|
4562
4690
|
totalCount: number;
|
|
4563
4691
|
/**
|
|
4564
|
-
* @description The
|
|
4692
|
+
* @description The page index.
|
|
4565
4693
|
* @example 1
|
|
4566
4694
|
*/
|
|
4567
4695
|
page: number;
|
|
4568
4696
|
/**
|
|
4569
|
-
* @description The
|
|
4697
|
+
* @description The maximum number of items per page.
|
|
4570
4698
|
* @example 100
|
|
4571
4699
|
*/
|
|
4572
4700
|
pageSize: number;
|
|
@@ -5018,14 +5146,14 @@ export interface components {
|
|
|
5018
5146
|
/**
|
|
5019
5147
|
* Format: ISO8601
|
|
5020
5148
|
* @description The period for the invoice to be kept in draft status for manual reviews.
|
|
5021
|
-
* @default
|
|
5149
|
+
* @default P0D
|
|
5022
5150
|
* @example P1D
|
|
5023
5151
|
*/
|
|
5024
5152
|
draftPeriod?: string;
|
|
5025
5153
|
/**
|
|
5026
5154
|
* Format: ISO8601
|
|
5027
5155
|
* @description The period after which the invoice is due.
|
|
5028
|
-
* @default
|
|
5156
|
+
* @default P1W
|
|
5029
5157
|
* @example P1D
|
|
5030
5158
|
*/
|
|
5031
5159
|
dueAfter?: string;
|
|
@@ -5118,15 +5246,24 @@ export interface components {
|
|
|
5118
5246
|
/** @description The app's capabilities. */
|
|
5119
5247
|
capabilities: components['schemas']['AppCapability'][];
|
|
5120
5248
|
};
|
|
5121
|
-
/** @description
|
|
5122
|
-
|
|
5123
|
-
/**
|
|
5249
|
+
/** @description Paginated response */
|
|
5250
|
+
MarketplaceListingPaginatedResponse: {
|
|
5251
|
+
/**
|
|
5252
|
+
* @description The total number of items.
|
|
5253
|
+
* @example 500
|
|
5254
|
+
*/
|
|
5255
|
+
totalCount: number;
|
|
5256
|
+
/**
|
|
5257
|
+
* @description The page index.
|
|
5258
|
+
* @example 1
|
|
5259
|
+
*/
|
|
5124
5260
|
page: number;
|
|
5125
|
-
/**
|
|
5261
|
+
/**
|
|
5262
|
+
* @description The maximum number of items per page.
|
|
5263
|
+
* @example 100
|
|
5264
|
+
*/
|
|
5126
5265
|
pageSize: number;
|
|
5127
|
-
/** @description The
|
|
5128
|
-
totalCount: number;
|
|
5129
|
-
/** @description The items in the page. */
|
|
5266
|
+
/** @description The items in the current page. */
|
|
5130
5267
|
items: components['schemas']['MarketplaceListing'][];
|
|
5131
5268
|
};
|
|
5132
5269
|
/** @description Measure usage from */
|
|
@@ -5501,17 +5638,17 @@ export interface components {
|
|
|
5501
5638
|
/** @description Paginated response */
|
|
5502
5639
|
NotificationChannelPaginatedResponse: {
|
|
5503
5640
|
/**
|
|
5504
|
-
* @description The
|
|
5641
|
+
* @description The total number of items.
|
|
5505
5642
|
* @example 500
|
|
5506
5643
|
*/
|
|
5507
5644
|
totalCount: number;
|
|
5508
5645
|
/**
|
|
5509
|
-
* @description The
|
|
5646
|
+
* @description The page index.
|
|
5510
5647
|
* @example 1
|
|
5511
5648
|
*/
|
|
5512
5649
|
page: number;
|
|
5513
5650
|
/**
|
|
5514
|
-
* @description The
|
|
5651
|
+
* @description The maximum number of items per page.
|
|
5515
5652
|
* @example 100
|
|
5516
5653
|
*/
|
|
5517
5654
|
pageSize: number;
|
|
@@ -5751,17 +5888,17 @@ export interface components {
|
|
|
5751
5888
|
/** @description Paginated response */
|
|
5752
5889
|
NotificationEventPaginatedResponse: {
|
|
5753
5890
|
/**
|
|
5754
|
-
* @description The
|
|
5891
|
+
* @description The total number of items.
|
|
5755
5892
|
* @example 500
|
|
5756
5893
|
*/
|
|
5757
5894
|
totalCount: number;
|
|
5758
5895
|
/**
|
|
5759
|
-
* @description The
|
|
5896
|
+
* @description The page index.
|
|
5760
5897
|
* @example 1
|
|
5761
5898
|
*/
|
|
5762
5899
|
page: number;
|
|
5763
5900
|
/**
|
|
5764
|
-
* @description The
|
|
5901
|
+
* @description The maximum number of items per page.
|
|
5765
5902
|
* @example 100
|
|
5766
5903
|
*/
|
|
5767
5904
|
pageSize: number;
|
|
@@ -5909,17 +6046,17 @@ export interface components {
|
|
|
5909
6046
|
/** @description Paginated response */
|
|
5910
6047
|
NotificationRulePaginatedResponse: {
|
|
5911
6048
|
/**
|
|
5912
|
-
* @description The
|
|
6049
|
+
* @description The total number of items.
|
|
5913
6050
|
* @example 500
|
|
5914
6051
|
*/
|
|
5915
6052
|
totalCount: number;
|
|
5916
6053
|
/**
|
|
5917
|
-
* @description The
|
|
6054
|
+
* @description The page index.
|
|
5918
6055
|
* @example 1
|
|
5919
6056
|
*/
|
|
5920
6057
|
page: number;
|
|
5921
6058
|
/**
|
|
5922
|
-
* @description The
|
|
6059
|
+
* @description The maximum number of items per page.
|
|
5923
6060
|
* @example 100
|
|
5924
6061
|
*/
|
|
5925
6062
|
pageSize: number;
|
|
@@ -5978,8 +6115,14 @@ export interface components {
|
|
|
5978
6115
|
};
|
|
5979
6116
|
/** @description PaymentTerms defines the terms for payment. */
|
|
5980
6117
|
PaymentTerms: components['schemas']['PaymentTermInstant'] | components['schemas']['PaymentTermDueDate'];
|
|
5981
|
-
/**
|
|
5982
|
-
|
|
6118
|
+
/**
|
|
6119
|
+
* Format: double
|
|
6120
|
+
* @description Numeric representation of a percentage
|
|
6121
|
+
*
|
|
6122
|
+
* 50% is represented as 50
|
|
6123
|
+
* @example 50
|
|
6124
|
+
*/
|
|
6125
|
+
Percentage: number;
|
|
5983
6126
|
/** @description A period with a start and end time. */
|
|
5984
6127
|
Period: {
|
|
5985
6128
|
/**
|
|
@@ -6134,17 +6277,17 @@ export interface components {
|
|
|
6134
6277
|
/** @description Paginated response */
|
|
6135
6278
|
PlanPaginatedResponse: {
|
|
6136
6279
|
/**
|
|
6137
|
-
* @description The
|
|
6280
|
+
* @description The total number of items.
|
|
6138
6281
|
* @example 500
|
|
6139
6282
|
*/
|
|
6140
6283
|
totalCount: number;
|
|
6141
6284
|
/**
|
|
6142
|
-
* @description The
|
|
6285
|
+
* @description The page index.
|
|
6143
6286
|
* @example 1
|
|
6144
6287
|
*/
|
|
6145
6288
|
page: number;
|
|
6146
6289
|
/**
|
|
6147
|
-
* @description The
|
|
6290
|
+
* @description The maximum number of items per page.
|
|
6148
6291
|
* @example 100
|
|
6149
6292
|
*/
|
|
6150
6293
|
pageSize: number;
|
|
@@ -7268,13 +7411,9 @@ export interface components {
|
|
|
7268
7411
|
* Price
|
|
7269
7412
|
* @description The price of the rate card.
|
|
7270
7413
|
* When null, the feature or service is free.
|
|
7271
|
-
* @example {
|
|
7272
|
-
* "type": "flat",
|
|
7273
|
-
* "amount": "100",
|
|
7274
|
-
* "paymentTerm": "in_arrears"
|
|
7275
|
-
* }
|
|
7414
|
+
* @example {}
|
|
7276
7415
|
*/
|
|
7277
|
-
price:
|
|
7416
|
+
price: components['schemas']['RateCardUsageBasedPrice'] | null;
|
|
7278
7417
|
/** @description Describes what access is gained via the SubscriptionItem */
|
|
7279
7418
|
included?: components['schemas']['SubscriptionItemIncluded'];
|
|
7280
7419
|
/**
|
|
@@ -7294,17 +7433,17 @@ export interface components {
|
|
|
7294
7433
|
/** @description Paginated response */
|
|
7295
7434
|
SubscriptionPaginatedResponse: {
|
|
7296
7435
|
/**
|
|
7297
|
-
* @description The
|
|
7436
|
+
* @description The total number of items.
|
|
7298
7437
|
* @example 500
|
|
7299
7438
|
*/
|
|
7300
7439
|
totalCount: number;
|
|
7301
7440
|
/**
|
|
7302
|
-
* @description The
|
|
7441
|
+
* @description The page index.
|
|
7303
7442
|
* @example 1
|
|
7304
7443
|
*/
|
|
7305
7444
|
page: number;
|
|
7306
7445
|
/**
|
|
7307
|
-
* @description The
|
|
7446
|
+
* @description The maximum number of items per page.
|
|
7308
7447
|
* @example 100
|
|
7309
7448
|
*/
|
|
7310
7449
|
pageSize: number;
|
|
@@ -7419,7 +7558,7 @@ export interface components {
|
|
|
7419
7558
|
* @description Subscription status.
|
|
7420
7559
|
* @enum {string}
|
|
7421
7560
|
*/
|
|
7422
|
-
SubscriptionStatus: 'active' | 'inactive' | 'canceled';
|
|
7561
|
+
SubscriptionStatus: 'active' | 'inactive' | 'canceled' | 'scheduled';
|
|
7423
7562
|
/** @description Subscription edit timing defined when the changes should take effect.
|
|
7424
7563
|
* If the provided configuration is not supported by the subscription, an error will be returned. */
|
|
7425
7564
|
SubscriptionTiming: components['schemas']['SubscriptionTimingEnum'] | Date;
|
|
@@ -7747,6 +7886,10 @@ export interface components {
|
|
|
7747
7886
|
'BillingProfileOrderByOrdering.order': components['schemas']['SortOrder'];
|
|
7748
7887
|
/** @description The order by field. */
|
|
7749
7888
|
'BillingProfileOrderByOrdering.orderBy': components['schemas']['BillingProfileOrderBy'];
|
|
7889
|
+
/** @description The cursor after which to start the pagination. */
|
|
7890
|
+
'CursorPagination.cursor': string;
|
|
7891
|
+
/** @description The limit of the pagination. */
|
|
7892
|
+
'CursorPagination.limit': number;
|
|
7750
7893
|
/** @description The order direction. */
|
|
7751
7894
|
'CustomerOrderByOrdering.order': components['schemas']['SortOrder'];
|
|
7752
7895
|
/** @description The order by field. */
|
|
@@ -7849,15 +7992,11 @@ export interface components {
|
|
|
7849
7992
|
* Unique, randomly generated, opaque, and non-guessable string that is sent
|
|
7850
7993
|
* when starting an authentication request and validated when processing the response. */
|
|
7851
7994
|
'OAuth2AuthorizationCodeGrantSuccessParams.state': string;
|
|
7852
|
-
/** @description
|
|
7853
|
-
'PaginatedQuery.page': number;
|
|
7854
|
-
/** @description The number of items in the page. */
|
|
7855
|
-
'PaginatedQuery.pageSize': number;
|
|
7856
|
-
/** @description Start date-time in RFC 3339 format.
|
|
7995
|
+
/** @description Page index.
|
|
7857
7996
|
*
|
|
7858
|
-
*
|
|
7997
|
+
* Default is 1. */
|
|
7859
7998
|
'Pagination.page': number;
|
|
7860
|
-
/** @description
|
|
7999
|
+
/** @description The maximum number of items per page.
|
|
7861
8000
|
*
|
|
7862
8001
|
* Default is 100. */
|
|
7863
8002
|
'Pagination.pageSize': number;
|
|
@@ -7895,7 +8034,7 @@ export type App = components['schemas']['App'];
|
|
|
7895
8034
|
export type AppBaseReplaceUpdate = components['schemas']['AppBaseReplaceUpdate'];
|
|
7896
8035
|
export type AppCapability = components['schemas']['AppCapability'];
|
|
7897
8036
|
export type AppCapabilityType = components['schemas']['AppCapabilityType'];
|
|
7898
|
-
export type
|
|
8037
|
+
export type AppPaginatedResponse = components['schemas']['AppPaginatedResponse'];
|
|
7899
8038
|
export type AppReference = components['schemas']['AppReference'];
|
|
7900
8039
|
export type AppStatus = components['schemas']['AppStatus'];
|
|
7901
8040
|
export type AppType = components['schemas']['AppType'];
|
|
@@ -7997,6 +8136,8 @@ export type FeatureCreateInputs = components['schemas']['FeatureCreateInputs'];
|
|
|
7997
8136
|
export type FeatureMeta = components['schemas']['FeatureMeta'];
|
|
7998
8137
|
export type FeatureOrderBy = components['schemas']['FeatureOrderBy'];
|
|
7999
8138
|
export type FeaturePaginatedResponse = components['schemas']['FeaturePaginatedResponse'];
|
|
8139
|
+
export type FilterString = components['schemas']['FilterString'];
|
|
8140
|
+
export type FilterTime = components['schemas']['FilterTime'];
|
|
8000
8141
|
export type FlatPrice = components['schemas']['FlatPrice'];
|
|
8001
8142
|
export type FlatPriceWithPaymentTerm = components['schemas']['FlatPriceWithPaymentTerm'];
|
|
8002
8143
|
export type ForbiddenProblemResponse = components['schemas']['ForbiddenProblemResponse'];
|
|
@@ -8008,6 +8149,7 @@ export type GrantUsageRecord = components['schemas']['GrantUsageRecord'];
|
|
|
8008
8149
|
export type IdResource = components['schemas']['IDResource'];
|
|
8009
8150
|
export type IngestEventsBody = components['schemas']['IngestEventsBody'];
|
|
8010
8151
|
export type IngestedEvent = components['schemas']['IngestedEvent'];
|
|
8152
|
+
export type IngestedEventCursorPaginatedResponse = components['schemas']['IngestedEventCursorPaginatedResponse'];
|
|
8011
8153
|
export type InternalServerErrorProblemResponse = components['schemas']['InternalServerErrorProblemResponse'];
|
|
8012
8154
|
export type Invoice = components['schemas']['Invoice'];
|
|
8013
8155
|
export type InvoiceAppExternalIds = components['schemas']['InvoiceAppExternalIds'];
|
|
@@ -8059,7 +8201,7 @@ export type ListEntitlementsResult = components['schemas']['ListEntitlementsResu
|
|
|
8059
8201
|
export type ListFeaturesResult = components['schemas']['ListFeaturesResult'];
|
|
8060
8202
|
export type MarketplaceInstallResponse = components['schemas']['MarketplaceInstallResponse'];
|
|
8061
8203
|
export type MarketplaceListing = components['schemas']['MarketplaceListing'];
|
|
8062
|
-
export type
|
|
8204
|
+
export type MarketplaceListingPaginatedResponse = components['schemas']['MarketplaceListingPaginatedResponse'];
|
|
8063
8205
|
export type MeasureUsageFrom = components['schemas']['MeasureUsageFrom'];
|
|
8064
8206
|
export type MeasureUsageFromPreset = components['schemas']['MeasureUsageFromPreset'];
|
|
8065
8207
|
export type MeasureUsageFromTime = components['schemas']['MeasureUsageFromTime'];
|
|
@@ -8197,6 +8339,8 @@ export type ParameterBillingProfileListCustomerOverridesParamsExpand = component
|
|
|
8197
8339
|
export type ParameterBillingProfileListCustomerOverridesParamsIncludeAllCustomers = components['parameters']['BillingProfileListCustomerOverridesParams.includeAllCustomers'];
|
|
8198
8340
|
export type ParameterBillingProfileOrderByOrderingOrder = components['parameters']['BillingProfileOrderByOrdering.order'];
|
|
8199
8341
|
export type ParameterBillingProfileOrderByOrderingOrderBy = components['parameters']['BillingProfileOrderByOrdering.orderBy'];
|
|
8342
|
+
export type ParameterCursorPaginationCursor = components['parameters']['CursorPagination.cursor'];
|
|
8343
|
+
export type ParameterCursorPaginationLimit = components['parameters']['CursorPagination.limit'];
|
|
8200
8344
|
export type ParameterCustomerOrderByOrderingOrder = components['parameters']['CustomerOrderByOrdering.order'];
|
|
8201
8345
|
export type ParameterCustomerOrderByOrderingOrderBy = components['parameters']['CustomerOrderByOrdering.orderBy'];
|
|
8202
8346
|
export type ParameterEntitlementOrderByOrderingOrder = components['parameters']['EntitlementOrderByOrdering.order'];
|
|
@@ -8237,8 +8381,6 @@ export type ParameterOAuth2AuthorizationCodeGrantErrorParamsErrorDescription = c
|
|
|
8237
8381
|
export type ParameterOAuth2AuthorizationCodeGrantErrorParamsErrorUri = components['parameters']['OAuth2AuthorizationCodeGrantErrorParams.error_uri'];
|
|
8238
8382
|
export type ParameterOAuth2AuthorizationCodeGrantSuccessParamsCode = components['parameters']['OAuth2AuthorizationCodeGrantSuccessParams.code'];
|
|
8239
8383
|
export type ParameterOAuth2AuthorizationCodeGrantSuccessParamsState = components['parameters']['OAuth2AuthorizationCodeGrantSuccessParams.state'];
|
|
8240
|
-
export type ParameterPaginatedQueryPage = components['parameters']['PaginatedQuery.page'];
|
|
8241
|
-
export type ParameterPaginatedQueryPageSize = components['parameters']['PaginatedQuery.pageSize'];
|
|
8242
8384
|
export type ParameterPaginationPage = components['parameters']['Pagination.page'];
|
|
8243
8385
|
export type ParameterPaginationPageSize = components['parameters']['Pagination.pageSize'];
|
|
8244
8386
|
export type ParameterPlanOrderByOrderingOrder = components['parameters']['PlanOrderByOrdering.order'];
|
|
@@ -8255,10 +8397,14 @@ export interface operations {
|
|
|
8255
8397
|
listApps: {
|
|
8256
8398
|
parameters: {
|
|
8257
8399
|
query?: {
|
|
8258
|
-
/** @description
|
|
8259
|
-
|
|
8260
|
-
|
|
8261
|
-
|
|
8400
|
+
/** @description Page index.
|
|
8401
|
+
*
|
|
8402
|
+
* Default is 1. */
|
|
8403
|
+
page?: components['parameters']['Pagination.page'];
|
|
8404
|
+
/** @description The maximum number of items per page.
|
|
8405
|
+
*
|
|
8406
|
+
* Default is 100. */
|
|
8407
|
+
pageSize?: components['parameters']['Pagination.pageSize'];
|
|
8262
8408
|
};
|
|
8263
8409
|
header?: never;
|
|
8264
8410
|
path?: never;
|
|
@@ -8272,7 +8418,7 @@ export interface operations {
|
|
|
8272
8418
|
[name: string]: unknown;
|
|
8273
8419
|
};
|
|
8274
8420
|
content: {
|
|
8275
|
-
'application/json': components['schemas']['
|
|
8421
|
+
'application/json': components['schemas']['AppPaginatedResponse'];
|
|
8276
8422
|
};
|
|
8277
8423
|
};
|
|
8278
8424
|
/** @description The server cannot or will not process the request due to something that is perceived to be a client error (e.g., malformed request syntax, invalid request message framing, or deceptive request routing). */
|
|
@@ -8302,6 +8448,15 @@ export interface operations {
|
|
|
8302
8448
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
8303
8449
|
};
|
|
8304
8450
|
};
|
|
8451
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
8452
|
+
412: {
|
|
8453
|
+
headers: {
|
|
8454
|
+
[name: string]: unknown;
|
|
8455
|
+
};
|
|
8456
|
+
content: {
|
|
8457
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
8458
|
+
};
|
|
8459
|
+
};
|
|
8305
8460
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
8306
8461
|
500: {
|
|
8307
8462
|
headers: {
|
|
@@ -8387,6 +8542,15 @@ export interface operations {
|
|
|
8387
8542
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
8388
8543
|
};
|
|
8389
8544
|
};
|
|
8545
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
8546
|
+
412: {
|
|
8547
|
+
headers: {
|
|
8548
|
+
[name: string]: unknown;
|
|
8549
|
+
};
|
|
8550
|
+
content: {
|
|
8551
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
8552
|
+
};
|
|
8553
|
+
};
|
|
8390
8554
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
8391
8555
|
500: {
|
|
8392
8556
|
headers: {
|
|
@@ -8476,6 +8640,15 @@ export interface operations {
|
|
|
8476
8640
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
8477
8641
|
};
|
|
8478
8642
|
};
|
|
8643
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
8644
|
+
412: {
|
|
8645
|
+
headers: {
|
|
8646
|
+
[name: string]: unknown;
|
|
8647
|
+
};
|
|
8648
|
+
content: {
|
|
8649
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
8650
|
+
};
|
|
8651
|
+
};
|
|
8479
8652
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
8480
8653
|
500: {
|
|
8481
8654
|
headers: {
|
|
@@ -8559,6 +8732,15 @@ export interface operations {
|
|
|
8559
8732
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
8560
8733
|
};
|
|
8561
8734
|
};
|
|
8735
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
8736
|
+
412: {
|
|
8737
|
+
headers: {
|
|
8738
|
+
[name: string]: unknown;
|
|
8739
|
+
};
|
|
8740
|
+
content: {
|
|
8741
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
8742
|
+
};
|
|
8743
|
+
};
|
|
8562
8744
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
8563
8745
|
500: {
|
|
8564
8746
|
headers: {
|
|
@@ -8637,6 +8819,15 @@ export interface operations {
|
|
|
8637
8819
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
8638
8820
|
};
|
|
8639
8821
|
};
|
|
8822
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
8823
|
+
412: {
|
|
8824
|
+
headers: {
|
|
8825
|
+
[name: string]: unknown;
|
|
8826
|
+
};
|
|
8827
|
+
content: {
|
|
8828
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
8829
|
+
};
|
|
8830
|
+
};
|
|
8640
8831
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
8641
8832
|
500: {
|
|
8642
8833
|
headers: {
|
|
@@ -8726,6 +8917,15 @@ export interface operations {
|
|
|
8726
8917
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
8727
8918
|
};
|
|
8728
8919
|
};
|
|
8920
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
8921
|
+
412: {
|
|
8922
|
+
headers: {
|
|
8923
|
+
[name: string]: unknown;
|
|
8924
|
+
};
|
|
8925
|
+
content: {
|
|
8926
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
8927
|
+
};
|
|
8928
|
+
};
|
|
8729
8929
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
8730
8930
|
500: {
|
|
8731
8931
|
headers: {
|
|
@@ -8780,11 +8980,11 @@ export interface operations {
|
|
|
8780
8980
|
order?: components['parameters']['BillingProfileCustomerOverrideOrderByOrdering.order'];
|
|
8781
8981
|
/** @description The order by field. */
|
|
8782
8982
|
orderBy?: components['parameters']['BillingProfileCustomerOverrideOrderByOrdering.orderBy'];
|
|
8783
|
-
/** @description
|
|
8983
|
+
/** @description Page index.
|
|
8784
8984
|
*
|
|
8785
|
-
*
|
|
8985
|
+
* Default is 1. */
|
|
8786
8986
|
page?: components['parameters']['Pagination.page'];
|
|
8787
|
-
/** @description
|
|
8987
|
+
/** @description The maximum number of items per page.
|
|
8788
8988
|
*
|
|
8789
8989
|
* Default is 100. */
|
|
8790
8990
|
pageSize?: components['parameters']['Pagination.pageSize'];
|
|
@@ -8831,6 +9031,15 @@ export interface operations {
|
|
|
8831
9031
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
8832
9032
|
};
|
|
8833
9033
|
};
|
|
9034
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
9035
|
+
412: {
|
|
9036
|
+
headers: {
|
|
9037
|
+
[name: string]: unknown;
|
|
9038
|
+
};
|
|
9039
|
+
content: {
|
|
9040
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
9041
|
+
};
|
|
9042
|
+
};
|
|
8834
9043
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
8835
9044
|
500: {
|
|
8836
9045
|
headers: {
|
|
@@ -8918,6 +9127,15 @@ export interface operations {
|
|
|
8918
9127
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
8919
9128
|
};
|
|
8920
9129
|
};
|
|
9130
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
9131
|
+
412: {
|
|
9132
|
+
headers: {
|
|
9133
|
+
[name: string]: unknown;
|
|
9134
|
+
};
|
|
9135
|
+
content: {
|
|
9136
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
9137
|
+
};
|
|
9138
|
+
};
|
|
8921
9139
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
8922
9140
|
500: {
|
|
8923
9141
|
headers: {
|
|
@@ -9007,6 +9225,15 @@ export interface operations {
|
|
|
9007
9225
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
9008
9226
|
};
|
|
9009
9227
|
};
|
|
9228
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
9229
|
+
412: {
|
|
9230
|
+
headers: {
|
|
9231
|
+
[name: string]: unknown;
|
|
9232
|
+
};
|
|
9233
|
+
content: {
|
|
9234
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
9235
|
+
};
|
|
9236
|
+
};
|
|
9010
9237
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
9011
9238
|
500: {
|
|
9012
9239
|
headers: {
|
|
@@ -9090,6 +9317,15 @@ export interface operations {
|
|
|
9090
9317
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
9091
9318
|
};
|
|
9092
9319
|
};
|
|
9320
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
9321
|
+
412: {
|
|
9322
|
+
headers: {
|
|
9323
|
+
[name: string]: unknown;
|
|
9324
|
+
};
|
|
9325
|
+
content: {
|
|
9326
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
9327
|
+
};
|
|
9328
|
+
};
|
|
9093
9329
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
9094
9330
|
500: {
|
|
9095
9331
|
headers: {
|
|
@@ -9170,6 +9406,15 @@ export interface operations {
|
|
|
9170
9406
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
9171
9407
|
};
|
|
9172
9408
|
};
|
|
9409
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
9410
|
+
412: {
|
|
9411
|
+
headers: {
|
|
9412
|
+
[name: string]: unknown;
|
|
9413
|
+
};
|
|
9414
|
+
content: {
|
|
9415
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
9416
|
+
};
|
|
9417
|
+
};
|
|
9173
9418
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
9174
9419
|
500: {
|
|
9175
9420
|
headers: {
|
|
@@ -9216,11 +9461,11 @@ export interface operations {
|
|
|
9216
9461
|
customers?: components['parameters']['InvoiceListParams.customers'];
|
|
9217
9462
|
/** @description Include deleted invoices */
|
|
9218
9463
|
includeDeleted?: components['parameters']['InvoiceListParams.includeDeleted'];
|
|
9219
|
-
/** @description
|
|
9464
|
+
/** @description Page index.
|
|
9220
9465
|
*
|
|
9221
|
-
*
|
|
9466
|
+
* Default is 1. */
|
|
9222
9467
|
page?: components['parameters']['Pagination.page'];
|
|
9223
|
-
/** @description
|
|
9468
|
+
/** @description The maximum number of items per page.
|
|
9224
9469
|
*
|
|
9225
9470
|
* Default is 100. */
|
|
9226
9471
|
pageSize?: components['parameters']['Pagination.pageSize'];
|
|
@@ -9271,6 +9516,15 @@ export interface operations {
|
|
|
9271
9516
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
9272
9517
|
};
|
|
9273
9518
|
};
|
|
9519
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
9520
|
+
412: {
|
|
9521
|
+
headers: {
|
|
9522
|
+
[name: string]: unknown;
|
|
9523
|
+
};
|
|
9524
|
+
content: {
|
|
9525
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
9526
|
+
};
|
|
9527
|
+
};
|
|
9274
9528
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
9275
9529
|
500: {
|
|
9276
9530
|
headers: {
|
|
@@ -9349,6 +9603,15 @@ export interface operations {
|
|
|
9349
9603
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
9350
9604
|
};
|
|
9351
9605
|
};
|
|
9606
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
9607
|
+
412: {
|
|
9608
|
+
headers: {
|
|
9609
|
+
[name: string]: unknown;
|
|
9610
|
+
};
|
|
9611
|
+
content: {
|
|
9612
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
9613
|
+
};
|
|
9614
|
+
};
|
|
9352
9615
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
9353
9616
|
500: {
|
|
9354
9617
|
headers: {
|
|
@@ -9427,6 +9690,15 @@ export interface operations {
|
|
|
9427
9690
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
9428
9691
|
};
|
|
9429
9692
|
};
|
|
9693
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
9694
|
+
412: {
|
|
9695
|
+
headers: {
|
|
9696
|
+
[name: string]: unknown;
|
|
9697
|
+
};
|
|
9698
|
+
content: {
|
|
9699
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
9700
|
+
};
|
|
9701
|
+
};
|
|
9430
9702
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
9431
9703
|
500: {
|
|
9432
9704
|
headers: {
|
|
@@ -9515,6 +9787,15 @@ export interface operations {
|
|
|
9515
9787
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
9516
9788
|
};
|
|
9517
9789
|
};
|
|
9790
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
9791
|
+
412: {
|
|
9792
|
+
headers: {
|
|
9793
|
+
[name: string]: unknown;
|
|
9794
|
+
};
|
|
9795
|
+
content: {
|
|
9796
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
9797
|
+
};
|
|
9798
|
+
};
|
|
9518
9799
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
9519
9800
|
500: {
|
|
9520
9801
|
headers: {
|
|
@@ -9604,6 +9885,15 @@ export interface operations {
|
|
|
9604
9885
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
9605
9886
|
};
|
|
9606
9887
|
};
|
|
9888
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
9889
|
+
412: {
|
|
9890
|
+
headers: {
|
|
9891
|
+
[name: string]: unknown;
|
|
9892
|
+
};
|
|
9893
|
+
content: {
|
|
9894
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
9895
|
+
};
|
|
9896
|
+
};
|
|
9607
9897
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
9608
9898
|
500: {
|
|
9609
9899
|
headers: {
|
|
@@ -9687,6 +9977,15 @@ export interface operations {
|
|
|
9687
9977
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
9688
9978
|
};
|
|
9689
9979
|
};
|
|
9980
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
9981
|
+
412: {
|
|
9982
|
+
headers: {
|
|
9983
|
+
[name: string]: unknown;
|
|
9984
|
+
};
|
|
9985
|
+
content: {
|
|
9986
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
9987
|
+
};
|
|
9988
|
+
};
|
|
9690
9989
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
9691
9990
|
500: {
|
|
9692
9991
|
headers: {
|
|
@@ -9772,6 +10071,15 @@ export interface operations {
|
|
|
9772
10071
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
9773
10072
|
};
|
|
9774
10073
|
};
|
|
10074
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
10075
|
+
412: {
|
|
10076
|
+
headers: {
|
|
10077
|
+
[name: string]: unknown;
|
|
10078
|
+
};
|
|
10079
|
+
content: {
|
|
10080
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
10081
|
+
};
|
|
10082
|
+
};
|
|
9775
10083
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
9776
10084
|
500: {
|
|
9777
10085
|
headers: {
|
|
@@ -9857,6 +10165,15 @@ export interface operations {
|
|
|
9857
10165
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
9858
10166
|
};
|
|
9859
10167
|
};
|
|
10168
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
10169
|
+
412: {
|
|
10170
|
+
headers: {
|
|
10171
|
+
[name: string]: unknown;
|
|
10172
|
+
};
|
|
10173
|
+
content: {
|
|
10174
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
10175
|
+
};
|
|
10176
|
+
};
|
|
9860
10177
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
9861
10178
|
500: {
|
|
9862
10179
|
headers: {
|
|
@@ -9942,6 +10259,15 @@ export interface operations {
|
|
|
9942
10259
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
9943
10260
|
};
|
|
9944
10261
|
};
|
|
10262
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
10263
|
+
412: {
|
|
10264
|
+
headers: {
|
|
10265
|
+
[name: string]: unknown;
|
|
10266
|
+
};
|
|
10267
|
+
content: {
|
|
10268
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
10269
|
+
};
|
|
10270
|
+
};
|
|
9945
10271
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
9946
10272
|
500: {
|
|
9947
10273
|
headers: {
|
|
@@ -10027,6 +10353,15 @@ export interface operations {
|
|
|
10027
10353
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
10028
10354
|
};
|
|
10029
10355
|
};
|
|
10356
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
10357
|
+
412: {
|
|
10358
|
+
headers: {
|
|
10359
|
+
[name: string]: unknown;
|
|
10360
|
+
};
|
|
10361
|
+
content: {
|
|
10362
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
10363
|
+
};
|
|
10364
|
+
};
|
|
10030
10365
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
10031
10366
|
500: {
|
|
10032
10367
|
headers: {
|
|
@@ -10116,6 +10451,15 @@ export interface operations {
|
|
|
10116
10451
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
10117
10452
|
};
|
|
10118
10453
|
};
|
|
10454
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
10455
|
+
412: {
|
|
10456
|
+
headers: {
|
|
10457
|
+
[name: string]: unknown;
|
|
10458
|
+
};
|
|
10459
|
+
content: {
|
|
10460
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
10461
|
+
};
|
|
10462
|
+
};
|
|
10119
10463
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
10120
10464
|
500: {
|
|
10121
10465
|
headers: {
|
|
@@ -10150,11 +10494,11 @@ export interface operations {
|
|
|
10150
10494
|
query?: {
|
|
10151
10495
|
includeArchived?: boolean;
|
|
10152
10496
|
expand?: components['schemas']['BillingProfileExpand'][];
|
|
10153
|
-
/** @description
|
|
10497
|
+
/** @description Page index.
|
|
10154
10498
|
*
|
|
10155
|
-
*
|
|
10499
|
+
* Default is 1. */
|
|
10156
10500
|
page?: components['parameters']['Pagination.page'];
|
|
10157
|
-
/** @description
|
|
10501
|
+
/** @description The maximum number of items per page.
|
|
10158
10502
|
*
|
|
10159
10503
|
* Default is 100. */
|
|
10160
10504
|
pageSize?: components['parameters']['Pagination.pageSize'];
|
|
@@ -10205,6 +10549,15 @@ export interface operations {
|
|
|
10205
10549
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
10206
10550
|
};
|
|
10207
10551
|
};
|
|
10552
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
10553
|
+
412: {
|
|
10554
|
+
headers: {
|
|
10555
|
+
[name: string]: unknown;
|
|
10556
|
+
};
|
|
10557
|
+
content: {
|
|
10558
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
10559
|
+
};
|
|
10560
|
+
};
|
|
10208
10561
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
10209
10562
|
500: {
|
|
10210
10563
|
headers: {
|
|
@@ -10283,6 +10636,15 @@ export interface operations {
|
|
|
10283
10636
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
10284
10637
|
};
|
|
10285
10638
|
};
|
|
10639
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
10640
|
+
412: {
|
|
10641
|
+
headers: {
|
|
10642
|
+
[name: string]: unknown;
|
|
10643
|
+
};
|
|
10644
|
+
content: {
|
|
10645
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
10646
|
+
};
|
|
10647
|
+
};
|
|
10286
10648
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
10287
10649
|
500: {
|
|
10288
10650
|
headers: {
|
|
@@ -10370,6 +10732,15 @@ export interface operations {
|
|
|
10370
10732
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
10371
10733
|
};
|
|
10372
10734
|
};
|
|
10735
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
10736
|
+
412: {
|
|
10737
|
+
headers: {
|
|
10738
|
+
[name: string]: unknown;
|
|
10739
|
+
};
|
|
10740
|
+
content: {
|
|
10741
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
10742
|
+
};
|
|
10743
|
+
};
|
|
10373
10744
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
10374
10745
|
500: {
|
|
10375
10746
|
headers: {
|
|
@@ -10459,6 +10830,15 @@ export interface operations {
|
|
|
10459
10830
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
10460
10831
|
};
|
|
10461
10832
|
};
|
|
10833
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
10834
|
+
412: {
|
|
10835
|
+
headers: {
|
|
10836
|
+
[name: string]: unknown;
|
|
10837
|
+
};
|
|
10838
|
+
content: {
|
|
10839
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
10840
|
+
};
|
|
10841
|
+
};
|
|
10462
10842
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
10463
10843
|
500: {
|
|
10464
10844
|
headers: {
|
|
@@ -10542,6 +10922,15 @@ export interface operations {
|
|
|
10542
10922
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
10543
10923
|
};
|
|
10544
10924
|
};
|
|
10925
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
10926
|
+
412: {
|
|
10927
|
+
headers: {
|
|
10928
|
+
[name: string]: unknown;
|
|
10929
|
+
};
|
|
10930
|
+
content: {
|
|
10931
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
10932
|
+
};
|
|
10933
|
+
};
|
|
10545
10934
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
10546
10935
|
500: {
|
|
10547
10936
|
headers: {
|
|
@@ -10574,10 +10963,14 @@ export interface operations {
|
|
|
10574
10963
|
listCustomers: {
|
|
10575
10964
|
parameters: {
|
|
10576
10965
|
query?: {
|
|
10577
|
-
/** @description
|
|
10578
|
-
|
|
10579
|
-
|
|
10580
|
-
|
|
10966
|
+
/** @description Page index.
|
|
10967
|
+
*
|
|
10968
|
+
* Default is 1. */
|
|
10969
|
+
page?: components['parameters']['Pagination.page'];
|
|
10970
|
+
/** @description The maximum number of items per page.
|
|
10971
|
+
*
|
|
10972
|
+
* Default is 100. */
|
|
10973
|
+
pageSize?: components['parameters']['Pagination.pageSize'];
|
|
10581
10974
|
/** @description The order direction. */
|
|
10582
10975
|
order?: components['parameters']['CustomerOrderByOrdering.order'];
|
|
10583
10976
|
/** @description The order by field. */
|
|
@@ -10641,6 +11034,15 @@ export interface operations {
|
|
|
10641
11034
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
10642
11035
|
};
|
|
10643
11036
|
};
|
|
11037
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
11038
|
+
412: {
|
|
11039
|
+
headers: {
|
|
11040
|
+
[name: string]: unknown;
|
|
11041
|
+
};
|
|
11042
|
+
content: {
|
|
11043
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
11044
|
+
};
|
|
11045
|
+
};
|
|
10644
11046
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
10645
11047
|
500: {
|
|
10646
11048
|
headers: {
|
|
@@ -10719,6 +11121,15 @@ export interface operations {
|
|
|
10719
11121
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
10720
11122
|
};
|
|
10721
11123
|
};
|
|
11124
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
11125
|
+
412: {
|
|
11126
|
+
headers: {
|
|
11127
|
+
[name: string]: unknown;
|
|
11128
|
+
};
|
|
11129
|
+
content: {
|
|
11130
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
11131
|
+
};
|
|
11132
|
+
};
|
|
10722
11133
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
10723
11134
|
500: {
|
|
10724
11135
|
headers: {
|
|
@@ -10751,10 +11162,14 @@ export interface operations {
|
|
|
10751
11162
|
listCustomerAppData: {
|
|
10752
11163
|
parameters: {
|
|
10753
11164
|
query?: {
|
|
10754
|
-
/** @description
|
|
10755
|
-
|
|
10756
|
-
|
|
10757
|
-
|
|
11165
|
+
/** @description Page index.
|
|
11166
|
+
*
|
|
11167
|
+
* Default is 1. */
|
|
11168
|
+
page?: components['parameters']['Pagination.page'];
|
|
11169
|
+
/** @description The maximum number of items per page.
|
|
11170
|
+
*
|
|
11171
|
+
* Default is 100. */
|
|
11172
|
+
pageSize?: components['parameters']['Pagination.pageSize'];
|
|
10758
11173
|
/** @description Filter customer data by app type. */
|
|
10759
11174
|
type?: components['parameters']['queryCustomerList.type'];
|
|
10760
11175
|
};
|
|
@@ -10811,6 +11226,15 @@ export interface operations {
|
|
|
10811
11226
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
10812
11227
|
};
|
|
10813
11228
|
};
|
|
11229
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
11230
|
+
412: {
|
|
11231
|
+
headers: {
|
|
11232
|
+
[name: string]: unknown;
|
|
11233
|
+
};
|
|
11234
|
+
content: {
|
|
11235
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
11236
|
+
};
|
|
11237
|
+
};
|
|
10814
11238
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
10815
11239
|
500: {
|
|
10816
11240
|
headers: {
|
|
@@ -10900,6 +11324,15 @@ export interface operations {
|
|
|
10900
11324
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
10901
11325
|
};
|
|
10902
11326
|
};
|
|
11327
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
11328
|
+
412: {
|
|
11329
|
+
headers: {
|
|
11330
|
+
[name: string]: unknown;
|
|
11331
|
+
};
|
|
11332
|
+
content: {
|
|
11333
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
11334
|
+
};
|
|
11335
|
+
};
|
|
10903
11336
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
10904
11337
|
500: {
|
|
10905
11338
|
headers: {
|
|
@@ -10984,6 +11417,15 @@ export interface operations {
|
|
|
10984
11417
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
10985
11418
|
};
|
|
10986
11419
|
};
|
|
11420
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
11421
|
+
412: {
|
|
11422
|
+
headers: {
|
|
11423
|
+
[name: string]: unknown;
|
|
11424
|
+
};
|
|
11425
|
+
content: {
|
|
11426
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
11427
|
+
};
|
|
11428
|
+
};
|
|
10987
11429
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
10988
11430
|
500: {
|
|
10989
11431
|
headers: {
|
|
@@ -11072,6 +11514,15 @@ export interface operations {
|
|
|
11072
11514
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
11073
11515
|
};
|
|
11074
11516
|
};
|
|
11517
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
11518
|
+
412: {
|
|
11519
|
+
headers: {
|
|
11520
|
+
[name: string]: unknown;
|
|
11521
|
+
};
|
|
11522
|
+
content: {
|
|
11523
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
11524
|
+
};
|
|
11525
|
+
};
|
|
11075
11526
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
11076
11527
|
500: {
|
|
11077
11528
|
headers: {
|
|
@@ -11104,10 +11555,14 @@ export interface operations {
|
|
|
11104
11555
|
listCustomerSubscriptions: {
|
|
11105
11556
|
parameters: {
|
|
11106
11557
|
query?: {
|
|
11107
|
-
/** @description
|
|
11108
|
-
|
|
11109
|
-
|
|
11110
|
-
|
|
11558
|
+
/** @description Page index.
|
|
11559
|
+
*
|
|
11560
|
+
* Default is 1. */
|
|
11561
|
+
page?: components['parameters']['Pagination.page'];
|
|
11562
|
+
/** @description The maximum number of items per page.
|
|
11563
|
+
*
|
|
11564
|
+
* Default is 100. */
|
|
11565
|
+
pageSize?: components['parameters']['Pagination.pageSize'];
|
|
11111
11566
|
};
|
|
11112
11567
|
header?: never;
|
|
11113
11568
|
path: {
|
|
@@ -11162,6 +11617,15 @@ export interface operations {
|
|
|
11162
11617
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
11163
11618
|
};
|
|
11164
11619
|
};
|
|
11620
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
11621
|
+
412: {
|
|
11622
|
+
headers: {
|
|
11623
|
+
[name: string]: unknown;
|
|
11624
|
+
};
|
|
11625
|
+
content: {
|
|
11626
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
11627
|
+
};
|
|
11628
|
+
};
|
|
11165
11629
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
11166
11630
|
500: {
|
|
11167
11631
|
headers: {
|
|
@@ -11247,6 +11711,15 @@ export interface operations {
|
|
|
11247
11711
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
11248
11712
|
};
|
|
11249
11713
|
};
|
|
11714
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
11715
|
+
412: {
|
|
11716
|
+
headers: {
|
|
11717
|
+
[name: string]: unknown;
|
|
11718
|
+
};
|
|
11719
|
+
content: {
|
|
11720
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
11721
|
+
};
|
|
11722
|
+
};
|
|
11250
11723
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
11251
11724
|
500: {
|
|
11252
11725
|
headers: {
|
|
@@ -11336,6 +11809,15 @@ export interface operations {
|
|
|
11336
11809
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
11337
11810
|
};
|
|
11338
11811
|
};
|
|
11812
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
11813
|
+
412: {
|
|
11814
|
+
headers: {
|
|
11815
|
+
[name: string]: unknown;
|
|
11816
|
+
};
|
|
11817
|
+
content: {
|
|
11818
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
11819
|
+
};
|
|
11820
|
+
};
|
|
11339
11821
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
11340
11822
|
500: {
|
|
11341
11823
|
headers: {
|
|
@@ -11419,6 +11901,15 @@ export interface operations {
|
|
|
11419
11901
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
11420
11902
|
};
|
|
11421
11903
|
};
|
|
11904
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
11905
|
+
412: {
|
|
11906
|
+
headers: {
|
|
11907
|
+
[name: string]: unknown;
|
|
11908
|
+
};
|
|
11909
|
+
content: {
|
|
11910
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
11911
|
+
};
|
|
11912
|
+
};
|
|
11422
11913
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
11423
11914
|
500: {
|
|
11424
11915
|
headers: {
|
|
@@ -11493,6 +11984,15 @@ export interface operations {
|
|
|
11493
11984
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
11494
11985
|
};
|
|
11495
11986
|
};
|
|
11987
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
11988
|
+
412: {
|
|
11989
|
+
headers: {
|
|
11990
|
+
[name: string]: unknown;
|
|
11991
|
+
};
|
|
11992
|
+
content: {
|
|
11993
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
11994
|
+
};
|
|
11995
|
+
};
|
|
11496
11996
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
11497
11997
|
500: {
|
|
11498
11998
|
headers: {
|
|
@@ -11539,11 +12039,11 @@ export interface operations {
|
|
|
11539
12039
|
entitlementType?: components['schemas']['EntitlementType'][];
|
|
11540
12040
|
/** @description Exclude inactive entitlements in the response (those scheduled for later or earlier) */
|
|
11541
12041
|
excludeInactive?: boolean;
|
|
11542
|
-
/** @description
|
|
12042
|
+
/** @description Page index.
|
|
11543
12043
|
*
|
|
11544
|
-
*
|
|
12044
|
+
* Default is 1. */
|
|
11545
12045
|
page?: components['parameters']['Pagination.page'];
|
|
11546
|
-
/** @description
|
|
12046
|
+
/** @description The maximum number of items per page.
|
|
11547
12047
|
*
|
|
11548
12048
|
* Default is 100. */
|
|
11549
12049
|
pageSize?: components['parameters']['Pagination.pageSize'];
|
|
@@ -11602,6 +12102,15 @@ export interface operations {
|
|
|
11602
12102
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
11603
12103
|
};
|
|
11604
12104
|
};
|
|
12105
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
12106
|
+
412: {
|
|
12107
|
+
headers: {
|
|
12108
|
+
[name: string]: unknown;
|
|
12109
|
+
};
|
|
12110
|
+
content: {
|
|
12111
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
12112
|
+
};
|
|
12113
|
+
};
|
|
11605
12114
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
11606
12115
|
500: {
|
|
11607
12116
|
headers: {
|
|
@@ -11687,6 +12196,15 @@ export interface operations {
|
|
|
11687
12196
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
11688
12197
|
};
|
|
11689
12198
|
};
|
|
12199
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
12200
|
+
412: {
|
|
12201
|
+
headers: {
|
|
12202
|
+
[name: string]: unknown;
|
|
12203
|
+
};
|
|
12204
|
+
content: {
|
|
12205
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
12206
|
+
};
|
|
12207
|
+
};
|
|
11690
12208
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
11691
12209
|
500: {
|
|
11692
12210
|
headers: {
|
|
@@ -11791,6 +12309,15 @@ export interface operations {
|
|
|
11791
12309
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
11792
12310
|
};
|
|
11793
12311
|
};
|
|
12312
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
12313
|
+
412: {
|
|
12314
|
+
headers: {
|
|
12315
|
+
[name: string]: unknown;
|
|
12316
|
+
};
|
|
12317
|
+
content: {
|
|
12318
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
12319
|
+
};
|
|
12320
|
+
};
|
|
11794
12321
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
11795
12322
|
500: {
|
|
11796
12323
|
headers: {
|
|
@@ -11869,6 +12396,15 @@ export interface operations {
|
|
|
11869
12396
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
11870
12397
|
};
|
|
11871
12398
|
};
|
|
12399
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
12400
|
+
412: {
|
|
12401
|
+
headers: {
|
|
12402
|
+
[name: string]: unknown;
|
|
12403
|
+
};
|
|
12404
|
+
content: {
|
|
12405
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
12406
|
+
};
|
|
12407
|
+
};
|
|
11872
12408
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
11873
12409
|
500: {
|
|
11874
12410
|
headers: {
|
|
@@ -11905,11 +12441,11 @@ export interface operations {
|
|
|
11905
12441
|
meterSlug?: string[];
|
|
11906
12442
|
/** @description Filter by meterGroupByFilters */
|
|
11907
12443
|
includeArchived?: boolean;
|
|
11908
|
-
/** @description
|
|
12444
|
+
/** @description Page index.
|
|
11909
12445
|
*
|
|
11910
|
-
*
|
|
12446
|
+
* Default is 1. */
|
|
11911
12447
|
page?: components['parameters']['Pagination.page'];
|
|
11912
|
-
/** @description
|
|
12448
|
+
/** @description The maximum number of items per page.
|
|
11913
12449
|
*
|
|
11914
12450
|
* Default is 100. */
|
|
11915
12451
|
pageSize?: components['parameters']['Pagination.pageSize'];
|
|
@@ -11968,6 +12504,15 @@ export interface operations {
|
|
|
11968
12504
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
11969
12505
|
};
|
|
11970
12506
|
};
|
|
12507
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
12508
|
+
412: {
|
|
12509
|
+
headers: {
|
|
12510
|
+
[name: string]: unknown;
|
|
12511
|
+
};
|
|
12512
|
+
content: {
|
|
12513
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
12514
|
+
};
|
|
12515
|
+
};
|
|
11971
12516
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
11972
12517
|
500: {
|
|
11973
12518
|
headers: {
|
|
@@ -12046,6 +12591,15 @@ export interface operations {
|
|
|
12046
12591
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
12047
12592
|
};
|
|
12048
12593
|
};
|
|
12594
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
12595
|
+
412: {
|
|
12596
|
+
headers: {
|
|
12597
|
+
[name: string]: unknown;
|
|
12598
|
+
};
|
|
12599
|
+
content: {
|
|
12600
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
12601
|
+
};
|
|
12602
|
+
};
|
|
12049
12603
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
12050
12604
|
500: {
|
|
12051
12605
|
headers: {
|
|
@@ -12131,6 +12685,15 @@ export interface operations {
|
|
|
12131
12685
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
12132
12686
|
};
|
|
12133
12687
|
};
|
|
12688
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
12689
|
+
412: {
|
|
12690
|
+
headers: {
|
|
12691
|
+
[name: string]: unknown;
|
|
12692
|
+
};
|
|
12693
|
+
content: {
|
|
12694
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
12695
|
+
};
|
|
12696
|
+
};
|
|
12134
12697
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
12135
12698
|
500: {
|
|
12136
12699
|
headers: {
|
|
@@ -12214,6 +12777,15 @@ export interface operations {
|
|
|
12214
12777
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
12215
12778
|
};
|
|
12216
12779
|
};
|
|
12780
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
12781
|
+
412: {
|
|
12782
|
+
headers: {
|
|
12783
|
+
[name: string]: unknown;
|
|
12784
|
+
};
|
|
12785
|
+
content: {
|
|
12786
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
12787
|
+
};
|
|
12788
|
+
};
|
|
12217
12789
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
12218
12790
|
500: {
|
|
12219
12791
|
headers: {
|
|
@@ -12256,11 +12828,11 @@ export interface operations {
|
|
|
12256
12828
|
subject?: string[];
|
|
12257
12829
|
/** @description Include deleted */
|
|
12258
12830
|
includeDeleted?: boolean;
|
|
12259
|
-
/** @description
|
|
12831
|
+
/** @description Page index.
|
|
12260
12832
|
*
|
|
12261
|
-
*
|
|
12833
|
+
* Default is 1. */
|
|
12262
12834
|
page?: components['parameters']['Pagination.page'];
|
|
12263
|
-
/** @description
|
|
12835
|
+
/** @description The maximum number of items per page.
|
|
12264
12836
|
*
|
|
12265
12837
|
* Default is 100. */
|
|
12266
12838
|
pageSize?: components['parameters']['Pagination.pageSize'];
|
|
@@ -12319,6 +12891,15 @@ export interface operations {
|
|
|
12319
12891
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
12320
12892
|
};
|
|
12321
12893
|
};
|
|
12894
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
12895
|
+
412: {
|
|
12896
|
+
headers: {
|
|
12897
|
+
[name: string]: unknown;
|
|
12898
|
+
};
|
|
12899
|
+
content: {
|
|
12900
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
12901
|
+
};
|
|
12902
|
+
};
|
|
12322
12903
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
12323
12904
|
500: {
|
|
12324
12905
|
headers: {
|
|
@@ -12411,6 +12992,15 @@ export interface operations {
|
|
|
12411
12992
|
'application/problem+json': components['schemas']['ConflictProblemResponse'];
|
|
12412
12993
|
};
|
|
12413
12994
|
};
|
|
12995
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
12996
|
+
412: {
|
|
12997
|
+
headers: {
|
|
12998
|
+
[name: string]: unknown;
|
|
12999
|
+
};
|
|
13000
|
+
content: {
|
|
13001
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
13002
|
+
};
|
|
13003
|
+
};
|
|
12414
13004
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
12415
13005
|
500: {
|
|
12416
13006
|
headers: {
|
|
@@ -12485,6 +13075,15 @@ export interface operations {
|
|
|
12485
13075
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
12486
13076
|
};
|
|
12487
13077
|
};
|
|
13078
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
13079
|
+
412: {
|
|
13080
|
+
headers: {
|
|
13081
|
+
[name: string]: unknown;
|
|
13082
|
+
};
|
|
13083
|
+
content: {
|
|
13084
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
13085
|
+
};
|
|
13086
|
+
};
|
|
12488
13087
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
12489
13088
|
500: {
|
|
12490
13089
|
headers: {
|
|
@@ -12570,6 +13169,15 @@ export interface operations {
|
|
|
12570
13169
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
12571
13170
|
};
|
|
12572
13171
|
};
|
|
13172
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
13173
|
+
412: {
|
|
13174
|
+
headers: {
|
|
13175
|
+
[name: string]: unknown;
|
|
13176
|
+
};
|
|
13177
|
+
content: {
|
|
13178
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
13179
|
+
};
|
|
13180
|
+
};
|
|
12573
13181
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
12574
13182
|
500: {
|
|
12575
13183
|
headers: {
|
|
@@ -12602,10 +13210,14 @@ export interface operations {
|
|
|
12602
13210
|
listMarketplaceListings: {
|
|
12603
13211
|
parameters: {
|
|
12604
13212
|
query?: {
|
|
12605
|
-
/** @description
|
|
12606
|
-
|
|
12607
|
-
|
|
12608
|
-
|
|
13213
|
+
/** @description Page index.
|
|
13214
|
+
*
|
|
13215
|
+
* Default is 1. */
|
|
13216
|
+
page?: components['parameters']['Pagination.page'];
|
|
13217
|
+
/** @description The maximum number of items per page.
|
|
13218
|
+
*
|
|
13219
|
+
* Default is 100. */
|
|
13220
|
+
pageSize?: components['parameters']['Pagination.pageSize'];
|
|
12609
13221
|
};
|
|
12610
13222
|
header?: never;
|
|
12611
13223
|
path?: never;
|
|
@@ -12619,7 +13231,7 @@ export interface operations {
|
|
|
12619
13231
|
[name: string]: unknown;
|
|
12620
13232
|
};
|
|
12621
13233
|
content: {
|
|
12622
|
-
'application/json': components['schemas']['
|
|
13234
|
+
'application/json': components['schemas']['MarketplaceListingPaginatedResponse'];
|
|
12623
13235
|
};
|
|
12624
13236
|
};
|
|
12625
13237
|
/** @description The server cannot or will not process the request due to something that is perceived to be a client error (e.g., malformed request syntax, invalid request message framing, or deceptive request routing). */
|
|
@@ -12649,6 +13261,15 @@ export interface operations {
|
|
|
12649
13261
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
12650
13262
|
};
|
|
12651
13263
|
};
|
|
13264
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
13265
|
+
412: {
|
|
13266
|
+
headers: {
|
|
13267
|
+
[name: string]: unknown;
|
|
13268
|
+
};
|
|
13269
|
+
content: {
|
|
13270
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
13271
|
+
};
|
|
13272
|
+
};
|
|
12652
13273
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
12653
13274
|
500: {
|
|
12654
13275
|
headers: {
|
|
@@ -12725,6 +13346,15 @@ export interface operations {
|
|
|
12725
13346
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
12726
13347
|
};
|
|
12727
13348
|
};
|
|
13349
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
13350
|
+
412: {
|
|
13351
|
+
headers: {
|
|
13352
|
+
[name: string]: unknown;
|
|
13353
|
+
};
|
|
13354
|
+
content: {
|
|
13355
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
13356
|
+
};
|
|
13357
|
+
};
|
|
12728
13358
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
12729
13359
|
500: {
|
|
12730
13360
|
headers: {
|
|
@@ -12814,6 +13444,15 @@ export interface operations {
|
|
|
12814
13444
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
12815
13445
|
};
|
|
12816
13446
|
};
|
|
13447
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
13448
|
+
412: {
|
|
13449
|
+
headers: {
|
|
13450
|
+
[name: string]: unknown;
|
|
13451
|
+
};
|
|
13452
|
+
content: {
|
|
13453
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
13454
|
+
};
|
|
13455
|
+
};
|
|
12817
13456
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
12818
13457
|
500: {
|
|
12819
13458
|
headers: {
|
|
@@ -12890,6 +13529,15 @@ export interface operations {
|
|
|
12890
13529
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
12891
13530
|
};
|
|
12892
13531
|
};
|
|
13532
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
13533
|
+
412: {
|
|
13534
|
+
headers: {
|
|
13535
|
+
[name: string]: unknown;
|
|
13536
|
+
};
|
|
13537
|
+
content: {
|
|
13538
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
13539
|
+
};
|
|
13540
|
+
};
|
|
12893
13541
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
12894
13542
|
500: {
|
|
12895
13543
|
headers: {
|
|
@@ -12985,6 +13633,15 @@ export interface operations {
|
|
|
12985
13633
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
12986
13634
|
};
|
|
12987
13635
|
};
|
|
13636
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
13637
|
+
412: {
|
|
13638
|
+
headers: {
|
|
13639
|
+
[name: string]: unknown;
|
|
13640
|
+
};
|
|
13641
|
+
content: {
|
|
13642
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
13643
|
+
};
|
|
13644
|
+
};
|
|
12988
13645
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
12989
13646
|
500: {
|
|
12990
13647
|
headers: {
|
|
@@ -13059,6 +13716,15 @@ export interface operations {
|
|
|
13059
13716
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
13060
13717
|
};
|
|
13061
13718
|
};
|
|
13719
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
13720
|
+
412: {
|
|
13721
|
+
headers: {
|
|
13722
|
+
[name: string]: unknown;
|
|
13723
|
+
};
|
|
13724
|
+
content: {
|
|
13725
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
13726
|
+
};
|
|
13727
|
+
};
|
|
13062
13728
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
13063
13729
|
500: {
|
|
13064
13730
|
headers: {
|
|
@@ -13137,6 +13803,15 @@ export interface operations {
|
|
|
13137
13803
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
13138
13804
|
};
|
|
13139
13805
|
};
|
|
13806
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
13807
|
+
412: {
|
|
13808
|
+
headers: {
|
|
13809
|
+
[name: string]: unknown;
|
|
13810
|
+
};
|
|
13811
|
+
content: {
|
|
13812
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
13813
|
+
};
|
|
13814
|
+
};
|
|
13140
13815
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
13141
13816
|
500: {
|
|
13142
13817
|
headers: {
|
|
@@ -13222,6 +13897,15 @@ export interface operations {
|
|
|
13222
13897
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
13223
13898
|
};
|
|
13224
13899
|
};
|
|
13900
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
13901
|
+
412: {
|
|
13902
|
+
headers: {
|
|
13903
|
+
[name: string]: unknown;
|
|
13904
|
+
};
|
|
13905
|
+
content: {
|
|
13906
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
13907
|
+
};
|
|
13908
|
+
};
|
|
13225
13909
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
13226
13910
|
500: {
|
|
13227
13911
|
headers: {
|
|
@@ -13302,6 +13986,15 @@ export interface operations {
|
|
|
13302
13986
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
13303
13987
|
};
|
|
13304
13988
|
};
|
|
13989
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
13990
|
+
412: {
|
|
13991
|
+
headers: {
|
|
13992
|
+
[name: string]: unknown;
|
|
13993
|
+
};
|
|
13994
|
+
content: {
|
|
13995
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
13996
|
+
};
|
|
13997
|
+
};
|
|
13305
13998
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
13306
13999
|
500: {
|
|
13307
14000
|
headers: {
|
|
@@ -13376,6 +14069,15 @@ export interface operations {
|
|
|
13376
14069
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
13377
14070
|
};
|
|
13378
14071
|
};
|
|
14072
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
14073
|
+
412: {
|
|
14074
|
+
headers: {
|
|
14075
|
+
[name: string]: unknown;
|
|
14076
|
+
};
|
|
14077
|
+
content: {
|
|
14078
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
14079
|
+
};
|
|
14080
|
+
};
|
|
13379
14081
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
13380
14082
|
500: {
|
|
13381
14083
|
headers: {
|
|
@@ -13486,6 +14188,15 @@ export interface operations {
|
|
|
13486
14188
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
13487
14189
|
};
|
|
13488
14190
|
};
|
|
14191
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
14192
|
+
412: {
|
|
14193
|
+
headers: {
|
|
14194
|
+
[name: string]: unknown;
|
|
14195
|
+
};
|
|
14196
|
+
content: {
|
|
14197
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
14198
|
+
};
|
|
14199
|
+
};
|
|
13489
14200
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
13490
14201
|
500: {
|
|
13491
14202
|
headers: {
|
|
@@ -13562,6 +14273,15 @@ export interface operations {
|
|
|
13562
14273
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
13563
14274
|
};
|
|
13564
14275
|
};
|
|
14276
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
14277
|
+
412: {
|
|
14278
|
+
headers: {
|
|
14279
|
+
[name: string]: unknown;
|
|
14280
|
+
};
|
|
14281
|
+
content: {
|
|
14282
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
14283
|
+
};
|
|
14284
|
+
};
|
|
13565
14285
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
13566
14286
|
500: {
|
|
13567
14287
|
headers: {
|
|
@@ -13602,11 +14322,11 @@ export interface operations {
|
|
|
13602
14322
|
*
|
|
13603
14323
|
* Usage: `?includeDisabled=false` */
|
|
13604
14324
|
includeDisabled?: boolean;
|
|
13605
|
-
/** @description
|
|
14325
|
+
/** @description Page index.
|
|
13606
14326
|
*
|
|
13607
|
-
*
|
|
14327
|
+
* Default is 1. */
|
|
13608
14328
|
page?: components['parameters']['Pagination.page'];
|
|
13609
|
-
/** @description
|
|
14329
|
+
/** @description The maximum number of items per page.
|
|
13610
14330
|
*
|
|
13611
14331
|
* Default is 100. */
|
|
13612
14332
|
pageSize?: components['parameters']['Pagination.pageSize'];
|
|
@@ -13657,6 +14377,15 @@ export interface operations {
|
|
|
13657
14377
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
13658
14378
|
};
|
|
13659
14379
|
};
|
|
14380
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
14381
|
+
412: {
|
|
14382
|
+
headers: {
|
|
14383
|
+
[name: string]: unknown;
|
|
14384
|
+
};
|
|
14385
|
+
content: {
|
|
14386
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
14387
|
+
};
|
|
14388
|
+
};
|
|
13660
14389
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
13661
14390
|
500: {
|
|
13662
14391
|
headers: {
|
|
@@ -13735,6 +14464,15 @@ export interface operations {
|
|
|
13735
14464
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
13736
14465
|
};
|
|
13737
14466
|
};
|
|
14467
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
14468
|
+
412: {
|
|
14469
|
+
headers: {
|
|
14470
|
+
[name: string]: unknown;
|
|
14471
|
+
};
|
|
14472
|
+
content: {
|
|
14473
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
14474
|
+
};
|
|
14475
|
+
};
|
|
13738
14476
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
13739
14477
|
500: {
|
|
13740
14478
|
headers: {
|
|
@@ -13820,6 +14558,15 @@ export interface operations {
|
|
|
13820
14558
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
13821
14559
|
};
|
|
13822
14560
|
};
|
|
14561
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
14562
|
+
412: {
|
|
14563
|
+
headers: {
|
|
14564
|
+
[name: string]: unknown;
|
|
14565
|
+
};
|
|
14566
|
+
content: {
|
|
14567
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
14568
|
+
};
|
|
14569
|
+
};
|
|
13823
14570
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
13824
14571
|
500: {
|
|
13825
14572
|
headers: {
|
|
@@ -13909,6 +14656,15 @@ export interface operations {
|
|
|
13909
14656
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
13910
14657
|
};
|
|
13911
14658
|
};
|
|
14659
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
14660
|
+
412: {
|
|
14661
|
+
headers: {
|
|
14662
|
+
[name: string]: unknown;
|
|
14663
|
+
};
|
|
14664
|
+
content: {
|
|
14665
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
14666
|
+
};
|
|
14667
|
+
};
|
|
13912
14668
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
13913
14669
|
500: {
|
|
13914
14670
|
headers: {
|
|
@@ -13992,6 +14748,15 @@ export interface operations {
|
|
|
13992
14748
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
13993
14749
|
};
|
|
13994
14750
|
};
|
|
14751
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
14752
|
+
412: {
|
|
14753
|
+
headers: {
|
|
14754
|
+
[name: string]: unknown;
|
|
14755
|
+
};
|
|
14756
|
+
content: {
|
|
14757
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
14758
|
+
};
|
|
14759
|
+
};
|
|
13995
14760
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
13996
14761
|
500: {
|
|
13997
14762
|
headers: {
|
|
@@ -14046,11 +14811,11 @@ export interface operations {
|
|
|
14046
14811
|
*
|
|
14047
14812
|
* Usage: `?channel=01J8J4RXH778XB056JS088PCYT&channel=01J8J4S1R1G9EVN62RG23A9M6J` */
|
|
14048
14813
|
channel?: string[];
|
|
14049
|
-
/** @description
|
|
14814
|
+
/** @description Page index.
|
|
14050
14815
|
*
|
|
14051
|
-
*
|
|
14816
|
+
* Default is 1. */
|
|
14052
14817
|
page?: components['parameters']['Pagination.page'];
|
|
14053
|
-
/** @description
|
|
14818
|
+
/** @description The maximum number of items per page.
|
|
14054
14819
|
*
|
|
14055
14820
|
* Default is 100. */
|
|
14056
14821
|
pageSize?: components['parameters']['Pagination.pageSize'];
|
|
@@ -14101,6 +14866,15 @@ export interface operations {
|
|
|
14101
14866
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
14102
14867
|
};
|
|
14103
14868
|
};
|
|
14869
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
14870
|
+
412: {
|
|
14871
|
+
headers: {
|
|
14872
|
+
[name: string]: unknown;
|
|
14873
|
+
};
|
|
14874
|
+
content: {
|
|
14875
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
14876
|
+
};
|
|
14877
|
+
};
|
|
14104
14878
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
14105
14879
|
500: {
|
|
14106
14880
|
headers: {
|
|
@@ -14186,6 +14960,15 @@ export interface operations {
|
|
|
14186
14960
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
14187
14961
|
};
|
|
14188
14962
|
};
|
|
14963
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
14964
|
+
412: {
|
|
14965
|
+
headers: {
|
|
14966
|
+
[name: string]: unknown;
|
|
14967
|
+
};
|
|
14968
|
+
content: {
|
|
14969
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
14970
|
+
};
|
|
14971
|
+
};
|
|
14189
14972
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
14190
14973
|
500: {
|
|
14191
14974
|
headers: {
|
|
@@ -14234,11 +15017,11 @@ export interface operations {
|
|
|
14234
15017
|
*
|
|
14235
15018
|
* Usage: `?channel=01ARZ3NDEKTSV4RRFFQ69G5FAV&channel=01J8J2Y5X4NNGQS32CF81W95E3` */
|
|
14236
15019
|
channel?: string[];
|
|
14237
|
-
/** @description
|
|
15020
|
+
/** @description Page index.
|
|
14238
15021
|
*
|
|
14239
|
-
*
|
|
15022
|
+
* Default is 1. */
|
|
14240
15023
|
page?: components['parameters']['Pagination.page'];
|
|
14241
|
-
/** @description
|
|
15024
|
+
/** @description The maximum number of items per page.
|
|
14242
15025
|
*
|
|
14243
15026
|
* Default is 100. */
|
|
14244
15027
|
pageSize?: components['parameters']['Pagination.pageSize'];
|
|
@@ -14289,6 +15072,15 @@ export interface operations {
|
|
|
14289
15072
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
14290
15073
|
};
|
|
14291
15074
|
};
|
|
15075
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
15076
|
+
412: {
|
|
15077
|
+
headers: {
|
|
15078
|
+
[name: string]: unknown;
|
|
15079
|
+
};
|
|
15080
|
+
content: {
|
|
15081
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
15082
|
+
};
|
|
15083
|
+
};
|
|
14292
15084
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
14293
15085
|
500: {
|
|
14294
15086
|
headers: {
|
|
@@ -14367,6 +15159,15 @@ export interface operations {
|
|
|
14367
15159
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
14368
15160
|
};
|
|
14369
15161
|
};
|
|
15162
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
15163
|
+
412: {
|
|
15164
|
+
headers: {
|
|
15165
|
+
[name: string]: unknown;
|
|
15166
|
+
};
|
|
15167
|
+
content: {
|
|
15168
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
15169
|
+
};
|
|
15170
|
+
};
|
|
14370
15171
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
14371
15172
|
500: {
|
|
14372
15173
|
headers: {
|
|
@@ -14452,6 +15253,15 @@ export interface operations {
|
|
|
14452
15253
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
14453
15254
|
};
|
|
14454
15255
|
};
|
|
15256
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
15257
|
+
412: {
|
|
15258
|
+
headers: {
|
|
15259
|
+
[name: string]: unknown;
|
|
15260
|
+
};
|
|
15261
|
+
content: {
|
|
15262
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
15263
|
+
};
|
|
15264
|
+
};
|
|
14455
15265
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
14456
15266
|
500: {
|
|
14457
15267
|
headers: {
|
|
@@ -14541,6 +15351,15 @@ export interface operations {
|
|
|
14541
15351
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
14542
15352
|
};
|
|
14543
15353
|
};
|
|
15354
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
15355
|
+
412: {
|
|
15356
|
+
headers: {
|
|
15357
|
+
[name: string]: unknown;
|
|
15358
|
+
};
|
|
15359
|
+
content: {
|
|
15360
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
15361
|
+
};
|
|
15362
|
+
};
|
|
14544
15363
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
14545
15364
|
500: {
|
|
14546
15365
|
headers: {
|
|
@@ -14624,6 +15443,15 @@ export interface operations {
|
|
|
14624
15443
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
14625
15444
|
};
|
|
14626
15445
|
};
|
|
15446
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
15447
|
+
412: {
|
|
15448
|
+
headers: {
|
|
15449
|
+
[name: string]: unknown;
|
|
15450
|
+
};
|
|
15451
|
+
content: {
|
|
15452
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
15453
|
+
};
|
|
15454
|
+
};
|
|
14627
15455
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
14628
15456
|
500: {
|
|
14629
15457
|
headers: {
|
|
@@ -14709,6 +15537,15 @@ export interface operations {
|
|
|
14709
15537
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
14710
15538
|
};
|
|
14711
15539
|
};
|
|
15540
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
15541
|
+
412: {
|
|
15542
|
+
headers: {
|
|
15543
|
+
[name: string]: unknown;
|
|
15544
|
+
};
|
|
15545
|
+
content: {
|
|
15546
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
15547
|
+
};
|
|
15548
|
+
};
|
|
14712
15549
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
14713
15550
|
500: {
|
|
14714
15551
|
headers: {
|
|
@@ -14785,6 +15622,15 @@ export interface operations {
|
|
|
14785
15622
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
14786
15623
|
};
|
|
14787
15624
|
};
|
|
15625
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
15626
|
+
412: {
|
|
15627
|
+
headers: {
|
|
15628
|
+
[name: string]: unknown;
|
|
15629
|
+
};
|
|
15630
|
+
content: {
|
|
15631
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
15632
|
+
};
|
|
15633
|
+
};
|
|
14788
15634
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
14789
15635
|
500: {
|
|
14790
15636
|
headers: {
|
|
@@ -14829,13 +15675,20 @@ export interface operations {
|
|
|
14829
15675
|
keyVersion?: {
|
|
14830
15676
|
[key: string]: number[];
|
|
14831
15677
|
};
|
|
15678
|
+
/** @description Only return plans with the given status.
|
|
15679
|
+
*
|
|
15680
|
+
* Usage:
|
|
15681
|
+
* - `?status=active`: return only the currently active plan
|
|
15682
|
+
* - `?status=draft`: return only the draft plan
|
|
15683
|
+
* - `?status=archived`: return only the archived plans */
|
|
15684
|
+
status?: components['schemas']['PlanStatus'][];
|
|
14832
15685
|
/** @description Filter by plan.currency attribute */
|
|
14833
15686
|
currency?: components['schemas']['CurrencyCode'][];
|
|
14834
|
-
/** @description
|
|
15687
|
+
/** @description Page index.
|
|
14835
15688
|
*
|
|
14836
|
-
*
|
|
15689
|
+
* Default is 1. */
|
|
14837
15690
|
page?: components['parameters']['Pagination.page'];
|
|
14838
|
-
/** @description
|
|
15691
|
+
/** @description The maximum number of items per page.
|
|
14839
15692
|
*
|
|
14840
15693
|
* Default is 100. */
|
|
14841
15694
|
pageSize?: components['parameters']['Pagination.pageSize'];
|
|
@@ -14886,6 +15739,15 @@ export interface operations {
|
|
|
14886
15739
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
14887
15740
|
};
|
|
14888
15741
|
};
|
|
15742
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
15743
|
+
412: {
|
|
15744
|
+
headers: {
|
|
15745
|
+
[name: string]: unknown;
|
|
15746
|
+
};
|
|
15747
|
+
content: {
|
|
15748
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
15749
|
+
};
|
|
15750
|
+
};
|
|
14889
15751
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
14890
15752
|
500: {
|
|
14891
15753
|
headers: {
|
|
@@ -14964,6 +15826,15 @@ export interface operations {
|
|
|
14964
15826
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
14965
15827
|
};
|
|
14966
15828
|
};
|
|
15829
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
15830
|
+
412: {
|
|
15831
|
+
headers: {
|
|
15832
|
+
[name: string]: unknown;
|
|
15833
|
+
};
|
|
15834
|
+
content: {
|
|
15835
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
15836
|
+
};
|
|
15837
|
+
};
|
|
14967
15838
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
14968
15839
|
500: {
|
|
14969
15840
|
headers: {
|
|
@@ -15049,6 +15920,15 @@ export interface operations {
|
|
|
15049
15920
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
15050
15921
|
};
|
|
15051
15922
|
};
|
|
15923
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
15924
|
+
412: {
|
|
15925
|
+
headers: {
|
|
15926
|
+
[name: string]: unknown;
|
|
15927
|
+
};
|
|
15928
|
+
content: {
|
|
15929
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
15930
|
+
};
|
|
15931
|
+
};
|
|
15052
15932
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
15053
15933
|
500: {
|
|
15054
15934
|
headers: {
|
|
@@ -15139,6 +16019,15 @@ export interface operations {
|
|
|
15139
16019
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
15140
16020
|
};
|
|
15141
16021
|
};
|
|
16022
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
16023
|
+
412: {
|
|
16024
|
+
headers: {
|
|
16025
|
+
[name: string]: unknown;
|
|
16026
|
+
};
|
|
16027
|
+
content: {
|
|
16028
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
16029
|
+
};
|
|
16030
|
+
};
|
|
15142
16031
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
15143
16032
|
500: {
|
|
15144
16033
|
headers: {
|
|
@@ -15228,6 +16117,15 @@ export interface operations {
|
|
|
15228
16117
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
15229
16118
|
};
|
|
15230
16119
|
};
|
|
16120
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
16121
|
+
412: {
|
|
16122
|
+
headers: {
|
|
16123
|
+
[name: string]: unknown;
|
|
16124
|
+
};
|
|
16125
|
+
content: {
|
|
16126
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
16127
|
+
};
|
|
16128
|
+
};
|
|
15231
16129
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
15232
16130
|
500: {
|
|
15233
16131
|
headers: {
|
|
@@ -15311,6 +16209,15 @@ export interface operations {
|
|
|
15311
16209
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
15312
16210
|
};
|
|
15313
16211
|
};
|
|
16212
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
16213
|
+
412: {
|
|
16214
|
+
headers: {
|
|
16215
|
+
[name: string]: unknown;
|
|
16216
|
+
};
|
|
16217
|
+
content: {
|
|
16218
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
16219
|
+
};
|
|
16220
|
+
};
|
|
15314
16221
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
15315
16222
|
500: {
|
|
15316
16223
|
headers: {
|
|
@@ -15396,6 +16303,15 @@ export interface operations {
|
|
|
15396
16303
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
15397
16304
|
};
|
|
15398
16305
|
};
|
|
16306
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
16307
|
+
412: {
|
|
16308
|
+
headers: {
|
|
16309
|
+
[name: string]: unknown;
|
|
16310
|
+
};
|
|
16311
|
+
content: {
|
|
16312
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
16313
|
+
};
|
|
16314
|
+
};
|
|
15399
16315
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
15400
16316
|
500: {
|
|
15401
16317
|
headers: {
|
|
@@ -15481,6 +16397,15 @@ export interface operations {
|
|
|
15481
16397
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
15482
16398
|
};
|
|
15483
16399
|
};
|
|
16400
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
16401
|
+
412: {
|
|
16402
|
+
headers: {
|
|
16403
|
+
[name: string]: unknown;
|
|
16404
|
+
};
|
|
16405
|
+
content: {
|
|
16406
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
16407
|
+
};
|
|
16408
|
+
};
|
|
15484
16409
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
15485
16410
|
500: {
|
|
15486
16411
|
headers: {
|
|
@@ -15589,6 +16514,15 @@ export interface operations {
|
|
|
15589
16514
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
15590
16515
|
};
|
|
15591
16516
|
};
|
|
16517
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
16518
|
+
412: {
|
|
16519
|
+
headers: {
|
|
16520
|
+
[name: string]: unknown;
|
|
16521
|
+
};
|
|
16522
|
+
content: {
|
|
16523
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
16524
|
+
};
|
|
16525
|
+
};
|
|
15592
16526
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
15593
16527
|
500: {
|
|
15594
16528
|
headers: {
|
|
@@ -15665,6 +16599,15 @@ export interface operations {
|
|
|
15665
16599
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
15666
16600
|
};
|
|
15667
16601
|
};
|
|
16602
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
16603
|
+
412: {
|
|
16604
|
+
headers: {
|
|
16605
|
+
[name: string]: unknown;
|
|
16606
|
+
};
|
|
16607
|
+
content: {
|
|
16608
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
16609
|
+
};
|
|
16610
|
+
};
|
|
15668
16611
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
15669
16612
|
500: {
|
|
15670
16613
|
headers: {
|
|
@@ -15743,6 +16686,15 @@ export interface operations {
|
|
|
15743
16686
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
15744
16687
|
};
|
|
15745
16688
|
};
|
|
16689
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
16690
|
+
412: {
|
|
16691
|
+
headers: {
|
|
16692
|
+
[name: string]: unknown;
|
|
16693
|
+
};
|
|
16694
|
+
content: {
|
|
16695
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
16696
|
+
};
|
|
16697
|
+
};
|
|
15746
16698
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
15747
16699
|
500: {
|
|
15748
16700
|
headers: {
|
|
@@ -15824,6 +16776,15 @@ export interface operations {
|
|
|
15824
16776
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
15825
16777
|
};
|
|
15826
16778
|
};
|
|
16779
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
16780
|
+
412: {
|
|
16781
|
+
headers: {
|
|
16782
|
+
[name: string]: unknown;
|
|
16783
|
+
};
|
|
16784
|
+
content: {
|
|
16785
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
16786
|
+
};
|
|
16787
|
+
};
|
|
15827
16788
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
15828
16789
|
500: {
|
|
15829
16790
|
headers: {
|
|
@@ -15911,6 +16872,15 @@ export interface operations {
|
|
|
15911
16872
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
15912
16873
|
};
|
|
15913
16874
|
};
|
|
16875
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
16876
|
+
412: {
|
|
16877
|
+
headers: {
|
|
16878
|
+
[name: string]: unknown;
|
|
16879
|
+
};
|
|
16880
|
+
content: {
|
|
16881
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
16882
|
+
};
|
|
16883
|
+
};
|
|
15914
16884
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
15915
16885
|
500: {
|
|
15916
16886
|
headers: {
|
|
@@ -15985,6 +16955,15 @@ export interface operations {
|
|
|
15985
16955
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
15986
16956
|
};
|
|
15987
16957
|
};
|
|
16958
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
16959
|
+
412: {
|
|
16960
|
+
headers: {
|
|
16961
|
+
[name: string]: unknown;
|
|
16962
|
+
};
|
|
16963
|
+
content: {
|
|
16964
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
16965
|
+
};
|
|
16966
|
+
};
|
|
15988
16967
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
15989
16968
|
500: {
|
|
15990
16969
|
headers: {
|
|
@@ -16063,6 +17042,15 @@ export interface operations {
|
|
|
16063
17042
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
16064
17043
|
};
|
|
16065
17044
|
};
|
|
17045
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
17046
|
+
412: {
|
|
17047
|
+
headers: {
|
|
17048
|
+
[name: string]: unknown;
|
|
17049
|
+
};
|
|
17050
|
+
content: {
|
|
17051
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
17052
|
+
};
|
|
17053
|
+
};
|
|
16066
17054
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
16067
17055
|
500: {
|
|
16068
17056
|
headers: {
|
|
@@ -16148,6 +17136,15 @@ export interface operations {
|
|
|
16148
17136
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
16149
17137
|
};
|
|
16150
17138
|
};
|
|
17139
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
17140
|
+
412: {
|
|
17141
|
+
headers: {
|
|
17142
|
+
[name: string]: unknown;
|
|
17143
|
+
};
|
|
17144
|
+
content: {
|
|
17145
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
17146
|
+
};
|
|
17147
|
+
};
|
|
16151
17148
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
16152
17149
|
500: {
|
|
16153
17150
|
headers: {
|
|
@@ -16222,6 +17219,15 @@ export interface operations {
|
|
|
16222
17219
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
16223
17220
|
};
|
|
16224
17221
|
};
|
|
17222
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
17223
|
+
412: {
|
|
17224
|
+
headers: {
|
|
17225
|
+
[name: string]: unknown;
|
|
17226
|
+
};
|
|
17227
|
+
content: {
|
|
17228
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
17229
|
+
};
|
|
17230
|
+
};
|
|
16225
17231
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
16226
17232
|
500: {
|
|
16227
17233
|
headers: {
|
|
@@ -16300,6 +17306,15 @@ export interface operations {
|
|
|
16300
17306
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
16301
17307
|
};
|
|
16302
17308
|
};
|
|
17309
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
17310
|
+
412: {
|
|
17311
|
+
headers: {
|
|
17312
|
+
[name: string]: unknown;
|
|
17313
|
+
};
|
|
17314
|
+
content: {
|
|
17315
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
17316
|
+
};
|
|
17317
|
+
};
|
|
16303
17318
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
16304
17319
|
500: {
|
|
16305
17320
|
headers: {
|
|
@@ -16389,6 +17404,15 @@ export interface operations {
|
|
|
16389
17404
|
'application/problem+json': components['schemas']['ConflictProblemResponse'];
|
|
16390
17405
|
};
|
|
16391
17406
|
};
|
|
17407
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
17408
|
+
412: {
|
|
17409
|
+
headers: {
|
|
17410
|
+
[name: string]: unknown;
|
|
17411
|
+
};
|
|
17412
|
+
content: {
|
|
17413
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
17414
|
+
};
|
|
17415
|
+
};
|
|
16392
17416
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
16393
17417
|
500: {
|
|
16394
17418
|
headers: {
|
|
@@ -16469,6 +17493,15 @@ export interface operations {
|
|
|
16469
17493
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
16470
17494
|
};
|
|
16471
17495
|
};
|
|
17496
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
17497
|
+
412: {
|
|
17498
|
+
headers: {
|
|
17499
|
+
[name: string]: unknown;
|
|
17500
|
+
};
|
|
17501
|
+
content: {
|
|
17502
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
17503
|
+
};
|
|
17504
|
+
};
|
|
16472
17505
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
16473
17506
|
500: {
|
|
16474
17507
|
headers: {
|
|
@@ -16559,6 +17592,15 @@ export interface operations {
|
|
|
16559
17592
|
'application/problem+json': components['schemas']['ConflictProblemResponse'];
|
|
16560
17593
|
};
|
|
16561
17594
|
};
|
|
17595
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
17596
|
+
412: {
|
|
17597
|
+
headers: {
|
|
17598
|
+
[name: string]: unknown;
|
|
17599
|
+
};
|
|
17600
|
+
content: {
|
|
17601
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
17602
|
+
};
|
|
17603
|
+
};
|
|
16562
17604
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
16563
17605
|
500: {
|
|
16564
17606
|
headers: {
|
|
@@ -16658,6 +17700,15 @@ export interface operations {
|
|
|
16658
17700
|
'application/problem+json': components['schemas']['ConflictProblemResponse'];
|
|
16659
17701
|
};
|
|
16660
17702
|
};
|
|
17703
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
17704
|
+
412: {
|
|
17705
|
+
headers: {
|
|
17706
|
+
[name: string]: unknown;
|
|
17707
|
+
};
|
|
17708
|
+
content: {
|
|
17709
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
17710
|
+
};
|
|
17711
|
+
};
|
|
16661
17712
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
16662
17713
|
500: {
|
|
16663
17714
|
headers: {
|
|
@@ -16746,6 +17797,15 @@ export interface operations {
|
|
|
16746
17797
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
16747
17798
|
};
|
|
16748
17799
|
};
|
|
17800
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
17801
|
+
412: {
|
|
17802
|
+
headers: {
|
|
17803
|
+
[name: string]: unknown;
|
|
17804
|
+
};
|
|
17805
|
+
content: {
|
|
17806
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
17807
|
+
};
|
|
17808
|
+
};
|
|
16749
17809
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
16750
17810
|
500: {
|
|
16751
17811
|
headers: {
|
|
@@ -16832,6 +17892,15 @@ export interface operations {
|
|
|
16832
17892
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
16833
17893
|
};
|
|
16834
17894
|
};
|
|
17895
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
17896
|
+
412: {
|
|
17897
|
+
headers: {
|
|
17898
|
+
[name: string]: unknown;
|
|
17899
|
+
};
|
|
17900
|
+
content: {
|
|
17901
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
17902
|
+
};
|
|
17903
|
+
};
|
|
16835
17904
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
16836
17905
|
500: {
|
|
16837
17906
|
headers: {
|
|
@@ -16916,6 +17985,15 @@ export interface operations {
|
|
|
16916
17985
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
16917
17986
|
};
|
|
16918
17987
|
};
|
|
17988
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
17989
|
+
412: {
|
|
17990
|
+
headers: {
|
|
17991
|
+
[name: string]: unknown;
|
|
17992
|
+
};
|
|
17993
|
+
content: {
|
|
17994
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
17995
|
+
};
|
|
17996
|
+
};
|
|
16919
17997
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
16920
17998
|
500: {
|
|
16921
17999
|
headers: {
|
|
@@ -17012,6 +18090,15 @@ export interface operations {
|
|
|
17012
18090
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
17013
18091
|
};
|
|
17014
18092
|
};
|
|
18093
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
18094
|
+
412: {
|
|
18095
|
+
headers: {
|
|
18096
|
+
[name: string]: unknown;
|
|
18097
|
+
};
|
|
18098
|
+
content: {
|
|
18099
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
18100
|
+
};
|
|
18101
|
+
};
|
|
17015
18102
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
17016
18103
|
500: {
|
|
17017
18104
|
headers: {
|
|
@@ -17100,6 +18187,15 @@ export interface operations {
|
|
|
17100
18187
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
17101
18188
|
};
|
|
17102
18189
|
};
|
|
18190
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
18191
|
+
412: {
|
|
18192
|
+
headers: {
|
|
18193
|
+
[name: string]: unknown;
|
|
18194
|
+
};
|
|
18195
|
+
content: {
|
|
18196
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
18197
|
+
};
|
|
18198
|
+
};
|
|
17103
18199
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
17104
18200
|
500: {
|
|
17105
18201
|
headers: {
|
|
@@ -17187,6 +18283,15 @@ export interface operations {
|
|
|
17187
18283
|
'application/problem+json': components['schemas']['ConflictProblemResponse'];
|
|
17188
18284
|
};
|
|
17189
18285
|
};
|
|
18286
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
18287
|
+
412: {
|
|
18288
|
+
headers: {
|
|
18289
|
+
[name: string]: unknown;
|
|
18290
|
+
};
|
|
18291
|
+
content: {
|
|
18292
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
18293
|
+
};
|
|
18294
|
+
};
|
|
17190
18295
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
17191
18296
|
500: {
|
|
17192
18297
|
headers: {
|
|
@@ -17275,6 +18380,15 @@ export interface operations {
|
|
|
17275
18380
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
17276
18381
|
};
|
|
17277
18382
|
};
|
|
18383
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
18384
|
+
412: {
|
|
18385
|
+
headers: {
|
|
18386
|
+
[name: string]: unknown;
|
|
18387
|
+
};
|
|
18388
|
+
content: {
|
|
18389
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
18390
|
+
};
|
|
18391
|
+
};
|
|
17278
18392
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
17279
18393
|
500: {
|
|
17280
18394
|
headers: {
|
|
@@ -17373,6 +18487,15 @@ export interface operations {
|
|
|
17373
18487
|
'application/problem+json': components['schemas']['ConflictProblemResponse'];
|
|
17374
18488
|
};
|
|
17375
18489
|
};
|
|
18490
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
18491
|
+
412: {
|
|
18492
|
+
headers: {
|
|
18493
|
+
[name: string]: unknown;
|
|
18494
|
+
};
|
|
18495
|
+
content: {
|
|
18496
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
18497
|
+
};
|
|
18498
|
+
};
|
|
17376
18499
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
17377
18500
|
500: {
|
|
17378
18501
|
headers: {
|
|
@@ -17474,6 +18597,15 @@ export interface operations {
|
|
|
17474
18597
|
'application/problem+json': components['schemas']['ConflictProblemResponse'];
|
|
17475
18598
|
};
|
|
17476
18599
|
};
|
|
18600
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
18601
|
+
412: {
|
|
18602
|
+
headers: {
|
|
18603
|
+
[name: string]: unknown;
|
|
18604
|
+
};
|
|
18605
|
+
content: {
|
|
18606
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
18607
|
+
};
|
|
18608
|
+
};
|
|
17477
18609
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
17478
18610
|
500: {
|
|
17479
18611
|
headers: {
|
|
@@ -17572,6 +18704,15 @@ export interface operations {
|
|
|
17572
18704
|
'application/problem+json': components['schemas']['ConflictProblemResponse'];
|
|
17573
18705
|
};
|
|
17574
18706
|
};
|
|
18707
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
18708
|
+
412: {
|
|
18709
|
+
headers: {
|
|
18710
|
+
[name: string]: unknown;
|
|
18711
|
+
};
|
|
18712
|
+
content: {
|
|
18713
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
18714
|
+
};
|
|
18715
|
+
};
|
|
17575
18716
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
17576
18717
|
500: {
|
|
17577
18718
|
headers: {
|
|
@@ -17672,6 +18813,15 @@ export interface operations {
|
|
|
17672
18813
|
'application/problem+json': components['schemas']['ConflictProblemResponse'];
|
|
17673
18814
|
};
|
|
17674
18815
|
};
|
|
18816
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
18817
|
+
412: {
|
|
18818
|
+
headers: {
|
|
18819
|
+
[name: string]: unknown;
|
|
18820
|
+
};
|
|
18821
|
+
content: {
|
|
18822
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
18823
|
+
};
|
|
18824
|
+
};
|
|
17675
18825
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
17676
18826
|
500: {
|
|
17677
18827
|
headers: {
|
|
@@ -17757,6 +18907,15 @@ export interface operations {
|
|
|
17757
18907
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
17758
18908
|
};
|
|
17759
18909
|
};
|
|
18910
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
18911
|
+
412: {
|
|
18912
|
+
headers: {
|
|
18913
|
+
[name: string]: unknown;
|
|
18914
|
+
};
|
|
18915
|
+
content: {
|
|
18916
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
18917
|
+
};
|
|
18918
|
+
};
|
|
17760
18919
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
17761
18920
|
500: {
|
|
17762
18921
|
headers: {
|
|
@@ -17851,6 +19010,124 @@ export interface operations {
|
|
|
17851
19010
|
'application/problem+json': components['schemas']['ConflictProblemResponse'];
|
|
17852
19011
|
};
|
|
17853
19012
|
};
|
|
19013
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
19014
|
+
412: {
|
|
19015
|
+
headers: {
|
|
19016
|
+
[name: string]: unknown;
|
|
19017
|
+
};
|
|
19018
|
+
content: {
|
|
19019
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
19020
|
+
};
|
|
19021
|
+
};
|
|
19022
|
+
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
19023
|
+
500: {
|
|
19024
|
+
headers: {
|
|
19025
|
+
[name: string]: unknown;
|
|
19026
|
+
};
|
|
19027
|
+
content: {
|
|
19028
|
+
'application/problem+json': components['schemas']['InternalServerErrorProblemResponse'];
|
|
19029
|
+
};
|
|
19030
|
+
};
|
|
19031
|
+
/** @description The server is currently unable to handle the request due to a temporary overload or scheduled maintenance, which will likely be alleviated after some delay. */
|
|
19032
|
+
503: {
|
|
19033
|
+
headers: {
|
|
19034
|
+
[name: string]: unknown;
|
|
19035
|
+
};
|
|
19036
|
+
content: {
|
|
19037
|
+
'application/problem+json': components['schemas']['ServiceUnavailableProblemResponse'];
|
|
19038
|
+
};
|
|
19039
|
+
};
|
|
19040
|
+
/** @description An unexpected error response. */
|
|
19041
|
+
default: {
|
|
19042
|
+
headers: {
|
|
19043
|
+
[name: string]: unknown;
|
|
19044
|
+
};
|
|
19045
|
+
content: {
|
|
19046
|
+
'application/problem+json': components['schemas']['UnexpectedProblemResponse'];
|
|
19047
|
+
};
|
|
19048
|
+
};
|
|
19049
|
+
};
|
|
19050
|
+
};
|
|
19051
|
+
listEventsV2: {
|
|
19052
|
+
parameters: {
|
|
19053
|
+
query?: {
|
|
19054
|
+
/** @description The cursor after which to start the pagination. */
|
|
19055
|
+
cursor?: components['parameters']['CursorPagination.cursor'];
|
|
19056
|
+
/** @description The limit of the pagination. */
|
|
19057
|
+
limit?: components['parameters']['CursorPagination.limit'];
|
|
19058
|
+
/** @description Client ID
|
|
19059
|
+
* Useful to track progress of a query. */
|
|
19060
|
+
clientId?: string;
|
|
19061
|
+
/** @description The event ID filter.
|
|
19062
|
+
* Example: `?id[$eq]=my-event-id` */
|
|
19063
|
+
id?: components['schemas']['FilterString'];
|
|
19064
|
+
/** @description The event source filter.
|
|
19065
|
+
* Example: `?source[$eq]=my-event-source` */
|
|
19066
|
+
source?: components['schemas']['FilterString'];
|
|
19067
|
+
/** @description The event subject filter.
|
|
19068
|
+
* Example: `?subject[$eq]=my-event-subject` */
|
|
19069
|
+
subject?: components['schemas']['FilterString'];
|
|
19070
|
+
/** @description The event type filter.
|
|
19071
|
+
* Example: `?type[$eq]=my-event-type` */
|
|
19072
|
+
type?: components['schemas']['FilterString'];
|
|
19073
|
+
/** @description The event time filter.
|
|
19074
|
+
* Example: `?time[$and][0][$gte]=2025-01-01T00:00:00Z&time[$and][1][$lte]=2025-01-02T00:00:00Z` */
|
|
19075
|
+
time?: components['schemas']['FilterTime'];
|
|
19076
|
+
/** @description The ingested at filter.
|
|
19077
|
+
* Example: `?ingestedAt[$and][0][$gte]=2025-01-01T00:00:00Z&ingestedAt[$and][1][$lte]=2025-01-02T00:00:00Z` */
|
|
19078
|
+
ingestedAt?: components['schemas']['FilterTime'];
|
|
19079
|
+
};
|
|
19080
|
+
header?: never;
|
|
19081
|
+
path?: never;
|
|
19082
|
+
cookie?: never;
|
|
19083
|
+
};
|
|
19084
|
+
requestBody?: never;
|
|
19085
|
+
responses: {
|
|
19086
|
+
/** @description The request has succeeded. */
|
|
19087
|
+
200: {
|
|
19088
|
+
headers: {
|
|
19089
|
+
[name: string]: unknown;
|
|
19090
|
+
};
|
|
19091
|
+
content: {
|
|
19092
|
+
'application/json': components['schemas']['IngestedEventCursorPaginatedResponse'];
|
|
19093
|
+
};
|
|
19094
|
+
};
|
|
19095
|
+
/** @description The server cannot or will not process the request due to something that is perceived to be a client error (e.g., malformed request syntax, invalid request message framing, or deceptive request routing). */
|
|
19096
|
+
400: {
|
|
19097
|
+
headers: {
|
|
19098
|
+
[name: string]: unknown;
|
|
19099
|
+
};
|
|
19100
|
+
content: {
|
|
19101
|
+
'application/problem+json': components['schemas']['BadRequestProblemResponse'];
|
|
19102
|
+
};
|
|
19103
|
+
};
|
|
19104
|
+
/** @description The request has not been applied because it lacks valid authentication credentials for the target resource. */
|
|
19105
|
+
401: {
|
|
19106
|
+
headers: {
|
|
19107
|
+
[name: string]: unknown;
|
|
19108
|
+
};
|
|
19109
|
+
content: {
|
|
19110
|
+
'application/problem+json': components['schemas']['UnauthorizedProblemResponse'];
|
|
19111
|
+
};
|
|
19112
|
+
};
|
|
19113
|
+
/** @description The server understood the request but refuses to authorize it. */
|
|
19114
|
+
403: {
|
|
19115
|
+
headers: {
|
|
19116
|
+
[name: string]: unknown;
|
|
19117
|
+
};
|
|
19118
|
+
content: {
|
|
19119
|
+
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
19120
|
+
};
|
|
19121
|
+
};
|
|
19122
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
19123
|
+
412: {
|
|
19124
|
+
headers: {
|
|
19125
|
+
[name: string]: unknown;
|
|
19126
|
+
};
|
|
19127
|
+
content: {
|
|
19128
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
19129
|
+
};
|
|
19130
|
+
};
|
|
17854
19131
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
17855
19132
|
500: {
|
|
17856
19133
|
headers: {
|