@seamapi/types 1.787.0 → 1.789.0

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.
@@ -10719,6 +10719,15 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
10719
10719
  }, {
10720
10720
  message: string;
10721
10721
  type: "encoding_interrupted";
10722
+ }>, z.ZodObject<{
10723
+ type: z.ZodLiteral<"credential_being_deleted">;
10724
+ message: z.ZodString;
10725
+ }, "strip", z.ZodTypeAny, {
10726
+ message: string;
10727
+ type: "credential_being_deleted";
10728
+ }, {
10729
+ message: string;
10730
+ type: "credential_being_deleted";
10722
10731
  }>]>;
10723
10732
  }, "strip", z.ZodTypeAny, {
10724
10733
  status: "error";
@@ -10750,6 +10759,9 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
10750
10759
  } | {
10751
10760
  message: string;
10752
10761
  type: "encoding_interrupted";
10762
+ } | {
10763
+ message: string;
10764
+ type: "credential_being_deleted";
10753
10765
  };
10754
10766
  result: null;
10755
10767
  action_type: "ENCODE_CREDENTIAL";
@@ -10783,6 +10795,9 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
10783
10795
  } | {
10784
10796
  message: string;
10785
10797
  type: "encoding_interrupted";
10798
+ } | {
10799
+ message: string;
10800
+ type: "credential_being_deleted";
10786
10801
  };
10787
10802
  result: null;
10788
10803
  action_type: "ENCODE_CREDENTIAL";
@@ -22334,6 +22349,15 @@ declare const batch: z.ZodObject<{
22334
22349
  }, {
22335
22350
  message: string;
22336
22351
  type: "encoding_interrupted";
22352
+ }>, z.ZodObject<{
22353
+ type: z.ZodLiteral<"credential_being_deleted">;
22354
+ message: z.ZodString;
22355
+ }, "strip", z.ZodTypeAny, {
22356
+ message: string;
22357
+ type: "credential_being_deleted";
22358
+ }, {
22359
+ message: string;
22360
+ type: "credential_being_deleted";
22337
22361
  }>]>;
