squarefi-bff-api-module 1.36.16 → 1.36.17
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.
|
@@ -43,7 +43,7 @@ export interface paths {
|
|
|
43
43
|
id?: string;
|
|
44
44
|
name?: string;
|
|
45
45
|
/** @enum {string} */
|
|
46
|
-
role?: "READ_ONLY" | "DEVELOPER" | "PRODUCTION" | "
|
|
46
|
+
role?: "READ_ONLY" | "DEVELOPER" | "PRODUCTION" | "OWNER";
|
|
47
47
|
is_enabled?: boolean;
|
|
48
48
|
/** Format: date-time */
|
|
49
49
|
created_at?: string;
|
|
@@ -111,7 +111,7 @@ export interface paths {
|
|
|
111
111
|
id?: string;
|
|
112
112
|
name?: string;
|
|
113
113
|
/** @enum {string} */
|
|
114
|
-
role?: "READ_ONLY" | "DEVELOPER" | "PRODUCTION" | "
|
|
114
|
+
role?: "READ_ONLY" | "DEVELOPER" | "PRODUCTION" | "OWNER";
|
|
115
115
|
/** Format: uuid */
|
|
116
116
|
wallet_id?: string;
|
|
117
117
|
/** Format: uuid */
|
|
@@ -7774,7 +7774,7 @@ export interface components {
|
|
|
7774
7774
|
* @description Permission level of the API key
|
|
7775
7775
|
* @enum {string}
|
|
7776
7776
|
*/
|
|
7777
|
-
role?: "READ_ONLY" | "DEVELOPER" | "PRODUCTION" | "
|
|
7777
|
+
role?: "READ_ONLY" | "DEVELOPER" | "PRODUCTION" | "OWNER";
|
|
7778
7778
|
/**
|
|
7779
7779
|
* Format: uuid
|
|
7780
7780
|
* @description Associated wallet ID
|
|
@@ -2297,6 +2297,10 @@ export interface components {
|
|
|
2297
2297
|
readonly support_text?: string | null;
|
|
2298
2298
|
readonly support_phone?: string | null;
|
|
2299
2299
|
};
|
|
2300
|
+
SupportedLocalesEntity: {
|
|
2301
|
+
default: string;
|
|
2302
|
+
supported: string[];
|
|
2303
|
+
};
|
|
2300
2304
|
SystemConfigDto: {
|
|
2301
2305
|
/** @enum {string} */
|
|
2302
2306
|
default_theme_mode: "dark" | "light";
|
|
@@ -2316,6 +2320,7 @@ export interface components {
|
|
|
2316
2320
|
readonly statement_branding?: components["schemas"]["StatementBrandingEntity"] | null;
|
|
2317
2321
|
/** @enum {string} */
|
|
2318
2322
|
kyc_data_provider: "persona" | "sumsub";
|
|
2323
|
+
readonly supported_locales?: components["schemas"]["SupportedLocalesEntity"] | null;
|
|
2319
2324
|
base_currency: string;
|
|
2320
2325
|
};
|
|
2321
2326
|
SystemChainsResponseDto: {
|