@firela/api-types 0.0.0-canary.ce7c9749 → 0.0.0-canary.d41ffbd5

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.
@@ -108,6 +108,8 @@ export type AccountResponseDto = {
108
108
  | 'STUDENT_LOAN'
109
109
  | 'CREDIT_CARD'
110
110
  | 'PERSONAL_LOAN'
111
+ | 'ACCOUNTS_PAYABLE'
112
+ | 'TAX_PAYABLE'
111
113
  | 'OTHER'
112
114
  | null;
113
115
  /**
@@ -221,6 +223,8 @@ export type assetSubClass =
221
223
  | 'STUDENT_LOAN'
222
224
  | 'CREDIT_CARD'
223
225
  | 'PERSONAL_LOAN'
226
+ | 'ACCOUNTS_PAYABLE'
227
+ | 'TAX_PAYABLE'
224
228
  | 'OTHER';
225
229
 
226
230
  /**
@@ -338,8 +342,64 @@ export type AccountStandardResponseDto = {
338
342
  * Icon identifier for UI display
339
343
  */
340
344
  icon: string;
345
+ /**
346
+ * Onboarding product category (coarse grouping derived from assetSubClass)
347
+ */
348
+ productCategory:
349
+ | 'cash'
350
+ | 'investment'
351
+ | 'credit_card'
352
+ | 'loan'
353
+ | 'payable_tax'
354
+ | 'other';
355
+ /**
356
+ * Asset class (LIQUIDITY/EQUITY/.../LIABILITY), derived at read time from classification rules
357
+ */
358
+ assetClass?:
359
+ | 'LIQUIDITY'
360
+ | 'EQUITY'
361
+ | 'FIXED_INCOME'
362
+ | 'PRECIOUS_METALS'
363
+ | 'COMMODITY'
364
+ | 'INSURANCE'
365
+ | 'ALTERNATIVE_INVESTMENT'
366
+ | 'PERSONAL_ASSETS'
367
+ | 'LIABILITY'
368
+ | 'REAL_ESTATE'
369
+ | 'INDEX';
370
+ /**
371
+ * Asset sub-class (product type, derived at read time from classification rules)
372
+ */
373
+ assetSubClass?: string;
341
374
  };
342
375
 
