@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.
@@ -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;
@@ -47763,6 +47744,7 @@ export interface operations {
47763
47744
  endAt?: string;
47764
47745
  search?: string;
47765
47746
  date?: string;
47747
+ /** @description Amount in cents, also accepts ranges like 100...200 */
47766
47748
  amount?: string;
47767
47749
  /**
47768
47750
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -47858,6 +47840,7 @@ export interface operations {
47858
47840
  endAt?: string;
47859
47841
  search?: string;
47860
47842
  date?: string;
47843
+ /** @description Amount in cents, also accepts ranges like 100...200 */
47861
47844
  amount?: string;
47862
47845
  /**
47863
47846
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -47959,6 +47942,7 @@ export interface operations {
47959
47942
  endAt?: string;
47960
47943
  search?: string;
47961
47944
  date?: string;
47945
+ /** @description Amount in cents, also accepts ranges like 100...200 */
47962
47946
  amount?: string;
47963
47947
  /**
47964
47948
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -48056,6 +48040,7 @@ export interface operations {
48056
48040
  endAt?: string;
48057
48041
  search?: string;
48058
48042
  date?: string;
48043
+ /** @description Amount in cents, also accepts ranges like 100...200 */
48059
48044
  amount?: string;
48060
48045
  /**
48061
48046
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -48151,6 +48136,7 @@ export interface operations {
48151
48136
  endAt?: string;
48152
48137
  search?: string;
48153
48138
  date?: string;
48139
+ /** @description Amount in cents, also accepts ranges like 100...200 */
48154
48140
  amount?: string;
48155
48141
  /**
48156
48142
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -48252,6 +48238,7 @@ export interface operations {
48252
48238
  endAt?: string;
48253
48239
  search?: string;
48254
48240
  date?: string;
48241
+ /** @description Amount in cents, also accepts ranges like 100...200 */
48255
48242
  amount?: string;
48256
48243
  /**
48257
48244
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -48349,6 +48336,7 @@ export interface operations {
48349
48336
  endAt?: string;
48350
48337
  search?: string;
48351
48338
  date?: string;
48339
+ /** @description Amount in cents, also accepts ranges like 100...200 */
48352
48340
  amount?: string;
48353
48341
  /**
48354
48342
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -48444,6 +48432,7 @@ export interface operations {
48444
48432
  endAt?: string;
48445
48433
  search?: string;
48446
48434
  date?: string;
48435
+ /** @description Amount in cents, also accepts ranges like 100...200 */
48447
48436
  amount?: string;
48448
48437
  /**
48449
48438
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -48545,6 +48534,7 @@ export interface operations {
48545
48534
  endAt?: string;
48546
48535
  search?: string;
48547
48536
  date?: string;
48537
+ /** @description Amount in cents, also accepts ranges like 100...200 */
48548
48538
  amount?: string;
48549
48539
  /**
48550
48540
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -48642,6 +48632,7 @@ export interface operations {
48642
48632
  endAt?: string;
48643
48633
  search?: string;
48644
48634
  date?: string;
48635
+ /** @description Amount in cents, also accepts ranges like 100...200 */
48645
48636
  amount?: string;
48646
48637
  /**
48647
48638
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -48737,6 +48728,7 @@ export interface operations {
48737
48728
  endAt?: string;
48738
48729
  search?: string;
48739
48730
  date?: string;
48731
+ /** @description Amount in cents, also accepts ranges like 100...200 */
48740
48732
  amount?: string;
48741
48733
  /**
48742
48734
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -48838,6 +48830,7 @@ export interface operations {
48838
48830
  endAt?: string;
48839
48831
  search?: string;
48840
48832
  date?: string;
48833
+ /** @description Amount in cents, also accepts ranges like 100...200 */
48841
48834
  amount?: string;
48842
48835
  /**
48843
48836
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -49295,6 +49288,7 @@ export interface operations {
49295
49288
  endAt?: string;
49296
49289
  search?: string;
49297
49290
  date?: string;
49291
+ /** @description Amount in cents, also accepts ranges like 100...200 */
49298
49292
  amount?: string;
49299
49293
  /**
49300
49294
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -49843,6 +49837,7 @@ export interface operations {
49843
49837
  endAt?: string;
49844
49838
  search?: string;
49845
49839
  date?: string;
49840
+ /** @description Amount in cents, also accepts ranges like 100...200 */
49846
49841
  amount?: string;
49847
49842
  /** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
49848
49843
  isDateRangeEndInclusive?: boolean;
@@ -50188,6 +50183,7 @@ export interface operations {
50188
50183
  endAt?: string;
50189
50184
  search?: string;
50190
50185
  date?: string;
50186
+ /** @description Amount in cents, also accepts ranges like 100...200 */
50191
50187
  amount?: string;
50192
50188
  /** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
50193
50189
  isDateRangeEndInclusive?: boolean;
@@ -50826,6 +50822,7 @@ export interface operations {
50826
50822
  endAt?: string;
50827
50823
  search?: string;
50828
50824
  date?: string;
50825
+ /** @description Amount in cents, also accepts ranges like 100...200 */
50829
50826
  amount?: string;
50830
50827
  /**
50831
50828
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -50928,6 +50925,7 @@ export interface operations {
50928
50925
  endAt?: string;
50929
50926
  search?: string;
50930
50927
  date?: string;
50928
+ /** @description Amount in cents, also accepts ranges like 100...200 */
50931
50929
  amount?: string;
50932
50930
  /**
50933
50931
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -51015,6 +51013,7 @@ export interface operations {
51015
51013
  endAt?: string;
51016
51014
  search?: string;
51017
51015
  date?: string;
51016
+ /** @description Amount in cents, also accepts ranges like 100...200 */
51018
51017
  amount?: string;
51019
51018
  /**
51020
51019
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -51396,6 +51395,7 @@ export interface operations {
51396
51395
  endAt?: string;
51397
51396
  search?: string;
51398
51397
  date?: string;
51398
+ /** @description Amount in cents, also accepts ranges like 100...200 */
51399
51399
  amount?: string;
51400
51400
  /** @description comma separated reservation ids or "unmapped" */
51401
51401
  reservationIds?: string;
@@ -51736,6 +51736,7 @@ export interface operations {
51736
51736
  endAt?: string;
51737
51737
  search?: string;
51738
51738
  date?: string;
51739
+ /** @description Amount in cents, also accepts ranges like 100...200 */
51739
51740
  amount?: string;
51740
51741
  /** @description comma separated reservation ids or "unmapped" */
51741
51742
  reservationIds?: string;
@@ -52332,6 +52333,7 @@ export interface operations {
52332
52333
  endAt?: string;
52333
52334
  search?: string;
52334
52335
  date?: string;
52336
+ /** @description Amount in cents, also accepts ranges like 100...200 */
52335
52337
  amount?: string;
52336
52338
  /**
52337
52339
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -52948,6 +52950,7 @@ export interface operations {
52948
52950
  endAt?: string;
52949
52951
  search?: string;
52950
52952
  date?: string;
52953
+ /** @description Amount in cents, also accepts ranges like 100...200 */
52951
52954
  amount?: string;
52952
52955
  /**
52953
52956
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -53036,6 +53039,7 @@ export interface operations {
53036
53039
  endAt?: string;
53037
53040
  search?: string;
53038
53041
  date?: string;
53042
+ /** @description Amount in cents, also accepts ranges like 100...200 */
53039
53043
  amount?: string;
53040
53044
  /**
53041
53045
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -53149,6 +53153,7 @@ export interface operations {
53149
53153
  endAt?: string;
53150
53154
  search?: string;
53151
53155
  date?: string;
53156
+ /** @description Amount in cents, also accepts ranges like 100...200 */
53152
53157
  amount?: string;
53153
53158
  /**
53154
53159
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -53234,6 +53239,7 @@ export interface operations {
53234
53239
  endAt?: string;
53235
53240
  search?: string;
53236
53241
  date?: string;
53242
+ /** @description Amount in cents, also accepts ranges like 100...200 */
53237
53243
  amount?: string;
53238
53244
  /**
53239
53245
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -53319,6 +53325,7 @@ export interface operations {
53319
53325
  endAt?: string;
53320
53326
  search?: string;
53321
53327
  date?: string;
53328
+ /** @description Amount in cents, also accepts ranges like 100...200 */
53322
53329
  amount?: string;
53323
53330
  /**
53324
53331
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -53414,6 +53421,7 @@ export interface operations {
53414
53421
  endAt?: string;
53415
53422
  search?: string;
53416
53423
  date?: string;
53424
+ /** @description Amount in cents, also accepts ranges like 100...200 */
53417
53425
  amount?: string;
53418
53426
  /**
53419
53427
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -53499,6 +53507,7 @@ export interface operations {
53499
53507
  endAt?: string;
53500
53508
  search?: string;
53501
53509
  date?: string;
53510
+ /** @description Amount in cents, also accepts ranges like 100...200 */
53502
53511
  amount?: string;
53503
53512
  /**
53504
53513
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -53615,6 +53624,7 @@ export interface operations {
53615
53624
  endAt?: string;
53616
53625
  search?: string;
53617
53626
  date?: string;
53627
+ /** @description Amount in cents, also accepts ranges like 100...200 */
53618
53628
  amount?: string;
53619
53629
  /**
53620
53630
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -53700,6 +53710,7 @@ export interface operations {
53700
53710
  endAt?: string;
53701
53711
  search?: string;
53702
53712
  date?: string;
53713
+ /** @description Amount in cents, also accepts ranges like 100...200 */
53703
53714
  amount?: string;
53704
53715
  /**
53705
53716
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -53785,6 +53796,7 @@ export interface operations {
53785
53796
  endAt?: string;
53786
53797
  search?: string;
53787
53798
  date?: string;
53799
+ /** @description Amount in cents, also accepts ranges like 100...200 */
53788
53800
  amount?: string;
53789
53801
  /**
53790
53802
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -53880,6 +53892,7 @@ export interface operations {
53880
53892
  endAt?: string;
53881
53893
  search?: string;
53882
53894
  date?: string;
53895
+ /** @description Amount in cents, also accepts ranges like 100...200 */
53883
53896
  amount?: string;
53884
53897
  /**
53885
53898
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -53965,6 +53978,7 @@ export interface operations {
53965
53978
  endAt?: string;
53966
53979
  search?: string;
53967
53980
  date?: string;
53981
+ /** @description Amount in cents, also accepts ranges like 100...200 */
53968
53982
  amount?: string;
53969
53983
  /**
53970
53984
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -54080,6 +54094,7 @@ export interface operations {
54080
54094
  endAt?: string;
54081
54095
  search?: string;
54082
54096
  date?: string;
54097
+ /** @description Amount in cents, also accepts ranges like 100...200 */
54083
54098
  amount?: string;
54084
54099
  /**
54085
54100
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -54165,6 +54180,7 @@ export interface operations {
54165
54180
  endAt?: string;
54166
54181
  search?: string;
54167
54182
  date?: string;
54183
+ /** @description Amount in cents, also accepts ranges like 100...200 */
54168
54184
  amount?: string;
54169
54185
  /**
54170
54186
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -54250,6 +54266,7 @@ export interface operations {
54250
54266
  endAt?: string;
54251
54267
  search?: string;
54252
54268
  date?: string;
54269
+ /** @description Amount in cents, also accepts ranges like 100...200 */
54253
54270
  amount?: string;
54254
54271
  /**
54255
54272
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -54345,6 +54362,7 @@ export interface operations {
54345
54362
  endAt?: string;
54346
54363
  search?: string;
54347
54364
  date?: string;
54365
+ /** @description Amount in cents, also accepts ranges like 100...200 */
54348
54366
  amount?: string;
54349
54367
  /**
54350
54368
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -54430,6 +54448,7 @@ export interface operations {
54430
54448
  endAt?: string;
54431
54449
  search?: string;
54432
54450
  date?: string;
54451
+ /** @description Amount in cents, also accepts ranges like 100...200 */
54433
54452
  amount?: string;
54434
54453
  /**
54435
54454
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -55224,6 +55243,7 @@ export interface operations {
55224
55243
  endAt?: string;
55225
55244
  search?: string;
55226
55245
  date?: string;
55246
+ /** @description Amount in cents, also accepts ranges like 100...200 */
55227
55247
  amount?: string;
55228
55248
  /**
55229
55249
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -55315,6 +55335,7 @@ export interface operations {
55315
55335
  endAt?: string;
55316
55336
  search?: string;
55317
55337
  date?: string;
55338
+ /** @description Amount in cents, also accepts ranges like 100...200 */
55318
55339
  amount?: string;
55319
55340
  /**
55320
55341
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -55411,6 +55432,7 @@ export interface operations {
55411
55432
  endAt?: string;
55412
55433
  search?: string;
55413
55434
  date?: string;
55435
+ /** @description Amount in cents, also accepts ranges like 100...200 */
55414
55436
  amount?: string;
55415
55437
  /**
55416
55438
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -55501,6 +55523,7 @@ export interface operations {
55501
55523
  endAt?: string;
55502
55524
  search?: string;
55503
55525
  date?: string;
55526
+ /** @description Amount in cents, also accepts ranges like 100...200 */
55504
55527
  amount?: string;
55505
55528
  /**
55506
55529
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -55600,6 +55623,7 @@ export interface operations {
55600
55623
  endAt?: string;
55601
55624
  search?: string;
55602
55625
  date?: string;
55626
+ /** @description Amount in cents, also accepts ranges like 100...200 */
55603
55627
  amount?: string;
55604
55628
  /**
55605
55629
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -55691,6 +55715,7 @@ export interface operations {
55691
55715
  endAt?: string;
55692
55716
  search?: string;
55693
55717
  date?: string;
55718
+ /** @description Amount in cents, also accepts ranges like 100...200 */
55694
55719
  amount?: string;
55695
55720
  /**
55696
55721
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -55787,6 +55812,7 @@ export interface operations {
55787
55812
  endAt?: string;
55788
55813
  search?: string;
55789
55814
  date?: string;
55815
+ /** @description Amount in cents, also accepts ranges like 100...200 */
55790
55816
  amount?: string;
55791
55817
  /**
55792
55818
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -55877,6 +55903,7 @@ export interface operations {
55877
55903
  endAt?: string;
55878
55904
  search?: string;
55879
55905
  date?: string;
55906
+ /** @description Amount in cents, also accepts ranges like 100...200 */
55880
55907
  amount?: string;
55881
55908
  /**
55882
55909
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -55976,6 +56003,7 @@ export interface operations {
55976
56003
  endAt?: string;
55977
56004
  search?: string;
55978
56005
  date?: string;
56006
+ /** @description Amount in cents, also accepts ranges like 100...200 */
55979
56007
  amount?: string;
55980
56008
  /**
55981
56009
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -56067,6 +56095,7 @@ export interface operations {
56067
56095
  endAt?: string;
56068
56096
  search?: string;
56069
56097
  date?: string;
56098
+ /** @description Amount in cents, also accepts ranges like 100...200 */
56070
56099
  amount?: string;
56071
56100
  /**
56072
56101
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -56163,6 +56192,7 @@ export interface operations {
56163
56192
  endAt?: string;
56164
56193
  search?: string;
56165
56194
  date?: string;
56195
+ /** @description Amount in cents, also accepts ranges like 100...200 */
56166
56196
  amount?: string;
56167
56197
  /**
56168
56198
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -56253,6 +56283,7 @@ export interface operations {
56253
56283
  endAt?: string;
56254
56284
  search?: string;
56255
56285
  date?: string;
56286
+ /** @description Amount in cents, also accepts ranges like 100...200 */
56256
56287
  amount?: string;
56257
56288
  /**
56258
56289
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -56352,6 +56383,7 @@ export interface operations {
56352
56383
  endAt?: string;
56353
56384
  search?: string;
56354
56385
  date?: string;
56386
+ /** @description Amount in cents, also accepts ranges like 100...200 */
56355
56387
  amount?: string;
56356
56388
  /**
56357
56389
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -56443,6 +56475,7 @@ export interface operations {
56443
56475
  endAt?: string;
56444
56476
  search?: string;
56445
56477
  date?: string;
56478
+ /** @description Amount in cents, also accepts ranges like 100...200 */
56446
56479
  amount?: string;
56447
56480
  /**
56448
56481
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -56539,6 +56572,7 @@ export interface operations {
56539
56572
  endAt?: string;
56540
56573
  search?: string;
56541
56574
  date?: string;
56575
+ /** @description Amount in cents, also accepts ranges like 100...200 */
56542
56576
  amount?: string;
56543
56577
  /**
56544
56578
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -56629,6 +56663,7 @@ export interface operations {
56629
56663
  endAt?: string;
56630
56664
  search?: string;
56631
56665
  date?: string;
56666
+ /** @description Amount in cents, also accepts ranges like 100...200 */
56632
56667
  amount?: string;
56633
56668
  /**
56634
56669
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -57074,6 +57109,7 @@ export interface operations {
57074
57109
  endAt?: string;
57075
57110
  search?: string;
57076
57111
  date?: string;
57112
+ /** @description Amount in cents, also accepts ranges like 100...200 */
57077
57113
  amount?: string;
57078
57114
  /**
57079
57115
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -57158,6 +57194,7 @@ export interface operations {
57158
57194
  endAt?: string;
57159
57195
  search?: string;
57160
57196
  date?: string;
57197
+ /** @description Amount in cents, also accepts ranges like 100...200 */
57161
57198
  amount?: string;
57162
57199
  /**
57163
57200
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -57586,6 +57623,7 @@ export interface operations {
57586
57623
  endAt?: string;
57587
57624
  search?: string;
57588
57625
  date?: string;
57626
+ /** @description Amount in cents, also accepts ranges like 100...200 */
57589
57627
  amount?: string;
57590
57628
  /**
57591
57629
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -57670,6 +57708,7 @@ export interface operations {
57670
57708
  endAt?: string;
57671
57709
  search?: string;
57672
57710
  date?: string;
57711
+ /** @description Amount in cents, also accepts ranges like 100...200 */
57673
57712
  amount?: string;
57674
57713
  /**
57675
57714
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -57754,6 +57793,7 @@ export interface operations {
57754
57793
  endAt?: string;
57755
57794
  search?: string;
57756
57795
  date?: string;
57796
+ /** @description Amount in cents, also accepts ranges like 100...200 */
57757
57797
  amount?: string;
57758
57798
  /**
57759
57799
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -57838,6 +57878,7 @@ export interface operations {
57838
57878
  endAt?: string;
57839
57879
  search?: string;
57840
57880
  date?: string;
57881
+ /** @description Amount in cents, also accepts ranges like 100...200 */
57841
57882
  amount?: string;
57842
57883
  /**
57843
57884
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -57932,6 +57973,7 @@ export interface operations {
57932
57973
  endAt?: string;
57933
57974
  search?: string;
57934
57975
  date?: string;
57976
+ /** @description Amount in cents, also accepts ranges like 100...200 */
57935
57977
  amount?: string;
57936
57978
  /**
57937
57979
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -58016,6 +58058,7 @@ export interface operations {
58016
58058
  endAt?: string;
58017
58059
  search?: string;
58018
58060
  date?: string;
58061
+ /** @description Amount in cents, also accepts ranges like 100...200 */
58019
58062
  amount?: string;
58020
58063
  /**
58021
58064
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -58100,6 +58143,7 @@ export interface operations {
58100
58143
  endAt?: string;
58101
58144
  search?: string;
58102
58145
  date?: string;
58146
+ /** @description Amount in cents, also accepts ranges like 100...200 */
58103
58147
  amount?: string;
58104
58148
  /**
58105
58149
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -58184,6 +58228,7 @@ export interface operations {
58184
58228
  endAt?: string;
58185
58229
  search?: string;
58186
58230
  date?: string;
58231
+ /** @description Amount in cents, also accepts ranges like 100...200 */
58187
58232
  amount?: string;
58188
58233
  /**
58189
58234
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -58615,6 +58660,7 @@ export interface operations {
58615
58660
  endAt?: string;
58616
58661
  search?: string;
58617
58662
  date?: string;
58663
+ /** @description Amount in cents, also accepts ranges like 100...200 */
58618
58664
  amount?: string;
58619
58665
  /**
58620
58666
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -58720,6 +58766,7 @@ export interface operations {
58720
58766
  endAt?: string;
58721
58767
  search?: string;
58722
58768
  date?: string;
58769
+ /** @description Amount in cents, also accepts ranges like 100...200 */
58723
58770
  amount?: string;
58724
58771
  /**
58725
58772
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -58815,6 +58862,7 @@ export interface operations {
58815
58862
  endAt?: string;
58816
58863
  search?: string;
58817
58864
  date?: string;
58865
+ /** @description Amount in cents, also accepts ranges like 100...200 */
58818
58866
  amount?: string;
58819
58867
  /**
58820
58868
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -59079,6 +59127,7 @@ export interface operations {
59079
59127
  endAt?: string;
59080
59128
  search?: string;
59081
59129
  date?: string;
59130
+ /** @description Amount in cents, also accepts ranges like 100...200 */
59082
59131
  amount?: string;
59083
59132
  /**
59084
59133
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -59188,6 +59237,7 @@ export interface operations {
59188
59237
  endAt?: string;
59189
59238
  search?: string;
59190
59239
  date?: string;
59240
+ /** @description Amount in cents, also accepts ranges like 100...200 */
59191
59241
  amount?: string;
59192
59242
  /**
59193
59243
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -59303,6 +59353,7 @@ export interface operations {
59303
59353
  endAt?: string;
59304
59354
  search?: string;
59305
59355
  date?: string;
59356
+ /** @description Amount in cents, also accepts ranges like 100...200 */
59306
59357
  amount?: string;
59307
59358
  /**
59308
59359
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -65872,6 +65923,7 @@ export interface operations {
65872
65923
  endAt?: string;
65873
65924
  search?: string;
65874
65925
  date?: string;
65926
+ /** @description Amount in cents, also accepts ranges like 100...200 */
65875
65927
  amount?: string;
65876
65928
  /**
65877
65929
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -66443,6 +66495,7 @@ export interface operations {
66443
66495
  endAt?: string;
66444
66496
  search?: string;
66445
66497
  date?: string;
66498
+ /** @description Amount in cents, also accepts ranges like 100...200 */
66446
66499
  amount?: string;
66447
66500
  /**
66448
66501
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -66771,6 +66824,7 @@ export interface operations {
66771
66824
  endAt?: string;
66772
66825
  search?: string;
66773
66826
  date?: string;
66827
+ /** @description Amount in cents, also accepts ranges like 100...200 */
66774
66828
  amount?: string;
66775
66829
  /**
66776
66830
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -66859,6 +66913,7 @@ export interface operations {
66859
66913
  endAt?: string;
66860
66914
  search?: string;
66861
66915
  date?: string;
66916
+ /** @description Amount in cents, also accepts ranges like 100...200 */
66862
66917
  amount?: string;
66863
66918
  /**
66864
66919
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -67034,6 +67089,7 @@ export interface operations {
67034
67089
  endAt?: string;
67035
67090
  search?: string;
67036
67091
  date?: string;
67092
+ /** @description Amount in cents, also accepts ranges like 100...200 */
67037
67093
  amount?: string;
67038
67094
  /**
67039
67095
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -67122,6 +67178,7 @@ export interface operations {
67122
67178
  endAt?: string;
67123
67179
  search?: string;
67124
67180
  date?: string;
67181
+ /** @description Amount in cents, also accepts ranges like 100...200 */
67125
67182
  amount?: string;
67126
67183
  /**
67127
67184
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -67302,6 +67359,7 @@ export interface operations {
67302
67359
  endAt?: string;
67303
67360
  search?: string;
67304
67361
  date?: string;
67362
+ /** @description Amount in cents, also accepts ranges like 100...200 */
67305
67363
  amount?: string;
67306
67364
  /**
67307
67365
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -67390,6 +67448,7 @@ export interface operations {
67390
67448
  endAt?: string;
67391
67449
  search?: string;
67392
67450
  date?: string;
67451
+ /** @description Amount in cents, also accepts ranges like 100...200 */
67393
67452
  amount?: string;
67394
67453
  /**
67395
67454
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -67858,6 +67917,7 @@ export interface operations {
67858
67917
  endAt?: string;
67859
67918
  search?: string;
67860
67919
  date?: string;
67920
+ /** @description Amount in cents, also accepts ranges like 100...200 */
67861
67921
  amount?: string;
67862
67922
  /**
67863
67923
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -68186,6 +68246,7 @@ export interface operations {
68186
68246
  endAt?: string;
68187
68247
  search?: string;
68188
68248
  date?: string;
68249
+ /** @description Amount in cents, also accepts ranges like 100...200 */
68189
68250
  amount?: string;
68190
68251
  /**
68191
68252
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -68274,6 +68335,7 @@ export interface operations {
68274
68335
  endAt?: string;
68275
68336
  search?: string;
68276
68337
  date?: string;
68338
+ /** @description Amount in cents, also accepts ranges like 100...200 */
68277
68339
  amount?: string;
68278
68340
  /**
68279
68341
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -68449,6 +68511,7 @@ export interface operations {
68449
68511
  endAt?: string;
68450
68512
  search?: string;
68451
68513
  date?: string;
68514
+ /** @description Amount in cents, also accepts ranges like 100...200 */
68452
68515
  amount?: string;
68453
68516
  /**
68454
68517
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -68537,6 +68600,7 @@ export interface operations {
68537
68600
  endAt?: string;
68538
68601
  search?: string;
68539
68602
  date?: string;
68603
+ /** @description Amount in cents, also accepts ranges like 100...200 */
68540
68604
  amount?: string;
68541
68605
  /**
68542
68606
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -68717,6 +68781,7 @@ export interface operations {
68717
68781
  endAt?: string;
68718
68782
  search?: string;
68719
68783
  date?: string;
68784
+ /** @description Amount in cents, also accepts ranges like 100...200 */
68720
68785
  amount?: string;
68721
68786
  /**
68722
68787
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -68805,6 +68870,7 @@ export interface operations {
68805
68870
  endAt?: string;
68806
68871
  search?: string;
68807
68872
  date?: string;
68873
+ /** @description Amount in cents, also accepts ranges like 100...200 */
68808
68874
  amount?: string;
68809
68875
  /**
68810
68876
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -72941,6 +73007,7 @@ export interface operations {
72941
73007
  endAt?: string;
72942
73008
  search?: string;
72943
73009
  date?: string;
73010
+ /** @description Amount in cents, also accepts ranges like 100...200 */
72944
73011
  amount?: string;
72945
73012
  /**
72946
73013
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -73269,6 +73336,7 @@ export interface operations {
73269
73336
  endAt?: string;
73270
73337
  search?: string;
73271
73338
  date?: string;
73339
+ /** @description Amount in cents, also accepts ranges like 100...200 */
73272
73340
  amount?: string;
73273
73341
  /**
73274
73342
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -73357,6 +73425,7 @@ export interface operations {
73357
73425
  endAt?: string;
73358
73426
  search?: string;
73359
73427
  date?: string;
73428
+ /** @description Amount in cents, also accepts ranges like 100...200 */
73360
73429
  amount?: string;
73361
73430
  /**
73362
73431
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -73532,6 +73601,7 @@ export interface operations {
73532
73601
  endAt?: string;
73533
73602
  search?: string;
73534
73603
  date?: string;
73604
+ /** @description Amount in cents, also accepts ranges like 100...200 */
73535
73605
  amount?: string;
73536
73606
  /**
73537
73607
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -73620,6 +73690,7 @@ export interface operations {
73620
73690
  endAt?: string;
73621
73691
  search?: string;
73622
73692
  date?: string;
73693
+ /** @description Amount in cents, also accepts ranges like 100...200 */
73623
73694
  amount?: string;
73624
73695
  /**
73625
73696
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -73800,6 +73871,7 @@ export interface operations {
73800
73871
  endAt?: string;
73801
73872
  search?: string;
73802
73873
  date?: string;
73874
+ /** @description Amount in cents, also accepts ranges like 100...200 */
73803
73875
  amount?: string;
73804
73876
  /**
73805
73877
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -73888,6 +73960,7 @@ export interface operations {
73888
73960
  endAt?: string;
73889
73961
  search?: string;
73890
73962
  date?: string;
73963
+ /** @description Amount in cents, also accepts ranges like 100...200 */
73891
73964
  amount?: string;
73892
73965
  /**
73893
73966
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -74364,6 +74437,7 @@ export interface operations {
74364
74437
  endAt?: string;
74365
74438
  search?: string;
74366
74439
  date?: string;
74440
+ /** @description Amount in cents, also accepts ranges like 100...200 */
74367
74441
  amount?: string;
74368
74442
  /**
74369
74443
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -74692,6 +74766,7 @@ export interface operations {
74692
74766
  endAt?: string;
74693
74767
  search?: string;
74694
74768
  date?: string;
74769
+ /** @description Amount in cents, also accepts ranges like 100...200 */
74695
74770
  amount?: string;
74696
74771
  /**
74697
74772
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -74780,6 +74855,7 @@ export interface operations {
74780
74855
  endAt?: string;
74781
74856
  search?: string;
74782
74857
  date?: string;
74858
+ /** @description Amount in cents, also accepts ranges like 100...200 */
74783
74859
  amount?: string;
74784
74860
  /**
74785
74861
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -74955,6 +75031,7 @@ export interface operations {
74955
75031
  endAt?: string;
74956
75032
  search?: string;
74957
75033
  date?: string;
75034
+ /** @description Amount in cents, also accepts ranges like 100...200 */
74958
75035
  amount?: string;
74959
75036
  /**
74960
75037
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -75043,6 +75120,7 @@ export interface operations {
75043
75120
  endAt?: string;
75044
75121
  search?: string;
75045
75122
  date?: string;
75123
+ /** @description Amount in cents, also accepts ranges like 100...200 */
75046
75124
  amount?: string;
75047
75125
  /**
75048
75126
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -75223,6 +75301,7 @@ export interface operations {
75223
75301
  endAt?: string;
75224
75302
  search?: string;
75225
75303
  date?: string;
75304
+ /** @description Amount in cents, also accepts ranges like 100...200 */
75226
75305
  amount?: string;
75227
75306
  /**
75228
75307
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -75311,6 +75390,7 @@ export interface operations {
75311
75390
  endAt?: string;
75312
75391
  search?: string;
75313
75392
  date?: string;
75393
+ /** @description Amount in cents, also accepts ranges like 100...200 */
75314
75394
  amount?: string;
75315
75395
  /**
75316
75396
  * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
@@ -76055,14 +76135,10 @@ export interface operations {
76055
76135
  connectionId?: string;
76056
76136
  type?: "extract" | "automate" | "flow" | "webhook";
76057
76137
  status?: "queued" | "started" | "completed" | "failed" | "canceled";
76058
- /** @description Deprecated: use sortBy + sortDirection */
76059
- sort?: "created_asc" | "created_desc" | "updated_asc" | "updated_desc";
76138
+ /** @description Sort field; prefix with - for descending order */
76139
+ sort?: "created" | "-created" | "updated" | "-updated";
76060
76140
  /** @description Comma-separated sync IDs. */
76061
76141
  ids?: string;
76062
- /** @description Field to sort by */
76063
- sortBy?: "created" | "updated";
76064
- /** @description Sort direction, defaults to desc */
76065
- sortDirection?: "asc" | "desc";
76066
76142
  limit?: number;
76067
76143
  page?: number;
76068
76144
  offset?: number;
@@ -81667,12 +81743,8 @@ export interface operations {
81667
81743
  /** @description Include partner-dashboard listing, member, connection, issue, and child-team counts. */
81668
81744
  includeAggregates?: boolean;
81669
81745
  type?: "partner" | "propertyManager";
81670
- /** @description Field to sort by */
81671
- sortBy?: "created" | "name" | "type";
81672
- /** @description Sort direction, defaults to desc */
81673
- sortDirection?: "asc" | "desc";
81674
- /** @description Deprecated: use sortBy + sortDirection */
81675
- 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";
81676
81748
  /** @description You can use elipisis: YYYY-MM-DD...YYYY-MM-DD */
81677
81749
  date?: string;
81678
81750
  limit?: number;