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