squarefi-bff-api-module 1.22.11 → 1.22.13
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/autogen/apiV2.types.d.ts +55 -0
- package/dist/api/types/types.d.ts +1 -1
- package/dist/constants.d.ts +1 -0
- package/dist/constants.js +1 -0
- package/package.json +1 -1
- package/src/api/types/autogen/apiV2.types.ts +55 -0
- package/src/api/types/types.ts +1 -1
- package/src/constants.ts +1 -0
|
@@ -706,6 +706,22 @@ export interface paths {
|
|
|
706
706
|
patch?: never;
|
|
707
707
|
trace?: never;
|
|
708
708
|
};
|
|
709
|
+
"/integration-vendors/sync-data": {
|
|
710
|
+
parameters: {
|
|
711
|
+
query?: never;
|
|
712
|
+
header?: never;
|
|
713
|
+
path?: never;
|
|
714
|
+
cookie?: never;
|
|
715
|
+
};
|
|
716
|
+
get?: never;
|
|
717
|
+
put?: never;
|
|
718
|
+
post: operations["IntegrationVendorsController_syncVendorData"];
|
|
719
|
+
delete?: never;
|
|
720
|
+
options?: never;
|
|
721
|
+
head?: never;
|
|
722
|
+
patch?: never;
|
|
723
|
+
trace?: never;
|
|
724
|
+
};
|
|
709
725
|
"/storage/kyc": {
|
|
710
726
|
parameters: {
|
|
711
727
|
query?: never;
|
|
@@ -1826,6 +1842,24 @@ export interface components {
|
|
|
1826
1842
|
translations: components["schemas"]["CountryTranslations"][] | null;
|
|
1827
1843
|
wikiDataId: string | null;
|
|
1828
1844
|
};
|
|
1845
|
+
LoadIntegrationVendorDataDto: {
|
|
1846
|
+
/** @description Wallet ID */
|
|
1847
|
+
wallet_id: string;
|
|
1848
|
+
/** @description Integration vendor ID */
|
|
1849
|
+
integration_vendor_id: string;
|
|
1850
|
+
/**
|
|
1851
|
+
* @description Integration vendor type
|
|
1852
|
+
* @enum {string}
|
|
1853
|
+
*/
|
|
1854
|
+
type: "hifibridge" | "raincards";
|
|
1855
|
+
/**
|
|
1856
|
+
* @description Vendor user type
|
|
1857
|
+
* @enum {string}
|
|
1858
|
+
*/
|
|
1859
|
+
user_type: "business" | "individual";
|
|
1860
|
+
/** @description Provider ID from external system */
|
|
1861
|
+
provider_id: string;
|
|
1862
|
+
};
|
|
1829
1863
|
StorageUploadFileResponseDto: {
|
|
1830
1864
|
fullPath: string;
|
|
1831
1865
|
};
|
|
@@ -3669,6 +3703,27 @@ export interface operations {
|
|
|
3669
3703
|
};
|
|
3670
3704
|
};
|
|
3671
3705
|
};
|
|
3706
|
+
IntegrationVendorsController_syncVendorData: {
|
|
3707
|
+
parameters: {
|
|
3708
|
+
query?: never;
|
|
3709
|
+
header?: never;
|
|
3710
|
+
path?: never;
|
|
3711
|
+
cookie?: never;
|
|
3712
|
+
};
|
|
3713
|
+
requestBody: {
|
|
3714
|
+
content: {
|
|
3715
|
+
"application/json": components["schemas"]["LoadIntegrationVendorDataDto"];
|
|
3716
|
+
};
|
|
3717
|
+
};
|
|
3718
|
+
responses: {
|
|
3719
|
+
201: {
|
|
3720
|
+
headers: {
|
|
3721
|
+
[name: string]: unknown;
|
|
3722
|
+
};
|
|
3723
|
+
content?: never;
|
|
3724
|
+
};
|
|
3725
|
+
};
|
|
3726
|
+
};
|
|
3672
3727
|
StorageController_getFileUrl: {
|
|
3673
3728
|
parameters: {
|
|
3674
3729
|
query: {
|
|
@@ -2124,7 +2124,7 @@ export declare namespace API {
|
|
|
2124
2124
|
type Request = operations['AuthenticatedUserController_changeEmail']['requestBody']['content']['application/json'];
|
|
2125
2125
|
}
|
|
2126
2126
|
namespace Confirm {
|
|
2127
|
-
type Request = operations['
|
|
2127
|
+
type Request = operations['AuthenticatedUserController_changeEmailConfirm']['requestBody']['content']['application/json'];
|
|
2128
2128
|
}
|
|
2129
2129
|
}
|
|
2130
2130
|
}
|
package/dist/constants.d.ts
CHANGED
package/dist/constants.js
CHANGED
|
@@ -152,6 +152,7 @@ var OrderStatuses;
|
|
|
152
152
|
(function (OrderStatuses) {
|
|
153
153
|
OrderStatuses["NEW"] = "NEW";
|
|
154
154
|
OrderStatuses["PENDING"] = "PENDING";
|
|
155
|
+
OrderStatuses["PROCESSING"] = "PROCESSING";
|
|
155
156
|
OrderStatuses["CANCELED"] = "CANCELED";
|
|
156
157
|
OrderStatuses["COMPLETE"] = "COMPLETE";
|
|
157
158
|
OrderStatuses["ERROR"] = "ERROR";
|
package/package.json
CHANGED
|
@@ -707,6 +707,22 @@ export interface paths {
|
|
|
707
707
|
patch?: never;
|
|
708
708
|
trace?: never;
|
|
709
709
|
};
|
|
710
|
+
"/integration-vendors/sync-data": {
|
|
711
|
+
parameters: {
|
|
712
|
+
query?: never;
|
|
713
|
+
header?: never;
|
|
714
|
+
path?: never;
|
|
715
|
+
cookie?: never;
|
|
716
|
+
};
|
|
717
|
+
get?: never;
|
|
718
|
+
put?: never;
|
|
719
|
+
post: operations["IntegrationVendorsController_syncVendorData"];
|
|
720
|
+
delete?: never;
|
|
721
|
+
options?: never;
|
|
722
|
+
head?: never;
|
|
723
|
+
patch?: never;
|
|
724
|
+
trace?: never;
|
|
725
|
+
};
|
|
710
726
|
"/storage/kyc": {
|
|
711
727
|
parameters: {
|
|
712
728
|
query?: never;
|
|
@@ -1827,6 +1843,24 @@ export interface components {
|
|
|
1827
1843
|
translations: components["schemas"]["CountryTranslations"][] | null;
|
|
1828
1844
|
wikiDataId: string | null;
|
|
1829
1845
|
};
|
|
1846
|
+
LoadIntegrationVendorDataDto: {
|
|
1847
|
+
/** @description Wallet ID */
|
|
1848
|
+
wallet_id: string;
|
|
1849
|
+
/** @description Integration vendor ID */
|
|
1850
|
+
integration_vendor_id: string;
|
|
1851
|
+
/**
|
|
1852
|
+
* @description Integration vendor type
|
|
1853
|
+
* @enum {string}
|
|
1854
|
+
*/
|
|
1855
|
+
type: "hifibridge" | "raincards";
|
|
1856
|
+
/**
|
|
1857
|
+
* @description Vendor user type
|
|
1858
|
+
* @enum {string}
|
|
1859
|
+
*/
|
|
1860
|
+
user_type: "business" | "individual";
|
|
1861
|
+
/** @description Provider ID from external system */
|
|
1862
|
+
provider_id: string;
|
|
1863
|
+
};
|
|
1830
1864
|
StorageUploadFileResponseDto: {
|
|
1831
1865
|
fullPath: string;
|
|
1832
1866
|
};
|
|
@@ -3670,6 +3704,27 @@ export interface operations {
|
|
|
3670
3704
|
};
|
|
3671
3705
|
};
|
|
3672
3706
|
};
|
|
3707
|
+
IntegrationVendorsController_syncVendorData: {
|
|
3708
|
+
parameters: {
|
|
3709
|
+
query?: never;
|
|
3710
|
+
header?: never;
|
|
3711
|
+
path?: never;
|
|
3712
|
+
cookie?: never;
|
|
3713
|
+
};
|
|
3714
|
+
requestBody: {
|
|
3715
|
+
content: {
|
|
3716
|
+
"application/json": components["schemas"]["LoadIntegrationVendorDataDto"];
|
|
3717
|
+
};
|
|
3718
|
+
};
|
|
3719
|
+
responses: {
|
|
3720
|
+
201: {
|
|
3721
|
+
headers: {
|
|
3722
|
+
[name: string]: unknown;
|
|
3723
|
+
};
|
|
3724
|
+
content?: never;
|
|
3725
|
+
};
|
|
3726
|
+
};
|
|
3727
|
+
};
|
|
3673
3728
|
StorageController_getFileUrl: {
|
|
3674
3729
|
parameters: {
|
|
3675
3730
|
query: {
|
package/src/api/types/types.ts
CHANGED
|
@@ -2501,7 +2501,7 @@ export namespace API {
|
|
|
2501
2501
|
|
|
2502
2502
|
export namespace Confirm {
|
|
2503
2503
|
export type Request =
|
|
2504
|
-
operations['
|
|
2504
|
+
operations['AuthenticatedUserController_changeEmailConfirm']['requestBody']['content']['application/json'];
|
|
2505
2505
|
}
|
|
2506
2506
|
}
|
|
2507
2507
|
}
|