squarefi-bff-api-module 1.22.4 → 1.22.6
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/api/issuing.d.ts +1 -1
- package/dist/api/issuing.js +1 -1
- package/dist/api/types/autogen/apiV2.types.d.ts +4 -0
- package/dist/api/types/types.d.ts +3 -0
- package/package.json +1 -1
- package/src/api/issuing.ts +2 -2
- package/src/api/types/autogen/apiV2.types.ts +4 -0
- package/src/api/types/types.ts +3 -0
package/dist/api/issuing.d.ts
CHANGED
package/dist/api/issuing.js
CHANGED
|
@@ -131,7 +131,7 @@ exports.issuing = {
|
|
|
131
131
|
},
|
|
132
132
|
config: {
|
|
133
133
|
programs: {
|
|
134
|
-
getAll: () => apiClientFactory_1.apiClientV1.getRequest('/issuing/config/programs'
|
|
134
|
+
getAll: (params) => apiClientFactory_1.apiClientV1.getRequest('/issuing/config/programs', { params }),
|
|
135
135
|
},
|
|
136
136
|
},
|
|
137
137
|
};
|
|
@@ -1040,6 +1040,8 @@ export interface components {
|
|
|
1040
1040
|
is_developer: boolean;
|
|
1041
1041
|
first_name?: string | null;
|
|
1042
1042
|
last_name?: string | null;
|
|
1043
|
+
/** @description User birth date in ISO 8601 format */
|
|
1044
|
+
birth_date?: string | null;
|
|
1043
1045
|
};
|
|
1044
1046
|
SignInByEmailWithPasswordDto: {
|
|
1045
1047
|
password: string;
|
|
@@ -1060,6 +1062,8 @@ export interface components {
|
|
|
1060
1062
|
default_currency?: string;
|
|
1061
1063
|
first_name?: string | null;
|
|
1062
1064
|
last_name?: string | null;
|
|
1065
|
+
/** @description User birth date in ISO 8601 format */
|
|
1066
|
+
birth_date?: string | null;
|
|
1063
1067
|
};
|
|
1064
1068
|
ChangeEmailDto: {
|
|
1065
1069
|
access_token: string;
|
package/package.json
CHANGED
package/src/api/issuing.ts
CHANGED
|
@@ -175,8 +175,8 @@ export const issuing = {
|
|
|
175
175
|
},
|
|
176
176
|
config: {
|
|
177
177
|
programs: {
|
|
178
|
-
getAll: (): Promise<API.Issuing.Programs.Response
|
|
179
|
-
apiClientV1.getRequest<API.Issuing.Programs.Response>('/issuing/config/programs'
|
|
178
|
+
getAll: (params: API.Issuing.Programs.Request): Promise<API.Issuing.Programs.Response> =>
|
|
179
|
+
apiClientV1.getRequest<API.Issuing.Programs.Response>('/issuing/config/programs', { params }),
|
|
180
180
|
},
|
|
181
181
|
},
|
|
182
182
|
};
|
|
@@ -1041,6 +1041,8 @@ export interface components {
|
|
|
1041
1041
|
is_developer: boolean;
|
|
1042
1042
|
first_name?: string | null;
|
|
1043
1043
|
last_name?: string | null;
|
|
1044
|
+
/** @description User birth date in ISO 8601 format */
|
|
1045
|
+
birth_date?: string | null;
|
|
1044
1046
|
};
|
|
1045
1047
|
SignInByEmailWithPasswordDto: {
|
|
1046
1048
|
password: string;
|
|
@@ -1061,6 +1063,8 @@ export interface components {
|
|
|
1061
1063
|
default_currency?: string;
|
|
1062
1064
|
first_name?: string | null;
|
|
1063
1065
|
last_name?: string | null;
|
|
1066
|
+
/** @description User birth date in ISO 8601 format */
|
|
1067
|
+
birth_date?: string | null;
|
|
1064
1068
|
};
|
|
1065
1069
|
ChangeEmailDto: {
|
|
1066
1070
|
access_token: string;
|
package/src/api/types/types.ts
CHANGED