@tammsyr/admin-api-client 1.3.3 → 1.3.4
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.
- package/dist/AccountTypes.d.ts +3 -3
- package/dist/AccountTypes.d.ts.map +1 -1
- package/dist/AccountTypes.js.map +1 -1
- package/dist/Accounts.d.ts +61 -1
- package/dist/Accounts.d.ts.map +1 -1
- package/dist/Accounts.js +108 -0
- package/dist/Accounts.js.map +1 -1
- package/dist/ActivityLogs.d.ts.map +1 -1
- package/dist/ApprovalPolicies.d.ts +3 -3
- package/dist/ApprovalPolicies.d.ts.map +1 -1
- package/dist/ApprovalPolicies.js.map +1 -1
- package/dist/BankBranches.d.ts +3 -3
- package/dist/BankBranches.d.ts.map +1 -1
- package/dist/BankBranches.js.map +1 -1
- package/dist/Currencies.d.ts +3 -3
- package/dist/Currencies.d.ts.map +1 -1
- package/dist/Currencies.js.map +1 -1
- package/dist/Dlq.d.ts.map +1 -1
- package/dist/GlobalNotifications.d.ts +2 -2
- package/dist/GlobalNotifications.d.ts.map +1 -1
- package/dist/GlobalNotifications.js.map +1 -1
- package/dist/MerchantCategories.d.ts +37 -0
- package/dist/MerchantCategories.d.ts.map +1 -0
- package/dist/MerchantCategories.js +75 -0
- package/dist/MerchantCategories.js.map +1 -0
- package/dist/Notifications.d.ts.map +1 -1
- package/dist/Notifications.js.map +1 -1
- package/dist/Policies.d.ts +107 -0
- package/dist/Policies.d.ts.map +1 -0
- package/dist/Policies.js +182 -0
- package/dist/Policies.js.map +1 -0
- package/dist/Transactions.d.ts.map +1 -1
- package/dist/Transactions.js.map +1 -1
- package/dist/data-contracts.d.ts +296 -35
- package/dist/data-contracts.d.ts.map +1 -1
- package/dist/index.d.ts +6 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +9 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/data-contracts.d.ts
CHANGED
|
@@ -743,7 +743,7 @@ export interface AdminAccountResponseDto {
|
|
|
743
743
|
* Account status
|
|
744
744
|
* @example "active"
|
|
745
745
|
*/
|
|
746
|
-
status: "pending" | "active" | "frozen" | "closed";
|
|
746
|
+
status: "pending" | "active" | "restricted" | "suspended" | "frozen" | "dormant" | "closed";
|
|
747
747
|
/**
|
|
748
748
|
* Account display name
|
|
749
749
|
* @example "Primary Wallet"
|
|
@@ -1123,6 +1123,11 @@ export interface PersonDetailDto {
|
|
|
1123
1123
|
* @example "Fatima"
|
|
1124
1124
|
*/
|
|
1125
1125
|
motherName: string;
|
|
1126
|
+
/**
|
|
1127
|
+
* Gender
|
|
1128
|
+
* @example "male"
|
|
1129
|
+
*/
|
|
1130
|
+
gender: "male" | "female";
|
|
1126
1131
|
address: PersonAddressDto;
|
|
1127
1132
|
connectedUsers: ConnectedUserDto[];
|
|
1128
1133
|
}
|
|
@@ -1813,7 +1818,7 @@ export interface AccountListQueryDto {
|
|
|
1813
1818
|
* Filter by account status
|
|
1814
1819
|
* @example "active"
|
|
1815
1820
|
*/
|
|
1816
|
-
status?: "pending" | "active" | "frozen" | "closed";
|
|
1821
|
+
status?: "pending" | "active" | "restricted" | "suspended" | "frozen" | "dormant" | "closed";
|
|
1817
1822
|
/**
|
|
1818
1823
|
* Filter by account type
|
|
1819
1824
|
* @example "personal"
|
|
@@ -2008,7 +2013,7 @@ export interface AdminAccountDetailResponseDto {
|
|
|
2008
2013
|
* Account status
|
|
2009
2014
|
* @example "active"
|
|
2010
2015
|
*/
|
|
2011
|
-
status: "pending" | "active" | "frozen" | "closed";
|
|
2016
|
+
status: "pending" | "active" | "restricted" | "suspended" | "frozen" | "dormant" | "closed";
|
|
2012
2017
|
/**
|
|
2013
2018
|
* Account display name
|
|
2014
2019
|
* @example "Primary Wallet"
|
|
@@ -2036,13 +2041,159 @@ export interface UpdateAccountStatusDto {
|
|
|
2036
2041
|
* New account status
|
|
2037
2042
|
* @example "frozen"
|
|
2038
2043
|
*/
|
|
2039
|
-
status: "pending" | "active" | "frozen" | "closed";
|
|
2044
|
+
status: "pending" | "active" | "restricted" | "suspended" | "frozen" | "dormant" | "closed";
|
|
2040
2045
|
/**
|
|
2041
2046
|
* Reason for the status change
|
|
2042
2047
|
* @example "Suspicious activity detected"
|
|
2043
2048
|
*/
|
|
2044
2049
|
reason?: string;
|
|
2045
2050
|
}
|
|
2051
|
+
export interface AdminTransitionAccountDto {
|
|
2052
|
+
/**
|
|
2053
|
+
* Reason code from the governed lifecycle catalogue.
|
|
2054
|
+
* @maxLength 32
|
|
2055
|
+
* @example "OPS_REVIEW"
|
|
2056
|
+
*/
|
|
2057
|
+
reasonCode: string;
|
|
2058
|
+
}
|
|
2059
|
+
export interface AdminFreezeAccountDto {
|
|
2060
|
+
/**
|
|
2061
|
+
* Reason code from the governed lifecycle catalogue.
|
|
2062
|
+
* @maxLength 32
|
|
2063
|
+
* @example "AML_HOLD"
|
|
2064
|
+
*/
|
|
2065
|
+
reasonCode: string;
|
|
2066
|
+
/**
|
|
2067
|
+
* Compliance case identifier (mandatory when freezing).
|
|
2068
|
+
* @maxLength 64
|
|
2069
|
+
* @example "CASE-2026-0142"
|
|
2070
|
+
*/
|
|
2071
|
+
caseId: string;
|
|
2072
|
+
}
|
|
2073
|
+
export interface CreatePolicyRuleDto {
|
|
2074
|
+
/**
|
|
2075
|
+
* Rule kind — the decision point this rule participates in
|
|
2076
|
+
* @example "ACCOUNT_OPEN"
|
|
2077
|
+
*/
|
|
2078
|
+
ruleKind: string;
|
|
2079
|
+
/**
|
|
2080
|
+
* Human-readable rule name
|
|
2081
|
+
* @example "Block opening for sanctioned branches"
|
|
2082
|
+
*/
|
|
2083
|
+
name: string;
|
|
2084
|
+
/** Party type selector (wildcard if omitted) */
|
|
2085
|
+
partyType?: string;
|
|
2086
|
+
/** Owner type selector (wildcard if omitted) */
|
|
2087
|
+
ownerType?: string;
|
|
2088
|
+
/** Account type code selector (wildcard if omitted) */
|
|
2089
|
+
typeCode?: string;
|
|
2090
|
+
/** Product code selector (wildcard if omitted) */
|
|
2091
|
+
productCode?: string;
|
|
2092
|
+
/** Currency selector (wildcard if omitted) */
|
|
2093
|
+
currency?: string;
|
|
2094
|
+
/** Branch code selector (wildcard if omitted) */
|
|
2095
|
+
branchCode?: string;
|
|
2096
|
+
/** Customer CIF selector (wildcard if omitted) */
|
|
2097
|
+
customerCif?: string;
|
|
2098
|
+
/** Channel selector (wildcard if omitted) */
|
|
2099
|
+
channel?: string;
|
|
2100
|
+
/**
|
|
2101
|
+
* Effect applied when the rule matches
|
|
2102
|
+
* @example "DENY"
|
|
2103
|
+
*/
|
|
2104
|
+
effect: "ALLOW" | "DENY" | "LIMIT" | "REQUIRE_APPROVAL";
|
|
2105
|
+
/**
|
|
2106
|
+
* Effect parameters as a JSON object (shape depends on rule kind)
|
|
2107
|
+
* @example {"maxAmount":"10000"}
|
|
2108
|
+
*/
|
|
2109
|
+
params?: object;
|
|
2110
|
+
/**
|
|
2111
|
+
* Evaluation priority (higher wins); defaults to 0
|
|
2112
|
+
* @min 1
|
|
2113
|
+
* @example 100
|
|
2114
|
+
*/
|
|
2115
|
+
priority?: number;
|
|
2116
|
+
/**
|
|
2117
|
+
* ISO-8601 timestamp the rule becomes effective
|
|
2118
|
+
* @example "2026-01-01T00:00:00.000Z"
|
|
2119
|
+
*/
|
|
2120
|
+
effectiveFrom?: string;
|
|
2121
|
+
/**
|
|
2122
|
+
* ISO-8601 timestamp the rule stops being effective
|
|
2123
|
+
* @example "2026-12-31T23:59:59.000Z"
|
|
2124
|
+
*/
|
|
2125
|
+
effectiveTo?: string;
|
|
2126
|
+
}
|
|
2127
|
+
export interface UpdatePolicyRuleDto {
|
|
2128
|
+
/**
|
|
2129
|
+
* Human-readable rule name
|
|
2130
|
+
* @example "Block opening for sanctioned branches"
|
|
2131
|
+
*/
|
|
2132
|
+
name?: string;
|
|
2133
|
+
/** Party type selector (wildcard if omitted) */
|
|
2134
|
+
partyType?: string;
|
|
2135
|
+
/** Owner type selector (wildcard if omitted) */
|
|
2136
|
+
ownerType?: string;
|
|
2137
|
+
/** Account type code selector (wildcard if omitted) */
|
|
2138
|
+
typeCode?: string;
|
|
2139
|
+
/** Product code selector (wildcard if omitted) */
|
|
2140
|
+
productCode?: string;
|
|
2141
|
+
/** Currency selector (wildcard if omitted) */
|
|
2142
|
+
currency?: string;
|
|
2143
|
+
/** Branch code selector (wildcard if omitted) */
|
|
2144
|
+
branchCode?: string;
|
|
2145
|
+
/** Customer CIF selector (wildcard if omitted) */
|
|
2146
|
+
customerCif?: string;
|
|
2147
|
+
/** Channel selector (wildcard if omitted) */
|
|
2148
|
+
channel?: string;
|
|
2149
|
+
/**
|
|
2150
|
+
* Effect applied when the rule matches
|
|
2151
|
+
* @example "DENY"
|
|
2152
|
+
*/
|
|
2153
|
+
effect?: "ALLOW" | "DENY" | "LIMIT" | "REQUIRE_APPROVAL";
|
|
2154
|
+
/**
|
|
2155
|
+
* Effect parameters as a JSON object (shape depends on rule kind)
|
|
2156
|
+
* @example {"maxAmount":"10000"}
|
|
2157
|
+
*/
|
|
2158
|
+
params?: object;
|
|
2159
|
+
/**
|
|
2160
|
+
* Evaluation priority (higher wins)
|
|
2161
|
+
* @min 1
|
|
2162
|
+
* @example 100
|
|
2163
|
+
*/
|
|
2164
|
+
priority?: number;
|
|
2165
|
+
/**
|
|
2166
|
+
* ISO-8601 timestamp the rule becomes effective
|
|
2167
|
+
* @example "2026-01-01T00:00:00.000Z"
|
|
2168
|
+
*/
|
|
2169
|
+
effectiveFrom?: string;
|
|
2170
|
+
/**
|
|
2171
|
+
* ISO-8601 timestamp the rule stops being effective
|
|
2172
|
+
* @example "2026-12-31T23:59:59.000Z"
|
|
2173
|
+
*/
|
|
2174
|
+
effectiveTo?: string;
|
|
2175
|
+
}
|
|
2176
|
+
export interface ActivateKillSwitchDto {
|
|
2177
|
+
/**
|
|
2178
|
+
* Decision point to block (e.g. ACCOUNT_OPEN)
|
|
2179
|
+
* @example "ACCOUNT_OPEN"
|
|
2180
|
+
*/
|
|
2181
|
+
decisionPoint: string;
|
|
2182
|
+
}
|
|
2183
|
+
export interface SimulatePolicyRuleDto {
|
|
2184
|
+
/**
|
|
2185
|
+
* Decision point to evaluate against
|
|
2186
|
+
* @example "ACCOUNT_OPEN"
|
|
2187
|
+
*/
|
|
2188
|
+
decisionPoint: string;
|
|
2189
|
+
/** Draft rule to evaluate (not persisted) */
|
|
2190
|
+
draft: CreatePolicyRuleDto;
|
|
2191
|
+
/**
|
|
2192
|
+
* Subjects to evaluate the draft against
|
|
2193
|
+
* @example [{"branchCode":"001","currency":"SYP"}]
|
|
2194
|
+
*/
|
|
2195
|
+
subjects: object[];
|
|
2196
|
+
}
|
|
2046
2197
|
export interface MerchantStatisticsResponseDto {
|
|
2047
2198
|
/**
|
|
2048
2199
|
* Total number of merchants
|
|
@@ -2140,6 +2291,37 @@ export interface UpdateMerchantStatusDto {
|
|
|
2140
2291
|
*/
|
|
2141
2292
|
reason?: string;
|
|
2142
2293
|
}
|
|
2294
|
+
export interface MerchantCategoryResponseDto {
|
|
2295
|
+
/**
|
|
2296
|
+
* 4-digit MCC code
|
|
2297
|
+
* @example "5411"
|
|
2298
|
+
*/
|
|
2299
|
+
code: string;
|
|
2300
|
+
name: LocalizedNameDto;
|
|
2301
|
+
/** @example true */
|
|
2302
|
+
isActive: boolean;
|
|
2303
|
+
/** @format date-time */
|
|
2304
|
+
createdAt: string;
|
|
2305
|
+
/** @format date-time */
|
|
2306
|
+
updatedAt: string;
|
|
2307
|
+
}
|
|
2308
|
+
export interface MerchantCategoriesListResponseDto {
|
|
2309
|
+
categories: MerchantCategoryResponseDto[];
|
|
2310
|
+
}
|
|
2311
|
+
export interface CreateMerchantCategoryDto {
|
|
2312
|
+
/**
|
|
2313
|
+
* 4-digit MCC code (immutable once created)
|
|
2314
|
+
* @example "5411"
|
|
2315
|
+
*/
|
|
2316
|
+
code: string;
|
|
2317
|
+
/** Translatable display name */
|
|
2318
|
+
name: LocalizedNameDto;
|
|
2319
|
+
}
|
|
2320
|
+
export interface UpdateMerchantCategoryDto {
|
|
2321
|
+
name?: LocalizedNameDto;
|
|
2322
|
+
/** Toggle whether new merchants may register under this category */
|
|
2323
|
+
isActive?: boolean;
|
|
2324
|
+
}
|
|
2143
2325
|
export interface CurrencyStatsDto {
|
|
2144
2326
|
/** @example "SYP" */
|
|
2145
2327
|
currency: string;
|
|
@@ -3292,7 +3474,7 @@ export interface FindAllParams6 {
|
|
|
3292
3474
|
*/
|
|
3293
3475
|
endDate?: string;
|
|
3294
3476
|
}
|
|
3295
|
-
export type
|
|
3477
|
+
export type FindAllOutput1 = ActivityLogListResponseDto;
|
|
3296
3478
|
export interface FindAllParams8 {
|
|
3297
3479
|
/**
|
|
3298
3480
|
* Page number (1-based)
|
|
@@ -3315,7 +3497,7 @@ export interface FindAllParams8 {
|
|
|
3315
3497
|
*/
|
|
3316
3498
|
read?: boolean;
|
|
3317
3499
|
}
|
|
3318
|
-
export type
|
|
3500
|
+
export type FindAllResult1 = AdminNotificationListResponseDto;
|
|
3319
3501
|
export type GetUnreadCountData = any;
|
|
3320
3502
|
export interface MarkAsReadParams {
|
|
3321
3503
|
/** Notification ID */
|
|
@@ -3588,7 +3770,7 @@ export interface ListAccountsParams {
|
|
|
3588
3770
|
* Filter by account status
|
|
3589
3771
|
* @example "active"
|
|
3590
3772
|
*/
|
|
3591
|
-
status?: "pending" | "active" | "frozen" | "closed";
|
|
3773
|
+
status?: "pending" | "active" | "restricted" | "suspended" | "frozen" | "dormant" | "closed";
|
|
3592
3774
|
/**
|
|
3593
3775
|
* Filter by account type
|
|
3594
3776
|
* @example "personal"
|
|
@@ -3621,6 +3803,74 @@ export interface UpdateAccountStatusParams {
|
|
|
3621
3803
|
id: string;
|
|
3622
3804
|
}
|
|
3623
3805
|
export type UpdateAccountStatusData = AdminAccountResponseDto;
|
|
3806
|
+
export interface ActivateParams {
|
|
3807
|
+
/** Account ID (UUID) */
|
|
3808
|
+
id: string;
|
|
3809
|
+
}
|
|
3810
|
+
export type ActivateData = AdminAccountResponseDto;
|
|
3811
|
+
export interface RestrictParams {
|
|
3812
|
+
/** Account ID (UUID) */
|
|
3813
|
+
id: string;
|
|
3814
|
+
}
|
|
3815
|
+
export type RestrictData = AdminAccountResponseDto;
|
|
3816
|
+
export interface SuspendParams {
|
|
3817
|
+
/** Account ID (UUID) */
|
|
3818
|
+
id: string;
|
|
3819
|
+
}
|
|
3820
|
+
export type SuspendData = AdminAccountResponseDto;
|
|
3821
|
+
export interface UnsuspendParams {
|
|
3822
|
+
/** Account ID (UUID) */
|
|
3823
|
+
id: string;
|
|
3824
|
+
}
|
|
3825
|
+
export type UnsuspendData = AdminAccountResponseDto;
|
|
3826
|
+
export interface FreezeParams {
|
|
3827
|
+
/** Account ID (UUID) */
|
|
3828
|
+
id: string;
|
|
3829
|
+
}
|
|
3830
|
+
export type FreezeData = AdminAccountResponseDto;
|
|
3831
|
+
export interface UnfreezeParams {
|
|
3832
|
+
/** Account ID (UUID) */
|
|
3833
|
+
id: string;
|
|
3834
|
+
}
|
|
3835
|
+
export type UnfreezeData = AdminAccountResponseDto;
|
|
3836
|
+
export type ListRuleKindsData = any;
|
|
3837
|
+
export interface ListRulesParams {
|
|
3838
|
+
ruleKind?: string;
|
|
3839
|
+
decisionPoint?: string;
|
|
3840
|
+
/** Filter by active state ("true"/"false") */
|
|
3841
|
+
active?: string;
|
|
3842
|
+
}
|
|
3843
|
+
export type ListRulesData = any;
|
|
3844
|
+
export type CreateRuleData = any;
|
|
3845
|
+
export interface GetRuleParams {
|
|
3846
|
+
/** Rule ID (UUID) */
|
|
3847
|
+
id: string;
|
|
3848
|
+
}
|
|
3849
|
+
export type GetRuleData = any;
|
|
3850
|
+
export interface UpdateRuleParams {
|
|
3851
|
+
/** Rule ID (UUID) */
|
|
3852
|
+
id: string;
|
|
3853
|
+
}
|
|
3854
|
+
export type UpdateRuleData = any;
|
|
3855
|
+
export interface ApproveRuleParams {
|
|
3856
|
+
/** Rule ID (UUID) */
|
|
3857
|
+
id: string;
|
|
3858
|
+
}
|
|
3859
|
+
export type ApproveRuleData = any;
|
|
3860
|
+
export interface DeactivateRuleParams {
|
|
3861
|
+
/** Rule ID (UUID) */
|
|
3862
|
+
id: string;
|
|
3863
|
+
}
|
|
3864
|
+
export type DeactivateRuleData = any;
|
|
3865
|
+
export type KillSwitchData = any;
|
|
3866
|
+
export type SimulateData = any;
|
|
3867
|
+
export interface ListDecisionsParams {
|
|
3868
|
+
decisionPoint?: string;
|
|
3869
|
+
customerCif?: string;
|
|
3870
|
+
/** Max rows to return (default: 50, max: 500) */
|
|
3871
|
+
limit?: number;
|
|
3872
|
+
}
|
|
3873
|
+
export type ListDecisionsData = any;
|
|
3624
3874
|
export type GetStatisticsOutput = MerchantStatisticsResponseDto;
|
|
3625
3875
|
export interface ListMerchantsParams {
|
|
3626
3876
|
/**
|
|
@@ -3675,6 +3925,17 @@ export interface UpdateMerchantStatusParams {
|
|
|
3675
3925
|
id: string;
|
|
3676
3926
|
}
|
|
3677
3927
|
export type UpdateMerchantStatusData = MerchantResponseDto;
|
|
3928
|
+
export interface ListParams2 {
|
|
3929
|
+
/** Return only active categories */
|
|
3930
|
+
onlyActive?: boolean;
|
|
3931
|
+
}
|
|
3932
|
+
export type ListResult = MerchantCategoriesListResponseDto;
|
|
3933
|
+
export type CreateData1 = MerchantCategoryResponseDto;
|
|
3934
|
+
export interface UpdateParams6 {
|
|
3935
|
+
/** 4-digit MCC code */
|
|
3936
|
+
code: string;
|
|
3937
|
+
}
|
|
3938
|
+
export type UpdateResult1 = MerchantCategoryResponseDto;
|
|
3678
3939
|
export interface GetStatisticsParams3 {
|
|
3679
3940
|
/** Start date filter (ISO date, e.g. 2025-01-01) */
|
|
3680
3941
|
startDate?: string;
|
|
@@ -3683,7 +3944,7 @@ export interface GetStatisticsParams3 {
|
|
|
3683
3944
|
/** Filter by currency */
|
|
3684
3945
|
currency?: "SYP" | "USD" | "EUR";
|
|
3685
3946
|
}
|
|
3686
|
-
export type
|
|
3947
|
+
export type GetStatisticsData1 = TransactionStatisticsResponseDto;
|
|
3687
3948
|
export interface ListTransactionsParams {
|
|
3688
3949
|
/** Search by transaction ID or public transaction ID */
|
|
3689
3950
|
search?: string;
|
|
@@ -3718,8 +3979,8 @@ export type GetTransactionDetailData = AdminTransactionDetailResponseDto;
|
|
|
3718
3979
|
export type GetTransactionDetailError = ErrorResponseDto;
|
|
3719
3980
|
export type SendGlobalNotificationData = SendGlobalNotificationResponseDto;
|
|
3720
3981
|
export type SendGlobalNotificationError = ErrorResponseDto;
|
|
3721
|
-
export type
|
|
3722
|
-
export type
|
|
3982
|
+
export type CreateResult2 = ScheduledNotificationResponseDto;
|
|
3983
|
+
export type CreateHttpError = ErrorResponseDto;
|
|
3723
3984
|
export interface FindAllParams10 {
|
|
3724
3985
|
/** Filter by status */
|
|
3725
3986
|
status?: "pending" | "sent" | "failed" | "cancelled";
|
|
@@ -3735,19 +3996,19 @@ export interface FindAllParams10 {
|
|
|
3735
3996
|
*/
|
|
3736
3997
|
limit?: number;
|
|
3737
3998
|
}
|
|
3738
|
-
export type
|
|
3999
|
+
export type FindAllData1 = ScheduledNotificationsListResponseDto;
|
|
3739
4000
|
export interface FindOneParams {
|
|
3740
4001
|
/** MongoDB ObjectId */
|
|
3741
4002
|
id: string;
|
|
3742
4003
|
}
|
|
3743
4004
|
export type FindOneData = ScheduledNotificationResponseDto;
|
|
3744
4005
|
export type FindOneError = ErrorResponseDto;
|
|
3745
|
-
export interface
|
|
4006
|
+
export interface UpdateParams8 {
|
|
3746
4007
|
/** MongoDB ObjectId */
|
|
3747
4008
|
id: string;
|
|
3748
4009
|
}
|
|
3749
|
-
export type
|
|
3750
|
-
export type
|
|
4010
|
+
export type UpdateOutput1 = ScheduledNotificationResponseDto;
|
|
4011
|
+
export type UpdateHttpError = ErrorResponseDto;
|
|
3751
4012
|
export interface RemoveParams2 {
|
|
3752
4013
|
/** MongoDB ObjectId */
|
|
3753
4014
|
id: string;
|
|
@@ -3809,13 +4070,13 @@ export interface DeleteDocumentParams {
|
|
|
3809
4070
|
}
|
|
3810
4071
|
export type DeleteDocumentData = any;
|
|
3811
4072
|
export type DeleteDocumentError = ErrorResponseDto;
|
|
3812
|
-
export type
|
|
4073
|
+
export type ListOutput = AppVersionPolicyListResponseDto;
|
|
3813
4074
|
export type UpsertData = AppVersionPolicyDto;
|
|
3814
4075
|
export interface GetParams2 {
|
|
3815
4076
|
platform: "ios" | "android";
|
|
3816
4077
|
}
|
|
3817
4078
|
export type GetResult = AppVersionPolicyDto;
|
|
3818
|
-
export type
|
|
4079
|
+
export type GetStatisticsResult1 = UserStatisticsResponseDto;
|
|
3819
4080
|
export interface FindAllParams12 {
|
|
3820
4081
|
/**
|
|
3821
4082
|
* Page number (1-based)
|
|
@@ -3948,46 +4209,46 @@ export interface FindAllParams14 {
|
|
|
3948
4209
|
*/
|
|
3949
4210
|
endDate?: string;
|
|
3950
4211
|
}
|
|
3951
|
-
export type
|
|
4212
|
+
export type FindAllResult2 = DlqMessageListResponseDto;
|
|
3952
4213
|
export type PendingByTopicData = DlqPendingByTopicResponseDto[];
|
|
3953
4214
|
export interface FindByIdParams8 {
|
|
3954
4215
|
id: string;
|
|
3955
4216
|
}
|
|
3956
|
-
export type
|
|
4217
|
+
export type FindByIdResult2 = DlqMessageResponseDto;
|
|
3957
4218
|
export interface ResolveParams {
|
|
3958
4219
|
id: string;
|
|
3959
4220
|
}
|
|
3960
4221
|
export type ResolveData = DlqMessageResponseDto;
|
|
3961
|
-
export interface
|
|
4222
|
+
export interface ListParams5 {
|
|
3962
4223
|
/** Return only active branches */
|
|
3963
4224
|
onlyActive?: boolean;
|
|
3964
4225
|
}
|
|
3965
|
-
export type
|
|
3966
|
-
export type
|
|
4226
|
+
export type ListOutput1 = BankBranchesListResponseDto;
|
|
4227
|
+
export type CreateResult3 = BankBranchResponseDto;
|
|
3967
4228
|
export interface GetByCodeParams {
|
|
3968
4229
|
/** 3-digit branch code */
|
|
3969
4230
|
code: string;
|
|
3970
4231
|
}
|
|
3971
4232
|
export type GetByCodeData = BankBranchResponseDto;
|
|
3972
|
-
export interface
|
|
4233
|
+
export interface UpdateParams10 {
|
|
3973
4234
|
/** 3-digit branch code */
|
|
3974
4235
|
code: string;
|
|
3975
4236
|
}
|
|
3976
|
-
export type
|
|
3977
|
-
export interface
|
|
4237
|
+
export type UpdateOutput2 = BankBranchResponseDto;
|
|
4238
|
+
export interface ListParams7 {
|
|
3978
4239
|
onlyActive?: boolean;
|
|
3979
4240
|
}
|
|
3980
|
-
export type
|
|
3981
|
-
export interface
|
|
4241
|
+
export type ListData1 = AccountTypesListResponseDto;
|
|
4242
|
+
export interface UpdateParams12 {
|
|
3982
4243
|
/** 2-digit account-type code */
|
|
3983
4244
|
code: string;
|
|
3984
4245
|
}
|
|
3985
|
-
export type
|
|
3986
|
-
export interface
|
|
4246
|
+
export type UpdateResult2 = AccountTypeResponseDto;
|
|
4247
|
+
export interface ListParams9 {
|
|
3987
4248
|
onlyActive?: boolean;
|
|
3988
4249
|
}
|
|
3989
|
-
export type
|
|
3990
|
-
export type
|
|
4250
|
+
export type ListData2 = CurrencyConfigListResponseDto;
|
|
4251
|
+
export type CreateResult4 = CurrencyConfigResponseDto;
|
|
3991
4252
|
export interface GetByCodeParams2 {
|
|
3992
4253
|
/** ISO 4217 alpha-3 code (e.g. USD) */
|
|
3993
4254
|
code: string;
|
|
@@ -3998,11 +4259,11 @@ export interface DeleteParams6 {
|
|
|
3998
4259
|
code: string;
|
|
3999
4260
|
}
|
|
4000
4261
|
export type DeleteResult1 = any;
|
|
4001
|
-
export interface
|
|
4262
|
+
export interface UpdateParams14 {
|
|
4002
4263
|
/** ISO 4217 alpha-3 code */
|
|
4003
4264
|
code: string;
|
|
4004
4265
|
}
|
|
4005
|
-
export type
|
|
4266
|
+
export type UpdateData1 = CurrencyConfigResponseDto;
|
|
4006
4267
|
export interface ListRequestsParams {
|
|
4007
4268
|
/** Filter by status */
|
|
4008
4269
|
status?: "PENDING" | "APPROVED" | "EXECUTED" | "FAILED" | "REJECTED" | "EXPIRED" | "CANCELLED";
|
|
@@ -4037,10 +4298,10 @@ export interface CancelParams {
|
|
|
4037
4298
|
id: string;
|
|
4038
4299
|
}
|
|
4039
4300
|
export type CancelData = ApprovalRequestResponseDto;
|
|
4040
|
-
export type
|
|
4041
|
-
export interface
|
|
4301
|
+
export type ListResult1 = ApprovalPolicyResponseDto[];
|
|
4302
|
+
export interface UpdateParams16 {
|
|
4042
4303
|
actionType: "admin.create" | "admin.update" | "admin.delete" | "admin.status_update" | "system_config.upsert" | "system_config.delete" | "account.fund" | "role.assign_permissions" | "reconciliation.run";
|
|
4043
4304
|
}
|
|
4044
|
-
export type
|
|
4305
|
+
export type UpdateOutput3 = ApprovalPolicyResponseDto;
|
|
4045
4306
|
export type IndexData = any;
|
|
4046
4307
|
//# sourceMappingURL=data-contracts.d.ts.map
|