@pax2pay/client 0.10.2 → 0.10.4
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/model/CardStatement.d.ts +3 -0
- package/dist/model/CardStatement.js +3 -0
- package/dist/model/CardStatement.js.map +1 -1
- package/dist/model/StatementReportRequest.d.ts +2 -0
- package/dist/model/StatementSummaryReportRequest.d.ts +2 -0
- package/model/CardStatement.ts +6 -0
- package/model/StatementReportRequest.ts +2 -0
- package/model/StatementSummaryReportRequest.ts +2 -0
- package/package.json +1 -1
|
@@ -8,8 +8,11 @@ export interface CardStatement {
|
|
|
8
8
|
type: string;
|
|
9
9
|
status?: string;
|
|
10
10
|
balance: number;
|
|
11
|
+
billingBalance: number;
|
|
11
12
|
fundsChanged?: number;
|
|
12
13
|
currency?: isoly.Currency;
|
|
14
|
+
billingCurrency?: isoly.Currency;
|
|
15
|
+
fxRate?: number;
|
|
13
16
|
reason?: string;
|
|
14
17
|
additionalInformation?: Record<string, any>;
|
|
15
18
|
id?: string;
|
|
@@ -11,8 +11,11 @@ export var CardStatement;
|
|
|
11
11
|
type: isly.string(),
|
|
12
12
|
status: isly.string().optional(),
|
|
13
13
|
balance: isly.number(),
|
|
14
|
+
billingBalance: isly.number(),
|
|
14
15
|
fundsChanged: isly.number().optional(),
|
|
15
16
|
currency: isly.fromIs("isoly.Currency", isoly.Currency.is).optional(),
|
|
17
|
+
billingCurrency: isly.fromIs("isoly.Currency", isoly.Currency.is).optional(),
|
|
18
|
+
fxRate: isly.number().optional(),
|
|
16
19
|
reason: isly.string().optional(),
|
|
17
20
|
additionalInformation: isly.record(isly.string(), isly.any()).optional(),
|
|
18
21
|
id: isly.string().optional(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CardStatement.js","sourceRoot":"../","sources":["model/CardStatement.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;
|
|
1
|
+
{"version":3,"file":"CardStatement.js","sourceRoot":"../","sources":["model/CardStatement.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAoB7C,MAAM,KAAW,aAAa,CAmB7B;AAnBD,WAAiB,aAAa;IAChB,kBAAI,GAAG,IAAI,CAAC,MAAM,CAAgB;QAC9C,SAAS,EAAE,IAAI,CAAC,MAAM,CAAC,gBAAgB,EAAE,KAAK,CAAC,QAAQ,CAAC,EAAE,CAAC;QAC3D,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC,cAAc,EAAE,YAAY,CAAC,EAAE,CAAC;QACtD,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QACnC,WAAW,EAAE,IAAI,CAAC,MAAM,EAAE;QAC1B,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE;QACnB,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAChC,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE;QACtB,cAAc,EAAE,IAAI,CAAC,MAAM,EAAE;QAC7B,YAAY,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QACtC,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC,gBAAgB,EAAE,KAAK,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE;QACrE,eAAe,EAAE,IAAI,CAAC,MAAM,CAAC,gBAAgB,EAAE,KAAK,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE;QAC5E,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAChC,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAChC,qBAAqB,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,EAAE;QACxE,EAAE,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;KAC5B,CAAC,CAAA;IACW,gBAAE,GAAG,cAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EAnBgB,aAAa,KAAb,aAAa,QAmB7B"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as isoly from "isoly";
|
|
2
|
+
import { Inclusion } from "./Inclusion";
|
|
2
3
|
import { ProviderCode } from "./ProviderCode";
|
|
3
4
|
import { StatementReportRowActionType } from "./StatementReportRowActionType";
|
|
4
5
|
import { StatementReportSubType } from "./StatementReportSubType";
|
|
@@ -12,4 +13,5 @@ export interface StatementReportRequest {
|
|
|
12
13
|
actionTypes?: StatementReportRowActionType[];
|
|
13
14
|
type?: "summary" | "full";
|
|
14
15
|
subType?: StatementReportSubType;
|
|
16
|
+
rebateTransfers?: Inclusion;
|
|
15
17
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as isoly from "isoly";
|
|
2
|
+
import { Inclusion } from "./Inclusion";
|
|
2
3
|
import { ProviderCode } from "./ProviderCode";
|
|
3
4
|
import { BalanceType } from "./Report/BalanceType";
|
|
4
5
|
import { StatementReportRowActionType } from "./StatementReportRowActionType";
|
|
@@ -14,4 +15,5 @@ export interface StatementSummaryReportRequest {
|
|
|
14
15
|
};
|
|
15
16
|
subType?: StatementReportSubType;
|
|
16
17
|
period: "DAILY" | "WEEKLY" | "MONTHLY" | "QUARTERLY" | "YEARLY" | "ENTIRE";
|
|
18
|
+
rebateTransfers?: Inclusion;
|
|
17
19
|
}
|
package/model/CardStatement.ts
CHANGED
|
@@ -10,8 +10,11 @@ export interface CardStatement {
|
|
|
10
10
|
type: string
|
|
11
11
|
status?: string
|
|
12
12
|
balance: number
|
|
13
|
+
billingBalance: number
|
|
13
14
|
fundsChanged?: number
|
|
14
15
|
currency?: isoly.Currency
|
|
16
|
+
billingCurrency?: isoly.Currency
|
|
17
|
+
fxRate?: number
|
|
15
18
|
reason?: string
|
|
16
19
|
additionalInformation?: Record<string, any>
|
|
17
20
|
id?: string
|
|
@@ -26,8 +29,11 @@ export namespace CardStatement {
|
|
|
26
29
|
type: isly.string(),
|
|
27
30
|
status: isly.string().optional(),
|
|
28
31
|
balance: isly.number(),
|
|
32
|
+
billingBalance: isly.number(),
|
|
29
33
|
fundsChanged: isly.number().optional(),
|
|
30
34
|
currency: isly.fromIs("isoly.Currency", isoly.Currency.is).optional(),
|
|
35
|
+
billingCurrency: isly.fromIs("isoly.Currency", isoly.Currency.is).optional(),
|
|
36
|
+
fxRate: isly.number().optional(),
|
|
31
37
|
reason: isly.string().optional(),
|
|
32
38
|
additionalInformation: isly.record(isly.string(), isly.any()).optional(),
|
|
33
39
|
id: isly.string().optional(),
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as isoly from "isoly"
|
|
2
|
+
import { Inclusion } from "./Inclusion"
|
|
2
3
|
import { ProviderCode } from "./ProviderCode"
|
|
3
4
|
import { StatementReportRowActionType } from "./StatementReportRowActionType"
|
|
4
5
|
import { StatementReportSubType } from "./StatementReportSubType"
|
|
@@ -13,4 +14,5 @@ export interface StatementReportRequest {
|
|
|
13
14
|
actionTypes?: StatementReportRowActionType[]
|
|
14
15
|
type?: "summary" | "full"
|
|
15
16
|
subType?: StatementReportSubType
|
|
17
|
+
rebateTransfers?: Inclusion
|
|
16
18
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as isoly from "isoly"
|
|
2
|
+
import { Inclusion } from "./Inclusion"
|
|
2
3
|
import { ProviderCode } from "./ProviderCode"
|
|
3
4
|
import { BalanceType } from "./Report/BalanceType"
|
|
4
5
|
import { StatementReportRowActionType } from "./StatementReportRowActionType"
|
|
@@ -15,4 +16,5 @@ export interface StatementSummaryReportRequest {
|
|
|
15
16
|
}
|
|
16
17
|
subType?: StatementReportSubType
|
|
17
18
|
period: "DAILY" | "WEEKLY" | "MONTHLY" | "QUARTERLY" | "YEARLY" | "ENTIRE"
|
|
19
|
+
rebateTransfers?: Inclusion
|
|
18
20
|
}
|