@openmeter/sdk 1.0.0-beta.202 → 1.0.0-beta.203
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 +26 -0
- 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 +1061 -16
- package/dist/cjs/src/portal/index.d.cts +8 -0
- package/dist/cjs/{tsconfig.28575395.tsbuildinfo → tsconfig.bbd1d57d.tsbuildinfo} +1 -1
- package/dist/cjs/{tsconfig.cf28eb87.tsbuildinfo → tsconfig.bd5d6758.tsbuildinfo} +1 -1
- package/dist/src/client/apps.d.ts +26 -0
- 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 +1061 -16
- package/dist/src/portal/index.d.ts +8 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -2121,7 +2121,7 @@ export interface components {
|
|
|
2121
2121
|
* If not provided, the default billing profile is chosen if available.
|
|
2122
2122
|
* @example 01G65Z755AFWAKHE12NY0CQ9FH
|
|
2123
2123
|
*/
|
|
2124
|
-
|
|
2124
|
+
billingProfileId?: string;
|
|
2125
2125
|
};
|
|
2126
2126
|
/**
|
|
2127
2127
|
* @description CustomerOverrideExpand specifies the parts of the profile to expand.
|
|
@@ -2328,15 +2328,19 @@ export interface components {
|
|
|
2328
2328
|
};
|
|
2329
2329
|
/** @description Stripe CheckoutSession.custom_text */
|
|
2330
2330
|
CheckoutSessionCustomTextAfterSubmitParams: {
|
|
2331
|
+
/** @description Custom text that should be displayed after the payment confirmation button. */
|
|
2331
2332
|
afterSubmit?: {
|
|
2332
2333
|
message?: string;
|
|
2333
2334
|
};
|
|
2335
|
+
/** @description Custom text that should be displayed alongside shipping address collection. */
|
|
2334
2336
|
shippingAddress?: {
|
|
2335
2337
|
message?: string;
|
|
2336
2338
|
};
|
|
2339
|
+
/** @description Custom text that should be displayed alongside the payment confirmation button. */
|
|
2337
2340
|
submit?: {
|
|
2338
2341
|
message?: string;
|
|
2339
2342
|
};
|
|
2343
|
+
/** @description Custom text that should be displayed in place of the default terms of service agreement text. */
|
|
2340
2344
|
termsOfServiceAcceptance?: {
|
|
2341
2345
|
message?: string;
|
|
2342
2346
|
};
|
|
@@ -2514,6 +2518,8 @@ export interface components {
|
|
|
2514
2518
|
metadata?: {
|
|
2515
2519
|
[key: string]: string;
|
|
2516
2520
|
};
|
|
2521
|
+
/** @description The URL to redirect your customer back to after they authenticate or cancel their payment on the payment method’s app or site.
|
|
2522
|
+
* This parameter is required if ui_mode is embedded and redirect-based payment methods are enabled on the session. */
|
|
2517
2523
|
returnURL?: string;
|
|
2518
2524
|
/** @description The URL to which Stripe should send customers when payment or setup is complete.
|
|
2519
2525
|
* This parameter is not allowed if ui_mode is embedded.
|
|
@@ -2544,6 +2550,34 @@ export interface components {
|
|
|
2544
2550
|
sessionId: string;
|
|
2545
2551
|
/** @description The checkout session setup intent ID. */
|
|
2546
2552
|
setupIntentId: string;
|
|
2553
|
+
/** @description The client secret of the checkout session.
|
|
2554
|
+
* This can be used to initialize Stripe.js for your client-side implementation. */
|
|
2555
|
+
clientSecret?: string;
|
|
2556
|
+
/** @description A unique string to reference the Checkout Session.
|
|
2557
|
+
* This can be a customer ID, a cart ID, or similar, and can be used to reconcile the session with your internal systems. */
|
|
2558
|
+
clientReferenceId?: string;
|
|
2559
|
+
/** @description Customer's email address provided to Stripe. */
|
|
2560
|
+
customerEmail?: string;
|
|
2561
|
+
/** @description Three-letter ISO currency code, in lowercase. */
|
|
2562
|
+
currency?: components['schemas']['CurrencyCode'];
|
|
2563
|
+
/**
|
|
2564
|
+
* Format: date-time
|
|
2565
|
+
* @description Timestamp at which the checkout session was created.
|
|
2566
|
+
* @example 2023-01-01T01:01:01.001Z
|
|
2567
|
+
*/
|
|
2568
|
+
createdAt: Date;
|
|
2569
|
+
/**
|
|
2570
|
+
* Format: date-time
|
|
2571
|
+
* @description Timestamp at which the checkout session will expire.
|
|
2572
|
+
* @example 2023-01-01T01:01:01.001Z
|
|
2573
|
+
*/
|
|
2574
|
+
expiresAt?: Date;
|
|
2575
|
+
/** @description Set of key-value pairs attached to the checkout session. */
|
|
2576
|
+
metadata?: {
|
|
2577
|
+
[key: string]: string;
|
|
2578
|
+
};
|
|
2579
|
+
/** @description The status of the checkout session. */
|
|
2580
|
+
status?: string;
|
|
2547
2581
|
/** @description URL to show the checkout session. */
|
|
2548
2582
|
url?: string;
|
|
2549
2583
|
/** @description Mode
|
|
@@ -2928,7 +2962,7 @@ export interface components {
|
|
|
2928
2962
|
* Percentage
|
|
2929
2963
|
* @description The percentage of the discount.
|
|
2930
2964
|
*/
|
|
2931
|
-
percentage:
|
|
2965
|
+
percentage: components['schemas']['Percentage'];
|
|
2932
2966
|
/**
|
|
2933
2967
|
* Discounted RateCards
|
|
2934
2968
|
* @description The rate cards that the discount applies to.
|
|
@@ -5978,8 +6012,14 @@ export interface components {
|
|
|
5978
6012
|
};
|
|
5979
6013
|
/** @description PaymentTerms defines the terms for payment. */
|
|
5980
6014
|
PaymentTerms: components['schemas']['PaymentTermInstant'] | components['schemas']['PaymentTermDueDate'];
|
|
5981
|
-
/**
|
|
5982
|
-
|
|
6015
|
+
/**
|
|
6016
|
+
* Format: double
|
|
6017
|
+
* @description Numeric representation of a percentage
|
|
6018
|
+
*
|
|
6019
|
+
* 50% is represented as 50
|
|
6020
|
+
* @example 50
|
|
6021
|
+
*/
|
|
6022
|
+
Percentage: number;
|
|
5983
6023
|
/** @description A period with a start and end time. */
|
|
5984
6024
|
Period: {
|
|
5985
6025
|
/**
|
|
@@ -7268,13 +7308,9 @@ export interface components {
|
|
|
7268
7308
|
* Price
|
|
7269
7309
|
* @description The price of the rate card.
|
|
7270
7310
|
* When null, the feature or service is free.
|
|
7271
|
-
* @example {
|
|
7272
|
-
* "type": "flat",
|
|
7273
|
-
* "amount": "100",
|
|
7274
|
-
* "paymentTerm": "in_arrears"
|
|
7275
|
-
* }
|
|
7311
|
+
* @example {}
|
|
7276
7312
|
*/
|
|
7277
|
-
price:
|
|
7313
|
+
price: components['schemas']['SubscriptionItemPrice'] | null;
|
|
7278
7314
|
/** @description Describes what access is gained via the SubscriptionItem */
|
|
7279
7315
|
included?: components['schemas']['SubscriptionItemIncluded'];
|
|
7280
7316
|
/**
|
|
@@ -7291,6 +7327,8 @@ export interface components {
|
|
|
7291
7327
|
/** @description The entitlement of the Subscription Item. */
|
|
7292
7328
|
entitlement?: components['schemas']['Entitlement'];
|
|
7293
7329
|
};
|
|
7330
|
+
/** @description The price of the Subscription Item. */
|
|
7331
|
+
SubscriptionItemPrice: components['schemas']['FlatPriceWithPaymentTerm'] | components['schemas']['UnitPriceWithCommitments'] | components['schemas']['TieredPriceWithCommitments'];
|
|
7294
7332
|
/** @description Paginated response */
|
|
7295
7333
|
SubscriptionPaginatedResponse: {
|
|
7296
7334
|
/**
|
|
@@ -7419,7 +7457,7 @@ export interface components {
|
|
|
7419
7457
|
* @description Subscription status.
|
|
7420
7458
|
* @enum {string}
|
|
7421
7459
|
*/
|
|
7422
|
-
SubscriptionStatus: 'active' | 'inactive' | 'canceled';
|
|
7460
|
+
SubscriptionStatus: 'active' | 'inactive' | 'canceled' | 'scheduled';
|
|
7423
7461
|
/** @description Subscription edit timing defined when the changes should take effect.
|
|
7424
7462
|
* If the provided configuration is not supported by the subscription, an error will be returned. */
|
|
7425
7463
|
SubscriptionTiming: components['schemas']['SubscriptionTimingEnum'] | Date;
|
|
@@ -8158,6 +8196,7 @@ export type SubscriptionEditOperation = components['schemas']['SubscriptionEditO
|
|
|
8158
8196
|
export type SubscriptionExpanded = components['schemas']['SubscriptionExpanded'];
|
|
8159
8197
|
export type SubscriptionItem = components['schemas']['SubscriptionItem'];
|
|
8160
8198
|
export type SubscriptionItemIncluded = components['schemas']['SubscriptionItemIncluded'];
|
|
8199
|
+
export type SubscriptionItemPrice = components['schemas']['SubscriptionItemPrice'];
|
|
8161
8200
|
export type SubscriptionPaginatedResponse = components['schemas']['SubscriptionPaginatedResponse'];
|
|
8162
8201
|
export type SubscriptionPhaseCreate = components['schemas']['SubscriptionPhaseCreate'];
|
|
8163
8202
|
export type SubscriptionPhaseExpanded = components['schemas']['SubscriptionPhaseExpanded'];
|
|
@@ -8302,6 +8341,15 @@ export interface operations {
|
|
|
8302
8341
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
8303
8342
|
};
|
|
8304
8343
|
};
|
|
8344
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
8345
|
+
412: {
|
|
8346
|
+
headers: {
|
|
8347
|
+
[name: string]: unknown;
|
|
8348
|
+
};
|
|
8349
|
+
content: {
|
|
8350
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
8351
|
+
};
|
|
8352
|
+
};
|
|
8305
8353
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
8306
8354
|
500: {
|
|
8307
8355
|
headers: {
|
|
@@ -8387,6 +8435,15 @@ export interface operations {
|
|
|
8387
8435
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
8388
8436
|
};
|
|
8389
8437
|
};
|
|
8438
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
8439
|
+
412: {
|
|
8440
|
+
headers: {
|
|
8441
|
+
[name: string]: unknown;
|
|
8442
|
+
};
|
|
8443
|
+
content: {
|
|
8444
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
8445
|
+
};
|
|
8446
|
+
};
|
|
8390
8447
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
8391
8448
|
500: {
|
|
8392
8449
|
headers: {
|
|
@@ -8476,6 +8533,15 @@ export interface operations {
|
|
|
8476
8533
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
8477
8534
|
};
|
|
8478
8535
|
};
|
|
8536
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
8537
|
+
412: {
|
|
8538
|
+
headers: {
|
|
8539
|
+
[name: string]: unknown;
|
|
8540
|
+
};
|
|
8541
|
+
content: {
|
|
8542
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
8543
|
+
};
|
|
8544
|
+
};
|
|
8479
8545
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
8480
8546
|
500: {
|
|
8481
8547
|
headers: {
|
|
@@ -8559,6 +8625,15 @@ export interface operations {
|
|
|
8559
8625
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
8560
8626
|
};
|
|
8561
8627
|
};
|
|
8628
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
8629
|
+
412: {
|
|
8630
|
+
headers: {
|
|
8631
|
+
[name: string]: unknown;
|
|
8632
|
+
};
|
|
8633
|
+
content: {
|
|
8634
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
8635
|
+
};
|
|
8636
|
+
};
|
|
8562
8637
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
8563
8638
|
500: {
|
|
8564
8639
|
headers: {
|
|
@@ -8637,6 +8712,15 @@ export interface operations {
|
|
|
8637
8712
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
8638
8713
|
};
|
|
8639
8714
|
};
|
|
8715
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
8716
|
+
412: {
|
|
8717
|
+
headers: {
|
|
8718
|
+
[name: string]: unknown;
|
|
8719
|
+
};
|
|
8720
|
+
content: {
|
|
8721
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
8722
|
+
};
|
|
8723
|
+
};
|
|
8640
8724
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
8641
8725
|
500: {
|
|
8642
8726
|
headers: {
|
|
@@ -8726,6 +8810,15 @@ export interface operations {
|
|
|
8726
8810
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
8727
8811
|
};
|
|
8728
8812
|
};
|
|
8813
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
8814
|
+
412: {
|
|
8815
|
+
headers: {
|
|
8816
|
+
[name: string]: unknown;
|
|
8817
|
+
};
|
|
8818
|
+
content: {
|
|
8819
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
8820
|
+
};
|
|
8821
|
+
};
|
|
8729
8822
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
8730
8823
|
500: {
|
|
8731
8824
|
headers: {
|
|
@@ -8831,6 +8924,15 @@ export interface operations {
|
|
|
8831
8924
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
8832
8925
|
};
|
|
8833
8926
|
};
|
|
8927
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
8928
|
+
412: {
|
|
8929
|
+
headers: {
|
|
8930
|
+
[name: string]: unknown;
|
|
8931
|
+
};
|
|
8932
|
+
content: {
|
|
8933
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
8934
|
+
};
|
|
8935
|
+
};
|
|
8834
8936
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
8835
8937
|
500: {
|
|
8836
8938
|
headers: {
|
|
@@ -8918,6 +9020,15 @@ export interface operations {
|
|
|
8918
9020
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
8919
9021
|
};
|
|
8920
9022
|
};
|
|
9023
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
9024
|
+
412: {
|
|
9025
|
+
headers: {
|
|
9026
|
+
[name: string]: unknown;
|
|
9027
|
+
};
|
|
9028
|
+
content: {
|
|
9029
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
9030
|
+
};
|
|
9031
|
+
};
|
|
8921
9032
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
8922
9033
|
500: {
|
|
8923
9034
|
headers: {
|
|
@@ -9007,6 +9118,15 @@ export interface operations {
|
|
|
9007
9118
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
9008
9119
|
};
|
|
9009
9120
|
};
|
|
9121
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
9122
|
+
412: {
|
|
9123
|
+
headers: {
|
|
9124
|
+
[name: string]: unknown;
|
|
9125
|
+
};
|
|
9126
|
+
content: {
|
|
9127
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
9128
|
+
};
|
|
9129
|
+
};
|
|
9010
9130
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
9011
9131
|
500: {
|
|
9012
9132
|
headers: {
|
|
@@ -9090,6 +9210,15 @@ export interface operations {
|
|
|
9090
9210
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
9091
9211
|
};
|
|
9092
9212
|
};
|
|
9213
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
9214
|
+
412: {
|
|
9215
|
+
headers: {
|
|
9216
|
+
[name: string]: unknown;
|
|
9217
|
+
};
|
|
9218
|
+
content: {
|
|
9219
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
9220
|
+
};
|
|
9221
|
+
};
|
|
9093
9222
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
9094
9223
|
500: {
|
|
9095
9224
|
headers: {
|
|
@@ -9170,6 +9299,15 @@ export interface operations {
|
|
|
9170
9299
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
9171
9300
|
};
|
|
9172
9301
|
};
|
|
9302
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
9303
|
+
412: {
|
|
9304
|
+
headers: {
|
|
9305
|
+
[name: string]: unknown;
|
|
9306
|
+
};
|
|
9307
|
+
content: {
|
|
9308
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
9309
|
+
};
|
|
9310
|
+
};
|
|
9173
9311
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
9174
9312
|
500: {
|
|
9175
9313
|
headers: {
|
|
@@ -9271,6 +9409,15 @@ export interface operations {
|
|
|
9271
9409
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
9272
9410
|
};
|
|
9273
9411
|
};
|
|
9412
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
9413
|
+
412: {
|
|
9414
|
+
headers: {
|
|
9415
|
+
[name: string]: unknown;
|
|
9416
|
+
};
|
|
9417
|
+
content: {
|
|
9418
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
9419
|
+
};
|
|
9420
|
+
};
|
|
9274
9421
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
9275
9422
|
500: {
|
|
9276
9423
|
headers: {
|
|
@@ -9349,6 +9496,15 @@ export interface operations {
|
|
|
9349
9496
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
9350
9497
|
};
|
|
9351
9498
|
};
|
|
9499
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
9500
|
+
412: {
|
|
9501
|
+
headers: {
|
|
9502
|
+
[name: string]: unknown;
|
|
9503
|
+
};
|
|
9504
|
+
content: {
|
|
9505
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
9506
|
+
};
|
|
9507
|
+
};
|
|
9352
9508
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
9353
9509
|
500: {
|
|
9354
9510
|
headers: {
|
|
@@ -9427,6 +9583,15 @@ export interface operations {
|
|
|
9427
9583
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
9428
9584
|
};
|
|
9429
9585
|
};
|
|
9586
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
9587
|
+
412: {
|
|
9588
|
+
headers: {
|
|
9589
|
+
[name: string]: unknown;
|
|
9590
|
+
};
|
|
9591
|
+
content: {
|
|
9592
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
9593
|
+
};
|
|
9594
|
+
};
|
|
9430
9595
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
9431
9596
|
500: {
|
|
9432
9597
|
headers: {
|
|
@@ -9515,6 +9680,15 @@ export interface operations {
|
|
|
9515
9680
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
9516
9681
|
};
|
|
9517
9682
|
};
|
|
9683
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
9684
|
+
412: {
|
|
9685
|
+
headers: {
|
|
9686
|
+
[name: string]: unknown;
|
|
9687
|
+
};
|
|
9688
|
+
content: {
|
|
9689
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
9690
|
+
};
|
|
9691
|
+
};
|
|
9518
9692
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
9519
9693
|
500: {
|
|
9520
9694
|
headers: {
|
|
@@ -9604,6 +9778,15 @@ export interface operations {
|
|
|
9604
9778
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
9605
9779
|
};
|
|
9606
9780
|
};
|
|
9781
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
9782
|
+
412: {
|
|
9783
|
+
headers: {
|
|
9784
|
+
[name: string]: unknown;
|
|
9785
|
+
};
|
|
9786
|
+
content: {
|
|
9787
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
9788
|
+
};
|
|
9789
|
+
};
|
|
9607
9790
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
9608
9791
|
500: {
|
|
9609
9792
|
headers: {
|
|
@@ -9687,6 +9870,15 @@ export interface operations {
|
|
|
9687
9870
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
9688
9871
|
};
|
|
9689
9872
|
};
|
|
9873
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
9874
|
+
412: {
|
|
9875
|
+
headers: {
|
|
9876
|
+
[name: string]: unknown;
|
|
9877
|
+
};
|
|
9878
|
+
content: {
|
|
9879
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
9880
|
+
};
|
|
9881
|
+
};
|
|
9690
9882
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
9691
9883
|
500: {
|
|
9692
9884
|
headers: {
|
|
@@ -9772,6 +9964,15 @@ export interface operations {
|
|
|
9772
9964
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
9773
9965
|
};
|
|
9774
9966
|
};
|
|
9967
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
9968
|
+
412: {
|
|
9969
|
+
headers: {
|
|
9970
|
+
[name: string]: unknown;
|
|
9971
|
+
};
|
|
9972
|
+
content: {
|
|
9973
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
9974
|
+
};
|
|
9975
|
+
};
|
|
9775
9976
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
9776
9977
|
500: {
|
|
9777
9978
|
headers: {
|
|
@@ -9857,6 +10058,15 @@ export interface operations {
|
|
|
9857
10058
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
9858
10059
|
};
|
|
9859
10060
|
};
|
|
10061
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
10062
|
+
412: {
|
|
10063
|
+
headers: {
|
|
10064
|
+
[name: string]: unknown;
|
|
10065
|
+
};
|
|
10066
|
+
content: {
|
|
10067
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
10068
|
+
};
|
|
10069
|
+
};
|
|
9860
10070
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
9861
10071
|
500: {
|
|
9862
10072
|
headers: {
|
|
@@ -9942,6 +10152,15 @@ export interface operations {
|
|
|
9942
10152
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
9943
10153
|
};
|
|
9944
10154
|
};
|
|
10155
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
10156
|
+
412: {
|
|
10157
|
+
headers: {
|
|
10158
|
+
[name: string]: unknown;
|
|
10159
|
+
};
|
|
10160
|
+
content: {
|
|
10161
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
10162
|
+
};
|
|
10163
|
+
};
|
|
9945
10164
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
9946
10165
|
500: {
|
|
9947
10166
|
headers: {
|
|
@@ -10027,6 +10246,15 @@ export interface operations {
|
|
|
10027
10246
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
10028
10247
|
};
|
|
10029
10248
|
};
|
|
10249
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
10250
|
+
412: {
|
|
10251
|
+
headers: {
|
|
10252
|
+
[name: string]: unknown;
|
|
10253
|
+
};
|
|
10254
|
+
content: {
|
|
10255
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
10256
|
+
};
|
|
10257
|
+
};
|
|
10030
10258
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
10031
10259
|
500: {
|
|
10032
10260
|
headers: {
|
|
@@ -10116,6 +10344,15 @@ export interface operations {
|
|
|
10116
10344
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
10117
10345
|
};
|
|
10118
10346
|
};
|
|
10347
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
10348
|
+
412: {
|
|
10349
|
+
headers: {
|
|
10350
|
+
[name: string]: unknown;
|
|
10351
|
+
};
|
|
10352
|
+
content: {
|
|
10353
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
10354
|
+
};
|
|
10355
|
+
};
|
|
10119
10356
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
10120
10357
|
500: {
|
|
10121
10358
|
headers: {
|
|
@@ -10205,6 +10442,15 @@ export interface operations {
|
|
|
10205
10442
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
10206
10443
|
};
|
|
10207
10444
|
};
|
|
10445
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
10446
|
+
412: {
|
|
10447
|
+
headers: {
|
|
10448
|
+
[name: string]: unknown;
|
|
10449
|
+
};
|
|
10450
|
+
content: {
|
|
10451
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
10452
|
+
};
|
|
10453
|
+
};
|
|
10208
10454
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
10209
10455
|
500: {
|
|
10210
10456
|
headers: {
|
|
@@ -10283,6 +10529,15 @@ export interface operations {
|
|
|
10283
10529
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
10284
10530
|
};
|
|
10285
10531
|
};
|
|
10532
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
10533
|
+
412: {
|
|
10534
|
+
headers: {
|
|
10535
|
+
[name: string]: unknown;
|
|
10536
|
+
};
|
|
10537
|
+
content: {
|
|
10538
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
10539
|
+
};
|
|
10540
|
+
};
|
|
10286
10541
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
10287
10542
|
500: {
|
|
10288
10543
|
headers: {
|
|
@@ -10370,6 +10625,15 @@ export interface operations {
|
|
|
10370
10625
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
10371
10626
|
};
|
|
10372
10627
|
};
|
|
10628
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
10629
|
+
412: {
|
|
10630
|
+
headers: {
|
|
10631
|
+
[name: string]: unknown;
|
|
10632
|
+
};
|
|
10633
|
+
content: {
|
|
10634
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
10635
|
+
};
|
|
10636
|
+
};
|
|
10373
10637
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
10374
10638
|
500: {
|
|
10375
10639
|
headers: {
|
|
@@ -10459,6 +10723,15 @@ export interface operations {
|
|
|
10459
10723
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
10460
10724
|
};
|
|
10461
10725
|
};
|
|
10726
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
10727
|
+
412: {
|
|
10728
|
+
headers: {
|
|
10729
|
+
[name: string]: unknown;
|
|
10730
|
+
};
|
|
10731
|
+
content: {
|
|
10732
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
10733
|
+
};
|
|
10734
|
+
};
|
|
10462
10735
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
10463
10736
|
500: {
|
|
10464
10737
|
headers: {
|
|
@@ -10542,6 +10815,15 @@ export interface operations {
|
|
|
10542
10815
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
10543
10816
|
};
|
|
10544
10817
|
};
|
|
10818
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
10819
|
+
412: {
|
|
10820
|
+
headers: {
|
|
10821
|
+
[name: string]: unknown;
|
|
10822
|
+
};
|
|
10823
|
+
content: {
|
|
10824
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
10825
|
+
};
|
|
10826
|
+
};
|
|
10545
10827
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
10546
10828
|
500: {
|
|
10547
10829
|
headers: {
|
|
@@ -10641,6 +10923,15 @@ export interface operations {
|
|
|
10641
10923
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
10642
10924
|
};
|
|
10643
10925
|
};
|
|
10926
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
10927
|
+
412: {
|
|
10928
|
+
headers: {
|
|
10929
|
+
[name: string]: unknown;
|
|
10930
|
+
};
|
|
10931
|
+
content: {
|
|
10932
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
10933
|
+
};
|
|
10934
|
+
};
|
|
10644
10935
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
10645
10936
|
500: {
|
|
10646
10937
|
headers: {
|
|
@@ -10719,6 +11010,15 @@ export interface operations {
|
|
|
10719
11010
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
10720
11011
|
};
|
|
10721
11012
|
};
|
|
11013
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
11014
|
+
412: {
|
|
11015
|
+
headers: {
|
|
11016
|
+
[name: string]: unknown;
|
|
11017
|
+
};
|
|
11018
|
+
content: {
|
|
11019
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
11020
|
+
};
|
|
11021
|
+
};
|
|
10722
11022
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
10723
11023
|
500: {
|
|
10724
11024
|
headers: {
|
|
@@ -10811,6 +11111,15 @@ export interface operations {
|
|
|
10811
11111
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
10812
11112
|
};
|
|
10813
11113
|
};
|
|
11114
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
11115
|
+
412: {
|
|
11116
|
+
headers: {
|
|
11117
|
+
[name: string]: unknown;
|
|
11118
|
+
};
|
|
11119
|
+
content: {
|
|
11120
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
11121
|
+
};
|
|
11122
|
+
};
|
|
10814
11123
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
10815
11124
|
500: {
|
|
10816
11125
|
headers: {
|
|
@@ -10900,6 +11209,15 @@ export interface operations {
|
|
|
10900
11209
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
10901
11210
|
};
|
|
10902
11211
|
};
|
|
11212
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
11213
|
+
412: {
|
|
11214
|
+
headers: {
|
|
11215
|
+
[name: string]: unknown;
|
|
11216
|
+
};
|
|
11217
|
+
content: {
|
|
11218
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
11219
|
+
};
|
|
11220
|
+
};
|
|
10903
11221
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
10904
11222
|
500: {
|
|
10905
11223
|
headers: {
|
|
@@ -10984,6 +11302,15 @@ export interface operations {
|
|
|
10984
11302
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
10985
11303
|
};
|
|
10986
11304
|
};
|
|
11305
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
11306
|
+
412: {
|
|
11307
|
+
headers: {
|
|
11308
|
+
[name: string]: unknown;
|
|
11309
|
+
};
|
|
11310
|
+
content: {
|
|
11311
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
11312
|
+
};
|
|
11313
|
+
};
|
|
10987
11314
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
10988
11315
|
500: {
|
|
10989
11316
|
headers: {
|
|
@@ -11072,6 +11399,15 @@ export interface operations {
|
|
|
11072
11399
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
11073
11400
|
};
|
|
11074
11401
|
};
|
|
11402
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
11403
|
+
412: {
|
|
11404
|
+
headers: {
|
|
11405
|
+
[name: string]: unknown;
|
|
11406
|
+
};
|
|
11407
|
+
content: {
|
|
11408
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
11409
|
+
};
|
|
11410
|
+
};
|
|
11075
11411
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
11076
11412
|
500: {
|
|
11077
11413
|
headers: {
|
|
@@ -11162,6 +11498,15 @@ export interface operations {
|
|
|
11162
11498
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
11163
11499
|
};
|
|
11164
11500
|
};
|
|
11501
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
11502
|
+
412: {
|
|
11503
|
+
headers: {
|
|
11504
|
+
[name: string]: unknown;
|
|
11505
|
+
};
|
|
11506
|
+
content: {
|
|
11507
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
11508
|
+
};
|
|
11509
|
+
};
|
|
11165
11510
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
11166
11511
|
500: {
|
|
11167
11512
|
headers: {
|
|
@@ -11247,6 +11592,15 @@ export interface operations {
|
|
|
11247
11592
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
11248
11593
|
};
|
|
11249
11594
|
};
|
|
11595
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
11596
|
+
412: {
|
|
11597
|
+
headers: {
|
|
11598
|
+
[name: string]: unknown;
|
|
11599
|
+
};
|
|
11600
|
+
content: {
|
|
11601
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
11602
|
+
};
|
|
11603
|
+
};
|
|
11250
11604
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
11251
11605
|
500: {
|
|
11252
11606
|
headers: {
|
|
@@ -11336,6 +11690,15 @@ export interface operations {
|
|
|
11336
11690
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
11337
11691
|
};
|
|
11338
11692
|
};
|
|
11693
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
11694
|
+
412: {
|
|
11695
|
+
headers: {
|
|
11696
|
+
[name: string]: unknown;
|
|
11697
|
+
};
|
|
11698
|
+
content: {
|
|
11699
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
11700
|
+
};
|
|
11701
|
+
};
|
|
11339
11702
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
11340
11703
|
500: {
|
|
11341
11704
|
headers: {
|
|
@@ -11419,6 +11782,15 @@ export interface operations {
|
|
|
11419
11782
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
11420
11783
|
};
|
|
11421
11784
|
};
|
|
11785
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
11786
|
+
412: {
|
|
11787
|
+
headers: {
|
|
11788
|
+
[name: string]: unknown;
|
|
11789
|
+
};
|
|
11790
|
+
content: {
|
|
11791
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
11792
|
+
};
|
|
11793
|
+
};
|
|
11422
11794
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
11423
11795
|
500: {
|
|
11424
11796
|
headers: {
|
|
@@ -11493,6 +11865,15 @@ export interface operations {
|
|
|
11493
11865
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
11494
11866
|
};
|
|
11495
11867
|
};
|
|
11868
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
11869
|
+
412: {
|
|
11870
|
+
headers: {
|
|
11871
|
+
[name: string]: unknown;
|
|
11872
|
+
};
|
|
11873
|
+
content: {
|
|
11874
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
11875
|
+
};
|
|
11876
|
+
};
|
|
11496
11877
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
11497
11878
|
500: {
|
|
11498
11879
|
headers: {
|
|
@@ -11602,17 +11983,26 @@ export interface operations {
|
|
|
11602
11983
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
11603
11984
|
};
|
|
11604
11985
|
};
|
|
11605
|
-
/** @description
|
|
11606
|
-
|
|
11986
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
11987
|
+
412: {
|
|
11607
11988
|
headers: {
|
|
11608
11989
|
[name: string]: unknown;
|
|
11609
11990
|
};
|
|
11610
11991
|
content: {
|
|
11611
|
-
'application/problem+json': components['schemas']['
|
|
11992
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
11612
11993
|
};
|
|
11613
11994
|
};
|
|
11614
|
-
/** @description The server
|
|
11615
|
-
|
|
11995
|
+
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
11996
|
+
500: {
|
|
11997
|
+
headers: {
|
|
11998
|
+
[name: string]: unknown;
|
|
11999
|
+
};
|
|
12000
|
+
content: {
|
|
12001
|
+
'application/problem+json': components['schemas']['InternalServerErrorProblemResponse'];
|
|
12002
|
+
};
|
|
12003
|
+
};
|
|
12004
|
+
/** @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. */
|
|
12005
|
+
503: {
|
|
11616
12006
|
headers: {
|
|
11617
12007
|
[name: string]: unknown;
|
|
11618
12008
|
};
|
|
@@ -11687,6 +12077,15 @@ export interface operations {
|
|
|
11687
12077
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
11688
12078
|
};
|
|
11689
12079
|
};
|
|
12080
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
12081
|
+
412: {
|
|
12082
|
+
headers: {
|
|
12083
|
+
[name: string]: unknown;
|
|
12084
|
+
};
|
|
12085
|
+
content: {
|
|
12086
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
12087
|
+
};
|
|
12088
|
+
};
|
|
11690
12089
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
11691
12090
|
500: {
|
|
11692
12091
|
headers: {
|
|
@@ -11791,6 +12190,15 @@ export interface operations {
|
|
|
11791
12190
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
11792
12191
|
};
|
|
11793
12192
|
};
|
|
12193
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
12194
|
+
412: {
|
|
12195
|
+
headers: {
|
|
12196
|
+
[name: string]: unknown;
|
|
12197
|
+
};
|
|
12198
|
+
content: {
|
|
12199
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
12200
|
+
};
|
|
12201
|
+
};
|
|
11794
12202
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
11795
12203
|
500: {
|
|
11796
12204
|
headers: {
|
|
@@ -11869,6 +12277,15 @@ export interface operations {
|
|
|
11869
12277
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
11870
12278
|
};
|
|
11871
12279
|
};
|
|
12280
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
12281
|
+
412: {
|
|
12282
|
+
headers: {
|
|
12283
|
+
[name: string]: unknown;
|
|
12284
|
+
};
|
|
12285
|
+
content: {
|
|
12286
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
12287
|
+
};
|
|
12288
|
+
};
|
|
11872
12289
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
11873
12290
|
500: {
|
|
11874
12291
|
headers: {
|
|
@@ -11968,6 +12385,15 @@ export interface operations {
|
|
|
11968
12385
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
11969
12386
|
};
|
|
11970
12387
|
};
|
|
12388
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
12389
|
+
412: {
|
|
12390
|
+
headers: {
|
|
12391
|
+
[name: string]: unknown;
|
|
12392
|
+
};
|
|
12393
|
+
content: {
|
|
12394
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
12395
|
+
};
|
|
12396
|
+
};
|
|
11971
12397
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
11972
12398
|
500: {
|
|
11973
12399
|
headers: {
|
|
@@ -12046,6 +12472,15 @@ export interface operations {
|
|
|
12046
12472
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
12047
12473
|
};
|
|
12048
12474
|
};
|
|
12475
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
12476
|
+
412: {
|
|
12477
|
+
headers: {
|
|
12478
|
+
[name: string]: unknown;
|
|
12479
|
+
};
|
|
12480
|
+
content: {
|
|
12481
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
12482
|
+
};
|
|
12483
|
+
};
|
|
12049
12484
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
12050
12485
|
500: {
|
|
12051
12486
|
headers: {
|
|
@@ -12131,6 +12566,15 @@ export interface operations {
|
|
|
12131
12566
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
12132
12567
|
};
|
|
12133
12568
|
};
|
|
12569
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
12570
|
+
412: {
|
|
12571
|
+
headers: {
|
|
12572
|
+
[name: string]: unknown;
|
|
12573
|
+
};
|
|
12574
|
+
content: {
|
|
12575
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
12576
|
+
};
|
|
12577
|
+
};
|
|
12134
12578
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
12135
12579
|
500: {
|
|
12136
12580
|
headers: {
|
|
@@ -12214,6 +12658,15 @@ export interface operations {
|
|
|
12214
12658
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
12215
12659
|
};
|
|
12216
12660
|
};
|
|
12661
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
12662
|
+
412: {
|
|
12663
|
+
headers: {
|
|
12664
|
+
[name: string]: unknown;
|
|
12665
|
+
};
|
|
12666
|
+
content: {
|
|
12667
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
12668
|
+
};
|
|
12669
|
+
};
|
|
12217
12670
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
12218
12671
|
500: {
|
|
12219
12672
|
headers: {
|
|
@@ -12319,6 +12772,15 @@ export interface operations {
|
|
|
12319
12772
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
12320
12773
|
};
|
|
12321
12774
|
};
|
|
12775
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
12776
|
+
412: {
|
|
12777
|
+
headers: {
|
|
12778
|
+
[name: string]: unknown;
|
|
12779
|
+
};
|
|
12780
|
+
content: {
|
|
12781
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
12782
|
+
};
|
|
12783
|
+
};
|
|
12322
12784
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
12323
12785
|
500: {
|
|
12324
12786
|
headers: {
|
|
@@ -12411,6 +12873,15 @@ export interface operations {
|
|
|
12411
12873
|
'application/problem+json': components['schemas']['ConflictProblemResponse'];
|
|
12412
12874
|
};
|
|
12413
12875
|
};
|
|
12876
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
12877
|
+
412: {
|
|
12878
|
+
headers: {
|
|
12879
|
+
[name: string]: unknown;
|
|
12880
|
+
};
|
|
12881
|
+
content: {
|
|
12882
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
12883
|
+
};
|
|
12884
|
+
};
|
|
12414
12885
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
12415
12886
|
500: {
|
|
12416
12887
|
headers: {
|
|
@@ -12485,6 +12956,15 @@ export interface operations {
|
|
|
12485
12956
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
12486
12957
|
};
|
|
12487
12958
|
};
|
|
12959
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
12960
|
+
412: {
|
|
12961
|
+
headers: {
|
|
12962
|
+
[name: string]: unknown;
|
|
12963
|
+
};
|
|
12964
|
+
content: {
|
|
12965
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
12966
|
+
};
|
|
12967
|
+
};
|
|
12488
12968
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
12489
12969
|
500: {
|
|
12490
12970
|
headers: {
|
|
@@ -12570,6 +13050,15 @@ export interface operations {
|
|
|
12570
13050
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
12571
13051
|
};
|
|
12572
13052
|
};
|
|
13053
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
13054
|
+
412: {
|
|
13055
|
+
headers: {
|
|
13056
|
+
[name: string]: unknown;
|
|
13057
|
+
};
|
|
13058
|
+
content: {
|
|
13059
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
13060
|
+
};
|
|
13061
|
+
};
|
|
12573
13062
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
12574
13063
|
500: {
|
|
12575
13064
|
headers: {
|
|
@@ -12649,6 +13138,15 @@ export interface operations {
|
|
|
12649
13138
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
12650
13139
|
};
|
|
12651
13140
|
};
|
|
13141
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
13142
|
+
412: {
|
|
13143
|
+
headers: {
|
|
13144
|
+
[name: string]: unknown;
|
|
13145
|
+
};
|
|
13146
|
+
content: {
|
|
13147
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
13148
|
+
};
|
|
13149
|
+
};
|
|
12652
13150
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
12653
13151
|
500: {
|
|
12654
13152
|
headers: {
|
|
@@ -12725,6 +13223,15 @@ export interface operations {
|
|
|
12725
13223
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
12726
13224
|
};
|
|
12727
13225
|
};
|
|
13226
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
13227
|
+
412: {
|
|
13228
|
+
headers: {
|
|
13229
|
+
[name: string]: unknown;
|
|
13230
|
+
};
|
|
13231
|
+
content: {
|
|
13232
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
13233
|
+
};
|
|
13234
|
+
};
|
|
12728
13235
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
12729
13236
|
500: {
|
|
12730
13237
|
headers: {
|
|
@@ -12814,6 +13321,15 @@ export interface operations {
|
|
|
12814
13321
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
12815
13322
|
};
|
|
12816
13323
|
};
|
|
13324
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
13325
|
+
412: {
|
|
13326
|
+
headers: {
|
|
13327
|
+
[name: string]: unknown;
|
|
13328
|
+
};
|
|
13329
|
+
content: {
|
|
13330
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
13331
|
+
};
|
|
13332
|
+
};
|
|
12817
13333
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
12818
13334
|
500: {
|
|
12819
13335
|
headers: {
|
|
@@ -12890,6 +13406,15 @@ export interface operations {
|
|
|
12890
13406
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
12891
13407
|
};
|
|
12892
13408
|
};
|
|
13409
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
13410
|
+
412: {
|
|
13411
|
+
headers: {
|
|
13412
|
+
[name: string]: unknown;
|
|
13413
|
+
};
|
|
13414
|
+
content: {
|
|
13415
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
13416
|
+
};
|
|
13417
|
+
};
|
|
12893
13418
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
12894
13419
|
500: {
|
|
12895
13420
|
headers: {
|
|
@@ -12985,6 +13510,15 @@ export interface operations {
|
|
|
12985
13510
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
12986
13511
|
};
|
|
12987
13512
|
};
|
|
13513
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
13514
|
+
412: {
|
|
13515
|
+
headers: {
|
|
13516
|
+
[name: string]: unknown;
|
|
13517
|
+
};
|
|
13518
|
+
content: {
|
|
13519
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
13520
|
+
};
|
|
13521
|
+
};
|
|
12988
13522
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
12989
13523
|
500: {
|
|
12990
13524
|
headers: {
|
|
@@ -13059,6 +13593,15 @@ export interface operations {
|
|
|
13059
13593
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
13060
13594
|
};
|
|
13061
13595
|
};
|
|
13596
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
13597
|
+
412: {
|
|
13598
|
+
headers: {
|
|
13599
|
+
[name: string]: unknown;
|
|
13600
|
+
};
|
|
13601
|
+
content: {
|
|
13602
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
13603
|
+
};
|
|
13604
|
+
};
|
|
13062
13605
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
13063
13606
|
500: {
|
|
13064
13607
|
headers: {
|
|
@@ -13137,6 +13680,15 @@ export interface operations {
|
|
|
13137
13680
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
13138
13681
|
};
|
|
13139
13682
|
};
|
|
13683
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
13684
|
+
412: {
|
|
13685
|
+
headers: {
|
|
13686
|
+
[name: string]: unknown;
|
|
13687
|
+
};
|
|
13688
|
+
content: {
|
|
13689
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
13690
|
+
};
|
|
13691
|
+
};
|
|
13140
13692
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
13141
13693
|
500: {
|
|
13142
13694
|
headers: {
|
|
@@ -13222,6 +13774,15 @@ export interface operations {
|
|
|
13222
13774
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
13223
13775
|
};
|
|
13224
13776
|
};
|
|
13777
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
13778
|
+
412: {
|
|
13779
|
+
headers: {
|
|
13780
|
+
[name: string]: unknown;
|
|
13781
|
+
};
|
|
13782
|
+
content: {
|
|
13783
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
13784
|
+
};
|
|
13785
|
+
};
|
|
13225
13786
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
13226
13787
|
500: {
|
|
13227
13788
|
headers: {
|
|
@@ -13302,6 +13863,15 @@ export interface operations {
|
|
|
13302
13863
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
13303
13864
|
};
|
|
13304
13865
|
};
|
|
13866
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
13867
|
+
412: {
|
|
13868
|
+
headers: {
|
|
13869
|
+
[name: string]: unknown;
|
|
13870
|
+
};
|
|
13871
|
+
content: {
|
|
13872
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
13873
|
+
};
|
|
13874
|
+
};
|
|
13305
13875
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
13306
13876
|
500: {
|
|
13307
13877
|
headers: {
|
|
@@ -13376,6 +13946,15 @@ export interface operations {
|
|
|
13376
13946
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
13377
13947
|
};
|
|
13378
13948
|
};
|
|
13949
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
13950
|
+
412: {
|
|
13951
|
+
headers: {
|
|
13952
|
+
[name: string]: unknown;
|
|
13953
|
+
};
|
|
13954
|
+
content: {
|
|
13955
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
13956
|
+
};
|
|
13957
|
+
};
|
|
13379
13958
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
13380
13959
|
500: {
|
|
13381
13960
|
headers: {
|
|
@@ -13486,6 +14065,15 @@ export interface operations {
|
|
|
13486
14065
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
13487
14066
|
};
|
|
13488
14067
|
};
|
|
14068
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
14069
|
+
412: {
|
|
14070
|
+
headers: {
|
|
14071
|
+
[name: string]: unknown;
|
|
14072
|
+
};
|
|
14073
|
+
content: {
|
|
14074
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
14075
|
+
};
|
|
14076
|
+
};
|
|
13489
14077
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
13490
14078
|
500: {
|
|
13491
14079
|
headers: {
|
|
@@ -13562,6 +14150,15 @@ export interface operations {
|
|
|
13562
14150
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
13563
14151
|
};
|
|
13564
14152
|
};
|
|
14153
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
14154
|
+
412: {
|
|
14155
|
+
headers: {
|
|
14156
|
+
[name: string]: unknown;
|
|
14157
|
+
};
|
|
14158
|
+
content: {
|
|
14159
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
14160
|
+
};
|
|
14161
|
+
};
|
|
13565
14162
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
13566
14163
|
500: {
|
|
13567
14164
|
headers: {
|
|
@@ -13657,6 +14254,15 @@ export interface operations {
|
|
|
13657
14254
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
13658
14255
|
};
|
|
13659
14256
|
};
|
|
14257
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
14258
|
+
412: {
|
|
14259
|
+
headers: {
|
|
14260
|
+
[name: string]: unknown;
|
|
14261
|
+
};
|
|
14262
|
+
content: {
|
|
14263
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
14264
|
+
};
|
|
14265
|
+
};
|
|
13660
14266
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
13661
14267
|
500: {
|
|
13662
14268
|
headers: {
|
|
@@ -13735,6 +14341,15 @@ export interface operations {
|
|
|
13735
14341
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
13736
14342
|
};
|
|
13737
14343
|
};
|
|
14344
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
14345
|
+
412: {
|
|
14346
|
+
headers: {
|
|
14347
|
+
[name: string]: unknown;
|
|
14348
|
+
};
|
|
14349
|
+
content: {
|
|
14350
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
14351
|
+
};
|
|
14352
|
+
};
|
|
13738
14353
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
13739
14354
|
500: {
|
|
13740
14355
|
headers: {
|
|
@@ -13820,6 +14435,15 @@ export interface operations {
|
|
|
13820
14435
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
13821
14436
|
};
|
|
13822
14437
|
};
|
|
14438
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
14439
|
+
412: {
|
|
14440
|
+
headers: {
|
|
14441
|
+
[name: string]: unknown;
|
|
14442
|
+
};
|
|
14443
|
+
content: {
|
|
14444
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
14445
|
+
};
|
|
14446
|
+
};
|
|
13823
14447
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
13824
14448
|
500: {
|
|
13825
14449
|
headers: {
|
|
@@ -13909,6 +14533,15 @@ export interface operations {
|
|
|
13909
14533
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
13910
14534
|
};
|
|
13911
14535
|
};
|
|
14536
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
14537
|
+
412: {
|
|
14538
|
+
headers: {
|
|
14539
|
+
[name: string]: unknown;
|
|
14540
|
+
};
|
|
14541
|
+
content: {
|
|
14542
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
14543
|
+
};
|
|
14544
|
+
};
|
|
13912
14545
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
13913
14546
|
500: {
|
|
13914
14547
|
headers: {
|
|
@@ -13992,6 +14625,15 @@ export interface operations {
|
|
|
13992
14625
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
13993
14626
|
};
|
|
13994
14627
|
};
|
|
14628
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
14629
|
+
412: {
|
|
14630
|
+
headers: {
|
|
14631
|
+
[name: string]: unknown;
|
|
14632
|
+
};
|
|
14633
|
+
content: {
|
|
14634
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
14635
|
+
};
|
|
14636
|
+
};
|
|
13995
14637
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
13996
14638
|
500: {
|
|
13997
14639
|
headers: {
|
|
@@ -14101,6 +14743,15 @@ export interface operations {
|
|
|
14101
14743
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
14102
14744
|
};
|
|
14103
14745
|
};
|
|
14746
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
14747
|
+
412: {
|
|
14748
|
+
headers: {
|
|
14749
|
+
[name: string]: unknown;
|
|
14750
|
+
};
|
|
14751
|
+
content: {
|
|
14752
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
14753
|
+
};
|
|
14754
|
+
};
|
|
14104
14755
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
14105
14756
|
500: {
|
|
14106
14757
|
headers: {
|
|
@@ -14186,6 +14837,15 @@ export interface operations {
|
|
|
14186
14837
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
14187
14838
|
};
|
|
14188
14839
|
};
|
|
14840
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
14841
|
+
412: {
|
|
14842
|
+
headers: {
|
|
14843
|
+
[name: string]: unknown;
|
|
14844
|
+
};
|
|
14845
|
+
content: {
|
|
14846
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
14847
|
+
};
|
|
14848
|
+
};
|
|
14189
14849
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
14190
14850
|
500: {
|
|
14191
14851
|
headers: {
|
|
@@ -14289,6 +14949,15 @@ export interface operations {
|
|
|
14289
14949
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
14290
14950
|
};
|
|
14291
14951
|
};
|
|
14952
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
14953
|
+
412: {
|
|
14954
|
+
headers: {
|
|
14955
|
+
[name: string]: unknown;
|
|
14956
|
+
};
|
|
14957
|
+
content: {
|
|
14958
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
14959
|
+
};
|
|
14960
|
+
};
|
|
14292
14961
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
14293
14962
|
500: {
|
|
14294
14963
|
headers: {
|
|
@@ -14367,6 +15036,15 @@ export interface operations {
|
|
|
14367
15036
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
14368
15037
|
};
|
|
14369
15038
|
};
|
|
15039
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
15040
|
+
412: {
|
|
15041
|
+
headers: {
|
|
15042
|
+
[name: string]: unknown;
|
|
15043
|
+
};
|
|
15044
|
+
content: {
|
|
15045
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
15046
|
+
};
|
|
15047
|
+
};
|
|
14370
15048
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
14371
15049
|
500: {
|
|
14372
15050
|
headers: {
|
|
@@ -14452,6 +15130,15 @@ export interface operations {
|
|
|
14452
15130
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
14453
15131
|
};
|
|
14454
15132
|
};
|
|
15133
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
15134
|
+
412: {
|
|
15135
|
+
headers: {
|
|
15136
|
+
[name: string]: unknown;
|
|
15137
|
+
};
|
|
15138
|
+
content: {
|
|
15139
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
15140
|
+
};
|
|
15141
|
+
};
|
|
14455
15142
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
14456
15143
|
500: {
|
|
14457
15144
|
headers: {
|
|
@@ -14541,6 +15228,15 @@ export interface operations {
|
|
|
14541
15228
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
14542
15229
|
};
|
|
14543
15230
|
};
|
|
15231
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
15232
|
+
412: {
|
|
15233
|
+
headers: {
|
|
15234
|
+
[name: string]: unknown;
|
|
15235
|
+
};
|
|
15236
|
+
content: {
|
|
15237
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
15238
|
+
};
|
|
15239
|
+
};
|
|
14544
15240
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
14545
15241
|
500: {
|
|
14546
15242
|
headers: {
|
|
@@ -14624,6 +15320,15 @@ export interface operations {
|
|
|
14624
15320
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
14625
15321
|
};
|
|
14626
15322
|
};
|
|
15323
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
15324
|
+
412: {
|
|
15325
|
+
headers: {
|
|
15326
|
+
[name: string]: unknown;
|
|
15327
|
+
};
|
|
15328
|
+
content: {
|
|
15329
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
15330
|
+
};
|
|
15331
|
+
};
|
|
14627
15332
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
14628
15333
|
500: {
|
|
14629
15334
|
headers: {
|
|
@@ -14709,6 +15414,15 @@ export interface operations {
|
|
|
14709
15414
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
14710
15415
|
};
|
|
14711
15416
|
};
|
|
15417
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
15418
|
+
412: {
|
|
15419
|
+
headers: {
|
|
15420
|
+
[name: string]: unknown;
|
|
15421
|
+
};
|
|
15422
|
+
content: {
|
|
15423
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
15424
|
+
};
|
|
15425
|
+
};
|
|
14712
15426
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
14713
15427
|
500: {
|
|
14714
15428
|
headers: {
|
|
@@ -14785,6 +15499,15 @@ export interface operations {
|
|
|
14785
15499
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
14786
15500
|
};
|
|
14787
15501
|
};
|
|
15502
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
15503
|
+
412: {
|
|
15504
|
+
headers: {
|
|
15505
|
+
[name: string]: unknown;
|
|
15506
|
+
};
|
|
15507
|
+
content: {
|
|
15508
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
15509
|
+
};
|
|
15510
|
+
};
|
|
14788
15511
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
14789
15512
|
500: {
|
|
14790
15513
|
headers: {
|
|
@@ -14829,6 +15552,13 @@ export interface operations {
|
|
|
14829
15552
|
keyVersion?: {
|
|
14830
15553
|
[key: string]: number[];
|
|
14831
15554
|
};
|
|
15555
|
+
/** @description Only return plans with the given status.
|
|
15556
|
+
*
|
|
15557
|
+
* Usage:
|
|
15558
|
+
* - `?status=active`: return only the currently active plan
|
|
15559
|
+
* - `?status=draft`: return only the draft plan
|
|
15560
|
+
* - `?status=archived`: return only the archived plans */
|
|
15561
|
+
status?: components['schemas']['PlanStatus'][];
|
|
14832
15562
|
/** @description Filter by plan.currency attribute */
|
|
14833
15563
|
currency?: components['schemas']['CurrencyCode'][];
|
|
14834
15564
|
/** @description Start date-time in RFC 3339 format.
|
|
@@ -14886,6 +15616,15 @@ export interface operations {
|
|
|
14886
15616
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
14887
15617
|
};
|
|
14888
15618
|
};
|
|
15619
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
15620
|
+
412: {
|
|
15621
|
+
headers: {
|
|
15622
|
+
[name: string]: unknown;
|
|
15623
|
+
};
|
|
15624
|
+
content: {
|
|
15625
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
15626
|
+
};
|
|
15627
|
+
};
|
|
14889
15628
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
14890
15629
|
500: {
|
|
14891
15630
|
headers: {
|
|
@@ -14964,6 +15703,15 @@ export interface operations {
|
|
|
14964
15703
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
14965
15704
|
};
|
|
14966
15705
|
};
|
|
15706
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
15707
|
+
412: {
|
|
15708
|
+
headers: {
|
|
15709
|
+
[name: string]: unknown;
|
|
15710
|
+
};
|
|
15711
|
+
content: {
|
|
15712
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
15713
|
+
};
|
|
15714
|
+
};
|
|
14967
15715
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
14968
15716
|
500: {
|
|
14969
15717
|
headers: {
|
|
@@ -15049,6 +15797,15 @@ export interface operations {
|
|
|
15049
15797
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
15050
15798
|
};
|
|
15051
15799
|
};
|
|
15800
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
15801
|
+
412: {
|
|
15802
|
+
headers: {
|
|
15803
|
+
[name: string]: unknown;
|
|
15804
|
+
};
|
|
15805
|
+
content: {
|
|
15806
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
15807
|
+
};
|
|
15808
|
+
};
|
|
15052
15809
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
15053
15810
|
500: {
|
|
15054
15811
|
headers: {
|
|
@@ -15139,6 +15896,15 @@ export interface operations {
|
|
|
15139
15896
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
15140
15897
|
};
|
|
15141
15898
|
};
|
|
15899
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
15900
|
+
412: {
|
|
15901
|
+
headers: {
|
|
15902
|
+
[name: string]: unknown;
|
|
15903
|
+
};
|
|
15904
|
+
content: {
|
|
15905
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
15906
|
+
};
|
|
15907
|
+
};
|
|
15142
15908
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
15143
15909
|
500: {
|
|
15144
15910
|
headers: {
|
|
@@ -15228,6 +15994,15 @@ export interface operations {
|
|
|
15228
15994
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
15229
15995
|
};
|
|
15230
15996
|
};
|
|
15997
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
15998
|
+
412: {
|
|
15999
|
+
headers: {
|
|
16000
|
+
[name: string]: unknown;
|
|
16001
|
+
};
|
|
16002
|
+
content: {
|
|
16003
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
16004
|
+
};
|
|
16005
|
+
};
|
|
15231
16006
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
15232
16007
|
500: {
|
|
15233
16008
|
headers: {
|
|
@@ -15311,6 +16086,15 @@ export interface operations {
|
|
|
15311
16086
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
15312
16087
|
};
|
|
15313
16088
|
};
|
|
16089
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
16090
|
+
412: {
|
|
16091
|
+
headers: {
|
|
16092
|
+
[name: string]: unknown;
|
|
16093
|
+
};
|
|
16094
|
+
content: {
|
|
16095
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
16096
|
+
};
|
|
16097
|
+
};
|
|
15314
16098
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
15315
16099
|
500: {
|
|
15316
16100
|
headers: {
|
|
@@ -15396,6 +16180,15 @@ export interface operations {
|
|
|
15396
16180
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
15397
16181
|
};
|
|
15398
16182
|
};
|
|
16183
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
16184
|
+
412: {
|
|
16185
|
+
headers: {
|
|
16186
|
+
[name: string]: unknown;
|
|
16187
|
+
};
|
|
16188
|
+
content: {
|
|
16189
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
16190
|
+
};
|
|
16191
|
+
};
|
|
15399
16192
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
15400
16193
|
500: {
|
|
15401
16194
|
headers: {
|
|
@@ -15481,6 +16274,15 @@ export interface operations {
|
|
|
15481
16274
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
15482
16275
|
};
|
|
15483
16276
|
};
|
|
16277
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
16278
|
+
412: {
|
|
16279
|
+
headers: {
|
|
16280
|
+
[name: string]: unknown;
|
|
16281
|
+
};
|
|
16282
|
+
content: {
|
|
16283
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
16284
|
+
};
|
|
16285
|
+
};
|
|
15484
16286
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
15485
16287
|
500: {
|
|
15486
16288
|
headers: {
|
|
@@ -15589,6 +16391,15 @@ export interface operations {
|
|
|
15589
16391
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
15590
16392
|
};
|
|
15591
16393
|
};
|
|
16394
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
16395
|
+
412: {
|
|
16396
|
+
headers: {
|
|
16397
|
+
[name: string]: unknown;
|
|
16398
|
+
};
|
|
16399
|
+
content: {
|
|
16400
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
16401
|
+
};
|
|
16402
|
+
};
|
|
15592
16403
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
15593
16404
|
500: {
|
|
15594
16405
|
headers: {
|
|
@@ -15665,6 +16476,15 @@ export interface operations {
|
|
|
15665
16476
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
15666
16477
|
};
|
|
15667
16478
|
};
|
|
16479
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
16480
|
+
412: {
|
|
16481
|
+
headers: {
|
|
16482
|
+
[name: string]: unknown;
|
|
16483
|
+
};
|
|
16484
|
+
content: {
|
|
16485
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
16486
|
+
};
|
|
16487
|
+
};
|
|
15668
16488
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
15669
16489
|
500: {
|
|
15670
16490
|
headers: {
|
|
@@ -15743,6 +16563,15 @@ export interface operations {
|
|
|
15743
16563
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
15744
16564
|
};
|
|
15745
16565
|
};
|
|
16566
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
16567
|
+
412: {
|
|
16568
|
+
headers: {
|
|
16569
|
+
[name: string]: unknown;
|
|
16570
|
+
};
|
|
16571
|
+
content: {
|
|
16572
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
16573
|
+
};
|
|
16574
|
+
};
|
|
15746
16575
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
15747
16576
|
500: {
|
|
15748
16577
|
headers: {
|
|
@@ -15824,6 +16653,15 @@ export interface operations {
|
|
|
15824
16653
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
15825
16654
|
};
|
|
15826
16655
|
};
|
|
16656
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
16657
|
+
412: {
|
|
16658
|
+
headers: {
|
|
16659
|
+
[name: string]: unknown;
|
|
16660
|
+
};
|
|
16661
|
+
content: {
|
|
16662
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
16663
|
+
};
|
|
16664
|
+
};
|
|
15827
16665
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
15828
16666
|
500: {
|
|
15829
16667
|
headers: {
|
|
@@ -15911,6 +16749,15 @@ export interface operations {
|
|
|
15911
16749
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
15912
16750
|
};
|
|
15913
16751
|
};
|
|
16752
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
16753
|
+
412: {
|
|
16754
|
+
headers: {
|
|
16755
|
+
[name: string]: unknown;
|
|
16756
|
+
};
|
|
16757
|
+
content: {
|
|
16758
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
16759
|
+
};
|
|
16760
|
+
};
|
|
15914
16761
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
15915
16762
|
500: {
|
|
15916
16763
|
headers: {
|
|
@@ -15985,6 +16832,15 @@ export interface operations {
|
|
|
15985
16832
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
15986
16833
|
};
|
|
15987
16834
|
};
|
|
16835
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
16836
|
+
412: {
|
|
16837
|
+
headers: {
|
|
16838
|
+
[name: string]: unknown;
|
|
16839
|
+
};
|
|
16840
|
+
content: {
|
|
16841
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
16842
|
+
};
|
|
16843
|
+
};
|
|
15988
16844
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
15989
16845
|
500: {
|
|
15990
16846
|
headers: {
|
|
@@ -16063,6 +16919,15 @@ export interface operations {
|
|
|
16063
16919
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
16064
16920
|
};
|
|
16065
16921
|
};
|
|
16922
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
16923
|
+
412: {
|
|
16924
|
+
headers: {
|
|
16925
|
+
[name: string]: unknown;
|
|
16926
|
+
};
|
|
16927
|
+
content: {
|
|
16928
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
16929
|
+
};
|
|
16930
|
+
};
|
|
16066
16931
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
16067
16932
|
500: {
|
|
16068
16933
|
headers: {
|
|
@@ -16148,6 +17013,15 @@ export interface operations {
|
|
|
16148
17013
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
16149
17014
|
};
|
|
16150
17015
|
};
|
|
17016
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
17017
|
+
412: {
|
|
17018
|
+
headers: {
|
|
17019
|
+
[name: string]: unknown;
|
|
17020
|
+
};
|
|
17021
|
+
content: {
|
|
17022
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
17023
|
+
};
|
|
17024
|
+
};
|
|
16151
17025
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
16152
17026
|
500: {
|
|
16153
17027
|
headers: {
|
|
@@ -16222,6 +17096,15 @@ export interface operations {
|
|
|
16222
17096
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
16223
17097
|
};
|
|
16224
17098
|
};
|
|
17099
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
17100
|
+
412: {
|
|
17101
|
+
headers: {
|
|
17102
|
+
[name: string]: unknown;
|
|
17103
|
+
};
|
|
17104
|
+
content: {
|
|
17105
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
17106
|
+
};
|
|
17107
|
+
};
|
|
16225
17108
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
16226
17109
|
500: {
|
|
16227
17110
|
headers: {
|
|
@@ -16300,6 +17183,15 @@ export interface operations {
|
|
|
16300
17183
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
16301
17184
|
};
|
|
16302
17185
|
};
|
|
17186
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
17187
|
+
412: {
|
|
17188
|
+
headers: {
|
|
17189
|
+
[name: string]: unknown;
|
|
17190
|
+
};
|
|
17191
|
+
content: {
|
|
17192
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
17193
|
+
};
|
|
17194
|
+
};
|
|
16303
17195
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
16304
17196
|
500: {
|
|
16305
17197
|
headers: {
|
|
@@ -16389,6 +17281,15 @@ export interface operations {
|
|
|
16389
17281
|
'application/problem+json': components['schemas']['ConflictProblemResponse'];
|
|
16390
17282
|
};
|
|
16391
17283
|
};
|
|
17284
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
17285
|
+
412: {
|
|
17286
|
+
headers: {
|
|
17287
|
+
[name: string]: unknown;
|
|
17288
|
+
};
|
|
17289
|
+
content: {
|
|
17290
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
17291
|
+
};
|
|
17292
|
+
};
|
|
16392
17293
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
16393
17294
|
500: {
|
|
16394
17295
|
headers: {
|
|
@@ -16469,6 +17370,15 @@ export interface operations {
|
|
|
16469
17370
|
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
16470
17371
|
};
|
|
16471
17372
|
};
|
|
17373
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
17374
|
+
412: {
|
|
17375
|
+
headers: {
|
|
17376
|
+
[name: string]: unknown;
|
|
17377
|
+
};
|
|
17378
|
+
content: {
|
|
17379
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
17380
|
+
};
|
|
17381
|
+
};
|
|
16472
17382
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
16473
17383
|
500: {
|
|
16474
17384
|
headers: {
|
|
@@ -16559,6 +17469,15 @@ export interface operations {
|
|
|
16559
17469
|
'application/problem+json': components['schemas']['ConflictProblemResponse'];
|
|
16560
17470
|
};
|
|
16561
17471
|
};
|
|
17472
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
17473
|
+
412: {
|
|
17474
|
+
headers: {
|
|
17475
|
+
[name: string]: unknown;
|
|
17476
|
+
};
|
|
17477
|
+
content: {
|
|
17478
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
17479
|
+
};
|
|
17480
|
+
};
|
|
16562
17481
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
16563
17482
|
500: {
|
|
16564
17483
|
headers: {
|
|
@@ -16658,6 +17577,15 @@ export interface operations {
|
|
|
16658
17577
|
'application/problem+json': components['schemas']['ConflictProblemResponse'];
|
|
16659
17578
|
};
|
|
16660
17579
|
};
|
|
17580
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
17581
|
+
412: {
|
|
17582
|
+
headers: {
|
|
17583
|
+
[name: string]: unknown;
|
|
17584
|
+
};
|
|
17585
|
+
content: {
|
|
17586
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
17587
|
+
};
|
|
17588
|
+
};
|
|
16661
17589
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
16662
17590
|
500: {
|
|
16663
17591
|
headers: {
|
|
@@ -16746,6 +17674,15 @@ export interface operations {
|
|
|
16746
17674
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
16747
17675
|
};
|
|
16748
17676
|
};
|
|
17677
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
17678
|
+
412: {
|
|
17679
|
+
headers: {
|
|
17680
|
+
[name: string]: unknown;
|
|
17681
|
+
};
|
|
17682
|
+
content: {
|
|
17683
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
17684
|
+
};
|
|
17685
|
+
};
|
|
16749
17686
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
16750
17687
|
500: {
|
|
16751
17688
|
headers: {
|
|
@@ -16832,6 +17769,15 @@ export interface operations {
|
|
|
16832
17769
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
16833
17770
|
};
|
|
16834
17771
|
};
|
|
17772
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
17773
|
+
412: {
|
|
17774
|
+
headers: {
|
|
17775
|
+
[name: string]: unknown;
|
|
17776
|
+
};
|
|
17777
|
+
content: {
|
|
17778
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
17779
|
+
};
|
|
17780
|
+
};
|
|
16835
17781
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
16836
17782
|
500: {
|
|
16837
17783
|
headers: {
|
|
@@ -16916,6 +17862,15 @@ export interface operations {
|
|
|
16916
17862
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
16917
17863
|
};
|
|
16918
17864
|
};
|
|
17865
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
17866
|
+
412: {
|
|
17867
|
+
headers: {
|
|
17868
|
+
[name: string]: unknown;
|
|
17869
|
+
};
|
|
17870
|
+
content: {
|
|
17871
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
17872
|
+
};
|
|
17873
|
+
};
|
|
16919
17874
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
16920
17875
|
500: {
|
|
16921
17876
|
headers: {
|
|
@@ -17012,6 +17967,15 @@ export interface operations {
|
|
|
17012
17967
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
17013
17968
|
};
|
|
17014
17969
|
};
|
|
17970
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
17971
|
+
412: {
|
|
17972
|
+
headers: {
|
|
17973
|
+
[name: string]: unknown;
|
|
17974
|
+
};
|
|
17975
|
+
content: {
|
|
17976
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
17977
|
+
};
|
|
17978
|
+
};
|
|
17015
17979
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
17016
17980
|
500: {
|
|
17017
17981
|
headers: {
|
|
@@ -17100,6 +18064,15 @@ export interface operations {
|
|
|
17100
18064
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
17101
18065
|
};
|
|
17102
18066
|
};
|
|
18067
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
18068
|
+
412: {
|
|
18069
|
+
headers: {
|
|
18070
|
+
[name: string]: unknown;
|
|
18071
|
+
};
|
|
18072
|
+
content: {
|
|
18073
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
18074
|
+
};
|
|
18075
|
+
};
|
|
17103
18076
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
17104
18077
|
500: {
|
|
17105
18078
|
headers: {
|
|
@@ -17187,6 +18160,15 @@ export interface operations {
|
|
|
17187
18160
|
'application/problem+json': components['schemas']['ConflictProblemResponse'];
|
|
17188
18161
|
};
|
|
17189
18162
|
};
|
|
18163
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
18164
|
+
412: {
|
|
18165
|
+
headers: {
|
|
18166
|
+
[name: string]: unknown;
|
|
18167
|
+
};
|
|
18168
|
+
content: {
|
|
18169
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
18170
|
+
};
|
|
18171
|
+
};
|
|
17190
18172
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
17191
18173
|
500: {
|
|
17192
18174
|
headers: {
|
|
@@ -17275,6 +18257,15 @@ export interface operations {
|
|
|
17275
18257
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
17276
18258
|
};
|
|
17277
18259
|
};
|
|
18260
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
18261
|
+
412: {
|
|
18262
|
+
headers: {
|
|
18263
|
+
[name: string]: unknown;
|
|
18264
|
+
};
|
|
18265
|
+
content: {
|
|
18266
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
18267
|
+
};
|
|
18268
|
+
};
|
|
17278
18269
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
17279
18270
|
500: {
|
|
17280
18271
|
headers: {
|
|
@@ -17373,6 +18364,15 @@ export interface operations {
|
|
|
17373
18364
|
'application/problem+json': components['schemas']['ConflictProblemResponse'];
|
|
17374
18365
|
};
|
|
17375
18366
|
};
|
|
18367
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
18368
|
+
412: {
|
|
18369
|
+
headers: {
|
|
18370
|
+
[name: string]: unknown;
|
|
18371
|
+
};
|
|
18372
|
+
content: {
|
|
18373
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
18374
|
+
};
|
|
18375
|
+
};
|
|
17376
18376
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
17377
18377
|
500: {
|
|
17378
18378
|
headers: {
|
|
@@ -17474,6 +18474,15 @@ export interface operations {
|
|
|
17474
18474
|
'application/problem+json': components['schemas']['ConflictProblemResponse'];
|
|
17475
18475
|
};
|
|
17476
18476
|
};
|
|
18477
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
18478
|
+
412: {
|
|
18479
|
+
headers: {
|
|
18480
|
+
[name: string]: unknown;
|
|
18481
|
+
};
|
|
18482
|
+
content: {
|
|
18483
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
18484
|
+
};
|
|
18485
|
+
};
|
|
17477
18486
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
17478
18487
|
500: {
|
|
17479
18488
|
headers: {
|
|
@@ -17572,6 +18581,15 @@ export interface operations {
|
|
|
17572
18581
|
'application/problem+json': components['schemas']['ConflictProblemResponse'];
|
|
17573
18582
|
};
|
|
17574
18583
|
};
|
|
18584
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
18585
|
+
412: {
|
|
18586
|
+
headers: {
|
|
18587
|
+
[name: string]: unknown;
|
|
18588
|
+
};
|
|
18589
|
+
content: {
|
|
18590
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
18591
|
+
};
|
|
18592
|
+
};
|
|
17575
18593
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
17576
18594
|
500: {
|
|
17577
18595
|
headers: {
|
|
@@ -17672,6 +18690,15 @@ export interface operations {
|
|
|
17672
18690
|
'application/problem+json': components['schemas']['ConflictProblemResponse'];
|
|
17673
18691
|
};
|
|
17674
18692
|
};
|
|
18693
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
18694
|
+
412: {
|
|
18695
|
+
headers: {
|
|
18696
|
+
[name: string]: unknown;
|
|
18697
|
+
};
|
|
18698
|
+
content: {
|
|
18699
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
18700
|
+
};
|
|
18701
|
+
};
|
|
17675
18702
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
17676
18703
|
500: {
|
|
17677
18704
|
headers: {
|
|
@@ -17757,6 +18784,15 @@ export interface operations {
|
|
|
17757
18784
|
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
17758
18785
|
};
|
|
17759
18786
|
};
|
|
18787
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
18788
|
+
412: {
|
|
18789
|
+
headers: {
|
|
18790
|
+
[name: string]: unknown;
|
|
18791
|
+
};
|
|
18792
|
+
content: {
|
|
18793
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
18794
|
+
};
|
|
18795
|
+
};
|
|
17760
18796
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
17761
18797
|
500: {
|
|
17762
18798
|
headers: {
|
|
@@ -17851,6 +18887,15 @@ export interface operations {
|
|
|
17851
18887
|
'application/problem+json': components['schemas']['ConflictProblemResponse'];
|
|
17852
18888
|
};
|
|
17853
18889
|
};
|
|
18890
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
18891
|
+
412: {
|
|
18892
|
+
headers: {
|
|
18893
|
+
[name: string]: unknown;
|
|
18894
|
+
};
|
|
18895
|
+
content: {
|
|
18896
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
18897
|
+
};
|
|
18898
|
+
};
|
|
17854
18899
|
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
17855
18900
|
500: {
|
|
17856
18901
|
headers: {
|