@vrplatform/api 1.3.0-stage.1294 → 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.
@@ -6525,8 +6525,13 @@ export interface operations {
6525
6525
  /** Format: uuid */
6526
6526
  connectionId: string;
6527
6527
  data: {
6528
+ /** Format: uuid */
6529
+ id?: string | null;
6528
6530
  uniqueRef?: string | null;
6529
6531
  name: string;
6532
+ sourceId?: string | null;
6533
+ /** @enum {string|null} */
6534
+ status?: "active" | "inactive" | null;
6530
6535
  address?: {
6531
6536
  full?: string | null;
6532
6537
  line1?: string | null;
@@ -6538,56 +6543,6 @@ export interface operations {
6538
6543
  stateCode?: string | null;
6539
6544
  countryCode?: string | null;
6540
6545
  } | null;
6541
- /** @enum {string} */
6542
- status?: "active" | "inactive";
6543
- defaultCurrency?: string | null;
6544
- activeRecurringFeePeriods?: {
6545
- /** Format: uuid */
6546
- id: string;
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
- recurringFee: {
6552
- /** Format: uuid */
6553
- id: string;
6554
- title: string;
6555
- /** @enum {string} */
6556
- type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
6557
- /**
6558
- * @default flat
6559
- * @enum {string}
6560
- */
6561
- rateType?: "flat" | "percentage";
6562
- };
6563
- }[] | null;
6564
- /** Format: uuid */
6565
- sourceId?: string | null;
6566
- initialOwnership?: {
6567
- /** @default 2025-12-11 */
6568
- startAt?: string;
6569
- endAt?: string | null;
6570
- members: {
6571
- /** Format: uuid */
6572
- contactId?: string | null;
6573
- /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
6574
- split?: number | null;
6575
- }[];
6576
- setListingInactive?: boolean | null;
6577
- /**
6578
- * @default managed
6579
- * @enum {string|null}
6580
- */
6581
- businessModel?: "managed" | "co_host" | "co_host_airbnb" | null;
6582
- /**
6583
- * @description How to handle date range conflicts with existing periods
6584
- * @default updateExisting
6585
- * @enum {string|null}
6586
- */
6587
- onConflict?: "error" | "updateExisting" | "adjustInsertingItem" | null;
6588
- } | null;
6589
- /** Format: uuid */
6590
- id?: string | null;
6591
6546
  }[];
6592
6547
  };
6593
6548
  };
@@ -6719,23 +6674,22 @@ export interface operations {
6719
6674
  } | null;
6720
6675
  } | null;
6721
6676
  activeRecurringFeePeriods?: {
6722
- /** Format: uuid */
6723
- id: string;
6724
6677
  startAt?: string | null;
6725
6678
  endAt?: string | null;
6726
- /** @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%) */
6727
6680
  rate?: number | null;
6681
+ /** Format: uuid */
6682
+ id: string;
6728
6683
  recurringFee: {
6729
- /** Format: uuid */
6730
6684
  id: string;
6731
- title: string;
6685
+ name: string;
6732
6686
  /** @enum {string} */
6733
6687
  type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
6734
6688
  /**
6735
6689
  * @default flat
6736
- * @enum {string}
6690
+ * @enum {string|null}
6737
6691
  */
6738
- rateType: "flat" | "percentage";
6692
+ rateType: "flat" | "percentage" | null;
6739
6693
  };
6740
6694
  }[] | null;
