@vrplatform/api 1.3.0-stage.1292 → 1.3.0-stage.1298

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.
@@ -523,8 +523,7 @@ export interface paths {
523
523
  };
524
524
  /** @description List recurring fee listing periods */
525
525
  get: operations["getRecurringFeeListingPeriods"];
526
- /** @description Update multiple Listing Subscription */
527
- put: operations["updateMultipleRecurringFeeListingPeriod"];
526
+ put?: never;
528
527
  /** @description Add listing period to a recurring fee */
529
528
  post: operations["createRecurringFeeListingPeriod"];
530
529
  delete?: never;
@@ -6526,8 +6525,13 @@ export interface operations {
6526
6525
  /** Format: uuid */
6527
6526
  connectionId: string;
6528
6527
  data: {
6528
+ /** Format: uuid */
6529
+ id?: string | null;
6529
6530
  uniqueRef?: string | null;
6530
6531
  name: string;
6532
+ sourceId?: string | null;
6533
+ /** @enum {string|null} */
6534
+ status?: "active" | "inactive" | null;
6531
6535
  address?: {
6532
6536
  full?: string | null;
6533
6537
  line1?: string | null;
@@ -6539,58 +6543,6 @@ export interface operations {
6539
6543
  stateCode?: string | null;
6540
6544
  countryCode?: string | null;
6541
6545
  } | null;
6542
- /** @enum {string} */
6543
- status?: "active" | "inactive";
6544
- defaultCurrency?: string | null;
6545
- activeRecurringFeePeriods?: {
6546
- startAt?: string | null;
6547
- endAt?: string | null;
6548
- /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
6549
- rate?: number | null;
6550
- /** Format: uuid */
6551
- id: string;
6552
- recurringFee: {
6553
- /** Format: uuid */
6554
- id: string;
6555
- title: string;
6556
- /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
6557
- defaultRate?: number | null;
6558
- /** @enum {string} */
6559
- type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
6560
- /**
6561
- * @default flat
6562
- * @enum {string}
6563
- */
6564
- rateType?: "flat" | "percentage";
6565
- };
6566
- }[] | null;
6567
- /** Format: uuid */
6568
- sourceId?: string | null;
6569
- initialOwnership?: {
6570
- /** @default 2025-12-11 */
6571
- startAt?: string;
6572
- endAt?: string | null;
6573
- members: {
6574
- /** Format: uuid */
6575
- contactId?: string | null;
6576
- /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
6577
- split?: number | null;
6578
- }[];
6579
- setListingInactive?: boolean | null;
6580
- /**
6581
- * @default managed
6582
- * @enum {string|null}
6583
- */
6584
- businessModel?: "managed" | "co_host" | "co_host_airbnb" | null;
6585
- /**
6586
- * @description How to handle date range conflicts with existing periods
6587
- * @default updateExisting
6588
- * @enum {string|null}
6589
- */
6590
- onConflict?: "error" | "updateExisting" | "adjustInsertingItem" | null;
6591
- } | null;
6592
- /** Format: uuid */
6593
- id?: string | null;
6594
6546
  }[];
6595
6547
  };
6596
6548
  };
@@ -6722,23 +6674,22 @@ export interface operations {
6722
6674
  } | null;
6723
6675
  } | null;
6724
6676
  activeRecurringFeePeriods?: {
6725
- /** Format: uuid */
6726
- id: string;
6727
6677
  startAt?: string | null;
6728
6678
  endAt?: string | null;
6729
- /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
6679
+ /** @description If flat fee, provide cent amount, if percentage fee provide basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
6730
6680
  rate?: number | null;
6681
+ /** Format: uuid */
6682
+ id: string;
6731
6683
  recurringFee: {
6732
- /** Format: uuid */
6733
6684
  id: string;
6734
- title: string;
6685
+ name: string;
6735
6686
  /** @enum {string} */
6736
6687
  type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
6737
6688
  /**
6738
6689
  * @default flat
6739
- * @enum {string}
6690
+ * @enum {string|null}
6740
6691
  */
6741
- rateType: "flat" | "percentage";
6692
+ rateType: "flat" | "percentage" | null;
6742
6693
  };
6743
6694
  }[] | null;