376
+ /**
377
+ * Onboarding product category (coarse grouping derived from assetSubClass)
378
+ */
379
+ export type productCategory =
380
+ | 'cash'
381
+ | 'investment'
382
+ | 'credit_card'
383
+ | 'loan'
384
+ | 'payable_tax'
385
+ | 'other';
386
+
387
+ /**
388
+ * Asset class (LIQUIDITY/EQUITY/.../LIABILITY), derived at read time from classification rules
389
+ */
390
+ export type assetClass =
391
+ | 'LIQUIDITY'
392
+ | 'EQUITY'
393
+ | 'FIXED_INCOME'
394
+ | 'PRECIOUS_METALS'
395
+ | 'COMMODITY'
396
+ | 'INSURANCE'
397
+ | 'ALTERNATIVE_INVESTMENT'
398
+ | 'PERSONAL_ASSETS'
399
+ | 'LIABILITY'
400
+ | 'REAL_ESTATE'
401
+ | 'INDEX';
402
+
343
403
  export type AccountStandardListResponseDto = {
344
404
  /**
345
405
  * Array of account templates
@@ -3994,13 +4054,13 @@ export type ProviderSyncConfigDto = {
3994
4054
  */
3995
4055
  defaultCurrency: string;
3996
4056
  /**
3997
- * Default expense account for the second posting
4057
+ * Default expense account for the second posting. Omit when no real default exists; the pipeline routes to Review via the Uncategorized sentinel (#618).
3998
4058
  */
3999
- defaultExpenseAccount: string;
4059
+ defaultExpenseAccount?: string;
4000
4060
  /**
4001
- * Default income account for the second posting
4061
+ * Default income account for the second posting. Omit when no real default exists; the pipeline routes to Review via the Uncategorized sentinel (#618).
4002
4062
  */
4003
- defaultIncomeAccount: string;
4063
+ defaultIncomeAccount?: string;
4004
4064
  /**
4005
4065
  * Filter pending transactions
4006
4066
  */
@@ -4125,9 +4185,13 @@ export type UncoveredFormatMissDto = unknown;
4125
4185
 
4126
4186
  export type ProcessNlpDto = {
4127
4187
  /**
4128
- * Natural language text describing a transaction (Chinese)
4188
+ * Natural language text describing a transaction. Optional when `confirm` is true (structured confirm); otherwise required.
4129
4189
  */
4130
- message: string;
4190
+ message?: string;
4191
+ /**
4192
+ * Structured confirm signal — bypasses NL confirm-word matching when true. Send parsedData field edits alongside. The NL word-list path is the fallback.
4193
+ */
4194
+ confirm?: boolean;
4131
4195
  /**
4132
4196
  * Session ID for multi-turn conversation (auto-generated if not provided)
4133
4197
  */
@@ -4138,6 +4202,14 @@ export type ProcessNlpDto = {
4138
4202
  parsedData?: {
4139
4203
  [key: string]: unknown;
4140
4204
  };
4205
+ /**
4206
+ * confirm_rule echo-back: rule id selected from the prior confirm_rule response (matchedRule.id or alternatives[i].ruleId). Applied directly when the session is confirming_rule — no NL re-parse.
4207
+ */
4208
+ selectedRuleId?: string;
4209
+ /**
4210
+ * confirm_account echo-back: account path selected from the prior confirm_account response (suggestedAccount, similarAccounts[i], or a typed path). Applied directly when the session is confirming_account — no NL re-parse.
4211
+ */
4212
+ selectedAccount?: string;
4141
4213
  };
4142
4214
 
4143
4215
  export type NlpTransactionInfoDto = {
@@ -4381,9 +4453,9 @@ export type NlpAccountConfirmationDataDto = {
4381
4453
  */
4382
4454
  invalidAccount: string;
4383
4455
  /**
4384
- * Suggested replacement account
4456
+ * Suggested replacement account (omitted when no clear candidate)
4385
4457
  */
4386
- suggestedAccount: string;
4458
+ suggestedAccount?: string;
4387
4459
  /**
4388
4460
  * Similar accounts for user selection
4389
4461
  */
@@ -4511,7 +4583,7 @@ export type NlpSuggestedAccountDto = {
4511
4583
  */
4512
4584
  account: string;
4513
4585
  /**
4514
- * Confidence score for this suggestion (0-1)
4586
+ * Confidence score for this suggestion (0-1). Present = predicted (confirm/confirm_rule/confirm_account); omitted = actual persisted account (created). (#586)
4515
4587
  */
4516
4588
  confidence?: number;
4517
4589
  };
@@ -4529,21 +4601,21 @@ export type NlpSuggestedAccountsDto = {
4529
4601
 
4530
4602
  export type NlpDefaultAccountsDto = {
4531
4603
  /**
4532
- * Default asset account
4604
+ * Default OPEN asset account (MRU when multiple), or null when none/ambiguous
4533
4605
  */
4534
- asset: string;
4606
+ asset: string | null;
4535
4607
  /**
4536
- * Default expense account
4608
+ * Default OPEN expense account (MRU when multiple), or null when none/ambiguous
4537
4609
  */
4538
- expense: string;
4610
+ expense: string | null;
4539
4611
  /**
4540
- * Default income account
4612
+ * Default OPEN income account (MRU when multiple), or null when none/ambiguous
4541
4613
  */
4542
- income: string;
4614
+ income: string | null;
4543
4615
  /**
4544
- * Default liability account
4616
+ * Default OPEN liability account (MRU when multiple), or null when none/ambiguous
4545
4617
  */
4546
- liability: string;
4618
+ liability: string | null;
4547
4619
  };
4548
4620
 
4549
4621
  export type NlpResponseDto = {
@@ -4652,11 +4724,11 @@ export type NlpResponseDto = {
4652
4724
  */
4653
4725
  recurringSuggestion?: RecurringSuggestionDto;
4654
4726
  /**
4655
- * Suggested accounts for this transaction. Contains recommended source and destination accounts based on the detected intent and rules.
4727
+ * Suggested accounts for this transaction (#586). confirm/confirm_rule/confirm_account: predicted (source/destination carry confidence); created: actual persisted accounts (confidence omitted). confirm_account destination is the suggested replacement, never the invalid account.
4656
4728
  */
4657
4729
  suggestedAccounts?: NlpSuggestedAccountsDto;
4658
4730
  /**
4659
- * Default accounts for the user/region. These are fallback accounts used when no specific suggestion is available.
4731
+ * Default fallback accounts for the user/region (#586). v1 returns universal constants; per-user personalization is planned.
4660
4732
  */
4661
4733
  defaultAccounts?: NlpDefaultAccountsDto;
4662
4734
  };
@@ -4729,13 +4801,21 @@ export type PlatformListItemDto = {
4729
4801
  */
4730
4802
  canonical: string;
4731
4803
  /**
4732
- * Suggested path segment — canonical with first char uppercased (ACC_COMP_NAME_RE)
4804
+ * Suggested path segment — canonical PascalCased per hyphen-part, hyphens preserved (e.g. "Apple-Pay")
4733
4805
  */
4734
4806
  suggestedSegment: string;
4735
4807
  /**
4736
4808
  * Logo URL
4737
4809
  */
4738
4810
  logoUrl: string | null;
4811
+ /**
4812
+ * ISO 3166-1 alpha-2 (UPPERCASE); null = global platform
4813
+ */
4814
+ countryCode: string | null;
4815
+ /**
4816
+ * Region-aware category (institution vocab, e.g. DigitalWallet/Bank). null = no region-aware suggestion; fall back to type.
4817
+ */
4818
+ category: string | null;
4739
4819
  /**
4740
4820
  * Whether user has accounts using this platform
4741
4821
  */
@@ -4779,13 +4859,21 @@ export type PlatformMatchResultDto = {
4779
4859
  | 'INSURANCE'
4780
4860
  | 'OTHER';
4781
4861
  /**
4782
- * Suggested path segment — canonical, already in ACCOUNT_RE format
4862
+ * Suggested path segment — canonical PascalCased per hyphen-part, hyphens preserved (e.g. "Apple-Pay")
4783
4863
  */
4784
4864
  suggestedSegment: string;
4785
4865
  /**
4786
4866
  * Logo URL
4787
4867
  */
4788
4868
  logoUrl: string | null;
4869
+ /**
4870
+ * ISO 3166-1 alpha-2 (UPPERCASE); null = global platform
4871
+ */
4872
+ countryCode: string | null;
4873
+ /**
4874
+ * Region-aware category (institution vocab, e.g. DigitalWallet/Bank). null = no region-aware suggestion; fall back to type.
4875
+ */
4876
+ category: string | null;
4789
4877
  /**
4790
4878
  * How this row matched: 'exact' > 'prefix' > 'substring'
4791
4879
  */
@@ -5177,22 +5265,6 @@ export type AssetClassGroupDto = {
5177
5265
  convertedBalance?: string;
5178
5266
  };
5179
5267
 
5180
- /**
5181
- * Asset class name
5182
- */
5183
- export type assetClass =
5184
- | 'LIQUIDITY'
5185
- | 'EQUITY'
5186
- | 'FIXED_INCOME'
5187
- | 'PRECIOUS_METALS'
5188
- | 'COMMODITY'
5189
- | 'INSURANCE'
5190
- | 'ALTERNATIVE_INVESTMENT'
5191
- | 'PERSONAL_ASSETS'
5192
- | 'LIABILITY'
5193
- | 'REAL_ESTATE'
5194
- | 'INDEX';
5195
-
5196
5268
  export type AssetClassSummaryDto = {
5197
5269
  /**
5198
5270
  * Total number of accounts
@@ -5624,11 +5696,164 @@ export type AnonymousLoginResponseDto = {
5624
5696
  authToken: string;
5625
5697
  };
5626
5698
 
5699
+ export type SymbolSearchResultDto = {
5700
+ symbol: string;
5701
+ name?: {
5702
+ [key: string]: unknown;
5703
+ } | null;
5704
+ exchange?: {
5705
+ [key: string]: unknown;
5706
+ } | null;
5707
+ /**
5708
+ * OpenBB asset_type (e.g. stock, etf)
5709
+ */
5710
+ assetType?: {
5711
+ [key: string]: unknown;
5712
+ } | null;
5713
+ /**
5714
+ * IGN asset class (region.types.ts ASSET_CLASSES)
5715
+ */
5716
+ assetClass?: {
5717
+ [key: string]: unknown;
5718
+ } | null;
5719
+ /**
5720
+ * IGN asset sub-class (region.types.ts ASSET_SUB_CLASSES)
5721
+ */
5722
+ assetSubClass?: {
5723
+ [key: string]: unknown;
5724
+ } | null;
5725
+ /**
5726
+ * Trading currency (extra_data or inferred from exchange)
5727
+ */
5728
+ currency?: {
5729
+ [key: string]: unknown;
5730
+ } | null;
5731
+ };
5732
+
5733
+ export type SymbolQuoteDto = {
5734
+ symbol?: string;
5735
+ name?: {
5736
+ [key: string]: unknown;
5737
+ } | null;
5738
+ exchange?: {
5739
+ [key: string]: unknown;
5740
+ } | null;
5741
+ /**
5742
+ * OpenBB asset_type
5743
+ */
5744
+ assetType?: {
5745
+ [key: string]: unknown;
5746
+ } | null;
5747
+ /**
5748
+ * IGN asset class
5749
+ */
5750
+ assetClass?: {
5751
+ [key: string]: unknown;
5752
+ } | null;
5753
+ /**
5754
+ * IGN asset sub-class
5755
+ */
5756
+ assetSubClass?: {
5757
+ [key: string]: unknown;
5758
+ } | null;
5759
+ /**
5760
+ * Trading currency (extra_data or inferred from exchange)
5761
+ */
5762
+ currency?: {
5763
+ [key: string]: unknown;
5764
+ } | null;
5765
+ /**
5766
+ * Latest price (Decimal string)
5767
+ */
5768
+ price?: {
5769
+ [key: string]: unknown;
5770
+ } | null;
5771
+ /**
5772
+ * Date the price was observed (ISO yyyy-MM-dd)
5773
+ */
5774
+ priceDate?: {
5775
+ [key: string]: unknown;
5776
+ } | null;
5777
+ /**
5778
+ * Change vs previous close, in percentage points (1.7 == 1.7%). openbb stores change_percent as a normalized decimal; this exposes percentage points for frontend convenience.
5779
+ */
5780
+ changePercent?: {
5781
+ [key: string]: unknown;
5782
+ } | null;
5783
+ /**
5784
+ * Previous close (Decimal string)
5785
+ */
5786
+ prevClose?: {
5787
+ [key: string]: unknown;
5788
+ } | null;
5789
+ /**
5790
+ * Day open (Decimal string)
5791
+ */
5792
+ open?: {
5793
+ [key: string]: unknown;
5794
+ } | null;
5795
+ /**
5796
+ * Day high (Decimal string)
5797
+ */
5798
+ high?: {
5799
+ [key: string]: unknown;
5800
+ } | null;
5801
+ /**
5802
+ * Day low (Decimal string)
5803
+ */
5804
+ low?: {
5805
+ [key: string]: unknown;
5806
+ } | null;
5807
+ /**
5808
+ * Day volume (Decimal string)
5809
+ */
5810
+ volume?: {
5811
+ [key: string]: unknown;
5812
+ } | null;
5813
+ /**
5814
+ * 52-week high (Decimal string)
5815
+ */
5816
+ yearHigh?: {
5817
+ [key: string]: unknown;
5818
+ } | null;
5819
+ /**
5820
+ * 52-week low (Decimal string)
5821
+ */
5822
+ yearLow?: {
5823
+ [key: string]: unknown;
5824
+ } | null;
5825
+ };
5826
+
5627
5827
  export type AccountControllerCreateData = {
5628
5828
  /**
5629
5829
  * Region code for tenant context
5630
5830
  */
5631
- region: 'cn' | 'us' | 'de' | 'gb';
5831
+ region:
5832
+ | 'ad'
5833
+ | 'ae'
5834
+ | 'af'
5835
+ | 'ag'
5836
+ | 'al'
5837
+ | 'am'
5838
+ | 'ao'
5839
+ | 'au'
5840
+ | 'br'
5841
+ | 'ca'
5842
+ | 'cn'
5843
+ | 'de'
5844
+ | 'dz'
5845
+ | 'es'
5846
+ | 'fr'
5847
+ | 'gb'
5848
+ | 'hk'
5849
+ | 'in'
5850
+ | 'it'
5851
+ | 'jp'
5852
+ | 'kr'
5853
+ | 'nl'
5854
+ | 'sg'
5855
+ | 'tw'
5856
+ | 'us';
5632
5857
  requestBody: CreateAccountDto;
5633
5858
  };
5634
5859
 
@@ -5650,7 +5875,32 @@ export type AccountControllerFindAllData = {
5650
5875
  /**
5651
5876
  * Region code for tenant context
5652
5877
  */
5653
- region: 'cn' | 'us' | 'de' | 'gb';
5878
+ region:
5879
+ | 'ad'
5880
+ | 'ae'
5881
+ | 'af'
5882
+ | 'ag'
5883
+ | 'al'
5884
+ | 'am'
5885
+ | 'ao'
5886
+ | 'au'
5887
+ | 'br'
5888
+ | 'ca'
5889
+ | 'cn'
5890
+ | 'de'
5891
+ | 'dz'
5892
+ | 'es'
5893
+ | 'fr'
5894
+ | 'gb'
5895
+ | 'hk'
5896
+ | 'in'
5897
+ | 'it'
5898
+ | 'jp'
5899
+ | 'kr'
5900
+ | 'nl'
5901
+ | 'sg'
5902
+ | 'tw'
5903
+ | 'us';
5654
5904
  /**
5655
5905
  * Search term for account path
5656
5906
  */
@@ -5675,7 +5925,32 @@ export type AccountControllerFindOneData = {
5675
5925
  /**
5676
5926
  * Region code for tenant context
5677
5927
  */
5678
- region: 'cn' | 'us' | 'de' | 'gb';
5928
+ region:
5929
+ | 'ad'
5930
+ | 'ae'
5931
+ | 'af'
5932
+ | 'ag'
5933
+ | 'al'
5934
+ | 'am'
5935
+ | 'ao'
5936
+ | 'au'
5937
+ | 'br'
5938
+ | 'ca'
5939
+ | 'cn'
5940
+ | 'de'
5941
+ | 'dz'
5942
+ | 'es'
5943
+ | 'fr'
5944
+ | 'gb'
5945
+ | 'hk'
5946
+ | 'in'
5947
+ | 'it'
5948
+ | 'jp'
5949
+ | 'kr'
5950
+ | 'nl'
5951
+ | 'sg'
5952
+ | 'tw'
5953
+ | 'us';
5679
5954
  };
5680
5955
 
5681
5956
  export type AccountControllerFindOneResponse = AccountResponseDto;
@@ -5688,7 +5963,32 @@ export type AccountControllerUpdateData = {
5688
5963
  /**
5689
5964
  * Region code for tenant context
5690
5965
  */
5691
- region: 'cn' | 'us' | 'de' | 'gb';
5966
+ region:
5967
+ | 'ad'
5968
+ | 'ae'
5969
+ | 'af'
5970
+ | 'ag'
5971
+ | 'al'
5972
+ | 'am'
5973
+ | 'ao'
5974
+ | 'au'
5975
+ | 'br'
5976
+ | 'ca'
5977
+ | 'cn'
5978
+ | 'de'
5979
+ | 'dz'
5980
+ | 'es'
5981
+ | 'fr'
5982
+ | 'gb'
5983
+ | 'hk'
5984
+ | 'in'
5985
+ | 'it'
5986
+ | 'jp'
5987
+ | 'kr'
5988
+ | 'nl'
5989
+ | 'sg'
5990
+ | 'tw'
5991
+ | 'us';
5692
5992
  requestBody: UpdateAccountDto;
5693
5993
  };
5694
5994
 
@@ -5702,7 +6002,32 @@ export type AccountControllerDeleteData = {
5702
6002
  /**
5703
6003
  * Region code for tenant context
5704
6004
  */
5705
- region: 'cn' | 'us' | 'de' | 'gb';
6005
+ region:
6006
+ | 'ad'
6007
+ | 'ae'
6008
+ | 'af'
6009
+ | 'ag'
6010
+ | 'al'
6011
+ | 'am'
6012
+ | 'ao'
6013
+ | 'au'
6014
+ | 'br'
6015
+ | 'ca'
6016
+ | 'cn'
6017
+ | 'de'
6018
+ | 'dz'
6019
+ | 'es'
6020
+ | 'fr'
6021
+ | 'gb'
6022
+ | 'hk'
6023
+ | 'in'
6024
+ | 'it'
6025
+ | 'jp'
6026
+ | 'kr'
6027
+ | 'nl'
6028
+ | 'sg'
6029
+ | 'tw'
6030
+ | 'us';
5706
6031
  };
5707
6032
 
5708
6033
  export type AccountControllerDeleteResponse = void;
@@ -5715,7 +6040,32 @@ export type AccountControllerCloseData = {
5715
6040
  /**
5716
6041
  * Region code for tenant context
5717
6042
  */
5718
- region: 'cn' | 'us' | 'de' | 'gb';
6043
+ region:
6044
+ | 'ad'
6045
+ | 'ae'
6046
+ | 'af'
6047
+ | 'ag'
6048
+ | 'al'
6049
+ | 'am'
6050
+ | 'ao'
6051
+ | 'au'
6052
+ | 'br'
6053
+ | 'ca'
6054
+ | 'cn'
6055
+ | 'de'
6056
+ | 'dz'
6057
+ | 'es'
6058
+ | 'fr'
6059
+ | 'gb'
6060
+ | 'hk'
6061
+ | 'in'
6062
+ | 'it'
6063
+ | 'jp'
6064
+ | 'kr'
6065
+ | 'nl'
6066
+ | 'sg'
6067
+ | 'tw'
6068
+ | 'us';
5719
6069
  requestBody: CloseAccountDto;
5720
6070
  };
5721
6071
 
@@ -5729,7 +6079,32 @@ export type AccountControllerReopenData = {
5729
6079
  /**
5730
6080
  * Region code for tenant context
5731
6081
  */
5732
- region: 'cn' | 'us' | 'de' | 'gb';
6082
+ region:
6083
+ | 'ad'
6084
+ | 'ae'
6085
+ | 'af'
6086
+ | 'ag'
6087
+ | 'al'
6088
+ | 'am'
6089
+ | 'ao'
6090
+ | 'au'
6091
+ | 'br'
6092
+ | 'ca'
6093
+ | 'cn'
6094
+ | 'de'
6095
+ | 'dz'
6096
+ | 'es'
6097
+ | 'fr'
6098
+ | 'gb'
6099
+ | 'hk'
6100
+ | 'in'
6101
+ | 'it'
6102
+ | 'jp'
6103
+ | 'kr'
6104
+ | 'nl'
6105
+ | 'sg'
6106
+ | 'tw'
6107
+ | 'us';
5733
6108
  requestBody: ReopenAccountDto;
5734
6109
  };
5735
6110
 
@@ -5743,7 +6118,32 @@ export type AccountControllerAddOpeningBalanceData = {
5743
6118
  /**
5744
6119
  * Region code for tenant context
5745
6120
  */
5746
- region: 'cn' | 'us' | 'de' | 'gb';
6121
+ region:
6122
+ | 'ad'
6123
+ | 'ae'
6124
+ | 'af'
6125
+ | 'ag'
6126
+ | 'al'
6127
+ | 'am'
6128
+ | 'ao'
6129
+ | 'au'
6130
+ | 'br'
6131
+ | 'ca'
6132
+ | 'cn'
6133
+ | 'de'
6134
+ | 'dz'
6135
+ | 'es'
6136
+ | 'fr'
6137
+ | 'gb'
6138
+ | 'hk'
6139
+ | 'in'
6140
+ | 'it'
6141
+ | 'jp'
6142
+ | 'kr'
6143
+ | 'nl'
6144
+ | 'sg'
6145
+ | 'tw'
6146
+ | 'us';
5747
6147
  requestBody: CreateOpeningBalanceDto;
5748
6148
  };
5749
6149
 
@@ -5754,7 +6154,32 @@ export type AccountStandardsControllerGetTemplatesData = {
5754
6154
  /**
5755
6155
  * Region code (cn, us, de)
5756
6156
  */
5757
- region: 'cn' | 'us' | 'de' | 'gb';
6157
+ region:
6158
+ | 'ad'
6159
+ | 'ae'
6160
+ | 'af'
6161
+ | 'ag'
6162
+ | 'al'
6163
+ | 'am'
6164
+ | 'ao'
6165
+ | 'au'
6166
+ | 'br'
6167
+ | 'ca'
6168
+ | 'cn'
6169
+ | 'de'
6170
+ | 'dz'
6171
+ | 'es'
6172
+ | 'fr'
6173
+ | 'gb'
6174
+ | 'hk'
6175
+ | 'in'
6176
+ | 'it'
6177
+ | 'jp'
6178
+ | 'kr'
6179
+ | 'nl'
6180
+ | 'sg'
6181
+ | 'tw'
6182
+ | 'us';
5758
6183
  /**
5759
6184
  * Search term for path or description
5760
6185
  */
@@ -5776,7 +6201,32 @@ export type AccountStandardsControllerGetTemplateMetadataData = {
5776
6201
  /**
5777
6202
  * Region code for tenant context
5778
6203
  */
5779
- region: 'cn' | 'us' | 'de' | 'gb';
6204
+ region:
6205
+ | 'ad'
6206
+ | 'ae'
6207
+ | 'af'
6208
+ | 'ag'
6209
+ | 'al'
6210
+ | 'am'
6211
+ | 'ao'
6212
+ | 'au'
6213
+ | 'br'
6214
+ | 'ca'
6215
+ | 'cn'
6216
+ | 'de'
6217
+ | 'dz'
6218
+ | 'es'
6219
+ | 'fr'
6220
+ | 'gb'
6221
+ | 'hk'
6222
+ | 'in'
6223
+ | 'it'
6224
+ | 'jp'
6225
+ | 'kr'
6226
+ | 'nl'
6227
+ | 'sg'
6228
+ | 'tw'
6229
+ | 'us';
5780
6230
  };
5781
6231
 
5782
6232
  export type AccountStandardsControllerGetTemplateMetadataResponse =
@@ -5786,7 +6236,32 @@ export type AccountStandardsControllerGetRegionsData = {
5786
6236
  /**
5787
6237
  * Region code for tenant context
5788
6238
  */
5789
- region: 'cn' | 'us' | 'de' | 'gb';
6239
+ region:
6240
+ | 'ad'
6241
+ | 'ae'
6242
+ | 'af'
6243
+ | 'ag'
6244
+ | 'al'
6245
+ | 'am'
6246
+ | 'ao'
6247
+ | 'au'
6248
+ | 'br'
6249
+ | 'ca'
6250
+ | 'cn'
6251
+ | 'de'
6252
+ | 'dz'
6253
+ | 'es'
6254
+ | 'fr'
6255
+ | 'gb'
6256
+ | 'hk'
6257
+ | 'in'
6258
+ | 'it'
6259
+ | 'jp'
6260
+ | 'kr'
6261
+ | 'nl'
6262
+ | 'sg'
6263
+ | 'tw'
6264
+ | 'us';
5790
6265
  };
5791
6266
 
5792
6267
  export type AccountStandardsControllerGetRegionsResponse =
@@ -5796,7 +6271,32 @@ export type TransactionControllerCreateData = {
5796
6271
  /**
5797
6272
  * Region code for tenant context
5798
6273
  */
5799
- region: 'cn' | 'us' | 'de' | 'gb';
6274
+ region:
6275
+ | 'ad'
6276
+ | 'ae'
6277
+ | 'af'
6278
+ | 'ag'
6279
+ | 'al'
6280
+ | 'am'
6281
+ | 'ao'
6282
+ | 'au'
6283
+ | 'br'
6284
+ | 'ca'
6285
+ | 'cn'
6286
+ | 'de'
6287
+ | 'dz'
6288
+ | 'es'
6289
+ | 'fr'
6290
+ | 'gb'
6291
+ | 'hk'
6292
+ | 'in'
6293
+ | 'it'
6294
+ | 'jp'
6295
+ | 'kr'
6296
+ | 'nl'
6297
+ | 'sg'
6298
+ | 'tw'
6299
+ | 'us';
5800
6300
  /**
5801
6301
  * Transaction data with postings
5802
6302
  */
@@ -5833,7 +6333,32 @@ export type TransactionControllerListData = {
5833
6333
  /**
5834
6334
  * Region code for tenant context
5835
6335
  */
5836
- region: 'cn' | 'us' | 'de' | 'gb';
6336
+ region:
6337
+ | 'ad'
6338
+ | 'ae'
6339
+ | 'af'
6340
+ | 'ag'
6341
+ | 'al'
6342
+ | 'am'
6343
+ | 'ao'
6344
+ | 'au'
6345
+ | 'br'
6346
+ | 'ca'
6347
+ | 'cn'
6348
+ | 'de'
6349
+ | 'dz'
6350
+ | 'es'
6351
+ | 'fr'
6352
+ | 'gb'
6353
+ | 'hk'
6354
+ | 'in'
6355
+ | 'it'
6356
+ | 'jp'
6357
+ | 'kr'
6358
+ | 'nl'
6359
+ | 'sg'
6360
+ | 'tw'
6361
+ | 'us';
5837
6362
  /**
5838
6363
  * Search in narration and payee fields (max 200 chars)
5839
6364
  */
@@ -5850,7 +6375,32 @@ export type TransactionControllerCreateBatchData = {
5850
6375
  /**
5851
6376
  * Region code for tenant context
5852
6377
  */
5853
- region: 'cn' | 'us' | 'de' | 'gb';
6378
+ region:
6379
+ | 'ad'
6380
+ | 'ae'
6381
+ | 'af'
6382
+ | 'ag'
6383
+ | 'al'
6384
+ | 'am'
6385
+ | 'ao'
6386
+ | 'au'
6387
+ | 'br'
6388
+ | 'ca'
6389
+ | 'cn'
6390
+ | 'de'
6391
+ | 'dz'
6392
+ | 'es'
6393
+ | 'fr'
6394
+ | 'gb'
6395
+ | 'hk'
6396
+ | 'in'
6397
+ | 'it'
6398
+ | 'jp'
6399
+ | 'kr'
6400
+ | 'nl'
6401
+ | 'sg'
6402
+ | 'tw'
6403
+ | 'us';
5854
6404
  requestBody: BatchCreateTransactionDto;
5855
6405
  };
5856
6406
 
@@ -5865,7 +6415,32 @@ export type TransactionControllerCorrectData = {
5865
6415
  /**
5866
6416
  * Region code for tenant context
5867
6417
  */
5868
- region: 'cn' | 'us' | 'de' | 'gb';
6418
+ region:
6419
+ | 'ad'
6420
+ | 'ae'
6421
+ | 'af'
6422
+ | 'ag'
6423
+ | 'al'
6424
+ | 'am'
6425
+ | 'ao'
6426
+ | 'au'
6427
+ | 'br'
6428
+ | 'ca'
6429
+ | 'cn'
6430
+ | 'de'
6431
+ | 'dz'
6432
+ | 'es'
6433
+ | 'fr'
6434
+ | 'gb'
6435
+ | 'hk'
6436
+ | 'in'
6437
+ | 'it'
6438
+ | 'jp'
6439
+ | 'kr'
6440
+ | 'nl'
6441
+ | 'sg'
6442
+ | 'tw'
6443
+ | 'us';
5869
6444
  requestBody: CorrectTransactionDto;
5870
6445
  };
5871
6446
 
@@ -5883,7 +6458,32 @@ export type TransactionControllerSuggestTagsData = {
5883
6458
  /**
5884
6459
  * Region code for tenant context
5885
6460
  */
5886
- region: 'cn' | 'us' | 'de' | 'gb';
6461
+ region:
6462
+ | 'ad'
6463
+ | 'ae'
6464
+ | 'af'
6465
+ | 'ag'
6466
+ | 'al'
6467
+ | 'am'
6468
+ | 'ao'
6469
+ | 'au'
6470
+ | 'br'
6471
+ | 'ca'
6472
+ | 'cn'
6473
+ | 'de'
6474
+ | 'dz'
6475
+ | 'es'
6476
+ | 'fr'
6477
+ | 'gb'
6478
+ | 'hk'
6479
+ | 'in'
6480
+ | 'it'
6481
+ | 'jp'
6482
+ | 'kr'
6483
+ | 'nl'
6484
+ | 'sg'
6485
+ | 'tw'
6486
+ | 'us';
5887
6487
  /**
5888
6488
  * usage (default) or name
5889
6489
  */
@@ -5901,7 +6501,32 @@ export type TransactionControllerGetDetailData = {
5901
6501
  /**
5902
6502
  * Region code for tenant context
5903
6503
  */
5904
- region: 'cn' | 'us' | 'de' | 'gb';
6504
+ region:
6505
+ | 'ad'
6506
+ | 'ae'
6507
+ | 'af'
6508
+ | 'ag'
6509
+ | 'al'
6510
+ | 'am'
6511
+ | 'ao'
6512
+ | 'au'
6513
+ | 'br'
6514
+ | 'ca'
6515
+ | 'cn'
6516
+ | 'de'
6517
+ | 'dz'
6518
+ | 'es'
6519
+ | 'fr'
6520
+ | 'gb'
6521
+ | 'hk'
6522
+ | 'in'
6523
+ | 'it'
6524
+ | 'jp'
6525
+ | 'kr'
6526
+ | 'nl'
6527
+ | 'sg'
6528
+ | 'tw'
6529
+ | 'us';
5905
6530
  };
5906
6531
 
5907
6532
  export type TransactionControllerGetDetailResponse = TransactionDetailDto;
@@ -5914,7 +6539,32 @@ export type TransactionControllerUpdateData = {
5914
6539
  /**
5915
6540
  * Region code for tenant context
5916
6541
  */
5917
- region: 'cn' | 'us' | 'de' | 'gb';
6542
+ region:
6543
+ | 'ad'
6544
+ | 'ae'
6545
+ | 'af'
6546
+ | 'ag'
6547
+ | 'al'
6548
+ | 'am'
6549
+ | 'ao'
6550
+ | 'au'
6551
+ | 'br'
6552
+ | 'ca'
6553
+ | 'cn'
6554
+ | 'de'
6555
+ | 'dz'
6556
+ | 'es'
6557
+ | 'fr'
6558
+ | 'gb'
6559
+ | 'hk'
6560
+ | 'in'
6561
+ | 'it'
6562
+ | 'jp'
6563
+ | 'kr'
6564
+ | 'nl'
6565
+ | 'sg'
6566
+ | 'tw'
6567
+ | 'us';
5918
6568
  /**
5919
6569
  * Fields to update (all optional)
5920
6570
  */
@@ -5931,7 +6581,32 @@ export type TransactionControllerDeleteData = {
5931
6581
  /**
5932
6582
  * Region code for tenant context
5933
6583
  */
5934
- region: 'cn' | 'us' | 'de' | 'gb';
6584
+ region:
6585
+ | 'ad'
6586
+ | 'ae'
6587
+ | 'af'
6588
+ | 'ag'
6589
+ | 'al'
6590
+ | 'am'
6591
+ | 'ao'
6592
+ | 'au'
6593
+ | 'br'
6594
+ | 'ca'
6595
+ | 'cn'
6596
+ | 'de'
6597
+ | 'dz'
6598
+ | 'es'
6599
+ | 'fr'
6600
+ | 'gb'
6601
+ | 'hk'
6602
+ | 'in'
6603
+ | 'it'
6604
+ | 'jp'
6605
+ | 'kr'
6606
+ | 'nl'
6607
+ | 'sg'
6608
+ | 'tw'
6609
+ | 'us';
5935
6610
  };
5936
6611
 
5937
6612
  export type TransactionControllerDeleteResponse = void;
@@ -5952,7 +6627,32 @@ export type BalanceControllerGetBalanceData = {
5952
6627
  /**
5953
6628
  * Region code for tenant context
5954
6629
  */
5955
- region: 'cn' | 'us' | 'de' | 'gb';
6630
+ region:
6631
+ | 'ad'
6632
+ | 'ae'
6633
+ | 'af'
6634
+ | 'ag'
6635
+ | 'al'
6636
+ | 'am'
6637
+ | 'ao'
6638
+ | 'au'
6639
+ | 'br'
6640
+ | 'ca'
6641
+ | 'cn'
6642
+ | 'de'
6643
+ | 'dz'
6644
+ | 'es'
6645
+ | 'fr'
6646
+ | 'gb'
6647
+ | 'hk'
6648
+ | 'in'
6649
+ | 'it'
6650
+ | 'jp'
6651
+ | 'kr'
6652
+ | 'nl'
6653
+ | 'sg'
6654
+ | 'tw'
6655
+ | 'us';
5956
6656
  };
5957
6657
 
5958
6658
  export type BalanceControllerGetBalanceResponse = BalanceResponseDto;
@@ -5961,7 +6661,32 @@ export type BalanceControllerGetMultiCurrencyBalanceData = {
5961
6661
  /**
5962
6662
  * Region code for tenant context
5963
6663
  */
5964
- region: 'cn' | 'us' | 'de' | 'gb';
6664
+ region:
6665
+ | 'ad'
6666
+ | 'ae'
6667
+ | 'af'
6668
+ | 'ag'
6669
+ | 'al'
6670
+ | 'am'
6671
+ | 'ao'
6672
+ | 'au'
6673
+ | 'br'
6674
+ | 'ca'
6675
+ | 'cn'
6676
+ | 'de'
6677
+ | 'dz'
6678
+ | 'es'
6679
+ | 'fr'
6680
+ | 'gb'
6681
+ | 'hk'
6682
+ | 'in'
6683
+ | 'it'
6684
+ | 'jp'
6685
+ | 'kr'
6686
+ | 'nl'
6687
+ | 'sg'
6688
+ | 'tw'
6689
+ | 'us';
5965
6690
  };
5966
6691
 
5967
6692
  export type BalanceControllerGetMultiCurrencyBalanceResponse =
@@ -5983,7 +6708,32 @@ export type ReviewControllerFindAllData = {
5983
6708
  /**
5984
6709
  * Region code for tenant context
5985
6710
  */
5986
- region: 'cn' | 'us' | 'de' | 'gb';
6711
+ region:
6712
+ | 'ad'
6713
+ | 'ae'
6714
+ | 'af'
6715
+ | 'ag'
6716
+ | 'al'
6717
+ | 'am'
6718
+ | 'ao'
6719
+ | 'au'
6720
+ | 'br'
6721
+ | 'ca'
6722
+ | 'cn'
6723
+ | 'de'
6724
+ | 'dz'
6725
+ | 'es'
6726
+ | 'fr'
6727
+ | 'gb'
6728
+ | 'hk'
6729
+ | 'in'
6730
+ | 'it'
6731
+ | 'jp'
6732
+ | 'kr'
6733
+ | 'nl'
6734
+ | 'sg'
6735
+ | 'tw'
6736
+ | 'us';
5987
6737
  /**
5988
6738
  * Sort order
5989
6739
  */
@@ -6005,7 +6755,32 @@ export type ReviewControllerGetStatsData = {
6005
6755
  /**
6006
6756
  * Region code for tenant context
6007
6757
  */
6008
- region: 'cn' | 'us' | 'de' | 'gb';
6758
+ region:
6759
+ | 'ad'
6760
+ | 'ae'
6761
+ | 'af'
6762
+ | 'ag'
6763
+ | 'al'
6764
+ | 'am'
6765
+ | 'ao'
6766
+ | 'au'
6767
+ | 'br'
6768
+ | 'ca'
6769
+ | 'cn'
6770
+ | 'de'
6771
+ | 'dz'
6772
+ | 'es'
6773
+ | 'fr'
6774
+ | 'gb'
6775
+ | 'hk'
6776
+ | 'in'
6777
+ | 'it'
6778
+ | 'jp'
6779
+ | 'kr'
6780
+ | 'nl'
6781
+ | 'sg'
6782
+ | 'tw'
6783
+ | 'us';
6009
6784
  };
6010
6785
 
6011
6786
  export type ReviewControllerGetStatsResponse = ReviewStatsDto;
@@ -6018,7 +6793,32 @@ export type ReviewControllerFindOneData = {
6018
6793
  /**
6019
6794
  * Region code for tenant context
6020
6795
  */
6021
- region: 'cn' | 'us' | 'de' | 'gb';
6796
+ region:
6797
+ | 'ad'
6798
+ | 'ae'
6799
+ | 'af'
6800
+ | 'ag'
6801
+ | 'al'
6802
+ | 'am'
6803
+ | 'ao'
6804
+ | 'au'
6805
+ | 'br'
6806
+ | 'ca'
6807
+ | 'cn'
6808
+ | 'de'
6809
+ | 'dz'
6810
+ | 'es'
6811
+ | 'fr'
6812
+ | 'gb'
6813
+ | 'hk'
6814
+ | 'in'
6815
+ | 'it'
6816
+ | 'jp'
6817
+ | 'kr'
6818
+ | 'nl'
6819
+ | 'sg'
6820
+ | 'tw'
6821
+ | 'us';
6022
6822
  };
6023
6823
 
6024
6824
  export type ReviewControllerFindOneResponse = ReviewDetailDto;
@@ -6031,7 +6831,32 @@ export type ReviewControllerResolveData = {
6031
6831
  /**
6032
6832
  * Region code for tenant context
6033
6833
  */
6034
- region: 'cn' | 'us' | 'de' | 'gb';
6834
+ region:
6835
+ | 'ad'
6836
+ | 'ae'
6837
+ | 'af'
6838
+ | 'ag'
6839
+ | 'al'
6840
+ | 'am'
6841
+ | 'ao'
6842
+ | 'au'
6843
+ | 'br'
6844
+ | 'ca'
6845
+ | 'cn'
6846
+ | 'de'
6847
+ | 'dz'
6848
+ | 'es'
6849
+ | 'fr'
6850
+ | 'gb'
6851
+ | 'hk'
6852
+ | 'in'
6853
+ | 'it'
6854
+ | 'jp'
6855
+ | 'kr'
6856
+ | 'nl'
6857
+ | 'sg'
6858
+ | 'tw'
6859
+ | 'us';
6035
6860
  requestBody: ResolveReviewDto;
6036
6861
  };
6037
6862
 
@@ -6045,7 +6870,32 @@ export type ReviewControllerUndoData = {
6045
6870
  /**
6046
6871
  * Region code for tenant context
6047
6872
  */
6048
- region: 'cn' | 'us' | 'de' | 'gb';
6873
+ region:
6874
+ | 'ad'
6875
+ | 'ae'
6876
+ | 'af'
6877
+ | 'ag'
6878
+ | 'al'
6879
+ | 'am'
6880
+ | 'ao'
6881
+ | 'au'
6882
+ | 'br'
6883
+ | 'ca'
6884
+ | 'cn'
6885
+ | 'de'
6886
+ | 'dz'
6887
+ | 'es'
6888
+ | 'fr'
6889
+ | 'gb'
6890
+ | 'hk'
6891
+ | 'in'
6892
+ | 'it'
6893
+ | 'jp'
6894
+ | 'kr'
6895
+ | 'nl'
6896
+ | 'sg'
6897
+ | 'tw'
6898
+ | 'us';
6049
6899
  };
6050
6900
 
6051
6901
  export type ReviewControllerUndoResponse = UndoResultDto;
@@ -6054,7 +6904,32 @@ export type ReviewControllerBatchResolveData = {
6054
6904
  /**
6055
6905
  * Region code for tenant context
6056
6906
  */
6057
- region: 'cn' | 'us' | 'de' | 'gb';
6907
+ region:
6908
+ | 'ad'
6909
+ | 'ae'
6910
+ | 'af'
6911
+ | 'ag'
6912
+ | 'al'
6913
+ | 'am'
6914
+ | 'ao'
6915
+ | 'au'
6916
+ | 'br'
6917
+ | 'ca'
6918
+ | 'cn'
6919
+ | 'de'
6920
+ | 'dz'
6921
+ | 'es'
6922
+ | 'fr'
6923
+ | 'gb'
6924
+ | 'hk'
6925
+ | 'in'
6926
+ | 'it'
6927
+ | 'jp'
6928
+ | 'kr'
6929
+ | 'nl'
6930
+ | 'sg'
6931
+ | 'tw'
6932
+ | 'us';
6058
6933
  /**
6059
6934
  * Batch resolution request containing review IDs and action
6060
6935
  */
@@ -6255,7 +7130,32 @@ export type CommodityControllerCreateData = {
6255
7130
  /**
6256
7131
  * Region code for tenant context
6257
7132
  */
6258
- region: 'cn' | 'us' | 'de' | 'gb';
7133
+ region:
7134
+ | 'ad'
7135
+ | 'ae'
7136
+ | 'af'
7137
+ | 'ag'
7138
+ | 'al'
7139
+ | 'am'
7140
+ | 'ao'
7141
+ | 'au'
7142
+ | 'br'
7143
+ | 'ca'
7144
+ | 'cn'
7145
+ | 'de'
7146
+ | 'dz'
7147
+ | 'es'
7148
+ | 'fr'
7149
+ | 'gb'
7150
+ | 'hk'
7151
+ | 'in'
7152
+ | 'it'
7153
+ | 'jp'
7154
+ | 'kr'
7155
+ | 'nl'
7156
+ | 'sg'
7157
+ | 'tw'
7158
+ | 'us';
6259
7159
  requestBody: CreateCommodityDto;
6260
7160
  };
6261
7161
 
@@ -6265,7 +7165,32 @@ export type CommodityControllerFindAllData = {
6265
7165
  /**
6266
7166
  * Region code for tenant context
6267
7167
  */
6268
- region: 'cn' | 'us' | 'de' | 'gb';
7168
+ region:
7169
+ | 'ad'
7170
+ | 'ae'
7171
+ | 'af'
7172
+ | 'ag'
7173
+ | 'al'
7174
+ | 'am'
7175
+ | 'ao'
7176
+ | 'au'
7177
+ | 'br'
7178
+ | 'ca'
7179
+ | 'cn'
7180
+ | 'de'
7181
+ | 'dz'
7182
+ | 'es'
7183
+ | 'fr'
7184
+ | 'gb'
7185
+ | 'hk'
7186
+ | 'in'
7187
+ | 'it'
7188
+ | 'jp'
7189
+ | 'kr'
7190
+ | 'nl'
7191
+ | 'sg'
7192
+ | 'tw'
7193
+ | 'us';
6269
7194
  /**
6270
7195
  * Search term for symbol or metadata fields (partial match). Searches symbol and metadata.name.
6271
7196
  */
@@ -6282,7 +7207,32 @@ export type CommodityControllerFindOneData = {
6282
7207
  /**
6283
7208
  * Region code for tenant context
6284
7209
  */
6285
- region: 'cn' | 'us' | 'de' | 'gb';
7210
+ region:
7211
+ | 'ad'
7212
+ | 'ae'
7213
+ | 'af'
7214
+ | 'ag'
7215
+ | 'al'
7216
+ | 'am'
7217
+ | 'ao'
7218
+ | 'au'
7219
+ | 'br'
7220
+ | 'ca'
7221
+ | 'cn'
7222
+ | 'de'
7223
+ | 'dz'
7224
+ | 'es'
7225
+ | 'fr'
7226
+ | 'gb'
7227
+ | 'hk'
7228
+ | 'in'
7229
+ | 'it'
7230
+ | 'jp'
7231
+ | 'kr'
7232
+ | 'nl'
7233
+ | 'sg'
7234
+ | 'tw'
7235
+ | 'us';
6286
7236
  /**
6287
7237
  * Commodity symbol
6288
7238
  */
@@ -6295,7 +7245,32 @@ export type CommodityControllerUpdateData = {
6295
7245
  /**
6296
7246
  * Region code for tenant context
6297
7247
  */
6298
- region: 'cn' | 'us' | 'de' | 'gb';
7248
+ region:
7249
+ | 'ad'
7250
+ | 'ae'
7251
+ | 'af'
7252
+ | 'ag'
7253
+ | 'al'
7254
+ | 'am'
7255
+ | 'ao'
7256
+ | 'au'
7257
+ | 'br'
7258
+ | 'ca'
7259
+ | 'cn'
7260
+ | 'de'
7261
+ | 'dz'
7262
+ | 'es'
7263
+ | 'fr'
7264
+ | 'gb'
7265
+ | 'hk'
7266
+ | 'in'
7267
+ | 'it'
7268
+ | 'jp'
7269
+ | 'kr'
7270
+ | 'nl'
7271
+ | 'sg'
7272
+ | 'tw'
7273
+ | 'us';
6299
7274
  requestBody: UpdateCommodityDto;
6300
7275
  /**
6301
7276
  * Commodity symbol
@@ -6309,7 +7284,32 @@ export type CommodityControllerDeleteData = {
6309
7284
  /**
6310
7285
  * Region code for tenant context
6311
7286
  */
6312
- region: 'cn' | 'us' | 'de' | 'gb';
7287
+ region:
7288
+ | 'ad'
7289
+ | 'ae'
7290
+ | 'af'
7291
+ | 'ag'
7292
+ | 'al'
7293
+ | 'am'
7294
+ | 'ao'
7295
+ | 'au'
7296
+ | 'br'
7297
+ | 'ca'
7298
+ | 'cn'
7299
+ | 'de'
7300
+ | 'dz'
7301
+ | 'es'
7302
+ | 'fr'
7303
+ | 'gb'
7304
+ | 'hk'
7305
+ | 'in'
7306
+ | 'it'
7307
+ | 'jp'
7308
+ | 'kr'
7309
+ | 'nl'
7310
+ | 'sg'
7311
+ | 'tw'
7312
+ | 'us';
6313
7313
  /**
6314
7314
  * Commodity symbol
6315
7315
  */
@@ -6322,7 +7322,32 @@ export type CommodityControllerGetOrCreateData = {
6322
7322
  /**
6323
7323
  * Region code for tenant context
6324
7324
  */
6325
- region: 'cn' | 'us' | 'de' | 'gb';
7325
+ region:
7326
+ | 'ad'
7327
+ | 'ae'
7328
+ | 'af'
7329
+ | 'ag'
7330
+ | 'al'
7331
+ | 'am'
7332
+ | 'ao'
7333
+ | 'au'
7334
+ | 'br'
7335
+ | 'ca'
7336
+ | 'cn'
7337
+ | 'de'
7338
+ | 'dz'
7339
+ | 'es'
7340
+ | 'fr'
7341
+ | 'gb'
7342
+ | 'hk'
7343
+ | 'in'
7344
+ | 'it'
7345
+ | 'jp'
7346
+ | 'kr'
7347
+ | 'nl'
7348
+ | 'sg'
7349
+ | 'tw'
7350
+ | 'us';
6326
7351
  /**
6327
7352
  * Commodity symbol
6328
7353
  */
@@ -6335,7 +7360,32 @@ export type CommodityControllerBulkCreateData = {
6335
7360
  /**
6336
7361
  * Region code for tenant context
6337
7362
  */
6338
- region: 'cn' | 'us' | 'de' | 'gb';
7363
+ region:
7364
+ | 'ad'
7365
+ | 'ae'
7366
+ | 'af'
7367
+ | 'ag'
7368
+ | 'al'
7369
+ | 'am'
7370
+ | 'ao'
7371
+ | 'au'
7372
+ | 'br'
7373
+ | 'ca'
7374
+ | 'cn'
7375
+ | 'de'
7376
+ | 'dz'
7377
+ | 'es'
7378
+ | 'fr'
7379
+ | 'gb'
7380
+ | 'hk'
7381
+ | 'in'
7382
+ | 'it'
7383
+ | 'jp'
7384
+ | 'kr'
7385
+ | 'nl'
7386
+ | 'sg'
7387
+ | 'tw'
7388
+ | 'us';
6339
7389
  };
6340
7390
 
6341
7391
  export type CommodityControllerBulkCreateResponse = Array<CommodityResponseDto>;
@@ -6344,7 +7394,32 @@ export type PriceControllerCreateData = {
6344
7394
  /**
6345
7395
  * Region code for tenant context
6346
7396
  */
6347
- region: 'cn' | 'us' | 'de' | 'gb';
7397
+ region:
7398
+ | 'ad'
7399
+ | 'ae'
7400
+ | 'af'
7401
+ | 'ag'
7402
+ | 'al'
7403
+ | 'am'
7404
+ | 'ao'
7405
+ | 'au'
7406
+ | 'br'
7407
+ | 'ca'
7408
+ | 'cn'
7409
+ | 'de'
7410
+ | 'dz'
7411
+ | 'es'
7412
+ | 'fr'
7413
+ | 'gb'
7414
+ | 'hk'
7415
+ | 'in'
7416
+ | 'it'
7417
+ | 'jp'
7418
+ | 'kr'
7419
+ | 'nl'
7420
+ | 'sg'
7421
+ | 'tw'
7422
+ | 'us';
6348
7423
  requestBody: CreateBeanPriceDto;
6349
7424
  };
6350
7425
 
@@ -6378,7 +7453,32 @@ export type PriceControllerFindAllData = {
6378
7453
  /**
6379
7454
  * Region code for tenant context
6380
7455
  */
6381
- region: 'cn' | 'us' | 'de' | 'gb';
7456
+ region:
7457
+ | 'ad'
7458
+ | 'ae'
7459
+ | 'af'
7460
+ | 'ag'
7461
+ | 'al'
7462
+ | 'am'
7463
+ | 'ao'
7464
+ | 'au'
7465
+ | 'br'
7466
+ | 'ca'
7467
+ | 'cn'
7468
+ | 'de'
7469
+ | 'dz'
7470
+ | 'es'
7471
+ | 'fr'
7472
+ | 'gb'
7473
+ | 'hk'
7474
+ | 'in'
7475
+ | 'it'
7476
+ | 'jp'
7477
+ | 'kr'
7478
+ | 'nl'
7479
+ | 'sg'
7480
+ | 'tw'
7481
+ | 'us';
6382
7482
  /**
6383
7483
  * Search term for currency or quoteCurrency (case-insensitive partial match)
6384
7484
  */
@@ -6395,7 +7495,32 @@ export type PriceControllerFindOneData = {
6395
7495
  /**
6396
7496
  * Region code for tenant context
6397
7497
  */
6398
- region: 'cn' | 'us' | 'de' | 'gb';
7498
+ region:
7499
+ | 'ad'
7500
+ | 'ae'
7501
+ | 'af'
7502
+ | 'ag'
7503
+ | 'al'
7504
+ | 'am'
7505
+ | 'ao'
7506
+ | 'au'
7507
+ | 'br'
7508
+ | 'ca'
7509
+ | 'cn'
7510
+ | 'de'
7511
+ | 'dz'
7512
+ | 'es'
7513
+ | 'fr'
7514
+ | 'gb'
7515
+ | 'hk'
7516
+ | 'in'
7517
+ | 'it'
7518
+ | 'jp'
7519
+ | 'kr'
7520
+ | 'nl'
7521
+ | 'sg'
7522
+ | 'tw'
7523
+ | 'us';
6399
7524
  };
6400
7525
 
6401
7526
  export type PriceControllerFindOneResponse = PriceResponseDto;
@@ -6408,7 +7533,32 @@ export type PriceControllerUpdateData = {
6408
7533
  /**
6409
7534
  * Region code for tenant context
6410
7535
  */
6411
- region: 'cn' | 'us' | 'de' | 'gb';
7536
+ region:
7537
+ | 'ad'
7538
+ | 'ae'
7539
+ | 'af'
7540
+ | 'ag'
7541
+ | 'al'
7542
+ | 'am'
7543
+ | 'ao'
7544
+ | 'au'
7545
+ | 'br'
7546
+ | 'ca'
7547
+ | 'cn'
7548
+ | 'de'
7549
+ | 'dz'
7550
+ | 'es'
7551
+ | 'fr'
7552
+ | 'gb'
7553
+ | 'hk'
7554
+ | 'in'
7555
+ | 'it'
7556
+ | 'jp'
7557
+ | 'kr'
7558
+ | 'nl'
7559
+ | 'sg'
7560
+ | 'tw'
7561
+ | 'us';
6412
7562
  requestBody: UpdateBeanPriceDto;
6413
7563
  };
6414
7564
 
@@ -6422,7 +7572,32 @@ export type PriceControllerDeleteData = {
6422
7572
  /**
6423
7573
  * Region code for tenant context
6424
7574
  */
6425
- region: 'cn' | 'us' | 'de' | 'gb';
7575
+ region:
7576
+ | 'ad'
7577
+ | 'ae'
7578
+ | 'af'
7579
+ | 'ag'
7580
+ | 'al'
7581
+ | 'am'
7582
+ | 'ao'
7583
+ | 'au'
7584
+ | 'br'
7585
+ | 'ca'
7586
+ | 'cn'
7587
+ | 'de'
7588
+ | 'dz'
7589
+ | 'es'
7590
+ | 'fr'
7591
+ | 'gb'
7592
+ | 'hk'
7593
+ | 'in'
7594
+ | 'it'
7595
+ | 'jp'
7596
+ | 'kr'
7597
+ | 'nl'
7598
+ | 'sg'
7599
+ | 'tw'
7600
+ | 'us';
6426
7601
  };
6427
7602
 
6428
7603
  export type PriceControllerDeleteResponse = void;
@@ -6431,7 +7606,32 @@ export type PriceControllerBulkCreateData = {
6431
7606
  /**
6432
7607
  * Region code for tenant context
6433
7608
  */
6434
- region: 'cn' | 'us' | 'de' | 'gb';
7609
+ region:
7610
+ | 'ad'
7611
+ | 'ae'
7612
+ | 'af'
7613
+ | 'ag'
7614
+ | 'al'
7615
+ | 'am'
7616
+ | 'ao'
7617
+ | 'au'
7618
+ | 'br'
7619
+ | 'ca'
7620
+ | 'cn'
7621
+ | 'de'
7622
+ | 'dz'
7623
+ | 'es'
7624
+ | 'fr'
7625
+ | 'gb'
7626
+ | 'hk'
7627
+ | 'in'
7628
+ | 'it'
7629
+ | 'jp'
7630
+ | 'kr'
7631
+ | 'nl'
7632
+ | 'sg'
7633
+ | 'tw'
7634
+ | 'us';
6435
7635
  requestBody: Array<string>;
6436
7636
  };
6437
7637
 
@@ -6441,7 +7641,32 @@ export type RecurringRuleControllerCreateData = {
6441
7641
  /**
6442
7642
  * Region code for tenant context
6443
7643
  */
6444
- region: 'cn' | 'us' | 'de' | 'gb';
7644
+ region:
7645
+ | 'ad'
7646
+ | 'ae'
7647
+ | 'af'
7648
+ | 'ag'
7649
+ | 'al'
7650
+ | 'am'
7651
+ | 'ao'
7652
+ | 'au'
7653
+ | 'br'
7654
+ | 'ca'
7655
+ | 'cn'
7656
+ | 'de'
7657
+ | 'dz'
7658
+ | 'es'
7659
+ | 'fr'
7660
+ | 'gb'
7661
+ | 'hk'
7662
+ | 'in'
7663
+ | 'it'
7664
+ | 'jp'
7665
+ | 'kr'
7666
+ | 'nl'
7667
+ | 'sg'
7668
+ | 'tw'
7669
+ | 'us';
6445
7670
  requestBody: CreateRecurringRuleDto;
6446
7671
  };
6447
7672
 
@@ -6463,7 +7688,32 @@ export type RecurringRuleControllerFindAllData = {
6463
7688
  /**
6464
7689
  * Region code for tenant context
6465
7690
  */
6466
- region: 'cn' | 'us' | 'de' | 'gb';
7691
+ region:
7692
+ | 'ad'
7693
+ | 'ae'
7694
+ | 'af'
7695
+ | 'ag'
7696
+ | 'al'
7697
+ | 'am'
7698
+ | 'ao'
7699
+ | 'au'
7700
+ | 'br'
7701
+ | 'ca'
7702
+ | 'cn'
7703
+ | 'de'
7704
+ | 'dz'
7705
+ | 'es'
7706
+ | 'fr'
7707
+ | 'gb'
7708
+ | 'hk'
7709
+ | 'in'
7710
+ | 'it'
7711
+ | 'jp'
7712
+ | 'kr'
7713
+ | 'nl'
7714
+ | 'sg'
7715
+ | 'tw'
7716
+ | 'us';
6467
7717
  };
6468
7718
 
6469
7719
  export type RecurringRuleControllerFindAllResponse =
@@ -6473,7 +7723,32 @@ export type RecurringRuleControllerCreateFromTransactionData = {
6473
7723
  /**
6474
7724
  * Region code for tenant context
6475
7725
  */
6476
- region: 'cn' | 'us' | 'de' | 'gb';
7726
+ region:
7727
+ | 'ad'
7728
+ | 'ae'
7729
+ | 'af'
7730
+ | 'ag'
7731
+ | 'al'
7732
+ | 'am'
7733
+ | 'ao'
7734
+ | 'au'
7735
+ | 'br'
7736
+ | 'ca'
7737
+ | 'cn'
7738
+ | 'de'
7739
+ | 'dz'
7740
+ | 'es'
7741
+ | 'fr'
7742
+ | 'gb'
7743
+ | 'hk'
7744
+ | 'in'
7745
+ | 'it'
7746
+ | 'jp'
7747
+ | 'kr'
7748
+ | 'nl'
7749
+ | 'sg'
7750
+ | 'tw'
7751
+ | 'us';
6477
7752
  requestBody: CreateRuleFromTransactionDto;
6478
7753
  /**
6479
7754
  * Source transaction ID
@@ -6492,7 +7767,32 @@ export type RecurringRuleControllerFindOneData = {
6492
7767
  /**
6493
7768
  * Region code for tenant context
6494
7769
  */
6495
- region: 'cn' | 'us' | 'de' | 'gb';
7770
+ region:
7771
+ | 'ad'
7772
+ | 'ae'
7773
+ | 'af'
7774
+ | 'ag'
7775
+ | 'al'
7776
+ | 'am'
7777
+ | 'ao'
7778
+ | 'au'
7779
+ | 'br'
7780
+ | 'ca'
7781
+ | 'cn'
7782
+ | 'de'
7783
+ | 'dz'
7784
+ | 'es'
7785
+ | 'fr'
7786
+ | 'gb'
7787
+ | 'hk'
7788
+ | 'in'
7789
+ | 'it'
7790
+ | 'jp'
7791
+ | 'kr'
7792
+ | 'nl'
7793
+ | 'sg'
7794
+ | 'tw'
7795
+ | 'us';
6496
7796
  };
6497
7797
 
6498
7798
  export type RecurringRuleControllerFindOneResponse = RecurringRuleResponseDto;
@@ -6505,7 +7805,32 @@ export type RecurringRuleControllerUpdateData = {
6505
7805
  /**
6506
7806
  * Region code for tenant context
6507
7807
  */
6508
- region: 'cn' | 'us' | 'de' | 'gb';
7808
+ region:
7809
+ | 'ad'
7810
+ | 'ae'
7811
+ | 'af'
7812
+ | 'ag'
7813
+ | 'al'
7814
+ | 'am'
7815
+ | 'ao'
7816
+ | 'au'
7817
+ | 'br'
7818
+ | 'ca'
7819
+ | 'cn'
7820
+ | 'de'
7821
+ | 'dz'
7822
+ | 'es'
7823
+ | 'fr'
7824
+ | 'gb'
7825
+ | 'hk'
7826
+ | 'in'
7827
+ | 'it'
7828
+ | 'jp'
7829
+ | 'kr'
7830
+ | 'nl'
7831
+ | 'sg'
7832
+ | 'tw'
7833
+ | 'us';
6509
7834
  requestBody: UpdateRecurringRuleDto;
6510
7835
  };
6511
7836
 
@@ -6519,7 +7844,32 @@ export type RecurringRuleControllerDeleteData = {
6519
7844
  /**
6520
7845
  * Region code for tenant context
6521
7846
  */
6522
- region: 'cn' | 'us' | 'de' | 'gb';
7847
+ region:
7848
+ | 'ad'
7849
+ | 'ae'
7850
+ | 'af'
7851
+ | 'ag'
7852
+ | 'al'
7853
+ | 'am'
7854
+ | 'ao'
7855
+ | 'au'
7856
+ | 'br'
7857
+ | 'ca'
7858
+ | 'cn'
7859
+ | 'de'
7860
+ | 'dz'
7861
+ | 'es'
7862
+ | 'fr'
7863
+ | 'gb'
7864
+ | 'hk'
7865
+ | 'in'
7866
+ | 'it'
7867
+ | 'jp'
7868
+ | 'kr'
7869
+ | 'nl'
7870
+ | 'sg'
7871
+ | 'tw'
7872
+ | 'us';
6523
7873
  };
6524
7874
 
6525
7875
  export type RecurringRuleControllerDeleteResponse = void;
@@ -6532,7 +7882,32 @@ export type RecurringRuleControllerGetWithStatsData = {
6532
7882
  /**
6533
7883
  * Region code for tenant context
6534
7884
  */
6535
- region: 'cn' | 'us' | 'de' | 'gb';
7885
+ region:
7886
+ | 'ad'
7887
+ | 'ae'
7888
+ | 'af'
7889
+ | 'ag'
7890
+ | 'al'
7891
+ | 'am'
7892
+ | 'ao'
7893
+ | 'au'
7894
+ | 'br'
7895
+ | 'ca'
7896
+ | 'cn'
7897
+ | 'de'
7898
+ | 'dz'
7899
+ | 'es'
7900
+ | 'fr'
7901
+ | 'gb'
7902
+ | 'hk'
7903
+ | 'in'
7904
+ | 'it'
7905
+ | 'jp'
7906
+ | 'kr'
7907
+ | 'nl'
7908
+ | 'sg'
7909
+ | 'tw'
7910
+ | 'us';
6536
7911
  };
6537
7912
 
6538
7913
  export type RecurringRuleControllerGetWithStatsResponse =
@@ -6546,7 +7921,32 @@ export type ExpectedTransactionControllerFindAllData = {
6546
7921
  /**
6547
7922
  * Region code for tenant context
6548
7923
  */
6549
- region: 'cn' | 'us' | 'de' | 'gb';
7924
+ region:
7925
+ | 'ad'
7926
+ | 'ae'
7927
+ | 'af'
7928
+ | 'ag'
7929
+ | 'al'
7930
+ | 'am'
7931
+ | 'ao'
7932
+ | 'au'
7933
+ | 'br'
7934
+ | 'ca'
7935
+ | 'cn'
7936
+ | 'de'
7937
+ | 'dz'
7938
+ | 'es'
7939
+ | 'fr'
7940
+ | 'gb'
7941
+ | 'hk'
7942
+ | 'in'
7943
+ | 'it'
7944
+ | 'jp'
7945
+ | 'kr'
7946
+ | 'nl'
7947
+ | 'sg'
7948
+ | 'tw'
7949
+ | 'us';
6550
7950
  /**
6551
7951
  * Filter by recurring rule ID
6552
7952
  */
@@ -6568,7 +7968,32 @@ export type ExpectedTransactionControllerFindOverdueData = {
6568
7968
  /**
6569
7969
  * Region code for tenant context
6570
7970
  */
6571
- region: 'cn' | 'us' | 'de' | 'gb';
7971
+ region:
7972
+ | 'ad'
7973
+ | 'ae'
7974
+ | 'af'
7975
+ | 'ag'
7976
+ | 'al'
7977
+ | 'am'
7978
+ | 'ao'
7979
+ | 'au'
7980
+ | 'br'
7981
+ | 'ca'
7982
+ | 'cn'
7983
+ | 'de'
7984
+ | 'dz'
7985
+ | 'es'
7986
+ | 'fr'
7987
+ | 'gb'
7988
+ | 'hk'
7989
+ | 'in'
7990
+ | 'it'
7991
+ | 'jp'
7992
+ | 'kr'
7993
+ | 'nl'
7994
+ | 'sg'
7995
+ | 'tw'
7996
+ | 'us';
6572
7997
  };
6573
7998
 
6574
7999
  export type ExpectedTransactionControllerFindOverdueResponse =
@@ -6582,7 +8007,32 @@ export type ExpectedTransactionControllerFindOneData = {
6582
8007
  /**
6583
8008
  * Region code for tenant context
6584
8009
  */
6585
- region: 'cn' | 'us' | 'de' | 'gb';
8010
+ region:
8011
+ | 'ad'
8012
+ | 'ae'
8013
+ | 'af'
8014
+ | 'ag'
8015
+ | 'al'
8016
+ | 'am'
8017
+ | 'ao'
8018
+ | 'au'
8019
+ | 'br'
8020
+ | 'ca'
8021
+ | 'cn'
8022
+ | 'de'
8023
+ | 'dz'
8024
+ | 'es'
8025
+ | 'fr'
8026
+ | 'gb'
8027
+ | 'hk'
8028
+ | 'in'
8029
+ | 'it'
8030
+ | 'jp'
8031
+ | 'kr'
8032
+ | 'nl'
8033
+ | 'sg'
8034
+ | 'tw'
8035
+ | 'us';
6586
8036
  };
6587
8037
 
6588
8038
  export type ExpectedTransactionControllerFindOneResponse =
@@ -6596,7 +8046,32 @@ export type ExpectedTransactionControllerSkipData = {
6596
8046
  /**
6597
8047
  * Region code for tenant context
6598
8048
  */
6599
- region: 'cn' | 'us' | 'de' | 'gb';
8049
+ region:
8050
+ | 'ad'
8051
+ | 'ae'
8052
+ | 'af'
8053
+ | 'ag'
8054
+ | 'al'
8055
+ | 'am'
8056
+ | 'ao'
8057
+ | 'au'
8058
+ | 'br'
8059
+ | 'ca'
8060
+ | 'cn'
8061
+ | 'de'
8062
+ | 'dz'
8063
+ | 'es'
8064
+ | 'fr'
8065
+ | 'gb'
8066
+ | 'hk'
8067
+ | 'in'
8068
+ | 'it'
8069
+ | 'jp'
8070
+ | 'kr'
8071
+ | 'nl'
8072
+ | 'sg'
8073
+ | 'tw'
8074
+ | 'us';
6600
8075
  };
6601
8076
 
6602
8077
  export type ExpectedTransactionControllerSkipResponse =
@@ -6610,7 +8085,32 @@ export type ExpectedTransactionControllerUndoSkipData = {
6610
8085
  /**
6611
8086
  * Region code for tenant context
6612
8087
  */
6613
- region: 'cn' | 'us' | 'de' | 'gb';
8088
+ region:
8089
+ | 'ad'
8090
+ | 'ae'
8091
+ | 'af'
8092
+ | 'ag'
8093
+ | 'al'
8094
+ | 'am'
8095
+ | 'ao'
8096
+ | 'au'
8097
+ | 'br'
8098
+ | 'ca'
8099
+ | 'cn'
8100
+ | 'de'
8101
+ | 'dz'
8102
+ | 'es'
8103
+ | 'fr'
8104
+ | 'gb'
8105
+ | 'hk'
8106
+ | 'in'
8107
+ | 'it'
8108
+ | 'jp'
8109
+ | 'kr'
8110
+ | 'nl'
8111
+ | 'sg'
8112
+ | 'tw'
8113
+ | 'us';
6614
8114
  };
6615
8115
 
6616
8116
  export type ExpectedTransactionControllerUndoSkipResponse =
@@ -6624,7 +8124,32 @@ export type ExpectedTransactionControllerConfirmMatchData = {
6624
8124
  /**
6625
8125
  * Region code for tenant context
6626
8126
  */
6627
- region: 'cn' | 'us' | 'de' | 'gb';
8127
+ region:
8128
+ | 'ad'
8129
+ | 'ae'
8130
+ | 'af'
8131
+ | 'ag'
8132
+ | 'al'
8133
+ | 'am'
8134
+ | 'ao'
8135
+ | 'au'
8136
+ | 'br'
8137
+ | 'ca'
8138
+ | 'cn'
8139
+ | 'de'
8140
+ | 'dz'
8141
+ | 'es'
8142
+ | 'fr'
8143
+ | 'gb'
8144
+ | 'hk'
8145
+ | 'in'
8146
+ | 'it'
8147
+ | 'jp'
8148
+ | 'kr'
8149
+ | 'nl'
8150
+ | 'sg'
8151
+ | 'tw'
8152
+ | 'us';
6628
8153
  requestBody: ConfirmMatchDto;
6629
8154
  };
6630
8155
 
@@ -6638,7 +8163,32 @@ export type ExpectedTransactionControllerUnmatchData = {
6638
8163
  /**
6639
8164
  * Region code for tenant context
6640
8165
  */
6641
- region: 'cn' | 'us' | 'de' | 'gb';
8166
+ region:
8167
+ | 'ad'
8168
+ | 'ae'
8169
+ | 'af'
8170
+ | 'ag'
8171
+ | 'al'
8172
+ | 'am'
8173
+ | 'ao'
8174
+ | 'au'
8175
+ | 'br'
8176
+ | 'ca'
8177
+ | 'cn'
8178
+ | 'de'
8179
+ | 'dz'
8180
+ | 'es'
8181
+ | 'fr'
8182
+ | 'gb'
8183
+ | 'hk'
8184
+ | 'in'
8185
+ | 'it'
8186
+ | 'jp'
8187
+ | 'kr'
8188
+ | 'nl'
8189
+ | 'sg'
8190
+ | 'tw'
8191
+ | 'us';
6642
8192
  };
6643
8193
 
6644
8194
  export type ExpectedTransactionControllerUnmatchResponse = unknown;
@@ -6651,7 +8201,32 @@ export type ExpectedTransactionControllerEnterNowData = {
6651
8201
  /**
6652
8202
  * Region code for tenant context
6653
8203
  */
6654
- region: 'cn' | 'us' | 'de' | 'gb';
8204
+ region:
8205
+ | 'ad'
8206
+ | 'ae'
8207
+ | 'af'
8208
+ | 'ag'
8209
+ | 'al'
8210
+ | 'am'
8211
+ | 'ao'
8212
+ | 'au'
8213
+ | 'br'
8214
+ | 'ca'
8215
+ | 'cn'
8216
+ | 'de'
8217
+ | 'dz'
8218
+ | 'es'
8219
+ | 'fr'
8220
+ | 'gb'
8221
+ | 'hk'
8222
+ | 'in'
8223
+ | 'it'
8224
+ | 'jp'
8225
+ | 'kr'
8226
+ | 'nl'
8227
+ | 'sg'
8228
+ | 'tw'
8229
+ | 'us';
6655
8230
  requestBody: EnterNowDto;
6656
8231
  };
6657
8232
 
@@ -6665,7 +8240,32 @@ export type ForecastControllerGetForecastData = {
6665
8240
  /**
6666
8241
  * Region code for tenant context
6667
8242
  */
6668
- region: 'cn' | 'us' | 'de' | 'gb';
8243
+ region:
8244
+ | 'ad'
8245
+ | 'ae'
8246
+ | 'af'
8247
+ | 'ag'
8248
+ | 'al'
8249
+ | 'am'
8250
+ | 'ao'
8251
+ | 'au'
8252
+ | 'br'
8253
+ | 'ca'
8254
+ | 'cn'
8255
+ | 'de'
8256
+ | 'dz'
8257
+ | 'es'
8258
+ | 'fr'
8259
+ | 'gb'
8260
+ | 'hk'
8261
+ | 'in'
8262
+ | 'it'
8263
+ | 'jp'
8264
+ | 'kr'
8265
+ | 'nl'
8266
+ | 'sg'
8267
+ | 'tw'
8268
+ | 'us';
6669
8269
  };
6670
8270
 
6671
8271
  export type ForecastControllerGetForecastResponse = ForecastResponseDto;
@@ -6682,7 +8282,32 @@ export type ReportingControllerGetPortfolioTrendsData = {
6682
8282
  /**
6683
8283
  * Region code for tenant context
6684
8284
  */
6685
- region: 'cn' | 'us' | 'de' | 'gb';
8285
+ region:
8286
+ | 'ad'
8287
+ | 'ae'
8288
+ | 'af'
8289
+ | 'ag'
8290
+ | 'al'
8291
+ | 'am'
8292
+ | 'ao'
8293
+ | 'au'
8294
+ | 'br'
8295
+ | 'ca'
8296
+ | 'cn'
8297
+ | 'de'
8298
+ | 'dz'
8299
+ | 'es'
8300
+ | 'fr'
8301
+ | 'gb'
8302
+ | 'hk'
8303
+ | 'in'
8304
+ | 'it'
8305
+ | 'jp'
8306
+ | 'kr'
8307
+ | 'nl'
8308
+ | 'sg'
8309
+ | 'tw'
8310
+ | 'us';
6686
8311
  };
6687
8312
 
6688
8313
  export type ReportingControllerGetPortfolioTrendsResponse =
@@ -6700,7 +8325,32 @@ export type ReportingControllerGetCashFlowTrendsData = {
6700
8325
  /**
6701
8326
  * Region code for tenant context
6702
8327
  */
6703
- region: 'cn' | 'us' | 'de' | 'gb';
8328
+ region:
8329
+ | 'ad'
8330
+ | 'ae'
8331
+ | 'af'
8332
+ | 'ag'
8333
+ | 'al'
8334
+ | 'am'
8335
+ | 'ao'
8336
+ | 'au'
8337
+ | 'br'
8338
+ | 'ca'
8339
+ | 'cn'
8340
+ | 'de'
8341
+ | 'dz'
8342
+ | 'es'
8343
+ | 'fr'
8344
+ | 'gb'
8345
+ | 'hk'
8346
+ | 'in'
8347
+ | 'it'
8348
+ | 'jp'
8349
+ | 'kr'
8350
+ | 'nl'
8351
+ | 'sg'
8352
+ | 'tw'
8353
+ | 'us';
6704
8354
  };
6705
8355
 
6706
8356
  export type ReportingControllerGetCashFlowTrendsResponse =
@@ -6710,7 +8360,32 @@ export type ReportingControllerGenerateSnapshotData = {
6710
8360
  /**
6711
8361
  * Region code for tenant context
6712
8362
  */
6713
- region: 'cn' | 'us' | 'de' | 'gb';
8363
+ region:
8364
+ | 'ad'
8365
+ | 'ae'
8366
+ | 'af'
8367
+ | 'ag'
8368
+ | 'al'
8369
+ | 'am'
8370
+ | 'ao'
8371
+ | 'au'
8372
+ | 'br'
8373
+ | 'ca'
8374
+ | 'cn'
8375
+ | 'de'
8376
+ | 'dz'
8377
+ | 'es'
8378
+ | 'fr'
8379
+ | 'gb'
8380
+ | 'hk'
8381
+ | 'in'
8382
+ | 'it'
8383
+ | 'jp'
8384
+ | 'kr'
8385
+ | 'nl'
8386
+ | 'sg'
8387
+ | 'tw'
8388
+ | 'us';
6714
8389
  /**
6715
8390
  * Optional date (defaults to today)
6716
8391
  */
@@ -6724,7 +8399,32 @@ export type ReportingControllerBackfillSnapshotsData = {
6724
8399
  /**
6725
8400
  * Region code for tenant context
6726
8401
  */
6727
- region: 'cn' | 'us' | 'de' | 'gb';
8402
+ region:
8403
+ | 'ad'
8404
+ | 'ae'
8405
+ | 'af'
8406
+ | 'ag'
8407
+ | 'al'
8408
+ | 'am'
8409
+ | 'ao'
8410
+ | 'au'
8411
+ | 'br'
8412
+ | 'ca'
8413
+ | 'cn'
8414
+ | 'de'
8415
+ | 'dz'
8416
+ | 'es'
8417
+ | 'fr'
8418
+ | 'gb'
8419
+ | 'hk'
8420
+ | 'in'
8421
+ | 'it'
8422
+ | 'jp'
8423
+ | 'kr'
8424
+ | 'nl'
8425
+ | 'sg'
8426
+ | 'tw'
8427
+ | 'us';
6728
8428
  requestBody: BackfillSnapshotsBody;
6729
8429
  };
6730
8430
 
@@ -6822,7 +8522,32 @@ export type TransactionRuleControllerCreateData = {
6822
8522
  /**
6823
8523
  * Region code for tenant context
6824
8524
  */
6825
- region: 'cn' | 'us' | 'de' | 'gb';
8525
+ region:
8526
+ | 'ad'
8527
+ | 'ae'
8528
+ | 'af'
8529
+ | 'ag'
8530
+ | 'al'
8531
+ | 'am'
8532
+ | 'ao'
8533
+ | 'au'
8534
+ | 'br'
8535
+ | 'ca'
8536
+ | 'cn'
8537
+ | 'de'
8538
+ | 'dz'
8539
+ | 'es'
8540
+ | 'fr'
8541
+ | 'gb'
8542
+ | 'hk'
8543
+ | 'in'
8544
+ | 'it'
8545
+ | 'jp'
8546
+ | 'kr'
8547
+ | 'nl'
8548
+ | 'sg'
8549
+ | 'tw'
8550
+ | 'us';
6826
8551
  requestBody: CreateTransactionRuleDto;
6827
8552
  };
6828
8553
 
@@ -6853,7 +8578,32 @@ export type TransactionRuleControllerListData = {
6853
8578
  /**
6854
8579
  * Region code for tenant context
6855
8580
  */
6856
- region: 'cn' | 'us' | 'de' | 'gb';
8581
+ region:
8582
+ | 'ad'
8583
+ | 'ae'
8584
+ | 'af'
8585
+ | 'ag'
8586
+ | 'al'
8587
+ | 'am'
8588
+ | 'ao'
8589
+ | 'au'
8590
+ | 'br'
8591
+ | 'ca'
8592
+ | 'cn'
8593
+ | 'de'
8594
+ | 'dz'
8595
+ | 'es'
8596
+ | 'fr'
8597
+ | 'gb'
8598
+ | 'hk'
8599
+ | 'in'
8600
+ | 'it'
8601
+ | 'jp'
8602
+ | 'kr'
8603
+ | 'nl'
8604
+ | 'sg'
8605
+ | 'tw'
8606
+ | 'us';
6857
8607
  };
6858
8608
 
6859
8609
  export type TransactionRuleControllerListResponse =
@@ -6863,7 +8613,32 @@ export type TransactionRuleControllerValidateData = {
6863
8613
  /**
6864
8614
  * Region code for tenant context
6865
8615
  */
6866
- region: 'cn' | 'us' | 'de' | 'gb';
8616
+ region:
8617
+ | 'ad'
8618
+ | 'ae'
8619
+ | 'af'
8620
+ | 'ag'
8621
+ | 'al'
8622
+ | 'am'
8623
+ | 'ao'
8624
+ | 'au'
8625
+ | 'br'
8626
+ | 'ca'
8627
+ | 'cn'
8628
+ | 'de'
8629
+ | 'dz'
8630
+ | 'es'
8631
+ | 'fr'
8632
+ | 'gb'
8633
+ | 'hk'
8634
+ | 'in'
8635
+ | 'it'
8636
+ | 'jp'
8637
+ | 'kr'
8638
+ | 'nl'
8639
+ | 'sg'
8640
+ | 'tw'
8641
+ | 'us';
6867
8642
  requestBody: ValidateRuleDto;
6868
8643
  };
6869
8644
 
@@ -6873,7 +8648,32 @@ export type TransactionRuleControllerBulkCreateData = {
6873
8648
  /**
6874
8649
  * Region code for tenant context
6875
8650
  */
6876
- region: 'cn' | 'us' | 'de' | 'gb';
8651
+ region:
8652
+ | 'ad'
8653
+ | 'ae'
8654
+ | 'af'
8655
+ | 'ag'
8656
+ | 'al'
8657
+ | 'am'
8658
+ | 'ao'
8659
+ | 'au'
8660
+ | 'br'
8661
+ | 'ca'
8662
+ | 'cn'
8663
+ | 'de'
8664
+ | 'dz'
8665
+ | 'es'
8666
+ | 'fr'
8667
+ | 'gb'
8668
+ | 'hk'
8669
+ | 'in'
8670
+ | 'it'
8671
+ | 'jp'
8672
+ | 'kr'
8673
+ | 'nl'
8674
+ | 'sg'
8675
+ | 'tw'
8676
+ | 'us';
6877
8677
  requestBody: BulkCreateRulesDto;
6878
8678
  };
6879
8679
 
@@ -6888,7 +8688,32 @@ export type TransactionRuleControllerExportData = {
6888
8688
  /**
6889
8689
  * Region code for tenant context
6890
8690
  */
6891
- region: 'cn' | 'us' | 'de' | 'gb';
8691
+ region:
8692
+ | 'ad'
8693
+ | 'ae'
8694
+ | 'af'
8695
+ | 'ag'
8696
+ | 'al'
8697
+ | 'am'
8698
+ | 'ao'
8699
+ | 'au'
8700
+ | 'br'
8701
+ | 'ca'
8702
+ | 'cn'
8703
+ | 'de'
8704
+ | 'dz'
8705
+ | 'es'
8706
+ | 'fr'
8707
+ | 'gb'
8708
+ | 'hk'
8709
+ | 'in'
8710
+ | 'it'
8711
+ | 'jp'
8712
+ | 'kr'
8713
+ | 'nl'
8714
+ | 'sg'
8715
+ | 'tw'
8716
+ | 'us';
6892
8717
  };
6893
8718
 
6894
8719
  export type TransactionRuleControllerExportResponse = ExportRulesResponseDto;
@@ -6901,7 +8726,32 @@ export type TransactionRuleControllerGetStatisticsData = {
6901
8726
  /**
6902
8727
  * Region code for tenant context
6903
8728
  */
6904
- region: 'cn' | 'us' | 'de' | 'gb';
8729
+ region:
8730
+ | 'ad'
8731
+ | 'ae'
8732
+ | 'af'
8733
+ | 'ag'
8734
+ | 'al'
8735
+ | 'am'
8736
+ | 'ao'
8737
+ | 'au'
8738
+ | 'br'
8739
+ | 'ca'
8740
+ | 'cn'
8741
+ | 'de'
8742
+ | 'dz'
8743
+ | 'es'
8744
+ | 'fr'
8745
+ | 'gb'
8746
+ | 'hk'
8747
+ | 'in'
8748
+ | 'it'
8749
+ | 'jp'
8750
+ | 'kr'
8751
+ | 'nl'
8752
+ | 'sg'
8753
+ | 'tw'
8754
+ | 'us';
6905
8755
  };
6906
8756
 
6907
8757
  export type TransactionRuleControllerGetStatisticsResponse =
@@ -6911,7 +8761,32 @@ export type TransactionRuleControllerGetDetailData = {
6911
8761
  /**
6912
8762
  * Region code for tenant context
6913
8763
  */
6914
- region: 'cn' | 'us' | 'de' | 'gb';
8764
+ region:
8765
+ | 'ad'
8766
+ | 'ae'
8767
+ | 'af'
8768
+ | 'ag'
8769
+ | 'al'
8770
+ | 'am'
8771
+ | 'ao'
8772
+ | 'au'
8773
+ | 'br'
8774
+ | 'ca'
8775
+ | 'cn'
8776
+ | 'de'
8777
+ | 'dz'
8778
+ | 'es'
8779
+ | 'fr'
8780
+ | 'gb'
8781
+ | 'hk'
8782
+ | 'in'
8783
+ | 'it'
8784
+ | 'jp'
8785
+ | 'kr'
8786
+ | 'nl'
8787
+ | 'sg'
8788
+ | 'tw'
8789
+ | 'us';
6915
8790
  /**
6916
8791
  * Rule ID
6917
8792
  */
@@ -6925,7 +8800,32 @@ export type TransactionRuleControllerUpdateData = {
6925
8800
  /**
6926
8801
  * Region code for tenant context
6927
8802
  */
6928
- region: 'cn' | 'us' | 'de' | 'gb';
8803
+ region:
8804
+ | 'ad'
8805
+ | 'ae'
8806
+ | 'af'
8807
+ | 'ag'
8808
+ | 'al'
8809
+ | 'am'
8810
+ | 'ao'
8811
+ | 'au'
8812
+ | 'br'
8813
+ | 'ca'
8814
+ | 'cn'
8815
+ | 'de'
8816
+ | 'dz'
8817
+ | 'es'
8818
+ | 'fr'
8819
+ | 'gb'
8820
+ | 'hk'
8821
+ | 'in'
8822
+ | 'it'
8823
+ | 'jp'
8824
+ | 'kr'
8825
+ | 'nl'
8826
+ | 'sg'
8827
+ | 'tw'
8828
+ | 'us';
6929
8829
  requestBody: UpdateTransactionRuleDto;
6930
8830
  /**
6931
8831
  * Rule ID to update
@@ -6940,7 +8840,32 @@ export type TransactionRuleControllerDeleteData = {
6940
8840
  /**
6941
8841
  * Region code for tenant context
6942
8842
  */
6943
- region: 'cn' | 'us' | 'de' | 'gb';
8843
+ region:
8844
+ | 'ad'
8845
+ | 'ae'
8846
+ | 'af'
8847
+ | 'ag'
8848
+ | 'al'
8849
+ | 'am'
8850
+ | 'ao'
8851
+ | 'au'
8852
+ | 'br'
8853
+ | 'ca'
8854
+ | 'cn'
8855
+ | 'de'
8856
+ | 'dz'
8857
+ | 'es'
8858
+ | 'fr'
8859
+ | 'gb'
8860
+ | 'hk'
8861
+ | 'in'
8862
+ | 'it'
8863
+ | 'jp'
8864
+ | 'kr'
8865
+ | 'nl'
8866
+ | 'sg'
8867
+ | 'tw'
8868
+ | 'us';
6944
8869
  /**
6945
8870
  * Rule ID to delete
6946
8871
  */
@@ -6953,7 +8878,32 @@ export type TransactionRuleControllerTestData = {
6953
8878
  /**
6954
8879
  * Region code for tenant context
6955
8880
  */
6956
- region: 'cn' | 'us' | 'de' | 'gb';
8881
+ region:
8882
+ | 'ad'
8883
+ | 'ae'
8884
+ | 'af'
8885
+ | 'ag'
8886
+ | 'al'
8887
+ | 'am'
8888
+ | 'ao'
8889
+ | 'au'
8890
+ | 'br'
8891
+ | 'ca'
8892
+ | 'cn'
8893
+ | 'de'
8894
+ | 'dz'
8895
+ | 'es'
8896
+ | 'fr'
8897
+ | 'gb'
8898
+ | 'hk'
8899
+ | 'in'
8900
+ | 'it'
8901
+ | 'jp'
8902
+ | 'kr'
8903
+ | 'nl'
8904
+ | 'sg'
8905
+ | 'tw'
8906
+ | 'us';
6957
8907
  requestBody: TestRuleDto;
6958
8908
  /**
6959
8909
  * Rule ID to test
@@ -6967,7 +8917,32 @@ export type EventControllerCreateData = {
6967
8917
  /**
6968
8918
  * Region code for tenant context (decorative for life events)
6969
8919
  */
6970
- region: 'cn' | 'us' | 'de' | 'gb';
8920
+ region:
8921
+ | 'ad'
8922
+ | 'ae'
8923
+ | 'af'
8924
+ | 'ag'
8925
+ | 'al'
8926
+ | 'am'
8927
+ | 'ao'
8928
+ | 'au'
8929
+ | 'br'
8930
+ | 'ca'
8931
+ | 'cn'
8932
+ | 'de'
8933
+ | 'dz'
8934
+ | 'es'
8935
+ | 'fr'
8936
+ | 'gb'
8937
+ | 'hk'
8938
+ | 'in'
8939
+ | 'it'
8940
+ | 'jp'
8941
+ | 'kr'
8942
+ | 'nl'
8943
+ | 'sg'
8944
+ | 'tw'
8945
+ | 'us';
6971
8946
  requestBody: CreateBeanEventDto;
6972
8947
  };
6973
8948
 
@@ -6993,7 +8968,32 @@ export type EventControllerFindAllData = {
6993
8968
  /**
6994
8969
  * Region code for tenant context (decorative for life events)
6995
8970
  */
6996
- region: 'cn' | 'us' | 'de' | 'gb';
8971
+ region:
8972
+ | 'ad'
8973
+ | 'ae'
8974
+ | 'af'
8975
+ | 'ag'
8976
+ | 'al'
8977
+ | 'am'
8978
+ | 'ao'
8979
+ | 'au'
8980
+ | 'br'
8981
+ | 'ca'
8982
+ | 'cn'
8983
+ | 'de'
8984
+ | 'dz'
8985
+ | 'es'
8986
+ | 'fr'
8987
+ | 'gb'
8988
+ | 'hk'
8989
+ | 'in'
8990
+ | 'it'
8991
+ | 'jp'
8992
+ | 'kr'
8993
+ | 'nl'
8994
+ | 'sg'
8995
+ | 'tw'
8996
+ | 'us';
6997
8997
  /**
6998
8998
  * Filter life events to this date (ISO 8601 format)
6999
8999
  */
@@ -7014,7 +9014,32 @@ export type EventControllerFindOneData = {
7014
9014
  /**
7015
9015
  * Region code for tenant context (decorative for life events)
7016
9016
  */
7017
- region: 'cn' | 'us' | 'de' | 'gb';
9017
+ region:
9018
+ | 'ad'
9019
+ | 'ae'
9020
+ | 'af'
9021
+ | 'ag'
9022
+ | 'al'
9023
+ | 'am'
9024
+ | 'ao'
9025
+ | 'au'
9026
+ | 'br'
9027
+ | 'ca'
9028
+ | 'cn'
9029
+ | 'de'
9030
+ | 'dz'
9031
+ | 'es'
9032
+ | 'fr'
9033
+ | 'gb'
9034
+ | 'hk'
9035
+ | 'in'
9036
+ | 'it'
9037
+ | 'jp'
9038
+ | 'kr'
9039
+ | 'nl'
9040
+ | 'sg'
9041
+ | 'tw'
9042
+ | 'us';
7018
9043
  };
7019
9044
 
7020
9045
  export type EventControllerFindOneResponse = EventResponseDto;
@@ -7027,7 +9052,32 @@ export type EventControllerUpdateData = {
7027
9052
  /**
7028
9053
  * Region code for tenant context (decorative for life events)
7029
9054
  */
7030
- region: 'cn' | 'us' | 'de' | 'gb';
9055
+ region:
9056
+ | 'ad'
9057
+ | 'ae'
9058
+ | 'af'
9059
+ | 'ag'
9060
+ | 'al'
9061
+ | 'am'
9062
+ | 'ao'
9063
+ | 'au'
9064
+ | 'br'
9065
+ | 'ca'
9066
+ | 'cn'
9067
+ | 'de'
9068
+ | 'dz'
9069
+ | 'es'
9070
+ | 'fr'
9071
+ | 'gb'
9072
+ | 'hk'
9073
+ | 'in'
9074
+ | 'it'
9075
+ | 'jp'
9076
+ | 'kr'
9077
+ | 'nl'
9078
+ | 'sg'
9079
+ | 'tw'
9080
+ | 'us';
7031
9081
  requestBody: UpdateBeanEventDto;
7032
9082
  };
7033
9083
 
@@ -7041,7 +9091,32 @@ export type EventControllerDeleteData = {
7041
9091
  /**
7042
9092
  * Region code for tenant context (decorative for life events)
7043
9093
  */
7044
- region: 'cn' | 'us' | 'de' | 'gb';
9094
+ region:
9095
+ | 'ad'
9096
+ | 'ae'
9097
+ | 'af'
9098
+ | 'ag'
9099
+ | 'al'
9100
+ | 'am'
9101
+ | 'ao'
9102
+ | 'au'
9103
+ | 'br'
9104
+ | 'ca'
9105
+ | 'cn'
9106
+ | 'de'
9107
+ | 'dz'
9108
+ | 'es'
9109
+ | 'fr'
9110
+ | 'gb'
9111
+ | 'hk'
9112
+ | 'in'
9113
+ | 'it'
9114
+ | 'jp'
9115
+ | 'kr'
9116
+ | 'nl'
9117
+ | 'sg'
9118
+ | 'tw'
9119
+ | 'us';
7045
9120
  };
7046
9121
 
7047
9122
  export type EventControllerDeleteResponse = void;
@@ -7056,7 +9131,32 @@ export type EventControllerGetSliceData = {
7056
9131
  /**
7057
9132
  * Region code for tenant context (decorative for life events)
7058
9133
  */
7059
- region: 'cn' | 'us' | 'de' | 'gb';
9134
+ region:
9135
+ | 'ad'
9136
+ | 'ae'
9137
+ | 'af'
9138
+ | 'ag'
9139
+ | 'al'
9140
+ | 'am'
9141
+ | 'ao'
9142
+ | 'au'
9143
+ | 'br'
9144
+ | 'ca'
9145
+ | 'cn'
9146
+ | 'de'
9147
+ | 'dz'
9148
+ | 'es'
9149
+ | 'fr'
9150
+ | 'gb'
9151
+ | 'hk'
9152
+ | 'in'
9153
+ | 'it'
9154
+ | 'jp'
9155
+ | 'kr'
9156
+ | 'nl'
9157
+ | 'sg'
9158
+ | 'tw'
9159
+ | 'us';
7060
9160
  };
7061
9161
 
7062
9162
  export type EventControllerGetSliceResponse = unknown;
@@ -7065,7 +9165,32 @@ export type OnboardingControllerBootstrapData = {
7065
9165
  /**
7066
9166
  * Region code for tenant context
7067
9167
  */
7068
- region: 'cn' | 'us' | 'de' | 'gb';
9168
+ region:
9169
+ | 'ad'
9170
+ | 'ae'
9171
+ | 'af'
9172
+ | 'ag'
9173
+ | 'al'
9174
+ | 'am'
9175
+ | 'ao'
9176
+ | 'au'
9177
+ | 'br'
9178
+ | 'ca'
9179
+ | 'cn'
9180
+ | 'de'
9181
+ | 'dz'
9182
+ | 'es'
9183
+ | 'fr'
9184
+ | 'gb'
9185
+ | 'hk'
9186
+ | 'in'
9187
+ | 'it'
9188
+ | 'jp'
9189
+ | 'kr'
9190
+ | 'nl'
9191
+ | 'sg'
9192
+ | 'tw'
9193
+ | 'us';
7069
9194
  requestBody: OnboardingDto;
7070
9195
  };
7071
9196
 
@@ -7075,7 +9200,32 @@ export type ReconciliationControllerComputeData = {
7075
9200
  /**
7076
9201
  * Region code for tenant context (decorative for reconciliation)
7077
9202
  */
7078
- region: 'cn' | 'us' | 'de' | 'gb';
9203
+ region:
9204
+ | 'ad'
9205
+ | 'ae'
9206
+ | 'af'
9207
+ | 'ag'
9208
+ | 'al'
9209
+ | 'am'
9210
+ | 'ao'
9211
+ | 'au'
9212
+ | 'br'
9213
+ | 'ca'
9214
+ | 'cn'
9215
+ | 'de'
9216
+ | 'dz'
9217
+ | 'es'
9218
+ | 'fr'
9219
+ | 'gb'
9220
+ | 'hk'
9221
+ | 'in'
9222
+ | 'it'
9223
+ | 'jp'
9224
+ | 'kr'
9225
+ | 'nl'
9226
+ | 'sg'
9227
+ | 'tw'
9228
+ | 'us';
7079
9229
  requestBody: ComputeReconciliationDto;
7080
9230
  };
7081
9231
 
@@ -7086,7 +9236,32 @@ export type ReconciliationControllerAssertData = {
7086
9236
  /**
7087
9237
  * Region code for tenant context (decorative for reconciliation)
7088
9238
  */
7089
- region: 'cn' | 'us' | 'de' | 'gb';
9239
+ region:
9240
+ | 'ad'
9241
+ | 'ae'
9242
+ | 'af'
9243
+ | 'ag'
9244
+ | 'al'
9245
+ | 'am'
9246
+ | 'ao'
9247
+ | 'au'
9248
+ | 'br'
9249
+ | 'ca'
9250
+ | 'cn'
9251
+ | 'de'
9252
+ | 'dz'
9253
+ | 'es'
9254
+ | 'fr'
9255
+ | 'gb'
9256
+ | 'hk'
9257
+ | 'in'
9258
+ | 'it'
9259
+ | 'jp'
9260
+ | 'kr'
9261
+ | 'nl'
9262
+ | 'sg'
9263
+ | 'tw'
9264
+ | 'us';
7090
9265
  requestBody: AssertReconciliationDto;
7091
9266
  };
7092
9267
 
@@ -7096,7 +9271,32 @@ export type ReconciliationControllerPadData = {
7096
9271
  /**
7097
9272
  * Region code for tenant context (decorative for reconciliation)
7098
9273
  */
7099
- region: 'cn' | 'us' | 'de' | 'gb';
9274
+ region:
9275
+ | 'ad'
9276
+ | 'ae'
9277
+ | 'af'
9278
+ | 'ag'
9279
+ | 'al'
9280
+ | 'am'
9281
+ | 'ao'
9282
+ | 'au'
9283
+ | 'br'
9284
+ | 'ca'
9285
+ | 'cn'
9286
+ | 'de'
9287
+ | 'dz'
9288
+ | 'es'
9289
+ | 'fr'
9290
+ | 'gb'
9291
+ | 'hk'
9292
+ | 'in'
9293
+ | 'it'
9294
+ | 'jp'
9295
+ | 'kr'
9296
+ | 'nl'
9297
+ | 'sg'
9298
+ | 'tw'
9299
+ | 'us';
7100
9300
  requestBody: PadReconciliationDto;
7101
9301
  };
7102
9302
 
@@ -7110,7 +9310,32 @@ export type ReconciliationControllerHistoryData = {
7110
9310
  /**
7111
9311
  * Region code for tenant context (decorative for reconciliation)
7112
9312
  */
7113
- region: 'cn' | 'us' | 'de' | 'gb';
9313
+ region:
9314
+ | 'ad'
9315
+ | 'ae'
9316
+ | 'af'
9317
+ | 'ag'
9318
+ | 'al'
9319
+ | 'am'
9320
+ | 'ao'
9321
+ | 'au'
9322
+ | 'br'
9323
+ | 'ca'
9324
+ | 'cn'
9325
+ | 'de'
9326
+ | 'dz'
9327
+ | 'es'
9328
+ | 'fr'
9329
+ | 'gb'
9330
+ | 'hk'
9331
+ | 'in'
9332
+ | 'it'
9333
+ | 'jp'
9334
+ | 'kr'
9335
+ | 'nl'
9336
+ | 'sg'
9337
+ | 'tw'
9338
+ | 'us';
7114
9339
  };
7115
9340
 
7116
9341
  export type ReconciliationControllerHistoryResponse =
@@ -7126,7 +9351,32 @@ export type FileImportControllerImportFileData = {
7126
9351
  /**
7127
9352
  * Region code for tenant context
7128
9353
  */
7129
- region: 'cn' | 'us' | 'de' | 'gb';
9354
+ region:
9355
+ | 'ad'
9356
+ | 'ae'
9357
+ | 'af'
9358
+ | 'ag'
9359
+ | 'al'
9360
+ | 'am'
9361
+ | 'ao'
9362
+ | 'au'
9363
+ | 'br'
9364
+ | 'ca'
9365
+ | 'cn'
9366
+ | 'de'
9367
+ | 'dz'
9368
+ | 'es'
9369
+ | 'fr'
9370
+ | 'gb'
9371
+ | 'hk'
9372
+ | 'in'
9373
+ | 'it'
9374
+ | 'jp'
9375
+ | 'kr'
9376
+ | 'nl'
9377
+ | 'sg'
9378
+ | 'tw'
9379
+ | 'us';
7130
9380
  };
7131
9381
 
7132
9382
  export type FileImportControllerImportFileResponse = ImportResultDto;
@@ -7139,7 +9389,32 @@ export type FileImportControllerIdentifyFileData = {
7139
9389
  /**
7140
9390
  * Region code for tenant context
7141
9391
  */
7142
- region: 'cn' | 'us' | 'de' | 'gb';
9392
+ region:
9393
+ | 'ad'
9394
+ | 'ae'
9395
+ | 'af'
9396
+ | 'ag'
9397
+ | 'al'
9398
+ | 'am'
9399
+ | 'ao'
9400
+ | 'au'
9401
+ | 'br'
9402
+ | 'ca'
9403
+ | 'cn'
9404
+ | 'de'
9405
+ | 'dz'
9406
+ | 'es'
9407
+ | 'fr'
9408
+ | 'gb'
9409
+ | 'hk'
9410
+ | 'in'
9411
+ | 'it'
9412
+ | 'jp'
9413
+ | 'kr'
9414
+ | 'nl'
9415
+ | 'sg'
9416
+ | 'tw'
9417
+ | 'us';
7143
9418
  };
7144
9419
 
7145
9420
  export type FileImportControllerIdentifyFileResponse = IdentifyResultDto;
@@ -7152,7 +9427,32 @@ export type FileImportControllerImportBeancountData = {
7152
9427
  /**
7153
9428
  * Region code for tenant context
7154
9429
  */
7155
- region: 'cn' | 'us' | 'de' | 'gb';
9430
+ region:
9431
+ | 'ad'
9432
+ | 'ae'
9433
+ | 'af'
9434
+ | 'ag'
9435
+ | 'al'
9436
+ | 'am'
9437
+ | 'ao'
9438
+ | 'au'
9439
+ | 'br'
9440
+ | 'ca'
9441
+ | 'cn'
9442
+ | 'de'
9443
+ | 'dz'
9444
+ | 'es'
9445
+ | 'fr'
9446
+ | 'gb'
9447
+ | 'hk'
9448
+ | 'in'
9449
+ | 'it'
9450
+ | 'jp'
9451
+ | 'kr'
9452
+ | 'nl'
9453
+ | 'sg'
9454
+ | 'tw'
9455
+ | 'us';
7156
9456
  };
7157
9457
 
7158
9458
  export type FileImportControllerImportBeancountResponse = {
@@ -7173,7 +9473,32 @@ export type ImporterConfigControllerGetConfigData = {
7173
9473
  /**
7174
9474
  * Region code for tenant context
7175
9475
  */
7176
- region: 'cn' | 'us' | 'de' | 'gb';
9476
+ region:
9477
+ | 'ad'
9478
+ | 'ae'
9479
+ | 'af'
9480
+ | 'ag'
9481
+ | 'al'
9482
+ | 'am'
9483
+ | 'ao'
9484
+ | 'au'
9485
+ | 'br'
9486
+ | 'ca'
9487
+ | 'cn'
9488
+ | 'de'
9489
+ | 'dz'
9490
+ | 'es'
9491
+ | 'fr'
9492
+ | 'gb'
9493
+ | 'hk'
9494
+ | 'in'
9495
+ | 'it'
9496
+ | 'jp'
9497
+ | 'kr'
9498
+ | 'nl'
9499
+ | 'sg'
9500
+ | 'tw'
9501
+ | 'us';
7177
9502
  };
7178
9503
 
7179
9504
  export type ImporterConfigControllerGetConfigResponse = ImporterConfigDto;
@@ -7186,7 +9511,32 @@ export type ImporterConfigControllerUpdateConfigData = {
7186
9511
  /**
7187
9512
  * Region code for tenant context
7188
9513
  */
7189
- region: 'cn' | 'us' | 'de' | 'gb';
9514
+ region:
9515
+ | 'ad'
9516
+ | 'ae'
9517
+ | 'af'
9518
+ | 'ag'
9519
+ | 'al'
9520
+ | 'am'
9521
+ | 'ao'
9522
+ | 'au'
9523
+ | 'br'
9524
+ | 'ca'
9525
+ | 'cn'
9526
+ | 'de'
9527
+ | 'dz'
9528
+ | 'es'
9529
+ | 'fr'
9530
+ | 'gb'
9531
+ | 'hk'
9532
+ | 'in'
9533
+ | 'it'
9534
+ | 'jp'
9535
+ | 'kr'
9536
+ | 'nl'
9537
+ | 'sg'
9538
+ | 'tw'
9539
+ | 'us';
7190
9540
  /**
7191
9541
  * Partial configuration update. Only provided fields will be updated.
7192
9542
  */
@@ -7203,7 +9553,32 @@ export type ImporterConfigControllerResetConfigData = {
7203
9553
  /**
7204
9554
  * Region code for tenant context
7205
9555
  */
7206
- region: 'cn' | 'us' | 'de' | 'gb';
9556
+ region:
9557
+ | 'ad'
9558
+ | 'ae'
9559
+ | 'af'
9560
+ | 'ag'
9561
+ | 'al'
9562
+ | 'am'
9563
+ | 'ao'
9564
+ | 'au'
9565
+ | 'br'
9566
+ | 'ca'
9567
+ | 'cn'
9568
+ | 'de'
9569
+ | 'dz'
9570
+ | 'es'
9571
+ | 'fr'
9572
+ | 'gb'
9573
+ | 'hk'
9574
+ | 'in'
9575
+ | 'it'
9576
+ | 'jp'
9577
+ | 'kr'
9578
+ | 'nl'
9579
+ | 'sg'
9580
+ | 'tw'
9581
+ | 'us';
7207
9582
  };
7208
9583
 
7209
9584
  export type ImporterConfigControllerResetConfigResponse = ImporterConfigDto;
@@ -7224,7 +9599,32 @@ export type ProviderSyncControllerSyncData = {
7224
9599
  /**
7225
9600
  * Region code for tenant context
7226
9601
  */
7227
- region: 'cn' | 'us' | 'de' | 'gb';
9602
+ region:
9603
+ | 'ad'
9604
+ | 'ae'
9605
+ | 'af'
9606
+ | 'ag'
9607
+ | 'al'
9608
+ | 'am'
9609
+ | 'ao'
9610
+ | 'au'
9611
+ | 'br'
9612
+ | 'ca'
9613
+ | 'cn'
9614
+ | 'de'
9615
+ | 'dz'
9616
+ | 'es'
9617
+ | 'fr'
9618
+ | 'gb'
9619
+ | 'hk'
9620
+ | 'in'
9621
+ | 'it'
9622
+ | 'jp'
9623
+ | 'kr'
9624
+ | 'nl'
9625
+ | 'sg'
9626
+ | 'tw'
9627
+ | 'us';
7228
9628
  requestBody: ProviderSyncDto;
7229
9629
  };
7230
9630
 
@@ -7234,7 +9634,32 @@ export type ProviderSyncControllerGetSupportedProvidersData = {
7234
9634
  /**
7235
9635
  * Region code for tenant context
7236
9636
  */
7237
- region: 'cn' | 'us' | 'de' | 'gb';
9637
+ region:
9638
+ | 'ad'
9639
+ | 'ae'
9640
+ | 'af'
9641
+ | 'ag'
9642
+ | 'al'
9643
+ | 'am'
9644
+ | 'ao'
9645
+ | 'au'
9646
+ | 'br'
9647
+ | 'ca'
9648
+ | 'cn'
9649
+ | 'de'
9650
+ | 'dz'
9651
+ | 'es'
9652
+ | 'fr'
9653
+ | 'gb'
9654
+ | 'hk'
9655
+ | 'in'
9656
+ | 'it'
9657
+ | 'jp'
9658
+ | 'kr'
9659
+ | 'nl'
9660
+ | 'sg'
9661
+ | 'tw'
9662
+ | 'us';
7238
9663
  };
7239
9664
 
7240
9665
  export type ProviderSyncControllerGetSupportedProvidersResponse =
@@ -7248,7 +9673,32 @@ export type ProviderSyncControllerIsProviderSupportedData = {
7248
9673
  /**
7249
9674
  * Region code for tenant context
7250
9675
  */
7251
- region: 'cn' | 'us' | 'de' | 'gb';
9676
+ region:
9677
+ | 'ad'
9678
+ | 'ae'
9679
+ | 'af'
9680
+ | 'ag'
9681
+ | 'al'
9682
+ | 'am'
9683
+ | 'ao'
9684
+ | 'au'
9685
+ | 'br'
9686
+ | 'ca'
9687
+ | 'cn'
9688
+ | 'de'
9689
+ | 'dz'
9690
+ | 'es'
9691
+ | 'fr'
9692
+ | 'gb'
9693
+ | 'hk'
9694
+ | 'in'
9695
+ | 'it'
9696
+ | 'jp'
9697
+ | 'kr'
9698
+ | 'nl'
9699
+ | 'sg'
9700
+ | 'tw'
9701
+ | 'us';
7252
9702
  };
7253
9703
 
7254
9704
  export type ProviderSyncControllerIsProviderSupportedResponse = unknown;
@@ -7257,7 +9707,32 @@ export type ExternalAccountLinkControllerCreateData = {
7257
9707
  /**
7258
9708
  * Region code for tenant context
7259
9709
  */
7260
- region: 'cn' | 'us' | 'de' | 'gb';
9710
+ region:
9711
+ | 'ad'
9712
+ | 'ae'
9713
+ | 'af'
9714
+ | 'ag'
9715
+ | 'al'
9716
+ | 'am'
9717
+ | 'ao'
9718
+ | 'au'
9719
+ | 'br'
9720
+ | 'ca'
9721
+ | 'cn'
9722
+ | 'de'
9723
+ | 'dz'
9724
+ | 'es'
9725
+ | 'fr'
9726
+ | 'gb'
9727
+ | 'hk'
9728
+ | 'in'
9729
+ | 'it'
9730
+ | 'jp'
9731
+ | 'kr'
9732
+ | 'nl'
9733
+ | 'sg'
9734
+ | 'tw'
9735
+ | 'us';
7261
9736
  requestBody: CreateExternalAccountLinkDto;
7262
9737
  };
7263
9738
 
@@ -7269,7 +9744,32 @@ export type ExternalAccountLinkControllerFindAllData = {
7269
9744
  /**
7270
9745
  * Region code for tenant context
7271
9746
  */
7272
- region: 'cn' | 'us' | 'de' | 'gb';
9747
+ region:
9748
+ | 'ad'
9749
+ | 'ae'
9750
+ | 'af'
9751
+ | 'ag'
9752
+ | 'al'
9753
+ | 'am'
9754
+ | 'ao'
9755
+ | 'au'
9756
+ | 'br'
9757
+ | 'ca'
9758
+ | 'cn'
9759
+ | 'de'
9760
+ | 'dz'
9761
+ | 'es'
9762
+ | 'fr'
9763
+ | 'gb'
9764
+ | 'hk'
9765
+ | 'in'
9766
+ | 'it'
9767
+ | 'jp'
9768
+ | 'kr'
9769
+ | 'nl'
9770
+ | 'sg'
9771
+ | 'tw'
9772
+ | 'us';
7273
9773
  };
7274
9774
 
7275
9775
  export type ExternalAccountLinkControllerFindAllResponse =
@@ -7280,7 +9780,32 @@ export type ExternalAccountLinkControllerFindOneData = {
7280
9780
  /**
7281
9781
  * Region code for tenant context
7282
9782
  */
7283
- region: 'cn' | 'us' | 'de' | 'gb';
9783
+ region:
9784
+ | 'ad'
9785
+ | 'ae'
9786
+ | 'af'
9787
+ | 'ag'
9788
+ | 'al'
9789
+ | 'am'
9790
+ | 'ao'
9791
+ | 'au'
9792
+ | 'br'
9793
+ | 'ca'
9794
+ | 'cn'
9795
+ | 'de'
9796
+ | 'dz'
9797
+ | 'es'
9798
+ | 'fr'
9799
+ | 'gb'
9800
+ | 'hk'
9801
+ | 'in'
9802
+ | 'it'
9803
+ | 'jp'
9804
+ | 'kr'
9805
+ | 'nl'
9806
+ | 'sg'
9807
+ | 'tw'
9808
+ | 'us';
7284
9809
  };
7285
9810
 
7286
9811
  export type ExternalAccountLinkControllerFindOneResponse =
@@ -7291,7 +9816,32 @@ export type ExternalAccountLinkControllerRemoveData = {
7291
9816
  /**
7292
9817
  * Region code for tenant context
7293
9818
  */
7294
- region: 'cn' | 'us' | 'de' | 'gb';
9819
+ region:
9820
+ | 'ad'
9821
+ | 'ae'
9822
+ | 'af'
9823
+ | 'ag'
9824
+ | 'al'
9825
+ | 'am'
9826
+ | 'ao'
9827
+ | 'au'
9828
+ | 'br'
9829
+ | 'ca'
9830
+ | 'cn'
9831
+ | 'de'
9832
+ | 'dz'
9833
+ | 'es'
9834
+ | 'fr'
9835
+ | 'gb'
9836
+ | 'hk'
9837
+ | 'in'
9838
+ | 'it'
9839
+ | 'jp'
9840
+ | 'kr'
9841
+ | 'nl'
9842
+ | 'sg'
9843
+ | 'tw'
9844
+ | 'us';
7295
9845
  };
7296
9846
 
7297
9847
  export type ExternalAccountLinkControllerRemoveResponse = void;
@@ -7300,7 +9850,32 @@ export type TelemetryControllerReportTelemetryData = {
7300
9850
  /**
7301
9851
  * Region code for tenant context
7302
9852
  */
7303
- region: 'cn' | 'us' | 'de' | 'gb';
9853
+ region:
9854
+ | 'ad'
9855
+ | 'ae'
9856
+ | 'af'
9857
+ | 'ag'
9858
+ | 'al'
9859
+ | 'am'
9860
+ | 'ao'
9861
+ | 'au'
9862
+ | 'br'
9863
+ | 'ca'
9864
+ | 'cn'
9865
+ | 'de'
9866
+ | 'dz'
9867
+ | 'es'
9868
+ | 'fr'
9869
+ | 'gb'
9870
+ | 'hk'
9871
+ | 'in'
9872
+ | 'it'
9873
+ | 'jp'
9874
+ | 'kr'
9875
+ | 'nl'
9876
+ | 'sg'
9877
+ | 'tw'
9878
+ | 'us';
7304
9879
  requestBody: ParserTelemetryReportDto;
7305
9880
  };
7306
9881
 
@@ -7310,7 +9885,32 @@ export type TelemetryControllerReportCoverageMissData = {
7310
9885
  /**
7311
9886
  * Region code for tenant context
7312
9887
  */
7313
- region: 'cn' | 'us' | 'de' | 'gb';
9888
+ region:
9889
+ | 'ad'
9890
+ | 'ae'
9891
+ | 'af'
9892
+ | 'ag'
9893
+ | 'al'
9894
+ | 'am'
9895
+ | 'ao'
9896
+ | 'au'
9897
+ | 'br'
9898
+ | 'ca'
9899
+ | 'cn'
9900
+ | 'de'
9901
+ | 'dz'
9902
+ | 'es'
9903
+ | 'fr'
9904
+ | 'gb'
9905
+ | 'hk'
9906
+ | 'in'
9907
+ | 'it'
9908
+ | 'jp'
9909
+ | 'kr'
9910
+ | 'nl'
9911
+ | 'sg'
9912
+ | 'tw'
9913
+ | 'us';
7314
9914
  requestBody: UncoveredFormatMissDto;
7315
9915
  };
7316
9916
 
@@ -7320,7 +9920,32 @@ export type TelemetryControllerGetCoverageMetricsData = {
7320
9920
  /**
7321
9921
  * Region code for tenant context
7322
9922
  */
7323
- region: 'cn' | 'us' | 'de' | 'gb';
9923
+ region:
9924
+ | 'ad'
9925
+ | 'ae'
9926
+ | 'af'
9927
+ | 'ag'
9928
+ | 'al'
9929
+ | 'am'
9930
+ | 'ao'
9931
+ | 'au'
9932
+ | 'br'
9933
+ | 'ca'
9934
+ | 'cn'
9935
+ | 'de'
9936
+ | 'dz'
9937
+ | 'es'
9938
+ | 'fr'
9939
+ | 'gb'
9940
+ | 'hk'
9941
+ | 'in'
9942
+ | 'it'
9943
+ | 'jp'
9944
+ | 'kr'
9945
+ | 'nl'
9946
+ | 'sg'
9947
+ | 'tw'
9948
+ | 'us';
7324
9949
  /**
7325
9950
  * Top-N uncovered formats (default 10)
7326
9951
  */
@@ -7333,7 +9958,32 @@ export type NlpControllerProcessNaturalLanguageData = {
7333
9958
  /**
7334
9959
  * Region code for tenant context
7335
9960
  */
7336
- region: 'cn' | 'us' | 'de' | 'gb';
9961
+ region:
9962
+ | 'ad'
9963
+ | 'ae'
9964
+ | 'af'
9965
+ | 'ag'
9966
+ | 'al'
9967
+ | 'am'
9968
+ | 'ao'
9969
+ | 'au'
9970
+ | 'br'
9971
+ | 'ca'
9972
+ | 'cn'
9973
+ | 'de'
9974
+ | 'dz'
9975
+ | 'es'
9976
+ | 'fr'
9977
+ | 'gb'
9978
+ | 'hk'
9979
+ | 'in'
9980
+ | 'it'
9981
+ | 'jp'
9982
+ | 'kr'
9983
+ | 'nl'
9984
+ | 'sg'
9985
+ | 'tw'
9986
+ | 'us';
7337
9987
  /**
7338
9988
  * Natural language transaction input with optional session ID
7339
9989
  */
@@ -7346,7 +9996,32 @@ export type NlpControllerClearSessionData = {
7346
9996
  /**
7347
9997
  * Region code for tenant context
7348
9998
  */
7349
- region: 'cn' | 'us' | 'de' | 'gb';
9999
+ region:
10000
+ | 'ad'
10001
+ | 'ae'
10002
+ | 'af'
10003
+ | 'ag'
10004
+ | 'al'
10005
+ | 'am'
10006
+ | 'ao'
10007
+ | 'au'
10008
+ | 'br'
10009
+ | 'ca'
10010
+ | 'cn'
10011
+ | 'de'
10012
+ | 'dz'
10013
+ | 'es'
10014
+ | 'fr'
10015
+ | 'gb'
10016
+ | 'hk'
10017
+ | 'in'
10018
+ | 'it'
10019
+ | 'jp'
10020
+ | 'kr'
10021
+ | 'nl'
10022
+ | 'sg'
10023
+ | 'tw'
10024
+ | 'us';
7350
10025
  /**
7351
10026
  * Specific session ID to clear (defaults to user session)
7352
10027
  */
@@ -7359,7 +10034,32 @@ export type NlpControllerGetSessionData = {
7359
10034
  /**
7360
10035
  * Region code for tenant context
7361
10036
  */
7362
- region: 'cn' | 'us' | 'de' | 'gb';
10037
+ region:
10038
+ | 'ad'
10039
+ | 'ae'
10040
+ | 'af'
10041
+ | 'ag'
10042
+ | 'al'
10043
+ | 'am'
10044
+ | 'ao'
10045
+ | 'au'
10046
+ | 'br'
10047
+ | 'ca'
10048
+ | 'cn'
10049
+ | 'de'
10050
+ | 'dz'
10051
+ | 'es'
10052
+ | 'fr'
10053
+ | 'gb'
10054
+ | 'hk'
10055
+ | 'in'
10056
+ | 'it'
10057
+ | 'jp'
10058
+ | 'kr'
10059
+ | 'nl'
10060
+ | 'sg'
10061
+ | 'tw'
10062
+ | 'us';
7363
10063
  /**
7364
10064
  * Specific session ID to get (defaults to user session)
7365
10065
  */
@@ -7376,6 +10076,13 @@ export type PlatformControllerCreateData = {
7376
10076
 
7377
10077
  export type PlatformControllerCreateResponse = unknown;
7378
10078
 
10079
+ export type PlatformControllerGetPlatformListData = {
10080
+ /**
10081
+ * Region code (ISO 3166-1 alpha-2) that biases within-type-bucket ordering (local-region platforms first). Case-insensitive — stored/compared UPPERCASE ("cn" == "CN").
10082
+ */
10083
+ region?: string;
10084
+ };
10085
+
7379
10086
  export type PlatformControllerGetPlatformListResponse =
7380
10087
  Array<PlatformListItemDto>;
7381
10088
 
@@ -7385,7 +10092,7 @@ export type PlatformControllerMatchPlatformsData = {
7385
10092
  */
7386
10093
  q: string;
7387
10094
  /**
7388
- * Region code for category override lookup
10095
+ * Region code (ISO 3166-1 alpha-2) that biases within-tier ordering (local-region platforms first); also the intended categoryOverrides key. Case-insensitive — stored/compared UPPERCASE ("cn" == "CN").
7389
10096
  */
7390
10097
  region?: string;
7391
10098
  };
@@ -7419,7 +10126,32 @@ export type DashboardControllerGetNetWorthData = {
7419
10126
  /**
7420
10127
  * Region code for tenant context
7421
10128
  */
7422
- region: 'cn' | 'us' | 'de' | 'gb';
10129
+ region:
10130
+ | 'ad'
10131
+ | 'ae'
10132
+ | 'af'
10133
+ | 'ag'
10134
+ | 'al'
10135
+ | 'am'
10136
+ | 'ao'
10137
+ | 'au'
10138
+ | 'br'
10139
+ | 'ca'
10140
+ | 'cn'
10141
+ | 'de'
10142
+ | 'dz'
10143
+ | 'es'
10144
+ | 'fr'
10145
+ | 'gb'
10146
+ | 'hk'
10147
+ | 'in'
10148
+ | 'it'
10149
+ | 'jp'
10150
+ | 'kr'
10151
+ | 'nl'
10152
+ | 'sg'
10153
+ | 'tw'
10154
+ | 'us';
7423
10155
  };
7424
10156
 
7425
10157
  export type DashboardControllerGetNetWorthResponse = NetWorthResponseDto;
@@ -7444,7 +10176,32 @@ export type DashboardControllerGetAccountsData = {
7444
10176
  /**
7445
10177
  * Region code for tenant context
7446
10178
  */
7447
- region: 'cn' | 'us' | 'de' | 'gb';
10179
+ region:
10180
+ | 'ad'
10181
+ | 'ae'
10182
+ | 'af'
10183
+ | 'ag'
10184
+ | 'al'
10185
+ | 'am'
10186
+ | 'ao'
10187
+ | 'au'
10188
+ | 'br'
10189
+ | 'ca'
10190
+ | 'cn'
10191
+ | 'de'
10192
+ | 'dz'
10193
+ | 'es'
10194
+ | 'fr'
10195
+ | 'gb'
10196
+ | 'hk'
10197
+ | 'in'
10198
+ | 'it'
10199
+ | 'jp'
10200
+ | 'kr'
10201
+ | 'nl'
10202
+ | 'sg'
10203
+ | 'tw'
10204
+ | 'us';
7448
10205
  };
7449
10206
 
7450
10207
  export type DashboardControllerGetAccountsResponse =
@@ -7460,7 +10217,32 @@ export type DashboardControllerGetCashFlowData = {
7460
10217
  /**
7461
10218
  * Region code for tenant context
7462
10219
  */
7463
- region: 'cn' | 'us' | 'de' | 'gb';
10220
+ region:
10221
+ | 'ad'
10222
+ | 'ae'
10223
+ | 'af'
10224
+ | 'ag'
10225
+ | 'al'
10226
+ | 'am'
10227
+ | 'ao'
10228
+ | 'au'
10229
+ | 'br'
10230
+ | 'ca'
10231
+ | 'cn'
10232
+ | 'de'
10233
+ | 'dz'
10234
+ | 'es'
10235
+ | 'fr'
10236
+ | 'gb'
10237
+ | 'hk'
10238
+ | 'in'
10239
+ | 'it'
10240
+ | 'jp'
10241
+ | 'kr'
10242
+ | 'nl'
10243
+ | 'sg'
10244
+ | 'tw'
10245
+ | 'us';
7464
10246
  };
7465
10247
 
7466
10248
  export type DashboardControllerGetCashFlowResponse = CashFlowResponseDto;
@@ -7481,7 +10263,32 @@ export type DashboardControllerGetExpensesData = {
7481
10263
  /**
7482
10264
  * Region code for tenant context
7483
10265
  */
7484
- region: 'cn' | 'us' | 'de' | 'gb';
10266
+ region:
10267
+ | 'ad'
10268
+ | 'ae'
10269
+ | 'af'
10270
+ | 'ag'
10271
+ | 'al'
10272
+ | 'am'
10273
+ | 'ao'
10274
+ | 'au'
10275
+ | 'br'
10276
+ | 'ca'
10277
+ | 'cn'
10278
+ | 'de'
10279
+ | 'dz'
10280
+ | 'es'
10281
+ | 'fr'
10282
+ | 'gb'
10283
+ | 'hk'
10284
+ | 'in'
10285
+ | 'it'
10286
+ | 'jp'
10287
+ | 'kr'
10288
+ | 'nl'
10289
+ | 'sg'
10290
+ | 'tw'
10291
+ | 'us';
7485
10292
  };
7486
10293
 
7487
10294
  export type DashboardControllerGetExpensesResponse =
@@ -7503,7 +10310,32 @@ export type HoldingPnlControllerGetHoldingPnlData = {
7503
10310
  /**
7504
10311
  * Region code for tenant context
7505
10312
  */
7506
- region: 'cn' | 'us' | 'de' | 'gb';
10313
+ region:
10314
+ | 'ad'
10315
+ | 'ae'
10316
+ | 'af'
10317
+ | 'ag'
10318
+ | 'al'
10319
+ | 'am'
10320
+ | 'ao'
10321
+ | 'au'
10322
+ | 'br'
10323
+ | 'ca'
10324
+ | 'cn'
10325
+ | 'de'
10326
+ | 'dz'
10327
+ | 'es'
10328
+ | 'fr'
10329
+ | 'gb'
10330
+ | 'hk'
10331
+ | 'in'
10332
+ | 'it'
10333
+ | 'jp'
10334
+ | 'kr'
10335
+ | 'nl'
10336
+ | 'sg'
10337
+ | 'tw'
10338
+ | 'us';
7507
10339
  };
7508
10340
 
7509
10341
  export type HoldingPnlControllerGetHoldingPnlResponse = HoldingPnlResponseDto;
@@ -7554,6 +10386,33 @@ export type HealthControllerGetMetricsResponse = unknown;
7554
10386
 
7555
10387
  export type InfoControllerGetInfoResponse = unknown;
7556
10388
 
10389
+ export type SymbolControllerSearchData = {
10390
+ /**
10391
+ * Filter by OpenBB asset_type (e.g. stock, etf)
10392
+ */
10393
+ assetType?: string;
10394
+ /**
10395
+ * Filter by exchange code (e.g. US, HK, SS, SZ)
10396
+ */
10397
+ exchange?: string;
10398
+ /**
10399
+ * Maximum number of results (clamped 1..50)
10400
+ */
10401
+ limit?: number;
10402
+ /**
10403
+ * Search term — matched against symbol and instrument name. Empty string returns [].
10404
+ */
10405
+ q: string;
10406
+ };
10407
+
10408
+ export type SymbolControllerSearchResponse = Array<SymbolSearchResultDto>;
10409
+
10410
+ export type SymbolControllerGetQuoteData = {
10411
+ symbol: string;
10412
+ };
10413
+
10414
+ export type SymbolControllerGetQuoteResponse = SymbolQuoteDto;
10415
+
7557
10416
  export type $OpenApiTs = {
7558
10417
  '/api/v1/{region}/bean/accounts': {
7559
10418
  post: {
@@ -7618,7 +10477,7 @@ export type $OpenApiTs = {
7618
10477
  */
7619
10478
  404: unknown;
7620
10479
  /**
7621
- * Account has transactions and cannot be deleted
10480
+ * Account has active transactions and cannot be deleted
7622
10481
  */
7623
10482
  409: unknown;
7624
10483
  };
@@ -9628,6 +12487,7 @@ export type $OpenApiTs = {
9628
12487
  };
9629
12488
  '/api/v1/bean/platforms/list': {
9630
12489
  get: {
12490
+ req: PlatformControllerGetPlatformListData;
9631
12491
  res: {
9632
12492
  /**
9633
12493
  * List of platforms with user binding status
@@ -9933,4 +12793,30 @@ export type $OpenApiTs = {
9933
12793
  };
9934
12794
  };
9935
12795
  };
12796
+ '/api/v1/market/symbols/search': {
12797
+ get: {
12798
+ req: SymbolControllerSearchData;
12799
+ res: {
12800
+ /**
12801
+ * Ranked search results
12802
+ */
12803
+ 200: Array<SymbolSearchResultDto>;
12804
+ };
12805
+ };
12806
+ };
12807
+ '/api/v1/market/symbols/{symbol}/quote': {
12808
+ get: {
12809
+ req: SymbolControllerGetQuoteData;
12810
+ res: {
12811
+ /**
12812
+ * Symbol quote
12813
+ */
12814
+ 200: SymbolQuoteDto;
12815
+ /**
12816
+ * Symbol not found in the openbb catalog
12817
+ */
12818
+ 404: unknown;
12819
+ };
12820
+ };
12821
+ };
9936
12822
  };