22338
22362
  }, "strip", z.ZodTypeAny, {
22339
22363
  status: "error";
@@ -22365,6 +22389,9 @@ declare const batch: z.ZodObject<{
22365
22389
  } | {
22366
22390
  message: string;
22367
22391
  type: "encoding_interrupted";
22392
+ } | {
22393
+ message: string;
22394
+ type: "credential_being_deleted";
22368
22395
  };
22369
22396
  result: null;
22370
22397
  action_type: "ENCODE_CREDENTIAL";
@@ -22398,6 +22425,9 @@ declare const batch: z.ZodObject<{
22398
22425
  } | {
22399
22426
  message: string;
22400
22427
  type: "encoding_interrupted";
22428
+ } | {
22429
+ message: string;
22430
+ type: "credential_being_deleted";
22401
22431
  };
22402
22432
  result: null;
22403
22433
  action_type: "ENCODE_CREDENTIAL";
@@ -39237,6 +39267,9 @@ declare const batch: z.ZodObject<{
39237
39267
  } | {
39238
39268
  message: string;
39239
39269
  type: "encoding_interrupted";
39270
+ } | {
39271
+ message: string;
39272
+ type: "credential_being_deleted";
39240
39273
  };
39241
39274
  result: null;
39242
39275
  action_type: "ENCODE_CREDENTIAL";
@@ -44112,6 +44145,9 @@ declare const batch: z.ZodObject<{
44112
44145
  } | {
44113
44146
  message: string;
44114
44147
  type: "encoding_interrupted";
44148
+ } | {
44149
+ message: string;
44150
+ type: "credential_being_deleted";
44115
44151
  };
44116
44152
  result: null;
44117
44153
  action_type: "ENCODE_CREDENTIAL";
@@ -136844,6 +136880,11 @@ type Routes = {
136844
136880
  type: 'encoding_interrupted';
136845
136881
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
136846
136882
  message: string;
136883
+ } | {
136884
+ /** Error type to indicate that the credential is being deleted and can no longer be encoded. */
136885
+ type: 'credential_being_deleted';
136886
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
136887
+ message: string;
136847
136888
  };
136848
136889
  } | {
136849
136890
  /** ID of the action attempt. */
@@ -139247,6 +139288,11 @@ type Routes = {
139247
139288
  type: 'encoding_interrupted';
139248
139289
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
139249
139290
  message: string;
139291
+ } | {
139292
+ /** Error type to indicate that the credential is being deleted and can no longer be encoded. */
139293
+ type: 'credential_being_deleted';
139294
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
139295
+ message: string;
139250
139296
  };
139251
139297
  } | {
139252
139298
  /** ID of the action attempt. */
@@ -143347,6 +143393,11 @@ type Routes = {
143347
143393
  type: 'encoding_interrupted';
143348
143394
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
143349
143395
  message: string;
143396
+ } | {
143397
+ /** Error type to indicate that the credential is being deleted and can no longer be encoded. */
143398
+ type: 'credential_being_deleted';
143399
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
143400
+ message: string;
143350
143401
  };
143351
143402
  } | {
143352
143403
  /** ID of the action attempt. */
@@ -145786,6 +145837,11 @@ type Routes = {
145786
145837
  type: 'encoding_interrupted';
145787
145838
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
145788
145839
  message: string;
145840
+ } | {
145841
+ /** Error type to indicate that the credential is being deleted and can no longer be encoded. */
145842
+ type: 'credential_being_deleted';
145843
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
145844
+ message: string;
145789
145845
  };
145790
145846
  } | {
145791
145847
  /** ID of the action attempt. */
@@ -150424,6 +150480,11 @@ type Routes = {
150424
150480
  type: 'encoding_interrupted';
150425
150481
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
150426
150482
  message: string;
150483
+ } | {
150484
+ /** Error type to indicate that the credential is being deleted and can no longer be encoded. */
150485
+ type: 'credential_being_deleted';
150486
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
150487
+ message: string;
150427
150488
  };
150428
150489
  } | {
150429
150490
  /** ID of the action attempt. */
@@ -157048,6 +157109,11 @@ type Routes = {
157048
157109
  type: 'encoding_interrupted';
157049
157110
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
157050
157111
  message: string;
157112
+ } | {
157113
+ /** Error type to indicate that the credential is being deleted and can no longer be encoded. */
157114
+ type: 'credential_being_deleted';
157115
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
157116
+ message: string;
157051
157117
  };
157052
157118
  } | {
157053
157119
  /** ID of the action attempt. */
@@ -158491,6 +158557,11 @@ type Routes = {
158491
158557
  type: 'encoding_interrupted';
158492
158558
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
158493
158559
  message: string;
158560
+ } | {
158561
+ /** Error type to indicate that the credential is being deleted and can no longer be encoded. */
158562
+ type: 'credential_being_deleted';
158563
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
158564
+ message: string;
158494
158565
  };
158495
158566
  } | {
158496
158567
  /** ID of the action attempt. */
@@ -160396,6 +160467,11 @@ type Routes = {
160396
160467
  type: 'encoding_interrupted';
160397
160468
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
160398
160469
  message: string;
160470
+ } | {
160471
+ /** Error type to indicate that the credential is being deleted and can no longer be encoded. */
160472
+ type: 'credential_being_deleted';
160473
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
160474
+ message: string;
160399
160475
  };
160400
160476
  } | {
160401
160477
  /** ID of the action attempt. */
@@ -163768,6 +163844,11 @@ type Routes = {
163768
163844
  type: 'encoding_interrupted';
163769
163845
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
163770
163846
  message: string;
163847
+ } | {
163848
+ /** Error type to indicate that the credential is being deleted and can no longer be encoded. */
163849
+ type: 'credential_being_deleted';
163850
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
163851
+ message: string;
163771
163852
  };
163772
163853
  } | {
163773
163854
  /** ID of the action attempt. */
@@ -165104,6 +165185,11 @@ type Routes = {
165104
165185
  type: 'encoding_interrupted';
165105
165186
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
165106
165187
  message: string;
165188
+ } | {
165189
+ /** Error type to indicate that the credential is being deleted and can no longer be encoded. */
165190
+ type: 'credential_being_deleted';
165191
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
165192
+ message: string;
165107
165193
  };
165108
165194
  } | {
165109
165195
  /** ID of the action attempt. */
@@ -177981,6 +178067,11 @@ type Routes = {
177981
178067
  type: 'encoding_interrupted';
177982
178068
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
177983
178069
  message: string;
178070
+ } | {
178071
+ /** Error type to indicate that the credential is being deleted and can no longer be encoded. */
178072
+ type: 'credential_being_deleted';
178073
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
178074
+ message: string;
177984
178075
  };
177985
178076
  } | {
177986
178077
  /** ID of the action attempt. */
@@ -184683,6 +184774,11 @@ type Routes = {
184683
184774
  type: 'encoding_interrupted';
184684
184775
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
184685
184776
  message: string;
184777
+ } | {
184778
+ /** Error type to indicate that the credential is being deleted and can no longer be encoded. */
184779
+ type: 'credential_being_deleted';
184780
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
184781
+ message: string;
184686
184782
  };
184687
184783
  } | {
184688
184784
  /** ID of the action attempt. */
@@ -186020,6 +186116,11 @@ type Routes = {
186020
186116
  type: 'encoding_interrupted';
186021
186117
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
186022
186118
  message: string;
186119
+ } | {
186120
+ /** Error type to indicate that the credential is being deleted and can no longer be encoded. */
186121
+ type: 'credential_being_deleted';
186122
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
186123
+ message: string;
186023
186124
  };
186024
186125
  } | {
186025
186126
  /** ID of the action attempt. */
@@ -187355,6 +187456,11 @@ type Routes = {
187355
187456
  type: 'encoding_interrupted';
187356
187457
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
187357
187458
  message: string;
187459
+ } | {
187460
+ /** Error type to indicate that the credential is being deleted and can no longer be encoded. */
187461
+ type: 'credential_being_deleted';
187462
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
187463
+ message: string;
187358
187464
  };
187359
187465
  } | {
187360
187466
  /** ID of the action attempt. */
@@ -188692,6 +188798,11 @@ type Routes = {
188692
188798
  type: 'encoding_interrupted';
188693
188799
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
188694
188800
  message: string;
188801
+ } | {
188802
+ /** Error type to indicate that the credential is being deleted and can no longer be encoded. */
188803
+ type: 'credential_being_deleted';
188804
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
188805
+ message: string;
188695
188806
  };
188696
188807
  } | {
188697
188808
  /** ID of the action attempt. */
@@ -192738,6 +192849,11 @@ type Routes = {
192738
192849
  type: 'encoding_interrupted';
192739
192850
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
192740
192851
  message: string;
192852
+ } | {
192853
+ /** Error type to indicate that the credential is being deleted and can no longer be encoded. */
192854
+ type: 'credential_being_deleted';
192855
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
192856
+ message: string;
192741
192857
  };
192742
192858
  } | {
192743
192859
  /** ID of the action attempt. */
@@ -194094,6 +194210,11 @@ type Routes = {
194094
194210
  type: 'encoding_interrupted';
194095
194211
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
194096
194212
  message: string;
194213
+ } | {
194214
+ /** Error type to indicate that the credential is being deleted and can no longer be encoded. */
194215
+ type: 'credential_being_deleted';
194216
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
194217
+ message: string;
194097
194218
  };
194098
194219
  } | {
194099
194220
  /** ID of the action attempt. */
@@ -195506,6 +195627,11 @@ type Routes = {
195506
195627
  type: 'encoding_interrupted';
195507
195628
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
195508
195629
  message: string;
195630
+ } | {
195631
+ /** Error type to indicate that the credential is being deleted and can no longer be encoded. */
195632
+ type: 'credential_being_deleted';
195633
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
195634
+ message: string;
195509
195635
  };
195510
195636
  } | {
195511
195637
  /** ID of the action attempt. */
@@ -197826,6 +197952,11 @@ type Routes = {
197826
197952
  type: 'encoding_interrupted';
197827
197953
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
197828
197954
  message: string;
197955
+ } | {
197956
+ /** Error type to indicate that the credential is being deleted and can no longer be encoded. */
197957
+ type: 'credential_being_deleted';
197958
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
197959
+ message: string;
197829
197960
  };
197830
197961
  } | {
197831
197962
  /** ID of the action attempt. */
@@ -202393,7 +202524,7 @@ type Routes = {
202393
202524
  created_before?: Date | undefined;
202394
202525
  /** Timestamp by which to limit returned reservations. Returns reservations created after this timestamp. */
202395
202526
  created_after?: Date | undefined;
202396
- /** Lower and upper timestamps to define an exclusive interval containing the reservations that you want to list. */
202527
+ /** Lower and upper timestamps to filter reservations whose time range overlaps with the given interval. */
202397
202528
  between?: (string | Date)[] | undefined;
202398
202529
  /** String for which to search. Filters returned reservations to include all records that satisfy a partial match using `reservation_id`, `reservation_key`, `name`, `guest_name`, or space names. */
202399
202530
  search?: string | undefined;
@@ -206705,6 +206836,11 @@ type Routes = {
206705
206836
  type: 'encoding_interrupted';
206706
206837
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
206707
206838
  message: string;
206839
+ } | {
206840
+ /** Error type to indicate that the credential is being deleted and can no longer be encoded. */
206841
+ type: 'credential_being_deleted';
206842
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
206843
+ message: string;
206708
206844
  };
206709
206845
  } | {
206710
206846
  /** ID of the action attempt. */
@@ -208046,6 +208182,11 @@ type Routes = {
208046
208182
  type: 'encoding_interrupted';
208047
208183
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
208048
208184
  message: string;
208185
+ } | {
208186
+ /** Error type to indicate that the credential is being deleted and can no longer be encoded. */
208187
+ type: 'credential_being_deleted';
208188
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
208189
+ message: string;
208049
208190
  };
208050
208191
  } | {
208051
208192
  /** ID of the action attempt. */
@@ -209493,6 +209634,11 @@ type Routes = {
209493
209634
  type: 'encoding_interrupted';
209494
209635
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
209495
209636
  message: string;
209637
+ } | {
209638
+ /** Error type to indicate that the credential is being deleted and can no longer be encoded. */
209639
+ type: 'credential_being_deleted';
209640
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
209641
+ message: string;
209496
209642
  };
209497
209643
  } | {
209498
209644
  /** ID of the action attempt. */
@@ -212190,6 +212336,11 @@ type Routes = {
212190
212336
  type: 'encoding_interrupted';
212191
212337
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
212192
212338
  message: string;
212339
+ } | {
212340
+ /** Error type to indicate that the credential is being deleted and can no longer be encoded. */
212341
+ type: 'credential_being_deleted';
212342
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
212343
+ message: string;
212193
212344
  };
212194
212345
  } | {
212195
212346
  /** ID of the action attempt. */
@@ -213535,6 +213686,11 @@ type Routes = {
213535
213686
  type: 'encoding_interrupted';
213536
213687
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
213537
213688
  message: string;
213689
+ } | {
213690
+ /** Error type to indicate that the credential is being deleted and can no longer be encoded. */
213691
+ type: 'credential_being_deleted';
213692
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
213693
+ message: string;
213538
213694
  };
213539
213695
  } | {
213540
213696
  /** ID of the action attempt. */
@@ -217571,6 +217727,11 @@ type Routes = {
217571
217727
  type: 'encoding_interrupted';
217572
217728
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
217573
217729
  message: string;
217730
+ } | {
217731
+ /** Error type to indicate that the credential is being deleted and can no longer be encoded. */
217732
+ type: 'credential_being_deleted';
217733
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
217734
+ message: string;
217574
217735
  };
217575
217736
  } | {
217576
217737
  /** ID of the action attempt. */
@@ -219111,6 +219272,11 @@ type Routes = {
219111
219272
  type: 'encoding_interrupted';
219112
219273
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
219113
219274
  message: string;
219275
+ } | {
219276
+ /** Error type to indicate that the credential is being deleted and can no longer be encoded. */
219277
+ type: 'credential_being_deleted';
219278
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
219279
+ message: string;
219114
219280
  };
219115
219281
  } | {
219116
219282
  /** ID of the action attempt. */
@@ -220479,6 +220645,11 @@ type Routes = {
220479
220645
  type: 'encoding_interrupted';
220480
220646
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
220481
220647
  message: string;
220648
+ } | {
220649
+ /** Error type to indicate that the credential is being deleted and can no longer be encoded. */
220650
+ type: 'credential_being_deleted';
220651
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
220652
+ message: string;
220482
220653
  };
220483
220654
  } | {
220484
220655
  /** ID of the action attempt. */
@@ -221959,6 +222130,11 @@ type Routes = {
221959
222130
  type: 'encoding_interrupted';
221960
222131
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
221961
222132
  message: string;
222133
+ } | {
222134
+ /** Error type to indicate that the credential is being deleted and can no longer be encoded. */
222135
+ type: 'credential_being_deleted';
222136
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
222137
+ message: string;
221962
222138
  };
221963
222139
  } | {
221964
222140
  /** ID of the action attempt. */
@@ -229610,6 +229786,11 @@ type Routes = {
229610
229786
  type: 'encoding_interrupted';
229611
229787
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
229612
229788
  message: string;
229789
+ } | {
229790
+ /** Error type to indicate that the credential is being deleted and can no longer be encoded. */
229791
+ type: 'credential_being_deleted';
229792
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
229793
+ message: string;
229613
229794
  };
229614
229795
  } | {
229615
229796
  /** ID of the action attempt. */
@@ -236490,6 +236671,11 @@ type Routes = {
236490
236671
  type: 'encoding_interrupted';
236491
236672
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
236492
236673
  message: string;
236674
+ } | {
236675
+ /** Error type to indicate that the credential is being deleted and can no longer be encoded. */
236676
+ type: 'credential_being_deleted';
236677
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
236678
+ message: string;
236493
236679
  };
236494
236680
  } | {
236495
236681
  /** ID of the action attempt. */
package/dist/index.cjs CHANGED
@@ -4411,6 +4411,16 @@ var encoding_interrupted_error = zod.z.object({
4411
4411
  }).describe(
4412
4412
  "Error to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete."
4413
4413
  );
4414
+ var credential_being_deleted_error = zod.z.object({
4415
+ type: zod.z.literal("credential_being_deleted").describe(
4416
+ "Error type to indicate that the credential is being deleted and can no longer be encoded."
4417
+ ),
4418
+ message: zod.z.string().describe(
4419
+ "Detailed description of the error. Provides insights into the issue and potentially how to rectify it."
4420
+ )
4421
+ }).describe(
4422
+ "Error to indicate that the credential is being deleted and can no longer be encoded."
4423
+ );
4414
4424
  var error4 = zod.z.union([
4415
4425
  ...common_action_attempt_errors,
4416
4426
  no_credential_on_encoder_error,
@@ -4419,7 +4429,8 @@ var error4 = zod.z.union([
4419
4429
  encoder_not_online_error,
4420
4430
  encoder_communication_timeout,
4421
4431
  bridge_disconnected_error,
4422
- encoding_interrupted_error
4432
+ encoding_interrupted_error,
4433
+ credential_being_deleted_error
4423
4434
  ]);
4424
4435
  var result4 = acs_credential.or(unmanaged_acs_credential).describe(
4425
4436
  "Result of an encoding attempt. If the attempt was successful, includes the credential data that was encoded onto the card."
@@ -13829,6 +13840,22 @@ var openapi_default = {
13829
13840
  },
13830
13841
  required: ["type", "message"],
13831
13842
  type: "object"
13843
+ },
13844
+ {
13845
+ description: "Error to indicate that the credential is being deleted and can no longer be encoded.",
13846
+ properties: {
13847
+ message: {
13848
+ description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
13849
+ type: "string"
13850
+ },
13851
+ type: {
13852
+ description: "Error type to indicate that the credential is being deleted and can no longer be encoded.",
13853
+ enum: ["credential_being_deleted"],
13854
+ type: "string"
13855
+ }
13856
+ },
13857
+ required: ["type", "message"],
13858
+ type: "object"
13832
13859
  }
13833
13860
  ]
13834
13861
  },
@@ -70288,7 +70315,7 @@ var openapi_default = {
70288
70315
  in: "query",
70289
70316
  name: "between",
70290
70317
  schema: {
70291
- description: "Lower and upper timestamps to define an exclusive interval containing the reservations that you want to list.",
70318
+ description: "Lower and upper timestamps to filter reservations whose time range overlaps with the given interval.",
70292
70319
  items: {
70293
70320
  oneOf: [
70294
70321
  { type: "string" },
@@ -70553,7 +70580,7 @@ var openapi_default = {
70553
70580
  schema: {
70554
70581
  properties: {
70555
70582
  between: {
70556
- description: "Lower and upper timestamps to define an exclusive interval containing the reservations that you want to list.",
70583
+ description: "Lower and upper timestamps to filter reservations whose time range overlaps with the given interval.",
70557
70584
  items: {
70558
70585
  oneOf: [
70559
70586
  { type: "string" },