@paysponge/sdk 0.1.57 → 0.1.58
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/generated/openapi/apis/default-api.d.ts +11 -0
- package/dist/api/generated/openapi/apis/default-api.d.ts.map +1 -1
- package/dist/api/generated/openapi/apis/default-api.js +10 -0
- package/dist/api/generated/openapi/apis/default-api.js.map +1 -1
- package/dist/api/generated/openapi/models/post-api-persona-kyc-inquiry-request.d.ts +14 -0
- package/dist/api/generated/openapi/models/post-api-persona-kyc-inquiry-request.d.ts.map +1 -1
- package/dist/api/generated/openapi/models/post-api-persona-kyc-inquiry-request.js +9 -0
- package/dist/api/generated/openapi/models/post-api-persona-kyc-inquiry-request.js.map +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
|
@@ -254,6 +254,7 @@ export interface DefaultApiGetApiPaymentLinksPublicByPaymentLinkIdRequest {
|
|
|
254
254
|
paymentLinkId: string;
|
|
255
255
|
}
|
|
256
256
|
export interface DefaultApiGetApiPersonaKycProfileRequest {
|
|
257
|
+
environment?: GetApiPersonaKycProfileEnvironmentEnum;
|
|
257
258
|
forceRefresh?: GetApiBridgeFiatCustomerForceRefreshParameter;
|
|
258
259
|
}
|
|
259
260
|
export interface DefaultApiGetApiPromoKv2Jm7DZOIDGi6D2FreemoneyRequest {
|
|
@@ -2700,6 +2701,7 @@ export interface DefaultApiInterface {
|
|
|
2700
2701
|
getApiPersonaKycConfig(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
2701
2702
|
/**
|
|
2702
2703
|
* Creates request options for getApiPersonaKycProfile without sending the request
|
|
2704
|
+
* @param {'sandbox' | 'production'} [environment]
|
|
2703
2705
|
* @param {GetApiBridgeFiatCustomerForceRefreshParameter} [forceRefresh]
|
|
2704
2706
|
* @throws {RequiredError}
|
|
2705
2707
|
* @memberof DefaultApiInterface
|
|
@@ -2707,6 +2709,7 @@ export interface DefaultApiInterface {
|
|
|
2707
2709
|
getApiPersonaKycProfileRequestOpts(requestParameters: DefaultApiGetApiPersonaKycProfileRequest): Promise<runtime.RequestOpts>;
|
|
2708
2710
|
/**
|
|
2709
2711
|
*
|
|
2712
|
+
* @param {'sandbox' | 'production'} [environment]
|
|
2710
2713
|
* @param {GetApiBridgeFiatCustomerForceRefreshParameter} [forceRefresh]
|
|
2711
2714
|
* @param {*} [options] Override http request option.
|
|
2712
2715
|
* @throws {RequiredError}
|
|
@@ -8826,6 +8829,14 @@ export declare const DeleteApiSpongeCardCustomerEnvironmentEnum: {
|
|
|
8826
8829
|
readonly Production: "production";
|
|
8827
8830
|
};
|
|
8828
8831
|
export type DeleteApiSpongeCardCustomerEnvironmentEnum = typeof DeleteApiSpongeCardCustomerEnvironmentEnum[keyof typeof DeleteApiSpongeCardCustomerEnvironmentEnum];
|
|
8832
|
+
/**
|
|
8833
|
+
* @export
|
|
8834
|
+
*/
|
|
8835
|
+
export declare const GetApiPersonaKycProfileEnvironmentEnum: {
|
|
8836
|
+
readonly Sandbox: "sandbox";
|
|
8837
|
+
readonly Production: "production";
|
|
8838
|
+
};
|
|
8839
|
+
export type GetApiPersonaKycProfileEnvironmentEnum = typeof GetApiPersonaKycProfileEnvironmentEnum[keyof typeof GetApiPersonaKycProfileEnvironmentEnum];
|
|
8829
8840
|
/**
|
|
8830
8841
|
* @export
|
|
8831
8842
|
*/
|