@vrplatform/api 1.3.1-stage.4722 → 1.3.1-stage.4724

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-stage.4722",
6
+ "version": "1.3.1-stage.4724",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -11683,12 +11683,8 @@ export interface operations {
11683
11683
  includeMatchingTransactions?: string;
11684
11684
  hasMatchingTransactions?: boolean;
11685
11685
  reservationLineFilter?: "all" | "reservationOnly" | "nonReservationOnly";
11686
- /** @description Field to sort by */
11687
- sortBy?: "created" | "amount" | "matched";
11688
- /** @description Sort direction, defaults to desc */
11689
- sortDirection?: "asc" | "desc";
11690
- /** @description Deprecated: use sortBy + sortDirection */
11691
- sort?: "created_desc" | "created_asc" | "amount_desc" | "amount_asc" | "matched_desc" | "matched_asc";
11686
+ /** @description Sort field; prefix with - for descending order */
11687
+ sort?: "date" | "-date" | "amount" | "-amount" | "matched" | "-matched";
11692
11688
  limit?: number;
11693
11689
  page?: number;
11694
11690
  offset?: number;
@@ -12261,12 +12257,8 @@ export interface operations {
12261
12257
  includeMatchingTransactions?: string;
12262
12258
  hasMatchingTransactions?: boolean;
12263
12259
  reservationLineFilter?: "all" | "reservationOnly" | "nonReservationOnly";
12264
- /** @description Field to sort by */
12265
- sortBy?: "created" | "amount" | "matched";
12266
- /** @description Sort direction, defaults to desc */
12267
- sortDirection?: "asc" | "desc";
12268
- /** @description Deprecated: use sortBy + sortDirection */
12269
- sort?: "created_desc" | "created_asc" | "amount_desc" | "amount_asc" | "matched_desc" | "matched_asc";
12260
+ /** @description Sort field; prefix with - for descending order */
12261
+ sort?: "date" | "-date" | "amount" | "-amount" | "matched" | "-matched";
12270
12262
  };
12271
12263
  header?: never;
12272
12264
  path?: never;
@@ -21582,10 +21574,8 @@ export interface operations {
21582
21574
  search?: string;
21583
21575
  /** @description Filter files by their upload purpose. */
21584
21576
  type?: "userUpload" | "historicalData" | "historicalOwnerStatement" | "ownerStatementExample" | "listingOwnerAssignment" | "listingFeeAssignment";
21585
- /** @description Field to sort files by. */
21586
- sortBy?: "filename" | "startDate" | "endDate" | "createdAt" | "contactName";
21587
- /** @description Sort direction. */
21588
- sortDirection?: "asc" | "desc";
21577
+ /** @description Sort field; prefix with - for descending order. */
21578
+ sort?: "filename" | "-filename" | "startDate" | "-startDate" | "endDate" | "-endDate" | "createdAt" | "-createdAt" | "contactName" | "-contactName";
21589
21579
  limit?: number;
21590
21580
  page?: number;
21591
21581
  offset?: number;
@@ -29137,8 +29127,7 @@ export interface operations {
29137
29127
  query?: {
29138
29128
  search?: string;
29139
29129
  status?: "testing" | "ready" | "deployed";
29140
- sortBy?: "createdAt" | "title";
29141
- sortDirection?: "asc" | "desc";
29130
+ sort?: "createdAt" | "-createdAt" | "title" | "-title";
29142
29131
  limit?: number;
29143
29132
  page?: number;
29144
29133
  offset?: number;
@@ -42557,10 +42546,8 @@ export interface operations {
42557
42546
  partnerId?: string;
42558
42547
  product?: "vrtrust" | "vrintegrations";
42559
42548
  billingPlan?: string;
42560
- /** @description Field to sort by, defaults to created */
42561
- sortBy?: "name" | "created" | "partnerName" | "product" | "activeListings" | "billingPlan";
42562
- /** @description Sort direction, defaults to desc */
42563
- sortDirection?: "asc" | "desc";
42549
+ /** @description Sort field; prefix with - for descending order */
42550
+ sort?: "name" | "-name" | "created" | "-created" | "partnerName" | "-partnerName" | "product" | "-product" | "activeListings" | "-activeListings" | "billingPlan" | "-billingPlan";
42564
42551
  limit?: number;
42565
42552
  page?: number;
42566
42553
  offset?: number;
@@ -42768,10 +42755,8 @@ export interface operations {
42768
42755
  appId?: string;
42769
42756
  /** @description Filter teams by whether an active connection is in error */
42770
42757
  isErrorState?: boolean;
42771
- /** @description Team field to sort by; defaults to createdAt */
42772
- sortBy?: "name" | "createdAt";
42773
- /** @description Sort direction; defaults to desc for createdAt and asc for name */
42774
- sortDirection?: "asc" | "desc";
42758
+ /** @description Sort field; prefix with - for descending order */
42759
+ sort?: "name" | "-name" | "createdAt" | "-createdAt";
42775
42760
  limit?: number;
42776
42761
  page?: number;
42777
42762
  offset?: number;
@@ -43866,10 +43851,8 @@ export interface operations {
43866
43851
  query?: {
43867
43852
  /** @description Filter by team name */
43868
43853
  search?: string;
43869
- /** @description Owner statement status count to sort by */
43870
- sortBy?: "draft" | "inReview" | "published";
43871
- /** @description Sort direction, defaults to asc */
43872
- sortDirection?: "asc" | "desc";
43854
+ /** @description Sort field; prefix with - for descending order */
43855
+ sort?: "name" | "-name" | "draft" | "-draft" | "inReview" | "-inReview" | "published" | "-published";
43873
43856
  limit?: number;
43874
43857
  page?: number;
43875
43858
  offset?: number;
@@ -44064,10 +44047,8 @@ export interface operations {
44064
44047
  teamIds?: string;
44065
44048
  /** @description users: non-owner users with a portfolio membership; owners: owner users linked via membership or owner access; missing: users without any portfolio membership (delete candidates). Omitted returns every linked user. */
44066
44049
  view?: "users" | "owners" | "missing";
44067
- /** @description Field to sort by */
44068
- sortBy?: "name" | "email" | "lastSeen" | "created";
44069
- /** @description Sort direction, defaults to asc */
44070
- sortDirection?: "asc" | "desc";
44050
+ /** @description Sort field; prefix with - for descending order */
44051
+ sort?: "name" | "-name" | "email" | "-email" | "lastSeen" | "-lastSeen" | "created" | "-created";
44071
44052
  limit?: number;
44072
44053
  page?: number;
44073
44054
  offset?: number;
@@ -76154,14 +76135,10 @@ export interface operations {
76154
76135
  connectionId?: string;
76155
76136
  type?: "extract" | "automate" | "flow" | "webhook";
76156
76137
  status?: "queued" | "started" | "completed" | "failed" | "canceled";
76157
- /** @description Deprecated: use sortBy + sortDirection */
76158
- sort?: "created_asc" | "created_desc" | "updated_asc" | "updated_desc";
76138
+ /** @description Sort field; prefix with - for descending order */
76139
+ sort?: "created" | "-created" | "updated" | "-updated";
76159
76140
  /** @description Comma-separated sync IDs. */
76160
76141
  ids?: string;
76161
- /** @description Field to sort by */
76162
- sortBy?: "created" | "updated";
76163
- /** @description Sort direction, defaults to desc */
76164
- sortDirection?: "asc" | "desc";
76165
76142
  limit?: number;
76166
76143
  page?: number;
76167
76144
  offset?: number;
@@ -81766,12 +81743,8 @@ export interface operations {
81766
81743
  /** @description Include partner-dashboard listing, member, connection, issue, and child-team counts. */
81767
81744
  includeAggregates?: boolean;
81768
81745
  type?: "partner" | "propertyManager";
81769
- /** @description Field to sort by */
81770
- sortBy?: "created" | "name" | "type";
81771
- /** @description Sort direction, defaults to desc */
81772
- sortDirection?: "asc" | "desc";
81773
- /** @description Deprecated: use sortBy + sortDirection */
81774
- sort?: "created_desc" | "created_asc" | "name_asc" | "name_desc" | "type_asc" | "type_desc";
81746
+ /** @description Sort field; prefix with - for descending order */
81747
+ sort?: "created" | "-created" | "name" | "-name" | "type" | "-type";
81775
81748
  /** @description You can use elipisis: YYYY-MM-DD...YYYY-MM-DD */
81776
81749
  date?: string;
81777
81750
  limit?: number;