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

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.1292",
9
+ "version": "1.3.0-stage.1294",
10
10
  "description": "",
11
11
  "main": "build/main/index.js",
12
12
  "module": "build/module/index.js",
@@ -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;
@@ -6544,18 +6543,16 @@ export interface operations {
6544
6543
  status?: "active" | "inactive";
6545
6544
  defaultCurrency?: string | null;
6546
6545
  activeRecurringFeePeriods?: {
6546
+ /** Format: uuid */
6547
+ id: string;
6547
6548
  startAt?: string | null;
6548
6549
  endAt?: string | null;
6549
6550
  /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
6550
6551
  rate?: number | null;
6551
- /** Format: uuid */
6552
- id: string;
6553
6552
  recurringFee: {
6554
6553
  /** Format: uuid */
6555
6554
  id: string;
6556
6555
  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
6556
  /** @enum {string} */
6560
6557
  type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
6561
6558
  /**
@@ -6841,18 +6838,16 @@ export interface operations {
6841
6838
  status?: "active" | "inactive";
6842
6839
  defaultCurrency?: string | null;
6843
6840
  activeRecurringFeePeriods?: {
6841
+ /** Format: uuid */
6842
+ id: string;
6844
6843
  startAt?: string | null;
6845
6844
  endAt?: string | null;
6846
6845
  /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
6847
6846
  rate?: number | null;
6848
- /** Format: uuid */
6849
- id: string;
6850
6847
  recurringFee: {
6851
6848
  /** Format: uuid */
6852
6849
  id: string;
6853
6850
  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;
6856
6851
  /** @enum {string} */
6857
6852
  type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
6858
6853
  /**
@@ -7303,18 +7298,16 @@ export interface operations {
7303
7298
  status?: "active" | "inactive";
7304
7299
  defaultCurrency?: string | null;
7305
7300
  activeRecurringFeePeriods?: {
7301
+ /** Format: uuid */
7302
+ id: string;
7306
7303
  startAt?: string | null;
7307
7304
  endAt?: string | null;
7308
7305
  /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
7309
7306
  rate?: number | null;
7310
- /** Format: uuid */
7311
- id: string;
7312
7307
  recurringFee: {
7313
7308
  /** Format: uuid */
7314
7309
  id: string;
7315
7310
  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;
7318
7311
  /** @enum {string} */
7319
7312
  type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
7320
7313
  /**
@@ -7400,18 +7393,16 @@ export interface operations {
7400
7393
  id: string;
7401
7394
  } | null;
7402
7395
  activeRecurringFeePeriods?: {
7396
+ /** Format: uuid */
7397
+ id: string;
7403
7398
  startAt?: string | null;
7404
7399
  endAt?: string | null;
7405
7400
  /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
7406
7401
  rate?: number | null;
7407
- /** Format: uuid */
7408
- id: string;
7409
7402
  recurringFee: {
7410
7403
  /** Format: uuid */
7411
7404
  id: string;
7412
7405
  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;
7415
7406
  /** @enum {string} */
7416
7407
  type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
7417
7408
  /**
@@ -9283,19 +9274,17 @@ export interface operations {
9283
9274
  content: {
9284
9275
  "application/json": {
9285
9276
  data: {
9277
+ /** Format: uuid */
9278
+ id: string;
9286
9279
  listingId: string;
9287
9280
  startAt?: string | null;
9288
9281
  endAt?: string | null;
9289
9282
  /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9290
9283
  rate?: number | null;
9291
- /** Format: uuid */
9292
- id: string;
9293
9284
  recurringFee: {
9294
9285
  /** Format: uuid */
9295
9286
  id: string;
9296
9287
  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;
9299
9288
  /** @enum {string} */
9300
9289
  type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
9301
9290
  /**
@@ -9364,116 +9353,6 @@ export interface operations {
9364
9353
  };
9365
9354
  };
9366
9355
  };
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
9356
  createRecurringFeeListingPeriod: {
9478
9357
  parameters: {
9479
9358
  query?: never;
@@ -9486,18 +9365,16 @@ export interface operations {
9486
9365
  requestBody: {
9487
9366
  content: {
9488
9367
  "application/json": {
9368
+ /** Format: uuid */
9369
+ recurringFeeId: string;
9370
+ /** Format: uuid */
9489
9371
  listingId: string;
9490
9372
  startAt?: string | null;
9491
9373
  endAt?: string | null;
9492
9374
  /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9493
9375
  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;
9376
+ /** @enum {string|null} */
9377
+ onConflict?: "error" | "closeExistingPeriods" | "updateExisting" | null;
9501
9378
  };
9502
9379
  };
9503
9380
  };
@@ -9509,19 +9386,17 @@ export interface operations {
9509
9386
  };
9510
9387
  content: {
9511
9388
  "application/json": {
9389
+ /** Format: uuid */
9390
+ id: string;
9512
9391
  listingId: string;
9513
9392
  startAt?: string | null;
9514
9393
  endAt?: string | null;
9515
9394
  /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9516
9395
  rate?: number | null;
9517
- /** Format: uuid */
9518
- id: string;
9519
9396
  recurringFee: {
9520
9397
  /** Format: uuid */
9521
9398
  id: string;
9522
9399
  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;
9525
9400
  /** @enum {string} */
9526
9401
  type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
9527
9402
  /**
@@ -9589,12 +9464,8 @@ export interface operations {
9589
9464
  endAt?: string | null;
9590
9465
  /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9591
9466
  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;
9467
+ /** @enum {string|null} */
9468
+ onConflict?: "error" | "closeExistingPeriods" | "updateExisting" | null;
9598
9469
  };
9599
9470
  };
9600
9471
  };
@@ -9606,19 +9477,17 @@ export interface operations {
9606
9477
  };
9607
9478
  content: {
9608
9479
  "application/json": {
9480
+ /** Format: uuid */
9481
+ id: string;
9609
9482
  listingId: string;
9610
9483
  startAt?: string | null;
9611
9484
  endAt?: string | null;
9612
9485
  /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9613
9486
  rate?: number | null;
9614
- /** Format: uuid */
9615
- id: string;
9616
9487
  recurringFee: {
9617
9488
  /** Format: uuid */
9618
9489
  id: string;
9619
9490
  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;
9622
9491
  /** @enum {string} */
9623
9492
  type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
9624
9493
  /**
@@ -11668,7 +11537,7 @@ export interface operations {
11668
11537
  /** @enum {string} */
11669
11538
  severity: "error";
11670
11539
  context: {
11671
- journalEntryIds: string[];
11540
+ affected: number;
11672
11541
  };
11673
11542
  message: string;
11674
11543
  } | {
@@ -11726,7 +11595,6 @@ export interface operations {
11726
11595
  /** @enum {string} */
11727
11596
  severity: "warning";
11728
11597
  context: {
11729
- journalEntryIds: string[];
11730
11598
  affected: number;
11731
11599
  };
11732
11600
  message: string;
@@ -12228,7 +12096,7 @@ export interface operations {
12228
12096
  /** @enum {string} */
12229
12097
  severity: "error";
12230
12098
  context: {
12231
- journalEntryIds: string[];
12099
+ affected: number;
12232
12100
  };
12233
12101
  message: string;
12234
12102
  } | {
@@ -12286,7 +12154,6 @@ export interface operations {
12286
12154
  /** @enum {string} */
12287
12155
  severity: "warning";
12288
12156
  context: {
12289
- journalEntryIds: string[];
12290
12157
  affected: number;
12291
12158
  };
12292
12159
  message: string;
@@ -12700,7 +12567,7 @@ export interface operations {
12700
12567
  /** @enum {string} */
12701
12568
  severity: "error";
12702
12569
  context: {
12703
- journalEntryIds: string[];
12570
+ affected: number;
12704
12571
  };
12705
12572
  message: string;
12706
12573
  } | {
@@ -12758,7 +12625,6 @@ export interface operations {
12758
12625
  /** @enum {string} */
12759
12626
  severity: "warning";
12760
12627
  context: {
12761
- journalEntryIds: string[];
12762
12628
  affected: number;
12763
12629
  };
12764
12630
  message: string;
@@ -13255,7 +13121,7 @@ export interface operations {
13255
13121
  /** @enum {string} */
13256
13122
  severity: "error";
13257
13123
  context: {
13258
- journalEntryIds: string[];
13124
+ affected: number;
13259
13125
  };
13260
13126
  message: string;
13261
13127
  } | {
@@ -13313,7 +13179,6 @@ export interface operations {
13313
13179
  /** @enum {string} */
13314
13180
  severity: "warning";
13315
13181
  context: {
13316
- journalEntryIds: string[];
13317
13182
  affected: number;
13318
13183
  };
13319
13184
  message: string;
@@ -13513,7 +13378,7 @@ export interface operations {
13513
13378
  /** @enum {string} */
13514
13379
  severity: "error";
13515
13380
  context: {
13516
- journalEntryIds: string[];
13381
+ affected: number;
13517
13382
  };
13518
13383
  message: string;
13519
13384
  } | {
@@ -13571,7 +13436,6 @@ export interface operations {
13571
13436
  /** @enum {string} */
13572
13437
  severity: "warning";
13573
13438
  context: {
13574
- journalEntryIds: string[];
13575
13439
  affected: number;
13576
13440
  };
13577
13441
  message: string;
@@ -17135,6 +16999,14 @@ export interface operations {
17135
16999
  updatedAt: string;
17136
17000
  message?: string | null;
17137
17001
  } | null;
17002
+ enabledFlows: {
17003
+ /** Format: uuid */
17004
+ id: string;
17005
+ title: string;
17006
+ isPublic: boolean;
17007
+ /** @enum {string|null} */
17008
+ type: "push" | "pull" | null;
17009
+ }[];
17138
17010
  };
17139
17011
  };
17140
17012
  };
@@ -17312,6 +17184,14 @@ export interface operations {
17312
17184
  updatedAt: string;
17313
17185
  message?: string | null;
17314
17186
  } | null;
17187
+ enabledFlows: {
17188
+ /** Format: uuid */
17189
+ id: string;
17190
+ title: string;
17191
+ isPublic: boolean;
17192
+ /** @enum {string|null} */
17193
+ type: "push" | "pull" | null;
17194
+ }[];
17315
17195
  }[];
17316
17196
  pagination: {
17317
17197
  /** @default 100 */
@@ -17425,6 +17305,14 @@ export interface operations {
17425
17305
  updatedAt: string;
17426
17306
  message?: string | null;
17427
17307
  } | null;
17308
+ enabledFlows: {
17309
+ /** Format: uuid */
17310
+ id: string;
17311
+ title: string;
17312
+ isPublic: boolean;
17313
+ /** @enum {string|null} */
17314
+ type: "push" | "pull" | null;
17315
+ }[];
17428
17316
  };
17429
17317
  };
17430
17318
  };