@pax2pay/model-banking 0.1.11 → 0.1.13
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/Accounts.ts +5 -2
- package/Client/Operations.ts +19 -3
- package/Client/Organizations.ts +5 -2
- package/Client/Transactions/index.ts +9 -2
- package/Client/index.ts +0 -5
- package/dist/Client/Accounts.d.ts +6 -1
- package/dist/Client/Accounts.js +2 -2
- package/dist/Client/Accounts.js.map +1 -1
- package/dist/Client/Operations.d.ts +9 -1
- package/dist/Client/Operations.js +9 -3
- package/dist/Client/Operations.js.map +1 -1
- package/dist/Client/Organizations.d.ts +6 -1
- package/dist/Client/Organizations.js +2 -2
- package/dist/Client/Organizations.js.map +1 -1
- package/dist/Client/Transactions/index.d.ts +3 -1
- package/dist/Client/Transactions/index.js +4 -1
- package/dist/Client/Transactions/index.js.map +1 -1
- package/dist/Client/index.js +0 -5
- package/dist/Client/index.js.map +1 -1
- package/package.json +1 -1
package/Client/Accounts.ts
CHANGED
|
@@ -10,7 +10,10 @@ export class Accounts extends rest.Collection<gracely.Error> {
|
|
|
10
10
|
async create(account: Account.Creatable): Promise<Account | gracely.Error> {
|
|
11
11
|
return this.client.post<Account>("/account", account)
|
|
12
12
|
}
|
|
13
|
-
async list(
|
|
14
|
-
|
|
13
|
+
async list(options?: {
|
|
14
|
+
limit?: string
|
|
15
|
+
cursor?: string
|
|
16
|
+
}): Promise<(Account.Info[] & { cursor?: string | undefined }) | gracely.Error> {
|
|
17
|
+
return this.client.get<Account.Info[] & { cursor?: string | undefined }>("/account", options)
|
|
15
18
|
}
|
|
16
19
|
}
|
package/Client/Operations.ts
CHANGED
|
@@ -7,8 +7,24 @@ export class Operations extends rest.Collection<gracely.Error> {
|
|
|
7
7
|
constructor(client: http.Client) {
|
|
8
8
|
super(client)
|
|
9
9
|
}
|
|
10
|
-
async list(
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
async list(options?: {
|
|
11
|
+
start?: string
|
|
12
|
+
end?: string
|
|
13
|
+
limit?: string
|
|
14
|
+
cursor?: string
|
|
15
|
+
prefix?: string
|
|
16
|
+
}): Promise<(Operation[] & { cursor?: string | undefined }) | gracely.Error> {
|
|
17
|
+
const search =
|
|
18
|
+
options?.start && options?.end
|
|
19
|
+
? `?start=${options?.start}&end=${options?.end}`
|
|
20
|
+
: options?.start
|
|
21
|
+
? `?start=${options?.start}`
|
|
22
|
+
: options?.end
|
|
23
|
+
? `?end=${options?.end}`
|
|
24
|
+
: ""
|
|
25
|
+
return this.client.get<Operation[] & { cursor?: string | undefined }>(
|
|
26
|
+
`/operation${search}`,
|
|
27
|
+
options && (({ start, end, ...headers }) => headers)(options)
|
|
28
|
+
)
|
|
13
29
|
}
|
|
14
30
|
}
|
package/Client/Organizations.ts
CHANGED
|
@@ -7,8 +7,11 @@ export class Organizations extends rest.Collection<gracely.Error> {
|
|
|
7
7
|
constructor(client: http.Client) {
|
|
8
8
|
super(client)
|
|
9
9
|
}
|
|
10
|
-
async list(
|
|
11
|
-
|
|
10
|
+
async list(options?: {
|
|
11
|
+
limit?: string
|
|
12
|
+
cursor?: string
|
|
13
|
+
}): Promise<(Organization[] & { cursor?: string | undefined }) | gracely.Error> {
|
|
14
|
+
return this.client.get<Organization[] & { cursor?: string | undefined }>(`/organization`, options)
|
|
12
15
|
}
|
|
13
16
|
async create(organization: Organization.Creatable): Promise<Organization | gracely.Error> {
|
|
14
17
|
return this.client.post<Organization>(`/organization`, organization)
|
|
@@ -22,7 +22,7 @@ export class Transactions extends rest.Collection<gracely.Error> {
|
|
|
22
22
|
rail?: "internal"
|
|
23
23
|
start?: string
|
|
24
24
|
end?: string
|
|
25
|
-
}): Promise<Transaction[] | gracely.Error> {
|
|
25
|
+
}): Promise<(Transaction[] & { cursor?: string | undefined }) | gracely.Error> {
|
|
26
26
|
const searchOptions = options && (({ account, limit, cursor, ...search }) => search)(options)
|
|
27
27
|
const query = searchOptions
|
|
28
28
|
? Object.entries(searchOptions)
|
|
@@ -30,6 +30,13 @@ export class Transactions extends rest.Collection<gracely.Error> {
|
|
|
30
30
|
.reduce((prev, curr, i) => `${prev}${i == 0 ? "?" : "&"}${curr}`, "")
|
|
31
31
|
: ""
|
|
32
32
|
const path = options && options.account ? `/account/${options.account}/transaction${query}` : `/transaction${query}`
|
|
33
|
-
return this.client.get<Transaction[]
|
|
33
|
+
return this.client.get<Transaction[] & { cursor?: string | undefined }>(
|
|
34
|
+
path,
|
|
35
|
+
options &&
|
|
36
|
+
(({ limit, cursor }) =>
|
|
37
|
+
limit || cursor
|
|
38
|
+
? { ...(limit ? { limit: limit.toString() } : {}), ...(cursor ? { cursor: cursor } : {}) }
|
|
39
|
+
: undefined)(options)
|
|
40
|
+
)
|
|
34
41
|
}
|
|
35
42
|
}
|
package/Client/index.ts
CHANGED
|
@@ -21,11 +21,6 @@ export class Client extends rest.Client<gracely.Error> {
|
|
|
21
21
|
const result: Client = new Client(
|
|
22
22
|
(httpClient = new http.Client<gracely.Error>(server, key, {
|
|
23
23
|
appendHeader: request => ({ ...request.header, realm: result.realm, organization: result.organization }),
|
|
24
|
-
onError: async (request: http.Request, response: http.Response) => {
|
|
25
|
-
const output = { ...response, body: await response.body }
|
|
26
|
-
console.error("client.onError", output)
|
|
27
|
-
return false
|
|
28
|
-
},
|
|
29
24
|
}))
|
|
30
25
|
)
|
|
31
26
|
if (load)
|
|
@@ -5,5 +5,10 @@ import { Account } from "../Account";
|
|
|
5
5
|
export declare class Accounts extends rest.Collection<gracely.Error> {
|
|
6
6
|
constructor(client: http.Client);
|
|
7
7
|
create(account: Account.Creatable): Promise<Account | gracely.Error>;
|
|
8
|
-
list(
|
|
8
|
+
list(options?: {
|
|
9
|
+
limit?: string;
|
|
10
|
+
cursor?: string;
|
|
11
|
+
}): Promise<(Account.Info[] & {
|
|
12
|
+
cursor?: string | undefined;
|
|
13
|
+
}) | gracely.Error>;
|
|
9
14
|
}
|
package/dist/Client/Accounts.js
CHANGED
|
@@ -6,8 +6,8 @@ export class Accounts extends rest.Collection {
|
|
|
6
6
|
async create(account) {
|
|
7
7
|
return this.client.post("/account", account);
|
|
8
8
|
}
|
|
9
|
-
async list() {
|
|
10
|
-
return this.client.get("/account");
|
|
9
|
+
async list(options) {
|
|
10
|
+
return this.client.get("/account", options);
|
|
11
11
|
}
|
|
12
12
|
}
|
|
13
13
|
//# sourceMappingURL=Accounts.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Accounts.js","sourceRoot":"../","sources":["Client/Accounts.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,IAAI,MAAM,cAAc,CAAA;AAGpC,MAAM,OAAO,QAAS,SAAQ,IAAI,CAAC,UAAyB;IAC3D,YAAY,MAAmB;QAC9B,KAAK,CAAC,MAAM,CAAC,CAAA;IACd,CAAC;IACD,KAAK,CAAC,MAAM,CAAC,OAA0B;QACtC,OAAO,IAAI,CAAC,MAAM,CAAC,IAAI,CAAU,UAAU,EAAE,OAAO,CAAC,CAAA;IACtD,CAAC;IACD,KAAK,CAAC,IAAI;
|
|
1
|
+
{"version":3,"file":"Accounts.js","sourceRoot":"../","sources":["Client/Accounts.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,IAAI,MAAM,cAAc,CAAA;AAGpC,MAAM,OAAO,QAAS,SAAQ,IAAI,CAAC,UAAyB;IAC3D,YAAY,MAAmB;QAC9B,KAAK,CAAC,MAAM,CAAC,CAAA;IACd,CAAC;IACD,KAAK,CAAC,MAAM,CAAC,OAA0B;QACtC,OAAO,IAAI,CAAC,MAAM,CAAC,IAAI,CAAU,UAAU,EAAE,OAAO,CAAC,CAAA;IACtD,CAAC;IACD,KAAK,CAAC,IAAI,CAAC,OAGV;QACA,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAAmD,UAAU,EAAE,OAAO,CAAC,CAAA;IAC9F,CAAC;CACD"}
|
|
@@ -4,5 +4,13 @@ import * as rest from "cloudly-rest";
|
|
|
4
4
|
import { Operation } from "../Operation";
|
|
5
5
|
export declare class Operations extends rest.Collection<gracely.Error> {
|
|
6
6
|
constructor(client: http.Client);
|
|
7
|
-
list(
|
|
7
|
+
list(options?: {
|
|
8
|
+
start?: string;
|
|
9
|
+
end?: string;
|
|
10
|
+
limit?: string;
|
|
11
|
+
cursor?: string;
|
|
12
|
+
prefix?: string;
|
|
13
|
+
}): Promise<(Operation[] & {
|
|
14
|
+
cursor?: string | undefined;
|
|
15
|
+
}) | gracely.Error>;
|
|
8
16
|
}
|
|
@@ -3,9 +3,15 @@ export class Operations extends rest.Collection {
|
|
|
3
3
|
constructor(client) {
|
|
4
4
|
super(client);
|
|
5
5
|
}
|
|
6
|
-
async list(
|
|
7
|
-
const search = start && end
|
|
8
|
-
|
|
6
|
+
async list(options) {
|
|
7
|
+
const search = options?.start && options?.end
|
|
8
|
+
? `?start=${options?.start}&end=${options?.end}`
|
|
9
|
+
: options?.start
|
|
10
|
+
? `?start=${options?.start}`
|
|
11
|
+
: options?.end
|
|
12
|
+
? `?end=${options?.end}`
|
|
13
|
+
: "";
|
|
14
|
+
return this.client.get(`/operation${search}`, options && (({ start, end, ...headers }) => headers)(options));
|
|
9
15
|
}
|
|
10
16
|
}
|
|
11
17
|
//# sourceMappingURL=Operations.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Operations.js","sourceRoot":"../","sources":["Client/Operations.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,IAAI,MAAM,cAAc,CAAA;AAGpC,MAAM,OAAO,UAAW,SAAQ,IAAI,CAAC,UAAyB;IAC7D,YAAY,MAAmB;QAC9B,KAAK,CAAC,MAAM,CAAC,CAAA;IACd,CAAC;IACD,KAAK,CAAC,IAAI,CAAC,
|
|
1
|
+
{"version":3,"file":"Operations.js","sourceRoot":"../","sources":["Client/Operations.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,IAAI,MAAM,cAAc,CAAA;AAGpC,MAAM,OAAO,UAAW,SAAQ,IAAI,CAAC,UAAyB;IAC7D,YAAY,MAAmB;QAC9B,KAAK,CAAC,MAAM,CAAC,CAAA;IACd,CAAC;IACD,KAAK,CAAC,IAAI,CAAC,OAMV;QACA,MAAM,MAAM,GACX,OAAO,EAAE,KAAK,IAAI,OAAO,EAAE,GAAG;YAC7B,CAAC,CAAC,UAAU,OAAO,EAAE,KAAK,QAAQ,OAAO,EAAE,GAAG,EAAE;YAChD,CAAC,CAAC,OAAO,EAAE,KAAK;gBAChB,CAAC,CAAC,UAAU,OAAO,EAAE,KAAK,EAAE;gBAC5B,CAAC,CAAC,OAAO,EAAE,GAAG;oBACd,CAAC,CAAC,QAAQ,OAAO,EAAE,GAAG,EAAE;oBACxB,CAAC,CAAC,EAAE,CAAA;QACN,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CACrB,aAAa,MAAM,EAAE,EACrB,OAAO,IAAI,CAAC,CAAC,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,OAAO,EAAE,EAAE,EAAE,CAAC,OAAO,CAAC,CAAC,OAAO,CAAC,CAC7D,CAAA;IACF,CAAC;CACD"}
|
|
@@ -4,6 +4,11 @@ import * as rest from "cloudly-rest";
|
|
|
4
4
|
import { Organization } from "../Organization";
|
|
5
5
|
export declare class Organizations extends rest.Collection<gracely.Error> {
|
|
6
6
|
constructor(client: http.Client);
|
|
7
|
-
list(
|
|
7
|
+
list(options?: {
|
|
8
|
+
limit?: string;
|
|
9
|
+
cursor?: string;
|
|
10
|
+
}): Promise<(Organization[] & {
|
|
11
|
+
cursor?: string | undefined;
|
|
12
|
+
}) | gracely.Error>;
|
|
8
13
|
create(organization: Organization.Creatable): Promise<Organization | gracely.Error>;
|
|
9
14
|
}
|
|
@@ -3,8 +3,8 @@ export class Organizations extends rest.Collection {
|
|
|
3
3
|
constructor(client) {
|
|
4
4
|
super(client);
|
|
5
5
|
}
|
|
6
|
-
async list() {
|
|
7
|
-
return this.client.get(`/organization
|
|
6
|
+
async list(options) {
|
|
7
|
+
return this.client.get(`/organization`, options);
|
|
8
8
|
}
|
|
9
9
|
async create(organization) {
|
|
10
10
|
return this.client.post(`/organization`, organization);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Organizations.js","sourceRoot":"../","sources":["Client/Organizations.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,IAAI,MAAM,cAAc,CAAA;AAGpC,MAAM,OAAO,aAAc,SAAQ,IAAI,CAAC,UAAyB;IAChE,YAAY,MAAmB;QAC9B,KAAK,CAAC,MAAM,CAAC,CAAA;IACd,CAAC;IACD,KAAK,CAAC,IAAI;
|
|
1
|
+
{"version":3,"file":"Organizations.js","sourceRoot":"../","sources":["Client/Organizations.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,IAAI,MAAM,cAAc,CAAA;AAGpC,MAAM,OAAO,aAAc,SAAQ,IAAI,CAAC,UAAyB;IAChE,YAAY,MAAmB;QAC9B,KAAK,CAAC,MAAM,CAAC,CAAA;IACd,CAAC;IACD,KAAK,CAAC,IAAI,CAAC,OAGV;QACA,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAAmD,eAAe,EAAE,OAAO,CAAC,CAAA;IACnG,CAAC;IACD,KAAK,CAAC,MAAM,CAAC,YAAoC;QAChD,OAAO,IAAI,CAAC,MAAM,CAAC,IAAI,CAAe,eAAe,EAAE,YAAY,CAAC,CAAA;IACrE,CAAC;CACD"}
|
|
@@ -17,5 +17,7 @@ export declare class Transactions extends rest.Collection<gracely.Error> {
|
|
|
17
17
|
rail?: "internal";
|
|
18
18
|
start?: string;
|
|
19
19
|
end?: string;
|
|
20
|
-
}): Promise<Transaction[]
|
|
20
|
+
}): Promise<(Transaction[] & {
|
|
21
|
+
cursor?: string | undefined;
|
|
22
|
+
}) | gracely.Error>;
|
|
21
23
|
}
|
|
@@ -16,7 +16,10 @@ export class Transactions extends rest.Collection {
|
|
|
16
16
|
.reduce((prev, curr, i) => `${prev}${i == 0 ? "?" : "&"}${curr}`, "")
|
|
17
17
|
: "";
|
|
18
18
|
const path = options && options.account ? `/account/${options.account}/transaction${query}` : `/transaction${query}`;
|
|
19
|
-
return this.client.get(path
|
|
19
|
+
return this.client.get(path, options &&
|
|
20
|
+
(({ limit, cursor }) => limit || cursor
|
|
21
|
+
? { ...(limit ? { limit: limit.toString() } : {}), ...(cursor ? { cursor: cursor } : {}) }
|
|
22
|
+
: undefined)(options));
|
|
20
23
|
}
|
|
21
24
|
}
|
|
22
25
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/Transactions/index.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,IAAI,MAAM,cAAc,CAAA;AAEpC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAE/B,MAAM,OAAO,YAAa,SAAQ,IAAI,CAAC,UAAyB;IAE/D,YAAY,MAAmB;QAC9B,KAAK,CAAC,MAAM,CAAC,CAAA;QAFL,UAAK,GAAG,IAAI,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;IAGvC,CAAC;IACD,KAAK,CAAC,MAAM,CAAC,OAAe,EAAE,WAAkC;QAC/D,OAAO,IAAI,CAAC,MAAM,CAAC,IAAI,CAAc,YAAY,OAAO,cAAc,EAAE,WAAW,CAAC,CAAA;IACrF,CAAC;IACD,KAAK,CAAC,IAAI,CAAC,OAUV;QACA,MAAM,aAAa,GAAG,OAAO,IAAI,CAAC,CAAC,EAAE,OAAO,EAAE,KAAK,EAAE,MAAM,EAAE,GAAG,MAAM,EAAE,EAAE,EAAE,CAAC,MAAM,CAAC,CAAC,OAAO,CAAC,CAAA;QAC7F,MAAM,KAAK,GAAG,aAAa;YAC1B,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,aAAa,CAAC;iBAC5B,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC;iBAC5B,MAAM,CAAC,CAAC,IAAI,EAAE,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC,GAAG,IAAI,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,IAAI,EAAE,EAAE,EAAE,CAAC;YACvE,CAAC,CAAC,EAAE,CAAA;QACL,MAAM,IAAI,GAAG,OAAO,IAAI,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,YAAY,OAAO,CAAC,OAAO,eAAe,KAAK,EAAE,CAAC,CAAC,CAAC,eAAe,KAAK,EAAE,CAAA;QACpH,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/Transactions/index.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,IAAI,MAAM,cAAc,CAAA;AAEpC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAE/B,MAAM,OAAO,YAAa,SAAQ,IAAI,CAAC,UAAyB;IAE/D,YAAY,MAAmB;QAC9B,KAAK,CAAC,MAAM,CAAC,CAAA;QAFL,UAAK,GAAG,IAAI,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;IAGvC,CAAC;IACD,KAAK,CAAC,MAAM,CAAC,OAAe,EAAE,WAAkC;QAC/D,OAAO,IAAI,CAAC,MAAM,CAAC,IAAI,CAAc,YAAY,OAAO,cAAc,EAAE,WAAW,CAAC,CAAA;IACrF,CAAC;IACD,KAAK,CAAC,IAAI,CAAC,OAUV;QACA,MAAM,aAAa,GAAG,OAAO,IAAI,CAAC,CAAC,EAAE,OAAO,EAAE,KAAK,EAAE,MAAM,EAAE,GAAG,MAAM,EAAE,EAAE,EAAE,CAAC,MAAM,CAAC,CAAC,OAAO,CAAC,CAAA;QAC7F,MAAM,KAAK,GAAG,aAAa;YAC1B,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,aAAa,CAAC;iBAC5B,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC;iBAC5B,MAAM,CAAC,CAAC,IAAI,EAAE,IAAI,EAAE,CAAC,EAAE,EAAE,CAAC,GAAG,IAAI,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,IAAI,EAAE,EAAE,EAAE,CAAC;YACvE,CAAC,CAAC,EAAE,CAAA;QACL,MAAM,IAAI,GAAG,OAAO,IAAI,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,YAAY,OAAO,CAAC,OAAO,eAAe,KAAK,EAAE,CAAC,CAAC,CAAC,eAAe,KAAK,EAAE,CAAA;QACpH,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CACrB,IAAI,EACJ,OAAO;YACN,CAAC,CAAC,EAAE,KAAK,EAAE,MAAM,EAAE,EAAE,EAAE,CACtB,KAAK,IAAI,MAAM;gBACd,CAAC,CAAC,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,KAAK,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE;gBAC1F,CAAC,CAAC,SAAS,CAAC,CAAC,OAAO,CAAC,CACxB,CAAA;IACF,CAAC;CACD"}
|
package/dist/Client/index.js
CHANGED
|
@@ -18,11 +18,6 @@ export class Client extends rest.Client {
|
|
|
18
18
|
let httpClient;
|
|
19
19
|
const result = new Client((httpClient = new http.Client(server, key, {
|
|
20
20
|
appendHeader: request => ({ ...request.header, realm: result.realm, organization: result.organization }),
|
|
21
|
-
onError: async (request, response) => {
|
|
22
|
-
const output = { ...response, body: await response.body };
|
|
23
|
-
console.error("client.onError", output);
|
|
24
|
-
return false;
|
|
25
|
-
},
|
|
26
21
|
})));
|
|
27
22
|
if (load)
|
|
28
23
|
Object.assign(result, load(httpClient));
|
package/dist/Client/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,IAAI,MAAM,cAAc,CAAA;AACpC,OAAO,KAAK,IAAI,MAAM,cAAc,CAAA;AACpC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AACrC,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AACzC,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAC/C,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAC7C,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA;AAEnC,MAAM,OAAO,MAAO,SAAQ,IAAI,CAAC,MAAqB;IAAtD;;QAGU,aAAQ,GAAG,IAAI,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;QACpC,eAAU,GAAG,IAAI,UAAU,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;QACxC,kBAAa,GAAG,IAAI,aAAa,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;QAC9C,iBAAY,GAAG,IAAI,YAAY,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;QAC5C,YAAO,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,IAAI,MAAM,cAAc,CAAA;AACpC,OAAO,KAAK,IAAI,MAAM,cAAc,CAAA;AACpC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AACrC,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AACzC,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAC/C,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAC7C,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA;AAEnC,MAAM,OAAO,MAAO,SAAQ,IAAI,CAAC,MAAqB;IAAtD;;QAGU,aAAQ,GAAG,IAAI,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;QACpC,eAAU,GAAG,IAAI,UAAU,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;QACxC,kBAAa,GAAG,IAAI,aAAa,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;QAC9C,iBAAY,GAAG,IAAI,YAAY,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;QAC5C,YAAO,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;IAa5C,CAAC;IAXA,MAAM,CAAC,MAAM,CAA0B,MAAc,EAAE,GAAW,EAAE,IAAiC;QACpG,IAAI,UAAsC,CAAA;QAC1C,MAAM,MAAM,GAAW,IAAI,MAAM,CAChC,CAAC,UAAU,GAAG,IAAI,IAAI,CAAC,MAAM,CAAgB,MAAM,EAAE,GAAG,EAAE;YACzD,YAAY,EAAE,OAAO,CAAC,EAAE,CAAC,CAAC,EAAE,GAAG,OAAO,CAAC,MAAM,EAAE,KAAK,EAAE,MAAM,CAAC,KAAK,EAAE,YAAY,EAAE,MAAM,CAAC,YAAY,EAAE,CAAC;SACxG,CAAC,CAAC,CACH,CAAA;QACD,IAAI,IAAI;YACP,MAAM,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC,CAAA;QACxC,OAAO,MAAoB,CAAA;IAC5B,CAAC;CACD"}
|