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