squarefi-bff-api-module 1.22.6 → 1.22.8
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/types/types.d.ts +5 -18
- package/package.json +1 -1
- package/src/api/types/types.ts +9 -18
|
@@ -2058,6 +2058,7 @@ export declare namespace API {
|
|
|
2058
2058
|
offset: number;
|
|
2059
2059
|
limit: number;
|
|
2060
2060
|
pagination?: boolean;
|
|
2061
|
+
wallet_id: string;
|
|
2061
2062
|
}
|
|
2062
2063
|
interface Response {
|
|
2063
2064
|
data: Program[];
|
|
@@ -2076,32 +2077,18 @@ export declare namespace API {
|
|
|
2076
2077
|
namespace UpdateUser {
|
|
2077
2078
|
namespace Phone {
|
|
2078
2079
|
namespace RequestOTP {
|
|
2079
|
-
type Request =
|
|
2080
|
-
phone: string;
|
|
2081
|
-
access_token: string;
|
|
2082
|
-
refresh_token: string;
|
|
2083
|
-
};
|
|
2080
|
+
type Request = operations['AuthenticatedUserController_changePhone']['requestBody']['content']['application/json'];
|
|
2084
2081
|
}
|
|
2085
2082
|
namespace Confirm {
|
|
2086
|
-
type Request =
|
|
2087
|
-
phone: string;
|
|
2088
|
-
token: string;
|
|
2089
|
-
};
|
|
2083
|
+
type Request = operations['AuthenticatedUserController_changePhoneNumberConfirm']['requestBody']['content']['application/json'];
|
|
2090
2084
|
}
|
|
2091
2085
|
}
|
|
2092
2086
|
namespace Email {
|
|
2093
2087
|
namespace RequestOTP {
|
|
2094
|
-
type Request =
|
|
2095
|
-
email: string;
|
|
2096
|
-
access_token: string;
|
|
2097
|
-
refresh_token: string;
|
|
2098
|
-
};
|
|
2088
|
+
type Request = operations['AuthenticatedUserController_changeEmail']['requestBody']['content']['application/json'];
|
|
2099
2089
|
}
|
|
2100
2090
|
namespace Confirm {
|
|
2101
|
-
type Request =
|
|
2102
|
-
email: string;
|
|
2103
|
-
token: string;
|
|
2104
|
-
};
|
|
2091
|
+
type Request = operations['AuthenticatedUserController_changeEmail']['requestBody']['content']['application/json'];
|
|
2105
2092
|
}
|
|
2106
2093
|
}
|
|
2107
2094
|
}
|
package/package.json
CHANGED
package/src/api/types/types.ts
CHANGED
|
@@ -2417,6 +2417,7 @@ export namespace API {
|
|
|
2417
2417
|
offset: number;
|
|
2418
2418
|
limit: number;
|
|
2419
2419
|
pagination?: boolean;
|
|
2420
|
+
wallet_id: string;
|
|
2420
2421
|
}
|
|
2421
2422
|
export interface Response {
|
|
2422
2423
|
data: Program[];
|
|
@@ -2438,34 +2439,24 @@ export namespace API {
|
|
|
2438
2439
|
export namespace UpdateUser {
|
|
2439
2440
|
export namespace Phone {
|
|
2440
2441
|
export namespace RequestOTP {
|
|
2441
|
-
export type Request =
|
|
2442
|
-
|
|
2443
|
-
access_token: string;
|
|
2444
|
-
refresh_token: string;
|
|
2445
|
-
};
|
|
2442
|
+
export type Request =
|
|
2443
|
+
operations['AuthenticatedUserController_changePhone']['requestBody']['content']['application/json'];
|
|
2446
2444
|
}
|
|
2447
2445
|
export namespace Confirm {
|
|
2448
|
-
export type Request =
|
|
2449
|
-
|
|
2450
|
-
token: string;
|
|
2451
|
-
};
|
|
2446
|
+
export type Request =
|
|
2447
|
+
operations['AuthenticatedUserController_changePhoneNumberConfirm']['requestBody']['content']['application/json'];
|
|
2452
2448
|
}
|
|
2453
2449
|
}
|
|
2454
2450
|
|
|
2455
2451
|
export namespace Email {
|
|
2456
2452
|
export namespace RequestOTP {
|
|
2457
|
-
export type Request =
|
|
2458
|
-
|
|
2459
|
-
access_token: string;
|
|
2460
|
-
refresh_token: string;
|
|
2461
|
-
};
|
|
2453
|
+
export type Request =
|
|
2454
|
+
operations['AuthenticatedUserController_changeEmail']['requestBody']['content']['application/json'];
|
|
2462
2455
|
}
|
|
2463
2456
|
|
|
2464
2457
|
export namespace Confirm {
|
|
2465
|
-
export type Request =
|
|
2466
|
-
|
|
2467
|
-
token: string;
|
|
2468
|
-
};
|
|
2458
|
+
export type Request =
|
|
2459
|
+
operations['AuthenticatedUserController_changeEmail']['requestBody']['content']['application/json'];
|
|
2469
2460
|
}
|
|
2470
2461
|
}
|
|
2471
2462
|
}
|