@vrplatform/api 1.3.1-3807 → 1.3.1-3824

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
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.3.1-3807",
6
+ "version": "1.3.1-3824",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -11586,6 +11586,18 @@ export interface operations {
11586
11586
  refreshCount: number;
11587
11587
  lockedCount: number;
11588
11588
  };
11589
+ listingContinuity: {
11590
+ sourceCount: number;
11591
+ targetCount: number;
11592
+ alreadySharedCount: number;
11593
+ mergeCount: number;
11594
+ unmappedCount: number;
11595
+ ambiguousCount: number;
11596
+ targetReservationMoveCount: number;
11597
+ targetTransactionLineMoveCount: number;
11598
+ targetPaymentLineMoveCount: number;
11599
+ lockedCount: number;
11600
+ };
11589
11601
  /** @constant */
11590
11602
  applied: true;
11591
11603
  queuedReservationRefreshCount: number;
@@ -11727,6 +11739,18 @@ export interface operations {
11727
11739
  refreshCount: number;
11728
11740
  lockedCount: number;
11729
11741
  };
11742
+ listingContinuity: {
11743
+ sourceCount: number;
11744
+ targetCount: number;
11745
+ alreadySharedCount: number;
11746
+ mergeCount: number;
11747
+ unmappedCount: number;
11748
+ ambiguousCount: number;
11749
+ targetReservationMoveCount: number;
11750
+ targetTransactionLineMoveCount: number;
11751
+ targetPaymentLineMoveCount: number;
11752
+ lockedCount: number;
11753
+ };
11730
11754
  };
11731
11755
  };
11732
11756
  };
@@ -29887,7 +29911,11 @@ export interface operations {
29887
29911
  currency: string;
29888
29912
  }[] | null;
29889
29913
  columns: {
29914
+ id?: string;
29890
29915
  title: string;
29916
+ /** @enum {string} */
29917
+ type?: "field" | "accounts" | "subTotal" | "formula.currency" | "formula.percentage";
29918
+ formula?: string;
29891
29919
  value: number | string;
29892
29920
  formatted: string;
29893
29921
  accountIds: string[];
@@ -30124,7 +30152,11 @@ export interface operations {
30124
30152
  subtotal?: {
30125
30153
  title: string;
30126
30154
  columns: {
30155
+ id?: string;
30127
30156
  title: string;
30157
+ /** @enum {string} */
30158
+ type?: "field" | "accounts" | "subTotal" | "formula.currency" | "formula.percentage";
30159
+ formula?: string;
30128
30160
  value: number | string;
30129
30161
  formatted: string;
30130
30162
  accountIds: string[];
@@ -30305,7 +30337,11 @@ export interface operations {
30305
30337
  currency: string;
30306
30338
  }[] | null;
30307
30339
  columns: {
30340
+ id?: string;
30308
30341
  title: string;
30342
+ /** @enum {string} */
30343
+ type?: "field" | "accounts" | "subTotal" | "formula.currency" | "formula.percentage";
30344
+ formula?: string;
30309
30345
  value: number | string;
30310
30346
  formatted: string;
30311
30347
  accountIds: string[];
@@ -30542,7 +30578,11 @@ export interface operations {
30542
30578
  subtotal?: {
30543
30579
  title: string;
30544
30580
  columns: {
30581
+ id?: string;
30545
30582
  title: string;
30583
+ /** @enum {string} */
30584
+ type?: "field" | "accounts" | "subTotal" | "formula.currency" | "formula.percentage";
30585
+ formula?: string;
30546
30586
  value: number | string;
30547
30587
  formatted: string;
30548
30588
  accountIds: string[];
@@ -30722,7 +30762,11 @@ export interface operations {
30722
30762
  currency: string;
30723
30763
  }[] | null;
30724
30764
  columns: {
30765
+ id?: string;
30725
30766
  title: string;
30767
+ /** @enum {string} */
30768
+ type?: "field" | "accounts" | "subTotal" | "formula.currency" | "formula.percentage";
30769
+ formula?: string;
30726
30770
  value: number | string;
30727
30771
  formatted: string;
30728
30772
  accountIds: string[];
@@ -30959,7 +31003,11 @@ export interface operations {
30959
31003
  subtotal?: {
30960
31004
  title: string;
30961
31005
  columns: {
31006
+ id?: string;
30962
31007
  title: string;
31008
+ /** @enum {string} */
31009
+ type?: "field" | "accounts" | "subTotal" | "formula.currency" | "formula.percentage";
31010
+ formula?: string;
30963
31011
  value: number | string;
30964
31012
  formatted: string;
30965
31013
  accountIds: string[];
@@ -49012,10 +49060,13 @@ export interface operations {
49012
49060
  getTeams: {
49013
49061
  parameters: {
49014
49062
  query?: {
49063
+ /** @description Comma-separated team IDs. */
49064
+ ids?: string;
49015
49065
  status?: "active" | "inactive" | "deleted" | "onboarding";
49016
49066
  search?: string;
49017
49067
  partnerId?: string;
49018
49068
  type?: "partner" | "propertyManager";
49069
+ sort?: "created_desc" | "created_asc" | "name_asc" | "name_desc" | "type_asc" | "type_desc";
49019
49070
  /** @description You can use elipisis: YYYY-MM-DD...YYYY-MM-DD */
49020
49071
  date?: string;
49021
49072
  limit?: number;