@pax2pay/client 0.3.52 → 0.3.53
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/index.ts +40 -32
- package/Client/Beneficiaries/index.ts +15 -17
- package/Client/Cards/index.ts +62 -88
- package/Client/Categories/index.ts +9 -9
- package/Client/Configuration/index.ts +5 -9
- package/Client/Email/index.ts +1 -2
- package/Client/List.ts +4 -32
- package/Client/Omnisetup/index.ts +3 -1
- package/Client/Organisations/index.ts +7 -15
- package/Client/Reports/index.spec.ignore.ts +0 -7
- package/Client/Reports/index.ts +22 -33
- package/Client/Transfers/factory.ts +4 -2
- package/Client/Transfers/index.ts +4 -19
- package/Client/Users/index.ts +29 -33
- package/Client/index.ts +1 -20
- package/dist/Client/Accounts/index.d.ts +3 -6
- package/dist/Client/Accounts/index.js +25 -19
- package/dist/Client/Accounts/index.js.map +1 -1
- package/dist/Client/Beneficiaries/index.d.ts +3 -7
- package/dist/Client/Beneficiaries/index.js +11 -15
- package/dist/Client/Beneficiaries/index.js.map +1 -1
- package/dist/Client/Cards/index.d.ts +14 -19
- package/dist/Client/Cards/index.js +28 -61
- package/dist/Client/Cards/index.js.map +1 -1
- package/dist/Client/Categories/index.d.ts +4 -6
- package/dist/Client/Categories/index.js +7 -10
- package/dist/Client/Categories/index.js.map +1 -1
- package/dist/Client/Configuration/index.js +5 -9
- package/dist/Client/Configuration/index.js.map +1 -1
- package/dist/Client/Email/index.js +1 -2
- package/dist/Client/Email/index.js.map +1 -1
- package/dist/Client/List.d.ts +3 -24
- package/dist/Client/List.js +1 -17
- package/dist/Client/List.js.map +1 -1
- package/dist/Client/Omnisetup/index.js +3 -1
- package/dist/Client/Omnisetup/index.js.map +1 -1
- package/dist/Client/Organisations/index.d.ts +5 -6
- package/dist/Client/Organisations/index.js +7 -8
- package/dist/Client/Organisations/index.js.map +1 -1
- package/dist/Client/Reports/index.d.ts +1 -1
- package/dist/Client/Reports/index.js +15 -29
- package/dist/Client/Reports/index.js.map +1 -1
- package/dist/Client/Transfers/index.d.ts +3 -7
- package/dist/Client/Transfers/index.js +3 -15
- package/dist/Client/Transfers/index.js.map +1 -1
- package/dist/Client/Users/index.d.ts +5 -6
- package/dist/Client/Users/index.js +20 -27
- package/dist/Client/Users/index.js.map +1 -1
- package/dist/Client/index.d.ts +1 -21
- package/dist/Client/index.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js.map +1 -1
- package/dist/model/index.d.ts +1 -2
- package/dist/model/index.js.map +1 -1
- package/index.ts +0 -2
- package/model/index.ts +0 -2
- package/package.json +1 -1
- package/Client/Account/index.ts +0 -9
- package/Client/Beneficiary/index.ts +0 -9
- package/Client/Card/index.ts +0 -57
- package/Client/Collection.ts +0 -24
- package/Client/Organisation/index.ts +0 -9
- package/Client/Resource.ts +0 -25
- package/Client/Transfer/index.ts +0 -9
- package/Client/User/index.ts +0 -9
- package/Client/generatePagination.ts +0 -14
- package/dist/Client/Account/index.d.ts +0 -6
- package/dist/Client/Account/index.js +0 -7
- package/dist/Client/Account/index.js.map +0 -1
- package/dist/Client/Beneficiary/index.d.ts +0 -6
- package/dist/Client/Beneficiary/index.js +0 -7
- package/dist/Client/Beneficiary/index.js.map +0 -1
- package/dist/Client/Card/index.d.ts +0 -24
- package/dist/Client/Card/index.js +0 -25
- package/dist/Client/Card/index.js.map +0 -1
- package/dist/Client/Collection.d.ts +0 -31
- package/dist/Client/Collection.js +0 -19
- package/dist/Client/Collection.js.map +0 -1
- package/dist/Client/Organisation/index.d.ts +0 -6
- package/dist/Client/Organisation/index.js +0 -7
- package/dist/Client/Organisation/index.js.map +0 -1
- package/dist/Client/Resource.d.ts +0 -17
- package/dist/Client/Resource.js +0 -38
- package/dist/Client/Resource.js.map +0 -1
- package/dist/Client/Transfer/index.d.ts +0 -6
- package/dist/Client/Transfer/index.js +0 -7
- package/dist/Client/Transfer/index.js.map +0 -1
- package/dist/Client/User/index.d.ts +0 -6
- package/dist/Client/User/index.js +0 -7
- package/dist/Client/User/index.js.map +0 -1
- package/dist/Client/generatePagination.d.ts +0 -6
- package/dist/Client/generatePagination.js +0 -9
- package/dist/Client/generatePagination.js.map +0 -1
- package/dist/model/Sorting.d.ts +0 -8
- package/dist/model/Sorting.js +0 -2
- package/dist/model/Sorting.js.map +0 -1
- package/model/Sorting.ts +0 -6
|
@@ -2,6 +2,7 @@ import * as model from "../../model";
|
|
|
2
2
|
export class Reports {
|
|
3
3
|
constructor(connection) {
|
|
4
4
|
this.connection = connection;
|
|
5
|
+
this.folder = "reports";
|
|
5
6
|
}
|
|
6
7
|
async reconciliation(start, end) {
|
|
7
8
|
const request = {
|
|
@@ -27,51 +28,36 @@ export class Reports {
|
|
|
27
28
|
return await this.connection.post(`../reports/statement`, request);
|
|
28
29
|
}
|
|
29
30
|
async statementForTable(request, page, pageSize) {
|
|
30
|
-
let path = `statement`;
|
|
31
|
-
if (page || pageSize)
|
|
32
|
-
path = this.attachPageable(path, page, pageSize);
|
|
33
31
|
let result;
|
|
34
|
-
result = await this.connection.post(
|
|
32
|
+
result = await this.connection.post(`statement`, request, {
|
|
33
|
+
page: page,
|
|
34
|
+
size: pageSize,
|
|
35
|
+
});
|
|
35
36
|
if (!model.ErrorResponse.is(result) && "list" in result)
|
|
36
37
|
result = result.list;
|
|
37
38
|
return result;
|
|
38
39
|
}
|
|
39
40
|
async statementSummaryForTable(request, page, pageSize, totalCount) {
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
41
|
+
return await this.connection.post(`reports/statement/summary`, request, {
|
|
42
|
+
page: page,
|
|
43
|
+
size: pageSize,
|
|
44
|
+
includeCount: totalCount,
|
|
45
|
+
});
|
|
45
46
|
}
|
|
46
47
|
async getStatementForTable(rowId) {
|
|
47
|
-
|
|
48
|
-
return result;
|
|
49
|
-
}
|
|
50
|
-
attachPageable(base, page, pageSize, includeCount) {
|
|
51
|
-
const params = [];
|
|
52
|
-
if (page)
|
|
53
|
-
params.push("page=" + page);
|
|
54
|
-
if (pageSize)
|
|
55
|
-
params.push("size=" + pageSize);
|
|
56
|
-
if (includeCount != undefined)
|
|
57
|
-
params.push("includeCount=" + includeCount);
|
|
58
|
-
return base + "?" + params.join("&");
|
|
48
|
+
return await this.connection.get(`statement/${rowId}`);
|
|
59
49
|
}
|
|
60
50
|
async getStatementReportUrl(request) {
|
|
61
|
-
|
|
62
|
-
return result;
|
|
51
|
+
return await this.connection.post(`statement/download`, request);
|
|
63
52
|
}
|
|
64
53
|
async getUserReportUrl(request) {
|
|
65
|
-
|
|
66
|
-
return result;
|
|
54
|
+
return await this.connection.post(`${this.folder}/user/download`, request);
|
|
67
55
|
}
|
|
68
56
|
async getCardReportUrl(request) {
|
|
69
|
-
|
|
70
|
-
return result;
|
|
57
|
+
return await this.connection.post(`${this.folder}/card/download`, request);
|
|
71
58
|
}
|
|
72
59
|
async getReconciliationReportUrl(request) {
|
|
73
|
-
|
|
74
|
-
return result;
|
|
60
|
+
return await this.connection.post(`${this.folder}/reconciliation/download`, request);
|
|
75
61
|
}
|
|
76
62
|
static create(connection) {
|
|
77
63
|
return new Reports(connection);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/Reports/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,KAAK,MAAM,aAAa,CAAA;AAGpC,MAAM,OAAO,OAAO;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/Reports/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,21 +1,17 @@
|
|
|
1
1
|
import * as model from "../../model";
|
|
2
2
|
import { Connection } from "../Connection";
|
|
3
3
|
import { List } from "../List";
|
|
4
|
-
|
|
5
|
-
export declare class Transfers extends List<model.TransferResponse, model.TransferSearch, model.TransferRequest> {
|
|
4
|
+
export declare class Transfers extends List<model.TransferResponse> {
|
|
6
5
|
protected folder: string;
|
|
7
6
|
constructor(connection: Connection);
|
|
8
7
|
static create(connection: Connection): Transfers;
|
|
9
|
-
protected getResourcePath(resource: model.TransferResponse): string;
|
|
10
|
-
protected createResource(response: model.TransferResponse): Transfer;
|
|
11
8
|
getAll(): Promise<model.ErrorResponse | model.TransferResponse[]>;
|
|
12
9
|
getTransfer(provider: model.ProviderCode, transferId: string): Promise<model.TransferResponse | (model.ErrorResponse & {
|
|
13
10
|
status: 400 | 404 | 500 | 403 | 503;
|
|
14
11
|
})>;
|
|
15
|
-
|
|
16
|
-
create(request: model.TransferRequest): Promise<(model.ErrorResponse & {
|
|
12
|
+
create(request: model.TransferRequest): Promise<model.TransferResponse | (model.ErrorResponse & {
|
|
17
13
|
status: 400 | 404 | 500 | 403 | 503;
|
|
18
|
-
})
|
|
14
|
+
})>;
|
|
19
15
|
createV2(request: model.TransferRequest, otp?: string): Promise<model.TransferResponseV2 | (model.ErrorResponse & {
|
|
20
16
|
status: 400 | 404 | 500 | 403 | 503;
|
|
21
17
|
})>;
|
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
import * as model from "../../model";
|
|
2
1
|
import { List } from "../List";
|
|
3
|
-
import { Transfer } from "../Transfer";
|
|
4
2
|
export class Transfers extends List {
|
|
5
3
|
constructor(connection) {
|
|
6
4
|
super(connection);
|
|
@@ -9,28 +7,18 @@ export class Transfers extends List {
|
|
|
9
7
|
static create(connection) {
|
|
10
8
|
return new Transfers(connection);
|
|
11
9
|
}
|
|
12
|
-
getResourcePath(resource) {
|
|
13
|
-
return [this.folder, resource.providerCode, resource.providerTransferId].join("/");
|
|
14
|
-
}
|
|
15
|
-
createResource(response) {
|
|
16
|
-
return new Transfer(this.connection, [this.folder, response.providerCode, response.providerTransferId].join("/"), response);
|
|
17
|
-
}
|
|
18
10
|
async getAll() {
|
|
19
|
-
const response = await this.connection.get(
|
|
11
|
+
const response = await this.connection.get(this.folder);
|
|
20
12
|
return this.extractResponse(response);
|
|
21
13
|
}
|
|
22
14
|
async getTransfer(provider, transferId) {
|
|
23
15
|
return await this.connection.get([this.folder, provider, transferId].join("/"));
|
|
24
16
|
}
|
|
25
|
-
map(response) {
|
|
26
|
-
return Object.assign(new Transfer(this.connection, this.getResourcePath(response), response), response);
|
|
27
|
-
}
|
|
28
17
|
async create(request) {
|
|
29
|
-
|
|
30
|
-
return model.ErrorResponse.is(result) ? result : this.map(result);
|
|
18
|
+
return await this.connection.post(this.folder, request);
|
|
31
19
|
}
|
|
32
20
|
async createV2(request, otp) {
|
|
33
|
-
return await this.connection.post(
|
|
21
|
+
return await this.connection.post(`v2/${this.folder}`, request, undefined, otp ? { "x-otp": otp } : {});
|
|
34
22
|
}
|
|
35
23
|
}
|
|
36
24
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/Transfers/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/Transfers/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAA;AAE9B,MAAM,OAAO,SAAU,SAAQ,IAA4B;IAE1D,YAAY,UAAsB;QACjC,KAAK,CAAC,UAAU,CAAC,CAAA;QAFR,WAAM,GAAG,WAAW,CAAA;IAG9B,CAAC;IACD,MAAM,CAAC,MAAM,CAAC,UAAsB;QACnC,OAAO,IAAI,SAAS,CAAC,UAAU,CAAC,CAAA;IACjC,CAAC;IACD,KAAK,CAAC,MAAM;QACX,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,GAAG,CAAyD,IAAI,CAAC,MAAM,CAAC,CAAA;QAC/G,OAAO,IAAI,CAAC,eAAe,CAAC,QAAQ,CAAC,CAAA;IACtC,CAAC;IACD,KAAK,CAAC,WAAW,CAAC,QAA4B,EAAE,UAAkB;QACjE,OAAO,MAAM,IAAI,CAAC,UAAU,CAAC,GAAG,CAAyB,CAAC,IAAI,CAAC,MAAM,EAAE,QAAQ,EAAE,UAAU,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAA;IACxG,CAAC;IACD,KAAK,CAAC,MAAM,CAAC,OAA8B;QAC1C,OAAO,MAAM,IAAI,CAAC,UAAU,CAAC,IAAI,CAAyB,IAAI,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;IAChF,CAAC;IACD,KAAK,CAAC,QAAQ,CAAC,OAA8B,EAAE,GAAY;QAC1D,OAAO,MAAM,IAAI,CAAC,UAAU,CAAC,IAAI,CAChC,MAAM,IAAI,CAAC,MAAM,EAAE,EACnB,OAAO,EACP,SAAS,EACT,GAAG,CAAC,CAAC,CAAC,EAAE,OAAO,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC,EAAE,CAC3B,CAAA;IACF,CAAC;CACD"}
|
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
import * as model from "../../model";
|
|
2
|
-
import { Collection } from "../Collection";
|
|
3
2
|
import { Connection } from "../Connection";
|
|
3
|
+
import { List } from "../List";
|
|
4
4
|
import { Paginated } from "../Paginated";
|
|
5
|
-
|
|
6
|
-
export declare class Users extends Collection<model.UserResponse, model.UserSearchRequest, model.UserRequest> {
|
|
5
|
+
export declare class Users extends List<model.UserResponse> {
|
|
7
6
|
protected folder: string;
|
|
8
7
|
private constructor();
|
|
9
|
-
protected createResource(response: model.UserResponse): Resource<model.UserResponse, {
|
|
10
|
-
[key: string]: any;
|
|
11
|
-
}>;
|
|
12
8
|
static create(connection: Connection): Users;
|
|
13
9
|
deleteUser(username: string): Promise<model.UserResponse | model.ErrorResponse>;
|
|
10
|
+
create(request: model.UserRequest): Promise<model.UserResponse | (model.ErrorResponse & {
|
|
11
|
+
status: 400 | 404 | 500 | 403 | 503;
|
|
12
|
+
})>;
|
|
14
13
|
getAllUsers(): Promise<model.UserResponse[] | model.ErrorResponse>;
|
|
15
14
|
getRolesets(): Promise<model.RolesetResponse[] | model.ErrorResponse>;
|
|
16
15
|
getUser(username: string): Promise<model.UserResponse | model.ErrorResponse>;
|
|
@@ -1,22 +1,20 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
export class Users extends Collection {
|
|
1
|
+
import { List } from "../List";
|
|
2
|
+
export class Users extends List {
|
|
4
3
|
constructor(connection) {
|
|
5
4
|
super(connection);
|
|
6
5
|
this.folder = "users";
|
|
7
6
|
}
|
|
8
|
-
createResource(response) {
|
|
9
|
-
return new User(this.connection, [this.folder, response.username].join("/"), response);
|
|
10
|
-
}
|
|
11
7
|
static create(connection) {
|
|
12
8
|
return new Users(connection);
|
|
13
9
|
}
|
|
14
10
|
async deleteUser(username) {
|
|
15
|
-
|
|
16
|
-
|
|
11
|
+
return await this.connection.remove(`${this.folder}/${username}`);
|
|
12
|
+
}
|
|
13
|
+
async create(request) {
|
|
14
|
+
return await this.connection.post(this.folder, request);
|
|
17
15
|
}
|
|
18
16
|
async getAllUsers() {
|
|
19
|
-
const response = await this.connection.get(
|
|
17
|
+
const response = await this.connection.get(this.folder, {
|
|
20
18
|
size: 500,
|
|
21
19
|
sort: "username",
|
|
22
20
|
});
|
|
@@ -30,57 +28,52 @@ export class Users extends Collection {
|
|
|
30
28
|
return this.extractResponse(response);
|
|
31
29
|
}
|
|
32
30
|
async getUser(username) {
|
|
33
|
-
|
|
34
|
-
return result;
|
|
31
|
+
return await this.connection.get(`${this.folder}/${username}`);
|
|
35
32
|
}
|
|
36
33
|
async getUsersActiveRoles(username) {
|
|
37
|
-
const response = await this.connection.get(
|
|
34
|
+
const response = await this.connection.get(`${this.folder}/${username}/roles/minified`);
|
|
38
35
|
return this.extractResponse(response);
|
|
39
36
|
}
|
|
40
37
|
async resetPassword(username) {
|
|
41
|
-
|
|
42
|
-
return result;
|
|
38
|
+
return await this.connection.post(`auth/passwordreset`, { username: username });
|
|
43
39
|
}
|
|
44
40
|
async updateRolesetOnUser(username, roleset) {
|
|
45
|
-
|
|
46
|
-
return result;
|
|
41
|
+
return await this.connection.put(`${this.folder}/${username}/rolesets/${roleset}`, undefined);
|
|
47
42
|
}
|
|
48
43
|
async addRolesetOnUser(username, roleset) {
|
|
49
|
-
|
|
50
|
-
return result;
|
|
44
|
+
return await this.connection.post(`${this.folder}/${username}/rolesets/${roleset}`, undefined);
|
|
51
45
|
}
|
|
52
46
|
async updateUser(username, request) {
|
|
53
|
-
|
|
54
|
-
return result;
|
|
47
|
+
return await this.connection.put(`${this.folder}/${username}`, request);
|
|
55
48
|
}
|
|
56
49
|
async checkUsernameAvailability(username) {
|
|
57
50
|
return await this.connection.get(`${this.folder}/username/${username}`);
|
|
58
51
|
}
|
|
59
52
|
async checkPassword(request) {
|
|
60
|
-
return await this.connection.post(
|
|
53
|
+
return await this.connection.post(`${this.folder}/password/check`, request);
|
|
61
54
|
}
|
|
62
55
|
async changePassword(request, otp) {
|
|
63
|
-
return await this.connection.put(
|
|
56
|
+
return await this.connection.put(`${this.folder}/password`, request, undefined, otp ? { "x-otp": otp } : {});
|
|
64
57
|
}
|
|
65
58
|
async setUpTwoFactorAuthentication(username) {
|
|
66
|
-
return await this.connection.post(
|
|
59
|
+
return await this.connection.post(`${this.folder}/${username}/two-factor`, {});
|
|
67
60
|
}
|
|
68
61
|
async removeTwoFactorAuthentication(username, otp) {
|
|
69
|
-
return await this.connection.remove(
|
|
62
|
+
return await this.connection.remove(`${this.folder}/${username}/two-factor`, undefined, undefined, { "x-otp": otp });
|
|
70
63
|
}
|
|
71
64
|
async searchUsers(request, parameters) {
|
|
72
|
-
const result = await this.connection.post(
|
|
65
|
+
const result = await this.connection.post(`${this.folder}/searches`, request, parameters);
|
|
73
66
|
return this.extractResponse(result);
|
|
74
67
|
}
|
|
75
68
|
async searchUsersPaginated(request, previous, page, size, sort = "username,asc") {
|
|
76
|
-
return await this.getNextPaginated(previous, (page, size, sort, request) => this.connection.post(
|
|
69
|
+
return await this.getNextPaginated(previous, (page, size, sort, request) => this.connection.post(`${this.folder}/searches`, request, {
|
|
77
70
|
page: page,
|
|
78
71
|
size: size,
|
|
79
72
|
sort: sort,
|
|
80
73
|
}), request, page, size, sort);
|
|
81
74
|
}
|
|
82
75
|
async getAllUsersPaginated(previous, page, size, sort = "username,asc", providerCode = "modulr") {
|
|
83
|
-
return await this.getNextPaginated(previous, (page, size, sort) => this.connection.get(
|
|
76
|
+
return await this.getNextPaginated(previous, (page, size, sort) => this.connection.get(this.folder, {
|
|
84
77
|
page: page,
|
|
85
78
|
size: size,
|
|
86
79
|
sort: sort,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/Users/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/Users/index.ts"],"names":[],"mappings":"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"}
|
package/dist/Client/index.d.ts
CHANGED
|
@@ -1,23 +1,17 @@
|
|
|
1
|
-
import { Account as ClientAccount } from "./Account";
|
|
2
1
|
import { Accounts as ClientAccounts } from "./Accounts";
|
|
3
2
|
import { Auth as ClientAuth } from "./Auth";
|
|
4
3
|
import { Beneficiaries as ClientBeneficiaries } from "./Beneficiaries";
|
|
5
|
-
import { Card as ClientCard } from "./Card";
|
|
6
4
|
import { Cards as ClientCards } from "./Cards";
|
|
7
5
|
import { Categories as ClientCategories } from "./Categories";
|
|
8
|
-
import { Collection as ClientCollection } from "./Collection";
|
|
9
6
|
import { Configuration as ClientConfiguration } from "./Configuration";
|
|
10
7
|
import { Connection } from "./Connection";
|
|
11
8
|
import { Email as ClientEmail } from "./Email";
|
|
12
9
|
import { List as ClientList } from "./List";
|
|
13
10
|
import { Omnisetup as ClientOmnisetup } from "./Omnisetup";
|
|
14
|
-
import { Organisation as ClientOrganisation } from "./Organisation";
|
|
15
11
|
import { Organisations as ClientOrganisations } from "./Organisations";
|
|
16
12
|
import { Paginated as ClientPaginated } from "./Paginated";
|
|
17
13
|
import { Reports as ClientReports } from "./Reports";
|
|
18
|
-
import { Resource as ClientResource } from "./Resource";
|
|
19
14
|
import { Transfers as ClientTransfers } from "./Transfers";
|
|
20
|
-
import { User as ClientUser } from "./User";
|
|
21
15
|
import { Users as ClientUsers } from "./Users";
|
|
22
16
|
type Authenticate = (client: Client) => Promise<boolean>;
|
|
23
17
|
export declare class Client {
|
|
@@ -41,35 +35,21 @@ export declare class Client {
|
|
|
41
35
|
assumeNew(orgCode: string): Client;
|
|
42
36
|
}
|
|
43
37
|
export declare namespace Client {
|
|
44
|
-
type Account = ClientAccount;
|
|
45
38
|
type Accounts = ClientAccounts;
|
|
46
39
|
type Auth = ClientAuth;
|
|
47
40
|
type Beneficiaries = ClientBeneficiaries;
|
|
48
|
-
type Card = ClientCard;
|
|
49
41
|
type Cards = ClientCards;
|
|
50
42
|
type Categories = ClientCategories;
|
|
51
43
|
type Configuration = ClientConfiguration;
|
|
52
44
|
type Email = ClientEmail;
|
|
53
45
|
type Omnisetup = ClientOmnisetup;
|
|
54
|
-
type Organisation = ClientOrganisation;
|
|
55
46
|
type Organisations = ClientOrganisations;
|
|
56
47
|
type Reports = ClientReports;
|
|
57
48
|
type Transfers = ClientTransfers;
|
|
58
|
-
type User = ClientUser;
|
|
59
49
|
type Users = ClientUsers;
|
|
60
|
-
type Collection<Response extends {
|
|
61
|
-
[key: string]: any;
|
|
62
|
-
}, Search extends {
|
|
63
|
-
[key: string]: any;
|
|
64
|
-
}, Request extends {
|
|
65
|
-
[key: string]: any;
|
|
66
|
-
}> = ClientCollection<Response, Search, Request>;
|
|
67
50
|
type List<Response extends {
|
|
68
51
|
[key: string]: any;
|
|
69
|
-
}
|
|
70
|
-
[key: string]: any;
|
|
71
|
-
}> = ClientList<Response, Request>;
|
|
72
|
-
type Resource<Response, Request> = ClientResource<Response, Request>;
|
|
52
|
+
}> = ClientList<Response>;
|
|
73
53
|
type Paginated<T> = ClientPaginated<T>;
|
|
74
54
|
}
|
|
75
55
|
export {};
|
package/dist/Client/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/index.ts"],"names":[],"mappings":"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"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { Client } from "./Client";
|
|
2
|
-
import { AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountSearchRequest, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AllowedMccConfig, AmendCardRequest, AmountPair, BeneficiaryRequest, BeneficiaryResponse, BeneficiaryStatus, BeneficiaryTransferDestinationResponse, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardAmendmentScheduledTaskRequest, CardAmendmentScheduledTaskResponse, CardDeliveryEmailConfig, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardOptionSearch, CardReportUrlRequest, CardResponse, CardResponseV2, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardSearch, CardSearchRequest, CardStateChangeDesiredState, CardStateChangeScheduledTaskRequest, CardStateChangeScheduledTaskResponse, CardStatement, CardTransaction, CardTransactionType, CardType, CardTypeProfileResponse, CardTypeResponse, CardTypeResponseV2, CardTypesConfig, CardTypeSearchRequest, CardTypeSpecification, CardTypeSpecificationFlag, CategoryFundingAccountAccessRequest, CategoryLimitResponse, CategoryResponse, CategoryStatus, ConfigMatchesRequest, ConfigMatchesResponse, ConfigRequest, ConfigResponse, ConfigTypesResponse, CreateCardRequest, CreateRolesetRequest, CredentialRequest, CredentialResponse, Criteria, DateRangeLocalDate, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountInboundTransferNotificationConfig, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSearchRequest, FundingAccountSearchResponse, FundingAccountSummaryResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InsertCardOptionRequest, InsertCardRequest, InternalBalanceLimit, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LegacyBookingInfoRequest, LoginRequest, LoginResponse, MerchantDetails, MinimalBookingInfo, NonBeneficiaryTransferDestination, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OmnisetupResponse, OrganisationBalanceLimitResponse, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRequest, OrganisationResponse, OrganisationUpdateRequest, Passengers, PasswordChangeRequest, PasswordResetResponse, PasswordValidateRequest, PasswordValidateResponse, PaxpayFeature, Payload, PaymentMethodOptionResponse, PaymentOption, ProcessedStatement, ProductType, ProviderCode, ProviderResponse, Range, ReconciliationReportUrlRequest, References, RelogWithNewSessionDetailsRequest, Report, ReportUrlResponse, RoleResponse, RolesetResponse, Room, ScheduledTaskRequest, ScheduleEntry, SearchBeneficiaryRequest, SearchRolesetsRequest, Segment,
|
|
3
|
-
export { Client, AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountSearchRequest, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AllowedMccConfig, AmendCardRequest, AmountPair, BeneficiaryRequest, BeneficiaryResponse, BeneficiaryStatus, BeneficiaryTransferDestinationResponse, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardDeliveryEmailConfig, CardAmendmentScheduledTaskRequest, CardAmendmentScheduledTaskResponse, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardOptionSearch, CardReportUrlRequest, CardResponse, CardResponseV2, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardSearch, CardStateChangeDesiredState, CardStateChangeScheduledTaskRequest, CardStateChangeScheduledTaskResponse, CardStatement, CardTransaction, CardTransactionType, CardType, CardTypeProfileResponse, CardTypeResponse, CardTypeResponseV2, CardTypesConfig, CardTypeSearchRequest, CardTypeSpecification, CardTypeSpecificationFlag, CategoryFundingAccountAccessRequest, UpdateCategoryRequest, CategoryLimitResponse, CategoryResponse, CategoryStatus, ConfigMatchesRequest, ConfigMatchesResponse, ConfigRequest, ConfigResponse, ConfigTypesResponse, CreateCardRequest, CreateRolesetRequest, CredentialRequest, CredentialResponse, Criteria, DateRangeLocalDate, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountInboundTransferNotificationConfig, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSearchRequest, FundingAccountSearchResponse, FundingAccountSummaryResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InsertCardOptionRequest, InsertCardRequest, InternalBalanceLimit, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LegacyBookingInfoRequest, LoginRequest, LoginResponse, MerchantDetails, MinimalBookingInfo, NonBeneficiaryTransferDestination, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OmnisetupResponse, OrganisationBalanceLimitResponse, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRequest, OrganisationResponse, OrganisationUpdateRequest, Passengers, PasswordChangeRequest, PasswordResetResponse, PasswordValidateRequest, PasswordValidateResponse, PaxpayFeature, Payload, PaymentMethodOptionResponse, PaymentOption, ProcessedStatement, ProductType, ProviderCode, ProviderResponse, Range, References, RelogWithNewSessionDetailsRequest, Report, ReconciliationReportUrlRequest, ReportUrlResponse, RoleResponse, RolesetResponse, Room, ScheduleEntry, CardSearchRequest, ScheduledTaskRequest, SearchRolesetsRequest, Segment,
|
|
2
|
+
import { AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountSearchRequest, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AllowedMccConfig, AmendCardRequest, AmountPair, BeneficiaryRequest, BeneficiaryResponse, BeneficiaryStatus, BeneficiaryTransferDestinationResponse, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardAmendmentScheduledTaskRequest, CardAmendmentScheduledTaskResponse, CardDeliveryEmailConfig, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardOptionSearch, CardReportUrlRequest, CardResponse, CardResponseV2, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardSearch, CardSearchRequest, CardStateChangeDesiredState, CardStateChangeScheduledTaskRequest, CardStateChangeScheduledTaskResponse, CardStatement, CardTransaction, CardTransactionType, CardType, CardTypeProfileResponse, CardTypeResponse, CardTypeResponseV2, CardTypesConfig, CardTypeSearchRequest, CardTypeSpecification, CardTypeSpecificationFlag, CategoryFundingAccountAccessRequest, CategoryLimitResponse, CategoryResponse, CategoryStatus, ConfigMatchesRequest, ConfigMatchesResponse, ConfigRequest, ConfigResponse, ConfigTypesResponse, CreateCardRequest, CreateRolesetRequest, CredentialRequest, CredentialResponse, Criteria, DateRangeLocalDate, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountInboundTransferNotificationConfig, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSearchRequest, FundingAccountSearchResponse, FundingAccountSummaryResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InsertCardOptionRequest, InsertCardRequest, InternalBalanceLimit, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LegacyBookingInfoRequest, LoginRequest, LoginResponse, MerchantDetails, MinimalBookingInfo, NonBeneficiaryTransferDestination, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OmnisetupResponse, OrganisationBalanceLimitResponse, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRequest, OrganisationResponse, OrganisationUpdateRequest, Passengers, PasswordChangeRequest, PasswordResetResponse, PasswordValidateRequest, PasswordValidateResponse, PaxpayFeature, Payload, PaymentMethodOptionResponse, PaymentOption, ProcessedStatement, ProductType, ProviderCode, ProviderResponse, Range, ReconciliationReportUrlRequest, References, RelogWithNewSessionDetailsRequest, Report, ReportUrlResponse, RoleResponse, RolesetResponse, Room, ScheduledTaskRequest, ScheduleEntry, SearchBeneficiaryRequest, SearchRolesetsRequest, Segment, StatementReportRequest, StatementReportResponse, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementReportUrlRequest, StatementRowIds, StatementSummaryReportRequest, StatementSummaryReportResponse, StatementSummaryReportResponseRow, StatementTransferSpecificType, SummaryBookingInfoResponse, SupplierBookingInfo, SupplierRequest, SupplierResponse, TransactionResponse, TransactionType, TransferDestinationInfo, TransferDestinationResponse, TransferRequest, TransferResponse, TransferResponseV2, TransferResponseV2Summary, TransferSearch, TransferStatus, TravelPartyInfo, TwoFactorAuthenticationDetails, TwoFactorAuthenticationRegistrationResponse, UpdateAccountRequest, UpdateBeneficiaryRequest, UpdateCategoryRequest, UpdateRolesetRequest, UserChangeRequest, UserConfig, UserLimitsDeleteRequest, UserLimitsRequest, UserLimitsResponse, UsernameAvailabilityResponse, UserReportUrlRequest, UserRequest, UserResponse, UserRoleResponse, UserSearchRequest, UserStatus, YearMonth } from "./model";
|
|
3
|
+
export { Client, AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountSearchRequest, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AllowedMccConfig, AmendCardRequest, AmountPair, BeneficiaryRequest, BeneficiaryResponse, BeneficiaryStatus, BeneficiaryTransferDestinationResponse, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardDeliveryEmailConfig, CardAmendmentScheduledTaskRequest, CardAmendmentScheduledTaskResponse, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardOptionSearch, CardReportUrlRequest, CardResponse, CardResponseV2, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardSearch, CardStateChangeDesiredState, CardStateChangeScheduledTaskRequest, CardStateChangeScheduledTaskResponse, CardStatement, CardTransaction, CardTransactionType, CardType, CardTypeProfileResponse, CardTypeResponse, CardTypeResponseV2, CardTypesConfig, CardTypeSearchRequest, CardTypeSpecification, CardTypeSpecificationFlag, CategoryFundingAccountAccessRequest, UpdateCategoryRequest, CategoryLimitResponse, CategoryResponse, CategoryStatus, ConfigMatchesRequest, ConfigMatchesResponse, ConfigRequest, ConfigResponse, ConfigTypesResponse, CreateCardRequest, CreateRolesetRequest, CredentialRequest, CredentialResponse, Criteria, DateRangeLocalDate, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountInboundTransferNotificationConfig, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSearchRequest, FundingAccountSearchResponse, FundingAccountSummaryResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InsertCardOptionRequest, InsertCardRequest, InternalBalanceLimit, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LegacyBookingInfoRequest, LoginRequest, LoginResponse, MerchantDetails, MinimalBookingInfo, NonBeneficiaryTransferDestination, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OmnisetupResponse, OrganisationBalanceLimitResponse, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRequest, OrganisationResponse, OrganisationUpdateRequest, Passengers, PasswordChangeRequest, PasswordResetResponse, PasswordValidateRequest, PasswordValidateResponse, PaxpayFeature, Payload, PaymentMethodOptionResponse, PaymentOption, ProcessedStatement, ProductType, ProviderCode, ProviderResponse, Range, References, RelogWithNewSessionDetailsRequest, Report, ReconciliationReportUrlRequest, ReportUrlResponse, RoleResponse, RolesetResponse, Room, ScheduleEntry, CardSearchRequest, ScheduledTaskRequest, SearchRolesetsRequest, Segment, SearchBeneficiaryRequest, StatementReportUrlRequest, StatementReportRequest, StatementReportResponse, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementRowIds, StatementSummaryReportRequest, StatementSummaryReportResponse, StatementSummaryReportResponseRow, StatementTransferSpecificType, SummaryBookingInfoResponse, SupplierBookingInfo, SupplierRequest, SupplierResponse, TransactionResponse, TransactionType, TransferDestinationInfo, TransferDestinationResponse, TransferRequest, TransferResponse, TransferResponseV2, TransferResponseV2Summary, TransferSearch, TransferStatus, TravelPartyInfo, TwoFactorAuthenticationDetails, TwoFactorAuthenticationRegistrationResponse, UpdateAccountRequest, UpdateBeneficiaryRequest, UpdateRolesetRequest, UserChangeRequest, UserConfig, UserLimitsDeleteRequest, UserLimitsRequest, UserLimitsResponse, UsernameAvailabilityResponse, UserReportUrlRequest, UserRequest, UserResponse, UserRoleResponse, UserSearchRequest, UserStatus, YearMonth, };
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAA;AACjC,OAAO,EACN,mBAAmB,EAEnB,yCAAyC,EACzC,yBAAyB,EACzB,eAAe,EAEf,YAAY,EACZ,cAAc,EACd,WAAW,EACX,WAAW,EACX,gBAAgB,EAGhB,UAAU,EAEV,mBAAmB,EACnB,iBAAiB,EACjB,sCAAsC,EACtC,4BAA4B,EAC5B,iBAAiB,EACjB,WAAW,EAEX,mBAAmB,EACnB,eAAe,EAEf,kCAAkC,EAClC,uBAAuB,EACvB,mBAAmB,EACnB,oBAAoB,EACpB,QAAQ,EACR,0BAA0B,EAG1B,YAAY,EACZ,cAAc,EACd,wBAAwB,EACxB,sBAAsB,EACtB,oBAAoB,EAGpB,2BAA2B,EAE3B,oCAAoC,EACpC,aAAa,EACb,eAAe,EAEf,QAAQ,EAMR,qBAAqB,EACrB,yBAAyB,EAgBzB,uBAAuB,EACvB,eAAe,EACf,aAAa,EACb,mBAAmB,EACnB,cAAc,EACd,4BAA4B,EAC5B,6BAA6B,EAC7B,wBAAwB,EACxB,yBAAyB,EACzB,UAAU,EACV,4BAA4B,EAE5B,6BAA6B,EAC7B,4BAA4B,EAG5B,6BAA6B,EAC7B,kBAAkB,EAElB,oBAAoB,EACpB,uBAAuB,EACvB,wBAAwB,EACxB,SAAS,EAKT,yBAAyB,EACzB,0BAA0B,EAC1B,cAAc,EACd,KAAK,EAGL,aAAa,EACb,eAAe,EAGf,cAAc,EAId,gCAAgC,EAGhC,gBAAgB,EAEhB,oBAAoB,EAEpB,UAAU,EAKV,aAAa,EAKb,WAAW,EACX,YAAY,EACZ,gBAAgB,EAGhB,UAAU,EAWV,OAAO,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAA;AACjC,OAAO,EACN,mBAAmB,EAEnB,yCAAyC,EACzC,yBAAyB,EACzB,eAAe,EAEf,YAAY,EACZ,cAAc,EACd,WAAW,EACX,WAAW,EACX,gBAAgB,EAGhB,UAAU,EAEV,mBAAmB,EACnB,iBAAiB,EACjB,sCAAsC,EACtC,4BAA4B,EAC5B,iBAAiB,EACjB,WAAW,EAEX,mBAAmB,EACnB,eAAe,EAEf,kCAAkC,EAClC,uBAAuB,EACvB,mBAAmB,EACnB,oBAAoB,EACpB,QAAQ,EACR,0BAA0B,EAG1B,YAAY,EACZ,cAAc,EACd,wBAAwB,EACxB,sBAAsB,EACtB,oBAAoB,EAGpB,2BAA2B,EAE3B,oCAAoC,EACpC,aAAa,EACb,eAAe,EAEf,QAAQ,EAMR,qBAAqB,EACrB,yBAAyB,EAgBzB,uBAAuB,EACvB,eAAe,EACf,aAAa,EACb,mBAAmB,EACnB,cAAc,EACd,4BAA4B,EAC5B,6BAA6B,EAC7B,wBAAwB,EACxB,yBAAyB,EACzB,UAAU,EACV,4BAA4B,EAE5B,6BAA6B,EAC7B,4BAA4B,EAG5B,6BAA6B,EAC7B,kBAAkB,EAElB,oBAAoB,EACpB,uBAAuB,EACvB,wBAAwB,EACxB,SAAS,EAKT,yBAAyB,EACzB,0BAA0B,EAC1B,cAAc,EACd,KAAK,EAGL,aAAa,EACb,eAAe,EAGf,cAAc,EAId,gCAAgC,EAGhC,gBAAgB,EAEhB,oBAAoB,EAEpB,UAAU,EAKV,aAAa,EAKb,WAAW,EACX,YAAY,EACZ,gBAAgB,EAGhB,UAAU,EAWV,OAAO,EAGP,0BAA0B,EAC1B,4BAA4B,EAC5B,sBAAsB,EAEtB,eAAe,EAIf,6BAA6B,EAC7B,0BAA0B,EAC1B,mBAAmB,EAInB,eAAe,EACf,uBAAuB,EACvB,2BAA2B,EAE3B,gBAAgB,EAChB,kBAAkB,EAClB,yBAAyB,EAEzB,cAAc,EACd,eAAe,EAOf,iBAAiB,EAGjB,iBAAiB,EAEjB,4BAA4B,EAE5B,WAAW,EACX,YAAY,EAGZ,UAAU,EACV,SAAS,GACT,MAAM,SAAS,CAAA;AAEhB,OAAO,EACN,MAAM,EACN,mBAAmB,EAEnB,yCAAyC,EACzC,yBAAyB,EACzB,eAAe,EAEf,YAAY,EACZ,cAAc,EACd,WAAW,EACX,WAAW,EACX,gBAAgB,EAGhB,UAAU,EAEV,mBAAmB,EACnB,iBAAiB,EACjB,sCAAsC,EACtC,4BAA4B,EAC5B,iBAAiB,EACjB,WAAW,EAEX,mBAAmB,EACnB,eAAe,EACf,uBAAuB,EAEvB,kCAAkC,EAClC,mBAAmB,EACnB,oBAAoB,EACpB,QAAQ,EACR,0BAA0B,EAG1B,YAAY,EACZ,cAAc,EACd,wBAAwB,EACxB,sBAAsB,EACtB,oBAAoB,EAEpB,2BAA2B,EAE3B,oCAAoC,EACpC,aAAa,EACb,eAAe,EAEf,QAAQ,EAMR,qBAAqB,EACrB,yBAAyB,EAiBzB,uBAAuB,EACvB,eAAe,EACf,aAAa,EACb,mBAAmB,EACnB,cAAc,EACd,4BAA4B,EAC5B,6BAA6B,EAC7B,wBAAwB,EACxB,yBAAyB,EACzB,UAAU,EACV,4BAA4B,EAE5B,6BAA6B,EAC7B,4BAA4B,EAG5B,6BAA6B,EAC7B,kBAAkB,EAElB,oBAAoB,EACpB,uBAAuB,EACvB,wBAAwB,EACxB,SAAS,EAKT,yBAAyB,EACzB,0BAA0B,EAC1B,cAAc,EACd,KAAK,EAGL,aAAa,EACb,eAAe,EAGf,cAAc,EAId,gCAAgC,EAGhC,gBAAgB,EAEhB,oBAAoB,EAEpB,UAAU,EAKV,aAAa,EAKb,WAAW,EACX,YAAY,EACZ,gBAAgB,EAEhB,UAAU,EAYV,OAAO,EAKP,0BAA0B,EAC1B,4BAA4B,EAC5B,sBAAsB,EACtB,eAAe,EAIf,6BAA6B,EAC7B,0BAA0B,EAC1B,mBAAmB,EAInB,eAAe,EACf,uBAAuB,EACvB,2BAA2B,EAE3B,gBAAgB,EAChB,kBAAkB,EAClB,yBAAyB,EAEzB,cAAc,EACd,eAAe,EAMf,iBAAiB,EAGjB,iBAAiB,EAEjB,4BAA4B,EAE5B,WAAW,EACX,YAAY,EAGZ,UAAU,EACV,SAAS,GACT,CAAA"}
|
package/dist/model/index.d.ts
CHANGED
|
@@ -142,7 +142,6 @@ import { ScheduleEntry } from "./ScheduleEntry";
|
|
|
142
142
|
import { SearchBeneficiaryRequest } from "./SearchBeneficiaryRequest";
|
|
143
143
|
import { SearchRolesetsRequest } from "./SearchRolesetsRequest";
|
|
144
144
|
import { Segment } from "./Segment";
|
|
145
|
-
import { Sorting } from "./Sorting";
|
|
146
145
|
import { StatementReportRequest } from "./StatementReportRequest";
|
|
147
146
|
import { StatementReportResponse } from "./StatementReportResponse";
|
|
148
147
|
import { StatementReportResponseRow } from "./StatementReportResponseRow";
|
|
@@ -188,4 +187,4 @@ import { UserRoleResponse } from "./UserRoleResponse";
|
|
|
188
187
|
import { UserSearchRequest } from "./UserSearchRequest";
|
|
189
188
|
import { UserStatus } from "./UserStatus";
|
|
190
189
|
import { YearMonth } from "./YearMonth";
|
|
191
|
-
export { AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountSearchRequest, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AllowedMccConfig, AmendCardRequest, AmountPair, BeneficiaryRequest, BeneficiaryResponse, BeneficiaryStatus, BeneficiaryTransferDestinationResponse, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardDeliveryEmailConfig, CardAmendmentScheduledTaskRequest, CardAmendmentScheduledTaskResponse, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardOptionSearch, CardReportUrlRequest, CardResponse, CardResponseV2, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardSearch, CardStateChangeDesiredState, CardStateChangeScheduledTaskRequest, CardStateChangeScheduledTaskResponse, CardStatement, CardTransaction, CardTransactionType, CardType, CardTypeProfileResponse, CardTypeResponse, CardTypeResponseV2, CardTypesConfig, CardTypeSearchRequest, CardTypeSpecification, CardTypeSpecificationFlag, CategoryFundingAccountAccessRequest, UpdateCategoryRequest, CategoryLimitResponse, CategoryResponse, CategoryStatus, ConfigMatchesRequest, ConfigMatchesResponse, ConfigRequest, ConfigResponse, ConfigTypesResponse, CreateCardRequest, CreateRolesetRequest, CredentialRequest, CredentialResponse, Criteria, DateRangeLocalDate, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountInboundTransferNotificationConfig, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSearchRequest, FundingAccountSearchResponse, FundingAccountSummaryResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InsertCardOptionRequest, InsertCardRequest, InternalBalanceLimit, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LegacyBookingInfoRequest, LoginRequest, LoginResponse, MerchantDetails, MinimalBookingInfo, NonBeneficiaryTransferDestination, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OmnisetupResponse, OrganisationBalanceLimitResponse, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRequest, OrganisationResponse, OrganisationUpdateRequest, Passengers, PasswordChangeRequest, PasswordResetResponse, PasswordValidateRequest, PasswordValidateResponse, PaxpayFeature, Payload, PaymentMethodOptionResponse, PaymentOption, ProcessedStatement, ProductType, ProviderCode, ProviderResponse, Range, References, RelogWithNewSessionDetailsRequest, Report, ReconciliationReportUrlRequest, ReportUrlResponse, RoleResponse, RolesetResponse, Room, ScheduleEntry, CardSearchRequest, ScheduledTaskRequest, SearchRolesetsRequest, Segment,
|
|
190
|
+
export { AccountBankResponse, AccountCreationRequest, AccountDetailsTransferDestinationResponse, AccountIdentifierResponse, AccountResponse, AccountSearchRequest, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AllowedMccConfig, AmendCardRequest, AmountPair, BeneficiaryRequest, BeneficiaryResponse, BeneficiaryStatus, BeneficiaryTransferDestinationResponse, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardDeliveryEmailConfig, CardAmendmentScheduledTaskRequest, CardAmendmentScheduledTaskResponse, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardOptionSearch, CardReportUrlRequest, CardResponse, CardResponseV2, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardSearch, CardStateChangeDesiredState, CardStateChangeScheduledTaskRequest, CardStateChangeScheduledTaskResponse, CardStatement, CardTransaction, CardTransactionType, CardType, CardTypeProfileResponse, CardTypeResponse, CardTypeResponseV2, CardTypesConfig, CardTypeSearchRequest, CardTypeSpecification, CardTypeSpecificationFlag, CategoryFundingAccountAccessRequest, UpdateCategoryRequest, CategoryLimitResponse, CategoryResponse, CategoryStatus, ConfigMatchesRequest, ConfigMatchesResponse, ConfigRequest, ConfigResponse, ConfigTypesResponse, CreateCardRequest, CreateRolesetRequest, CredentialRequest, CredentialResponse, Criteria, DateRangeLocalDate, EmailValidationResponse, ErrorMessageDto, ErrorResponse, ExternalDestination, ExternalSource, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountInboundTransferNotificationConfig, FundingAccountResponseV2Basic, FundingAccountResponseV2Full, FundingAccountSearchRequest, FundingAccountSearchResponse, FundingAccountSummaryResponse, FundingLimitConfig, FundingLimitRequest, FundingLimitResponse, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InsertCardOptionRequest, InsertCardRequest, InternalBalanceLimit, InternalOrganisationConfig, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LegacyBookingInfoRequest, LoginRequest, LoginResponse, MerchantDetails, MinimalBookingInfo, NonBeneficiaryTransferDestination, OmnisetupFlags, OmnisetupProviderRequest, OmnisetupRequest, OmnisetupResponse, OrganisationBalanceLimitResponse, OrganisationConfig, OrganisationCreateRequest, OrganisationFlag, OrganisationRequest, OrganisationResponse, OrganisationUpdateRequest, Passengers, PasswordChangeRequest, PasswordResetResponse, PasswordValidateRequest, PasswordValidateResponse, PaxpayFeature, Payload, PaymentMethodOptionResponse, PaymentOption, ProcessedStatement, ProductType, ProviderCode, ProviderResponse, Range, References, RelogWithNewSessionDetailsRequest, Report, ReconciliationReportUrlRequest, ReportUrlResponse, RoleResponse, RolesetResponse, Room, ScheduleEntry, CardSearchRequest, ScheduledTaskRequest, SearchRolesetsRequest, Segment, SearchBeneficiaryRequest, StatementReportUrlRequest, StatementReportRequest, StatementReportResponse, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementRowIds, StatementSummaryReportRequest, StatementSummaryReportResponse, StatementSummaryReportResponseRow, StatementTransferSpecificType, SummaryBookingInfoResponse, SupplierBookingInfo, SupplierRequest, SupplierResponse, TransactionResponse, TransactionType, TransferDestinationInfo, TransferDestinationResponse, TransferRequest, TransferResponse, TransferResponseV2, TransferResponseV2Summary, TransferSearch, TransferStatus, TravelPartyInfo, TwoFactorAuthenticationDetails, TwoFactorAuthenticationRegistrationResponse, UpdateAccountRequest, UpdateBeneficiaryRequest, UpdateRolesetRequest, UserChangeRequest, UserConfig, UserLimitsDeleteRequest, UserLimitsRequest, UserLimitsResponse, UsernameAvailabilityResponse, UserReportUrlRequest, UserRequest, UserResponse, UserRoleResponse, UserSearchRequest, UserStatus, YearMonth, };
|
package/dist/model/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["model/index.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["model/index.ts"],"names":[],"mappings":"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"}
|
package/index.ts
CHANGED
|
@@ -144,7 +144,6 @@ import {
|
|
|
144
144
|
SearchBeneficiaryRequest,
|
|
145
145
|
SearchRolesetsRequest,
|
|
146
146
|
Segment,
|
|
147
|
-
Sorting,
|
|
148
147
|
StatementReportRequest,
|
|
149
148
|
StatementReportResponse,
|
|
150
149
|
StatementReportResponseRow,
|
|
@@ -338,7 +337,6 @@ export {
|
|
|
338
337
|
ScheduledTaskRequest,
|
|
339
338
|
SearchRolesetsRequest,
|
|
340
339
|
Segment,
|
|
341
|
-
Sorting,
|
|
342
340
|
SearchBeneficiaryRequest,
|
|
343
341
|
StatementReportUrlRequest,
|
|
344
342
|
StatementReportRequest,
|
package/model/index.ts
CHANGED
|
@@ -142,7 +142,6 @@ import { ScheduleEntry } from "./ScheduleEntry"
|
|
|
142
142
|
import { SearchBeneficiaryRequest } from "./SearchBeneficiaryRequest"
|
|
143
143
|
import { SearchRolesetsRequest } from "./SearchRolesetsRequest"
|
|
144
144
|
import { Segment } from "./Segment"
|
|
145
|
-
import { Sorting } from "./Sorting"
|
|
146
145
|
import { StatementReportRequest } from "./StatementReportRequest"
|
|
147
146
|
import { StatementReportResponse } from "./StatementReportResponse"
|
|
148
147
|
import { StatementReportResponseRow } from "./StatementReportResponseRow"
|
|
@@ -334,7 +333,6 @@ export {
|
|
|
334
333
|
ScheduledTaskRequest,
|
|
335
334
|
SearchRolesetsRequest,
|
|
336
335
|
Segment,
|
|
337
|
-
Sorting,
|
|
338
336
|
SearchBeneficiaryRequest,
|
|
339
337
|
StatementReportUrlRequest,
|
|
340
338
|
StatementReportRequest,
|
package/package.json
CHANGED
package/Client/Account/index.ts
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as model from "../../model"
|
|
2
|
-
import { Connection } from "../Connection"
|
|
3
|
-
import { Resource } from "../Resource"
|
|
4
|
-
|
|
5
|
-
export class Account extends Resource<model.AccountResponse, model.AccountCreationRequest> {
|
|
6
|
-
constructor(connection: Connection, folder: string, backend: model.AccountResponse) {
|
|
7
|
-
super(connection, folder, backend)
|
|
8
|
-
}
|
|
9
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as model from "../../model"
|
|
2
|
-
import { Connection } from "../Connection"
|
|
3
|
-
import { Resource } from "../Resource"
|
|
4
|
-
|
|
5
|
-
export class Beneficiary extends Resource<model.BeneficiaryResponse, model.BeneficiaryRequest> {
|
|
6
|
-
constructor(connection: Connection, folder: string, backend: model.BeneficiaryResponse) {
|
|
7
|
-
super(connection, folder, backend)
|
|
8
|
-
}
|
|
9
|
-
}
|