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