6741
6695
  source?: {
@@ -6818,10 +6772,13 @@ export interface operations {
6818
6772
  requestBody: {
6819
6773
  content: {
6820
6774
  "application/json": {
6821
- uniqueRef?: string | null;
6775
+ name?: string | null;
6776
+ /** @enum {string|null} */
6777
+ status?: "active" | "inactive" | null;
6822
6778
  /** Format: uuid */
6823
6779
  connectionId?: string | null;
6824
- name?: string;
6780
+ defaultCurrency?: string | null;
6781
+ uniqueRef?: string | null;
6825
6782
  address?: {
6826
6783
  full?: string | null;
6827
6784
  line1?: string | null;
@@ -6833,49 +6790,40 @@ export interface operations {
6833
6790
  stateCode?: string | null;
6834
6791
  countryCode?: string | null;
6835
6792
  } | null;
6836
- /** @enum {string} */
6837
- status?: "active" | "inactive";
6838
- defaultCurrency?: string | null;
6793
+ /** Format: uuid */
6794
+ sourceId?: string | null;
6839
6795
  activeRecurringFeePeriods?: {
6840
- /** Format: uuid */
6841
- id: string;
6842
6796
  startAt?: string | null;
6843
6797
  endAt?: string | null;
6844
- /** @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%) */
6845
6799
  rate?: number | null;
6800
+ /** Format: uuid */
6801
+ id: string;
6846
6802
  recurringFee: {
6847
- /** Format: uuid */
6848
6803
  id: string;
6849
- title: string;
6804
+ name: string;
6850
6805
  /** @enum {string} */
6851
6806
  type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
6852
6807
  /**
6853
6808
  * @default flat
6854
- * @enum {string}
6809
+ * @enum {string|null}
6855
6810
  */
6856
- rateType?: "flat" | "percentage";
6811
+ rateType?: "flat" | "percentage" | null;
6857
6812
  };
6858
6813
  }[] | null;
6859
- /** Format: uuid */
6860
- sourceId?: string | null;
6861
6814
  initialOwnership?: {
6862
- /** @default 2025-12-11 */
6863
- startAt?: string;
6815
+ startAt?: string | null;
6864
6816
  endAt?: string | null;
6865
- members: {
6817
+ members?: {
6866
6818
  /** Format: uuid */
6867
6819
  contactId?: string | null;
6868
6820
  /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
6869
6821
  split?: number | null;
6870
- }[];
6822
+ }[] | null;
6871
6823
  setListingInactive?: boolean | null;
6872
- /**
6873
- * @default managed
6874
- * @enum {string|null}
6875
- */
6824
+ /** @enum {string|null} */
6876
6825
  businessModel?: "managed" | "co_host" | "co_host_airbnb" | null;
6877
6826
  /**
6878
- * @description How to handle date range conflicts with existing periods
6879
6827
  * @default updateExisting
6880
6828
  * @enum {string|null}
6881
6829
  */
@@ -6938,23 +6886,22 @@ export interface operations {
6938
6886
  } | null;
6939
6887
  } | null;
6940
6888
  activeRecurringFeePeriods?: {
6941
- /** Format: uuid */
6942
- id: string;
6943
6889
  startAt?: string | null;
6944
6890
  endAt?: string | null;
6945
- /** @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%) */
6946
6892
  rate?: number | null;
6893
+ /** Format: uuid */
6894
+ id: string;
6947
6895
  recurringFee: {
6948
- /** Format: uuid */
6949
6896
  id: string;
6950
- title: string;
6897
+ name: string;
6951
6898
  /** @enum {string} */
6952
6899
  type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
6953
6900
  /**
6954
6901
  * @default flat
6955
- * @enum {string}
6902
+ * @enum {string|null}
6956
6903
  */
6957
- rateType: "flat" | "percentage";
6904
+ rateType: "flat" | "percentage" | null;
6958
6905
  };
6959
6906
  }[] | null;
6960
6907
  source?: {
@@ -7171,23 +7118,22 @@ export interface operations {
7171
7118
  } | null;
7172
7119
  } | null;
7173
7120
  activeRecurringFeePeriods?: {
7174
- /** Format: uuid */
7175
- id: string;
7176
7121
  startAt?: string | null;
7177
7122
  endAt?: string | null;
7178
- /** @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%) */
7179
7124
  rate?: number | null;
7125
+ /** Format: uuid */
7126
+ id: string;
7180
7127
  recurringFee: {
7181
- /** Format: uuid */
7182
7128
  id: string;
7183
- title: string;
7129
+ name: string;
7184
7130
  /** @enum {string} */
7185
7131
  type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
7186
7132
  /**
7187
7133
  * @default flat
7188
- * @enum {string}
7134
+ * @enum {string|null}
7189
7135
  */
7190
- rateType: "flat" | "percentage";
7136
+ rateType: "flat" | "percentage" | null;
7191
7137
  };
7192
7138
  }[] | null;
7193
7139
  source?: {
@@ -7278,10 +7224,13 @@ export interface operations {
7278
7224
  requestBody: {
7279
7225
  content: {
7280
7226
  "application/json": {
7281
- uniqueRef?: string | null;
7227
+ name?: string | null;
7228
+ /** @enum {string|null} */
7229
+ status?: "active" | "inactive" | null;
7282
7230
  /** Format: uuid */
7283
7231
  connectionId?: string | null;
7284
- name: string;
7232
+ defaultCurrency?: string | null;
7233
+ uniqueRef?: string | null;
7285
7234
  address?: {
7286
7235
  full?: string | null;
7287
7236
  line1?: string | null;
@@ -7293,49 +7242,40 @@ export interface operations {
7293
7242
  stateCode?: string | null;
7294
7243
  countryCode?: string | null;
7295
7244
  } | null;
7296
- /** @enum {string} */
7297
- status?: "active" | "inactive";
7298
- defaultCurrency?: string | null;
7245
+ /** Format: uuid */
7246
+ sourceId?: string | null;
7299
7247
  activeRecurringFeePeriods?: {
7300
- /** Format: uuid */
7301
- id: string;
7302
7248
  startAt?: string | null;
7303
7249
  endAt?: string | null;
7304
- /** @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%) */
7305
7251
  rate?: number | null;
7252
+ /** Format: uuid */
7253
+ id: string;
7306
7254
  recurringFee: {
7307
- /** Format: uuid */
7308
7255
  id: string;
7309
- title: string;
7256
+ name: string;
7310
7257
  /** @enum {string} */
7311
7258
  type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
7312
7259
  /**
7313
7260
  * @default flat
7314
- * @enum {string}
7261
+ * @enum {string|null}
7315
7262
  */
7316
- rateType?: "flat" | "percentage";
7263
+ rateType?: "flat" | "percentage" | null;
7317
7264
  };
7318
7265
  }[] | null;
7319
- /** Format: uuid */
7320
- sourceId?: string | null;
7321
7266
  initialOwnership?: {
7322
- /** @default 2025-12-11 */
7323
- startAt?: string;
7267
+ startAt?: string | null;
7324
7268
  endAt?: string | null;
7325
- members: {
7269
+ members?: {
7326
7270
  /** Format: uuid */
7327
7271
  contactId?: string | null;
7328
7272
  /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
7329
7273
  split?: number | null;
7330
- }[];
7274
+ }[] | null;
7331
7275
  setListingInactive?: boolean | null;
7332
- /**
7333
- * @default managed
7334
- * @enum {string|null}
7335
- */
7276
+ /** @enum {string|null} */
7336
7277
  businessModel?: "managed" | "co_host" | "co_host_airbnb" | null;
7337
7278
  /**
7338
- * @description How to handle date range conflicts with existing periods
7339
7279
  * @default updateExisting
7340
7280
  * @enum {string|null}
7341
7281
  */
@@ -7373,42 +7313,47 @@ export interface operations {
7373
7313
  status: "active" | "inactive";
7374
7314
  defaultCurrency?: string | null;
7375
7315
  activeOwnership?: {
7376
- /** @default 2025-12-11 */
7316
+ /** Format: uuid */
7317
+ id: string;
7377
7318
  startAt: string;
7378
7319
  endAt?: string | null;
7379
- setListingInactive?: boolean | null;
7380
- /**
7381
- * @default managed
7382
- * @enum {string|null}
7383
- */
7384
- businessModel: "managed" | "co_host" | "co_host_airbnb" | null;
7385
7320
  members: {
7386
7321
  /** Format: uuid */
7387
7322
  contactId?: string | null;
7388
7323
  /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
7389
7324
  split?: number | null;
7390
7325
  }[];
7391
- /** Format: uuid */
7392
- 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;
7393
7339
  } | null;
7394
7340
  activeRecurringFeePeriods?: {
7395
- /** Format: uuid */
7396
- id: string;
7397
7341
  startAt?: string | null;
7398
7342
  endAt?: string | null;
7399
- /** @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%) */
7400
7344
  rate?: number | null;
7345
+ /** Format: uuid */
7346
+ id: string;
7401
7347
  recurringFee: {
7402
- /** Format: uuid */
7403
7348
  id: string;
7404
- title: string;
7349
+ name: string;
7405
7350
  /** @enum {string} */
7406
7351
  type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
7407
7352
  /**
7408
7353
  * @default flat
7409
- * @enum {string}
7354
+ * @enum {string|null}
7410
7355
  */
7411
- rateType: "flat" | "percentage";
7356
+ rateType: "flat" | "percentage" | null;
7412
7357
  };
7413
7358
  }[] | null;
7414
7359
  source?: {
@@ -9067,7 +9012,7 @@ export interface operations {
9067
9012
  uniqueRef?: string | null;
9068
9013
  name?: string;
9069
9014
  formula: string;
9070
- /** @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%) */
9071
9016
  defaultRate?: number | null;
9072
9017
  icon?: string | null;
9073
9018
  /** @enum {string} */
@@ -9097,7 +9042,7 @@ export interface operations {
9097
9042
  listingId: string;
9098
9043
  startAt?: string | null;
9099
9044
  endAt?: string | null;
9100
- /** @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%) */
9101
9046
  rate?: number | null;
9102
9047
  }[] | null;
9103
9048
  id?: string | null;
@@ -9274,23 +9219,23 @@ export interface operations {
9274
9219
  "application/json": {
9275
9220
  data: {
9276
9221
  /** Format: uuid */
9277
- id: string;
9278
9222
  listingId: string;
9279
9223
  startAt?: string | null;
9280
9224
  endAt?: string | null;
9281
- /** @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%) */
9282
9226
  rate?: number | null;
9227
+ /** Format: uuid */
9228
+ id: string;
9283
9229
  recurringFee: {
9284
- /** Format: uuid */
9285
9230
  id: string;
9286
- title: string;
9231
+ name: string;
9287
9232
  /** @enum {string} */
9288
9233
  type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
9289
9234
  /**
9290
9235
  * @default flat
9291
- * @enum {string}
9236
+ * @enum {string|null}
9292
9237
  */
9293
- rateType: "flat" | "percentage";
9238
+ rateType: "flat" | "percentage" | null;
9294
9239
  };
9295
9240
  }[];
9296
9241
  pagination: {
@@ -9370,7 +9315,7 @@ export interface operations {
9370
9315
  listingId: string;
9371
9316
  startAt?: string | null;
9372
9317
  endAt?: string | null;
9373
- /** @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%) */
9374
9319
  rate?: number | null;
9375
9320
  /** @enum {string|null} */
9376
9321
  onConflict?: "error" | "closeExistingPeriods" | "updateExisting" | null;
@@ -9386,23 +9331,23 @@ export interface operations {
9386
9331
  content: {
9387
9332
  "application/json": {
9388
9333
  /** Format: uuid */
9389
- id: string;
9390
9334
  listingId: string;
9391
9335
  startAt?: string | null;
9392
9336
  endAt?: string | null;
9393
- /** @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%) */
9394
9338
  rate?: number | null;
9339
+ /** Format: uuid */
9340
+ id: string;
9395
9341
  recurringFee: {
9396
- /** Format: uuid */
9397
9342
  id: string;
9398
- title: string;
9343
+ name: string;
9399
9344
  /** @enum {string} */
9400
9345
  type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
9401
9346
  /**
9402
9347
  * @default flat
9403
- * @enum {string}
9348
+ * @enum {string|null}
9404
9349
  */
9405
- rateType: "flat" | "percentage";
9350
+ rateType: "flat" | "percentage" | null;
9406
9351
  };
9407
9352
  };
9408
9353
  };
@@ -9459,9 +9404,11 @@ export interface operations {
9459
9404
  requestBody: {
9460
9405
  content: {
9461
9406
  "application/json": {
9407
+ /** Format: uuid */
9408
+ listingId?: string;
9462
9409
  startAt?: string | null;
9463
9410
  endAt?: string | null;
9464
- /** @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%) */
9465
9412
  rate?: number | null;
9466
9413
  /** @enum {string|null} */
9467
9414
  onConflict?: "error" | "closeExistingPeriods" | "updateExisting" | null;
@@ -9477,23 +9424,23 @@ export interface operations {
9477
9424
  content: {
9478
9425
  "application/json": {
9479
9426
  /** Format: uuid */
9480
- id: string;
9481
9427
  listingId: string;
9482
9428
  startAt?: string | null;
9483
9429
  endAt?: string | null;
9484
- /** @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%) */
9485
9431
  rate?: number | null;
9432
+ /** Format: uuid */
9433
+ id: string;
9486
9434
  recurringFee: {
9487
- /** Format: uuid */
9488
9435
  id: string;
9489
- title: string;
9436
+ name: string;
9490
9437
  /** @enum {string} */
9491
9438
  type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
9492
9439
  /**
9493
9440
  * @default flat
9494
- * @enum {string}
9441
+ * @enum {string|null}
9495
9442
  */
9496
- rateType: "flat" | "percentage";
9443
+ rateType: "flat" | "percentage" | null;
9497
9444
  };
9498
9445
  };
9499
9446
  };
@@ -9641,7 +9588,7 @@ export interface operations {
9641
9588
  "application/json": {
9642
9589
  name: string;
9643
9590
  formula: string;
9644
- /** @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%) */
9645
9592
  defaultRate?: number | null;
9646
9593
  icon?: string | null;
9647
9594
  /** @enum {string} */
@@ -9771,7 +9718,7 @@ export interface operations {
9771
9718
  uniqueRef?: string | null;
9772
9719
  name?: string;
9773
9720
  formula?: string;
9774
- /** @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%) */
9775
9722
  defaultRate?: number | null;
9776
9723
  icon?: string | null;
9777
9724
  /** @enum {string} */
@@ -9801,7 +9748,7 @@ export interface operations {
9801
9748
  listingId: string;
9802
9749
  startAt?: string | null;
9803
9750
  endAt?: string | null;
9804
- /** @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%) */
9805
9752
  rate?: number | null;
9806
9753
  }[] | null;
9807
9754
  };
@@ -9817,7 +9764,7 @@ export interface operations {
9817
9764
  "application/json": {
9818
9765
  name: string;
9819
9766
  formula: string;
9820
- /** @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%) */
9821
9768
  defaultRate?: number | null;
9822
9769
  icon?: string | null;
9823
9770
  /** @enum {string} */
@@ -10033,7 +9980,7 @@ export interface operations {
10033
9980
  data: {
10034
9981
  name: string;
10035
9982
  formula: string;
10036
- /** @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%) */
10037
9984
  defaultRate?: number | null;
10038
9985
  icon?: string | null;
10039
9986
  /** @enum {string} */
@@ -10171,7 +10118,7 @@ export interface operations {
10171
10118
  uniqueRef?: string | null;
10172
10119
  name: string;
10173
10120
  formula: string;
10174
- /** @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%) */
10175
10122
  defaultRate?: number | null;
10176
10123
  icon?: string | null;
10177
10124
  /** @enum {string} */
@@ -10201,7 +10148,7 @@ export interface operations {
10201
10148
  listingId: string;
10202
10149
  startAt?: string | null;
10203
10150
  endAt?: string | null;
10204
- /** @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%) */
10205
10152
  rate?: number | null;
10206
10153
  }[] | null;
10207
10154
  };
@@ -10217,7 +10164,7 @@ export interface operations {
10217
10164
  "application/json": {
10218
10165
  name: string;
10219
10166
  formula: string;
10220
- /** @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%) */
10221
10168
  defaultRate?: number | null;
10222
10169
  icon?: string | null;
10223
10170
  /** @enum {string} */