@paysponge/sdk 0.1.49 → 0.1.50
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 +34 -0
- package/dist/api/generated/openapi/apis/default-api.d.ts.map +1 -1
- package/dist/api/generated/openapi/apis/default-api.js +33 -0
- package/dist/api/generated/openapi/apis/default-api.js.map +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
|
@@ -47,6 +47,10 @@ export interface DefaultApiDeleteApiFlowsByIdRequest {
|
|
|
47
47
|
export interface DefaultApiDeleteApiMasterKeysByIdRequest {
|
|
48
48
|
id: string;
|
|
49
49
|
}
|
|
50
|
+
export interface DefaultApiDeleteApiPaymentLinksByPaymentLinkIdRequest {
|
|
51
|
+
paymentLinkId: string;
|
|
52
|
+
agentId?: string;
|
|
53
|
+
}
|
|
50
54
|
export interface DefaultApiDeleteApiSpendingLimitsByIdRequest {
|
|
51
55
|
id: string;
|
|
52
56
|
}
|
|
@@ -1260,6 +1264,26 @@ export interface DefaultApiInterface {
|
|
|
1260
1264
|
/**
|
|
1261
1265
|
*/
|
|
1262
1266
|
deleteApiMasterKeysById(requestParameters: DefaultApiDeleteApiMasterKeysByIdRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
1267
|
+
/**
|
|
1268
|
+
* Creates request options for deleteApiPaymentLinksByPaymentLinkId without sending the request
|
|
1269
|
+
* @param {string} paymentLinkId
|
|
1270
|
+
* @param {string} [agentId]
|
|
1271
|
+
* @throws {RequiredError}
|
|
1272
|
+
* @memberof DefaultApiInterface
|
|
1273
|
+
*/
|
|
1274
|
+
deleteApiPaymentLinksByPaymentLinkIdRequestOpts(requestParameters: DefaultApiDeleteApiPaymentLinksByPaymentLinkIdRequest): Promise<runtime.RequestOpts>;
|
|
1275
|
+
/**
|
|
1276
|
+
*
|
|
1277
|
+
* @param {string} paymentLinkId
|
|
1278
|
+
* @param {string} [agentId]
|
|
1279
|
+
* @param {*} [options] Override http request option.
|
|
1280
|
+
* @throws {RequiredError}
|
|
1281
|
+
* @memberof DefaultApiInterface
|
|
1282
|
+
*/
|
|
1283
|
+
deleteApiPaymentLinksByPaymentLinkIdRaw(requestParameters: DefaultApiDeleteApiPaymentLinksByPaymentLinkIdRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
1284
|
+
/**
|
|
1285
|
+
*/
|
|
1286
|
+
deleteApiPaymentLinksByPaymentLinkId(requestParameters: DefaultApiDeleteApiPaymentLinksByPaymentLinkIdRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
1263
1287
|
/**
|
|
1264
1288
|
* Creates request options for deleteApiSpendingLimitsById without sending the request
|
|
1265
1289
|
* @param {string} id
|
|
@@ -5885,6 +5909,16 @@ export declare class DefaultApi extends runtime.BaseAPI implements DefaultApiInt
|
|
|
5885
5909
|
/**
|
|
5886
5910
|
*/
|
|
5887
5911
|
deleteApiMasterKeysById(requestParameters: DefaultApiDeleteApiMasterKeysByIdRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
5912
|
+
/**
|
|
5913
|
+
* Creates request options for deleteApiPaymentLinksByPaymentLinkId without sending the request
|
|
5914
|
+
*/
|
|
5915
|
+
deleteApiPaymentLinksByPaymentLinkIdRequestOpts(requestParameters: DefaultApiDeleteApiPaymentLinksByPaymentLinkIdRequest): Promise<runtime.RequestOpts>;
|
|
5916
|
+
/**
|
|
5917
|
+
*/
|
|
5918
|
+
deleteApiPaymentLinksByPaymentLinkIdRaw(requestParameters: DefaultApiDeleteApiPaymentLinksByPaymentLinkIdRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
5919
|
+
/**
|
|
5920
|
+
*/
|
|
5921
|
+
deleteApiPaymentLinksByPaymentLinkId(requestParameters: DefaultApiDeleteApiPaymentLinksByPaymentLinkIdRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
5888
5922
|
/**
|
|
5889
5923
|
* Creates request options for deleteApiSpendingLimitsById without sending the request
|
|
5890
5924
|
*/
|