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