@vrplatform/api 1.3.1-3959 → 1.3.1-4031

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.
@@ -574,6 +574,23 @@ export interface paths {
574
574
  patch?: never;
575
575
  trace?: never;
576
576
  };
577
+ "/connections/connect": {
578
+ parameters: {
579
+ query?: never;
580
+ header?: never;
581
+ path?: never;
582
+ cookie?: never;
583
+ };
584
+ get?: never;
585
+ put?: never;
586
+ /** @description Connect an app and create the connection. */
587
+ post: operations["connectAppConnection"];
588
+ delete?: never;
589
+ options?: never;
590
+ head?: never;
591
+ patch?: never;
592
+ trace?: never;
593
+ };
577
594
  "/connections/extract": {
578
595
  parameters: {
579
596
  query?: never;
@@ -674,6 +691,24 @@ export interface paths {
674
691
  delete: operations["deleteConnection"];
675
692
  options?: never;
676
693
  head?: never;
694
+ /** @description Update connection settings. */
695
+ patch: operations["updateConnection"];
696
+ trace?: never;
697
+ };
698
+ "/connections/{id}/connect": {
699
+ parameters: {
700
+ query?: never;
701
+ header?: never;
702
+ path?: never;
703
+ cookie?: never;
704
+ };
705
+ get?: never;
706
+ /** @description Reconnect an existing app connection. */
707
+ put: operations["reconnectAppConnection"];
708
+ post?: never;
709
+ delete?: never;
710
+ options?: never;
711
+ head?: never;
677
712
  patch?: never;
678
713
  trace?: never;
679
714
  };
@@ -1265,6 +1300,23 @@ export interface paths {
1265
1300
  patch?: never;
1266
1301
  trace?: never;
1267
1302
  };
1303
+ "/listings/opening-balance/csv-template": {
1304
+ parameters: {
1305
+ query?: never;
1306
+ header?: never;
1307
+ path?: never;
1308
+ cookie?: never;
1309
+ };
1310
+ /** @description Listing opening balance CSV import template */
1311
+ get: operations["getListingsOpeningBalanceCsvTemplate"];
1312
+ put?: never;
1313
+ post?: never;
1314
+ delete?: never;
1315
+ options?: never;
1316
+ head?: never;
1317
+ patch?: never;
1318
+ trace?: never;
1319
+ };
1268
1320
  "/listings/ownership-periods": {
1269
1321
  parameters: {
1270
1322
  query?: never;
@@ -2783,6 +2835,40 @@ export interface paths {
2783
2835
  patch?: never;
2784
2836
  trace?: never;
2785
2837
  };
2838
+ "/statements/layouts/listing-mappings": {
2839
+ parameters: {
2840
+ query?: never;
2841
+ header?: never;
2842
+ path?: never;
2843
+ cookie?: never;
2844
+ };
2845
+ /** @description List statement layout listing mappings */
2846
+ get: operations["getStatementsLayoutsListingMappings"];
2847
+ put?: never;
2848
+ post?: never;
2849
+ delete?: never;
2850
+ options?: never;
2851
+ head?: never;
2852
+ patch?: never;
2853
+ trace?: never;
2854
+ };
2855
+ "/statements/layouts/listing-mappings/{listingId}": {
2856
+ parameters: {
2857
+ query?: never;
2858
+ header?: never;
2859
+ path?: never;
2860
+ cookie?: never;
2861
+ };
2862
+ get?: never;
2863
+ /** @description Update statement layout listing mapping */
2864
+ put: operations["putStatementsLayoutsListingMappingsByListingId"];
2865
+ post?: never;
2866
+ delete?: never;
2867
+ options?: never;
2868
+ head?: never;
2869
+ patch?: never;
2870
+ trace?: never;
2871
+ };
2786
2872
  "/statements/layouts/{id}": {
2787
2873
  parameters: {
2788
2874
  query?: never;
@@ -2802,6 +2888,23 @@ export interface paths {
2802
2888
  patch?: never;
2803
2889
  trace?: never;
2804
2890
  };
2891
+ "/statements/line-description": {
2892
+ parameters: {
2893
+ query?: never;
2894
+ header?: never;
2895
+ path?: never;
2896
+ cookie?: never;
2897
+ };
2898
+ get?: never;
2899
+ put?: never;
2900
+ post?: never;
2901
+ delete?: never;
2902
+ options?: never;
2903
+ head?: never;
2904
+ /** @description Update an owner statement line description */
2905
+ patch: operations["patchStatementsLineDescription"];
2906
+ trace?: never;
2907
+ };
2805
2908
  "/statements/manager/pay": {
2806
2909
  parameters: {
2807
2910
  query?: never;
@@ -3756,23 +3859,6 @@ export interface paths {
3756
3859
  patch?: never;
3757
3860
  trace?: never;
3758
3861
  };
3759
- "/transactions/{transactionId}/lines/{id}/description": {
3760
- parameters: {
3761
- query?: never;
3762
- header?: never;
3763
- path?: never;
3764
- cookie?: never;
3765
- };
3766
- get?: never;
3767
- put?: never;
3768
- post?: never;
3769
- delete?: never;
3770
- options?: never;
3771
- head?: never;
3772
- /** @description Update a transaction line description (description-only flow bypasses reconciliation lock) */
3773
- patch: operations["patchTransactionsByTransactionIdLinesByIdDescription"];
3774
- trace?: never;
3775
- };
3776
3862
  }
3777
3863
  export type webhooks = Record<string, never>;
3778
3864
  export interface components {
@@ -3838,7 +3924,7 @@ export interface operations {
3838
3924
  /** @constant */
3839
3925
  reason: "immutable";
3840
3926
  };
3841
- issues: {
3927
+ issues: ({
3842
3928
  /** @constant */
3843
3929
  code: "bankAccountLast4OutOfSync";
3844
3930
  /** @constant */
@@ -3848,7 +3934,16 @@ export interface operations {
3848
3934
  bankAccountLast4: string;
3849
3935
  bankAccountIds: string[];
3850
3936
  };
3851
- }[];
3937
+ } | {
3938
+ /** @constant */
3939
+ code: "operatingBankAccountRequiresOpex";
3940
+ /** @constant */
3941
+ severity: "error";
3942
+ context: {
3943
+ /** @constant */
3944
+ bankingCategory: "operating";
3945
+ };
3946
+ })[];
3852
3947
  banking?: {
3853
3948
  category?: ("trust" | "operating" | "external") | null;
3854
3949
  type?: ("deposit" | "creditCard") | null;
@@ -4063,7 +4158,7 @@ export interface operations {
4063
4158
  /** @constant */
4064
4159
  reason: "immutable";
4065
4160
  };
4066
- issues: {
4161
+ issues: ({
4067
4162
  /** @constant */
4068
4163
  code: "bankAccountLast4OutOfSync";
4069
4164
  /** @constant */
@@ -4073,7 +4168,16 @@ export interface operations {
4073
4168
  bankAccountLast4: string;
4074
4169
  bankAccountIds: string[];
4075
4170
  };
4076
- }[];
4171
+ } | {
4172
+ /** @constant */
4173
+ code: "operatingBankAccountRequiresOpex";
4174
+ /** @constant */
4175
+ severity: "error";
4176
+ context: {
4177
+ /** @constant */
4178
+ bankingCategory: "operating";
4179
+ };
4180
+ })[];
4077
4181
  banking?: {
4078
4182
  category?: ("trust" | "operating" | "external") | null;
4079
4183
  type?: ("deposit" | "creditCard") | null;
@@ -4476,7 +4580,7 @@ export interface operations {
4476
4580
  /** @constant */
4477
4581
  reason: "immutable";
4478
4582
  };
4479
- issues: {
4583
+ issues: ({
4480
4584
  /** @constant */
4481
4585
  code: "bankAccountLast4OutOfSync";
4482
4586
  /** @constant */
@@ -4486,7 +4590,16 @@ export interface operations {
4486
4590
  bankAccountLast4: string;
4487
4591
  bankAccountIds: string[];
4488
4592
  };
4489
- }[];
4593
+ } | {
4594
+ /** @constant */
4595
+ code: "operatingBankAccountRequiresOpex";
4596
+ /** @constant */
4597
+ severity: "error";
4598
+ context: {
4599
+ /** @constant */
4600
+ bankingCategory: "operating";
4601
+ };
4602
+ })[];
4490
4603
  banking?: {
4491
4604
  category?: ("trust" | "operating" | "external") | null;
4492
4605
  type?: ("deposit" | "creditCard") | null;
@@ -4693,7 +4806,7 @@ export interface operations {
4693
4806
  /** @constant */
4694
4807
  reason: "immutable";
4695
4808
  };
4696
- issues: {
4809
+ issues: ({
4697
4810
  /** @constant */
4698
4811
  code: "bankAccountLast4OutOfSync";
4699
4812
  /** @constant */
@@ -4703,7 +4816,16 @@ export interface operations {
4703
4816
  bankAccountLast4: string;
4704
4817
  bankAccountIds: string[];
4705
4818
  };
4706
- }[];
4819
+ } | {
4820
+ /** @constant */
4821
+ code: "operatingBankAccountRequiresOpex";
4822
+ /** @constant */
4823
+ severity: "error";
4824
+ context: {
4825
+ /** @constant */
4826
+ bankingCategory: "operating";
4827
+ };
4828
+ })[];
4707
4829
  banking?: {
4708
4830
  category?: ("trust" | "operating" | "external") | null;
4709
4831
  type?: ("deposit" | "creditCard") | null;
@@ -5422,7 +5544,7 @@ export interface operations {
5422
5544
  /** @constant */
5423
5545
  reason: "immutable";
5424
5546
  };
5425
- issues: {
5547
+ issues: ({
5426
5548
  /** @constant */
5427
5549
  code: "bankAccountLast4OutOfSync";
5428
5550
  /** @constant */
@@ -5432,7 +5554,16 @@ export interface operations {
5432
5554
  bankAccountLast4: string;
5433
5555
  bankAccountIds: string[];
5434
5556
  };
5435
- }[];
5557
+ } | {
5558
+ /** @constant */
5559
+ code: "operatingBankAccountRequiresOpex";
5560
+ /** @constant */
5561
+ severity: "error";
5562
+ context: {
5563
+ /** @constant */
5564
+ bankingCategory: "operating";
5565
+ };
5566
+ })[];
5436
5567
  banking?: {
5437
5568
  category?: ("trust" | "operating" | "external") | null;
5438
5569
  type?: ("deposit" | "creditCard") | null;
@@ -5631,7 +5762,7 @@ export interface operations {
5631
5762
  /** @constant */
5632
5763
  reason: "immutable";
5633
5764
  };
5634
- issues: {
5765
+ issues: ({
5635
5766
  /** @constant */
5636
5767
  code: "bankAccountLast4OutOfSync";
5637
5768
  /** @constant */
@@ -5641,7 +5772,16 @@ export interface operations {
5641
5772
  bankAccountLast4: string;
5642
5773
  bankAccountIds: string[];
5643
5774
  };
5644
- }[];
5775
+ } | {
5776
+ /** @constant */
5777
+ code: "operatingBankAccountRequiresOpex";
5778
+ /** @constant */
5779
+ severity: "error";
5780
+ context: {
5781
+ /** @constant */
5782
+ bankingCategory: "operating";
5783
+ };
5784
+ })[];
5645
5785
  banking?: {
5646
5786
  category?: ("trust" | "operating" | "external") | null;
5647
5787
  type?: ("deposit" | "creditCard") | null;
@@ -11190,6 +11330,7 @@ export interface operations {
11190
11330
  credentials?: {
11191
11331
  [key: string]: unknown;
11192
11332
  };
11333
+ uniqueRef?: string;
11193
11334
  accountingStartAt?: string | null;
11194
11335
  accountingEndAt?: string | null;
11195
11336
  };
@@ -11342,7 +11483,7 @@ export interface operations {
11342
11483
  };
11343
11484
  };
11344
11485
  };
11345
- extractConnections: {
11486
+ connectAppConnection: {
11346
11487
  parameters: {
11347
11488
  query?: never;
11348
11489
  header?: never;
@@ -11352,18 +11493,15 @@ export interface operations {
11352
11493
  requestBody?: {
11353
11494
  content: {
11354
11495
  "application/json": {
11355
- isInitial?: boolean;
11356
- connections: {
11357
- /** Format: uuid */
11358
- connectionId: string;
11359
- params?: unknown;
11360
- type?: string;
11361
- range?: {
11362
- start?: string;
11363
- end?: string;
11364
- };
11365
- forceUpdate?: boolean;
11366
- }[];
11496
+ appId?: string;
11497
+ name?: string;
11498
+ /** @default true */
11499
+ autoExtract?: boolean;
11500
+ sessionKey?: string;
11501
+ /** @default {} */
11502
+ params?: {
11503
+ [key: string]: unknown;
11504
+ };
11367
11505
  };
11368
11506
  };
11369
11507
  };
@@ -11375,21 +11513,77 @@ export interface operations {
11375
11513
  };
11376
11514
  content: {
11377
11515
  "application/json": {
11378
- data: {
11379
- /** Format: uuid */
11380
- runId: string;
11381
- /** Format: uuid */
11382
- workflowId: string;
11383
- /** Format: uuid */
11384
- taskId: string;
11516
+ /** @enum {string} */
11517
+ type: "success" | "issue" | "error";
11518
+ /** Format: uuid */
11519
+ id?: string;
11520
+ connection?: {
11385
11521
  /** Format: uuid */
11386
- syncId: string;
11387
- data?: unknown;
11388
- error?: {
11389
- message: string;
11390
- error?: string;
11522
+ id: string;
11523
+ name: string;
11524
+ /** @enum {string} */
11525
+ status: "active" | "inactive";
11526
+ accountingStartAt?: string | null;
11527
+ accountingEndAt?: string | null;
11528
+ uniqueRef?: string | null;
11529
+ app: {
11530
+ id: string;
11531
+ /** @enum {string} */
11532
+ type: "paymentGateway" | "accountingPlatform" | "propertyManagementSystem" | "bookingChannel" | "service";
11533
+ name: string;
11534
+ icon?: string | null;
11535
+ importers?: string[] | null;
11536
+ extractors?: string[] | null;
11391
11537
  };
11392
- }[];
11538
+ /**
11539
+ * Format: date-time
11540
+ * @description Timestamp string with date, time, milliseconds, and timezone.
11541
+ * @example 2024-01-15T12:30:00.000+00:00
11542
+ */
11543
+ createdAt: string;
11544
+ /**
11545
+ * Format: date-time
11546
+ * @description Timestamp string with date, time, milliseconds, and timezone.
11547
+ * @example 2024-01-15T12:30:00.000+00:00
11548
+ */
11549
+ updatedAt: string;
11550
+ isErrorState: boolean;
11551
+ currentSync?: {
11552
+ /** @enum {string} */
11553
+ status: "queued" | "started" | "completed" | "failed" | "canceled";
11554
+ /**
11555
+ * Format: date-time
11556
+ * @description Timestamp string with date, time, milliseconds, and timezone.
11557
+ * @example 2024-01-15T12:30:00.000+00:00
11558
+ */
11559
+ createdAt: string;
11560
+ /**
11561
+ * Format: date-time
11562
+ * @description Timestamp string with date, time, milliseconds, and timezone.
11563
+ * @example 2024-01-15T12:30:00.000+00:00
11564
+ */
11565
+ updatedAt: string;
11566
+ message?: string | null;
11567
+ } | null;
11568
+ enabledFlows: {
11569
+ /** Format: uuid */
11570
+ id: string;
11571
+ title: string;
11572
+ isPublic: boolean;
11573
+ type: ("push" | "pull") | null;
11574
+ }[];
11575
+ };
11576
+ code?: string;
11577
+ message?: string;
11578
+ state?: {
11579
+ sessionKey?: string;
11580
+ expiresIn: number;
11581
+ };
11582
+ action?: {
11583
+ /** @enum {string} */
11584
+ type: "extension" | "form" | "link" | "oauth";
11585
+ value?: unknown;
11586
+ };
11393
11587
  };
11394
11588
  };
11395
11589
  };
@@ -11475,7 +11669,7 @@ export interface operations {
11475
11669
  };
11476
11670
  };
11477
11671
  };
11478
- connectConnection: {
11672
+ extractConnections: {
11479
11673
  parameters: {
11480
11674
  query?: never;
11481
11675
  header?: never;
@@ -11485,9 +11679,18 @@ export interface operations {
11485
11679
  requestBody?: {
11486
11680
  content: {
11487
11681
  "application/json": {
11488
- appId: string;
11489
- /** @default https://portal.vrplatform.app */
11490
- redirectTo?: string;
11682
+ isInitial?: boolean;
11683
+ connections: {
11684
+ /** Format: uuid */
11685
+ connectionId: string;
11686
+ params?: unknown;
11687
+ type?: string;
11688
+ range?: {
11689
+ start?: string;
11690
+ end?: string;
11691
+ };
11692
+ forceUpdate?: boolean;
11693
+ }[];
11491
11694
  };
11492
11695
  };
11493
11696
  };
@@ -11499,11 +11702,135 @@ export interface operations {
11499
11702
  };
11500
11703
  content: {
11501
11704
  "application/json": {
11502
- redirectUri: string;
11503
- manual: {
11504
- state: string;
11505
- redirectUri: string;
11506
- };
11705
+ data: {
11706
+ /** Format: uuid */
11707
+ runId: string;
11708
+ /** Format: uuid */
11709
+ workflowId: string;
11710
+ /** Format: uuid */
11711
+ taskId: string;
11712
+ /** Format: uuid */
11713
+ syncId: string;
11714
+ data?: unknown;
11715
+ error?: {
11716
+ message: string;
11717
+ error?: string;
11718
+ };
11719
+ }[];
11720
+ };
11721
+ };
11722
+ };
11723
+ /** @description Bad request */
11724
+ 400: {
11725
+ headers: {
11726
+ [name: string]: unknown;
11727
+ };
11728
+ content: {
11729
+ "application/json": {
11730
+ code: string;
11731
+ message: string;
11732
+ issues?: {
11733
+ message: string;
11734
+ }[];
11735
+ context?: unknown;
11736
+ };
11737
+ };
11738
+ };
11739
+ /** @description Unauthorized */
11740
+ 401: {
11741
+ headers: {
11742
+ [name: string]: unknown;
11743
+ };
11744
+ content: {
11745
+ "application/json": {
11746
+ code: string;
11747
+ message: string;
11748
+ issues?: {
11749
+ message: string;
11750
+ }[];
11751
+ context?: unknown;
11752
+ };
11753
+ };
11754
+ };
11755
+ /** @description Forbidden */
11756
+ 403: {
11757
+ headers: {
11758
+ [name: string]: unknown;
11759
+ };
11760
+ content: {
11761
+ "application/json": {
11762
+ code: string;
11763
+ message: string;
11764
+ issues?: {
11765
+ message: string;
11766
+ }[];
11767
+ context?: unknown;
11768
+ };
11769
+ };
11770
+ };
11771
+ /** @description Not found */
11772
+ 404: {
11773
+ headers: {
11774
+ [name: string]: unknown;
11775
+ };
11776
+ content: {
11777
+ "application/json": {
11778
+ code: string;
11779
+ message: string;
11780
+ issues?: {
11781
+ message: string;
11782
+ }[];
11783
+ context?: unknown;
11784
+ };
11785
+ };
11786
+ };
11787
+ /** @description Internal server error */
11788
+ 500: {
11789
+ headers: {
11790
+ [name: string]: unknown;
11791
+ };
11792
+ content: {
11793
+ "application/json": {
11794
+ code: string;
11795
+ message: string;
11796
+ issues?: {
11797
+ message: string;
11798
+ }[];
11799
+ context?: unknown;
11800
+ };
11801
+ };
11802
+ };
11803
+ };
11804
+ };
11805
+ connectConnection: {
11806
+ parameters: {
11807
+ query?: never;
11808
+ header?: never;
11809
+ path?: never;
11810
+ cookie?: never;
11811
+ };
11812
+ requestBody?: {
11813
+ content: {
11814
+ "application/json": {
11815
+ appId: string;
11816
+ /** @default https://portal.vrplatform.app */
11817
+ redirectTo?: string;
11818
+ };
11819
+ };
11820
+ };
11821
+ responses: {
11822
+ /** @description Successful response */
11823
+ 200: {
11824
+ headers: {
11825
+ [name: string]: unknown;
11826
+ };
11827
+ content: {
11828
+ "application/json": {
11829
+ redirectUri: string;
11830
+ manual: {
11831
+ state: string;
11832
+ redirectUri: string;
11833
+ };
11507
11834
  };
11508
11835
  };
11509
11836
  };
@@ -11658,6 +11985,22 @@ export interface operations {
11658
11985
  targetTransactionLineMoveCount: number;
11659
11986
  targetPaymentLineMoveCount: number;
11660
11987
  lockedCount: number;
11988
+ targetListings: {
11989
+ /** Format: uuid */
11990
+ targetListingConnectionId: string;
11991
+ uniqueRef: string | null;
11992
+ name: string;
11993
+ address: string | null;
11994
+ listingId: string | null;
11995
+ /** @enum {string} */
11996
+ status: "alreadyShared" | "matched" | "ambiguous" | "unmapped";
11997
+ suggestedListing: {
11998
+ /** Format: uuid */
11999
+ id: string;
12000
+ name: string;
12001
+ address: string | null;
12002
+ } | null;
12003
+ }[];
11661
12004
  };
11662
12005
  /** @constant */
11663
12006
  applied: true;
@@ -11881,27 +12224,348 @@ export interface operations {
11881
12224
  };
11882
12225
  };
11883
12226
  };
11884
- previewPmsConnectionCutover: {
12227
+ previewPmsConnectionCutover: {
12228
+ parameters: {
12229
+ query?: never;
12230
+ header?: never;
12231
+ path?: never;
12232
+ cookie?: never;
12233
+ };
12234
+ requestBody?: {
12235
+ content: {
12236
+ "application/json": {
12237
+ /** Format: uuid */
12238
+ sourceConnectionId: string;
12239
+ /** Format: uuid */
12240
+ targetConnectionId: string;
12241
+ cutoverAt: string;
12242
+ listingMappings?: {
12243
+ /** Format: uuid */
12244
+ targetListingConnectionId: string;
12245
+ sourceListingId: string | null;
12246
+ }[];
12247
+ };
12248
+ };
12249
+ };
12250
+ responses: {
12251
+ /** @description Successful response */
12252
+ 200: {
12253
+ headers: {
12254
+ [name: string]: unknown;
12255
+ };
12256
+ content: {
12257
+ "application/json": {
12258
+ cutoverAt: string;
12259
+ /** @enum {string} */
12260
+ revenueRecognition: "checkIn" | "checkOut" | "bookedAt" | "proRata";
12261
+ sourceConnection: {
12262
+ /** Format: uuid */
12263
+ id: string;
12264
+ name: string;
12265
+ accountingStartAt?: string | null;
12266
+ accountingEndAt?: string | null;
12267
+ };
12268
+ targetConnection: {
12269
+ /** Format: uuid */
12270
+ id: string;
12271
+ name: string;
12272
+ accountingStartAt?: string | null;
12273
+ accountingEndAt?: string | null;
12274
+ };
12275
+ proposed: {
12276
+ sourceAccountingEndAt: string;
12277
+ targetAccountingStartAt: string;
12278
+ };
12279
+ impactedReservations: {
12280
+ sourceCount: number;
12281
+ targetCount: number;
12282
+ refreshCount: number;
12283
+ lockedCount: number;
12284
+ };
12285
+ listingContinuity: {
12286
+ sourceCount: number;
12287
+ targetCount: number;
12288
+ alreadySharedCount: number;
12289
+ mergeCount: number;
12290
+ unmappedCount: number;
12291
+ ambiguousCount: number;
12292
+ targetReservationMoveCount: number;
12293
+ targetTransactionLineMoveCount: number;
12294
+ targetPaymentLineMoveCount: number;
12295
+ lockedCount: number;
12296
+ targetListings: {
12297
+ /** Format: uuid */
12298
+ targetListingConnectionId: string;
12299
+ uniqueRef: string | null;
12300
+ name: string;
12301
+ address: string | null;
12302
+ listingId: string | null;
12303
+ /** @enum {string} */
12304
+ status: "alreadyShared" | "matched" | "ambiguous" | "unmapped";
12305
+ suggestedListing: {
12306
+ /** Format: uuid */
12307
+ id: string;
12308
+ name: string;
12309
+ address: string | null;
12310
+ } | null;
12311
+ }[];
12312
+ };
12313
+ };
12314
+ };
12315
+ };
12316
+ /** @description Bad request */
12317
+ 400: {
12318
+ headers: {
12319
+ [name: string]: unknown;
12320
+ };
12321
+ content: {
12322
+ "application/json": {
12323
+ code: string;
12324
+ message: string;
12325
+ issues?: {
12326
+ message: string;
12327
+ }[];
12328
+ context?: unknown;
12329
+ };
12330
+ };
12331
+ };
12332
+ /** @description Unauthorized */
12333
+ 401: {
12334
+ headers: {
12335
+ [name: string]: unknown;
12336
+ };
12337
+ content: {
12338
+ "application/json": {
12339
+ code: string;
12340
+ message: string;
12341
+ issues?: {
12342
+ message: string;
12343
+ }[];
12344
+ context?: unknown;
12345
+ };
12346
+ };
12347
+ };
12348
+ /** @description Forbidden */
12349
+ 403: {
12350
+ headers: {
12351
+ [name: string]: unknown;
12352
+ };
12353
+ content: {
12354
+ "application/json": {
12355
+ code: string;
12356
+ message: string;
12357
+ issues?: {
12358
+ message: string;
12359
+ }[];
12360
+ context?: unknown;
12361
+ };
12362
+ };
12363
+ };
12364
+ /** @description Not found */
12365
+ 404: {
12366
+ headers: {
12367
+ [name: string]: unknown;
12368
+ };
12369
+ content: {
12370
+ "application/json": {
12371
+ code: string;
12372
+ message: string;
12373
+ issues?: {
12374
+ message: string;
12375
+ }[];
12376
+ context?: unknown;
12377
+ };
12378
+ };
12379
+ };
12380
+ /** @description Internal server error */
12381
+ 500: {
12382
+ headers: {
12383
+ [name: string]: unknown;
12384
+ };
12385
+ content: {
12386
+ "application/json": {
12387
+ code: string;
12388
+ message: string;
12389
+ issues?: {
12390
+ message: string;
12391
+ }[];
12392
+ context?: unknown;
12393
+ };
12394
+ };
12395
+ };
12396
+ };
12397
+ };
12398
+ getConnection: {
12399
+ parameters: {
12400
+ query?: never;
12401
+ header?: never;
12402
+ path: {
12403
+ id: string;
12404
+ };
12405
+ cookie?: never;
12406
+ };
12407
+ requestBody?: never;
12408
+ responses: {
12409
+ /** @description Successful response */
12410
+ 200: {
12411
+ headers: {
12412
+ [name: string]: unknown;
12413
+ };
12414
+ content: {
12415
+ "application/json": {
12416
+ /** Format: uuid */
12417
+ id: string;
12418
+ name: string;
12419
+ /** @enum {string} */
12420
+ status: "active" | "inactive";
12421
+ accountingStartAt?: string | null;
12422
+ accountingEndAt?: string | null;
12423
+ uniqueRef?: string | null;
12424
+ app: {
12425
+ id: string;
12426
+ /** @enum {string} */
12427
+ type: "paymentGateway" | "accountingPlatform" | "propertyManagementSystem" | "bookingChannel" | "service";
12428
+ name: string;
12429
+ icon?: string | null;
12430
+ importers?: string[] | null;
12431
+ extractors?: string[] | null;
12432
+ };
12433
+ /**
12434
+ * Format: date-time
12435
+ * @description Timestamp string with date, time, milliseconds, and timezone.
12436
+ * @example 2024-01-15T12:30:00.000+00:00
12437
+ */
12438
+ createdAt: string;
12439
+ /**
12440
+ * Format: date-time
12441
+ * @description Timestamp string with date, time, milliseconds, and timezone.
12442
+ * @example 2024-01-15T12:30:00.000+00:00
12443
+ */
12444
+ updatedAt: string;
12445
+ isErrorState: boolean;
12446
+ currentSync?: {
12447
+ /** @enum {string} */
12448
+ status: "queued" | "started" | "completed" | "failed" | "canceled";
12449
+ /**
12450
+ * Format: date-time
12451
+ * @description Timestamp string with date, time, milliseconds, and timezone.
12452
+ * @example 2024-01-15T12:30:00.000+00:00
12453
+ */
12454
+ createdAt: string;
12455
+ /**
12456
+ * Format: date-time
12457
+ * @description Timestamp string with date, time, milliseconds, and timezone.
12458
+ * @example 2024-01-15T12:30:00.000+00:00
12459
+ */
12460
+ updatedAt: string;
12461
+ message?: string | null;
12462
+ } | null;
12463
+ enabledFlows: {
12464
+ /** Format: uuid */
12465
+ id: string;
12466
+ title: string;
12467
+ isPublic: boolean;
12468
+ type: ("push" | "pull") | null;
12469
+ }[];
12470
+ };
12471
+ };
12472
+ };
12473
+ /** @description Bad request */
12474
+ 400: {
12475
+ headers: {
12476
+ [name: string]: unknown;
12477
+ };
12478
+ content: {
12479
+ "application/json": {
12480
+ code: string;
12481
+ message: string;
12482
+ issues?: {
12483
+ message: string;
12484
+ }[];
12485
+ context?: unknown;
12486
+ };
12487
+ };
12488
+ };
12489
+ /** @description Unauthorized */
12490
+ 401: {
12491
+ headers: {
12492
+ [name: string]: unknown;
12493
+ };
12494
+ content: {
12495
+ "application/json": {
12496
+ code: string;
12497
+ message: string;
12498
+ issues?: {
12499
+ message: string;
12500
+ }[];
12501
+ context?: unknown;
12502
+ };
12503
+ };
12504
+ };
12505
+ /** @description Forbidden */
12506
+ 403: {
12507
+ headers: {
12508
+ [name: string]: unknown;
12509
+ };
12510
+ content: {
12511
+ "application/json": {
12512
+ code: string;
12513
+ message: string;
12514
+ issues?: {
12515
+ message: string;
12516
+ }[];
12517
+ context?: unknown;
12518
+ };
12519
+ };
12520
+ };
12521
+ /** @description Not found */
12522
+ 404: {
12523
+ headers: {
12524
+ [name: string]: unknown;
12525
+ };
12526
+ content: {
12527
+ "application/json": {
12528
+ code: string;
12529
+ message: string;
12530
+ issues?: {
12531
+ message: string;
12532
+ }[];
12533
+ context?: unknown;
12534
+ };
12535
+ };
12536
+ };
12537
+ /** @description Internal server error */
12538
+ 500: {
12539
+ headers: {
12540
+ [name: string]: unknown;
12541
+ };
12542
+ content: {
12543
+ "application/json": {
12544
+ code: string;
12545
+ message: string;
12546
+ issues?: {
12547
+ message: string;
12548
+ }[];
12549
+ context?: unknown;
12550
+ };
12551
+ };
12552
+ };
12553
+ };
12554
+ };
12555
+ deleteConnection: {
11885
12556
  parameters: {
11886
- query?: never;
12557
+ query?: {
12558
+ onLocked?: "error" | "archive";
12559
+ };
11887
12560
  header?: never;
11888
- path?: never;
12561
+ path: {
12562
+ id: string;
12563
+ };
11889
12564
  cookie?: never;
11890
12565
  };
11891
12566
  requestBody?: {
11892
12567
  content: {
11893
- "application/json": {
11894
- /** Format: uuid */
11895
- sourceConnectionId: string;
11896
- /** Format: uuid */
11897
- targetConnectionId: string;
11898
- cutoverAt: string;
11899
- listingMappings?: {
11900
- /** Format: uuid */
11901
- targetListingConnectionId: string;
11902
- sourceListingId: string | null;
11903
- }[];
11904
- };
12568
+ "application/json": Record<string, never>;
11905
12569
  };
11906
12570
  };
11907
12571
  responses: {
@@ -11912,45 +12576,8 @@ export interface operations {
11912
12576
  };
11913
12577
  content: {
11914
12578
  "application/json": {
11915
- cutoverAt: string;
11916
12579
  /** @enum {string} */
11917
- revenueRecognition: "checkIn" | "checkOut" | "bookedAt" | "proRata";
11918
- sourceConnection: {
11919
- /** Format: uuid */
11920
- id: string;
11921
- name: string;
11922
- accountingStartAt?: string | null;
11923
- accountingEndAt?: string | null;
11924
- };
11925
- targetConnection: {
11926
- /** Format: uuid */
11927
- id: string;
11928
- name: string;
11929
- accountingStartAt?: string | null;
11930
- accountingEndAt?: string | null;
11931
- };
11932
- proposed: {
11933
- sourceAccountingEndAt: string;
11934
- targetAccountingStartAt: string;
11935
- };
11936
- impactedReservations: {
11937
- sourceCount: number;
11938
- targetCount: number;
11939
- refreshCount: number;
11940
- lockedCount: number;
11941
- };
11942
- listingContinuity: {
11943
- sourceCount: number;
11944
- targetCount: number;
11945
- alreadySharedCount: number;
11946
- mergeCount: number;
11947
- unmappedCount: number;
11948
- ambiguousCount: number;
11949
- targetReservationMoveCount: number;
11950
- targetTransactionLineMoveCount: number;
11951
- targetPaymentLineMoveCount: number;
11952
- lockedCount: number;
11953
- };
12580
+ status: "deleted" | "archived";
11954
12581
  };
11955
12582
  };
11956
12583
  };
@@ -12036,7 +12663,7 @@ export interface operations {
12036
12663
  };
12037
12664
  };
12038
12665
  };
12039
- getConnection: {
12666
+ updateConnection: {
12040
12667
  parameters: {
12041
12668
  query?: never;
12042
12669
  header?: never;
@@ -12045,7 +12672,17 @@ export interface operations {
12045
12672
  };
12046
12673
  cookie?: never;
12047
12674
  };
12048
- requestBody?: never;
12675
+ requestBody?: {
12676
+ content: {
12677
+ "application/json": {
12678
+ name?: string;
12679
+ /** @enum {string} */
12680
+ status?: "active" | "inactive";
12681
+ accountingStartAt?: string | null;
12682
+ accountingEndAt?: string | null;
12683
+ };
12684
+ };
12685
+ };
12049
12686
  responses: {
12050
12687
  /** @description Successful response */
12051
12688
  200: {
@@ -12193,11 +12830,9 @@ export interface operations {
12193
12830
  };
12194
12831
  };
12195
12832
  };
12196
- deleteConnection: {
12833
+ reconnectAppConnection: {
12197
12834
  parameters: {
12198
- query?: {
12199
- onLocked?: "error" | "archive";
12200
- };
12835
+ query?: never;
12201
12836
  header?: never;
12202
12837
  path: {
12203
12838
  id: string;
@@ -12206,7 +12841,17 @@ export interface operations {
12206
12841
  };
12207
12842
  requestBody?: {
12208
12843
  content: {
12209
- "application/json": Record<string, never>;
12844
+ "application/json": {
12845
+ appId?: string;
12846
+ name?: string;
12847
+ /** @default true */
12848
+ autoExtract?: boolean;
12849
+ sessionKey?: string;
12850
+ /** @default {} */
12851
+ params?: {
12852
+ [key: string]: unknown;
12853
+ };
12854
+ };
12210
12855
  };
12211
12856
  };
12212
12857
  responses: {
@@ -12218,7 +12863,76 @@ export interface operations {
12218
12863
  content: {
12219
12864
  "application/json": {
12220
12865
  /** @enum {string} */
12221
- status: "deleted" | "archived";
12866
+ type: "success" | "issue" | "error";
12867
+ /** Format: uuid */
12868
+ id?: string;
12869
+ connection?: {
12870
+ /** Format: uuid */
12871
+ id: string;
12872
+ name: string;
12873
+ /** @enum {string} */
12874
+ status: "active" | "inactive";
12875
+ accountingStartAt?: string | null;
12876
+ accountingEndAt?: string | null;
12877
+ uniqueRef?: string | null;
12878
+ app: {
12879
+ id: string;
12880
+ /** @enum {string} */
12881
+ type: "paymentGateway" | "accountingPlatform" | "propertyManagementSystem" | "bookingChannel" | "service";
12882
+ name: string;
12883
+ icon?: string | null;
12884
+ importers?: string[] | null;
12885
+ extractors?: string[] | null;
12886
+ };
12887
+ /**
12888
+ * Format: date-time
12889
+ * @description Timestamp string with date, time, milliseconds, and timezone.
12890
+ * @example 2024-01-15T12:30:00.000+00:00
12891
+ */
12892
+ createdAt: string;
12893
+ /**
12894
+ * Format: date-time
12895
+ * @description Timestamp string with date, time, milliseconds, and timezone.
12896
+ * @example 2024-01-15T12:30:00.000+00:00
12897
+ */
12898
+ updatedAt: string;
12899
+ isErrorState: boolean;
12900
+ currentSync?: {
12901
+ /** @enum {string} */
12902
+ status: "queued" | "started" | "completed" | "failed" | "canceled";
12903
+ /**
12904
+ * Format: date-time
12905
+ * @description Timestamp string with date, time, milliseconds, and timezone.
12906
+ * @example 2024-01-15T12:30:00.000+00:00
12907
+ */
12908
+ createdAt: string;
12909
+ /**
12910
+ * Format: date-time
12911
+ * @description Timestamp string with date, time, milliseconds, and timezone.
12912
+ * @example 2024-01-15T12:30:00.000+00:00
12913
+ */
12914
+ updatedAt: string;
12915
+ message?: string | null;
12916
+ } | null;
12917
+ enabledFlows: {
12918
+ /** Format: uuid */
12919
+ id: string;
12920
+ title: string;
12921
+ isPublic: boolean;
12922
+ type: ("push" | "pull") | null;
12923
+ }[];
12924
+ };
12925
+ code?: string;
12926
+ message?: string;
12927
+ state?: {
12928
+ sessionKey?: string;
12929
+ expiresIn: number;
12930
+ };
12931
+ action?: {
12932
+ /** @enum {string} */
12933
+ type: "extension" | "form" | "link" | "oauth";
12934
+ value?: unknown;
12935
+ };
12222
12936
  };
12223
12937
  };
12224
12938
  };
@@ -18444,6 +19158,7 @@ export interface operations {
18444
19158
  /** Format: uuid */
18445
19159
  id: string;
18446
19160
  name: string;
19161
+ childCount: number;
18447
19162
  address?: {
18448
19163
  full?: string | null;
18449
19164
  line1?: string | null;
@@ -18557,6 +19272,131 @@ export interface operations {
18557
19272
  };
18558
19273
  };
18559
19274
  };
19275
+ getListingsOpeningBalanceCsvTemplate: {
19276
+ parameters: {
19277
+ query?: {
19278
+ status?: "active" | "inactive";
19279
+ connectionId?: string;
19280
+ /** @description Filter by parent listing id. Use parent=null to return only parent/root listings. */
19281
+ parent?: string | "null";
19282
+ /** @description Comma-separated listing ids. */
19283
+ ids?: string;
19284
+ search?: string;
19285
+ contactId?: string;
19286
+ /** @description Filter listings by ownership period ID. */
19287
+ ownershipPeriodId?: string;
19288
+ /** @description Comma-separated listing short refs. */
19289
+ shortRefs?: string;
19290
+ /** @description Filter listings by whether they currently have an active ownership period. */
19291
+ activeOwnership?: boolean;
19292
+ /** @description Include child listing links on each listing. */
19293
+ includeChildren?: boolean;
19294
+ /** @description Filter by active recurring fee coverage. Use `active` or `inactive` for any recurring fee type, prefix a fee type with `!` to exclude it, or pass a recurring fee UUID for one specific fee. */
19295
+ activeRecurringFeePeriods?: string;
19296
+ /** @description Filter listings that have (true) or lack (false) opening balances */
19297
+ openingBalance?: boolean;
19298
+ /** @description Filter listings by setup issue code, "all" (all setup issues), or "any" (at least one setup issue) */
19299
+ issue?: "all" | "any" | "missingOwnershipOrDeactivation" | "missingFeesAndCommission" | "missingOpeningBalance";
19300
+ };
19301
+ header?: never;
19302
+ path?: never;
19303
+ cookie?: never;
19304
+ };
19305
+ requestBody?: never;
19306
+ responses: {
19307
+ /** @description Successful response */
19308
+ 200: {
19309
+ headers: {
19310
+ [name: string]: unknown;
19311
+ };
19312
+ content: {
19313
+ "application/json": {
19314
+ url: string;
19315
+ };
19316
+ };
19317
+ };
19318
+ /** @description Bad request */
19319
+ 400: {
19320
+ headers: {
19321
+ [name: string]: unknown;
19322
+ };
19323
+ content: {
19324
+ "application/json": {
19325
+ code: string;
19326
+ message: string;
19327
+ issues?: {
19328
+ message: string;
19329
+ }[];
19330
+ context?: unknown;
19331
+ };
19332
+ };
19333
+ };
19334
+ /** @description Unauthorized */
19335
+ 401: {
19336
+ headers: {
19337
+ [name: string]: unknown;
19338
+ };
19339
+ content: {
19340
+ "application/json": {
19341
+ code: string;
19342
+ message: string;
19343
+ issues?: {
19344
+ message: string;
19345
+ }[];
19346
+ context?: unknown;
19347
+ };
19348
+ };
19349
+ };
19350
+ /** @description Forbidden */
19351
+ 403: {
19352
+ headers: {
19353
+ [name: string]: unknown;
19354
+ };
19355
+ content: {
19356
+ "application/json": {
19357
+ code: string;
19358
+ message: string;
19359
+ issues?: {
19360
+ message: string;
19361
+ }[];
19362
+ context?: unknown;
19363
+ };
19364
+ };
19365
+ };
19366
+ /** @description Not found */
19367
+ 404: {
19368
+ headers: {
19369
+ [name: string]: unknown;
19370
+ };
19371
+ content: {
19372
+ "application/json": {
19373
+ code: string;
19374
+ message: string;
19375
+ issues?: {
19376
+ message: string;
19377
+ }[];
19378
+ context?: unknown;
19379
+ };
19380
+ };
19381
+ };
19382
+ /** @description Internal server error */
19383
+ 500: {
19384
+ headers: {
19385
+ [name: string]: unknown;
19386
+ };
19387
+ content: {
19388
+ "application/json": {
19389
+ code: string;
19390
+ message: string;
19391
+ issues?: {
19392
+ message: string;
19393
+ }[];
19394
+ context?: unknown;
19395
+ };
19396
+ };
19397
+ };
19398
+ };
19399
+ };
18560
19400
  getListingsOwnershipPeriods: {
18561
19401
  parameters: {
18562
19402
  query?: {
@@ -24233,6 +25073,8 @@ export interface operations {
24233
25073
  search?: string;
24234
25074
  /** @description comma separated listing ids */
24235
25075
  listingIds?: string;
25076
+ /** @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids. */
25077
+ listingScope?: "exact" | "withChildren";
24236
25078
  status?: "active" | "inactive";
24237
25079
  type?: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
24238
25080
  limit?: number;
@@ -24660,6 +25502,8 @@ export interface operations {
24660
25502
  query?: {
24661
25503
  recurringFeeId?: string;
24662
25504
  listingId?: string;
25505
+ /** @description Controls listingId filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing id. */
25506
+ listingScope?: "exact" | "withChildren";
24663
25507
  /** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
24664
25508
  date?: string;
24665
25509
  recurringFeeType?: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
@@ -26003,6 +26847,11 @@ export interface operations {
26003
26847
  excludeApAppendix?: boolean;
26004
26848
  /** @description listing ids comma separated or "unmapped" */
26005
26849
  listingIds?: string;
26850
+ /**
26851
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
26852
+ * @enum {string}
26853
+ */
26854
+ listingScope?: "exact" | "withChildren";
26006
26855
  /** @description listing ownership period ids comma separated or "unmapped" */
26007
26856
  listingOwnershipPeriodIds?: string;
26008
26857
  /** @description account ids comma separated accounts or "unmapped" */
@@ -26088,6 +26937,11 @@ export interface operations {
26088
26937
  excludeApAppendix?: boolean;
26089
26938
  /** @description listing ids comma separated or "unmapped" */
26090
26939
  listingIds?: string;
26940
+ /**
26941
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
26942
+ * @enum {string}
26943
+ */
26944
+ listingScope?: "exact" | "withChildren";
26091
26945
  /** @description listing ownership period ids comma separated or "unmapped" */
26092
26946
  listingOwnershipPeriodIds?: string;
26093
26947
  /** @description account ids comma separated accounts or "unmapped" */
@@ -26176,6 +27030,11 @@ export interface operations {
26176
27030
  excludeApAppendix?: boolean;
26177
27031
  /** @description listing ids comma separated or "unmapped" */
26178
27032
  listingIds?: string;
27033
+ /**
27034
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
27035
+ * @enum {string}
27036
+ */
27037
+ listingScope?: "exact" | "withChildren";
26179
27038
  /** @description listing ownership period ids comma separated or "unmapped" */
26180
27039
  listingOwnershipPeriodIds?: string;
26181
27040
  /** @description account ids comma separated accounts or "unmapped" */
@@ -26263,6 +27122,11 @@ export interface operations {
26263
27122
  excludeApAppendix?: boolean;
26264
27123
  /** @description listing ids comma separated or "unmapped" */
26265
27124
  listingIds?: string;
27125
+ /**
27126
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
27127
+ * @enum {string}
27128
+ */
27129
+ listingScope?: "exact" | "withChildren";
26266
27130
  /** @description listing ownership period ids comma separated or "unmapped" */
26267
27131
  listingOwnershipPeriodIds?: string;
26268
27132
  /** @description account ids comma separated accounts or "unmapped" */
@@ -26348,6 +27212,11 @@ export interface operations {
26348
27212
  excludeApAppendix?: boolean;
26349
27213
  /** @description listing ids comma separated or "unmapped" */
26350
27214
  listingIds?: string;
27215
+ /**
27216
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
27217
+ * @enum {string}
27218
+ */
27219
+ listingScope?: "exact" | "withChildren";
26351
27220
  /** @description listing ownership period ids comma separated or "unmapped" */
26352
27221
  listingOwnershipPeriodIds?: string;
26353
27222
  /** @description account ids comma separated accounts or "unmapped" */
@@ -26436,6 +27305,11 @@ export interface operations {
26436
27305
  excludeApAppendix?: boolean;
26437
27306
  /** @description listing ids comma separated or "unmapped" */
26438
27307
  listingIds?: string;
27308
+ /**
27309
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
27310
+ * @enum {string}
27311
+ */
27312
+ listingScope?: "exact" | "withChildren";
26439
27313
  /** @description listing ownership period ids comma separated or "unmapped" */
26440
27314
  listingOwnershipPeriodIds?: string;
26441
27315
  /** @description account ids comma separated accounts or "unmapped" */
@@ -26523,6 +27397,11 @@ export interface operations {
26523
27397
  excludeApAppendix?: boolean;
26524
27398
  /** @description listing ids comma separated or "unmapped" */
26525
27399
  listingIds?: string;
27400
+ /**
27401
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
27402
+ * @enum {string}
27403
+ */
27404
+ listingScope?: "exact" | "withChildren";
26526
27405
  /** @description listing ownership period ids comma separated or "unmapped" */
26527
27406
  listingOwnershipPeriodIds?: string;
26528
27407
  /** @description account ids comma separated accounts or "unmapped" */
@@ -26608,6 +27487,11 @@ export interface operations {
26608
27487
  excludeApAppendix?: boolean;
26609
27488
  /** @description listing ids comma separated or "unmapped" */
26610
27489
  listingIds?: string;
27490
+ /**
27491
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
27492
+ * @enum {string}
27493
+ */
27494
+ listingScope?: "exact" | "withChildren";
26611
27495
  /** @description listing ownership period ids comma separated or "unmapped" */
26612
27496
  listingOwnershipPeriodIds?: string;
26613
27497
  /** @description account ids comma separated accounts or "unmapped" */
@@ -26696,6 +27580,11 @@ export interface operations {
26696
27580
  excludeApAppendix?: boolean;
26697
27581
  /** @description listing ids comma separated or "unmapped" */
26698
27582
  listingIds?: string;
27583
+ /**
27584
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
27585
+ * @enum {string}
27586
+ */
27587
+ listingScope?: "exact" | "withChildren";
26699
27588
  /** @description listing ownership period ids comma separated or "unmapped" */
26700
27589
  listingOwnershipPeriodIds?: string;
26701
27590
  /** @description account ids comma separated accounts or "unmapped" */
@@ -26783,6 +27672,11 @@ export interface operations {
26783
27672
  excludeApAppendix?: boolean;
26784
27673
  /** @description listing ids comma separated or "unmapped" */
26785
27674
  listingIds?: string;
27675
+ /**
27676
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
27677
+ * @enum {string}
27678
+ */
27679
+ listingScope?: "exact" | "withChildren";
26786
27680
  /** @description listing ownership period ids comma separated or "unmapped" */
26787
27681
  listingOwnershipPeriodIds?: string;
26788
27682
  /** @description account ids comma separated accounts or "unmapped" */
@@ -26868,6 +27762,11 @@ export interface operations {
26868
27762
  excludeApAppendix?: boolean;
26869
27763
  /** @description listing ids comma separated or "unmapped" */
26870
27764
  listingIds?: string;
27765
+ /**
27766
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
27767
+ * @enum {string}
27768
+ */
27769
+ listingScope?: "exact" | "withChildren";
26871
27770
  /** @description listing ownership period ids comma separated or "unmapped" */
26872
27771
  listingOwnershipPeriodIds?: string;
26873
27772
  /** @description account ids comma separated accounts or "unmapped" */
@@ -26956,6 +27855,11 @@ export interface operations {
26956
27855
  excludeApAppendix?: boolean;
26957
27856
  /** @description listing ids comma separated or "unmapped" */
26958
27857
  listingIds?: string;
27858
+ /**
27859
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
27860
+ * @enum {string}
27861
+ */
27862
+ listingScope?: "exact" | "withChildren";
26959
27863
  /** @description listing ownership period ids comma separated or "unmapped" */
26960
27864
  listingOwnershipPeriodIds?: string;
26961
27865
  /** @description account ids comma separated accounts or "unmapped" */
@@ -27284,6 +28188,11 @@ export interface operations {
27284
28188
  excludeApAppendix?: boolean;
27285
28189
  /** @description listing ids comma separated or "unmapped" */
27286
28190
  listingIds?: string;
28191
+ /**
28192
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
28193
+ * @enum {string}
28194
+ */
28195
+ listingScope?: "exact" | "withChildren";
27287
28196
  /** @description listing ownership period ids comma separated or "unmapped" */
27288
28197
  listingOwnershipPeriodIds?: string;
27289
28198
  /** @description account ids comma separated accounts or "unmapped" */
@@ -27658,6 +28567,8 @@ export interface operations {
27658
28567
  currency?: string;
27659
28568
  /** @description listing ids comma separated or "unmapped" */
27660
28569
  listingIds?: string;
28570
+ /** @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids. */
28571
+ listingScope?: "exact" | "withChildren";
27661
28572
  /** @description listing ownership period ids comma separated or "unmapped" */
27662
28573
  listingOwnershipPeriodIds?: string;
27663
28574
  /** @description account ids comma separated accounts or "unmapped" */
@@ -27947,6 +28858,8 @@ export interface operations {
27947
28858
  currency?: string;
27948
28859
  /** @description listing ids comma separated or "unmapped" */
27949
28860
  listingIds?: string;
28861
+ /** @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids. */
28862
+ listingScope?: "exact" | "withChildren";
27950
28863
  /** @description listing ownership period ids comma separated or "unmapped" */
27951
28864
  listingOwnershipPeriodIds?: string;
27952
28865
  /** @description account ids comma separated accounts or "unmapped" */
@@ -28402,6 +29315,11 @@ export interface operations {
28402
29315
  excludeApAppendix?: boolean;
28403
29316
  /** @description listing ids comma separated or "unmapped" */
28404
29317
  listingIds?: string;
29318
+ /**
29319
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
29320
+ * @enum {string}
29321
+ */
29322
+ listingScope?: "exact" | "withChildren";
28405
29323
  /** @description listing ownership period ids comma separated or "unmapped" */
28406
29324
  listingOwnershipPeriodIds?: string;
28407
29325
  /** @description account ids comma separated accounts or "unmapped" */
@@ -28496,6 +29414,11 @@ export interface operations {
28496
29414
  excludeApAppendix?: boolean;
28497
29415
  /** @description listing ids comma separated or "unmapped" */
28498
29416
  listingIds?: string;
29417
+ /**
29418
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
29419
+ * @enum {string}
29420
+ */
29421
+ listingScope?: "exact" | "withChildren";
28499
29422
  /** @description listing ownership period ids comma separated or "unmapped" */
28500
29423
  listingOwnershipPeriodIds?: string;
28501
29424
  /** @description account ids comma separated accounts or "unmapped" */
@@ -28575,6 +29498,11 @@ export interface operations {
28575
29498
  excludeApAppendix?: boolean;
28576
29499
  /** @description listing ids comma separated or "unmapped" */
28577
29500
  listingIds?: string;
29501
+ /**
29502
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
29503
+ * @enum {string}
29504
+ */
29505
+ listingScope?: "exact" | "withChildren";
28578
29506
  /** @description listing ownership period ids comma separated or "unmapped" */
28579
29507
  listingOwnershipPeriodIds?: string;
28580
29508
  /** @description account ids comma separated accounts or "unmapped" */
@@ -28832,6 +29760,8 @@ export interface operations {
28832
29760
  currency?: string;
28833
29761
  /** @description listing ids comma separated or "unmapped" */
28834
29762
  listingIds?: string;
29763
+ /** @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids. */
29764
+ listingScope?: "exact" | "withChildren";
28835
29765
  /** @description listing ownership period ids comma separated or "unmapped" */
28836
29766
  listingOwnershipPeriodIds?: string;
28837
29767
  /** @description account ids comma separated accounts or "unmapped" */
@@ -29117,6 +30047,8 @@ export interface operations {
29117
30047
  currency?: string;
29118
30048
  /** @description listing ids comma separated or "unmapped" */
29119
30049
  listingIds?: string;
30050
+ /** @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids. */
30051
+ listingScope?: "exact" | "withChildren";
29120
30052
  /** @description listing ownership period ids comma separated or "unmapped" */
29121
30053
  listingOwnershipPeriodIds?: string;
29122
30054
  /** @description account ids comma separated accounts or "unmapped" */
@@ -29541,6 +30473,11 @@ export interface operations {
29541
30473
  excludeApAppendix?: boolean;
29542
30474
  /** @description listing ids comma separated or "unmapped" */
29543
30475
  listingIds?: string;
30476
+ /**
30477
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
30478
+ * @enum {string}
30479
+ */
30480
+ listingScope?: "exact" | "withChildren";
29544
30481
  /** @description listing ownership period ids comma separated or "unmapped" */
29545
30482
  listingOwnershipPeriodIds?: string;
29546
30483
  /** @description account ids comma separated accounts or "unmapped" */
@@ -29967,6 +30904,11 @@ export interface operations {
29967
30904
  excludeApAppendix?: boolean;
29968
30905
  /** @description listing ids comma separated or "unmapped" */
29969
30906
  listingIds?: string;
30907
+ /**
30908
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
30909
+ * @enum {string}
30910
+ */
30911
+ listingScope?: "exact" | "withChildren";
29970
30912
  /** @description listing ownership period ids comma separated or "unmapped" */
29971
30913
  listingOwnershipPeriodIds?: string;
29972
30914
  /** @description account ids comma separated accounts or "unmapped" */
@@ -30047,6 +30989,11 @@ export interface operations {
30047
30989
  excludeApAppendix?: boolean;
30048
30990
  /** @description listing ids comma separated or "unmapped" */
30049
30991
  listingIds?: string;
30992
+ /**
30993
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
30994
+ * @enum {string}
30995
+ */
30996
+ listingScope?: "exact" | "withChildren";
30050
30997
  /** @description listing ownership period ids comma separated or "unmapped" */
30051
30998
  listingOwnershipPeriodIds?: string;
30052
30999
  /** @description account ids comma separated accounts or "unmapped" */
@@ -30152,6 +31099,267 @@ export interface operations {
30152
31099
  excludeApAppendix?: boolean;
30153
31100
  /** @description listing ids comma separated or "unmapped" */
30154
31101
  listingIds?: string;
31102
+ /**
31103
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
31104
+ * @enum {string}
31105
+ */
31106
+ listingScope?: "exact" | "withChildren";
31107
+ /** @description listing ownership period ids comma separated or "unmapped" */
31108
+ listingOwnershipPeriodIds?: string;
31109
+ /** @description account ids comma separated accounts or "unmapped" */
31110
+ accountIds?: string;
31111
+ /** @description comma separated account reservation line type ids */
31112
+ accountReservationLineTypeIds?: string;
31113
+ /** @description comma separated categories */
31114
+ categoryIds?: string;
31115
+ /** @description comma separated categories to exclude */
31116
+ excludeCategoryIds?: string;
31117
+ /** @description comma separated contacts */
31118
+ contactIds?: string;
31119
+ classifications?: string;
31120
+ /** @enum {string} */
31121
+ accountType?: "ledger" | "bank" | "recurringFee" | "nonPosting";
31122
+ /** @description comma separated journal entry types */
31123
+ types?: string;
31124
+ /** @description comma separated journal entry types to exclude */
31125
+ excludeTypes?: string;
31126
+ /** @description comma separated entity types "reservation" | "deposit" | "expense" | "recurringFee" | "transfer" | "payout" */
31127
+ entityTypes?: string;
31128
+ /** @description comma separated booking channel refs */
31129
+ bookingChannels?: string;
31130
+ /** @description comma separated trigger types "deferredRevenue" | "intercompany" | "rebalance" | "recurringFee" | "revenueRecognition" */
31131
+ triggerTypes?: string;
31132
+ /** @description comma separated journal entry trigger types to exclude */
31133
+ excludeTriggerTypes?: string;
31134
+ /** @description comma separated parties */
31135
+ parties?: string;
31136
+ /** @enum {string} */
31137
+ party?: "owners" | "manager";
31138
+ /** @description comma separated account assignment types "accountsPayable" | "accountsReceivable" | "cancellationRevenue" | "deferredRevenue" | "deposit_channelFee" | "deposit_coHostPayout" | "deposit_merchantFee" | "deposit_reserve" | "deposit_vat" | "dueToFromTrust" | "expense_markup" | "expense_reimbursement" | "expense_salesTax" | "openingBalance" | "payout_bankAccount" | "payout_distribution" */
31139
+ accountAssignmentTypes?: string;
31140
+ /** @description comma separated manager statement section ids */
31141
+ managerStatementSectionIds?: string;
31142
+ recurringFee?: boolean;
31143
+ /** @enum {string} */
31144
+ openingBalanceType?: "taxPayable" | "advancedDeposit" | "listingOpeningBalance" | "openingTrialBalance";
31145
+ };
31146
+ /** @enum {string} */
31147
+ measure?: "periodActivity" | "balance";
31148
+ label?: string;
31149
+ } | null;
31150
+ }[];
31151
+ drilldown?: {
31152
+ /** @constant */
31153
+ type: "journalEntryReport";
31154
+ filter: {
31155
+ /** @description comma separated journal entry ids */
31156
+ ids?: string;
31157
+ txnCode?: string;
31158
+ published?: boolean;
31159
+ /** @enum {string} */
31160
+ status?: "active" | "inactive";
31161
+ /** @enum {string} */
31162
+ ledger?: "historical" | "trust" | "operating";
31163
+ startAt?: string;
31164
+ endAt?: string;
31165
+ search?: string;
31166
+ date?: string;
31167
+ amount?: string;
31168
+ /**
31169
+ * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
31170
+ * @default true
31171
+ */
31172
+ isDateRangeEndInclusive: boolean;
31173
+ /** @description comma separated reservation ids or "unmapped" */
31174
+ reservationIds?: string;
31175
+ /** @description comma separated transaction ids */
31176
+ transactionIds?: string;
31177
+ /** @description comma separated owner statement ids */
31178
+ ownerStatementIds?: string;
31179
+ /** @description Currency in ISO 4217 format, will be converted to lowercase */
31180
+ currency?: string;
31181
+ excludeApAppendix?: boolean;
31182
+ /** @description listing ids comma separated or "unmapped" */
31183
+ listingIds?: string;
31184
+ /**
31185
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
31186
+ * @enum {string}
31187
+ */
31188
+ listingScope?: "exact" | "withChildren";
31189
+ /** @description listing ownership period ids comma separated or "unmapped" */
31190
+ listingOwnershipPeriodIds?: string;
31191
+ /** @description account ids comma separated accounts or "unmapped" */
31192
+ accountIds?: string;
31193
+ /** @description comma separated account reservation line type ids */
31194
+ accountReservationLineTypeIds?: string;
31195
+ /** @description comma separated categories */
31196
+ categoryIds?: string;
31197
+ /** @description comma separated categories to exclude */
31198
+ excludeCategoryIds?: string;
31199
+ /** @description comma separated contacts */
31200
+ contactIds?: string;
31201
+ classifications?: string;
31202
+ /** @enum {string} */
31203
+ accountType?: "ledger" | "bank" | "recurringFee" | "nonPosting";
31204
+ /** @description comma separated journal entry types */
31205
+ types?: string;
31206
+ /** @description comma separated journal entry types to exclude */
31207
+ excludeTypes?: string;
31208
+ /** @description comma separated entity types "reservation" | "deposit" | "expense" | "recurringFee" | "transfer" | "payout" */
31209
+ entityTypes?: string;
31210
+ /** @description comma separated booking channel refs */
31211
+ bookingChannels?: string;
31212
+ /** @description comma separated trigger types "deferredRevenue" | "intercompany" | "rebalance" | "recurringFee" | "revenueRecognition" */
31213
+ triggerTypes?: string;
31214
+ /** @description comma separated journal entry trigger types to exclude */
31215
+ excludeTriggerTypes?: string;
31216
+ /** @description comma separated parties */
31217
+ parties?: string;
31218
+ /** @enum {string} */
31219
+ party?: "owners" | "manager";
31220
+ /** @description comma separated account assignment types "accountsPayable" | "accountsReceivable" | "cancellationRevenue" | "deferredRevenue" | "deposit_channelFee" | "deposit_coHostPayout" | "deposit_merchantFee" | "deposit_reserve" | "deposit_vat" | "dueToFromTrust" | "expense_markup" | "expense_reimbursement" | "expense_salesTax" | "openingBalance" | "payout_bankAccount" | "payout_distribution" */
31221
+ accountAssignmentTypes?: string;
31222
+ /** @description comma separated manager statement section ids */
31223
+ managerStatementSectionIds?: string;
31224
+ recurringFee?: boolean;
31225
+ /** @enum {string} */
31226
+ openingBalanceType?: "taxPayable" | "advancedDeposit" | "listingOpeningBalance" | "openingTrialBalance";
31227
+ };
31228
+ /** @enum {string} */
31229
+ measure?: "periodActivity" | "balance";
31230
+ label?: string;
31231
+ } | null;
31232
+ }[];
31233
+ drilldown?: {
31234
+ /** @constant */
31235
+ type: "journalEntryReport";
31236
+ filter: {
31237
+ /** @description comma separated journal entry ids */
31238
+ ids?: string;
31239
+ txnCode?: string;
31240
+ published?: boolean;
31241
+ /** @enum {string} */
31242
+ status?: "active" | "inactive";
31243
+ /** @enum {string} */
31244
+ ledger?: "historical" | "trust" | "operating";
31245
+ startAt?: string;
31246
+ endAt?: string;
31247
+ search?: string;
31248
+ date?: string;
31249
+ amount?: string;
31250
+ /**
31251
+ * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
31252
+ * @default true
31253
+ */
31254
+ isDateRangeEndInclusive: boolean;
31255
+ /** @description comma separated reservation ids or "unmapped" */
31256
+ reservationIds?: string;
31257
+ /** @description comma separated transaction ids */
31258
+ transactionIds?: string;
31259
+ /** @description comma separated owner statement ids */
31260
+ ownerStatementIds?: string;
31261
+ /** @description Currency in ISO 4217 format, will be converted to lowercase */
31262
+ currency?: string;
31263
+ excludeApAppendix?: boolean;
31264
+ /** @description listing ids comma separated or "unmapped" */
31265
+ listingIds?: string;
31266
+ /**
31267
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
31268
+ * @enum {string}
31269
+ */
31270
+ listingScope?: "exact" | "withChildren";
31271
+ /** @description listing ownership period ids comma separated or "unmapped" */
31272
+ listingOwnershipPeriodIds?: string;
31273
+ /** @description account ids comma separated accounts or "unmapped" */
31274
+ accountIds?: string;
31275
+ /** @description comma separated account reservation line type ids */
31276
+ accountReservationLineTypeIds?: string;
31277
+ /** @description comma separated categories */
31278
+ categoryIds?: string;
31279
+ /** @description comma separated categories to exclude */
31280
+ excludeCategoryIds?: string;
31281
+ /** @description comma separated contacts */
31282
+ contactIds?: string;
31283
+ classifications?: string;
31284
+ /** @enum {string} */
31285
+ accountType?: "ledger" | "bank" | "recurringFee" | "nonPosting";
31286
+ /** @description comma separated journal entry types */
31287
+ types?: string;
31288
+ /** @description comma separated journal entry types to exclude */
31289
+ excludeTypes?: string;
31290
+ /** @description comma separated entity types "reservation" | "deposit" | "expense" | "recurringFee" | "transfer" | "payout" */
31291
+ entityTypes?: string;
31292
+ /** @description comma separated booking channel refs */
31293
+ bookingChannels?: string;
31294
+ /** @description comma separated trigger types "deferredRevenue" | "intercompany" | "rebalance" | "recurringFee" | "revenueRecognition" */
31295
+ triggerTypes?: string;
31296
+ /** @description comma separated journal entry trigger types to exclude */
31297
+ excludeTriggerTypes?: string;
31298
+ /** @description comma separated parties */
31299
+ parties?: string;
31300
+ /** @enum {string} */
31301
+ party?: "owners" | "manager";
31302
+ /** @description comma separated account assignment types "accountsPayable" | "accountsReceivable" | "cancellationRevenue" | "deferredRevenue" | "deposit_channelFee" | "deposit_coHostPayout" | "deposit_merchantFee" | "deposit_reserve" | "deposit_vat" | "dueToFromTrust" | "expense_markup" | "expense_reimbursement" | "expense_salesTax" | "openingBalance" | "payout_bankAccount" | "payout_distribution" */
31303
+ accountAssignmentTypes?: string;
31304
+ /** @description comma separated manager statement section ids */
31305
+ managerStatementSectionIds?: string;
31306
+ recurringFee?: boolean;
31307
+ /** @enum {string} */
31308
+ openingBalanceType?: "taxPayable" | "advancedDeposit" | "listingOpeningBalance" | "openingTrialBalance";
31309
+ };
31310
+ /** @enum {string} */
31311
+ measure?: "periodActivity" | "balance";
31312
+ label?: string;
31313
+ } | null;
31314
+ subtotal?: {
31315
+ title: string;
31316
+ columns: {
31317
+ id?: string;
31318
+ title: string;
31319
+ /** @enum {string} */
31320
+ type?: "field" | "accounts" | "subTotal" | "formula.currency" | "formula.percentage";
31321
+ formula?: string;
31322
+ value: number | string;
31323
+ formatted: string;
31324
+ accountIds: string[];
31325
+ drilldown?: {
31326
+ /** @constant */
31327
+ type: "journalEntryReport";
31328
+ filter: {
31329
+ /** @description comma separated journal entry ids */
31330
+ ids?: string;
31331
+ txnCode?: string;
31332
+ published?: boolean;
31333
+ /** @enum {string} */
31334
+ status?: "active" | "inactive";
31335
+ /** @enum {string} */
31336
+ ledger?: "historical" | "trust" | "operating";
31337
+ startAt?: string;
31338
+ endAt?: string;
31339
+ search?: string;
31340
+ date?: string;
31341
+ amount?: string;
31342
+ /**
31343
+ * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
31344
+ * @default true
31345
+ */
31346
+ isDateRangeEndInclusive: boolean;
31347
+ /** @description comma separated reservation ids or "unmapped" */
31348
+ reservationIds?: string;
31349
+ /** @description comma separated transaction ids */
31350
+ transactionIds?: string;
31351
+ /** @description comma separated owner statement ids */
31352
+ ownerStatementIds?: string;
31353
+ /** @description Currency in ISO 4217 format, will be converted to lowercase */
31354
+ currency?: string;
31355
+ excludeApAppendix?: boolean;
31356
+ /** @description listing ids comma separated or "unmapped" */
31357
+ listingIds?: string;
31358
+ /**
31359
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
31360
+ * @enum {string}
31361
+ */
31362
+ listingScope?: "exact" | "withChildren";
30155
31363
  /** @description listing ownership period ids comma separated or "unmapped" */
30156
31364
  listingOwnershipPeriodIds?: string;
30157
31365
  /** @description account ids comma separated accounts or "unmapped" */
@@ -30229,247 +31437,11 @@ export interface operations {
30229
31437
  excludeApAppendix?: boolean;
30230
31438
  /** @description listing ids comma separated or "unmapped" */
30231
31439
  listingIds?: string;
30232
- /** @description listing ownership period ids comma separated or "unmapped" */
30233
- listingOwnershipPeriodIds?: string;
30234
- /** @description account ids comma separated accounts or "unmapped" */
30235
- accountIds?: string;
30236
- /** @description comma separated account reservation line type ids */
30237
- accountReservationLineTypeIds?: string;
30238
- /** @description comma separated categories */
30239
- categoryIds?: string;
30240
- /** @description comma separated categories to exclude */
30241
- excludeCategoryIds?: string;
30242
- /** @description comma separated contacts */
30243
- contactIds?: string;
30244
- classifications?: string;
30245
- /** @enum {string} */
30246
- accountType?: "ledger" | "bank" | "recurringFee" | "nonPosting";
30247
- /** @description comma separated journal entry types */
30248
- types?: string;
30249
- /** @description comma separated journal entry types to exclude */
30250
- excludeTypes?: string;
30251
- /** @description comma separated entity types "reservation" | "deposit" | "expense" | "recurringFee" | "transfer" | "payout" */
30252
- entityTypes?: string;
30253
- /** @description comma separated booking channel refs */
30254
- bookingChannels?: string;
30255
- /** @description comma separated trigger types "deferredRevenue" | "intercompany" | "rebalance" | "recurringFee" | "revenueRecognition" */
30256
- triggerTypes?: string;
30257
- /** @description comma separated journal entry trigger types to exclude */
30258
- excludeTriggerTypes?: string;
30259
- /** @description comma separated parties */
30260
- parties?: string;
30261
- /** @enum {string} */
30262
- party?: "owners" | "manager";
30263
- /** @description comma separated account assignment types "accountsPayable" | "accountsReceivable" | "cancellationRevenue" | "deferredRevenue" | "deposit_channelFee" | "deposit_coHostPayout" | "deposit_merchantFee" | "deposit_reserve" | "deposit_vat" | "dueToFromTrust" | "expense_markup" | "expense_reimbursement" | "expense_salesTax" | "openingBalance" | "payout_bankAccount" | "payout_distribution" */
30264
- accountAssignmentTypes?: string;
30265
- /** @description comma separated manager statement section ids */
30266
- managerStatementSectionIds?: string;
30267
- recurringFee?: boolean;
30268
- /** @enum {string} */
30269
- openingBalanceType?: "taxPayable" | "advancedDeposit" | "listingOpeningBalance" | "openingTrialBalance";
30270
- };
30271
- /** @enum {string} */
30272
- measure?: "periodActivity" | "balance";
30273
- label?: string;
30274
- } | null;
30275
- }[];
30276
- drilldown?: {
30277
- /** @constant */
30278
- type: "journalEntryReport";
30279
- filter: {
30280
- /** @description comma separated journal entry ids */
30281
- ids?: string;
30282
- txnCode?: string;
30283
- published?: boolean;
30284
- /** @enum {string} */
30285
- status?: "active" | "inactive";
30286
- /** @enum {string} */
30287
- ledger?: "historical" | "trust" | "operating";
30288
- startAt?: string;
30289
- endAt?: string;
30290
- search?: string;
30291
- date?: string;
30292
- amount?: string;
30293
- /**
30294
- * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
30295
- * @default true
30296
- */
30297
- isDateRangeEndInclusive: boolean;
30298
- /** @description comma separated reservation ids or "unmapped" */
30299
- reservationIds?: string;
30300
- /** @description comma separated transaction ids */
30301
- transactionIds?: string;
30302
- /** @description comma separated owner statement ids */
30303
- ownerStatementIds?: string;
30304
- /** @description Currency in ISO 4217 format, will be converted to lowercase */
30305
- currency?: string;
30306
- excludeApAppendix?: boolean;
30307
- /** @description listing ids comma separated or "unmapped" */
30308
- listingIds?: string;
30309
- /** @description listing ownership period ids comma separated or "unmapped" */
30310
- listingOwnershipPeriodIds?: string;
30311
- /** @description account ids comma separated accounts or "unmapped" */
30312
- accountIds?: string;
30313
- /** @description comma separated account reservation line type ids */
30314
- accountReservationLineTypeIds?: string;
30315
- /** @description comma separated categories */
30316
- categoryIds?: string;
30317
- /** @description comma separated categories to exclude */
30318
- excludeCategoryIds?: string;
30319
- /** @description comma separated contacts */
30320
- contactIds?: string;
30321
- classifications?: string;
30322
- /** @enum {string} */
30323
- accountType?: "ledger" | "bank" | "recurringFee" | "nonPosting";
30324
- /** @description comma separated journal entry types */
30325
- types?: string;
30326
- /** @description comma separated journal entry types to exclude */
30327
- excludeTypes?: string;
30328
- /** @description comma separated entity types "reservation" | "deposit" | "expense" | "recurringFee" | "transfer" | "payout" */
30329
- entityTypes?: string;
30330
- /** @description comma separated booking channel refs */
30331
- bookingChannels?: string;
30332
- /** @description comma separated trigger types "deferredRevenue" | "intercompany" | "rebalance" | "recurringFee" | "revenueRecognition" */
30333
- triggerTypes?: string;
30334
- /** @description comma separated journal entry trigger types to exclude */
30335
- excludeTriggerTypes?: string;
30336
- /** @description comma separated parties */
30337
- parties?: string;
30338
- /** @enum {string} */
30339
- party?: "owners" | "manager";
30340
- /** @description comma separated account assignment types "accountsPayable" | "accountsReceivable" | "cancellationRevenue" | "deferredRevenue" | "deposit_channelFee" | "deposit_coHostPayout" | "deposit_merchantFee" | "deposit_reserve" | "deposit_vat" | "dueToFromTrust" | "expense_markup" | "expense_reimbursement" | "expense_salesTax" | "openingBalance" | "payout_bankAccount" | "payout_distribution" */
30341
- accountAssignmentTypes?: string;
30342
- /** @description comma separated manager statement section ids */
30343
- managerStatementSectionIds?: string;
30344
- recurringFee?: boolean;
30345
- /** @enum {string} */
30346
- openingBalanceType?: "taxPayable" | "advancedDeposit" | "listingOpeningBalance" | "openingTrialBalance";
30347
- };
30348
- /** @enum {string} */
30349
- measure?: "periodActivity" | "balance";
30350
- label?: string;
30351
- } | null;
30352
- subtotal?: {
30353
- title: string;
30354
- columns: {
30355
- id?: string;
30356
- title: string;
30357
- /** @enum {string} */
30358
- type?: "field" | "accounts" | "subTotal" | "formula.currency" | "formula.percentage";
30359
- formula?: string;
30360
- value: number | string;
30361
- formatted: string;
30362
- accountIds: string[];
30363
- drilldown?: {
30364
- /** @constant */
30365
- type: "journalEntryReport";
30366
- filter: {
30367
- /** @description comma separated journal entry ids */
30368
- ids?: string;
30369
- txnCode?: string;
30370
- published?: boolean;
30371
- /** @enum {string} */
30372
- status?: "active" | "inactive";
30373
- /** @enum {string} */
30374
- ledger?: "historical" | "trust" | "operating";
30375
- startAt?: string;
30376
- endAt?: string;
30377
- search?: string;
30378
- date?: string;
30379
- amount?: string;
30380
- /**
30381
- * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
30382
- * @default true
30383
- */
30384
- isDateRangeEndInclusive: boolean;
30385
- /** @description comma separated reservation ids or "unmapped" */
30386
- reservationIds?: string;
30387
- /** @description comma separated transaction ids */
30388
- transactionIds?: string;
30389
- /** @description comma separated owner statement ids */
30390
- ownerStatementIds?: string;
30391
- /** @description Currency in ISO 4217 format, will be converted to lowercase */
30392
- currency?: string;
30393
- excludeApAppendix?: boolean;
30394
- /** @description listing ids comma separated or "unmapped" */
30395
- listingIds?: string;
30396
- /** @description listing ownership period ids comma separated or "unmapped" */
30397
- listingOwnershipPeriodIds?: string;
30398
- /** @description account ids comma separated accounts or "unmapped" */
30399
- accountIds?: string;
30400
- /** @description comma separated account reservation line type ids */
30401
- accountReservationLineTypeIds?: string;
30402
- /** @description comma separated categories */
30403
- categoryIds?: string;
30404
- /** @description comma separated categories to exclude */
30405
- excludeCategoryIds?: string;
30406
- /** @description comma separated contacts */
30407
- contactIds?: string;
30408
- classifications?: string;
30409
- /** @enum {string} */
30410
- accountType?: "ledger" | "bank" | "recurringFee" | "nonPosting";
30411
- /** @description comma separated journal entry types */
30412
- types?: string;
30413
- /** @description comma separated journal entry types to exclude */
30414
- excludeTypes?: string;
30415
- /** @description comma separated entity types "reservation" | "deposit" | "expense" | "recurringFee" | "transfer" | "payout" */
30416
- entityTypes?: string;
30417
- /** @description comma separated booking channel refs */
30418
- bookingChannels?: string;
30419
- /** @description comma separated trigger types "deferredRevenue" | "intercompany" | "rebalance" | "recurringFee" | "revenueRecognition" */
30420
- triggerTypes?: string;
30421
- /** @description comma separated journal entry trigger types to exclude */
30422
- excludeTriggerTypes?: string;
30423
- /** @description comma separated parties */
30424
- parties?: string;
30425
- /** @enum {string} */
30426
- party?: "owners" | "manager";
30427
- /** @description comma separated account assignment types "accountsPayable" | "accountsReceivable" | "cancellationRevenue" | "deferredRevenue" | "deposit_channelFee" | "deposit_coHostPayout" | "deposit_merchantFee" | "deposit_reserve" | "deposit_vat" | "dueToFromTrust" | "expense_markup" | "expense_reimbursement" | "expense_salesTax" | "openingBalance" | "payout_bankAccount" | "payout_distribution" */
30428
- accountAssignmentTypes?: string;
30429
- /** @description comma separated manager statement section ids */
30430
- managerStatementSectionIds?: string;
30431
- recurringFee?: boolean;
30432
- /** @enum {string} */
30433
- openingBalanceType?: "taxPayable" | "advancedDeposit" | "listingOpeningBalance" | "openingTrialBalance";
30434
- };
30435
- /** @enum {string} */
30436
- measure?: "periodActivity" | "balance";
30437
- label?: string;
30438
- } | null;
30439
- }[];
30440
- drilldown?: {
30441
- /** @constant */
30442
- type: "journalEntryReport";
30443
- filter: {
30444
- /** @description comma separated journal entry ids */
30445
- ids?: string;
30446
- txnCode?: string;
30447
- published?: boolean;
30448
- /** @enum {string} */
30449
- status?: "active" | "inactive";
30450
- /** @enum {string} */
30451
- ledger?: "historical" | "trust" | "operating";
30452
- startAt?: string;
30453
- endAt?: string;
30454
- search?: string;
30455
- date?: string;
30456
- amount?: string;
30457
31440
  /**
30458
- * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
30459
- * @default true
31441
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
31442
+ * @enum {string}
30460
31443
  */
30461
- isDateRangeEndInclusive: boolean;
30462
- /** @description comma separated reservation ids or "unmapped" */
30463
- reservationIds?: string;
30464
- /** @description comma separated transaction ids */
30465
- transactionIds?: string;
30466
- /** @description comma separated owner statement ids */
30467
- ownerStatementIds?: string;
30468
- /** @description Currency in ISO 4217 format, will be converted to lowercase */
30469
- currency?: string;
30470
- excludeApAppendix?: boolean;
30471
- /** @description listing ids comma separated or "unmapped" */
30472
- listingIds?: string;
31444
+ listingScope?: "exact" | "withChildren";
30473
31445
  /** @description listing ownership period ids comma separated or "unmapped" */
30474
31446
  listingOwnershipPeriodIds?: string;
30475
31447
  /** @description account ids comma separated accounts or "unmapped" */
@@ -30578,6 +31550,11 @@ export interface operations {
30578
31550
  excludeApAppendix?: boolean;
30579
31551
  /** @description listing ids comma separated or "unmapped" */
30580
31552
  listingIds?: string;
31553
+ /**
31554
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
31555
+ * @enum {string}
31556
+ */
31557
+ listingScope?: "exact" | "withChildren";
30581
31558
  /** @description listing ownership period ids comma separated or "unmapped" */
30582
31559
  listingOwnershipPeriodIds?: string;
30583
31560
  /** @description account ids comma separated accounts or "unmapped" */
@@ -30655,6 +31632,11 @@ export interface operations {
30655
31632
  excludeApAppendix?: boolean;
30656
31633
  /** @description listing ids comma separated or "unmapped" */
30657
31634
  listingIds?: string;
31635
+ /**
31636
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
31637
+ * @enum {string}
31638
+ */
31639
+ listingScope?: "exact" | "withChildren";
30658
31640
  /** @description listing ownership period ids comma separated or "unmapped" */
30659
31641
  listingOwnershipPeriodIds?: string;
30660
31642
  /** @description account ids comma separated accounts or "unmapped" */
@@ -30732,6 +31714,11 @@ export interface operations {
30732
31714
  excludeApAppendix?: boolean;
30733
31715
  /** @description listing ids comma separated or "unmapped" */
30734
31716
  listingIds?: string;
31717
+ /**
31718
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
31719
+ * @enum {string}
31720
+ */
31721
+ listingScope?: "exact" | "withChildren";
30735
31722
  /** @description listing ownership period ids comma separated or "unmapped" */
30736
31723
  listingOwnershipPeriodIds?: string;
30737
31724
  /** @description account ids comma separated accounts or "unmapped" */
@@ -30819,6 +31806,11 @@ export interface operations {
30819
31806
  excludeApAppendix?: boolean;
30820
31807
  /** @description listing ids comma separated or "unmapped" */
30821
31808
  listingIds?: string;
31809
+ /**
31810
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
31811
+ * @enum {string}
31812
+ */
31813
+ listingScope?: "exact" | "withChildren";
30822
31814
  /** @description listing ownership period ids comma separated or "unmapped" */
30823
31815
  listingOwnershipPeriodIds?: string;
30824
31816
  /** @description account ids comma separated accounts or "unmapped" */
@@ -30896,6 +31888,11 @@ export interface operations {
30896
31888
  excludeApAppendix?: boolean;
30897
31889
  /** @description listing ids comma separated or "unmapped" */
30898
31890
  listingIds?: string;
31891
+ /**
31892
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
31893
+ * @enum {string}
31894
+ */
31895
+ listingScope?: "exact" | "withChildren";
30899
31896
  /** @description listing ownership period ids comma separated or "unmapped" */
30900
31897
  listingOwnershipPeriodIds?: string;
30901
31898
  /** @description account ids comma separated accounts or "unmapped" */
@@ -31003,6 +32000,11 @@ export interface operations {
31003
32000
  excludeApAppendix?: boolean;
31004
32001
  /** @description listing ids comma separated or "unmapped" */
31005
32002
  listingIds?: string;
32003
+ /**
32004
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
32005
+ * @enum {string}
32006
+ */
32007
+ listingScope?: "exact" | "withChildren";
31006
32008
  /** @description listing ownership period ids comma separated or "unmapped" */
31007
32009
  listingOwnershipPeriodIds?: string;
31008
32010
  /** @description account ids comma separated accounts or "unmapped" */
@@ -31080,6 +32082,11 @@ export interface operations {
31080
32082
  excludeApAppendix?: boolean;
31081
32083
  /** @description listing ids comma separated or "unmapped" */
31082
32084
  listingIds?: string;
32085
+ /**
32086
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
32087
+ * @enum {string}
32088
+ */
32089
+ listingScope?: "exact" | "withChildren";
31083
32090
  /** @description listing ownership period ids comma separated or "unmapped" */
31084
32091
  listingOwnershipPeriodIds?: string;
31085
32092
  /** @description account ids comma separated accounts or "unmapped" */
@@ -31157,6 +32164,11 @@ export interface operations {
31157
32164
  excludeApAppendix?: boolean;
31158
32165
  /** @description listing ids comma separated or "unmapped" */
31159
32166
  listingIds?: string;
32167
+ /**
32168
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
32169
+ * @enum {string}
32170
+ */
32171
+ listingScope?: "exact" | "withChildren";
31160
32172
  /** @description listing ownership period ids comma separated or "unmapped" */
31161
32173
  listingOwnershipPeriodIds?: string;
31162
32174
  /** @description account ids comma separated accounts or "unmapped" */
@@ -31244,6 +32256,11 @@ export interface operations {
31244
32256
  excludeApAppendix?: boolean;
31245
32257
  /** @description listing ids comma separated or "unmapped" */
31246
32258
  listingIds?: string;
32259
+ /**
32260
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
32261
+ * @enum {string}
32262
+ */
32263
+ listingScope?: "exact" | "withChildren";
31247
32264
  /** @description listing ownership period ids comma separated or "unmapped" */
31248
32265
  listingOwnershipPeriodIds?: string;
31249
32266
  /** @description account ids comma separated accounts or "unmapped" */
@@ -31321,6 +32338,11 @@ export interface operations {
31321
32338
  excludeApAppendix?: boolean;
31322
32339
  /** @description listing ids comma separated or "unmapped" */
31323
32340
  listingIds?: string;
32341
+ /**
32342
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
32343
+ * @enum {string}
32344
+ */
32345
+ listingScope?: "exact" | "withChildren";
31324
32346
  /** @description listing ownership period ids comma separated or "unmapped" */
31325
32347
  listingOwnershipPeriodIds?: string;
31326
32348
  /** @description account ids comma separated accounts or "unmapped" */
@@ -31814,6 +32836,8 @@ export interface operations {
31814
32836
  view?: "ledger" | "party" | "listing" | "month" | "quarter" | "year";
31815
32837
  listingIds?: string;
31816
32838
  ledger?: "trust" | "operating";
32839
+ /** @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids. */
32840
+ listingScope?: "exact" | "withChildren";
31817
32841
  };
31818
32842
  header?: never;
31819
32843
  path?: never;
@@ -31871,6 +32895,11 @@ export interface operations {
31871
32895
  excludeApAppendix?: boolean;
31872
32896
  /** @description listing ids comma separated or "unmapped" */
31873
32897
  listingIds?: string;
32898
+ /**
32899
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
32900
+ * @enum {string}
32901
+ */
32902
+ listingScope?: "exact" | "withChildren";
31874
32903
  /** @description listing ownership period ids comma separated or "unmapped" */
31875
32904
  listingOwnershipPeriodIds?: string;
31876
32905
  /** @description account ids comma separated accounts or "unmapped" */
@@ -31953,6 +32982,11 @@ export interface operations {
31953
32982
  excludeApAppendix?: boolean;
31954
32983
  /** @description listing ids comma separated or "unmapped" */
31955
32984
  listingIds?: string;
32985
+ /**
32986
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
32987
+ * @enum {string}
32988
+ */
32989
+ listingScope?: "exact" | "withChildren";
31956
32990
  /** @description listing ownership period ids comma separated or "unmapped" */
31957
32991
  listingOwnershipPeriodIds?: string;
31958
32992
  /** @description account ids comma separated accounts or "unmapped" */
@@ -32039,6 +33073,11 @@ export interface operations {
32039
33073
  excludeApAppendix?: boolean;
32040
33074
  /** @description listing ids comma separated or "unmapped" */
32041
33075
  listingIds?: string;
33076
+ /**
33077
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
33078
+ * @enum {string}
33079
+ */
33080
+ listingScope?: "exact" | "withChildren";
32042
33081
  /** @description listing ownership period ids comma separated or "unmapped" */
32043
33082
  listingOwnershipPeriodIds?: string;
32044
33083
  /** @description account ids comma separated accounts or "unmapped" */
@@ -32120,6 +33159,11 @@ export interface operations {
32120
33159
  excludeApAppendix?: boolean;
32121
33160
  /** @description listing ids comma separated or "unmapped" */
32122
33161
  listingIds?: string;
33162
+ /**
33163
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
33164
+ * @enum {string}
33165
+ */
33166
+ listingScope?: "exact" | "withChildren";
32123
33167
  /** @description listing ownership period ids comma separated or "unmapped" */
32124
33168
  listingOwnershipPeriodIds?: string;
32125
33169
  /** @description account ids comma separated accounts or "unmapped" */
@@ -32209,6 +33253,11 @@ export interface operations {
32209
33253
  excludeApAppendix?: boolean;
32210
33254
  /** @description listing ids comma separated or "unmapped" */
32211
33255
  listingIds?: string;
33256
+ /**
33257
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
33258
+ * @enum {string}
33259
+ */
33260
+ listingScope?: "exact" | "withChildren";
32212
33261
  /** @description listing ownership period ids comma separated or "unmapped" */
32213
33262
  listingOwnershipPeriodIds?: string;
32214
33263
  /** @description account ids comma separated accounts or "unmapped" */
@@ -32291,6 +33340,11 @@ export interface operations {
32291
33340
  excludeApAppendix?: boolean;
32292
33341
  /** @description listing ids comma separated or "unmapped" */
32293
33342
  listingIds?: string;
33343
+ /**
33344
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
33345
+ * @enum {string}
33346
+ */
33347
+ listingScope?: "exact" | "withChildren";
32294
33348
  /** @description listing ownership period ids comma separated or "unmapped" */
32295
33349
  listingOwnershipPeriodIds?: string;
32296
33350
  /** @description account ids comma separated accounts or "unmapped" */
@@ -32377,6 +33431,11 @@ export interface operations {
32377
33431
  excludeApAppendix?: boolean;
32378
33432
  /** @description listing ids comma separated or "unmapped" */
32379
33433
  listingIds?: string;
33434
+ /**
33435
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
33436
+ * @enum {string}
33437
+ */
33438
+ listingScope?: "exact" | "withChildren";
32380
33439
  /** @description listing ownership period ids comma separated or "unmapped" */
32381
33440
  listingOwnershipPeriodIds?: string;
32382
33441
  /** @description account ids comma separated accounts or "unmapped" */
@@ -32458,6 +33517,11 @@ export interface operations {
32458
33517
  excludeApAppendix?: boolean;
32459
33518
  /** @description listing ids comma separated or "unmapped" */
32460
33519
  listingIds?: string;
33520
+ /**
33521
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
33522
+ * @enum {string}
33523
+ */
33524
+ listingScope?: "exact" | "withChildren";
32461
33525
  /** @description listing ownership period ids comma separated or "unmapped" */
32462
33526
  listingOwnershipPeriodIds?: string;
32463
33527
  /** @description account ids comma separated accounts or "unmapped" */
@@ -32547,6 +33611,11 @@ export interface operations {
32547
33611
  excludeApAppendix?: boolean;
32548
33612
  /** @description listing ids comma separated or "unmapped" */
32549
33613
  listingIds?: string;
33614
+ /**
33615
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
33616
+ * @enum {string}
33617
+ */
33618
+ listingScope?: "exact" | "withChildren";
32550
33619
  /** @description listing ownership period ids comma separated or "unmapped" */
32551
33620
  listingOwnershipPeriodIds?: string;
32552
33621
  /** @description account ids comma separated accounts or "unmapped" */
@@ -32629,6 +33698,11 @@ export interface operations {
32629
33698
  excludeApAppendix?: boolean;
32630
33699
  /** @description listing ids comma separated or "unmapped" */
32631
33700
  listingIds?: string;
33701
+ /**
33702
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
33703
+ * @enum {string}
33704
+ */
33705
+ listingScope?: "exact" | "withChildren";
32632
33706
  /** @description listing ownership period ids comma separated or "unmapped" */
32633
33707
  listingOwnershipPeriodIds?: string;
32634
33708
  /** @description account ids comma separated accounts or "unmapped" */
@@ -32715,6 +33789,11 @@ export interface operations {
32715
33789
  excludeApAppendix?: boolean;
32716
33790
  /** @description listing ids comma separated or "unmapped" */
32717
33791
  listingIds?: string;
33792
+ /**
33793
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
33794
+ * @enum {string}
33795
+ */
33796
+ listingScope?: "exact" | "withChildren";
32718
33797
  /** @description listing ownership period ids comma separated or "unmapped" */
32719
33798
  listingOwnershipPeriodIds?: string;
32720
33799
  /** @description account ids comma separated accounts or "unmapped" */
@@ -32796,6 +33875,11 @@ export interface operations {
32796
33875
  excludeApAppendix?: boolean;
32797
33876
  /** @description listing ids comma separated or "unmapped" */
32798
33877
  listingIds?: string;
33878
+ /**
33879
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
33880
+ * @enum {string}
33881
+ */
33882
+ listingScope?: "exact" | "withChildren";
32799
33883
  /** @description listing ownership period ids comma separated or "unmapped" */
32800
33884
  listingOwnershipPeriodIds?: string;
32801
33885
  /** @description account ids comma separated accounts or "unmapped" */
@@ -32885,6 +33969,11 @@ export interface operations {
32885
33969
  excludeApAppendix?: boolean;
32886
33970
  /** @description listing ids comma separated or "unmapped" */
32887
33971
  listingIds?: string;
33972
+ /**
33973
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
33974
+ * @enum {string}
33975
+ */
33976
+ listingScope?: "exact" | "withChildren";
32888
33977
  /** @description listing ownership period ids comma separated or "unmapped" */
32889
33978
  listingOwnershipPeriodIds?: string;
32890
33979
  /** @description account ids comma separated accounts or "unmapped" */
@@ -32967,6 +34056,11 @@ export interface operations {
32967
34056
  excludeApAppendix?: boolean;
32968
34057
  /** @description listing ids comma separated or "unmapped" */
32969
34058
  listingIds?: string;
34059
+ /**
34060
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
34061
+ * @enum {string}
34062
+ */
34063
+ listingScope?: "exact" | "withChildren";
32970
34064
  /** @description listing ownership period ids comma separated or "unmapped" */
32971
34065
  listingOwnershipPeriodIds?: string;
32972
34066
  /** @description account ids comma separated accounts or "unmapped" */
@@ -33053,6 +34147,11 @@ export interface operations {
33053
34147
  excludeApAppendix?: boolean;
33054
34148
  /** @description listing ids comma separated or "unmapped" */
33055
34149
  listingIds?: string;
34150
+ /**
34151
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
34152
+ * @enum {string}
34153
+ */
34154
+ listingScope?: "exact" | "withChildren";
33056
34155
  /** @description listing ownership period ids comma separated or "unmapped" */
33057
34156
  listingOwnershipPeriodIds?: string;
33058
34157
  /** @description account ids comma separated accounts or "unmapped" */
@@ -33134,6 +34233,11 @@ export interface operations {
33134
34233
  excludeApAppendix?: boolean;
33135
34234
  /** @description listing ids comma separated or "unmapped" */
33136
34235
  listingIds?: string;
34236
+ /**
34237
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
34238
+ * @enum {string}
34239
+ */
34240
+ listingScope?: "exact" | "withChildren";
33137
34241
  /** @description listing ownership period ids comma separated or "unmapped" */
33138
34242
  listingOwnershipPeriodIds?: string;
33139
34243
  /** @description account ids comma separated accounts or "unmapped" */
@@ -33278,6 +34382,8 @@ export interface operations {
33278
34382
  view?: "ledger" | "party" | "listing" | "month" | "quarter" | "year";
33279
34383
  listingIds?: string;
33280
34384
  ledger?: "trust" | "operating";
34385
+ /** @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids. */
34386
+ listingScope?: "exact" | "withChildren";
33281
34387
  };
33282
34388
  header?: never;
33283
34389
  path?: never;
@@ -33455,6 +34561,11 @@ export interface operations {
33455
34561
  excludeApAppendix?: boolean;
33456
34562
  /** @description listing ids comma separated or "unmapped" */
33457
34563
  listingIds?: string;
34564
+ /**
34565
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
34566
+ * @enum {string}
34567
+ */
34568
+ listingScope?: "exact" | "withChildren";
33458
34569
  /** @description listing ownership period ids comma separated or "unmapped" */
33459
34570
  listingOwnershipPeriodIds?: string;
33460
34571
  /** @description account ids comma separated accounts or "unmapped" */
@@ -33531,6 +34642,11 @@ export interface operations {
33531
34642
  excludeApAppendix?: boolean;
33532
34643
  /** @description listing ids comma separated or "unmapped" */
33533
34644
  listingIds?: string;
34645
+ /**
34646
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
34647
+ * @enum {string}
34648
+ */
34649
+ listingScope?: "exact" | "withChildren";
33534
34650
  /** @description listing ownership period ids comma separated or "unmapped" */
33535
34651
  listingOwnershipPeriodIds?: string;
33536
34652
  /** @description account ids comma separated accounts or "unmapped" */
@@ -33836,6 +34952,11 @@ export interface operations {
33836
34952
  excludeApAppendix?: boolean;
33837
34953
  /** @description listing ids comma separated or "unmapped" */
33838
34954
  listingIds?: string;
34955
+ /**
34956
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
34957
+ * @enum {string}
34958
+ */
34959
+ listingScope?: "exact" | "withChildren";
33839
34960
  /** @description listing ownership period ids comma separated or "unmapped" */
33840
34961
  listingOwnershipPeriodIds?: string;
33841
34962
  /** @description account ids comma separated accounts or "unmapped" */
@@ -33912,6 +35033,11 @@ export interface operations {
33912
35033
  excludeApAppendix?: boolean;
33913
35034
  /** @description listing ids comma separated or "unmapped" */
33914
35035
  listingIds?: string;
35036
+ /**
35037
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
35038
+ * @enum {string}
35039
+ */
35040
+ listingScope?: "exact" | "withChildren";
33915
35041
  /** @description listing ownership period ids comma separated or "unmapped" */
33916
35042
  listingOwnershipPeriodIds?: string;
33917
35043
  /** @description account ids comma separated accounts or "unmapped" */
@@ -33988,6 +35114,11 @@ export interface operations {
33988
35114
  excludeApAppendix?: boolean;
33989
35115
  /** @description listing ids comma separated or "unmapped" */
33990
35116
  listingIds?: string;
35117
+ /**
35118
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
35119
+ * @enum {string}
35120
+ */
35121
+ listingScope?: "exact" | "withChildren";
33991
35122
  /** @description listing ownership period ids comma separated or "unmapped" */
33992
35123
  listingOwnershipPeriodIds?: string;
33993
35124
  /** @description account ids comma separated accounts or "unmapped" */
@@ -34064,6 +35195,11 @@ export interface operations {
34064
35195
  excludeApAppendix?: boolean;
34065
35196
  /** @description listing ids comma separated or "unmapped" */
34066
35197
  listingIds?: string;
35198
+ /**
35199
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
35200
+ * @enum {string}
35201
+ */
35202
+ listingScope?: "exact" | "withChildren";
34067
35203
  /** @description listing ownership period ids comma separated or "unmapped" */
34068
35204
  listingOwnershipPeriodIds?: string;
34069
35205
  /** @description account ids comma separated accounts or "unmapped" */
@@ -34150,6 +35286,11 @@ export interface operations {
34150
35286
  excludeApAppendix?: boolean;
34151
35287
  /** @description listing ids comma separated or "unmapped" */
34152
35288
  listingIds?: string;
35289
+ /**
35290
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
35291
+ * @enum {string}
35292
+ */
35293
+ listingScope?: "exact" | "withChildren";
34153
35294
  /** @description listing ownership period ids comma separated or "unmapped" */
34154
35295
  listingOwnershipPeriodIds?: string;
34155
35296
  /** @description account ids comma separated accounts or "unmapped" */
@@ -34226,6 +35367,11 @@ export interface operations {
34226
35367
  excludeApAppendix?: boolean;
34227
35368
  /** @description listing ids comma separated or "unmapped" */
34228
35369
  listingIds?: string;
35370
+ /**
35371
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
35372
+ * @enum {string}
35373
+ */
35374
+ listingScope?: "exact" | "withChildren";
34229
35375
  /** @description listing ownership period ids comma separated or "unmapped" */
34230
35376
  listingOwnershipPeriodIds?: string;
34231
35377
  /** @description account ids comma separated accounts or "unmapped" */
@@ -34302,6 +35448,11 @@ export interface operations {
34302
35448
  excludeApAppendix?: boolean;
34303
35449
  /** @description listing ids comma separated or "unmapped" */
34304
35450
  listingIds?: string;
35451
+ /**
35452
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
35453
+ * @enum {string}
35454
+ */
35455
+ listingScope?: "exact" | "withChildren";
34305
35456
  /** @description listing ownership period ids comma separated or "unmapped" */
34306
35457
  listingOwnershipPeriodIds?: string;
34307
35458
  /** @description account ids comma separated accounts or "unmapped" */
@@ -34378,6 +35529,11 @@ export interface operations {
34378
35529
  excludeApAppendix?: boolean;
34379
35530
  /** @description listing ids comma separated or "unmapped" */
34380
35531
  listingIds?: string;
35532
+ /**
35533
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
35534
+ * @enum {string}
35535
+ */
35536
+ listingScope?: "exact" | "withChildren";
34381
35537
  /** @description listing ownership period ids comma separated or "unmapped" */
34382
35538
  listingOwnershipPeriodIds?: string;
34383
35539
  /** @description account ids comma separated accounts or "unmapped" */
@@ -34685,6 +35841,11 @@ export interface operations {
34685
35841
  excludeApAppendix?: boolean;
34686
35842
  /** @description listing ids comma separated or "unmapped" */
34687
35843
  listingIds?: string;
35844
+ /**
35845
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
35846
+ * @enum {string}
35847
+ */
35848
+ listingScope?: "exact" | "withChildren";
34688
35849
  /** @description listing ownership period ids comma separated or "unmapped" */
34689
35850
  listingOwnershipPeriodIds?: string;
34690
35851
  /** @description account ids comma separated accounts or "unmapped" */
@@ -34782,6 +35943,11 @@ export interface operations {
34782
35943
  excludeApAppendix?: boolean;
34783
35944
  /** @description listing ids comma separated or "unmapped" */
34784
35945
  listingIds?: string;
35946
+ /**
35947
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
35948
+ * @enum {string}
35949
+ */
35950
+ listingScope?: "exact" | "withChildren";
34785
35951
  /** @description listing ownership period ids comma separated or "unmapped" */
34786
35952
  listingOwnershipPeriodIds?: string;
34787
35953
  /** @description account ids comma separated accounts or "unmapped" */
@@ -34869,6 +36035,11 @@ export interface operations {
34869
36035
  excludeApAppendix?: boolean;
34870
36036
  /** @description listing ids comma separated or "unmapped" */
34871
36037
  listingIds?: string;
36038
+ /**
36039
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
36040
+ * @enum {string}
36041
+ */
36042
+ listingScope?: "exact" | "withChildren";
34872
36043
  /** @description listing ownership period ids comma separated or "unmapped" */
34873
36044
  listingOwnershipPeriodIds?: string;
34874
36045
  /** @description account ids comma separated accounts or "unmapped" */
@@ -35004,6 +36175,8 @@ export interface operations {
35004
36175
  parameters: {
35005
36176
  query: {
35006
36177
  endDate: string;
36178
+ /** @description Controls grouped listing presentation. source returns flat source listing rows, nestedParent nests child rows below parent totals, and parentRollup returns only parent/group totals. */
36179
+ listingDisplay?: "source" | "nestedParent" | "parentRollup";
35007
36180
  };
35008
36181
  header?: never;
35009
36182
  path?: never;
@@ -35066,6 +36239,11 @@ export interface operations {
35066
36239
  excludeApAppendix?: boolean;
35067
36240
  /** @description listing ids comma separated or "unmapped" */
35068
36241
  listingIds?: string;
36242
+ /**
36243
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
36244
+ * @enum {string}
36245
+ */
36246
+ listingScope?: "exact" | "withChildren";
35069
36247
  /** @description listing ownership period ids comma separated or "unmapped" */
35070
36248
  listingOwnershipPeriodIds?: string;
35071
36249
  /** @description account ids comma separated accounts or "unmapped" */
@@ -35119,6 +36297,7 @@ export interface operations {
35119
36297
  listings: {
35120
36298
  id: string;
35121
36299
  listingId: string | null;
36300
+ parentListingId?: string | null;
35122
36301
  ownershipPeriodId: string | null;
35123
36302
  name: string;
35124
36303
  total: number;
@@ -35166,6 +36345,11 @@ export interface operations {
35166
36345
  excludeApAppendix?: boolean;
35167
36346
  /** @description listing ids comma separated or "unmapped" */
35168
36347
  listingIds?: string;
36348
+ /**
36349
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
36350
+ * @enum {string}
36351
+ */
36352
+ listingScope?: "exact" | "withChildren";
35169
36353
  /** @description listing ownership period ids comma separated or "unmapped" */
35170
36354
  listingOwnershipPeriodIds?: string;
35171
36355
  /** @description account ids comma separated accounts or "unmapped" */
@@ -35222,6 +36406,119 @@ export interface operations {
35222
36406
  setListingInactive: boolean;
35223
36407
  };
35224
36408
  }[];
36409
+ children?: {
36410
+ id: string;
36411
+ listingId: string | null;
36412
+ parentListingId?: string | null;
36413
+ ownershipPeriodId: string | null;
36414
+ name: string;
36415
+ total: number;
36416
+ sections: {
36417
+ /** @enum {string} */
36418
+ name: "Manager Payable" | "Owner Payable" | "Other Net Liabilities";
36419
+ total: number;
36420
+ /** @constant */
36421
+ type: "accounts";
36422
+ accounts: {
36423
+ id: string;
36424
+ name: string;
36425
+ categoryId: string;
36426
+ total: number;
36427
+ drilldown?: {
36428
+ /** @constant */
36429
+ type: "journalEntryReport";
36430
+ filter: {
36431
+ /** @description comma separated journal entry ids */
36432
+ ids?: string;
36433
+ txnCode?: string;
36434
+ published?: boolean;
36435
+ /** @enum {string} */
36436
+ status?: "active" | "inactive";
36437
+ /** @enum {string} */
36438
+ ledger?: "historical" | "trust" | "operating";
36439
+ startAt?: string;
36440
+ endAt?: string;
36441
+ search?: string;
36442
+ date?: string;
36443
+ amount?: string;
36444
+ /**
36445
+ * @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`).
36446
+ * @default true
36447
+ */
36448
+ isDateRangeEndInclusive: boolean;
36449
+ /** @description comma separated reservation ids or "unmapped" */
36450
+ reservationIds?: string;
36451
+ /** @description comma separated transaction ids */
36452
+ transactionIds?: string;
36453
+ /** @description comma separated owner statement ids */
36454
+ ownerStatementIds?: string;
36455
+ /** @description Currency in ISO 4217 format, will be converted to lowercase */
36456
+ currency?: string;
36457
+ excludeApAppendix?: boolean;
36458
+ /** @description listing ids comma separated or "unmapped" */
36459
+ listingIds?: string;
36460
+ /**
36461
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
36462
+ * @enum {string}
36463
+ */
36464
+ listingScope?: "exact" | "withChildren";
36465
+ /** @description listing ownership period ids comma separated or "unmapped" */
36466
+ listingOwnershipPeriodIds?: string;
36467
+ /** @description account ids comma separated accounts or "unmapped" */
36468
+ accountIds?: string;
36469
+ /** @description comma separated account reservation line type ids */
36470
+ accountReservationLineTypeIds?: string;
36471
+ /** @description comma separated categories */
36472
+ categoryIds?: string;
36473
+ /** @description comma separated categories to exclude */
36474
+ excludeCategoryIds?: string;
36475
+ /** @description comma separated contacts */
36476
+ contactIds?: string;
36477
+ classifications?: string;
36478
+ /** @enum {string} */
36479
+ accountType?: "ledger" | "bank" | "recurringFee" | "nonPosting";
36480
+ /** @description comma separated journal entry types */
36481
+ types?: string;
36482
+ /** @description comma separated journal entry types to exclude */
36483
+ excludeTypes?: string;
36484
+ /** @description comma separated entity types "reservation" | "deposit" | "expense" | "recurringFee" | "transfer" | "payout" */
36485
+ entityTypes?: string;
36486
+ /** @description comma separated booking channel refs */
36487
+ bookingChannels?: string;
36488
+ /** @description comma separated trigger types "deferredRevenue" | "intercompany" | "rebalance" | "recurringFee" | "revenueRecognition" */
36489
+ triggerTypes?: string;
36490
+ /** @description comma separated journal entry trigger types to exclude */
36491
+ excludeTriggerTypes?: string;
36492
+ /** @description comma separated parties */
36493
+ parties?: string;
36494
+ /** @enum {string} */
36495
+ party?: "owners" | "manager";
36496
+ /** @description comma separated account assignment types "accountsPayable" | "accountsReceivable" | "cancellationRevenue" | "deferredRevenue" | "deposit_channelFee" | "deposit_coHostPayout" | "deposit_merchantFee" | "deposit_reserve" | "deposit_vat" | "dueToFromTrust" | "expense_markup" | "expense_reimbursement" | "expense_salesTax" | "openingBalance" | "payout_bankAccount" | "payout_distribution" */
36497
+ accountAssignmentTypes?: string;
36498
+ /** @description comma separated manager statement section ids */
36499
+ managerStatementSectionIds?: string;
36500
+ recurringFee?: boolean;
36501
+ /** @enum {string} */
36502
+ openingBalanceType?: "taxPayable" | "advancedDeposit" | "listingOpeningBalance" | "openingTrialBalance";
36503
+ };
36504
+ /** @enum {string} */
36505
+ measure?: "periodActivity" | "balance";
36506
+ label?: string;
36507
+ } | null;
36508
+ }[];
36509
+ }[];
36510
+ issues?: {
36511
+ /** @constant */
36512
+ code: "endedOwnershipNonZeroBalance";
36513
+ /** @constant */
36514
+ severity: "warning";
36515
+ message: string;
36516
+ context: {
36517
+ endAt: string | null;
36518
+ setListingInactive: boolean;
36519
+ };
36520
+ }[];
36521
+ }[];
35225
36522
  }[];
35226
36523
  })[];
35227
36524
  };
@@ -35529,6 +36826,8 @@ export interface operations {
35529
36826
  status?: "booked" | "canceled" | "inactive";
35530
36827
  generalLedgerStatus?: "active" | "inactive";
35531
36828
  listingId?: string;
36829
+ /** @description Controls listingId filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids. */
36830
+ listingScope?: "exact" | "withChildren";
35532
36831
  /** @description Date filter string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD`. Single values expand to the full year, month, or day. */
35533
36832
  date?: string;
35534
36833
  /** @description Choose which reservation date field the `date` filter applies to. */
@@ -36559,6 +37858,8 @@ export interface operations {
36559
37858
  status?: "booked" | "canceled" | "inactive";
36560
37859
  generalLedgerStatus?: "active" | "inactive";
36561
37860
  listingId?: string;
37861
+ /** @description Controls listingId filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids. */
37862
+ listingScope?: "exact" | "withChildren";
36562
37863
  /** @description Date filter string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD`. Single values expand to the full year, month, or day. */
36563
37864
  date?: string;
36564
37865
  /** @description Choose which reservation date field the `date` filter applies to. */
@@ -40407,6 +41708,11 @@ export interface operations {
40407
41708
  excludeApAppendix?: boolean;
40408
41709
  /** @description listing ids comma separated or "unmapped" */
40409
41710
  listingIds?: string;
41711
+ /**
41712
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
41713
+ * @enum {string}
41714
+ */
41715
+ listingScope?: "exact" | "withChildren";
40410
41716
  /** @description listing ownership period ids comma separated or "unmapped" */
40411
41717
  listingOwnershipPeriodIds?: string;
40412
41718
  /** @description account ids comma separated accounts or "unmapped" */
@@ -40491,6 +41797,7 @@ export interface operations {
40491
41797
  id: string;
40492
41798
  name: string;
40493
41799
  uniqueRef: string | null;
41800
+ childCount: number;
40494
41801
  };
40495
41802
  /** @enum {string} */
40496
41803
  status: "draft" | "inReview" | "published";
@@ -40504,6 +41811,17 @@ export interface operations {
40504
41811
  id: string;
40505
41812
  ownerId: string | null;
40506
41813
  contactId: string | null;
41814
+ contact?: {
41815
+ /** Format: uuid */
41816
+ id: string;
41817
+ name?: string | null;
41818
+ firstName?: string | null;
41819
+ uniqueRef?: string | null;
41820
+ shortRef?: string | null;
41821
+ email?: string | null;
41822
+ /** @enum {string} */
41823
+ type: "owner" | "vendor";
41824
+ } | null;
40507
41825
  split: number;
40508
41826
  }[];
40509
41827
  } | null;
@@ -40892,6 +42210,11 @@ export interface operations {
40892
42210
  excludeApAppendix?: boolean;
40893
42211
  /** @description listing ids comma separated or "unmapped" */
40894
42212
  listingIds?: string;
42213
+ /**
42214
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
42215
+ * @enum {string}
42216
+ */
42217
+ listingScope?: "exact" | "withChildren";
40895
42218
  /** @description listing ownership period ids comma separated or "unmapped" */
40896
42219
  listingOwnershipPeriodIds?: string;
40897
42220
  /** @description account ids comma separated accounts or "unmapped" */
@@ -40976,6 +42299,7 @@ export interface operations {
40976
42299
  id: string;
40977
42300
  name: string;
40978
42301
  uniqueRef: string | null;
42302
+ childCount: number;
40979
42303
  };
40980
42304
  /** @enum {string} */
40981
42305
  status: "draft" | "inReview" | "published";
@@ -40989,6 +42313,17 @@ export interface operations {
40989
42313
  id: string;
40990
42314
  ownerId: string | null;
40991
42315
  contactId: string | null;
42316
+ contact?: {
42317
+ /** Format: uuid */
42318
+ id: string;
42319
+ name?: string | null;
42320
+ firstName?: string | null;
42321
+ uniqueRef?: string | null;
42322
+ shortRef?: string | null;
42323
+ email?: string | null;
42324
+ /** @enum {string} */
42325
+ type: "owner" | "vendor";
42326
+ } | null;
40992
42327
  split: number;
40993
42328
  }[];
40994
42329
  } | null;
@@ -41141,6 +42476,15 @@ export interface operations {
41141
42476
  context: Record<string, never>;
41142
42477
  message: string;
41143
42478
  })[];
42479
+ descriptionEdit?: {
42480
+ /** @enum {string} */
42481
+ status: "editable" | "disabled";
42482
+ transactionId?: string | null;
42483
+ /** Format: uuid */
42484
+ lineId?: string;
42485
+ /** @enum {string} */
42486
+ reason?: "notEditable" | "missingLine" | "multipleLines" | "locked" | "missingTarget";
42487
+ };
41144
42488
  columns: {
41145
42489
  name: string;
41146
42490
  text: string;
@@ -41180,6 +42524,11 @@ export interface operations {
41180
42524
  excludeApAppendix?: boolean;
41181
42525
  /** @description listing ids comma separated or "unmapped" */
41182
42526
  listingIds?: string;
42527
+ /**
42528
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
42529
+ * @enum {string}
42530
+ */
42531
+ listingScope?: "exact" | "withChildren";
41183
42532
  /** @description listing ownership period ids comma separated or "unmapped" */
41184
42533
  listingOwnershipPeriodIds?: string;
41185
42534
  /** @description account ids comma separated accounts or "unmapped" */
@@ -41260,6 +42609,11 @@ export interface operations {
41260
42609
  excludeApAppendix?: boolean;
41261
42610
  /** @description listing ids comma separated or "unmapped" */
41262
42611
  listingIds?: string;
42612
+ /**
42613
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
42614
+ * @enum {string}
42615
+ */
42616
+ listingScope?: "exact" | "withChildren";
41263
42617
  /** @description listing ownership period ids comma separated or "unmapped" */
41264
42618
  listingOwnershipPeriodIds?: string;
41265
42619
  /** @description account ids comma separated accounts or "unmapped" */
@@ -41368,6 +42722,15 @@ export interface operations {
41368
42722
  context: Record<string, never>;
41369
42723
  message: string;
41370
42724
  })[];
42725
+ descriptionEdit?: {
42726
+ /** @enum {string} */
42727
+ status: "editable" | "disabled";
42728
+ transactionId?: string | null;
42729
+ /** Format: uuid */
42730
+ lineId?: string;
42731
+ /** @enum {string} */
42732
+ reason?: "notEditable" | "missingLine" | "multipleLines" | "locked" | "missingTarget";
42733
+ };
41371
42734
  columns: {
41372
42735
  name: string;
41373
42736
  text: string;
@@ -41407,6 +42770,11 @@ export interface operations {
41407
42770
  excludeApAppendix?: boolean;
41408
42771
  /** @description listing ids comma separated or "unmapped" */
41409
42772
  listingIds?: string;
42773
+ /**
42774
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
42775
+ * @enum {string}
42776
+ */
42777
+ listingScope?: "exact" | "withChildren";
41410
42778
  /** @description listing ownership period ids comma separated or "unmapped" */
41411
42779
  listingOwnershipPeriodIds?: string;
41412
42780
  /** @description account ids comma separated accounts or "unmapped" */
@@ -41487,6 +42855,11 @@ export interface operations {
41487
42855
  excludeApAppendix?: boolean;
41488
42856
  /** @description listing ids comma separated or "unmapped" */
41489
42857
  listingIds?: string;
42858
+ /**
42859
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
42860
+ * @enum {string}
42861
+ */
42862
+ listingScope?: "exact" | "withChildren";
41490
42863
  /** @description listing ownership period ids comma separated or "unmapped" */
41491
42864
  listingOwnershipPeriodIds?: string;
41492
42865
  /** @description account ids comma separated accounts or "unmapped" */
@@ -41611,6 +42984,15 @@ export interface operations {
41611
42984
  context: Record<string, never>;
41612
42985
  message: string;
41613
42986
  })[];
42987
+ descriptionEdit?: {
42988
+ /** @enum {string} */
42989
+ status: "editable" | "disabled";
42990
+ transactionId?: string | null;
42991
+ /** Format: uuid */
42992
+ lineId?: string;
42993
+ /** @enum {string} */
42994
+ reason?: "notEditable" | "missingLine" | "multipleLines" | "locked" | "missingTarget";
42995
+ };
41614
42996
  columns: {
41615
42997
  name: string;
41616
42998
  text: string;
@@ -41650,6 +43032,11 @@ export interface operations {
41650
43032
  excludeApAppendix?: boolean;
41651
43033
  /** @description listing ids comma separated or "unmapped" */
41652
43034
  listingIds?: string;
43035
+ /**
43036
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
43037
+ * @enum {string}
43038
+ */
43039
+ listingScope?: "exact" | "withChildren";
41653
43040
  /** @description listing ownership period ids comma separated or "unmapped" */
41654
43041
  listingOwnershipPeriodIds?: string;
41655
43042
  /** @description account ids comma separated accounts or "unmapped" */
@@ -41730,6 +43117,11 @@ export interface operations {
41730
43117
  excludeApAppendix?: boolean;
41731
43118
  /** @description listing ids comma separated or "unmapped" */
41732
43119
  listingIds?: string;
43120
+ /**
43121
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
43122
+ * @enum {string}
43123
+ */
43124
+ listingScope?: "exact" | "withChildren";
41733
43125
  /** @description listing ownership period ids comma separated or "unmapped" */
41734
43126
  listingOwnershipPeriodIds?: string;
41735
43127
  /** @description account ids comma separated accounts or "unmapped" */
@@ -42138,6 +43530,11 @@ export interface operations {
42138
43530
  excludeApAppendix?: boolean;
42139
43531
  /** @description listing ids comma separated or "unmapped" */
42140
43532
  listingIds?: string;
43533
+ /**
43534
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
43535
+ * @enum {string}
43536
+ */
43537
+ listingScope?: "exact" | "withChildren";
42141
43538
  /** @description listing ownership period ids comma separated or "unmapped" */
42142
43539
  listingOwnershipPeriodIds?: string;
42143
43540
  /** @description account ids comma separated accounts or "unmapped" */
@@ -42222,6 +43619,7 @@ export interface operations {
42222
43619
  id: string;
42223
43620
  name: string;
42224
43621
  uniqueRef: string | null;
43622
+ childCount: number;
42225
43623
  };
42226
43624
  /** @enum {string} */
42227
43625
  status: "draft" | "inReview" | "published";
@@ -42235,6 +43633,17 @@ export interface operations {
42235
43633
  id: string;
42236
43634
  ownerId: string | null;
42237
43635
  contactId: string | null;
43636
+ contact?: {
43637
+ /** Format: uuid */
43638
+ id: string;
43639
+ name?: string | null;
43640
+ firstName?: string | null;
43641
+ uniqueRef?: string | null;
43642
+ shortRef?: string | null;
43643
+ email?: string | null;
43644
+ /** @enum {string} */
43645
+ type: "owner" | "vendor";
43646
+ } | null;
42238
43647
  split: number;
42239
43648
  }[];
42240
43649
  } | null;
@@ -42387,6 +43796,15 @@ export interface operations {
42387
43796
  context: Record<string, never>;
42388
43797
  message: string;
42389
43798
  })[];
43799
+ descriptionEdit?: {
43800
+ /** @enum {string} */
43801
+ status: "editable" | "disabled";
43802
+ transactionId?: string | null;
43803
+ /** Format: uuid */
43804
+ lineId?: string;
43805
+ /** @enum {string} */
43806
+ reason?: "notEditable" | "missingLine" | "multipleLines" | "locked" | "missingTarget";
43807
+ };
42390
43808
  columns: {
42391
43809
  name: string;
42392
43810
  text: string;
@@ -42426,6 +43844,11 @@ export interface operations {
42426
43844
  excludeApAppendix?: boolean;
42427
43845
  /** @description listing ids comma separated or "unmapped" */
42428
43846
  listingIds?: string;
43847
+ /**
43848
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
43849
+ * @enum {string}
43850
+ */
43851
+ listingScope?: "exact" | "withChildren";
42429
43852
  /** @description listing ownership period ids comma separated or "unmapped" */
42430
43853
  listingOwnershipPeriodIds?: string;
42431
43854
  /** @description account ids comma separated accounts or "unmapped" */
@@ -42506,6 +43929,11 @@ export interface operations {
42506
43929
  excludeApAppendix?: boolean;
42507
43930
  /** @description listing ids comma separated or "unmapped" */
42508
43931
  listingIds?: string;
43932
+ /**
43933
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
43934
+ * @enum {string}
43935
+ */
43936
+ listingScope?: "exact" | "withChildren";
42509
43937
  /** @description listing ownership period ids comma separated or "unmapped" */
42510
43938
  listingOwnershipPeriodIds?: string;
42511
43939
  /** @description account ids comma separated accounts or "unmapped" */
@@ -42614,6 +44042,15 @@ export interface operations {
42614
44042
  context: Record<string, never>;
42615
44043
  message: string;
42616
44044
  })[];
44045
+ descriptionEdit?: {
44046
+ /** @enum {string} */
44047
+ status: "editable" | "disabled";
44048
+ transactionId?: string | null;
44049
+ /** Format: uuid */
44050
+ lineId?: string;
44051
+ /** @enum {string} */
44052
+ reason?: "notEditable" | "missingLine" | "multipleLines" | "locked" | "missingTarget";
44053
+ };
42617
44054
  columns: {
42618
44055
  name: string;
42619
44056
  text: string;
@@ -42653,6 +44090,11 @@ export interface operations {
42653
44090
  excludeApAppendix?: boolean;
42654
44091
  /** @description listing ids comma separated or "unmapped" */
42655
44092
  listingIds?: string;
44093
+ /**
44094
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
44095
+ * @enum {string}
44096
+ */
44097
+ listingScope?: "exact" | "withChildren";
42656
44098
  /** @description listing ownership period ids comma separated or "unmapped" */
42657
44099
  listingOwnershipPeriodIds?: string;
42658
44100
  /** @description account ids comma separated accounts or "unmapped" */
@@ -42733,6 +44175,11 @@ export interface operations {
42733
44175
  excludeApAppendix?: boolean;
42734
44176
  /** @description listing ids comma separated or "unmapped" */
42735
44177
  listingIds?: string;
44178
+ /**
44179
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
44180
+ * @enum {string}
44181
+ */
44182
+ listingScope?: "exact" | "withChildren";
42736
44183
  /** @description listing ownership period ids comma separated or "unmapped" */
42737
44184
  listingOwnershipPeriodIds?: string;
42738
44185
  /** @description account ids comma separated accounts or "unmapped" */
@@ -42857,6 +44304,15 @@ export interface operations {
42857
44304
  context: Record<string, never>;
42858
44305
  message: string;
42859
44306
  })[];
44307
+ descriptionEdit?: {
44308
+ /** @enum {string} */
44309
+ status: "editable" | "disabled";
44310
+ transactionId?: string | null;
44311
+ /** Format: uuid */
44312
+ lineId?: string;
44313
+ /** @enum {string} */
44314
+ reason?: "notEditable" | "missingLine" | "multipleLines" | "locked" | "missingTarget";
44315
+ };
42860
44316
  columns: {
42861
44317
  name: string;
42862
44318
  text: string;
@@ -42896,6 +44352,11 @@ export interface operations {
42896
44352
  excludeApAppendix?: boolean;
42897
44353
  /** @description listing ids comma separated or "unmapped" */
42898
44354
  listingIds?: string;
44355
+ /**
44356
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
44357
+ * @enum {string}
44358
+ */
44359
+ listingScope?: "exact" | "withChildren";
42899
44360
  /** @description listing ownership period ids comma separated or "unmapped" */
42900
44361
  listingOwnershipPeriodIds?: string;
42901
44362
  /** @description account ids comma separated accounts or "unmapped" */
@@ -42976,6 +44437,11 @@ export interface operations {
42976
44437
  excludeApAppendix?: boolean;
42977
44438
  /** @description listing ids comma separated or "unmapped" */
42978
44439
  listingIds?: string;
44440
+ /**
44441
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
44442
+ * @enum {string}
44443
+ */
44444
+ listingScope?: "exact" | "withChildren";
42979
44445
  /** @description listing ownership period ids comma separated or "unmapped" */
42980
44446
  listingOwnershipPeriodIds?: string;
42981
44447
  /** @description account ids comma separated accounts or "unmapped" */
@@ -44181,6 +45647,262 @@ export interface operations {
44181
45647
  };
44182
45648
  };
44183
45649
  };
45650
+ getStatementsLayoutsListingMappings: {
45651
+ parameters: {
45652
+ query?: {
45653
+ layoutId?: string;
45654
+ search?: string;
45655
+ limit?: number;
45656
+ page?: number;
45657
+ };
45658
+ header?: never;
45659
+ path?: never;
45660
+ cookie?: never;
45661
+ };
45662
+ requestBody?: never;
45663
+ responses: {
45664
+ /** @description Successful response */
45665
+ 200: {
45666
+ headers: {
45667
+ [name: string]: unknown;
45668
+ };
45669
+ content: {
45670
+ "application/json": {
45671
+ data: {
45672
+ listing: {
45673
+ /** Format: uuid */
45674
+ id: string;
45675
+ name: string;
45676
+ children: {
45677
+ /** Format: uuid */
45678
+ id: string;
45679
+ name: string;
45680
+ }[];
45681
+ };
45682
+ layout: {
45683
+ /** Format: uuid */
45684
+ id: string;
45685
+ name: string;
45686
+ } | null;
45687
+ }[];
45688
+ pagination: {
45689
+ /** @default 100 */
45690
+ limit: number;
45691
+ /** @default 1 */
45692
+ page: number;
45693
+ total: number;
45694
+ totalPage: number;
45695
+ nextPage?: number;
45696
+ };
45697
+ };
45698
+ };
45699
+ };
45700
+ /** @description Bad request */
45701
+ 400: {
45702
+ headers: {
45703
+ [name: string]: unknown;
45704
+ };
45705
+ content: {
45706
+ "application/json": {
45707
+ code: string;
45708
+ message: string;
45709
+ issues?: {
45710
+ message: string;
45711
+ }[];
45712
+ context?: unknown;
45713
+ };
45714
+ };
45715
+ };
45716
+ /** @description Unauthorized */
45717
+ 401: {
45718
+ headers: {
45719
+ [name: string]: unknown;
45720
+ };
45721
+ content: {
45722
+ "application/json": {
45723
+ code: string;
45724
+ message: string;
45725
+ issues?: {
45726
+ message: string;
45727
+ }[];
45728
+ context?: unknown;
45729
+ };
45730
+ };
45731
+ };
45732
+ /** @description Forbidden */
45733
+ 403: {
45734
+ headers: {
45735
+ [name: string]: unknown;
45736
+ };
45737
+ content: {
45738
+ "application/json": {
45739
+ code: string;
45740
+ message: string;
45741
+ issues?: {
45742
+ message: string;
45743
+ }[];
45744
+ context?: unknown;
45745
+ };
45746
+ };
45747
+ };
45748
+ /** @description Not found */
45749
+ 404: {
45750
+ headers: {
45751
+ [name: string]: unknown;
45752
+ };
45753
+ content: {
45754
+ "application/json": {
45755
+ code: string;
45756
+ message: string;
45757
+ issues?: {
45758
+ message: string;
45759
+ }[];
45760
+ context?: unknown;
45761
+ };
45762
+ };
45763
+ };
45764
+ /** @description Internal server error */
45765
+ 500: {
45766
+ headers: {
45767
+ [name: string]: unknown;
45768
+ };
45769
+ content: {
45770
+ "application/json": {
45771
+ code: string;
45772
+ message: string;
45773
+ issues?: {
45774
+ message: string;
45775
+ }[];
45776
+ context?: unknown;
45777
+ };
45778
+ };
45779
+ };
45780
+ };
45781
+ };
45782
+ putStatementsLayoutsListingMappingsByListingId: {
45783
+ parameters: {
45784
+ query?: never;
45785
+ header?: never;
45786
+ path: {
45787
+ listingId: string;
45788
+ };
45789
+ cookie?: never;
45790
+ };
45791
+ requestBody?: {
45792
+ content: {
45793
+ "application/json": {
45794
+ layoutId: string | null;
45795
+ };
45796
+ };
45797
+ };
45798
+ responses: {
45799
+ /** @description Successful response */
45800
+ 200: {
45801
+ headers: {
45802
+ [name: string]: unknown;
45803
+ };
45804
+ content: {
45805
+ "application/json": {
45806
+ listing: {
45807
+ /** Format: uuid */
45808
+ id: string;
45809
+ name: string;
45810
+ children: {
45811
+ /** Format: uuid */
45812
+ id: string;
45813
+ name: string;
45814
+ }[];
45815
+ };
45816
+ layout: {
45817
+ /** Format: uuid */
45818
+ id: string;
45819
+ name: string;
45820
+ } | null;
45821
+ };
45822
+ };
45823
+ };
45824
+ /** @description Bad request */
45825
+ 400: {
45826
+ headers: {
45827
+ [name: string]: unknown;
45828
+ };
45829
+ content: {
45830
+ "application/json": {
45831
+ code: string;
45832
+ message: string;
45833
+ issues?: {
45834
+ message: string;
45835
+ }[];
45836
+ context?: unknown;
45837
+ };
45838
+ };
45839
+ };
45840
+ /** @description Unauthorized */
45841
+ 401: {
45842
+ headers: {
45843
+ [name: string]: unknown;
45844
+ };
45845
+ content: {
45846
+ "application/json": {
45847
+ code: string;
45848
+ message: string;
45849
+ issues?: {
45850
+ message: string;
45851
+ }[];
45852
+ context?: unknown;
45853
+ };
45854
+ };
45855
+ };
45856
+ /** @description Forbidden */
45857
+ 403: {
45858
+ headers: {
45859
+ [name: string]: unknown;
45860
+ };
45861
+ content: {
45862
+ "application/json": {
45863
+ code: string;
45864
+ message: string;
45865
+ issues?: {
45866
+ message: string;
45867
+ }[];
45868
+ context?: unknown;
45869
+ };
45870
+ };
45871
+ };
45872
+ /** @description Not found */
45873
+ 404: {
45874
+ headers: {
45875
+ [name: string]: unknown;
45876
+ };
45877
+ content: {
45878
+ "application/json": {
45879
+ code: string;
45880
+ message: string;
45881
+ issues?: {
45882
+ message: string;
45883
+ }[];
45884
+ context?: unknown;
45885
+ };
45886
+ };
45887
+ };
45888
+ /** @description Internal server error */
45889
+ 500: {
45890
+ headers: {
45891
+ [name: string]: unknown;
45892
+ };
45893
+ content: {
45894
+ "application/json": {
45895
+ code: string;
45896
+ message: string;
45897
+ issues?: {
45898
+ message: string;
45899
+ }[];
45900
+ context?: unknown;
45901
+ };
45902
+ };
45903
+ };
45904
+ };
45905
+ };
44184
45906
  getStatementsLayoutsById: {
44185
45907
  parameters: {
44186
45908
  query?: never;
@@ -44813,6 +46535,119 @@ export interface operations {
44813
46535
  };
44814
46536
  };
44815
46537
  };
46538
+ patchStatementsLineDescription: {
46539
+ parameters: {
46540
+ query?: never;
46541
+ header?: never;
46542
+ path?: never;
46543
+ cookie?: never;
46544
+ };
46545
+ requestBody?: {
46546
+ content: {
46547
+ "application/json": {
46548
+ transactionId: string | null;
46549
+ /** Format: uuid */
46550
+ lineId: string;
46551
+ description: string;
46552
+ };
46553
+ };
46554
+ };
46555
+ responses: {
46556
+ /** @description Successful response */
46557
+ 200: {
46558
+ headers: {
46559
+ [name: string]: unknown;
46560
+ };
46561
+ content: {
46562
+ "application/json": {
46563
+ /** Format: uuid */
46564
+ id: string;
46565
+ description: string;
46566
+ };
46567
+ };
46568
+ };
46569
+ /** @description Bad request */
46570
+ 400: {
46571
+ headers: {
46572
+ [name: string]: unknown;
46573
+ };
46574
+ content: {
46575
+ "application/json": {
46576
+ code: string;
46577
+ message: string;
46578
+ issues?: {
46579
+ message: string;
46580
+ }[];
46581
+ context?: unknown;
46582
+ };
46583
+ };
46584
+ };
46585
+ /** @description Unauthorized */
46586
+ 401: {
46587
+ headers: {
46588
+ [name: string]: unknown;
46589
+ };
46590
+ content: {
46591
+ "application/json": {
46592
+ code: string;
46593
+ message: string;
46594
+ issues?: {
46595
+ message: string;
46596
+ }[];
46597
+ context?: unknown;
46598
+ };
46599
+ };
46600
+ };
46601
+ /** @description Forbidden */
46602
+ 403: {
46603
+ headers: {
46604
+ [name: string]: unknown;
46605
+ };
46606
+ content: {
46607
+ "application/json": {
46608
+ code: string;
46609
+ message: string;
46610
+ issues?: {
46611
+ message: string;
46612
+ }[];
46613
+ context?: unknown;
46614
+ };
46615
+ };
46616
+ };
46617
+ /** @description Not found */
46618
+ 404: {
46619
+ headers: {
46620
+ [name: string]: unknown;
46621
+ };
46622
+ content: {
46623
+ "application/json": {
46624
+ code: string;
46625
+ message: string;
46626
+ issues?: {
46627
+ message: string;
46628
+ }[];
46629
+ context?: unknown;
46630
+ };
46631
+ };
46632
+ };
46633
+ /** @description Internal server error */
46634
+ 500: {
46635
+ headers: {
46636
+ [name: string]: unknown;
46637
+ };
46638
+ content: {
46639
+ "application/json": {
46640
+ code: string;
46641
+ message: string;
46642
+ issues?: {
46643
+ message: string;
46644
+ }[];
46645
+ context?: unknown;
46646
+ };
46647
+ };
46648
+ };
46649
+ };
46650
+ };
44816
46651
  postStatementsManagerPay: {
44817
46652
  parameters: {
44818
46653
  query?: never;
@@ -45789,6 +47624,11 @@ export interface operations {
45789
47624
  excludeApAppendix?: boolean;
45790
47625
  /** @description listing ids comma separated or "unmapped" */
45791
47626
  listingIds?: string;
47627
+ /**
47628
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
47629
+ * @enum {string}
47630
+ */
47631
+ listingScope?: "exact" | "withChildren";
45792
47632
  /** @description listing ownership period ids comma separated or "unmapped" */
45793
47633
  listingOwnershipPeriodIds?: string;
45794
47634
  /** @description account ids comma separated accounts or "unmapped" */
@@ -45873,6 +47713,7 @@ export interface operations {
45873
47713
  id: string;
45874
47714
  name: string;
45875
47715
  uniqueRef: string | null;
47716
+ childCount: number;
45876
47717
  };
45877
47718
  /** @enum {string} */
45878
47719
  status: "draft" | "inReview" | "published";
@@ -45886,6 +47727,17 @@ export interface operations {
45886
47727
  id: string;
45887
47728
  ownerId: string | null;
45888
47729
  contactId: string | null;
47730
+ contact?: {
47731
+ /** Format: uuid */
47732
+ id: string;
47733
+ name?: string | null;
47734
+ firstName?: string | null;
47735
+ uniqueRef?: string | null;
47736
+ shortRef?: string | null;
47737
+ email?: string | null;
47738
+ /** @enum {string} */
47739
+ type: "owner" | "vendor";
47740
+ } | null;
45889
47741
  split: number;
45890
47742
  }[];
45891
47743
  } | null;
@@ -46038,6 +47890,15 @@ export interface operations {
46038
47890
  context: Record<string, never>;
46039
47891
  message: string;
46040
47892
  })[];
47893
+ descriptionEdit?: {
47894
+ /** @enum {string} */
47895
+ status: "editable" | "disabled";
47896
+ transactionId?: string | null;
47897
+ /** Format: uuid */
47898
+ lineId?: string;
47899
+ /** @enum {string} */
47900
+ reason?: "notEditable" | "missingLine" | "multipleLines" | "locked" | "missingTarget";
47901
+ };
46041
47902
  columns: {
46042
47903
  name: string;
46043
47904
  text: string;
@@ -46077,6 +47938,11 @@ export interface operations {
46077
47938
  excludeApAppendix?: boolean;
46078
47939
  /** @description listing ids comma separated or "unmapped" */
46079
47940
  listingIds?: string;
47941
+ /**
47942
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
47943
+ * @enum {string}
47944
+ */
47945
+ listingScope?: "exact" | "withChildren";
46080
47946
  /** @description listing ownership period ids comma separated or "unmapped" */
46081
47947
  listingOwnershipPeriodIds?: string;
46082
47948
  /** @description account ids comma separated accounts or "unmapped" */
@@ -46157,6 +48023,11 @@ export interface operations {
46157
48023
  excludeApAppendix?: boolean;
46158
48024
  /** @description listing ids comma separated or "unmapped" */
46159
48025
  listingIds?: string;
48026
+ /**
48027
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
48028
+ * @enum {string}
48029
+ */
48030
+ listingScope?: "exact" | "withChildren";
46160
48031
  /** @description listing ownership period ids comma separated or "unmapped" */
46161
48032
  listingOwnershipPeriodIds?: string;
46162
48033
  /** @description account ids comma separated accounts or "unmapped" */
@@ -46265,6 +48136,15 @@ export interface operations {
46265
48136
  context: Record<string, never>;
46266
48137
  message: string;
46267
48138
  })[];
48139
+ descriptionEdit?: {
48140
+ /** @enum {string} */
48141
+ status: "editable" | "disabled";
48142
+ transactionId?: string | null;
48143
+ /** Format: uuid */
48144
+ lineId?: string;
48145
+ /** @enum {string} */
48146
+ reason?: "notEditable" | "missingLine" | "multipleLines" | "locked" | "missingTarget";
48147
+ };
46268
48148
  columns: {
46269
48149
  name: string;
46270
48150
  text: string;
@@ -46304,6 +48184,11 @@ export interface operations {
46304
48184
  excludeApAppendix?: boolean;
46305
48185
  /** @description listing ids comma separated or "unmapped" */
46306
48186
  listingIds?: string;
48187
+ /**
48188
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
48189
+ * @enum {string}
48190
+ */
48191
+ listingScope?: "exact" | "withChildren";
46307
48192
  /** @description listing ownership period ids comma separated or "unmapped" */
46308
48193
  listingOwnershipPeriodIds?: string;
46309
48194
  /** @description account ids comma separated accounts or "unmapped" */
@@ -46384,6 +48269,11 @@ export interface operations {
46384
48269
  excludeApAppendix?: boolean;
46385
48270
  /** @description listing ids comma separated or "unmapped" */
46386
48271
  listingIds?: string;
48272
+ /**
48273
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
48274
+ * @enum {string}
48275
+ */
48276
+ listingScope?: "exact" | "withChildren";
46387
48277
  /** @description listing ownership period ids comma separated or "unmapped" */
46388
48278
  listingOwnershipPeriodIds?: string;
46389
48279
  /** @description account ids comma separated accounts or "unmapped" */
@@ -46508,6 +48398,15 @@ export interface operations {
46508
48398
  context: Record<string, never>;
46509
48399
  message: string;
46510
48400
  })[];
48401
+ descriptionEdit?: {
48402
+ /** @enum {string} */
48403
+ status: "editable" | "disabled";
48404
+ transactionId?: string | null;
48405
+ /** Format: uuid */
48406
+ lineId?: string;
48407
+ /** @enum {string} */
48408
+ reason?: "notEditable" | "missingLine" | "multipleLines" | "locked" | "missingTarget";
48409
+ };
46511
48410
  columns: {
46512
48411
  name: string;
46513
48412
  text: string;
@@ -46547,6 +48446,11 @@ export interface operations {
46547
48446
  excludeApAppendix?: boolean;
46548
48447
  /** @description listing ids comma separated or "unmapped" */
46549
48448
  listingIds?: string;
48449
+ /**
48450
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
48451
+ * @enum {string}
48452
+ */
48453
+ listingScope?: "exact" | "withChildren";
46550
48454
  /** @description listing ownership period ids comma separated or "unmapped" */
46551
48455
  listingOwnershipPeriodIds?: string;
46552
48456
  /** @description account ids comma separated accounts or "unmapped" */
@@ -46627,6 +48531,11 @@ export interface operations {
46627
48531
  excludeApAppendix?: boolean;
46628
48532
  /** @description listing ids comma separated or "unmapped" */
46629
48533
  listingIds?: string;
48534
+ /**
48535
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
48536
+ * @enum {string}
48537
+ */
48538
+ listingScope?: "exact" | "withChildren";
46630
48539
  /** @description listing ownership period ids comma separated or "unmapped" */
46631
48540
  listingOwnershipPeriodIds?: string;
46632
48541
  /** @description account ids comma separated accounts or "unmapped" */
@@ -47040,6 +48949,11 @@ export interface operations {
47040
48949
  excludeApAppendix?: boolean;
47041
48950
  /** @description listing ids comma separated or "unmapped" */
47042
48951
  listingIds?: string;
48952
+ /**
48953
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
48954
+ * @enum {string}
48955
+ */
48956
+ listingScope?: "exact" | "withChildren";
47043
48957
  /** @description listing ownership period ids comma separated or "unmapped" */
47044
48958
  listingOwnershipPeriodIds?: string;
47045
48959
  /** @description account ids comma separated accounts or "unmapped" */
@@ -47124,6 +49038,7 @@ export interface operations {
47124
49038
  id: string;
47125
49039
  name: string;
47126
49040
  uniqueRef: string | null;
49041
+ childCount: number;
47127
49042
  };
47128
49043
  /** @enum {string} */
47129
49044
  status: "draft" | "inReview" | "published";
@@ -47137,6 +49052,17 @@ export interface operations {
47137
49052
  id: string;
47138
49053
  ownerId: string | null;
47139
49054
  contactId: string | null;
49055
+ contact?: {
49056
+ /** Format: uuid */
49057
+ id: string;
49058
+ name?: string | null;
49059
+ firstName?: string | null;
49060
+ uniqueRef?: string | null;
49061
+ shortRef?: string | null;
49062
+ email?: string | null;
49063
+ /** @enum {string} */
49064
+ type: "owner" | "vendor";
49065
+ } | null;
47140
49066
  split: number;
47141
49067
  }[];
47142
49068
  } | null;
@@ -47289,6 +49215,15 @@ export interface operations {
47289
49215
  context: Record<string, never>;
47290
49216
  message: string;
47291
49217
  })[];
49218
+ descriptionEdit?: {
49219
+ /** @enum {string} */
49220
+ status: "editable" | "disabled";
49221
+ transactionId?: string | null;
49222
+ /** Format: uuid */
49223
+ lineId?: string;
49224
+ /** @enum {string} */
49225
+ reason?: "notEditable" | "missingLine" | "multipleLines" | "locked" | "missingTarget";
49226
+ };
47292
49227
  columns: {
47293
49228
  name: string;
47294
49229
  text: string;
@@ -47328,6 +49263,11 @@ export interface operations {
47328
49263
  excludeApAppendix?: boolean;
47329
49264
  /** @description listing ids comma separated or "unmapped" */
47330
49265
  listingIds?: string;
49266
+ /**
49267
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
49268
+ * @enum {string}
49269
+ */
49270
+ listingScope?: "exact" | "withChildren";
47331
49271
  /** @description listing ownership period ids comma separated or "unmapped" */
47332
49272
  listingOwnershipPeriodIds?: string;
47333
49273
  /** @description account ids comma separated accounts or "unmapped" */
@@ -47408,6 +49348,11 @@ export interface operations {
47408
49348
  excludeApAppendix?: boolean;
47409
49349
  /** @description listing ids comma separated or "unmapped" */
47410
49350
  listingIds?: string;
49351
+ /**
49352
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
49353
+ * @enum {string}
49354
+ */
49355
+ listingScope?: "exact" | "withChildren";
47411
49356
  /** @description listing ownership period ids comma separated or "unmapped" */
47412
49357
  listingOwnershipPeriodIds?: string;
47413
49358
  /** @description account ids comma separated accounts or "unmapped" */
@@ -47516,6 +49461,15 @@ export interface operations {
47516
49461
  context: Record<string, never>;
47517
49462
  message: string;
47518
49463
  })[];
49464
+ descriptionEdit?: {
49465
+ /** @enum {string} */
49466
+ status: "editable" | "disabled";
49467
+ transactionId?: string | null;
49468
+ /** Format: uuid */
49469
+ lineId?: string;
49470
+ /** @enum {string} */
49471
+ reason?: "notEditable" | "missingLine" | "multipleLines" | "locked" | "missingTarget";
49472
+ };
47519
49473
  columns: {
47520
49474
  name: string;
47521
49475
  text: string;
@@ -47555,6 +49509,11 @@ export interface operations {
47555
49509
  excludeApAppendix?: boolean;
47556
49510
  /** @description listing ids comma separated or "unmapped" */
47557
49511
  listingIds?: string;
49512
+ /**
49513
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
49514
+ * @enum {string}
49515
+ */
49516
+ listingScope?: "exact" | "withChildren";
47558
49517
  /** @description listing ownership period ids comma separated or "unmapped" */
47559
49518
  listingOwnershipPeriodIds?: string;
47560
49519
  /** @description account ids comma separated accounts or "unmapped" */
@@ -47635,6 +49594,11 @@ export interface operations {
47635
49594
  excludeApAppendix?: boolean;
47636
49595
  /** @description listing ids comma separated or "unmapped" */
47637
49596
  listingIds?: string;
49597
+ /**
49598
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
49599
+ * @enum {string}
49600
+ */
49601
+ listingScope?: "exact" | "withChildren";
47638
49602
  /** @description listing ownership period ids comma separated or "unmapped" */
47639
49603
  listingOwnershipPeriodIds?: string;
47640
49604
  /** @description account ids comma separated accounts or "unmapped" */
@@ -47759,6 +49723,15 @@ export interface operations {
47759
49723
  context: Record<string, never>;
47760
49724
  message: string;
47761
49725
  })[];
49726
+ descriptionEdit?: {
49727
+ /** @enum {string} */
49728
+ status: "editable" | "disabled";
49729
+ transactionId?: string | null;
49730
+ /** Format: uuid */
49731
+ lineId?: string;
49732
+ /** @enum {string} */
49733
+ reason?: "notEditable" | "missingLine" | "multipleLines" | "locked" | "missingTarget";
49734
+ };
47762
49735
  columns: {
47763
49736
  name: string;
47764
49737
  text: string;
@@ -47798,6 +49771,11 @@ export interface operations {
47798
49771
  excludeApAppendix?: boolean;
47799
49772
  /** @description listing ids comma separated or "unmapped" */
47800
49773
  listingIds?: string;
49774
+ /**
49775
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
49776
+ * @enum {string}
49777
+ */
49778
+ listingScope?: "exact" | "withChildren";
47801
49779
  /** @description listing ownership period ids comma separated or "unmapped" */
47802
49780
  listingOwnershipPeriodIds?: string;
47803
49781
  /** @description account ids comma separated accounts or "unmapped" */
@@ -47878,6 +49856,11 @@ export interface operations {
47878
49856
  excludeApAppendix?: boolean;
47879
49857
  /** @description listing ids comma separated or "unmapped" */
47880
49858
  listingIds?: string;
49859
+ /**
49860
+ * @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids.
49861
+ * @enum {string}
49862
+ */
49863
+ listingScope?: "exact" | "withChildren";
47881
49864
  /** @description listing ownership period ids comma separated or "unmapped" */
47882
49865
  listingOwnershipPeriodIds?: string;
47883
49866
  /** @description account ids comma separated accounts or "unmapped" */
@@ -48491,7 +50474,7 @@ export interface operations {
48491
50474
  search?: string;
48492
50475
  category?: string;
48493
50476
  connectionId?: string;
48494
- type?: "extract" | "automate" | "webhook";
50477
+ type?: "extract" | "automate" | "flow" | "webhook";
48495
50478
  status?: "queued" | "started" | "completed" | "failed" | "canceled";
48496
50479
  sort?: "created_asc" | "created_desc" | "updated_asc" | "updated_desc";
48497
50480
  /** @description Comma-separated sync IDs. */
@@ -48514,7 +50497,7 @@ export interface operations {
48514
50497
  "application/json": {
48515
50498
  data: {
48516
50499
  /** @enum {string} */
48517
- type: "extract" | "automate" | "webhook";
50500
+ type: "extract" | "automate" | "flow" | "webhook";
48518
50501
  message?: string;
48519
50502
  triggerRef?: string;
48520
50503
  automationId?: string | null;
@@ -48655,7 +50638,7 @@ export interface operations {
48655
50638
  /** Format: uuid */
48656
50639
  id?: string;
48657
50640
  /** @enum {string} */
48658
- type: "extract" | "automate" | "webhook";
50641
+ type: "extract" | "automate" | "flow" | "webhook";
48659
50642
  params?: {
48660
50643
  [key: string]: unknown;
48661
50644
  };
@@ -48676,7 +50659,7 @@ export interface operations {
48676
50659
  content: {
48677
50660
  "application/json": {
48678
50661
  /** @enum {string} */
48679
- type: "extract" | "automate" | "webhook";
50662
+ type: "extract" | "automate" | "flow" | "webhook";
48680
50663
  params?: {
48681
50664
  [key: string]: unknown;
48682
50665
  };
@@ -49062,7 +51045,7 @@ export interface operations {
49062
51045
  content: {
49063
51046
  "application/json": {
49064
51047
  /** @enum {string} */
49065
- type: "extract" | "automate" | "webhook";
51048
+ type: "extract" | "automate" | "flow" | "webhook";
49066
51049
  params?: {
49067
51050
  [key: string]: unknown;
49068
51051
  };
@@ -49186,7 +51169,7 @@ export interface operations {
49186
51169
  content: {
49187
51170
  "application/json": {
49188
51171
  /** @enum {string} */
49189
- type?: "extract" | "automate" | "webhook";
51172
+ type?: "extract" | "automate" | "flow" | "webhook";
49190
51173
  params?: {
49191
51174
  [key: string]: unknown;
49192
51175
  };
@@ -49207,7 +51190,7 @@ export interface operations {
49207
51190
  content: {
49208
51191
  "application/json": {
49209
51192
  /** @enum {string} */
49210
- type: "extract" | "automate" | "webhook";
51193
+ type: "extract" | "automate" | "flow" | "webhook";
49211
51194
  params?: {
49212
51195
  [key: string]: unknown;
49213
51196
  };
@@ -50227,6 +52210,22 @@ export interface operations {
50227
52210
  latestVersion: number;
50228
52211
  }[];
50229
52212
  };
52213
+ } | {
52214
+ /** @enum {string} */
52215
+ severity: "error" | "warning";
52216
+ /** @enum {string} */
52217
+ category: "criticalToUser" | "criticalToSystem";
52218
+ message: string;
52219
+ affected: number;
52220
+ /** @constant */
52221
+ code: "operatingBankAccountsWithoutOpex";
52222
+ context: {
52223
+ accounts: {
52224
+ /** Format: uuid */
52225
+ id: string;
52226
+ name: string;
52227
+ }[];
52228
+ };
50230
52229
  } | {
50231
52230
  /** @enum {string} */
50232
52231
  severity: "error" | "warning";
@@ -54359,6 +56358,22 @@ export interface operations {
54359
56358
  latestVersion: number;
54360
56359
  }[];
54361
56360
  };
56361
+ } | {
56362
+ /** @enum {string} */
56363
+ severity: "error" | "warning";
56364
+ /** @enum {string} */
56365
+ category: "criticalToUser" | "criticalToSystem";
56366
+ message: string;
56367
+ affected: number;
56368
+ /** @constant */
56369
+ code: "operatingBankAccountsWithoutOpex";
56370
+ context: {
56371
+ accounts: {
56372
+ /** Format: uuid */
56373
+ id: string;
56374
+ name: string;
56375
+ }[];
56376
+ };
54362
56377
  } | {
54363
56378
  /** @enum {string} */
54364
56379
  severity: "error" | "warning";
@@ -55367,6 +57382,8 @@ export interface operations {
55367
57382
  reconciled?: boolean | "candidate";
55368
57383
  contactId?: string;
55369
57384
  listingIds?: string;
57385
+ /** @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids. */
57386
+ listingScope?: "exact" | "withChildren";
55370
57387
  limit?: number;
55371
57388
  page?: number;
55372
57389
  };
@@ -56499,6 +58516,8 @@ export interface operations {
56499
58516
  reconciled?: boolean | "candidate";
56500
58517
  contactId?: string;
56501
58518
  listingIds?: string;
58519
+ /** @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids. */
58520
+ listingScope?: "exact" | "withChildren";
56502
58521
  };
56503
58522
  header?: never;
56504
58523
  path?: never;
@@ -56636,6 +58655,8 @@ export interface operations {
56636
58655
  reconciled?: boolean | "candidate";
56637
58656
  contactId?: string;
56638
58657
  listingIds?: string;
58658
+ /** @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids. */
58659
+ listingScope?: "exact" | "withChildren";
56639
58660
  };
56640
58661
  header?: never;
56641
58662
  path?: never;
@@ -56773,6 +58794,8 @@ export interface operations {
56773
58794
  reconciled?: boolean | "candidate";
56774
58795
  contactId?: string;
56775
58796
  listingIds?: string;
58797
+ /** @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids. */
58798
+ listingScope?: "exact" | "withChildren";
56776
58799
  };
56777
58800
  header?: never;
56778
58801
  path?: never;
@@ -57252,6 +59275,8 @@ export interface operations {
57252
59275
  reconciled?: boolean | "candidate";
57253
59276
  contactId?: string;
57254
59277
  listingIds?: string;
59278
+ /** @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids. */
59279
+ listingScope?: "exact" | "withChildren";
57255
59280
  };
57256
59281
  header?: never;
57257
59282
  path?: never;
@@ -59149,6 +61174,8 @@ export interface operations {
59149
61174
  reconciled?: boolean | "candidate";
59150
61175
  contactId?: string;
59151
61176
  listingIds?: string;
61177
+ /** @description Controls listingIds filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing ids. */
61178
+ listingScope?: "exact" | "withChildren";
59152
61179
  };
59153
61180
  header?: never;
59154
61181
  path?: never;
@@ -60577,116 +62604,4 @@ export interface operations {
60577
62604
  };
60578
62605
  };
60579
62606
  };
60580
- patchTransactionsByTransactionIdLinesByIdDescription: {
60581
- parameters: {
60582
- query?: never;
60583
- header?: never;
60584
- path: {
60585
- transactionId: string;
60586
- id: string;
60587
- };
60588
- cookie?: never;
60589
- };
60590
- requestBody?: {
60591
- content: {
60592
- "application/json": {
60593
- description: string;
60594
- };
60595
- };
60596
- };
60597
- responses: {
60598
- /** @description Successful response */
60599
- 200: {
60600
- headers: {
60601
- [name: string]: unknown;
60602
- };
60603
- content: {
60604
- "application/json": {
60605
- id: string;
60606
- description: string;
60607
- };
60608
- };
60609
- };
60610
- /** @description Bad request */
60611
- 400: {
60612
- headers: {
60613
- [name: string]: unknown;
60614
- };
60615
- content: {
60616
- "application/json": {
60617
- code: string;
60618
- message: string;
60619
- issues?: {
60620
- message: string;
60621
- }[];
60622
- context?: unknown;
60623
- };
60624
- };
60625
- };
60626
- /** @description Unauthorized */
60627
- 401: {
60628
- headers: {
60629
- [name: string]: unknown;
60630
- };
60631
- content: {
60632
- "application/json": {
60633
- code: string;
60634
- message: string;
60635
- issues?: {
60636
- message: string;
60637
- }[];
60638
- context?: unknown;
60639
- };
60640
- };
60641
- };
60642
- /** @description Forbidden */
60643
- 403: {
60644
- headers: {
60645
- [name: string]: unknown;
60646
- };
60647
- content: {
60648
- "application/json": {
60649
- code: string;
60650
- message: string;
60651
- issues?: {
60652
- message: string;
60653
- }[];
60654
- context?: unknown;
60655
- };
60656
- };
60657
- };
60658
- /** @description Not found */
60659
- 404: {
60660
- headers: {
60661
- [name: string]: unknown;
60662
- };
60663
- content: {
60664
- "application/json": {
60665
- code: string;
60666
- message: string;
60667
- issues?: {
60668
- message: string;
60669
- }[];
60670
- context?: unknown;
60671
- };
60672
- };
60673
- };
60674
- /** @description Internal server error */
60675
- 500: {
60676
- headers: {
60677
- [name: string]: unknown;
60678
- };
60679
- content: {
60680
- "application/json": {
60681
- code: string;
60682
- message: string;
60683
- issues?: {
60684
- message: string;
60685
- }[];
60686
- context?: unknown;
60687
- };
60688
- };
60689
- };
60690
- };
60691
- };
60692
62607
  }