@pax2pay/model-banking 0.1.500 → 0.1.502
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/Account/index.ts +7 -0
- package/Client/Settlements.ts +5 -1
- package/dist/cjs/Account/index.d.ts +9 -0
- package/dist/cjs/Account/index.js +6 -0
- package/dist/cjs/Account/index.js.map +1 -1
- package/dist/cjs/Client/Settlements.d.ts +2 -0
- package/dist/cjs/Client/Settlements.js +1 -1
- package/dist/cjs/Client/Settlements.js.map +1 -1
- package/dist/mjs/Account/index.d.ts +9 -0
- package/dist/mjs/Account/index.js +6 -0
- package/dist/mjs/Account/index.js.map +1 -1
- package/dist/mjs/Client/Settlements.d.ts +2 -0
- package/dist/mjs/Client/Settlements.js +1 -1
- package/dist/mjs/Client/Settlements.js.map +1 -1
- package/package.json +1 -1
package/Account/index.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { isly } from "isly"
|
|
|
4
4
|
import { Balances } from "../Balances"
|
|
5
5
|
import { Rail } from "../Rail"
|
|
6
6
|
import { Rule } from "../Rule"
|
|
7
|
+
import { Supplier } from "../Supplier"
|
|
7
8
|
import { Creatable as AccountCreatable } from "./Creatable"
|
|
8
9
|
import { History as AccountHistory } from "./History"
|
|
9
10
|
import { Status as AccountStatus } from "./Status"
|
|
@@ -14,6 +15,7 @@ export interface Account extends Account.Creatable {
|
|
|
14
15
|
organization: string
|
|
15
16
|
balances: Balances
|
|
16
17
|
rails: Rail.Address[]
|
|
18
|
+
details?: Account.Details
|
|
17
19
|
counterparts?: Record<string, Rail.Address>
|
|
18
20
|
key?: string
|
|
19
21
|
rules?: Rule[]
|
|
@@ -23,6 +25,10 @@ export namespace Account {
|
|
|
23
25
|
export import Creatable = AccountCreatable
|
|
24
26
|
export import Status = AccountStatus
|
|
25
27
|
export import History = AccountHistory
|
|
28
|
+
export type Details = { supplier: Supplier; addresses: Rail.Address[] }
|
|
29
|
+
export namespace Details {
|
|
30
|
+
export const type = isly.object<Details>({ supplier: Supplier.type, addresses: Rail.Address.type.array() })
|
|
31
|
+
}
|
|
26
32
|
export type Legacy = Omit<Account, "status">
|
|
27
33
|
export function fromLegacy(maybeLegacy: Legacy | Account, status?: Account.Status): Account {
|
|
28
34
|
return { ...maybeLegacy, status: status ?? ("status" in maybeLegacy ? maybeLegacy.status : { mode: "active" }) }
|
|
@@ -33,6 +39,7 @@ export namespace Account {
|
|
|
33
39
|
organization: isly.string(),
|
|
34
40
|
balances: Balances.type,
|
|
35
41
|
rails: Rail.Address.type.array(),
|
|
42
|
+
details: Details.type.optional(),
|
|
36
43
|
counterparts: isly.record<Record<string, Rail.Address>>(isly.string(), Rail.Address.type).optional(),
|
|
37
44
|
key: isly.string().optional(),
|
|
38
45
|
rules: Rule.type.array().optional(),
|
package/Client/Settlements.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { gracely } from "gracely"
|
|
2
|
+
import { isoly } from "isoly"
|
|
2
3
|
import { http } from "cloudly-http"
|
|
3
4
|
import { Card } from "../Card"
|
|
4
5
|
import { Settlement } from "../Settlement"
|
|
@@ -15,9 +16,12 @@ export class Settlements {
|
|
|
15
16
|
async list(options?: {
|
|
16
17
|
limit?: number
|
|
17
18
|
cursor?: string
|
|
19
|
+
date?: isoly.Date
|
|
18
20
|
}): Promise<(Settlement[] & { cursor?: string }) | gracely.Error> {
|
|
19
21
|
return this.client.get<Settlement[] & { cursor?: string | undefined }>(
|
|
20
|
-
`/settlement${options?.cursor ? `?cursor=${options.cursor}` : ""}
|
|
22
|
+
`/settlement${options?.cursor && !options.date ? `?cursor=${options.cursor}` : ""}${
|
|
23
|
+
options?.date ? `?date=${options.date}` : ""
|
|
24
|
+
}`,
|
|
21
25
|
options?.limit ? { limit: options?.limit.toString() } : {}
|
|
22
26
|
)
|
|
23
27
|
}
|
|
@@ -3,6 +3,7 @@ import { isoly } from "isoly";
|
|
|
3
3
|
import { Balances } from "../Balances";
|
|
4
4
|
import { Rail } from "../Rail";
|
|
5
5
|
import { Rule } from "../Rule";
|
|
6
|
+
import { Supplier } from "../Supplier";
|
|
6
7
|
import { Creatable as AccountCreatable } from "./Creatable";
|
|
7
8
|
import { History as AccountHistory } from "./History";
|
|
8
9
|
import { Status as AccountStatus } from "./Status";
|
|
@@ -12,6 +13,7 @@ export interface Account extends Account.Creatable {
|
|
|
12
13
|
organization: string;
|
|
13
14
|
balances: Balances;
|
|
14
15
|
rails: Rail.Address[];
|
|
16
|
+
details?: Account.Details;
|
|
15
17
|
counterparts?: Record<string, Rail.Address>;
|
|
16
18
|
key?: string;
|
|
17
19
|
rules?: Rule[];
|
|
@@ -21,6 +23,13 @@ export declare namespace Account {
|
|
|
21
23
|
export import Creatable = AccountCreatable;
|
|
22
24
|
export import Status = AccountStatus;
|
|
23
25
|
export import History = AccountHistory;
|
|
26
|
+
type Details = {
|
|
27
|
+
supplier: Supplier;
|
|
28
|
+
addresses: Rail.Address[];
|
|
29
|
+
};
|
|
30
|
+
namespace Details {
|
|
31
|
+
const type: import("isly/dist/cjs/object").IslyObject<Details, object>;
|
|
32
|
+
}
|
|
24
33
|
type Legacy = Omit<Account, "status">;
|
|
25
34
|
function fromLegacy(maybeLegacy: Legacy | Account, status?: Account.Status): Account;
|
|
26
35
|
const type: import("isly/dist/cjs/object").IslyObject<Account, Creatable>;
|
|
@@ -7,6 +7,7 @@ const isly_1 = require("isly");
|
|
|
7
7
|
const Balances_1 = require("../Balances");
|
|
8
8
|
const Rail_1 = require("../Rail");
|
|
9
9
|
const Rule_1 = require("../Rule");
|
|
10
|
+
const Supplier_1 = require("../Supplier");
|
|
10
11
|
const Creatable_1 = require("./Creatable");
|
|
11
12
|
const History_1 = require("./History");
|
|
12
13
|
const Status_1 = require("./Status");
|
|
@@ -15,6 +16,10 @@ var Account;
|
|
|
15
16
|
Account.Creatable = Creatable_1.Creatable;
|
|
16
17
|
Account.Status = Status_1.Status;
|
|
17
18
|
Account.History = History_1.History;
|
|
19
|
+
let Details;
|
|
20
|
+
(function (Details) {
|
|
21
|
+
Details.type = isly_1.isly.object({ supplier: Supplier_1.Supplier.type, addresses: Rail_1.Rail.Address.type.array() });
|
|
22
|
+
})(Details = Account.Details || (Account.Details = {}));
|
|
18
23
|
function fromLegacy(maybeLegacy, status) {
|
|
19
24
|
return { ...maybeLegacy, status: status ?? ("status" in maybeLegacy ? maybeLegacy.status : { mode: "active" }) };
|
|
20
25
|
}
|
|
@@ -25,6 +30,7 @@ var Account;
|
|
|
25
30
|
organization: isly_1.isly.string(),
|
|
26
31
|
balances: Balances_1.Balances.type,
|
|
27
32
|
rails: Rail_1.Rail.Address.type.array(),
|
|
33
|
+
details: Details.type.optional(),
|
|
28
34
|
counterparts: isly_1.isly.record(isly_1.isly.string(), Rail_1.Rail.Address.type).optional(),
|
|
29
35
|
key: isly_1.isly.string().optional(),
|
|
30
36
|
rules: Rule_1.Rule.type.array().optional(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../Account/index.ts"],"names":[],"mappings":";;;AAAA,qCAAiC;AACjC,iCAA6B;AAC7B,+BAA2B;AAC3B,0CAAsC;AACtC,kCAA8B;AAC9B,kCAA8B;AAC9B,2CAA2D;AAC3D,uCAAqD;AACrD,qCAAkD;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../Account/index.ts"],"names":[],"mappings":";;;AAAA,qCAAiC;AACjC,iCAA6B;AAC7B,+BAA2B;AAC3B,0CAAsC;AACtC,kCAA8B;AAC9B,kCAA8B;AAC9B,0CAAsC;AACtC,2CAA2D;AAC3D,uCAAqD;AACrD,qCAAkD;AAclD,IAAiB,OAAO,CA2BvB;AA3BD,WAAiB,OAAO;IACT,iBAAS,GAAG,qBAAgB,CAAA;IAC5B,cAAM,GAAG,eAAa,CAAA;IACtB,eAAO,GAAG,iBAAc,CAAA;IAEtC,IAAiB,OAAO,CAEvB;IAFD,WAAiB,OAAO;QACV,YAAI,GAAG,WAAI,CAAC,MAAM,CAAU,EAAE,QAAQ,EAAE,mBAAQ,CAAC,IAAI,EAAE,SAAS,EAAE,WAAI,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,EAAE,EAAE,CAAC,CAAA;IAC5G,CAAC,EAFgB,OAAO,GAAP,eAAO,KAAP,eAAO,QAEvB;IAED,SAAgB,UAAU,CAAC,WAA6B,EAAE,MAAuB;QAChF,OAAO,EAAE,GAAG,WAAW,EAAE,MAAM,EAAE,MAAM,IAAI,CAAC,QAAQ,IAAI,WAAW,CAAC,CAAC,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,CAAC,EAAE,CAAA;IACjH,CAAC;IAFe,kBAAU,aAEzB,CAAA;IACY,YAAI,GAAG,QAAA,SAAS,CAAC,IAAI,CAAC,MAAM,CAAU;QAClD,EAAE,EAAE,WAAI,CAAC,MAAM,EAAE;QACjB,OAAO,EAAE,WAAI,CAAC,MAAM,CAAC,gBAAgB,EAAE,aAAK,CAAC,QAAQ,CAAC,EAAE,CAAC;QACzD,YAAY,EAAE,WAAI,CAAC,MAAM,EAAE;QAC3B,QAAQ,EAAE,mBAAQ,CAAC,IAAI;QACvB,KAAK,EAAE,WAAI,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,EAAE;QAChC,OAAO,EAAE,OAAO,CAAC,IAAI,CAAC,QAAQ,EAAE;QAChC,YAAY,EAAE,WAAI,CAAC,MAAM,CAA+B,WAAI,CAAC,MAAM,EAAE,EAAE,WAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE;QACpG,GAAG,EAAE,WAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAC7B,KAAK,EAAE,WAAI,CAAC,IAAI,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;QACnC,MAAM,EAAE,eAAa,CAAC,IAAI;KAC1B,CAAC,CAAA;IACF,SAAgB,YAAY,CAAC,KAA+B;QAC3D,OAAO,iBAAO,CAAC,UAAU,CAAC,EAAE,CAAC,KAAK,EAAE,CAAC,CAAC,CAAA;IACvC,CAAC;IAFe,oBAAY,eAE3B,CAAA;AACF,CAAC,EA3BgB,OAAO,uBAAP,OAAO,QA2BvB"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { gracely } from "gracely";
|
|
2
|
+
import { isoly } from "isoly";
|
|
2
3
|
import { http } from "cloudly-http";
|
|
3
4
|
import { Card } from "../Card";
|
|
4
5
|
import { Settlement } from "../Settlement";
|
|
@@ -10,6 +11,7 @@ export declare class Settlements {
|
|
|
10
11
|
list(options?: {
|
|
11
12
|
limit?: number;
|
|
12
13
|
cursor?: string;
|
|
14
|
+
date?: isoly.Date;
|
|
13
15
|
}): Promise<(Settlement[] & {
|
|
14
16
|
cursor?: string;
|
|
15
17
|
}) | gracely.Error>;
|
|
@@ -13,7 +13,7 @@ class Settlements {
|
|
|
13
13
|
return this.client.get(`/settlement/${id}`);
|
|
14
14
|
}
|
|
15
15
|
async list(options) {
|
|
16
|
-
return this.client.get(`/settlement${options?.cursor ? `?cursor=${options.cursor}` : ""}`, options?.limit ? { limit: options?.limit.toString() } : {});
|
|
16
|
+
return this.client.get(`/settlement${options?.cursor && !options.date ? `?cursor=${options.cursor}` : ""}${options?.date ? `?date=${options.date}` : ""}`, options?.limit ? { limit: options?.limit.toString() } : {});
|
|
17
17
|
}
|
|
18
18
|
async remove(settlement) {
|
|
19
19
|
return this.client.delete(`/settlement/${settlement}`);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Settlements.js","sourceRoot":"","sources":["../../../Client/Settlements.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"Settlements.js","sourceRoot":"","sources":["../../../Client/Settlements.ts"],"names":[],"mappings":";;;AAMA,MAAa,WAAW;IACM;IAA7B,YAA6B,MAAmB;QAAnB,WAAM,GAAN,MAAM,CAAa;IAAG,CAAC;IAEpD,KAAK,CAAC,MAAM,CAAC,aAAqB;QACjC,OAAO,IAAI,CAAC,MAAM,CAAC,IAAI,CAAa,aAAa,EAAE,EAAE,aAAa,EAAE,aAAa,EAAE,CAAC,CAAA;IACrF,CAAC;IACD,KAAK,CAAC,KAAK,CAAC,EAAU;QACrB,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAAa,eAAe,EAAE,EAAE,CAAC,CAAA;IACxD,CAAC;IACD,KAAK,CAAC,IAAI,CAAC,OAIV;QACA,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CACrB,cAAc,OAAO,EAAE,MAAM,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,WAAW,OAAO,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,EAAE,GAChF,OAAO,EAAE,IAAI,CAAC,CAAC,CAAC,SAAS,OAAO,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC,EAC3C,EAAE,EACF,OAAO,EAAE,KAAK,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,OAAO,EAAE,KAAK,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAC1D,CAAA;IACF,CAAC;IACD,KAAK,CAAC,MAAM,CAAC,UAAkB;QAC9B,OAAO,IAAI,CAAC,MAAM,CAAC,MAAM,CAAa,eAAe,UAAU,EAAE,CAAC,CAAA;IACnE,CAAC;IACD,KAAK,CAAC,MAAM,CAAC,UAAkB;QAC9B,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CAAa,eAAe,UAAU,EAAE,EAAE,EAAE,CAAC,CAAA;IACtE,CAAC;IACD,KAAK,CAAC,WAAW,CAAC,UAAkB;QACnC,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAAqB,eAAe,UAAU,QAAQ,CAAC,CAAA;IAC9E,CAAC;IACD,KAAK,CAAC,iBAAiB,CAAC,UAAkB;QACzC,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAAqB,eAAe,UAAU,eAAe,CAAC,CAAA;IACrF,CAAC;IACD,KAAK,CAAC,qBAAqB,CAAC,UAAkB,EAAE,YAAsB;QACrE,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CAAa,eAAe,UAAU,UAAU,EAAE,YAAY,CAAC,CAAA;IACxF,CAAC;IACD,KAAK,CAAC,YAAY,CAAC,KAAiB,EAAE,SAAiB;QACtD,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAAS,cAAc,KAAK,SAAS,SAAS,EAAE,CAAC,CAAA;IACxE,CAAC;CACD;AAvCD,kCAuCC"}
|
|
@@ -3,6 +3,7 @@ import { isoly } from "isoly";
|
|
|
3
3
|
import { Balances } from "../Balances";
|
|
4
4
|
import { Rail } from "../Rail";
|
|
5
5
|
import { Rule } from "../Rule";
|
|
6
|
+
import { Supplier } from "../Supplier";
|
|
6
7
|
import { Creatable as AccountCreatable } from "./Creatable";
|
|
7
8
|
import { History as AccountHistory } from "./History";
|
|
8
9
|
import { Status as AccountStatus } from "./Status";
|
|
@@ -12,6 +13,7 @@ export interface Account extends Account.Creatable {
|
|
|
12
13
|
organization: string;
|
|
13
14
|
balances: Balances;
|
|
14
15
|
rails: Rail.Address[];
|
|
16
|
+
details?: Account.Details;
|
|
15
17
|
counterparts?: Record<string, Rail.Address>;
|
|
16
18
|
key?: string;
|
|
17
19
|
rules?: Rule[];
|
|
@@ -21,6 +23,13 @@ export declare namespace Account {
|
|
|
21
23
|
export import Creatable = AccountCreatable;
|
|
22
24
|
export import Status = AccountStatus;
|
|
23
25
|
export import History = AccountHistory;
|
|
26
|
+
type Details = {
|
|
27
|
+
supplier: Supplier;
|
|
28
|
+
addresses: Rail.Address[];
|
|
29
|
+
};
|
|
30
|
+
namespace Details {
|
|
31
|
+
const type: import("isly/dist/cjs/object").IslyObject<Details, object>;
|
|
32
|
+
}
|
|
24
33
|
type Legacy = Omit<Account, "status">;
|
|
25
34
|
function fromLegacy(maybeLegacy: Legacy | Account, status?: Account.Status): Account;
|
|
26
35
|
const type: import("isly/dist/cjs/object").IslyObject<Account, Creatable>;
|
|
@@ -4,6 +4,7 @@ import { isly } from "isly";
|
|
|
4
4
|
import { Balances } from "../Balances";
|
|
5
5
|
import { Rail } from "../Rail";
|
|
6
6
|
import { Rule } from "../Rule";
|
|
7
|
+
import { Supplier } from "../Supplier";
|
|
7
8
|
import { Creatable as AccountCreatable } from "./Creatable";
|
|
8
9
|
import { History as AccountHistory } from "./History";
|
|
9
10
|
import { Status as AccountStatus } from "./Status";
|
|
@@ -12,6 +13,10 @@ export var Account;
|
|
|
12
13
|
Account.Creatable = AccountCreatable;
|
|
13
14
|
Account.Status = AccountStatus;
|
|
14
15
|
Account.History = AccountHistory;
|
|
16
|
+
let Details;
|
|
17
|
+
(function (Details) {
|
|
18
|
+
Details.type = isly.object({ supplier: Supplier.type, addresses: Rail.Address.type.array() });
|
|
19
|
+
})(Details = Account.Details || (Account.Details = {}));
|
|
15
20
|
function fromLegacy(maybeLegacy, status) {
|
|
16
21
|
return { ...maybeLegacy, status: status ?? ("status" in maybeLegacy ? maybeLegacy.status : { mode: "active" }) };
|
|
17
22
|
}
|
|
@@ -22,6 +27,7 @@ export var Account;
|
|
|
22
27
|
organization: isly.string(),
|
|
23
28
|
balances: Balances.type,
|
|
24
29
|
rails: Rail.Address.type.array(),
|
|
30
|
+
details: Details.type.optional(),
|
|
25
31
|
counterparts: isly.record(isly.string(), Rail.Address.type).optional(),
|
|
26
32
|
key: isly.string().optional(),
|
|
27
33
|
rules: Rule.type.array().optional(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../Account/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAA;AACjC,OAAO,EAAE,KAAK,EAAE,MAAM,OAAO,CAAA;AAC7B,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAA;AACtC,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAA;AAC9B,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAA;AAC9B,OAAO,EAAE,SAAS,IAAI,gBAAgB,EAAE,MAAM,aAAa,CAAA;AAC3D,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,WAAW,CAAA;AACrD,OAAO,EAAE,MAAM,IAAI,aAAa,EAAE,MAAM,UAAU,CAAA;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../Account/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAA;AACjC,OAAO,EAAE,KAAK,EAAE,MAAM,OAAO,CAAA;AAC7B,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAA;AACtC,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAA;AAC9B,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAA;AAC9B,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAA;AACtC,OAAO,EAAE,SAAS,IAAI,gBAAgB,EAAE,MAAM,aAAa,CAAA;AAC3D,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,WAAW,CAAA;AACrD,OAAO,EAAE,MAAM,IAAI,aAAa,EAAE,MAAM,UAAU,CAAA;AAclD,MAAM,KAAW,OAAO,CA2BvB;AA3BD,WAAiB,OAAO;IACT,iBAAS,GAAG,gBAAgB,CAAA;IAC5B,cAAM,GAAG,aAAa,CAAA;IACtB,eAAO,GAAG,cAAc,CAAA;IAEtC,IAAiB,OAAO,CAEvB;IAFD,WAAiB,OAAO;QACV,YAAI,GAAG,IAAI,CAAC,MAAM,CAAU,EAAE,QAAQ,EAAE,QAAQ,CAAC,IAAI,EAAE,SAAS,EAAE,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,EAAE,EAAE,CAAC,CAAA;IAC5G,CAAC,EAFgB,OAAO,GAAP,eAAO,KAAP,eAAO,QAEvB;IAED,SAAgB,UAAU,CAAC,WAA6B,EAAE,MAAuB;QAChF,OAAO,EAAE,GAAG,WAAW,EAAE,MAAM,EAAE,MAAM,IAAI,CAAC,QAAQ,IAAI,WAAW,CAAC,CAAC,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,CAAC,EAAE,CAAA;IACjH,CAAC;IAFe,kBAAU,aAEzB,CAAA;IACY,YAAI,GAAG,QAAA,SAAS,CAAC,IAAI,CAAC,MAAM,CAAU;QAClD,EAAE,EAAE,IAAI,CAAC,MAAM,EAAE;QACjB,OAAO,EAAE,IAAI,CAAC,MAAM,CAAC,gBAAgB,EAAE,KAAK,CAAC,QAAQ,CAAC,EAAE,CAAC;QACzD,YAAY,EAAE,IAAI,CAAC,MAAM,EAAE;QAC3B,QAAQ,EAAE,QAAQ,CAAC,IAAI;QACvB,KAAK,EAAE,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,EAAE;QAChC,OAAO,EAAE,OAAO,CAAC,IAAI,CAAC,QAAQ,EAAE;QAChC,YAAY,EAAE,IAAI,CAAC,MAAM,CAA+B,IAAI,CAAC,MAAM,EAAE,EAAE,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE;QACpG,GAAG,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAC7B,KAAK,EAAE,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;QACnC,MAAM,EAAE,aAAa,CAAC,IAAI;KAC1B,CAAC,CAAA;IACF,SAAgB,YAAY,CAAC,KAA+B;QAC3D,OAAO,OAAO,CAAC,UAAU,CAAC,EAAE,CAAC,KAAK,EAAE,CAAC,CAAC,CAAA;IACvC,CAAC;IAFe,oBAAY,eAE3B,CAAA;AACF,CAAC,EA3BgB,OAAO,KAAP,OAAO,QA2BvB"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { gracely } from "gracely";
|
|
2
|
+
import { isoly } from "isoly";
|
|
2
3
|
import { http } from "cloudly-http";
|
|
3
4
|
import { Card } from "../Card";
|
|
4
5
|
import { Settlement } from "../Settlement";
|
|
@@ -10,6 +11,7 @@ export declare class Settlements {
|
|
|
10
11
|
list(options?: {
|
|
11
12
|
limit?: number;
|
|
12
13
|
cursor?: string;
|
|
14
|
+
date?: isoly.Date;
|
|
13
15
|
}): Promise<(Settlement[] & {
|
|
14
16
|
cursor?: string;
|
|
15
17
|
}) | gracely.Error>;
|
|
@@ -10,7 +10,7 @@ export class Settlements {
|
|
|
10
10
|
return this.client.get(`/settlement/${id}`);
|
|
11
11
|
}
|
|
12
12
|
async list(options) {
|
|
13
|
-
return this.client.get(`/settlement${options?.cursor ? `?cursor=${options.cursor}` : ""}`, options?.limit ? { limit: options?.limit.toString() } : {});
|
|
13
|
+
return this.client.get(`/settlement${options?.cursor && !options.date ? `?cursor=${options.cursor}` : ""}${options?.date ? `?date=${options.date}` : ""}`, options?.limit ? { limit: options?.limit.toString() } : {});
|
|
14
14
|
}
|
|
15
15
|
async remove(settlement) {
|
|
16
16
|
return this.client.delete(`/settlement/${settlement}`);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Settlements.js","sourceRoot":"","sources":["../../../Client/Settlements.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Settlements.js","sourceRoot":"","sources":["../../../Client/Settlements.ts"],"names":[],"mappings":"AAMA,MAAM,OAAO,WAAW;IACM;IAA7B,YAA6B,MAAmB;QAAnB,WAAM,GAAN,MAAM,CAAa;IAAG,CAAC;IAEpD,KAAK,CAAC,MAAM,CAAC,aAAqB;QACjC,OAAO,IAAI,CAAC,MAAM,CAAC,IAAI,CAAa,aAAa,EAAE,EAAE,aAAa,EAAE,aAAa,EAAE,CAAC,CAAA;IACrF,CAAC;IACD,KAAK,CAAC,KAAK,CAAC,EAAU;QACrB,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAAa,eAAe,EAAE,EAAE,CAAC,CAAA;IACxD,CAAC;IACD,KAAK,CAAC,IAAI,CAAC,OAIV;QACA,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CACrB,cAAc,OAAO,EAAE,MAAM,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,WAAW,OAAO,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,EAAE,GAChF,OAAO,EAAE,IAAI,CAAC,CAAC,CAAC,SAAS,OAAO,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC,EAC3C,EAAE,EACF,OAAO,EAAE,KAAK,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,OAAO,EAAE,KAAK,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAC1D,CAAA;IACF,CAAC;IACD,KAAK,CAAC,MAAM,CAAC,UAAkB;QAC9B,OAAO,IAAI,CAAC,MAAM,CAAC,MAAM,CAAa,eAAe,UAAU,EAAE,CAAC,CAAA;IACnE,CAAC;IACD,KAAK,CAAC,MAAM,CAAC,UAAkB;QAC9B,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CAAa,eAAe,UAAU,EAAE,EAAE,EAAE,CAAC,CAAA;IACtE,CAAC;IACD,KAAK,CAAC,WAAW,CAAC,UAAkB;QACnC,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAAqB,eAAe,UAAU,QAAQ,CAAC,CAAA;IAC9E,CAAC;IACD,KAAK,CAAC,iBAAiB,CAAC,UAAkB;QACzC,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAAqB,eAAe,UAAU,eAAe,CAAC,CAAA;IACrF,CAAC;IACD,KAAK,CAAC,qBAAqB,CAAC,UAAkB,EAAE,YAAsB;QACrE,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CAAa,eAAe,UAAU,UAAU,EAAE,YAAY,CAAC,CAAA;IACxF,CAAC;IACD,KAAK,CAAC,YAAY,CAAC,KAAiB,EAAE,SAAiB;QACtD,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAAS,cAAc,KAAK,SAAS,SAAS,EAAE,CAAC,CAAA;IACxE,CAAC;CACD"}
|