@pax2pay/client 0.9.9 → 0.9.11
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/Client/Batch/index.ts +65 -0
- package/Client/index.ts +3 -0
- package/dist/Client/Batch/index.d.ts +14 -0
- package/dist/Client/Batch/index.js +30 -0
- package/dist/Client/Batch/index.js.map +1 -0
- package/dist/Client/Payments/index.d.ts +2 -2
- package/dist/Client/index.d.ts +3 -0
- package/dist/Client/index.js +2 -0
- package/dist/Client/index.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/model/Batch/Item/RebateTask.d.ts +16 -0
- package/dist/model/Batch/Item/RebateTask.js +17 -0
- package/dist/model/Batch/Item/RebateTask.js.map +1 -0
- package/dist/model/Batch/Item/Status.d.ts +6 -0
- package/dist/model/Batch/Item/Status.js +7 -0
- package/dist/model/Batch/Item/Status.js.map +1 -0
- package/dist/model/Batch/Item/index.d.ts +22 -0
- package/dist/model/Batch/Item/index.js +27 -0
- package/dist/model/Batch/Item/index.js.map +1 -0
- package/dist/model/Batch/Response.d.ts +23 -0
- package/dist/model/Batch/Response.js +25 -0
- package/dist/model/Batch/Response.js.map +1 -0
- package/dist/model/Batch/Result.d.ts +8 -0
- package/dist/model/Batch/Result.js +10 -0
- package/dist/model/Batch/Result.js.map +1 -0
- package/dist/model/Batch/Status.d.ts +7 -0
- package/dist/model/Batch/Status.js +8 -0
- package/dist/model/Batch/Status.js.map +1 -0
- package/dist/model/Batch/Summary.d.ts +10 -0
- package/dist/model/Batch/Summary.js +12 -0
- package/dist/model/Batch/Summary.js.map +1 -0
- package/dist/model/Batch/Type.d.ts +7 -0
- package/dist/model/Batch/Type.js +8 -0
- package/dist/model/Batch/Type.js.map +1 -0
- package/dist/model/Batch/index.d.ts +14 -0
- package/dist/model/Batch/index.js +16 -0
- package/dist/model/Batch/index.js.map +1 -0
- package/dist/model/CardResponseV2.js +6 -6
- package/dist/model/CardResponseV2.js.map +1 -1
- package/dist/model/FundingAccountSummaryResponse.d.ts +2 -0
- package/dist/model/FundingAccountSummaryResponse.js +2 -0
- package/dist/model/FundingAccountSummaryResponse.js.map +1 -1
- package/dist/model/Role.d.ts +3 -3
- package/dist/model/Role.js +2 -0
- package/dist/model/Role.js.map +1 -1
- package/dist/model/index.d.ts +2 -1
- package/dist/model/index.js +2 -1
- package/dist/model/index.js.map +1 -1
- package/index.ts +2 -0
- package/model/Batch/Item/RebateTask.ts +29 -0
- package/model/Batch/Item/Status.ts +8 -0
- package/model/Batch/Item/index.ts +34 -0
- package/model/Batch/Response.ts +39 -0
- package/model/Batch/Result.ts +14 -0
- package/model/Batch/Status.ts +9 -0
- package/model/Batch/Summary.ts +18 -0
- package/model/Batch/Type.ts +9 -0
- package/model/Batch/index.ts +15 -0
- package/model/CardResponseV2.ts +6 -6
- package/model/FundingAccountSummaryResponse.ts +3 -0
- package/model/Role.ts +2 -0
- package/model/index.ts +2 -0
- package/package.json +1 -1
package/model/index.ts
CHANGED
|
@@ -21,6 +21,7 @@ import { ApiKeyCreateResponse } from "./ApiKeyCreateResponse"
|
|
|
21
21
|
import { ApiKeyResponse } from "./ApiKeyResponse"
|
|
22
22
|
import { AvailableCardTypesHasResponse } from "./AvailableCardTypesHasResponse"
|
|
23
23
|
import { AvailableCardTypesResponse } from "./AvailableCardTypesResponse"
|
|
24
|
+
import { Batch } from "./Batch"
|
|
24
25
|
import { BeneficiaryRequest } from "./BeneficiaryRequest"
|
|
25
26
|
import { BeneficiaryResponse } from "./BeneficiaryResponse"
|
|
26
27
|
import { BeneficiaryStatus } from "./BeneficiaryStatus"
|
|
@@ -299,6 +300,7 @@ export {
|
|
|
299
300
|
ApiKeyResponse,
|
|
300
301
|
AvailableCardTypesHasResponse,
|
|
301
302
|
AvailableCardTypesResponse,
|
|
303
|
+
Batch,
|
|
302
304
|
BeneficiaryRequest,
|
|
303
305
|
BeneficiaryResponse,
|
|
304
306
|
BeneficiaryStatus,
|