6744
6695
  source?: {
@@ -6821,10 +6772,13 @@ export interface operations {
6821
6772
  requestBody: {
6822
6773
  content: {
6823
6774
  "application/json": {
6824
- uniqueRef?: string | null;
6775
+ name?: string | null;
6776
+ /** @enum {string|null} */
6777
+ status?: "active" | "inactive" | null;
6825
6778
  /** Format: uuid */
6826
6779
  connectionId?: string | null;
6827
- name?: string;
6780
+ defaultCurrency?: string | null;
6781
+ uniqueRef?: string | null;
6828
6782
  address?: {
6829
6783
  full?: string | null;
6830
6784
  line1?: string | null;
@@ -6836,51 +6790,40 @@ export interface operations {
6836
6790
  stateCode?: string | null;
6837
6791
  countryCode?: string | null;
6838
6792
  } | null;
6839
- /** @enum {string} */
6840
- status?: "active" | "inactive";
6841
- defaultCurrency?: string | null;
6793
+ /** Format: uuid */
6794
+ sourceId?: string | null;
6842
6795
  activeRecurringFeePeriods?: {
6843
6796
  startAt?: string | null;
6844
6797
  endAt?: string | null;
6845
- /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
6798
+ /** @description If flat fee, provide cent amount, if percentage fee provide basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
6846
6799
  rate?: number | null;
6847
6800
  /** Format: uuid */
6848
6801
  id: string;
6849
6802
  recurringFee: {
6850
- /** Format: uuid */
6851
6803
  id: string;
6852
- title: string;
6853
- /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
6854
- defaultRate?: number | null;
6804
+ name: string;
6855
6805
  /** @enum {string} */
6856
6806
  type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
6857
6807
  /**
6858
6808
  * @default flat
6859
- * @enum {string}
6809
+ * @enum {string|null}
6860
6810
  */
6861
- rateType?: "flat" | "percentage";
6811
+ rateType?: "flat" | "percentage" | null;
6862
6812
  };
6863
6813
  }[] | null;
6864
- /** Format: uuid */
6865
- sourceId?: string | null;
6866
6814
  initialOwnership?: {
6867
- /** @default 2025-12-11 */
6868
- startAt?: string;
6815
+ startAt?: string | null;
6869
6816
  endAt?: string | null;
6870
- members: {
6817
+ members?: {
6871
6818
  /** Format: uuid */
6872
6819
  contactId?: string | null;
6873
6820
  /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
6874
6821
  split?: number | null;
6875
- }[];
6822
+ }[] | null;
6876
6823
  setListingInactive?: boolean | null;
6877
- /**
6878
- * @default managed
6879
- * @enum {string|null}
6880
- */
6824
+ /** @enum {string|null} */
6881
6825
  businessModel?: "managed" | "co_host" | "co_host_airbnb" | null;
6882
6826
  /**
6883
- * @description How to handle date range conflicts with existing periods
6884
6827
  * @default updateExisting
6885
6828
  * @enum {string|null}
6886
6829
  */
@@ -6943,23 +6886,22 @@ export interface operations {
6943
6886
  } | null;
6944
6887
  } | null;
6945
6888
  activeRecurringFeePeriods?: {
6946
- /** Format: uuid */
6947
- id: string;
6948
6889
  startAt?: string | null;
6949
6890
  endAt?: string | null;
6950
- /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
6891
+ /** @description If flat fee, provide cent amount, if percentage fee provide basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
6951
6892
  rate?: number | null;
6893
+ /** Format: uuid */
6894
+ id: string;
6952
6895
  recurringFee: {
6953
- /** Format: uuid */
6954
6896
  id: string;
6955
- title: string;
6897
+ name: string;
6956
6898
  /** @enum {string} */
6957
6899
  type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
6958
6900
  /**
6959
6901
  * @default flat
6960
- * @enum {string}
6902
+ * @enum {string|null}
6961
6903
  */
6962
- rateType: "flat" | "percentage";
6904
+ rateType: "flat" | "percentage" | null;
6963
6905
  };
6964
6906
  }[] | null;
6965
6907
  source?: {
@@ -7176,23 +7118,22 @@ export interface operations {
7176
7118
  } | null;
7177
7119
  } | null;
7178
7120
  activeRecurringFeePeriods?: {
7179
- /** Format: uuid */
7180
- id: string;
7181
7121
  startAt?: string | null;
7182
7122
  endAt?: string | null;
7183
- /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
7123
+ /** @description If flat fee, provide cent amount, if percentage fee provide basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
7184
7124
  rate?: number | null;
7125
+ /** Format: uuid */
7126
+ id: string;
7185
7127
  recurringFee: {
7186
- /** Format: uuid */
7187
7128
  id: string;
7188
- title: string;
7129
+ name: string;
7189
7130
  /** @enum {string} */
7190
7131
  type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
7191
7132
  /**
7192
7133
  * @default flat
7193
- * @enum {string}
7134
+ * @enum {string|null}
7194
7135
  */
7195
- rateType: "flat" | "percentage";
7136
+ rateType: "flat" | "percentage" | null;
7196
7137
  };
7197
7138
  }[] | null;
7198
7139
  source?: {
@@ -7283,10 +7224,13 @@ export interface operations {
7283
7224
  requestBody: {
7284
7225
  content: {
7285
7226
  "application/json": {
7286
- uniqueRef?: string | null;
7227
+ name?: string | null;
7228
+ /** @enum {string|null} */
7229
+ status?: "active" | "inactive" | null;
7287
7230
  /** Format: uuid */
7288
7231
  connectionId?: string | null;
7289
- name: string;
7232
+ defaultCurrency?: string | null;
7233
+ uniqueRef?: string | null;
7290
7234
  address?: {
7291
7235
  full?: string | null;
7292
7236
  line1?: string | null;
@@ -7298,51 +7242,40 @@ export interface operations {
7298
7242
  stateCode?: string | null;
7299
7243
  countryCode?: string | null;
7300
7244
  } | null;
7301
- /** @enum {string} */
7302
- status?: "active" | "inactive";
7303
- defaultCurrency?: string | null;
7245
+ /** Format: uuid */
7246
+ sourceId?: string | null;
7304
7247
  activeRecurringFeePeriods?: {
7305
7248
  startAt?: string | null;
7306
7249
  endAt?: string | null;
7307
- /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
7250
+ /** @description If flat fee, provide cent amount, if percentage fee provide basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
7308
7251
  rate?: number | null;
7309
7252
  /** Format: uuid */
7310
7253
  id: string;
7311
7254
  recurringFee: {
7312
- /** Format: uuid */
7313
7255
  id: string;
7314
- title: string;
7315
- /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
7316
- defaultRate?: number | null;
7256
+ name: string;
7317
7257
  /** @enum {string} */
7318
7258
  type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
7319
7259
  /**
7320
7260
  * @default flat
7321
- * @enum {string}
7261
+ * @enum {string|null}
7322
7262
  */
7323
- rateType?: "flat" | "percentage";
7263
+ rateType?: "flat" | "percentage" | null;
7324
7264
  };
7325
7265
  }[] | null;
7326
- /** Format: uuid */
7327
- sourceId?: string | null;
7328
7266
  initialOwnership?: {
7329
- /** @default 2025-12-11 */
7330
- startAt?: string;
7267
+ startAt?: string | null;
7331
7268
  endAt?: string | null;
7332
- members: {
7269
+ members?: {
7333
7270
  /** Format: uuid */
7334
7271
  contactId?: string | null;
7335
7272
  /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
7336
7273
  split?: number | null;
7337
- }[];
7274
+ }[] | null;
7338
7275
  setListingInactive?: boolean | null;
7339
- /**
7340
- * @default managed
7341
- * @enum {string|null}
7342
- */
7276
+ /** @enum {string|null} */
7343
7277
  businessModel?: "managed" | "co_host" | "co_host_airbnb" | null;
7344
7278
  /**
7345
- * @description How to handle date range conflicts with existing periods
7346
7279
  * @default updateExisting
7347
7280
  * @enum {string|null}
7348
7281
  */
@@ -7380,44 +7313,47 @@ export interface operations {
7380
7313
  status: "active" | "inactive";
7381
7314
  defaultCurrency?: string | null;
7382
7315
  activeOwnership?: {
7383
- /** @default 2025-12-11 */
7316
+ /** Format: uuid */
7317
+ id: string;
7384
7318
  startAt: string;
7385
7319
  endAt?: string | null;
7386
- setListingInactive?: boolean | null;
7387
- /**
7388
- * @default managed
7389
- * @enum {string|null}
7390
- */
7391
- businessModel: "managed" | "co_host" | "co_host_airbnb" | null;
7392
7320
  members: {
7393
7321
  /** Format: uuid */
7394
7322
  contactId?: string | null;
7395
7323
  /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
7396
7324
  split?: number | null;
7397
7325
  }[];
7398
- /** Format: uuid */
7399
- id: string;
7326
+ setListingInactive?: boolean | null;
7327
+ /** @enum {string} */
7328
+ businessModel: "managed" | "co_host" | "co_host_airbnb";
7329
+ lock?: {
7330
+ /** @enum {string} */
7331
+ status: "locked" | "unlocked";
7332
+ booksClosed?: {
7333
+ date: string;
7334
+ } | null;
7335
+ ownerStatement?: {
7336
+ ids: string[];
7337
+ } | null;
7338
+ } | null;
7400
7339
  } | null;
7401
7340
  activeRecurringFeePeriods?: {
7402
7341
  startAt?: string | null;
7403
7342
  endAt?: string | null;
7404
- /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
7343
+ /** @description If flat fee, provide cent amount, if percentage fee provide basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
7405
7344
  rate?: number | null;
7406
7345
  /** Format: uuid */
7407
7346
  id: string;
7408
7347
  recurringFee: {
7409
- /** Format: uuid */
7410
7348
  id: string;
7411
- title: string;
7412
- /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
7413
- defaultRate?: number | null;
7349
+ name: string;
7414
7350
  /** @enum {string} */
7415
7351
  type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
7416
7352
  /**
7417
7353
  * @default flat
7418
- * @enum {string}
7354
+ * @enum {string|null}
7419
7355
  */
7420
- rateType: "flat" | "percentage";
7356
+ rateType: "flat" | "percentage" | null;
7421
7357
  };
7422
7358
  }[] | null;
7423
7359
  source?: {
@@ -9076,7 +9012,7 @@ export interface operations {
9076
9012
  uniqueRef?: string | null;
9077
9013
  name?: string;
9078
9014
  formula: string;
9079
- /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9015
+ /** @description If flat fee, provide cent amount, if percentage fee provide basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9080
9016
  defaultRate?: number | null;
9081
9017
  icon?: string | null;
9082
9018
  /** @enum {string} */
@@ -9106,7 +9042,7 @@ export interface operations {
9106
9042
  listingId: string;
9107
9043
  startAt?: string | null;
9108
9044
  endAt?: string | null;
9109
- /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9045
+ /** @description If flat fee, provide cent amount, if percentage fee provide basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9110
9046
  rate?: number | null;
9111
9047
  }[] | null;
9112
9048
  id?: string | null;
@@ -9282,26 +9218,24 @@ export interface operations {
9282
9218
  content: {
9283
9219
  "application/json": {
9284
9220
  data: {
9221
+ /** Format: uuid */
9285
9222
  listingId: string;
9286
9223
  startAt?: string | null;
9287
9224
  endAt?: string | null;
9288
- /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9225
+ /** @description If flat fee, provide cent amount, if percentage fee provide basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9289
9226
  rate?: number | null;
9290
9227
  /** Format: uuid */
9291
9228
  id: string;
9292
9229
  recurringFee: {
9293
- /** Format: uuid */
9294
9230
  id: string;
9295
- title: string;
9296
- /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9297
- defaultRate?: number | null;
9231
+ name: string;
9298
9232
  /** @enum {string} */
9299
9233
  type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
9300
9234
  /**
9301
9235
  * @default flat
9302
- * @enum {string}
9236
+ * @enum {string|null}
9303
9237
  */
9304
- rateType: "flat" | "percentage";
9238
+ rateType: "flat" | "percentage" | null;
9305
9239
  };
9306
9240
  }[];
9307
9241
  pagination: {
@@ -9363,116 +9297,6 @@ export interface operations {
9363
9297
  };
9364
9298
  };
9365
9299
  };
9366
- updateMultipleRecurringFeeListingPeriod: {
9367
- parameters: {
9368
- query?: never;
9369
- header?: {
9370
- "X-Team-Id"?: string;
9371
- };
9372
- path?: never;
9373
- cookie?: never;
9374
- };
9375
- requestBody: {
9376
- content: {
9377
- "application/json": {
9378
- updates: {
9379
- startAt?: string | null;
9380
- endAt?: string | null;
9381
- /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9382
- rate?: number | null;
9383
- /** Format: uuid */
9384
- id: string;
9385
- }[];
9386
- /**
9387
- * @description How to handle date range conflicts with existing periods
9388
- * @default updateExisting
9389
- * @enum {string|null}
9390
- */
9391
- onConflict?: "error" | "updateExisting" | "adjustInsertingItem" | "closeExistingPeriods" | null;
9392
- };
9393
- };
9394
- };
9395
- responses: {
9396
- /** @description Successful response */
9397
- 200: {
9398
- headers: {
9399
- [name: string]: unknown;
9400
- };
9401
- content: {
9402
- "application/json": {
9403
- data: {
9404
- listingId: string;
9405
- startAt?: string | null;
9406
- endAt?: string | null;
9407
- /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9408
- rate?: number | null;
9409
- /** Format: uuid */
9410
- id: string;
9411
- recurringFee: {
9412
- /** Format: uuid */
9413
- id: string;
9414
- title: string;
9415
- /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9416
- defaultRate?: number | null;
9417
- /** @enum {string} */
9418
- type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
9419
- /**
9420
- * @default flat
9421
- * @enum {string}
9422
- */
9423
- rateType: "flat" | "percentage";
9424
- };
9425
- }[];
9426
- };
9427
- };
9428
- };
9429
- /** @description Invalid input data */
9430
- 400: {
9431
- headers: {
9432
- [name: string]: unknown;
9433
- };
9434
- content: {
9435
- "application/json": components["schemas"]["error.BAD_REQUEST"];
9436
- };
9437
- };
9438
- /** @description Authorization not provided */
9439
- 401: {
9440
- headers: {
9441
- [name: string]: unknown;
9442
- };
9443
- content: {
9444
- "application/json": components["schemas"]["error.UNAUTHORIZED"];
9445
- };
9446
- };
9447
- /** @description Insufficient access */
9448
- 403: {
9449
- headers: {
9450
- [name: string]: unknown;
9451
- };
9452
- content: {
9453
- "application/json": components["schemas"]["error.FORBIDDEN"];
9454
- };
9455
- };
9456
- /** @description Not found */
9457
- 404: {
9458
- headers: {
9459
- [name: string]: unknown;
9460
- };
9461
- content: {
9462
- "application/json": components["schemas"]["error.NOT_FOUND"];
9463
- };
9464
- };
9465
- /** @description Internal server error */
9466
- 500: {
9467
- headers: {
9468
- [name: string]: unknown;
9469
- };
9470
- content: {
9471
- "application/json": components["schemas"]["error.INTERNAL_SERVER_ERROR"];
9472
- };
9473
- };
9474
- };
9475
- };
9476
9300
  createRecurringFeeListingPeriod: {
9477
9301
  parameters: {
9478
9302
  query?: never;
@@ -9485,18 +9309,16 @@ export interface operations {
9485
9309
  requestBody: {
9486
9310
  content: {
9487
9311
  "application/json": {
9312
+ /** Format: uuid */
9313
+ recurringFeeId: string;
9314
+ /** Format: uuid */
9488
9315
  listingId: string;
9489
9316
  startAt?: string | null;
9490
9317
  endAt?: string | null;
9491
- /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9318
+ /** @description If flat fee, provide cent amount, if percentage fee provide basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9492
9319
  rate?: number | null;
9493
- recurringFeeId: string;
9494
- /**
9495
- * @description How to handle date range conflicts with existing periods
9496
- * @default updateExisting
9497
- * @enum {string|null}
9498
- */
9499
- onConflict?: "error" | "updateExisting" | "adjustInsertingItem" | "closeExistingPeriods" | null;
9320
+ /** @enum {string|null} */
9321
+ onConflict?: "error" | "closeExistingPeriods" | "updateExisting" | null;
9500
9322
  };
9501
9323
  };
9502
9324
  };
@@ -9508,26 +9330,24 @@ export interface operations {
9508
9330
  };
9509
9331
  content: {
9510
9332
  "application/json": {
9333
+ /** Format: uuid */
9511
9334
  listingId: string;
9512
9335
  startAt?: string | null;
9513
9336
  endAt?: string | null;
9514
- /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9337
+ /** @description If flat fee, provide cent amount, if percentage fee provide basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9515
9338
  rate?: number | null;
9516
9339
  /** Format: uuid */
9517
9340
  id: string;
9518
9341
  recurringFee: {
9519
- /** Format: uuid */
9520
9342
  id: string;
9521
- title: string;
9522
- /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9523
- defaultRate?: number | null;
9343
+ name: string;
9524
9344
  /** @enum {string} */
9525
9345
  type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
9526
9346
  /**
9527
9347
  * @default flat
9528
- * @enum {string}
9348
+ * @enum {string|null}
9529
9349
  */
9530
- rateType: "flat" | "percentage";
9350
+ rateType: "flat" | "percentage" | null;
9531
9351
  };
9532
9352
  };
9533
9353
  };
@@ -9584,16 +9404,14 @@ export interface operations {
9584
9404
  requestBody: {
9585
9405
  content: {
9586
9406
  "application/json": {
9407
+ /** Format: uuid */
9408
+ listingId?: string;
9587
9409
  startAt?: string | null;
9588
9410
  endAt?: string | null;
9589
- /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9411
+ /** @description If flat fee, provide cent amount, if percentage fee provide basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9590
9412
  rate?: number | null;
9591
- /**
9592
- * @description How to handle date range conflicts with existing periods
9593
- * @default updateExisting
9594
- * @enum {string|null}
9595
- */
9596
- onConflict?: "error" | "updateExisting" | "adjustInsertingItem" | "closeExistingPeriods" | null;
9413
+ /** @enum {string|null} */
9414
+ onConflict?: "error" | "closeExistingPeriods" | "updateExisting" | null;
9597
9415
  };
9598
9416
  };
9599
9417
  };
@@ -9605,26 +9423,24 @@ export interface operations {
9605
9423
  };
9606
9424
  content: {
9607
9425
  "application/json": {
9426
+ /** Format: uuid */
9608
9427
  listingId: string;
9609
9428
  startAt?: string | null;
9610
9429
  endAt?: string | null;
9611
- /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9430
+ /** @description If flat fee, provide cent amount, if percentage fee provide basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9612
9431
  rate?: number | null;
9613
9432
  /** Format: uuid */
9614
9433
  id: string;
9615
9434
  recurringFee: {
9616
- /** Format: uuid */
9617
9435
  id: string;
9618
- title: string;
9619
- /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9620
- defaultRate?: number | null;
9436
+ name: string;
9621
9437
  /** @enum {string} */
9622
9438
  type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
9623
9439
  /**
9624
9440
  * @default flat
9625
- * @enum {string}
9441
+ * @enum {string|null}
9626
9442
  */
9627
- rateType: "flat" | "percentage";
9443
+ rateType: "flat" | "percentage" | null;
9628
9444
  };
9629
9445
  };
9630
9446
  };
@@ -9772,7 +9588,7 @@ export interface operations {
9772
9588
  "application/json": {
9773
9589
  name: string;
9774
9590
  formula: string;
9775
- /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9591
+ /** @description If flat fee, provide cent amount, if percentage fee provide basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9776
9592
  defaultRate?: number | null;
9777
9593
  icon?: string | null;
9778
9594
  /** @enum {string} */
@@ -9902,7 +9718,7 @@ export interface operations {
9902
9718
  uniqueRef?: string | null;
9903
9719
  name?: string;
9904
9720
  formula?: string;
9905
- /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9721
+ /** @description If flat fee, provide cent amount, if percentage fee provide basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9906
9722
  defaultRate?: number | null;
9907
9723
  icon?: string | null;
9908
9724
  /** @enum {string} */
@@ -9932,7 +9748,7 @@ export interface operations {
9932
9748
  listingId: string;
9933
9749
  startAt?: string | null;
9934
9750
  endAt?: string | null;
9935
- /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9751
+ /** @description If flat fee, provide cent amount, if percentage fee provide basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9936
9752
  rate?: number | null;
9937
9753
  }[] | null;
9938
9754
  };
@@ -9948,7 +9764,7 @@ export interface operations {
9948
9764
  "application/json": {
9949
9765
  name: string;
9950
9766
  formula: string;
9951
- /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9767
+ /** @description If flat fee, provide cent amount, if percentage fee provide basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9952
9768
  defaultRate?: number | null;
9953
9769
  icon?: string | null;
9954
9770
  /** @enum {string} */
@@ -10164,7 +9980,7 @@ export interface operations {
10164
9980
  data: {
10165
9981
  name: string;
10166
9982
  formula: string;
10167
- /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9983
+ /** @description If flat fee, provide cent amount, if percentage fee provide basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
10168
9984
  defaultRate?: number | null;
10169
9985
  icon?: string | null;
10170
9986
  /** @enum {string} */
@@ -10302,7 +10118,7 @@ export interface operations {
10302
10118
  uniqueRef?: string | null;
10303
10119
  name: string;
10304
10120
  formula: string;
10305
- /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
10121
+ /** @description If flat fee, provide cent amount, if percentage fee provide basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
10306
10122
  defaultRate?: number | null;
10307
10123
  icon?: string | null;
10308
10124
  /** @enum {string} */
@@ -10332,7 +10148,7 @@ export interface operations {
10332
10148
  listingId: string;
10333
10149
  startAt?: string | null;
10334
10150
  endAt?: string | null;
10335
- /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
10151
+ /** @description If flat fee, provide cent amount, if percentage fee provide basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
10336
10152
  rate?: number | null;
10337
10153
  }[] | null;
10338
10154
  };
@@ -10348,7 +10164,7 @@ export interface operations {
10348
10164
  "application/json": {
10349
10165
  name: string;
10350
10166
  formula: string;
10351
- /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
10167
+ /** @description If flat fee, provide cent amount, if percentage fee provide basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
10352
10168
  defaultRate?: number | null;
10353
10169
  icon?: string | null;
10354
10170
  /** @enum {string} */
@@ -11667,7 +11483,7 @@ export interface operations {
11667
11483
  /** @enum {string} */
11668
11484
  severity: "error";
11669
11485
  context: {
11670
- journalEntryIds: string[];
11486
+ affected: number;
11671
11487
  };
11672
11488
  message: string;
11673
11489
  } | {
@@ -11725,7 +11541,6 @@ export interface operations {
11725
11541
  /** @enum {string} */
11726
11542
  severity: "warning";
11727
11543
  context: {
11728
- journalEntryIds: string[];
11729
11544
  affected: number;
11730
11545
  };
11731
11546
  message: string;
@@ -12227,7 +12042,7 @@ export interface operations {
12227
12042
  /** @enum {string} */
12228
12043
  severity: "error";
12229
12044
  context: {
12230
- journalEntryIds: string[];
12045
+ affected: number;
12231
12046
  };
12232
12047
  message: string;
12233
12048
  } | {
@@ -12285,7 +12100,6 @@ export interface operations {
12285
12100
  /** @enum {string} */
12286
12101
  severity: "warning";
12287
12102
  context: {
12288
- journalEntryIds: string[];
12289
12103
  affected: number;
12290
12104
  };
12291
12105
  message: string;
@@ -12699,7 +12513,7 @@ export interface operations {
12699
12513
  /** @enum {string} */
12700
12514
  severity: "error";
12701
12515
  context: {
12702
- journalEntryIds: string[];
12516
+ affected: number;
12703
12517
  };
12704
12518
  message: string;
12705
12519
  } | {
@@ -12757,7 +12571,6 @@ export interface operations {
12757
12571
  /** @enum {string} */
12758
12572
  severity: "warning";
12759
12573
  context: {
12760
- journalEntryIds: string[];
12761
12574
  affected: number;
12762
12575
  };
12763
12576
  message: string;
@@ -13254,7 +13067,7 @@ export interface operations {
13254
13067
  /** @enum {string} */
13255
13068
  severity: "error";
13256
13069
  context: {
13257
- journalEntryIds: string[];
13070
+ affected: number;
13258
13071
  };
13259
13072
  message: string;
13260
13073
  } | {
@@ -13312,7 +13125,6 @@ export interface operations {
13312
13125
  /** @enum {string} */
13313
13126
  severity: "warning";
13314
13127
  context: {
13315
- journalEntryIds: string[];
13316
13128
  affected: number;
13317
13129
  };
13318
13130
  message: string;
@@ -13512,7 +13324,7 @@ export interface operations {
13512
13324
  /** @enum {string} */
13513
13325
  severity: "error";
13514
13326
  context: {
13515
- journalEntryIds: string[];
13327
+ affected: number;
13516
13328
  };
13517
13329
  message: string;
13518
13330
  } | {
@@ -13570,7 +13382,6 @@ export interface operations {
13570
13382
  /** @enum {string} */
13571
13383
  severity: "warning";
13572
13384
  context: {
13573
- journalEntryIds: string[];
13574
13385
  affected: number;
13575
13386
  };
13576
13387
  message: string;
@@ -17134,6 +16945,14 @@ export interface operations {
17134
16945
  updatedAt: string;
17135
16946
  message?: string | null;
17136
16947
  } | null;
16948
+ enabledFlows: {
16949
+ /** Format: uuid */
16950
+ id: string;
16951
+ title: string;
16952
+ isPublic: boolean;
16953
+ /** @enum {string|null} */
16954
+ type: "push" | "pull" | null;
16955
+ }[];
17137
16956
  };
17138
16957
  };
17139
16958
  };
@@ -17311,6 +17130,14 @@ export interface operations {
17311
17130
  updatedAt: string;
17312
17131
  message?: string | null;
17313
17132
  } | null;
17133
+ enabledFlows: {
17134
+ /** Format: uuid */
17135
+ id: string;
17136
+ title: string;
17137
+ isPublic: boolean;
17138
+ /** @enum {string|null} */
17139
+ type: "push" | "pull" | null;
17140
+ }[];
17314
17141
  }[];
17315
17142
  pagination: {
17316
17143
  /** @default 100 */
@@ -17424,6 +17251,14 @@ export interface operations {
17424
17251
  updatedAt: string;
17425
17252
  message?: string | null;
17426
17253
  } | null;
17254
+ enabledFlows: {
17255
+ /** Format: uuid */
17256
+ id: string;
17257
+ title: string;
17258
+ isPublic: boolean;
17259
+ /** @enum {string|null} */
17260
+ type: "push" | "pull" | null;
17261
+ }[];
17427
17262
  };
17428
17263
  };
17429
17264
  };