@vrplatform/api 1.3.1-stage.4720 → 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;
@@ -47762,6 +47743,7 @@ export interface operations {
47762
47743
  endAt?: string;
47763
47744
  search?: string;
47764
47745
  date?: string;
47746
+ /** @description Amount in cents, also accepts ranges like 100...200 */
47765
47747
  amount?: string;
47766
47748
  /**
47767
47749
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -47857,6 +47839,7 @@ export interface operations {
47857
47839
  endAt?: string;
47858
47840
  search?: string;
47859
47841
  date?: string;
47842
+ /** @description Amount in cents, also accepts ranges like 100...200 */
47860
47843
  amount?: string;
47861
47844
  /**
47862
47845
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -47958,6 +47941,7 @@ export interface operations {
47958
47941
  endAt?: string;
47959
47942
  search?: string;
47960
47943
  date?: string;
47944
+ /** @description Amount in cents, also accepts ranges like 100...200 */
47961
47945
  amount?: string;
47962
47946
  /**
47963
47947
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -48055,6 +48039,7 @@ export interface operations {
48055
48039
  endAt?: string;
48056
48040
  search?: string;
48057
48041
  date?: string;
48042
+ /** @description Amount in cents, also accepts ranges like 100...200 */
48058
48043
  amount?: string;
48059
48044
  /**
48060
48045
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -48150,6 +48135,7 @@ export interface operations {
48150
48135
  endAt?: string;
48151
48136
  search?: string;
48152
48137
  date?: string;
48138
+ /** @description Amount in cents, also accepts ranges like 100...200 */
48153
48139
  amount?: string;
48154
48140
  /**
48155
48141
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -48251,6 +48237,7 @@ export interface operations {
48251
48237
  endAt?: string;
48252
48238
  search?: string;
48253
48239
  date?: string;
48240
+ /** @description Amount in cents, also accepts ranges like 100...200 */
48254
48241
  amount?: string;
48255
48242
  /**
48256
48243
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -48348,6 +48335,7 @@ export interface operations {
48348
48335
  endAt?: string;
48349
48336
  search?: string;
48350
48337
  date?: string;
48338
+ /** @description Amount in cents, also accepts ranges like 100...200 */
48351
48339
  amount?: string;
48352
48340
  /**
48353
48341
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -48443,6 +48431,7 @@ export interface operations {
48443
48431
  endAt?: string;
48444
48432
  search?: string;
48445
48433
  date?: string;
48434
+ /** @description Amount in cents, also accepts ranges like 100...200 */
48446
48435
  amount?: string;
48447
48436
  /**
48448
48437
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -48544,6 +48533,7 @@ export interface operations {
48544
48533
  endAt?: string;
48545
48534
  search?: string;
48546
48535
  date?: string;
48536
+ /** @description Amount in cents, also accepts ranges like 100...200 */
48547
48537
  amount?: string;
48548
48538
  /**
48549
48539
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -48641,6 +48631,7 @@ export interface operations {
48641
48631
  endAt?: string;
48642
48632
  search?: string;
48643
48633
  date?: string;
48634
+ /** @description Amount in cents, also accepts ranges like 100...200 */
48644
48635
  amount?: string;
48645
48636
  /**
48646
48637
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -48736,6 +48727,7 @@ export interface operations {
48736
48727
  endAt?: string;
48737
48728
  search?: string;
48738
48729
  date?: string;
48730
+ /** @description Amount in cents, also accepts ranges like 100...200 */
48739
48731
  amount?: string;
48740
48732
  /**
48741
48733
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -48837,6 +48829,7 @@ export interface operations {
48837
48829
  endAt?: string;
48838
48830
  search?: string;
48839
48831
  date?: string;
48832
+ /** @description Amount in cents, also accepts ranges like 100...200 */
48840
48833
  amount?: string;
48841
48834
  /**
48842
48835
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -49294,6 +49287,7 @@ export interface operations {
49294
49287
  endAt?: string;
49295
49288
  search?: string;
49296
49289
  date?: string;
49290
+ /** @description Amount in cents, also accepts ranges like 100...200 */
49297
49291
  amount?: string;
49298
49292
  /**
49299
49293
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -49842,6 +49836,7 @@ export interface operations {
49842
49836
  endAt?: string;
49843
49837
  search?: string;
49844
49838
  date?: string;
49839
+ /** @description Amount in cents, also accepts ranges like 100...200 */
49845
49840
  amount?: string;
49846
49841
  /** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
49847
49842
  isDateRangeEndInclusive?: boolean;
@@ -50187,6 +50182,7 @@ export interface operations {
50187
50182
  endAt?: string;
50188
50183
  search?: string;
50189
50184
  date?: string;
50185
+ /** @description Amount in cents, also accepts ranges like 100...200 */
50190
50186
  amount?: string;
50191
50187
  /** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
50192
50188
  isDateRangeEndInclusive?: boolean;
@@ -50825,6 +50821,7 @@ export interface operations {
50825
50821
  endAt?: string;
50826
50822
  search?: string;
50827
50823
  date?: string;
50824
+ /** @description Amount in cents, also accepts ranges like 100...200 */
50828
50825
  amount?: string;
50829
50826
  /**
50830
50827
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -50927,6 +50924,7 @@ export interface operations {
50927
50924
  endAt?: string;
50928
50925
  search?: string;
50929
50926
  date?: string;
50927
+ /** @description Amount in cents, also accepts ranges like 100...200 */
50930
50928
  amount?: string;
50931
50929
  /**
50932
50930
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -51014,6 +51012,7 @@ export interface operations {
51014
51012
  endAt?: string;
51015
51013
  search?: string;
51016
51014
  date?: string;
51015
+ /** @description Amount in cents, also accepts ranges like 100...200 */
51017
51016
  amount?: string;
51018
51017
  /**
51019
51018
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -51395,6 +51394,7 @@ export interface operations {
51395
51394
  endAt?: string;
51396
51395
  search?: string;
51397
51396
  date?: string;
51397
+ /** @description Amount in cents, also accepts ranges like 100...200 */
51398
51398
  amount?: string;
51399
51399
  /** @description comma separated reservation ids or "unmapped" */
51400
51400
  reservationIds?: string;
@@ -51735,6 +51735,7 @@ export interface operations {
51735
51735
  endAt?: string;
51736
51736
  search?: string;
51737
51737
  date?: string;
51738
+ /** @description Amount in cents, also accepts ranges like 100...200 */
51738
51739
  amount?: string;
51739
51740
  /** @description comma separated reservation ids or "unmapped" */
51740
51741
  reservationIds?: string;
@@ -52331,6 +52332,7 @@ export interface operations {
52331
52332
  endAt?: string;
52332
52333
  search?: string;
52333
52334
  date?: string;
52335
+ /** @description Amount in cents, also accepts ranges like 100...200 */
52334
52336
  amount?: string;
52335
52337
  /**
52336
52338
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -52947,6 +52949,7 @@ export interface operations {
52947
52949
  endAt?: string;
52948
52950
  search?: string;
52949
52951
  date?: string;
52952
+ /** @description Amount in cents, also accepts ranges like 100...200 */
52950
52953
  amount?: string;
52951
52954
  /**
52952
52955
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -53035,6 +53038,7 @@ export interface operations {
53035
53038
  endAt?: string;
53036
53039
  search?: string;
53037
53040
  date?: string;
53041
+ /** @description Amount in cents, also accepts ranges like 100...200 */
53038
53042
  amount?: string;
53039
53043
  /**
53040
53044
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -53148,6 +53152,7 @@ export interface operations {
53148
53152
  endAt?: string;
53149
53153
  search?: string;
53150
53154
  date?: string;
53155
+ /** @description Amount in cents, also accepts ranges like 100...200 */
53151
53156
  amount?: string;
53152
53157
  /**
53153
53158
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -53233,6 +53238,7 @@ export interface operations {
53233
53238
  endAt?: string;
53234
53239
  search?: string;
53235
53240
  date?: string;
53241
+ /** @description Amount in cents, also accepts ranges like 100...200 */
53236
53242
  amount?: string;
53237
53243
  /**
53238
53244
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -53318,6 +53324,7 @@ export interface operations {
53318
53324
  endAt?: string;
53319
53325
  search?: string;
53320
53326
  date?: string;
53327
+ /** @description Amount in cents, also accepts ranges like 100...200 */
53321
53328
  amount?: string;
53322
53329
  /**
53323
53330
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -53413,6 +53420,7 @@ export interface operations {
53413
53420
  endAt?: string;
53414
53421
  search?: string;
53415
53422
  date?: string;
53423
+ /** @description Amount in cents, also accepts ranges like 100...200 */
53416
53424
  amount?: string;
53417
53425
  /**
53418
53426
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -53498,6 +53506,7 @@ export interface operations {
53498
53506
  endAt?: string;
53499
53507
  search?: string;
53500
53508
  date?: string;
53509
+ /** @description Amount in cents, also accepts ranges like 100...200 */
53501
53510
  amount?: string;
53502
53511
  /**
53503
53512
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -53614,6 +53623,7 @@ export interface operations {
53614
53623
  endAt?: string;
53615
53624
  search?: string;
53616
53625
  date?: string;
53626
+ /** @description Amount in cents, also accepts ranges like 100...200 */
53617
53627
  amount?: string;
53618
53628
  /**
53619
53629
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -53699,6 +53709,7 @@ export interface operations {
53699
53709
  endAt?: string;
53700
53710
  search?: string;
53701
53711
  date?: string;
53712
+ /** @description Amount in cents, also accepts ranges like 100...200 */
53702
53713
  amount?: string;
53703
53714
  /**
53704
53715
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -53784,6 +53795,7 @@ export interface operations {
53784
53795
  endAt?: string;
53785
53796
  search?: string;
53786
53797
  date?: string;
53798
+ /** @description Amount in cents, also accepts ranges like 100...200 */
53787
53799
  amount?: string;
53788
53800
  /**
53789
53801
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -53879,6 +53891,7 @@ export interface operations {
53879
53891
  endAt?: string;
53880
53892
  search?: string;
53881
53893
  date?: string;
53894
+ /** @description Amount in cents, also accepts ranges like 100...200 */
53882
53895
  amount?: string;
53883
53896
  /**
53884
53897
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -53964,6 +53977,7 @@ export interface operations {
53964
53977
  endAt?: string;
53965
53978
  search?: string;
53966
53979
  date?: string;
53980
+ /** @description Amount in cents, also accepts ranges like 100...200 */
53967
53981
  amount?: string;
53968
53982
  /**
53969
53983
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -54079,6 +54093,7 @@ export interface operations {
54079
54093
  endAt?: string;
54080
54094
  search?: string;
54081
54095
  date?: string;
54096
+ /** @description Amount in cents, also accepts ranges like 100...200 */
54082
54097
  amount?: string;
54083
54098
  /**
54084
54099
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -54164,6 +54179,7 @@ export interface operations {
54164
54179
  endAt?: string;
54165
54180
  search?: string;
54166
54181
  date?: string;
54182
+ /** @description Amount in cents, also accepts ranges like 100...200 */
54167
54183
  amount?: string;
54168
54184
  /**
54169
54185
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -54249,6 +54265,7 @@ export interface operations {
54249
54265
  endAt?: string;
54250
54266
  search?: string;
54251
54267
  date?: string;
54268
+ /** @description Amount in cents, also accepts ranges like 100...200 */
54252
54269
  amount?: string;
54253
54270
  /**
54254
54271
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -54344,6 +54361,7 @@ export interface operations {
54344
54361
  endAt?: string;
54345
54362
  search?: string;
54346
54363
  date?: string;
54364
+ /** @description Amount in cents, also accepts ranges like 100...200 */
54347
54365
  amount?: string;
54348
54366
  /**
54349
54367
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -54429,6 +54447,7 @@ export interface operations {
54429
54447
  endAt?: string;
54430
54448
  search?: string;
54431
54449
  date?: string;
54450
+ /** @description Amount in cents, also accepts ranges like 100...200 */
54432
54451
  amount?: string;
54433
54452
  /**
54434
54453
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -55223,6 +55242,7 @@ export interface operations {
55223
55242
  endAt?: string;
55224
55243
  search?: string;
55225
55244
  date?: string;
55245
+ /** @description Amount in cents, also accepts ranges like 100...200 */
55226
55246
  amount?: string;
55227
55247
  /**
55228
55248
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -55314,6 +55334,7 @@ export interface operations {
55314
55334
  endAt?: string;
55315
55335
  search?: string;
55316
55336
  date?: string;
55337
+ /** @description Amount in cents, also accepts ranges like 100...200 */
55317
55338
  amount?: string;
55318
55339
  /**
55319
55340
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -55410,6 +55431,7 @@ export interface operations {
55410
55431
  endAt?: string;
55411
55432
  search?: string;
55412
55433
  date?: string;
55434
+ /** @description Amount in cents, also accepts ranges like 100...200 */
55413
55435
  amount?: string;
55414
55436
  /**
55415
55437
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -55500,6 +55522,7 @@ export interface operations {
55500
55522
  endAt?: string;
55501
55523
  search?: string;
55502
55524
  date?: string;
55525
+ /** @description Amount in cents, also accepts ranges like 100...200 */
55503
55526
  amount?: string;
55504
55527
  /**
55505
55528
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -55599,6 +55622,7 @@ export interface operations {
55599
55622
  endAt?: string;
55600
55623
  search?: string;
55601
55624
  date?: string;
55625
+ /** @description Amount in cents, also accepts ranges like 100...200 */
55602
55626
  amount?: string;
55603
55627
  /**
55604
55628
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -55690,6 +55714,7 @@ export interface operations {
55690
55714
  endAt?: string;
55691
55715
  search?: string;
55692
55716
  date?: string;
55717
+ /** @description Amount in cents, also accepts ranges like 100...200 */
55693
55718
  amount?: string;
55694
55719
  /**
55695
55720
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -55786,6 +55811,7 @@ export interface operations {
55786
55811
  endAt?: string;
55787
55812
  search?: string;
55788
55813
  date?: string;
55814
+ /** @description Amount in cents, also accepts ranges like 100...200 */
55789
55815
  amount?: string;
55790
55816
  /**
55791
55817
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -55876,6 +55902,7 @@ export interface operations {
55876
55902
  endAt?: string;
55877
55903
  search?: string;
55878
55904
  date?: string;
55905
+ /** @description Amount in cents, also accepts ranges like 100...200 */
55879
55906
  amount?: string;
55880
55907
  /**
55881
55908
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -55975,6 +56002,7 @@ export interface operations {
55975
56002
  endAt?: string;
55976
56003
  search?: string;
55977
56004
  date?: string;
56005
+ /** @description Amount in cents, also accepts ranges like 100...200 */
55978
56006
  amount?: string;
55979
56007
  /**
55980
56008
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -56066,6 +56094,7 @@ export interface operations {
56066
56094
  endAt?: string;
56067
56095
  search?: string;
56068
56096
  date?: string;
56097
+ /** @description Amount in cents, also accepts ranges like 100...200 */
56069
56098
  amount?: string;
56070
56099
  /**
56071
56100
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -56162,6 +56191,7 @@ export interface operations {
56162
56191
  endAt?: string;
56163
56192
  search?: string;
56164
56193
  date?: string;
56194
+ /** @description Amount in cents, also accepts ranges like 100...200 */
56165
56195
  amount?: string;
56166
56196
  /**
56167
56197
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -56252,6 +56282,7 @@ export interface operations {
56252
56282
  endAt?: string;
56253
56283
  search?: string;
56254
56284
  date?: string;
56285
+ /** @description Amount in cents, also accepts ranges like 100...200 */
56255
56286
  amount?: string;
56256
56287
  /**
56257
56288
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -56351,6 +56382,7 @@ export interface operations {
56351
56382
  endAt?: string;
56352
56383
  search?: string;
56353
56384
  date?: string;
56385
+ /** @description Amount in cents, also accepts ranges like 100...200 */
56354
56386
  amount?: string;
56355
56387
  /**
56356
56388
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -56442,6 +56474,7 @@ export interface operations {
56442
56474
  endAt?: string;
56443
56475
  search?: string;
56444
56476
  date?: string;
56477
+ /** @description Amount in cents, also accepts ranges like 100...200 */
56445
56478
  amount?: string;
56446
56479
  /**
56447
56480
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -56538,6 +56571,7 @@ export interface operations {
56538
56571
  endAt?: string;
56539
56572
  search?: string;
56540
56573
  date?: string;
56574
+ /** @description Amount in cents, also accepts ranges like 100...200 */
56541
56575
  amount?: string;
56542
56576
  /**
56543
56577
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -56628,6 +56662,7 @@ export interface operations {
56628
56662
  endAt?: string;
56629
56663
  search?: string;
56630
56664
  date?: string;
56665
+ /** @description Amount in cents, also accepts ranges like 100...200 */
56631
56666
  amount?: string;
56632
56667
  /**
56633
56668
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -57073,6 +57108,7 @@ export interface operations {
57073
57108
  endAt?: string;
57074
57109
  search?: string;
57075
57110
  date?: string;
57111
+ /** @description Amount in cents, also accepts ranges like 100...200 */
57076
57112
  amount?: string;
57077
57113
  /**
57078
57114
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -57157,6 +57193,7 @@ export interface operations {
57157
57193
  endAt?: string;
57158
57194
  search?: string;
57159
57195
  date?: string;
57196
+ /** @description Amount in cents, also accepts ranges like 100...200 */
57160
57197
  amount?: string;
57161
57198
  /**
57162
57199
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -57585,6 +57622,7 @@ export interface operations {
57585
57622
  endAt?: string;
57586
57623
  search?: string;
57587
57624
  date?: string;
57625
+ /** @description Amount in cents, also accepts ranges like 100...200 */
57588
57626
  amount?: string;
57589
57627
  /**
57590
57628
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -57669,6 +57707,7 @@ export interface operations {
57669
57707
  endAt?: string;
57670
57708
  search?: string;
57671
57709
  date?: string;
57710
+ /** @description Amount in cents, also accepts ranges like 100...200 */
57672
57711
  amount?: string;
57673
57712
  /**
57674
57713
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -57753,6 +57792,7 @@ export interface operations {
57753
57792
  endAt?: string;
57754
57793
  search?: string;
57755
57794
  date?: string;
57795
+ /** @description Amount in cents, also accepts ranges like 100...200 */
57756
57796
  amount?: string;
57757
57797
  /**
57758
57798
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -57837,6 +57877,7 @@ export interface operations {
57837
57877
  endAt?: string;
57838
57878
  search?: string;
57839
57879
  date?: string;
57880
+ /** @description Amount in cents, also accepts ranges like 100...200 */
57840
57881
  amount?: string;
57841
57882
  /**
57842
57883
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -57931,6 +57972,7 @@ export interface operations {
57931
57972
  endAt?: string;
57932
57973
  search?: string;
57933
57974
  date?: string;
57975
+ /** @description Amount in cents, also accepts ranges like 100...200 */
57934
57976
  amount?: string;
57935
57977
  /**
57936
57978
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -58015,6 +58057,7 @@ export interface operations {
58015
58057
  endAt?: string;
58016
58058
  search?: string;
58017
58059
  date?: string;
58060
+ /** @description Amount in cents, also accepts ranges like 100...200 */
58018
58061
  amount?: string;
58019
58062
  /**
58020
58063
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -58099,6 +58142,7 @@ export interface operations {
58099
58142
  endAt?: string;
58100
58143
  search?: string;
58101
58144
  date?: string;
58145
+ /** @description Amount in cents, also accepts ranges like 100...200 */
58102
58146
  amount?: string;
58103
58147
  /**
58104
58148
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -58183,6 +58227,7 @@ export interface operations {
58183
58227
  endAt?: string;
58184
58228
  search?: string;
58185
58229
  date?: string;
58230
+ /** @description Amount in cents, also accepts ranges like 100...200 */
58186
58231
  amount?: string;
58187
58232
  /**
58188
58233
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -58614,6 +58659,7 @@ export interface operations {
58614
58659
  endAt?: string;
58615
58660
  search?: string;
58616
58661
  date?: string;
58662
+ /** @description Amount in cents, also accepts ranges like 100...200 */
58617
58663
  amount?: string;
58618
58664
  /**
58619
58665
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -58719,6 +58765,7 @@ export interface operations {
58719
58765
  endAt?: string;
58720
58766
  search?: string;
58721
58767
  date?: string;
58768
+ /** @description Amount in cents, also accepts ranges like 100...200 */
58722
58769
  amount?: string;
58723
58770
  /**
58724
58771
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -58814,6 +58861,7 @@ export interface operations {
58814
58861
  endAt?: string;
58815
58862
  search?: string;
58816
58863
  date?: string;
58864
+ /** @description Amount in cents, also accepts ranges like 100...200 */
58817
58865
  amount?: string;
58818
58866
  /**
58819
58867
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -59078,6 +59126,7 @@ export interface operations {
59078
59126
  endAt?: string;
59079
59127
  search?: string;
59080
59128
  date?: string;
59129
+ /** @description Amount in cents, also accepts ranges like 100...200 */
59081
59130
  amount?: string;
59082
59131
  /**
59083
59132
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -59187,6 +59236,7 @@ export interface operations {
59187
59236
  endAt?: string;
59188
59237
  search?: string;
59189
59238
  date?: string;
59239
+ /** @description Amount in cents, also accepts ranges like 100...200 */
59190
59240
  amount?: string;
59191
59241
  /**
59192
59242
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -59302,6 +59352,7 @@ export interface operations {
59302
59352
  endAt?: string;
59303
59353
  search?: string;
59304
59354
  date?: string;
59355
+ /** @description Amount in cents, also accepts ranges like 100...200 */
59305
59356
  amount?: string;
59306
59357
  /**
59307
59358
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -65871,6 +65922,7 @@ export interface operations {
65871
65922
  endAt?: string;
65872
65923
  search?: string;
65873
65924
  date?: string;
65925
+ /** @description Amount in cents, also accepts ranges like 100...200 */
65874
65926
  amount?: string;
65875
65927
  /**
65876
65928
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -66442,6 +66494,7 @@ export interface operations {
66442
66494
  endAt?: string;
66443
66495
  search?: string;
66444
66496
  date?: string;
66497
+ /** @description Amount in cents, also accepts ranges like 100...200 */
66445
66498
  amount?: string;
66446
66499
  /**
66447
66500
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -66770,6 +66823,7 @@ export interface operations {
66770
66823
  endAt?: string;
66771
66824
  search?: string;
66772
66825
  date?: string;
66826
+ /** @description Amount in cents, also accepts ranges like 100...200 */
66773
66827
  amount?: string;
66774
66828
  /**
66775
66829
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -66858,6 +66912,7 @@ export interface operations {
66858
66912
  endAt?: string;
66859
66913
  search?: string;
66860
66914
  date?: string;
66915
+ /** @description Amount in cents, also accepts ranges like 100...200 */
66861
66916
  amount?: string;
66862
66917
  /**
66863
66918
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -67033,6 +67088,7 @@ export interface operations {
67033
67088
  endAt?: string;
67034
67089
  search?: string;
67035
67090
  date?: string;
67091
+ /** @description Amount in cents, also accepts ranges like 100...200 */
67036
67092
  amount?: string;
67037
67093
  /**
67038
67094
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -67121,6 +67177,7 @@ export interface operations {
67121
67177
  endAt?: string;
67122
67178
  search?: string;
67123
67179
  date?: string;
67180
+ /** @description Amount in cents, also accepts ranges like 100...200 */
67124
67181
  amount?: string;
67125
67182
  /**
67126
67183
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -67301,6 +67358,7 @@ export interface operations {
67301
67358
  endAt?: string;
67302
67359
  search?: string;
67303
67360
  date?: string;
67361
+ /** @description Amount in cents, also accepts ranges like 100...200 */
67304
67362
  amount?: string;
67305
67363
  /**
67306
67364
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -67389,6 +67447,7 @@ export interface operations {
67389
67447
  endAt?: string;
67390
67448
  search?: string;
67391
67449
  date?: string;
67450
+ /** @description Amount in cents, also accepts ranges like 100...200 */
67392
67451
  amount?: string;
67393
67452
  /**
67394
67453
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -67857,6 +67916,7 @@ export interface operations {
67857
67916
  endAt?: string;
67858
67917
  search?: string;
67859
67918
  date?: string;
67919
+ /** @description Amount in cents, also accepts ranges like 100...200 */
67860
67920
  amount?: string;
67861
67921
  /**
67862
67922
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -68185,6 +68245,7 @@ export interface operations {
68185
68245
  endAt?: string;
68186
68246
  search?: string;
68187
68247
  date?: string;
68248
+ /** @description Amount in cents, also accepts ranges like 100...200 */
68188
68249
  amount?: string;
68189
68250
  /**
68190
68251
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -68273,6 +68334,7 @@ export interface operations {
68273
68334
  endAt?: string;
68274
68335
  search?: string;
68275
68336
  date?: string;
68337
+ /** @description Amount in cents, also accepts ranges like 100...200 */
68276
68338
  amount?: string;
68277
68339
  /**
68278
68340
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -68448,6 +68510,7 @@ export interface operations {
68448
68510
  endAt?: string;
68449
68511
  search?: string;
68450
68512
  date?: string;
68513
+ /** @description Amount in cents, also accepts ranges like 100...200 */
68451
68514
  amount?: string;
68452
68515
  /**
68453
68516
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -68536,6 +68599,7 @@ export interface operations {
68536
68599
  endAt?: string;
68537
68600
  search?: string;
68538
68601
  date?: string;
68602
+ /** @description Amount in cents, also accepts ranges like 100...200 */
68539
68603
  amount?: string;
68540
68604
  /**
68541
68605
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -68716,6 +68780,7 @@ export interface operations {
68716
68780
  endAt?: string;
68717
68781
  search?: string;
68718
68782
  date?: string;
68783
+ /** @description Amount in cents, also accepts ranges like 100...200 */
68719
68784
  amount?: string;
68720
68785
  /**
68721
68786
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -68804,6 +68869,7 @@ export interface operations {
68804
68869
  endAt?: string;
68805
68870
  search?: string;
68806
68871
  date?: string;
68872
+ /** @description Amount in cents, also accepts ranges like 100...200 */
68807
68873
  amount?: string;
68808
68874
  /**
68809
68875
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -72940,6 +73006,7 @@ export interface operations {
72940
73006
  endAt?: string;
72941
73007
  search?: string;
72942
73008
  date?: string;
73009
+ /** @description Amount in cents, also accepts ranges like 100...200 */
72943
73010
  amount?: string;
72944
73011
  /**
72945
73012
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -73268,6 +73335,7 @@ export interface operations {
73268
73335
  endAt?: string;
73269
73336
  search?: string;
73270
73337
  date?: string;
73338
+ /** @description Amount in cents, also accepts ranges like 100...200 */
73271
73339
  amount?: string;
73272
73340
  /**
73273
73341
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -73356,6 +73424,7 @@ export interface operations {
73356
73424
  endAt?: string;
73357
73425
  search?: string;
73358
73426
  date?: string;
73427
+ /** @description Amount in cents, also accepts ranges like 100...200 */
73359
73428
  amount?: string;
73360
73429
  /**
73361
73430
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -73531,6 +73600,7 @@ export interface operations {
73531
73600
  endAt?: string;
73532
73601
  search?: string;
73533
73602
  date?: string;
73603
+ /** @description Amount in cents, also accepts ranges like 100...200 */
73534
73604
  amount?: string;
73535
73605
  /**
73536
73606
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -73619,6 +73689,7 @@ export interface operations {
73619
73689
  endAt?: string;
73620
73690
  search?: string;
73621
73691
  date?: string;
73692
+ /** @description Amount in cents, also accepts ranges like 100...200 */
73622
73693
  amount?: string;
73623
73694
  /**
73624
73695
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -73799,6 +73870,7 @@ export interface operations {
73799
73870
  endAt?: string;
73800
73871
  search?: string;
73801
73872
  date?: string;
73873
+ /** @description Amount in cents, also accepts ranges like 100...200 */
73802
73874
  amount?: string;
73803
73875
  /**
73804
73876
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -73887,6 +73959,7 @@ export interface operations {
73887
73959
  endAt?: string;
73888
73960
  search?: string;
73889
73961
  date?: string;
73962
+ /** @description Amount in cents, also accepts ranges like 100...200 */
73890
73963
  amount?: string;
73891
73964
  /**
73892
73965
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -74363,6 +74436,7 @@ export interface operations {
74363
74436
  endAt?: string;
74364
74437
  search?: string;
74365
74438
  date?: string;
74439
+ /** @description Amount in cents, also accepts ranges like 100...200 */
74366
74440
  amount?: string;
74367
74441
  /**
74368
74442
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -74691,6 +74765,7 @@ export interface operations {
74691
74765
  endAt?: string;
74692
74766
  search?: string;
74693
74767
  date?: string;
74768
+ /** @description Amount in cents, also accepts ranges like 100...200 */
74694
74769
  amount?: string;
74695
74770
  /**
74696
74771
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -74779,6 +74854,7 @@ export interface operations {
74779
74854
  endAt?: string;
74780
74855
  search?: string;
74781
74856
  date?: string;
74857
+ /** @description Amount in cents, also accepts ranges like 100...200 */
74782
74858
  amount?: string;
74783
74859
  /**
74784
74860
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -74954,6 +75030,7 @@ export interface operations {
74954
75030
  endAt?: string;
74955
75031
  search?: string;
74956
75032
  date?: string;
75033
+ /** @description Amount in cents, also accepts ranges like 100...200 */
74957
75034
  amount?: string;
74958
75035
  /**
74959
75036
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -75042,6 +75119,7 @@ export interface operations {
75042
75119
  endAt?: string;
75043
75120
  search?: string;
75044
75121
  date?: string;
75122
+ /** @description Amount in cents, also accepts ranges like 100...200 */
75045
75123
  amount?: string;
75046
75124
  /**
75047
75125
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -75222,6 +75300,7 @@ export interface operations {
75222
75300
  endAt?: string;
75223
75301
  search?: string;
75224
75302
  date?: string;
75303
+ /** @description Amount in cents, also accepts ranges like 100...200 */
75225
75304
  amount?: string;
75226
75305
  /**
75227
75306
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -75310,6 +75389,7 @@ export interface operations {
75310
75389
  endAt?: string;
75311
75390
  search?: string;
75312
75391
  date?: string;
75392
+ /** @description Amount in cents, also accepts ranges like 100...200 */
75313
75393
  amount?: string;
75314
75394
  /**
75315
75395
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -76054,14 +76134,10 @@ export interface operations {
76054
76134
  connectionId?: string;
76055
76135
  type?: "extract" | "automate" | "flow" | "webhook";
76056
76136
  status?: "queued" | "started" | "completed" | "failed" | "canceled";
76057
- /** @description Deprecated: use sortBy + sortDirection */
76058
- sort?: "created_asc" | "created_desc" | "updated_asc" | "updated_desc";
76137
+ /** @description Sort field; prefix with - for descending order */
76138
+ sort?: "created" | "-created" | "updated" | "-updated";
76059
76139
  /** @description Comma-separated sync IDs. */
76060
76140
  ids?: string;
76061
- /** @description Field to sort by */
76062
- sortBy?: "created" | "updated";
76063
- /** @description Sort direction, defaults to desc */
76064
- sortDirection?: "asc" | "desc";
76065
76141
  limit?: number;
76066
76142
  page?: number;
76067
76143
  offset?: number;
@@ -81666,12 +81742,8 @@ export interface operations {
81666
81742
  /** @description Include partner-dashboard listing, member, connection, issue, and child-team counts. */
81667
81743
  includeAggregates?: boolean;
81668
81744
  type?: "partner" | "propertyManager";
81669
- /** @description Field to sort by */
81670
- sortBy?: "created" | "name" | "type";
81671
- /** @description Sort direction, defaults to desc */
81672
- sortDirection?: "asc" | "desc";
81673
- /** @description Deprecated: use sortBy + sortDirection */
81674
- 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";
81675
81747
  /** @description You can use elipisis: YYYY-MM-DD...YYYY-MM-DD */
81676
81748
  date?: string;
81677
81749
  limit?: number;