@pax2pay/client 0.1.9 → 0.1.10
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/Categories/index.ts +13 -0
- package/Client/Email/index.ts +14 -0
- package/Client/Users/index.ts +3 -0
- package/Client/index.ts +6 -0
- package/dist/Client/Categories/index.d.ts +11 -0
- package/dist/Client/Categories/index.js +14 -0
- package/dist/Client/Categories/index.js.map +1 -0
- package/dist/Client/Email/index.d.ts +11 -0
- package/dist/Client/Email/index.js +14 -0
- package/dist/Client/Email/index.js.map +1 -0
- package/dist/Client/Users/index.d.ts +1 -0
- package/dist/Client/Users/index.js +3 -0
- package/dist/Client/Users/index.js.map +1 -1
- package/dist/Client/index.d.ts +6 -0
- package/dist/Client/index.js +4 -0
- package/dist/Client/index.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/model/CategoryFundingAccountAccessRequest.d.ts +5 -0
- package/dist/model/CategoryFundingAccountAccessRequest.js +2 -0
- package/dist/model/CategoryFundingAccountAccessRequest.js.map +1 -0
- package/dist/model/CategoryLimitResponse.d.ts +5 -0
- package/dist/model/CategoryLimitResponse.js +2 -0
- package/dist/model/CategoryLimitResponse.js.map +1 -0
- package/dist/model/CategoryResponse.d.ts +9 -0
- package/dist/model/CategoryResponse.js +2 -0
- package/dist/model/CategoryResponse.js.map +1 -0
- package/dist/model/CategoryStatus.d.ts +1 -0
- package/dist/model/CategoryStatus.js +2 -0
- package/dist/model/CategoryStatus.js.map +1 -0
- package/dist/model/EmailValidationResponse.d.ts +9 -0
- package/dist/model/EmailValidationResponse.js +12 -0
- package/dist/model/EmailValidationResponse.js.map +1 -0
- package/dist/model/UserChangeRequest.d.ts +2 -1
- package/dist/model/UserLimitsRequest.d.ts +3 -0
- package/dist/model/UserLimitsRequest.js +10 -1
- package/dist/model/UserLimitsRequest.js.map +1 -1
- package/dist/model/UserRequest.d.ts +5 -1
- package/dist/model/UserRequest.js +20 -1
- package/dist/model/UserRequest.js.map +1 -1
- package/dist/model/UserResponse.d.ts +2 -1
- package/dist/model/UserResponse.js +2 -5
- package/dist/model/UserResponse.js.map +1 -1
- package/dist/model/UserStatus.d.ts +5 -0
- package/dist/model/UserStatus.js +9 -0
- package/dist/model/UserStatus.js.map +1 -0
- package/dist/model/UsernameAvailabilityResponse.d.ts +9 -0
- package/dist/model/UsernameAvailabilityResponse.js +12 -0
- package/dist/model/UsernameAvailabilityResponse.js.map +1 -0
- package/dist/model/index.d.ts +8 -1
- package/dist/model/index.js +6 -1
- package/dist/model/index.js.map +1 -1
- package/index.ts +14 -0
- package/model/CategoryFundingAccountAccessRequest.ts +6 -0
- package/model/CategoryLimitResponse.ts +6 -0
- package/model/CategoryResponse.ts +10 -0
- package/model/CategoryStatus.ts +1 -0
- package/model/EmailValidationResponse.ts +18 -0
- package/model/UserChangeRequest.ts +2 -1
- package/model/UserLimitsRequest.ts +10 -0
- package/model/UserRequest.ts +21 -1
- package/model/UserResponse.ts +3 -6
- package/model/UserStatus.ts +9 -0
- package/model/UsernameAvailabilityResponse.ts +18 -0
- package/model/index.ts +14 -0
- package/package.json +1 -1
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { CategoryResponse } from "../../model/CategoryResponse"
|
|
2
|
+
import { Connection } from "../Connection"
|
|
3
|
+
export class Categories {
|
|
4
|
+
protected folder = "category"
|
|
5
|
+
constructor(private readonly connection: Connection) {}
|
|
6
|
+
static create(connection: Connection) {
|
|
7
|
+
return new Categories(connection)
|
|
8
|
+
}
|
|
9
|
+
async getAllCategories() {
|
|
10
|
+
const result = await this.connection.get<CategoryResponse[]>(`category?size=100`)
|
|
11
|
+
return result
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as model from "../../model"
|
|
2
|
+
import { Connection } from "../Connection"
|
|
3
|
+
|
|
4
|
+
export class Email {
|
|
5
|
+
protected folder = "email"
|
|
6
|
+
constructor(private readonly connection: Connection) {}
|
|
7
|
+
static create(connection: Connection) {
|
|
8
|
+
return new Email(connection)
|
|
9
|
+
}
|
|
10
|
+
async validateEmail(email: string) {
|
|
11
|
+
const result = await this.connection.get<model.EmailValidationResponse>(`email/validate/${email}`)
|
|
12
|
+
return result
|
|
13
|
+
}
|
|
14
|
+
}
|
package/Client/Users/index.ts
CHANGED
|
@@ -55,4 +55,7 @@ export class Users extends Collection<model.UserResponse, model.UserSearchReques
|
|
|
55
55
|
const result = await this.connection.put<model.UserResponse>(`users/${username}`, request)
|
|
56
56
|
return result
|
|
57
57
|
}
|
|
58
|
+
async checkUsernameAvailability(username: string): Promise<model.UsernameAvailabilityResponse | model.ErrorResponse> {
|
|
59
|
+
return await this.connection.get<model.UsernameAvailabilityResponse>(`${this.folder}/username/${username}`)
|
|
60
|
+
}
|
|
58
61
|
}
|
package/Client/index.ts
CHANGED
|
@@ -4,9 +4,11 @@ import { Auth as ClientAuth } from "./Auth"
|
|
|
4
4
|
import { Beneficiaries as ClientBeneficiaries } from "./Beneficiaries"
|
|
5
5
|
import { Card as ClientCard } from "./Card"
|
|
6
6
|
import { Cards as ClientCards } from "./Cards"
|
|
7
|
+
import { Categories as ClientCategories } from "./Categories"
|
|
7
8
|
import { Collection as ClientCollection } from "./Collection"
|
|
8
9
|
import { Configuration as ClientConfiguration } from "./Configuration"
|
|
9
10
|
import { Connection } from "./Connection"
|
|
11
|
+
import { Email as ClientEmail } from "./Email"
|
|
10
12
|
import { List as ClientList } from "./List"
|
|
11
13
|
import { Organisation as ClientOrganisation } from "./Organisation"
|
|
12
14
|
import { Organisations as ClientOrganisations } from "./Organisations"
|
|
@@ -26,7 +28,9 @@ export class Client {
|
|
|
26
28
|
auth = ClientAuth.create(this.connection)
|
|
27
29
|
beneficiaries = ClientBeneficiaries.create(this.connection)
|
|
28
30
|
cards = ClientCards.create(this.connection)
|
|
31
|
+
categories = ClientCategories.create(this.connection)
|
|
29
32
|
configuration = ClientConfiguration.create(this.connection)
|
|
33
|
+
email = ClientEmail.create(this.connection)
|
|
30
34
|
users = ClientUsers.create(this.connection)
|
|
31
35
|
organisations = ClientOrganisations.create(this.connection)
|
|
32
36
|
reports = ClientReports.create(this.connection)
|
|
@@ -47,7 +51,9 @@ export namespace Client {
|
|
|
47
51
|
export type Beneficiaries = ClientBeneficiaries
|
|
48
52
|
export type Card = ClientCard
|
|
49
53
|
export type Cards = ClientCards
|
|
54
|
+
export type Categories = ClientCategories
|
|
50
55
|
export type Configuration = ClientConfiguration
|
|
56
|
+
export type Email = ClientEmail
|
|
51
57
|
export type Organisation = ClientOrganisation
|
|
52
58
|
export type Organisations = ClientOrganisations
|
|
53
59
|
export type Reports = ClientReports
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { CategoryResponse } from "../../model/CategoryResponse";
|
|
2
|
+
import { Connection } from "../Connection";
|
|
3
|
+
export declare class Categories {
|
|
4
|
+
private readonly connection;
|
|
5
|
+
protected folder: string;
|
|
6
|
+
constructor(connection: Connection);
|
|
7
|
+
static create(connection: Connection): Categories;
|
|
8
|
+
getAllCategories(): Promise<(import("../..").ErrorResponse & {
|
|
9
|
+
status: 400 | 404 | 500 | 403 | 503;
|
|
10
|
+
}) | CategoryResponse[]>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export class Categories {
|
|
2
|
+
constructor(connection) {
|
|
3
|
+
this.connection = connection;
|
|
4
|
+
this.folder = "category";
|
|
5
|
+
}
|
|
6
|
+
static create(connection) {
|
|
7
|
+
return new Categories(connection);
|
|
8
|
+
}
|
|
9
|
+
async getAllCategories() {
|
|
10
|
+
const result = await this.connection.get(`category?size=100`);
|
|
11
|
+
return result;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/Categories/index.ts"],"names":[],"mappings":"AAEA,MAAM,OAAO,UAAU;IAEtB,YAA6B,UAAsB;QAAtB,eAAU,GAAV,UAAU,CAAY;QADzC,WAAM,GAAG,UAAU,CAAA;IACyB,CAAC;IACvD,MAAM,CAAC,MAAM,CAAC,UAAsB;QACnC,OAAO,IAAI,UAAU,CAAC,UAAU,CAAC,CAAA;IAClC,CAAC;IACD,KAAK,CAAC,gBAAgB;QACrB,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,GAAG,CAAqB,mBAAmB,CAAC,CAAA;QACjF,OAAO,MAAM,CAAA;IACd,CAAC;CACD"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as model from "../../model";
|
|
2
|
+
import { Connection } from "../Connection";
|
|
3
|
+
export declare class Email {
|
|
4
|
+
private readonly connection;
|
|
5
|
+
protected folder: string;
|
|
6
|
+
constructor(connection: Connection);
|
|
7
|
+
static create(connection: Connection): Email;
|
|
8
|
+
validateEmail(email: string): Promise<model.EmailValidationResponse | (model.ErrorResponse & {
|
|
9
|
+
status: 400 | 404 | 500 | 403 | 503;
|
|
10
|
+
})>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export class Email {
|
|
2
|
+
constructor(connection) {
|
|
3
|
+
this.connection = connection;
|
|
4
|
+
this.folder = "email";
|
|
5
|
+
}
|
|
6
|
+
static create(connection) {
|
|
7
|
+
return new Email(connection);
|
|
8
|
+
}
|
|
9
|
+
async validateEmail(email) {
|
|
10
|
+
const result = await this.connection.get(`email/validate/${email}`);
|
|
11
|
+
return result;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/Email/index.ts"],"names":[],"mappings":"AAGA,MAAM,OAAO,KAAK;IAEjB,YAA6B,UAAsB;QAAtB,eAAU,GAAV,UAAU,CAAY;QADzC,WAAM,GAAG,OAAO,CAAA;IAC4B,CAAC;IACvD,MAAM,CAAC,MAAM,CAAC,UAAsB;QACnC,OAAO,IAAI,KAAK,CAAC,UAAU,CAAC,CAAA;IAC7B,CAAC;IACD,KAAK,CAAC,aAAa,CAAC,KAAa;QAChC,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,GAAG,CAAgC,kBAAkB,KAAK,EAAE,CAAC,CAAA;QAClG,OAAO,MAAM,CAAA;IACd,CAAC;CACD"}
|
|
@@ -18,4 +18,5 @@ export declare class Users extends Collection<model.UserResponse, model.UserSear
|
|
|
18
18
|
resetPassword(username: string): Promise<model.PasswordResetResponse | model.ErrorResponse>;
|
|
19
19
|
updateRolesetOnUser(username: string, roleset: string): Promise<model.UserRoleResponse | model.ErrorResponse>;
|
|
20
20
|
updateUser(username: string, request: model.UserChangeRequest): Promise<model.UserResponse | model.ErrorResponse>;
|
|
21
|
+
checkUsernameAvailability(username: string): Promise<model.UsernameAvailabilityResponse | model.ErrorResponse>;
|
|
21
22
|
}
|
|
@@ -48,5 +48,8 @@ export class Users extends Collection {
|
|
|
48
48
|
const result = await this.connection.put(`users/${username}`, request);
|
|
49
49
|
return result;
|
|
50
50
|
}
|
|
51
|
+
async checkUsernameAvailability(username) {
|
|
52
|
+
return await this.connection.get(`${this.folder}/username/${username}`);
|
|
53
|
+
}
|
|
51
54
|
}
|
|
52
55
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/Users/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAA;AAG1C,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAA;AAE9B,MAAM,OAAO,KAAM,SAAQ,UAA0E;IAEpG,YAAoB,UAAsB;QACzC,KAAK,CAAC,UAAU,CAAC,CAAA;QAFR,WAAM,GAAG,OAAO,CAAA;IAG1B,CAAC;IACS,cAAc,CAAC,QAA4B;QACpD,OAAO,IAAI,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE,CAAC,IAAI,CAAC,MAAM,EAAE,QAAQ,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,QAAQ,CAAC,CAAA;IACvF,CAAC;IACD,MAAM,CAAC,MAAM,CAAC,UAAsB;QACnC,OAAO,IAAI,KAAK,CAAC,UAAU,CAAC,CAAA;IAC7B,CAAC;IACD,KAAK,CAAC,UAAU,CAAC,QAAgB;QAChC,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,MAAM,CAAqB,SAAS,QAAQ,EAAE,CAAC,CAAA;QACpF,OAAO,MAAM,CAAA;IACd,CAAC;IACD,KAAK,CAAC,WAAW;QAChB,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,GAAG,CAAuB,8BAA8B,CAAC,CAAA;QAC9F,OAAO,MAAM,CAAA;IACd,CAAC;IACD,KAAK,CAAC,WAAW;QAChB,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,GAAG,CAAW,gBAAgB,CAAC,CAAA;QACpE,OAAO,MAAM,CAAA;IACd,CAAC;IACD,KAAK,CAAC,WAAW;QAChB,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,GAAG,CAA0B,UAAU,CAAC,CAAA;QAC7E,OAAO,MAAM,CAAA;IACd,CAAC;IACD,KAAK,CAAC,OAAO,CAAC,QAAgB;QAC7B,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,GAAG,CAAqB,SAAS,QAAQ,EAAE,CAAC,CAAA;QACjF,OAAO,MAAM,CAAA;IACd,CAAC;IACD,KAAK,CAAC,mBAAmB,CAAC,QAAgB,EAAE,KAAa;QACxD,IAAI,CAAC,UAAU,CAAC,KAAK,GAAG,KAAK,CAAA;QAC7B,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,GAAG,CAAW,SAAS,QAAQ,iBAAiB,CAAC,CAAA;QACtF,OAAO,MAAM,CAAA;IACd,CAAC;IACD,KAAK,CAAC,aAAa,CAAC,QAAgB;QACnC,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,IAAI,CAA8B,oBAAoB,EAAE,EAAE,QAAQ,EAAE,QAAQ,EAAE,CAAC,CAAA;QACpH,OAAO,MAAM,CAAA;IACd,CAAC;IACD,KAAK,CAAC,mBAAmB,CAAC,QAAgB,EAAE,OAAe;QAC1D,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,GAAG,CAAyB,SAAS,QAAQ,aAAa,OAAO,EAAE,EAAE,SAAS,CAAC,CAAA;QACpH,OAAO,MAAM,CAAA;IACd,CAAC;IACD,KAAK,CAAC,UAAU,CACf,QAAgB,EAChB,OAAgC;QAEhC,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,GAAG,CAAqB,SAAS,QAAQ,EAAE,EAAE,OAAO,CAAC,CAAA;QAC1F,OAAO,MAAM,CAAA;IACd,CAAC;CACD"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/Users/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAA;AAG1C,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAA;AAE9B,MAAM,OAAO,KAAM,SAAQ,UAA0E;IAEpG,YAAoB,UAAsB;QACzC,KAAK,CAAC,UAAU,CAAC,CAAA;QAFR,WAAM,GAAG,OAAO,CAAA;IAG1B,CAAC;IACS,cAAc,CAAC,QAA4B;QACpD,OAAO,IAAI,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE,CAAC,IAAI,CAAC,MAAM,EAAE,QAAQ,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,QAAQ,CAAC,CAAA;IACvF,CAAC;IACD,MAAM,CAAC,MAAM,CAAC,UAAsB;QACnC,OAAO,IAAI,KAAK,CAAC,UAAU,CAAC,CAAA;IAC7B,CAAC;IACD,KAAK,CAAC,UAAU,CAAC,QAAgB;QAChC,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,MAAM,CAAqB,SAAS,QAAQ,EAAE,CAAC,CAAA;QACpF,OAAO,MAAM,CAAA;IACd,CAAC;IACD,KAAK,CAAC,WAAW;QAChB,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,GAAG,CAAuB,8BAA8B,CAAC,CAAA;QAC9F,OAAO,MAAM,CAAA;IACd,CAAC;IACD,KAAK,CAAC,WAAW;QAChB,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,GAAG,CAAW,gBAAgB,CAAC,CAAA;QACpE,OAAO,MAAM,CAAA;IACd,CAAC;IACD,KAAK,CAAC,WAAW;QAChB,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,GAAG,CAA0B,UAAU,CAAC,CAAA;QAC7E,OAAO,MAAM,CAAA;IACd,CAAC;IACD,KAAK,CAAC,OAAO,CAAC,QAAgB;QAC7B,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,GAAG,CAAqB,SAAS,QAAQ,EAAE,CAAC,CAAA;QACjF,OAAO,MAAM,CAAA;IACd,CAAC;IACD,KAAK,CAAC,mBAAmB,CAAC,QAAgB,EAAE,KAAa;QACxD,IAAI,CAAC,UAAU,CAAC,KAAK,GAAG,KAAK,CAAA;QAC7B,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,GAAG,CAAW,SAAS,QAAQ,iBAAiB,CAAC,CAAA;QACtF,OAAO,MAAM,CAAA;IACd,CAAC;IACD,KAAK,CAAC,aAAa,CAAC,QAAgB;QACnC,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,IAAI,CAA8B,oBAAoB,EAAE,EAAE,QAAQ,EAAE,QAAQ,EAAE,CAAC,CAAA;QACpH,OAAO,MAAM,CAAA;IACd,CAAC;IACD,KAAK,CAAC,mBAAmB,CAAC,QAAgB,EAAE,OAAe;QAC1D,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,GAAG,CAAyB,SAAS,QAAQ,aAAa,OAAO,EAAE,EAAE,SAAS,CAAC,CAAA;QACpH,OAAO,MAAM,CAAA;IACd,CAAC;IACD,KAAK,CAAC,UAAU,CACf,QAAgB,EAChB,OAAgC;QAEhC,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,GAAG,CAAqB,SAAS,QAAQ,EAAE,EAAE,OAAO,CAAC,CAAA;QAC1F,OAAO,MAAM,CAAA;IACd,CAAC;IACD,KAAK,CAAC,yBAAyB,CAAC,QAAgB;QAC/C,OAAO,MAAM,IAAI,CAAC,UAAU,CAAC,GAAG,CAAqC,GAAG,IAAI,CAAC,MAAM,aAAa,QAAQ,EAAE,CAAC,CAAA;IAC5G,CAAC;CACD"}
|
package/dist/Client/index.d.ts
CHANGED
|
@@ -4,9 +4,11 @@ import { Auth as ClientAuth } from "./Auth";
|
|
|
4
4
|
import { Beneficiaries as ClientBeneficiaries } from "./Beneficiaries";
|
|
5
5
|
import { Card as ClientCard } from "./Card";
|
|
6
6
|
import { Cards as ClientCards } from "./Cards";
|
|
7
|
+
import { Categories as ClientCategories } from "./Categories";
|
|
7
8
|
import { Collection as ClientCollection } from "./Collection";
|
|
8
9
|
import { Configuration as ClientConfiguration } from "./Configuration";
|
|
9
10
|
import { Connection } from "./Connection";
|
|
11
|
+
import { Email as ClientEmail } from "./Email";
|
|
10
12
|
import { List as ClientList } from "./List";
|
|
11
13
|
import { Organisation as ClientOrganisation } from "./Organisation";
|
|
12
14
|
import { Organisations as ClientOrganisations } from "./Organisations";
|
|
@@ -24,7 +26,9 @@ export declare class Client {
|
|
|
24
26
|
auth: ClientAuth;
|
|
25
27
|
beneficiaries: ClientBeneficiaries;
|
|
26
28
|
cards: ClientCards;
|
|
29
|
+
categories: ClientCategories;
|
|
27
30
|
configuration: ClientConfiguration;
|
|
31
|
+
email: ClientEmail;
|
|
28
32
|
users: ClientUsers;
|
|
29
33
|
organisations: ClientOrganisations;
|
|
30
34
|
reports: ClientReports;
|
|
@@ -39,7 +43,9 @@ export declare namespace Client {
|
|
|
39
43
|
type Beneficiaries = ClientBeneficiaries;
|
|
40
44
|
type Card = ClientCard;
|
|
41
45
|
type Cards = ClientCards;
|
|
46
|
+
type Categories = ClientCategories;
|
|
42
47
|
type Configuration = ClientConfiguration;
|
|
48
|
+
type Email = ClientEmail;
|
|
43
49
|
type Organisation = ClientOrganisation;
|
|
44
50
|
type Organisations = ClientOrganisations;
|
|
45
51
|
type Reports = ClientReports;
|
package/dist/Client/index.js
CHANGED
|
@@ -2,8 +2,10 @@ import { Accounts as ClientAccounts } from "./Accounts";
|
|
|
2
2
|
import { Auth as ClientAuth } from "./Auth";
|
|
3
3
|
import { Beneficiaries as ClientBeneficiaries } from "./Beneficiaries";
|
|
4
4
|
import { Cards as ClientCards } from "./Cards";
|
|
5
|
+
import { Categories as ClientCategories } from "./Categories";
|
|
5
6
|
import { Configuration as ClientConfiguration } from "./Configuration";
|
|
6
7
|
import { Connection } from "./Connection";
|
|
8
|
+
import { Email as ClientEmail } from "./Email";
|
|
7
9
|
import { Organisations as ClientOrganisations } from "./Organisations";
|
|
8
10
|
import { Reports as ClientReports } from "./Reports";
|
|
9
11
|
import { Transfers as ClientTransfers } from "./Transfers";
|
|
@@ -16,7 +18,9 @@ export class Client {
|
|
|
16
18
|
this.auth = ClientAuth.create(this.connection);
|
|
17
19
|
this.beneficiaries = ClientBeneficiaries.create(this.connection);
|
|
18
20
|
this.cards = ClientCards.create(this.connection);
|
|
21
|
+
this.categories = ClientCategories.create(this.connection);
|
|
19
22
|
this.configuration = ClientConfiguration.create(this.connection);
|
|
23
|
+
this.email = ClientEmail.create(this.connection);
|
|
20
24
|
this.users = ClientUsers.create(this.connection);
|
|
21
25
|
this.organisations = ClientOrganisations.create(this.connection);
|
|
22
26
|
this.reports = ClientReports.create(this.connection);
|
package/dist/Client/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,IAAI,cAAc,EAAE,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,IAAI,IAAI,UAAU,EAAE,MAAM,QAAQ,CAAA;AAC3C,OAAO,EAAE,aAAa,IAAI,mBAAmB,EAAE,MAAM,iBAAiB,CAAA;AAEtE,OAAO,EAAE,KAAK,IAAI,WAAW,EAAE,MAAM,SAAS,CAAA;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,IAAI,cAAc,EAAE,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,IAAI,IAAI,UAAU,EAAE,MAAM,QAAQ,CAAA;AAC3C,OAAO,EAAE,aAAa,IAAI,mBAAmB,EAAE,MAAM,iBAAiB,CAAA;AAEtE,OAAO,EAAE,KAAK,IAAI,WAAW,EAAE,MAAM,SAAS,CAAA;AAC9C,OAAO,EAAE,UAAU,IAAI,gBAAgB,EAAE,MAAM,cAAc,CAAA;AAE7D,OAAO,EAAE,aAAa,IAAI,mBAAmB,EAAE,MAAM,iBAAiB,CAAA;AACtE,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AACzC,OAAO,EAAE,KAAK,IAAI,WAAW,EAAE,MAAM,SAAS,CAAA;AAG9C,OAAO,EAAE,aAAa,IAAI,mBAAmB,EAAE,MAAM,iBAAiB,CAAA;AACtE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,WAAW,CAAA;AAEpD,OAAO,EAAE,SAAS,IAAI,eAAe,EAAE,MAAM,aAAa,CAAA;AAE1D,OAAO,EAAE,KAAK,IAAI,WAAW,EAAE,MAAM,SAAS,CAAA;AAI9C,MAAM,OAAO,MAAM;IAelB,YAAoB,UAAsB,EAAU,aAA4B;QAA5D,eAAU,GAAV,UAAU,CAAY;QAAU,kBAAa,GAAb,aAAa,CAAe;QAXhF,aAAQ,GAAG,cAAc,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,CAAA;QACjD,SAAI,GAAG,UAAU,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,CAAA;QACzC,kBAAa,GAAG,mBAAmB,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,CAAA;QAC3D,UAAK,GAAG,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,CAAA;QAC3C,eAAU,GAAG,gBAAgB,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,CAAA;QACrD,kBAAa,GAAG,mBAAmB,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,CAAA;QAC3D,UAAK,GAAG,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,CAAA;QAC3C,UAAK,GAAG,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,CAAA;QAC3C,kBAAa,GAAG,mBAAmB,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,CAAA;QAC3D,YAAO,GAAG,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,CAAA;QAC/C,cAAS,GAAG,eAAe,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,CAAA;QAElD,UAAU,CAAC,YAAY,GAAG,KAAK,IAAI,EAAE,eAAC,OAAA,MAAA,CAAC,MAAM,CAAA,MAAA,IAAI,CAAC,aAAa,+CAAlB,IAAI,EAAiB,IAAI,CAAC,CAAA,CAAC,mCAAI,KAAK,CAAA,EAAA,CAAA;IAClF,CAAC;IAhBD,IAAI,YAAY,CAAC,KAAmB;QACnC,IAAI,CAAC,aAAa,GAAG,KAAK,CAAA;IAC3B,CAAC;IAeD,MAAM,CAAC,MAAM,CAAC,GAAuB,EAAE,KAA6B;QACnE,MAAM,UAAU,GAAG,GAAG,CAAC,CAAC,CAAC,UAAU,CAAC,IAAI,CAAC,GAAG,EAAE,OAAO,KAAK,IAAI,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,SAAS,CAAA;QACvG,OAAO,UAAU,IAAI,IAAI,MAAM,CAAC,UAAU,EAAE,OAAO,KAAK,IAAI,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,KAAK,CAAC,CAAA;IAC1F,CAAC;CACD"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { Client } from "./Client";
|
|
2
|
-
import { AccountBankResponse, AccountCreationRequest, AccountIdentifierResponse, AccountResponse, AccountSearchRequest, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AmendCardRequest, AmountPair, BeneficiaryRequest, BeneficiaryResponse, BeneficiaryStatus, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardAmendmentScheduledTaskRequest, CardAmendmentScheduledTaskResponse, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardOptionSearch, CardProcessedTransaction, CardResponse, CardResponseV2, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardSearch, CardStateChangeDesiredState, CardStateChangeScheduledTaskRequest, CardStateChangeScheduledTaskResponse, CardTransaction, CardType, CardTypeResponse, CardTypeResponseV2, CardTypesConfig, CardTypeSearchRequest, CardTypeSpecification, CardTypeSpecificationFlag, ConfigMatchesRequest, ConfigMatchesResponse, ConfigRequest, ConfigResponse, ConfigTypesResponse, CreateCardRequest, CreateRolesetRequest, CredentialRequest, CredentialResponse, Criteria, DateRangeLocalDate, ErrorMessageDto, ErrorResponse, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountInboundTransferNotificationConfig, FundingAccountResponseV2, FundingAccountSearchRequest, FundingAccountSearchResponse, FundingLimitRequest, FundingLimitResponse, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InsertCardOptionRequest, InsertCardRequest, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LegacyBookingInfoRequest, LoginRequest, LoginResponse, MinimalBookingInfo, NonBeneficiaryTransferDestination, OrganisationBalanceLimitResponse, OrganisationConfig, OrganisationRequest, OrganisationResponse, Passengers, PasswordChangeRequest, PasswordResetResponse, PasswordValidateRequest, PasswordValidateResponse, Payload, PaymentMethodOptionResponse, PaymentOption, ProcessedStatement, ProviderCode, ProviderResponse, References, RelogWithNewSessionDetailsRequest, Report, RoleResponse, RolesetResponse, Room, ScheduledTaskRequest, ScheduleEntry, SearchRolesetsRequest, Segment, Sorting, StatementReportRequest, StatementReportResponse, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementRowIds, SummaryBookingInfoResponse, SupplierBookingInfo, TransactionResponse, TransactionType, TransferDestinationInfo, TransferRequest, TransferResponse, TransferSearch, TransferStatus, TravelPartyInfo, TwoFactorAuthenticationDetails, TwoFactorAuthenticationRegistrationResponse, UpdateAccountRequest, UpdateBeneficiaryRequest, UpdateRolesetRequest, UserChangeRequest, UserConfig, UserLimitsDeleteRequest, UserLimitsRequest, UserLimitsResponse, UserRequest, UserResponse, UserRoleResponse, UserSearchRequest, YearMonth } from "./model";
|
|
3
|
-
export { Client, AccountBankResponse, AccountCreationRequest, AccountIdentifierResponse, AccountResponse, AccountSearchRequest, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AmendCardRequest, AmountPair, BeneficiaryRequest, BeneficiaryResponse, BeneficiaryStatus, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardAmendmentScheduledTaskRequest, CardAmendmentScheduledTaskResponse, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardOptionSearch, CardProcessedTransaction, CardResponse, CardResponseV2, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardSearch, CardStateChangeDesiredState, CardStateChangeScheduledTaskRequest, CardStateChangeScheduledTaskResponse, CardTransaction, CardType, CardTypeResponse, CardTypeResponseV2, CardTypesConfig, CardTypeSearchRequest, CardTypeSpecification, CardTypeSpecificationFlag, ConfigMatchesRequest, ConfigMatchesResponse, ConfigRequest, ConfigResponse, ConfigTypesResponse, CreateCardRequest, CreateRolesetRequest, CredentialRequest, CredentialResponse, Criteria, DateRangeLocalDate, ErrorMessageDto, ErrorResponse, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountInboundTransferNotificationConfig, FundingAccountResponseV2, FundingAccountSearchRequest, FundingAccountSearchResponse, FundingLimitRequest, FundingLimitResponse, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InsertCardOptionRequest, InsertCardRequest, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LegacyBookingInfoRequest, LoginRequest, LoginResponse, MinimalBookingInfo, NonBeneficiaryTransferDestination, OrganisationBalanceLimitResponse, OrganisationConfig, OrganisationRequest, OrganisationResponse, Passengers, PasswordChangeRequest, PasswordResetResponse, PasswordValidateRequest, PasswordValidateResponse, Payload, PaymentMethodOptionResponse, PaymentOption, ProcessedStatement, ProviderCode, ProviderResponse, References, RelogWithNewSessionDetailsRequest, Report, RoleResponse, RolesetResponse, Room, ScheduleEntry, ScheduledTaskRequest, SearchRolesetsRequest, Segment, Sorting, StatementReportRequest, StatementReportResponse, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementRowIds, SummaryBookingInfoResponse, SupplierBookingInfo, TransactionResponse, TransactionType, TransferDestinationInfo, TransferRequest, TransferResponse, TransferSearch, TransferStatus, TravelPartyInfo, TwoFactorAuthenticationDetails, TwoFactorAuthenticationRegistrationResponse, UpdateAccountRequest, UpdateBeneficiaryRequest, UpdateRolesetRequest, UserChangeRequest, UserConfig, UserLimitsDeleteRequest, UserLimitsRequest, UserLimitsResponse, UserRequest, UserResponse, UserRoleResponse, UserSearchRequest, YearMonth, };
|
|
2
|
+
import { AccountBankResponse, AccountCreationRequest, AccountIdentifierResponse, AccountResponse, AccountSearchRequest, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AmendCardRequest, AmountPair, BeneficiaryRequest, BeneficiaryResponse, BeneficiaryStatus, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardAmendmentScheduledTaskRequest, CardAmendmentScheduledTaskResponse, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardOptionSearch, CardProcessedTransaction, CardResponse, CardResponseV2, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardSearch, CardStateChangeDesiredState, CardStateChangeScheduledTaskRequest, CardStateChangeScheduledTaskResponse, CardTransaction, CardType, CardTypeResponse, CardTypeResponseV2, CardTypesConfig, CardTypeSearchRequest, CardTypeSpecification, CardTypeSpecificationFlag, CategoryFundingAccountAccessRequest, CategoryLimitResponse, CategoryResponse, CategoryStatus, ConfigMatchesRequest, ConfigMatchesResponse, ConfigRequest, ConfigResponse, ConfigTypesResponse, CreateCardRequest, CreateRolesetRequest, CredentialRequest, CredentialResponse, Criteria, DateRangeLocalDate, EmailValidationResponse, ErrorMessageDto, ErrorResponse, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountInboundTransferNotificationConfig, FundingAccountResponseV2, FundingAccountSearchRequest, FundingAccountSearchResponse, FundingLimitRequest, FundingLimitResponse, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InsertCardOptionRequest, InsertCardRequest, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LegacyBookingInfoRequest, LoginRequest, LoginResponse, MinimalBookingInfo, NonBeneficiaryTransferDestination, OrganisationBalanceLimitResponse, OrganisationConfig, OrganisationRequest, OrganisationResponse, Passengers, PasswordChangeRequest, PasswordResetResponse, PasswordValidateRequest, PasswordValidateResponse, Payload, PaymentMethodOptionResponse, PaymentOption, ProcessedStatement, ProviderCode, ProviderResponse, References, RelogWithNewSessionDetailsRequest, Report, RoleResponse, RolesetResponse, Room, ScheduledTaskRequest, ScheduleEntry, SearchRolesetsRequest, Segment, Sorting, StatementReportRequest, StatementReportResponse, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementRowIds, SummaryBookingInfoResponse, SupplierBookingInfo, TransactionResponse, TransactionType, TransferDestinationInfo, TransferRequest, TransferResponse, TransferSearch, TransferStatus, TravelPartyInfo, TwoFactorAuthenticationDetails, TwoFactorAuthenticationRegistrationResponse, UpdateAccountRequest, UpdateBeneficiaryRequest, UpdateRolesetRequest, UserChangeRequest, UserConfig, UserLimitsDeleteRequest, UserLimitsRequest, UserLimitsResponse, UsernameAvailabilityResponse, UserRequest, UserResponse, UserRoleResponse, UserSearchRequest, UserStatus, YearMonth } from "./model";
|
|
3
|
+
export { Client, AccountBankResponse, AccountCreationRequest, AccountIdentifierResponse, AccountResponse, AccountSearchRequest, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AmendCardRequest, AmountPair, BeneficiaryRequest, BeneficiaryResponse, BeneficiaryStatus, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardAmendmentScheduledTaskRequest, CardAmendmentScheduledTaskResponse, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardOptionSearch, CardProcessedTransaction, CardResponse, CardResponseV2, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardSearch, CardStateChangeDesiredState, CardStateChangeScheduledTaskRequest, CardStateChangeScheduledTaskResponse, CardTransaction, CardType, CardTypeResponse, CardTypeResponseV2, CardTypesConfig, CardTypeSearchRequest, CardTypeSpecification, CardTypeSpecificationFlag, CategoryFundingAccountAccessRequest, CategoryLimitResponse, CategoryResponse, CategoryStatus, ConfigMatchesRequest, ConfigMatchesResponse, ConfigRequest, ConfigResponse, ConfigTypesResponse, CreateCardRequest, CreateRolesetRequest, CredentialRequest, CredentialResponse, Criteria, DateRangeLocalDate, EmailValidationResponse, ErrorMessageDto, ErrorResponse, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountInboundTransferNotificationConfig, FundingAccountResponseV2, FundingAccountSearchRequest, FundingAccountSearchResponse, FundingLimitRequest, FundingLimitResponse, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InsertCardOptionRequest, InsertCardRequest, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LegacyBookingInfoRequest, LoginRequest, LoginResponse, MinimalBookingInfo, NonBeneficiaryTransferDestination, OrganisationBalanceLimitResponse, OrganisationConfig, OrganisationRequest, OrganisationResponse, Passengers, PasswordChangeRequest, PasswordResetResponse, PasswordValidateRequest, PasswordValidateResponse, Payload, PaymentMethodOptionResponse, PaymentOption, ProcessedStatement, ProviderCode, ProviderResponse, References, RelogWithNewSessionDetailsRequest, Report, RoleResponse, RolesetResponse, Room, ScheduleEntry, ScheduledTaskRequest, SearchRolesetsRequest, Segment, Sorting, StatementReportRequest, StatementReportResponse, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementRowIds, SummaryBookingInfoResponse, SupplierBookingInfo, TransactionResponse, TransactionType, TransferDestinationInfo, TransferRequest, TransferResponse, TransferSearch, TransferStatus, TravelPartyInfo, TwoFactorAuthenticationDetails, TwoFactorAuthenticationRegistrationResponse, UpdateAccountRequest, UpdateBeneficiaryRequest, UpdateRolesetRequest, UserChangeRequest, UserConfig, UserLimitsDeleteRequest, UserLimitsRequest, UserLimitsResponse, UsernameAvailabilityResponse, UserRequest, UserResponse, UserRoleResponse, UserSearchRequest, UserStatus, YearMonth, };
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { Client } from "./Client";
|
|
2
|
-
import { AccountBankResponse, AccountIdentifierResponse, AccountResponse, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AmountPair, BeneficiaryResponse, BeneficiaryStatus, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoResponse, BookingInfoType, CardAmendmentScheduledTaskResponse, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardResponse, CardResponseV2, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardStateChangeDesiredState, CardStateChangeScheduledTaskResponse, CardType, CardTypeSpecification, CardTypeSpecificationFlag, ErrorMessageDto, ErrorResponse, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountResponseV2, FundingLimitResponse, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LoginResponse, OrganisationBalanceLimitResponse, OrganisationResponse, Passengers, ProviderCode, ProviderResponse, References, Segment, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementRowIds, SummaryBookingInfoResponse, SupplierBookingInfo, TransferDestinationInfo, TransferResponse, TransferStatus, TravelPartyInfo, UserResponse, YearMonth, } from "./model";
|
|
3
|
-
export { Client, AccountBankResponse, AccountIdentifierResponse, AccountResponse, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AmountPair, BeneficiaryResponse, BeneficiaryStatus, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoResponse, BookingInfoType, CardAmendmentScheduledTaskResponse, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardResponse, CardResponseV2, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardStateChangeDesiredState, CardStateChangeScheduledTaskResponse, CardType, CardTypeSpecification, CardTypeSpecificationFlag, ErrorMessageDto, ErrorResponse, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountResponseV2, FundingLimitResponse, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LoginResponse, OrganisationBalanceLimitResponse, OrganisationResponse, Passengers, ProviderCode, ProviderResponse, References, Segment, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementRowIds, SummaryBookingInfoResponse, SupplierBookingInfo, TransferDestinationInfo, TransferResponse, TransferStatus, TravelPartyInfo, UserResponse, YearMonth, };
|
|
2
|
+
import { AccountBankResponse, AccountIdentifierResponse, AccountResponse, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AmountPair, BeneficiaryResponse, BeneficiaryStatus, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoResponse, BookingInfoType, CardAmendmentScheduledTaskResponse, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardResponse, CardResponseV2, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardStateChangeDesiredState, CardStateChangeScheduledTaskResponse, CardType, CardTypeSpecification, CardTypeSpecificationFlag, EmailValidationResponse, ErrorMessageDto, ErrorResponse, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountResponseV2, FundingLimitResponse, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LoginResponse, OrganisationBalanceLimitResponse, OrganisationResponse, Passengers, ProviderCode, ProviderResponse, References, Segment, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementRowIds, SummaryBookingInfoResponse, SupplierBookingInfo, TransferDestinationInfo, TransferResponse, TransferStatus, TravelPartyInfo, UserLimitsRequest, UsernameAvailabilityResponse, UserRequest, UserResponse, UserStatus, YearMonth, } from "./model";
|
|
3
|
+
export { Client, AccountBankResponse, AccountIdentifierResponse, AccountResponse, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AmountPair, BeneficiaryResponse, BeneficiaryStatus, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoResponse, BookingInfoType, CardAmendmentScheduledTaskResponse, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardResponse, CardResponseV2, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardStateChangeDesiredState, CardStateChangeScheduledTaskResponse, CardType, CardTypeSpecification, CardTypeSpecificationFlag, EmailValidationResponse, ErrorMessageDto, ErrorResponse, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountResponseV2, FundingLimitResponse, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LoginResponse, OrganisationBalanceLimitResponse, OrganisationResponse, Passengers, ProviderCode, ProviderResponse, References, Segment, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementRowIds, SummaryBookingInfoResponse, SupplierBookingInfo, TransferDestinationInfo, TransferResponse, TransferStatus, TravelPartyInfo, UserLimitsRequest, UsernameAvailabilityResponse, UserRequest, UserResponse, UserStatus, YearMonth, };
|
|
4
4
|
//# sourceMappingURL=index.js.map
|
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,yBAAyB,EACzB,eAAe,EAEf,YAAY,EACZ,cAAc,EACd,WAAW,EACX,WAAW,EACX,gBAAgB,EAEhB,UAAU,EAEV,mBAAmB,EACnB,iBAAiB,EACjB,4BAA4B,EAC5B,iBAAiB,EACjB,WAAW,EAEX,mBAAmB,EACnB,eAAe,EAEf,kCAAkC,EAClC,mBAAmB,EACnB,oBAAoB,EACpB,QAAQ,EACR,0BAA0B,EAG1B,YAAY,EACZ,cAAc,EACd,wBAAwB,EACxB,sBAAsB,EACtB,oBAAoB,EAEpB,2BAA2B,EAE3B,oCAAoC,EAEpC,QAAQ,EAKR,qBAAqB,EACrB,yBAAyB,
|
|
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,yBAAyB,EACzB,eAAe,EAEf,YAAY,EACZ,cAAc,EACd,WAAW,EACX,WAAW,EACX,gBAAgB,EAEhB,UAAU,EAEV,mBAAmB,EACnB,iBAAiB,EACjB,4BAA4B,EAC5B,iBAAiB,EACjB,WAAW,EAEX,mBAAmB,EACnB,eAAe,EAEf,kCAAkC,EAClC,mBAAmB,EACnB,oBAAoB,EACpB,QAAQ,EACR,0BAA0B,EAG1B,YAAY,EACZ,cAAc,EACd,wBAAwB,EACxB,sBAAsB,EACtB,oBAAoB,EAEpB,2BAA2B,EAE3B,oCAAoC,EAEpC,QAAQ,EAKR,qBAAqB,EACrB,yBAAyB,EAgBzB,uBAAuB,EACvB,eAAe,EACf,aAAa,EACb,4BAA4B,EAC5B,6BAA6B,EAE7B,yBAAyB,EACzB,UAAU,EACV,4BAA4B,EAE5B,wBAAwB,EAIxB,oBAAoB,EACpB,uBAAuB,EACvB,wBAAwB,EACxB,SAAS,EAGT,yBAAyB,EACzB,0BAA0B,EAC1B,cAAc,EACd,KAAK,EAGL,aAAa,EAGb,gCAAgC,EAGhC,oBAAoB,EACpB,UAAU,EASV,YAAY,EACZ,gBAAgB,EAChB,UAAU,EASV,OAAO,EAIP,0BAA0B,EAC1B,4BAA4B,EAC5B,sBAAsB,EACtB,eAAe,EACf,0BAA0B,EAC1B,mBAAmB,EAGnB,uBAAuB,EAEvB,gBAAgB,EAEhB,cAAc,EACd,eAAe,EASf,iBAAiB,EAEjB,4BAA4B,EAC5B,WAAW,EACX,YAAY,EAGZ,UAAU,EACV,SAAS,GACT,MAAM,SAAS,CAAA;AAEhB,OAAO,EACN,MAAM,EACN,mBAAmB,EAEnB,yBAAyB,EACzB,eAAe,EAEf,YAAY,EACZ,cAAc,EACd,WAAW,EACX,WAAW,EACX,gBAAgB,EAEhB,UAAU,EAEV,mBAAmB,EACnB,iBAAiB,EACjB,4BAA4B,EAC5B,iBAAiB,EACjB,WAAW,EAEX,mBAAmB,EACnB,eAAe,EAEf,kCAAkC,EAClC,mBAAmB,EACnB,oBAAoB,EACpB,QAAQ,EACR,0BAA0B,EAG1B,YAAY,EACZ,cAAc,EACd,wBAAwB,EACxB,sBAAsB,EACtB,oBAAoB,EAEpB,2BAA2B,EAE3B,oCAAoC,EAEpC,QAAQ,EAKR,qBAAqB,EACrB,yBAAyB,EAgBzB,uBAAuB,EACvB,eAAe,EACf,aAAa,EACb,4BAA4B,EAC5B,6BAA6B,EAE7B,yBAAyB,EACzB,UAAU,EACV,4BAA4B,EAE5B,wBAAwB,EAIxB,oBAAoB,EACpB,uBAAuB,EACvB,wBAAwB,EACxB,SAAS,EAGT,yBAAyB,EACzB,0BAA0B,EAC1B,cAAc,EACd,KAAK,EAGL,aAAa,EAGb,gCAAgC,EAGhC,oBAAoB,EACpB,UAAU,EASV,YAAY,EACZ,gBAAgB,EAChB,UAAU,EASV,OAAO,EAIP,0BAA0B,EAC1B,4BAA4B,EAC5B,sBAAsB,EACtB,eAAe,EACf,0BAA0B,EAC1B,mBAAmB,EAGnB,uBAAuB,EAEvB,gBAAgB,EAEhB,cAAc,EACd,eAAe,EASf,iBAAiB,EAEjB,4BAA4B,EAC5B,WAAW,EACX,YAAY,EAGZ,UAAU,EACV,SAAS,GACT,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CategoryFundingAccountAccessRequest.js","sourceRoot":"../","sources":["model/CategoryFundingAccountAccessRequest.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CategoryLimitResponse.js","sourceRoot":"../","sources":["model/CategoryLimitResponse.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { CategoryFundingAccountAccessRequest } from "./CategoryFundingAccountAccessRequest";
|
|
2
|
+
import { CategoryLimitResponse } from "./CategoryLimitResponse";
|
|
3
|
+
import { CategoryStatus } from "./CategoryStatus";
|
|
4
|
+
export interface CategoryResponse {
|
|
5
|
+
name: string;
|
|
6
|
+
limits: CategoryLimitResponse[];
|
|
7
|
+
status: CategoryStatus;
|
|
8
|
+
fundingAccountAccess: CategoryFundingAccountAccessRequest;
|
|
9
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CategoryResponse.js","sourceRoot":"../","sources":["model/CategoryResponse.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare type CategoryStatus = "ACTIVE" | "DELETED";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CategoryStatus.js","sourceRoot":"../","sources":["model/CategoryStatus.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { DateTime } from "isoly";
|
|
2
|
+
export interface EmailValidationResponse {
|
|
3
|
+
valid?: boolean;
|
|
4
|
+
message?: string;
|
|
5
|
+
checkedAt?: DateTime;
|
|
6
|
+
}
|
|
7
|
+
export declare namespace EmailValidationResponse {
|
|
8
|
+
function is(value: EmailValidationResponse | any): value is EmailValidationResponse;
|
|
9
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { DateTime } from "isoly";
|
|
2
|
+
export var EmailValidationResponse;
|
|
3
|
+
(function (EmailValidationResponse) {
|
|
4
|
+
function is(value) {
|
|
5
|
+
return (typeof value == "object" &&
|
|
6
|
+
(value.valid == undefined || typeof value.valid == "boolean") &&
|
|
7
|
+
(value.message == undefined || typeof value.message == "string") &&
|
|
8
|
+
(value.checkedAt == undefined || DateTime.is(value.checkedAt)));
|
|
9
|
+
}
|
|
10
|
+
EmailValidationResponse.is = is;
|
|
11
|
+
})(EmailValidationResponse || (EmailValidationResponse = {}));
|
|
12
|
+
//# sourceMappingURL=EmailValidationResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EmailValidationResponse.js","sourceRoot":"../","sources":["model/EmailValidationResponse.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAA;AAQhC,MAAM,KAAW,uBAAuB,CASvC;AATD,WAAiB,uBAAuB;IACvC,SAAgB,EAAE,CAAC,KAAoC;QACtD,OAAO,CACN,OAAO,KAAK,IAAI,QAAQ;YACxB,CAAC,KAAK,CAAC,KAAK,IAAI,SAAS,IAAI,OAAO,KAAK,CAAC,KAAK,IAAI,SAAS,CAAC;YAC7D,CAAC,KAAK,CAAC,OAAO,IAAI,SAAS,IAAI,OAAO,KAAK,CAAC,OAAO,IAAI,QAAQ,CAAC;YAChE,CAAC,KAAK,CAAC,SAAS,IAAI,SAAS,IAAI,QAAQ,CAAC,EAAE,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAC9D,CAAA;IACF,CAAC;IAPe,0BAAE,KAOjB,CAAA;AACF,CAAC,EATgB,uBAAuB,KAAvB,uBAAuB,QASvC"}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { UserLimitsRequest } from "./UserLimitsRequest";
|
|
2
|
+
import { UserStatus } from "./UserStatus";
|
|
2
3
|
export interface UserChangeRequest {
|
|
3
4
|
firstName: string;
|
|
4
5
|
lastName: string;
|
|
5
6
|
email: string;
|
|
6
7
|
category?: string;
|
|
7
|
-
status?:
|
|
8
|
+
status?: UserStatus;
|
|
8
9
|
userLimits?: UserLimitsRequest[];
|
|
9
10
|
}
|
|
@@ -1,2 +1,11 @@
|
|
|
1
|
-
|
|
1
|
+
import { Currency } from "isoly";
|
|
2
|
+
export var UserLimitsRequest;
|
|
3
|
+
(function (UserLimitsRequest) {
|
|
4
|
+
function is(value) {
|
|
5
|
+
return (typeof value == "object" &&
|
|
6
|
+
Currency.is(value.currency) &&
|
|
7
|
+
(value.limit == undefined || typeof value.limit == "number"));
|
|
8
|
+
}
|
|
9
|
+
UserLimitsRequest.is = is;
|
|
10
|
+
})(UserLimitsRequest || (UserLimitsRequest = {}));
|
|
2
11
|
//# sourceMappingURL=UserLimitsRequest.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UserLimitsRequest.js","sourceRoot":"../","sources":["model/UserLimitsRequest.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"UserLimitsRequest.js","sourceRoot":"../","sources":["model/UserLimitsRequest.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAA;AAUhC,MAAM,KAAW,iBAAiB,CAQjC;AARD,WAAiB,iBAAiB;IACjC,SAAgB,EAAE,CAAC,KAA8B;QAChD,OAAO,CACN,OAAO,KAAK,IAAI,QAAQ;YACxB,QAAQ,CAAC,EAAE,CAAC,KAAK,CAAC,QAAQ,CAAC;YAC3B,CAAC,KAAK,CAAC,KAAK,IAAI,SAAS,IAAI,OAAO,KAAK,CAAC,KAAK,IAAI,QAAQ,CAAC,CAC5D,CAAA;IACF,CAAC;IANe,oBAAE,KAMjB,CAAA;AACF,CAAC,EARgB,iBAAiB,KAAjB,iBAAiB,QAQjC"}
|
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
import { UserLimitsRequest } from "./UserLimitsRequest";
|
|
2
|
+
import { UserStatus } from "./UserStatus";
|
|
2
3
|
export interface UserRequest {
|
|
3
4
|
username: string;
|
|
4
5
|
password: string;
|
|
5
6
|
firstName: string;
|
|
6
7
|
lastName: string;
|
|
7
|
-
status?:
|
|
8
|
+
status?: UserStatus;
|
|
8
9
|
email: string;
|
|
9
10
|
userLimits?: UserLimitsRequest[];
|
|
10
11
|
rolesets?: string[];
|
|
11
12
|
category?: string;
|
|
12
13
|
}
|
|
14
|
+
export declare namespace UserRequest {
|
|
15
|
+
function is(value: UserRequest | any): value is UserRequest;
|
|
16
|
+
}
|
|
@@ -1,2 +1,21 @@
|
|
|
1
|
-
|
|
1
|
+
import { UserLimitsRequest } from "./UserLimitsRequest";
|
|
2
|
+
import { UserStatus } from "./UserStatus";
|
|
3
|
+
export var UserRequest;
|
|
4
|
+
(function (UserRequest) {
|
|
5
|
+
function is(value) {
|
|
6
|
+
return (typeof value == "object" &&
|
|
7
|
+
typeof value.username == "string" &&
|
|
8
|
+
typeof value.password == "string" &&
|
|
9
|
+
typeof value.firstName == "string" &&
|
|
10
|
+
typeof value.lastName == "string" &&
|
|
11
|
+
(value.status == undefined || UserStatus.is(value.status)) &&
|
|
12
|
+
typeof value.email == "string" &&
|
|
13
|
+
(value.userLimits == undefined ||
|
|
14
|
+
(Array.isArray(value.userLimits) && value.userLimits.every((item) => UserLimitsRequest.is(item)))) &&
|
|
15
|
+
(value.rolesets == undefined ||
|
|
16
|
+
(Array.isArray(value.rolesets) && value.rolesets.every((item) => typeof item == "string"))) &&
|
|
17
|
+
(value.category == undefined || typeof value.category == "string"));
|
|
18
|
+
}
|
|
19
|
+
UserRequest.is = is;
|
|
20
|
+
})(UserRequest || (UserRequest = {}));
|
|
2
21
|
//# sourceMappingURL=UserRequest.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UserRequest.js","sourceRoot":"../","sources":["model/UserRequest.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"UserRequest.js","sourceRoot":"../","sources":["model/UserRequest.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AACvD,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AAiBzC,MAAM,KAAW,WAAW,CAiB3B;AAjBD,WAAiB,WAAW;IAC3B,SAAgB,EAAE,CAAC,KAAwB;QAC1C,OAAO,CACN,OAAO,KAAK,IAAI,QAAQ;YACxB,OAAO,KAAK,CAAC,QAAQ,IAAI,QAAQ;YACjC,OAAO,KAAK,CAAC,QAAQ,IAAI,QAAQ;YACjC,OAAO,KAAK,CAAC,SAAS,IAAI,QAAQ;YAClC,OAAO,KAAK,CAAC,QAAQ,IAAI,QAAQ;YACjC,CAAC,KAAK,CAAC,MAAM,IAAI,SAAS,IAAI,UAAU,CAAC,EAAE,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;YAC1D,OAAO,KAAK,CAAC,KAAK,IAAI,QAAQ;YAC9B,CAAC,KAAK,CAAC,UAAU,IAAI,SAAS;gBAC7B,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,UAAU,CAAC,IAAI,KAAK,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,IAAS,EAAE,EAAE,CAAC,iBAAiB,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;YACxG,CAAC,KAAK,CAAC,QAAQ,IAAI,SAAS;gBAC3B,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,QAAQ,CAAC,IAAI,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,IAAS,EAAE,EAAE,CAAC,OAAO,IAAI,IAAI,QAAQ,CAAC,CAAC,CAAC;YACjG,CAAC,KAAK,CAAC,QAAQ,IAAI,SAAS,IAAI,OAAO,KAAK,CAAC,QAAQ,IAAI,QAAQ,CAAC,CAClE,CAAA;IACF,CAAC;IAfe,cAAE,KAejB,CAAA;AACF,CAAC,EAjBgB,WAAW,KAAX,WAAW,QAiB3B"}
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { OrganisationResponse } from "./OrganisationResponse";
|
|
2
2
|
import { TwoFactorAuthenticationDetails } from "./TwoFactorAuthenticationDetails";
|
|
3
3
|
import { UserLimitsResponse } from "./UserLimitsResponse";
|
|
4
|
+
import { UserStatus } from "./UserStatus";
|
|
4
5
|
export interface UserResponse {
|
|
5
6
|
username: string;
|
|
6
7
|
firstName: string;
|
|
7
8
|
lastName: string;
|
|
8
9
|
email: string;
|
|
9
|
-
status?:
|
|
10
|
+
status?: UserStatus;
|
|
10
11
|
passwordUpdatedOn?: string;
|
|
11
12
|
category?: string;
|
|
12
13
|
organisation?: OrganisationResponse;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { UserStatus } from "./UserStatus";
|
|
1
2
|
export var UserResponse;
|
|
2
3
|
(function (UserResponse) {
|
|
3
4
|
function is(value) {
|
|
@@ -6,11 +7,7 @@ export var UserResponse;
|
|
|
6
7
|
(value.firstName == undefined || typeof value.firstName == "string") &&
|
|
7
8
|
(value.lastName == undefined || typeof value.lastName == "string") &&
|
|
8
9
|
(value.email == undefined || typeof value.email == "string") &&
|
|
9
|
-
(value.status == undefined ||
|
|
10
|
-
value.status == "ACTIVE" ||
|
|
11
|
-
value.status == "INACTIVE" ||
|
|
12
|
-
value.status == "DELETED" ||
|
|
13
|
-
value.status == "PASSWORD_EXPIRED") &&
|
|
10
|
+
(value.status == undefined || UserStatus.is(value.status)) &&
|
|
14
11
|
(value.passwordUpdatedOn == undefined || typeof value.passwordUpdatedOn == "string") &&
|
|
15
12
|
(value.category == undefined || typeof value.category == "string"));
|
|
16
13
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UserResponse.js","sourceRoot":"../","sources":["model/UserResponse.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"UserResponse.js","sourceRoot":"../","sources":["model/UserResponse.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AAmBzC,MAAM,KAAW,YAAY,CAa5B;AAbD,WAAiB,YAAY;IAC5B,SAAgB,EAAE,CAAC,KAAyB;QAC3C,OAAO,CACN,OAAO,KAAK,IAAI,QAAQ;YACxB,CAAC,KAAK,CAAC,QAAQ,IAAI,SAAS,IAAI,OAAO,KAAK,CAAC,QAAQ,IAAI,QAAQ,CAAC;YAClE,CAAC,KAAK,CAAC,SAAS,IAAI,SAAS,IAAI,OAAO,KAAK,CAAC,SAAS,IAAI,QAAQ,CAAC;YACpE,CAAC,KAAK,CAAC,QAAQ,IAAI,SAAS,IAAI,OAAO,KAAK,CAAC,QAAQ,IAAI,QAAQ,CAAC;YAClE,CAAC,KAAK,CAAC,KAAK,IAAI,SAAS,IAAI,OAAO,KAAK,CAAC,KAAK,IAAI,QAAQ,CAAC;YAC5D,CAAC,KAAK,CAAC,MAAM,IAAI,SAAS,IAAI,UAAU,CAAC,EAAE,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;YAC1D,CAAC,KAAK,CAAC,iBAAiB,IAAI,SAAS,IAAI,OAAO,KAAK,CAAC,iBAAiB,IAAI,QAAQ,CAAC;YACpF,CAAC,KAAK,CAAC,QAAQ,IAAI,SAAS,IAAI,OAAO,KAAK,CAAC,QAAQ,IAAI,QAAQ,CAAC,CAClE,CAAA;IACF,CAAC;IAXe,eAAE,KAWjB,CAAA;AACF,CAAC,EAbgB,YAAY,KAAZ,YAAY,QAa5B"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export const userStatus = ["ACTIVE", "INACTIVE", "DELETED", "PASSWORD_EXPIRED"];
|
|
2
|
+
export var UserStatus;
|
|
3
|
+
(function (UserStatus) {
|
|
4
|
+
function is(value) {
|
|
5
|
+
return typeof value == "string" && userStatus.includes(value);
|
|
6
|
+
}
|
|
7
|
+
UserStatus.is = is;
|
|
8
|
+
})(UserStatus || (UserStatus = {}));
|
|
9
|
+
//# sourceMappingURL=UserStatus.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UserStatus.js","sourceRoot":"../","sources":["model/UserStatus.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC,QAAQ,EAAE,UAAU,EAAE,SAAS,EAAE,kBAAkB,CAAU,CAAA;AAIxF,MAAM,KAAW,UAAU,CAI1B;AAJD,WAAiB,UAAU;IAC1B,SAAgB,EAAE,CAAC,KAAc;QAChC,OAAO,OAAO,KAAK,IAAI,QAAQ,IAAI,UAAU,CAAC,QAAQ,CAAC,KAAmB,CAAC,CAAA;IAC5E,CAAC;IAFe,aAAE,KAEjB,CAAA;AACF,CAAC,EAJgB,UAAU,KAAV,UAAU,QAI1B"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export interface UsernameAvailabilityResponse {
|
|
2
|
+
username?: string;
|
|
3
|
+
available?: boolean;
|
|
4
|
+
inOwnOrganisation?: boolean;
|
|
5
|
+
suggestion?: string;
|
|
6
|
+
}
|
|
7
|
+
export declare namespace UsernameAvailabilityResponse {
|
|
8
|
+
function is(value: UsernameAvailabilityResponse | any): value is UsernameAvailabilityResponse;
|
|
9
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export var UsernameAvailabilityResponse;
|
|
2
|
+
(function (UsernameAvailabilityResponse) {
|
|
3
|
+
function is(value) {
|
|
4
|
+
return (typeof value == "object" &&
|
|
5
|
+
(value.username == undefined || typeof value.username == "string") &&
|
|
6
|
+
(value.available == undefined || typeof value.available == "boolean") &&
|
|
7
|
+
(value.inOwnOrganisation == undefined || typeof value.inOwnOrganisation == "boolean") &&
|
|
8
|
+
(value.suggestion == undefined || typeof value.suggestion == "string"));
|
|
9
|
+
}
|
|
10
|
+
UsernameAvailabilityResponse.is = is;
|
|
11
|
+
})(UsernameAvailabilityResponse || (UsernameAvailabilityResponse = {}));
|
|
12
|
+
//# sourceMappingURL=UsernameAvailabilityResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UsernameAvailabilityResponse.js","sourceRoot":"../","sources":["model/UsernameAvailabilityResponse.ts"],"names":[],"mappings":"AAOA,MAAM,KAAW,4BAA4B,CAU5C;AAVD,WAAiB,4BAA4B;IAC5C,SAAgB,EAAE,CAAC,KAAyC;QAC3D,OAAO,CACN,OAAO,KAAK,IAAI,QAAQ;YACxB,CAAC,KAAK,CAAC,QAAQ,IAAI,SAAS,IAAI,OAAO,KAAK,CAAC,QAAQ,IAAI,QAAQ,CAAC;YAClE,CAAC,KAAK,CAAC,SAAS,IAAI,SAAS,IAAI,OAAO,KAAK,CAAC,SAAS,IAAI,SAAS,CAAC;YACrE,CAAC,KAAK,CAAC,iBAAiB,IAAI,SAAS,IAAI,OAAO,KAAK,CAAC,iBAAiB,IAAI,SAAS,CAAC;YACrF,CAAC,KAAK,CAAC,UAAU,IAAI,SAAS,IAAI,OAAO,KAAK,CAAC,UAAU,IAAI,QAAQ,CAAC,CACtE,CAAA;IACF,CAAC;IARe,+BAAE,KAQjB,CAAA;AACF,CAAC,EAVgB,4BAA4B,KAA5B,4BAA4B,QAU5C"}
|
package/dist/model/index.d.ts
CHANGED
|
@@ -44,6 +44,10 @@ import { CardTypesConfig } from "./CardTypesConfig";
|
|
|
44
44
|
import { CardTypeSearchRequest } from "./CardTypeSearchRequest";
|
|
45
45
|
import { CardTypeSpecification } from "./CardTypeSpecification";
|
|
46
46
|
import { CardTypeSpecificationFlag } from "./CardTypeSpecificationFlag";
|
|
47
|
+
import { CategoryFundingAccountAccessRequest } from "./CategoryFundingAccountAccessRequest";
|
|
48
|
+
import { CategoryLimitResponse } from "./CategoryLimitResponse";
|
|
49
|
+
import { CategoryResponse } from "./CategoryResponse";
|
|
50
|
+
import { CategoryStatus } from "./CategoryStatus";
|
|
47
51
|
import { ConfigMatchesRequest } from "./ConfigMatchesRequest";
|
|
48
52
|
import { ConfigMatchesResponse } from "./ConfigMatchesResponse";
|
|
49
53
|
import { ConfigRequest } from "./ConfigRequest";
|
|
@@ -55,6 +59,7 @@ import { CredentialRequest } from "./CredentialRequest";
|
|
|
55
59
|
import { CredentialResponse } from "./CredentialResponse";
|
|
56
60
|
import { Criteria } from "./Criteria";
|
|
57
61
|
import { DateRangeLocalDate } from "./DateRangeLocalDate";
|
|
62
|
+
import { EmailValidationResponse } from "./EmailValidationResponse";
|
|
58
63
|
import { ErrorMessageDto } from "./ErrorMessageDto";
|
|
59
64
|
import { ErrorResponse } from "./ErrorResponse";
|
|
60
65
|
import { FiveFieldsBookingInfoRequest } from "./FiveFieldsBookingInfoRequest";
|
|
@@ -135,9 +140,11 @@ import { UserConfig } from "./UserConfig";
|
|
|
135
140
|
import { UserLimitsDeleteRequest } from "./UserLimitsDeleteRequest";
|
|
136
141
|
import { UserLimitsRequest } from "./UserLimitsRequest";
|
|
137
142
|
import { UserLimitsResponse } from "./UserLimitsResponse";
|
|
143
|
+
import { UsernameAvailabilityResponse } from "./UsernameAvailabilityResponse";
|
|
138
144
|
import { UserRequest } from "./UserRequest";
|
|
139
145
|
import { UserResponse } from "./UserResponse";
|
|
140
146
|
import { UserRoleResponse } from "./UserRoleResponse";
|
|
141
147
|
import { UserSearchRequest } from "./UserSearchRequest";
|
|
148
|
+
import { UserStatus } from "./UserStatus";
|
|
142
149
|
import { YearMonth } from "./YearMonth";
|
|
143
|
-
export { AccountBankResponse, AccountCreationRequest, AccountIdentifierResponse, AccountResponse, AccountSearchRequest, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AmendCardRequest, AmountPair, BeneficiaryRequest, BeneficiaryResponse, BeneficiaryStatus, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardAmendmentScheduledTaskRequest, CardAmendmentScheduledTaskResponse, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardOptionSearch, CardResponse, CardResponseV2, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardSearch, CardStateChangeDesiredState, CardStateChangeScheduledTaskRequest, CardStateChangeScheduledTaskResponse, CardTransaction, CardProcessedTransaction, CardType, CardTypeResponse, CardTypeResponseV2, CardTypesConfig, CardTypeSearchRequest, CardTypeSpecification, CardTypeSpecificationFlag, ConfigMatchesRequest, ConfigMatchesResponse, ConfigRequest, ConfigResponse, ConfigTypesResponse, CreateCardRequest, CreateRolesetRequest, CredentialRequest, CredentialResponse, Criteria, DateRangeLocalDate, ErrorMessageDto, ErrorResponse, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountInboundTransferNotificationConfig, FundingAccountResponseV2, FundingAccountSearchRequest, FundingAccountSearchResponse, FundingLimitRequest, FundingLimitResponse, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InsertCardOptionRequest, InsertCardRequest, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LegacyBookingInfoRequest, LoginRequest, LoginResponse, MinimalBookingInfo, NonBeneficiaryTransferDestination, OrganisationBalanceLimitResponse, OrganisationConfig, OrganisationRequest, OrganisationResponse, Passengers, PasswordChangeRequest, PasswordResetResponse, PasswordValidateRequest, PasswordValidateResponse, Payload, PaymentMethodOptionResponse, PaymentOption, ProcessedStatement, ProviderCode, ProviderResponse, References, RelogWithNewSessionDetailsRequest, Report, RoleResponse, RolesetResponse, Room, ScheduleEntry, ScheduledTaskRequest, SearchRolesetsRequest, Segment, Sorting, StatementReportRequest, StatementReportResponse, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementRowIds, SummaryBookingInfoResponse, SupplierBookingInfo, TransactionResponse, TransactionType, TransferDestinationInfo, TransferRequest, TransferResponse, TransferSearch, TransferStatus, TravelPartyInfo, TwoFactorAuthenticationDetails, TwoFactorAuthenticationRegistrationResponse, UpdateAccountRequest, UpdateBeneficiaryRequest, UpdateRolesetRequest, UserChangeRequest, UserConfig, UserLimitsDeleteRequest, UserLimitsRequest, UserLimitsResponse, UserRequest, UserResponse, UserRoleResponse, UserSearchRequest, YearMonth, };
|
|
150
|
+
export { AccountBankResponse, AccountCreationRequest, AccountIdentifierResponse, AccountResponse, AccountSearchRequest, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AmendCardRequest, AmountPair, BeneficiaryRequest, BeneficiaryResponse, BeneficiaryStatus, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoRequest, BookingInfoResponse, BookingInfoType, CardAmendmentScheduledTaskRequest, CardAmendmentScheduledTaskResponse, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardOptionSearch, CardResponse, CardResponseV2, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardSearch, CardStateChangeDesiredState, CardStateChangeScheduledTaskRequest, CardStateChangeScheduledTaskResponse, CardTransaction, CardProcessedTransaction, CardType, CardTypeResponse, CardTypeResponseV2, CardTypesConfig, CardTypeSearchRequest, CardTypeSpecification, CardTypeSpecificationFlag, CategoryFundingAccountAccessRequest, CategoryLimitResponse, CategoryResponse, CategoryStatus, ConfigMatchesRequest, ConfigMatchesResponse, ConfigRequest, ConfigResponse, ConfigTypesResponse, CreateCardRequest, CreateRolesetRequest, CredentialRequest, CredentialResponse, Criteria, DateRangeLocalDate, EmailValidationResponse, ErrorMessageDto, ErrorResponse, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoRequest, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountInboundTransferNotificationConfig, FundingAccountResponseV2, FundingAccountSearchRequest, FundingAccountSearchResponse, FundingLimitRequest, FundingLimitResponse, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InsertCardOptionRequest, InsertCardRequest, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LegacyBookingInfoRequest, LoginRequest, LoginResponse, MinimalBookingInfo, NonBeneficiaryTransferDestination, OrganisationBalanceLimitResponse, OrganisationConfig, OrganisationRequest, OrganisationResponse, Passengers, PasswordChangeRequest, PasswordResetResponse, PasswordValidateRequest, PasswordValidateResponse, Payload, PaymentMethodOptionResponse, PaymentOption, ProcessedStatement, ProviderCode, ProviderResponse, References, RelogWithNewSessionDetailsRequest, Report, RoleResponse, RolesetResponse, Room, ScheduleEntry, ScheduledTaskRequest, SearchRolesetsRequest, Segment, Sorting, StatementReportRequest, StatementReportResponse, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementRowIds, SummaryBookingInfoResponse, SupplierBookingInfo, TransactionResponse, TransactionType, TransferDestinationInfo, TransferRequest, TransferResponse, TransferSearch, TransferStatus, TravelPartyInfo, TwoFactorAuthenticationDetails, TwoFactorAuthenticationRegistrationResponse, UpdateAccountRequest, UpdateBeneficiaryRequest, UpdateRolesetRequest, UserChangeRequest, UserConfig, UserLimitsDeleteRequest, UserLimitsRequest, UserLimitsResponse, UsernameAvailabilityResponse, UserRequest, UserResponse, UserRoleResponse, UserSearchRequest, UserStatus, YearMonth, };
|
package/dist/model/index.js
CHANGED
|
@@ -29,6 +29,7 @@ import { CardStateChangeScheduledTaskResponse } from "./CardStateChangeScheduled
|
|
|
29
29
|
import { CardType } from "./CardType";
|
|
30
30
|
import { CardTypeSpecification } from "./CardTypeSpecification";
|
|
31
31
|
import { CardTypeSpecificationFlag } from "./CardTypeSpecificationFlag";
|
|
32
|
+
import { EmailValidationResponse } from "./EmailValidationResponse";
|
|
32
33
|
import { ErrorMessageDto } from "./ErrorMessageDto";
|
|
33
34
|
import { ErrorResponse } from "./ErrorResponse";
|
|
34
35
|
import { FiveFieldsBookingInfoRequest } from "./FiveFieldsBookingInfoRequest";
|
|
@@ -63,7 +64,11 @@ import { TransferDestinationInfo } from "./TransferDestinationInfo";
|
|
|
63
64
|
import { TransferResponse } from "./TransferResponse";
|
|
64
65
|
import { TransferStatus } from "./TransferStatus";
|
|
65
66
|
import { TravelPartyInfo } from "./TravelPartyInfo";
|
|
67
|
+
import { UserLimitsRequest } from "./UserLimitsRequest";
|
|
68
|
+
import { UsernameAvailabilityResponse } from "./UsernameAvailabilityResponse";
|
|
69
|
+
import { UserRequest } from "./UserRequest";
|
|
66
70
|
import { UserResponse } from "./UserResponse";
|
|
71
|
+
import { UserStatus } from "./UserStatus";
|
|
67
72
|
import { YearMonth } from "./YearMonth";
|
|
68
|
-
export { AccountBankResponse, AccountIdentifierResponse, AccountResponse, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AmountPair, BeneficiaryResponse, BeneficiaryStatus, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoResponse, BookingInfoType, CardAmendmentScheduledTaskResponse, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardResponse, CardResponseV2, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardStateChangeDesiredState, CardStateChangeScheduledTaskResponse, CardType, CardTypeSpecification, CardTypeSpecificationFlag, ErrorMessageDto, ErrorResponse, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountResponseV2, FundingLimitResponse, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LoginResponse, OrganisationBalanceLimitResponse, OrganisationResponse, Passengers, ProviderCode, ProviderResponse, References, Segment, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementRowIds, SummaryBookingInfoResponse, SupplierBookingInfo, TransferDestinationInfo, TransferResponse, TransferStatus, TravelPartyInfo, UserResponse, YearMonth, };
|
|
73
|
+
export { AccountBankResponse, AccountIdentifierResponse, AccountResponse, AccountState, AccountSummary, AccountType, AddressInfo, AgentBookingInfo, AmountPair, BeneficiaryResponse, BeneficiaryStatus, BillingTransactionAmountPair, BookedProductInfo, BookingInfo, BookingInfoResponse, BookingInfoType, CardAmendmentScheduledTaskResponse, CardDeliveryRequest, CardDeliveryResponse, CardForm, CardFundingAccountResponse, CardResponse, CardResponseV2, CardScheduleResponseItem, CardScheduleTaskStatus, CardScheduleTaskType, CardStateChangeDesiredState, CardStateChangeScheduledTaskResponse, CardType, CardTypeSpecification, CardTypeSpecificationFlag, EmailValidationResponse, ErrorMessageDto, ErrorResponse, FiveFieldsBookingInfoRequest, FiveFieldsBookingInfoResponse, FlightBookingInfoResponse, FlightInfo, FundingAccountIdentifierType, FundingAccountResponseV2, FundingLimitResponse, HotelBookingInfoRequest, HotelBookingInfoResponse, HotelInfo, InvoiceBookingInfoRequest, InvoiceBookingInfoResponse, InvokingSystem, Issue, LoginResponse, OrganisationBalanceLimitResponse, OrganisationResponse, Passengers, ProviderCode, ProviderResponse, References, Segment, StatementReportResponseRow, StatementReportRowActionType, StatementReportRowType, StatementRowIds, SummaryBookingInfoResponse, SupplierBookingInfo, TransferDestinationInfo, TransferResponse, TransferStatus, TravelPartyInfo, UserLimitsRequest, UsernameAvailabilityResponse, UserRequest, UserResponse, UserStatus, YearMonth, };
|
|
69
74
|
//# sourceMappingURL=index.js.map
|
package/dist/model/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["model/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAE3D,OAAO,EAAE,yBAAyB,EAAE,MAAM,6BAA6B,CAAA;AACvE,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAA;AAEnD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAC7C,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AACjD,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAA;AAC3C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAA;AAC3C,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAA;AAErD,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AAEzC,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAC3D,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AACvD,OAAO,EAAE,4BAA4B,EAAE,MAAM,gCAAgC,CAAA;AAC7E,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AACvD,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAA;AAE3C,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAC3D,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAA;AAEnD,OAAO,EAAE,kCAAkC,EAAE,MAAM,sCAAsC,CAAA;AACzF,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAC3D,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAA;AAC7D,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AACrC,OAAO,EAAE,0BAA0B,EAAE,MAAM,8BAA8B,CAAA;AAGzE,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAC7C,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AACjD,OAAO,EAAE,wBAAwB,EAAE,MAAM,4BAA4B,CAAA;AACrE,OAAO,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAA;AACjE,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAA;AAE7D,OAAO,EAAE,2BAA2B,EAAE,MAAM,+BAA+B,CAAA;AAE3E,OAAO,EAAE,oCAAoC,EAAE,MAAM,wCAAwC,CAAA;AAE7F,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AAKrC,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAA;AAC/D,OAAO,EAAE,yBAAyB,EAAE,MAAM,6BAA6B,CAAA;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["model/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAE3D,OAAO,EAAE,yBAAyB,EAAE,MAAM,6BAA6B,CAAA;AACvE,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAA;AAEnD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAC7C,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AACjD,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAA;AAC3C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAA;AAC3C,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAA;AAErD,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AAEzC,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAC3D,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AACvD,OAAO,EAAE,4BAA4B,EAAE,MAAM,gCAAgC,CAAA;AAC7E,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AACvD,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAA;AAE3C,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAC3D,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAA;AAEnD,OAAO,EAAE,kCAAkC,EAAE,MAAM,sCAAsC,CAAA;AACzF,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAC3D,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAA;AAC7D,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AACrC,OAAO,EAAE,0BAA0B,EAAE,MAAM,8BAA8B,CAAA;AAGzE,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAC7C,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AACjD,OAAO,EAAE,wBAAwB,EAAE,MAAM,4BAA4B,CAAA;AACrE,OAAO,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAA;AACjE,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAA;AAE7D,OAAO,EAAE,2BAA2B,EAAE,MAAM,+BAA+B,CAAA;AAE3E,OAAO,EAAE,oCAAoC,EAAE,MAAM,wCAAwC,CAAA;AAE7F,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AAKrC,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAA;AAC/D,OAAO,EAAE,yBAAyB,EAAE,MAAM,6BAA6B,CAAA;AAgBvE,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAA;AACnE,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAA;AACnD,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAC/C,OAAO,EAAE,4BAA4B,EAAE,MAAM,gCAAgC,CAAA;AAC7E,OAAO,EAAE,6BAA6B,EAAE,MAAM,iCAAiC,CAAA;AAE/E,OAAO,EAAE,yBAAyB,EAAE,MAAM,6BAA6B,CAAA;AACvE,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AACzC,OAAO,EAAE,4BAA4B,EAAE,MAAM,gCAAgC,CAAA;AAE7E,OAAO,EAAE,wBAAwB,EAAE,MAAM,4BAA4B,CAAA;AAIrE,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAA;AAC7D,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAA;AACnE,OAAO,EAAE,wBAAwB,EAAE,MAAM,4BAA4B,CAAA;AACrE,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AAGvC,OAAO,EAAE,yBAAyB,EAAE,MAAM,6BAA6B,CAAA;AACvE,OAAO,EAAE,0BAA0B,EAAE,MAAM,8BAA8B,CAAA;AACzE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AACjD,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAG/B,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAG/C,OAAO,EAAE,gCAAgC,EAAE,MAAM,oCAAoC,CAAA;AAGrF,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAA;AAC7D,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AASzC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAC7C,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAA;AACrD,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AASzC,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA;AAInC,OAAO,EAAE,0BAA0B,EAAE,MAAM,8BAA8B,CAAA;AACzE,OAAO,EAAE,4BAA4B,EAAE,MAAM,gCAAgC,CAAA;AAC7E,OAAO,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAA;AACjE,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAA;AACnD,OAAO,EAAE,0BAA0B,EAAE,MAAM,8BAA8B,CAAA;AACzE,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAG3D,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAA;AAEnE,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAA;AAErD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AACjD,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAA;AASnD,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AAEvD,OAAO,EAAE,4BAA4B,EAAE,MAAM,gCAAgC,CAAA;AAC7E,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAA;AAC3C,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAG7C,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AACzC,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AAEvC,OAAO,EACN,mBAAmB,EAEnB,yBAAyB,EACzB,eAAe,EAEf,YAAY,EACZ,cAAc,EACd,WAAW,EACX,WAAW,EACX,gBAAgB,EAEhB,UAAU,EAEV,mBAAmB,EACnB,iBAAiB,EACjB,4BAA4B,EAC5B,iBAAiB,EACjB,WAAW,EAEX,mBAAmB,EACnB,eAAe,EAEf,kCAAkC,EAClC,mBAAmB,EACnB,oBAAoB,EACpB,QAAQ,EACR,0BAA0B,EAE1B,YAAY,EACZ,cAAc,EACd,wBAAwB,EACxB,sBAAsB,EACtB,oBAAoB,EAEpB,2BAA2B,EAE3B,oCAAoC,EAGpC,QAAQ,EAKR,qBAAqB,EACrB,yBAAyB,EAgBzB,uBAAuB,EACvB,eAAe,EACf,aAAa,EACb,4BAA4B,EAC5B,6BAA6B,EAE7B,yBAAyB,EACzB,UAAU,EACV,4BAA4B,EAE5B,wBAAwB,EAIxB,oBAAoB,EACpB,uBAAuB,EACvB,wBAAwB,EACxB,SAAS,EAGT,yBAAyB,EACzB,0BAA0B,EAC1B,cAAc,EACd,KAAK,EAGL,aAAa,EAGb,gCAAgC,EAGhC,oBAAoB,EACpB,UAAU,EASV,YAAY,EACZ,gBAAgB,EAChB,UAAU,EASV,OAAO,EAIP,0BAA0B,EAC1B,4BAA4B,EAC5B,sBAAsB,EACtB,eAAe,EACf,0BAA0B,EAC1B,mBAAmB,EAGnB,uBAAuB,EAEvB,gBAAgB,EAEhB,cAAc,EACd,eAAe,EASf,iBAAiB,EAEjB,4BAA4B,EAC5B,WAAW,EACX,YAAY,EAGZ,UAAU,EACV,SAAS,GACT,CAAA"}
|
package/index.ts
CHANGED
|
@@ -46,6 +46,10 @@ import {
|
|
|
46
46
|
CardTypeSearchRequest,
|
|
47
47
|
CardTypeSpecification,
|
|
48
48
|
CardTypeSpecificationFlag,
|
|
49
|
+
CategoryFundingAccountAccessRequest,
|
|
50
|
+
CategoryLimitResponse,
|
|
51
|
+
CategoryResponse,
|
|
52
|
+
CategoryStatus,
|
|
49
53
|
ConfigMatchesRequest,
|
|
50
54
|
ConfigMatchesResponse,
|
|
51
55
|
ConfigRequest,
|
|
@@ -57,6 +61,7 @@ import {
|
|
|
57
61
|
CredentialResponse,
|
|
58
62
|
Criteria,
|
|
59
63
|
DateRangeLocalDate,
|
|
64
|
+
EmailValidationResponse,
|
|
60
65
|
ErrorMessageDto,
|
|
61
66
|
ErrorResponse,
|
|
62
67
|
FiveFieldsBookingInfoRequest,
|
|
@@ -137,10 +142,12 @@ import {
|
|
|
137
142
|
UserLimitsDeleteRequest,
|
|
138
143
|
UserLimitsRequest,
|
|
139
144
|
UserLimitsResponse,
|
|
145
|
+
UsernameAvailabilityResponse,
|
|
140
146
|
UserRequest,
|
|
141
147
|
UserResponse,
|
|
142
148
|
UserRoleResponse,
|
|
143
149
|
UserSearchRequest,
|
|
150
|
+
UserStatus,
|
|
144
151
|
YearMonth,
|
|
145
152
|
} from "./model"
|
|
146
153
|
|
|
@@ -192,6 +199,10 @@ export {
|
|
|
192
199
|
CardTypeSearchRequest,
|
|
193
200
|
CardTypeSpecification,
|
|
194
201
|
CardTypeSpecificationFlag,
|
|
202
|
+
CategoryFundingAccountAccessRequest,
|
|
203
|
+
CategoryLimitResponse,
|
|
204
|
+
CategoryResponse,
|
|
205
|
+
CategoryStatus,
|
|
195
206
|
ConfigMatchesRequest,
|
|
196
207
|
ConfigMatchesResponse,
|
|
197
208
|
ConfigRequest,
|
|
@@ -203,6 +214,7 @@ export {
|
|
|
203
214
|
CredentialResponse,
|
|
204
215
|
Criteria,
|
|
205
216
|
DateRangeLocalDate,
|
|
217
|
+
EmailValidationResponse,
|
|
206
218
|
ErrorMessageDto,
|
|
207
219
|
ErrorResponse,
|
|
208
220
|
FiveFieldsBookingInfoRequest,
|
|
@@ -283,9 +295,11 @@ export {
|
|
|
283
295
|
UserLimitsDeleteRequest,
|
|
284
296
|
UserLimitsRequest,
|
|
285
297
|
UserLimitsResponse,
|
|
298
|
+
UsernameAvailabilityResponse,
|
|
286
299
|
UserRequest,
|
|
287
300
|
UserResponse,
|
|
288
301
|
UserRoleResponse,
|
|
289
302
|
UserSearchRequest,
|
|
303
|
+
UserStatus,
|
|
290
304
|
YearMonth,
|
|
291
305
|
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CategoryFundingAccountAccessRequest } from "./CategoryFundingAccountAccessRequest"
|
|
2
|
+
import { CategoryLimitResponse } from "./CategoryLimitResponse"
|
|
3
|
+
import { CategoryStatus } from "./CategoryStatus"
|
|
4
|
+
|
|
5
|
+
export interface CategoryResponse {
|
|
6
|
+
name: string
|
|
7
|
+
limits: CategoryLimitResponse[]
|
|
8
|
+
status: CategoryStatus
|
|
9
|
+
fundingAccountAccess: CategoryFundingAccountAccessRequest
|
|
10
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type CategoryStatus = "ACTIVE" | "DELETED"
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { DateTime } from "isoly"
|
|
2
|
+
|
|
3
|
+
export interface EmailValidationResponse {
|
|
4
|
+
valid?: boolean
|
|
5
|
+
message?: string
|
|
6
|
+
checkedAt?: DateTime
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export namespace EmailValidationResponse {
|
|
10
|
+
export function is(value: EmailValidationResponse | any): value is EmailValidationResponse {
|
|
11
|
+
return (
|
|
12
|
+
typeof value == "object" &&
|
|
13
|
+
(value.valid == undefined || typeof value.valid == "boolean") &&
|
|
14
|
+
(value.message == undefined || typeof value.message == "string") &&
|
|
15
|
+
(value.checkedAt == undefined || DateTime.is(value.checkedAt))
|
|
16
|
+
)
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { UserLimitsRequest } from "./UserLimitsRequest"
|
|
2
|
+
import { UserStatus } from "./UserStatus"
|
|
2
3
|
|
|
3
4
|
export interface UserChangeRequest {
|
|
4
5
|
firstName: string
|
|
5
6
|
lastName: string
|
|
6
7
|
email: string
|
|
7
8
|
category?: string
|
|
8
|
-
status?:
|
|
9
|
+
status?: UserStatus
|
|
9
10
|
userLimits?: UserLimitsRequest[]
|
|
10
11
|
}
|
|
@@ -7,3 +7,13 @@ export interface UserLimitsRequest {
|
|
|
7
7
|
currency: Currency
|
|
8
8
|
limit?: number
|
|
9
9
|
}
|
|
10
|
+
|
|
11
|
+
export namespace UserLimitsRequest {
|
|
12
|
+
export function is(value: UserLimitsRequest | any): value is UserLimitsRequest {
|
|
13
|
+
return (
|
|
14
|
+
typeof value == "object" &&
|
|
15
|
+
Currency.is(value.currency) &&
|
|
16
|
+
(value.limit == undefined || typeof value.limit == "number")
|
|
17
|
+
)
|
|
18
|
+
}
|
|
19
|
+
}
|
package/model/UserRequest.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { UserLimitsRequest } from "./UserLimitsRequest"
|
|
2
|
+
import { UserStatus } from "./UserStatus"
|
|
2
3
|
|
|
3
4
|
/**
|
|
4
5
|
* The users that we are creating for this organisation. Must include at least one user with an 'Default Admin' role.
|
|
@@ -8,9 +9,28 @@ export interface UserRequest {
|
|
|
8
9
|
password: string
|
|
9
10
|
firstName: string
|
|
10
11
|
lastName: string
|
|
11
|
-
status?:
|
|
12
|
+
status?: UserStatus
|
|
12
13
|
email: string
|
|
13
14
|
userLimits?: UserLimitsRequest[]
|
|
14
15
|
rolesets?: string[]
|
|
15
16
|
category?: string
|
|
16
17
|
}
|
|
18
|
+
|
|
19
|
+
export namespace UserRequest {
|
|
20
|
+
export function is(value: UserRequest | any): value is UserRequest {
|
|
21
|
+
return (
|
|
22
|
+
typeof value == "object" &&
|
|
23
|
+
typeof value.username == "string" &&
|
|
24
|
+
typeof value.password == "string" &&
|
|
25
|
+
typeof value.firstName == "string" &&
|
|
26
|
+
typeof value.lastName == "string" &&
|
|
27
|
+
(value.status == undefined || UserStatus.is(value.status)) &&
|
|
28
|
+
typeof value.email == "string" &&
|
|
29
|
+
(value.userLimits == undefined ||
|
|
30
|
+
(Array.isArray(value.userLimits) && value.userLimits.every((item: any) => UserLimitsRequest.is(item)))) &&
|
|
31
|
+
(value.rolesets == undefined ||
|
|
32
|
+
(Array.isArray(value.rolesets) && value.rolesets.every((item: any) => typeof item == "string"))) &&
|
|
33
|
+
(value.category == undefined || typeof value.category == "string")
|
|
34
|
+
)
|
|
35
|
+
}
|
|
36
|
+
}
|
package/model/UserResponse.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { OrganisationResponse } from "./OrganisationResponse"
|
|
2
2
|
import { TwoFactorAuthenticationDetails } from "./TwoFactorAuthenticationDetails"
|
|
3
3
|
import { UserLimitsResponse } from "./UserLimitsResponse"
|
|
4
|
+
import { UserStatus } from "./UserStatus"
|
|
4
5
|
|
|
5
6
|
/**
|
|
6
7
|
* The users created
|
|
@@ -10,7 +11,7 @@ export interface UserResponse {
|
|
|
10
11
|
firstName: string
|
|
11
12
|
lastName: string
|
|
12
13
|
email: string
|
|
13
|
-
status?:
|
|
14
|
+
status?: UserStatus
|
|
14
15
|
passwordUpdatedOn?: string
|
|
15
16
|
category?: string
|
|
16
17
|
organisation?: OrganisationResponse
|
|
@@ -27,11 +28,7 @@ export namespace UserResponse {
|
|
|
27
28
|
(value.firstName == undefined || typeof value.firstName == "string") &&
|
|
28
29
|
(value.lastName == undefined || typeof value.lastName == "string") &&
|
|
29
30
|
(value.email == undefined || typeof value.email == "string") &&
|
|
30
|
-
(value.status == undefined ||
|
|
31
|
-
value.status == "ACTIVE" ||
|
|
32
|
-
value.status == "INACTIVE" ||
|
|
33
|
-
value.status == "DELETED" ||
|
|
34
|
-
value.status == "PASSWORD_EXPIRED") &&
|
|
31
|
+
(value.status == undefined || UserStatus.is(value.status)) &&
|
|
35
32
|
(value.passwordUpdatedOn == undefined || typeof value.passwordUpdatedOn == "string") &&
|
|
36
33
|
(value.category == undefined || typeof value.category == "string")
|
|
37
34
|
)
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export const userStatus = ["ACTIVE", "INACTIVE", "DELETED", "PASSWORD_EXPIRED"] as const
|
|
2
|
+
|
|
3
|
+
export type UserStatus = typeof userStatus[number]
|
|
4
|
+
|
|
5
|
+
export namespace UserStatus {
|
|
6
|
+
export function is(value: unknown): value is UserStatus {
|
|
7
|
+
return typeof value == "string" && userStatus.includes(value as UserStatus)
|
|
8
|
+
}
|
|
9
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export interface UsernameAvailabilityResponse {
|
|
2
|
+
username?: string
|
|
3
|
+
available?: boolean
|
|
4
|
+
inOwnOrganisation?: boolean
|
|
5
|
+
suggestion?: string
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export namespace UsernameAvailabilityResponse {
|
|
9
|
+
export function is(value: UsernameAvailabilityResponse | any): value is UsernameAvailabilityResponse {
|
|
10
|
+
return (
|
|
11
|
+
typeof value == "object" &&
|
|
12
|
+
(value.username == undefined || typeof value.username == "string") &&
|
|
13
|
+
(value.available == undefined || typeof value.available == "boolean") &&
|
|
14
|
+
(value.inOwnOrganisation == undefined || typeof value.inOwnOrganisation == "boolean") &&
|
|
15
|
+
(value.suggestion == undefined || typeof value.suggestion == "string")
|
|
16
|
+
)
|
|
17
|
+
}
|
|
18
|
+
}
|
package/model/index.ts
CHANGED
|
@@ -44,6 +44,10 @@ import { CardTypesConfig } from "./CardTypesConfig"
|
|
|
44
44
|
import { CardTypeSearchRequest } from "./CardTypeSearchRequest"
|
|
45
45
|
import { CardTypeSpecification } from "./CardTypeSpecification"
|
|
46
46
|
import { CardTypeSpecificationFlag } from "./CardTypeSpecificationFlag"
|
|
47
|
+
import { CategoryFundingAccountAccessRequest } from "./CategoryFundingAccountAccessRequest"
|
|
48
|
+
import { CategoryLimitResponse } from "./CategoryLimitResponse"
|
|
49
|
+
import { CategoryResponse } from "./CategoryResponse"
|
|
50
|
+
import { CategoryStatus } from "./CategoryStatus"
|
|
47
51
|
import { ConfigMatchesRequest } from "./ConfigMatchesRequest"
|
|
48
52
|
import { ConfigMatchesResponse } from "./ConfigMatchesResponse"
|
|
49
53
|
import { ConfigRequest } from "./ConfigRequest"
|
|
@@ -55,6 +59,7 @@ import { CredentialRequest } from "./CredentialRequest"
|
|
|
55
59
|
import { CredentialResponse } from "./CredentialResponse"
|
|
56
60
|
import { Criteria } from "./Criteria"
|
|
57
61
|
import { DateRangeLocalDate } from "./DateRangeLocalDate"
|
|
62
|
+
import { EmailValidationResponse } from "./EmailValidationResponse"
|
|
58
63
|
import { ErrorMessageDto } from "./ErrorMessageDto"
|
|
59
64
|
import { ErrorResponse } from "./ErrorResponse"
|
|
60
65
|
import { FiveFieldsBookingInfoRequest } from "./FiveFieldsBookingInfoRequest"
|
|
@@ -135,10 +140,12 @@ import { UserConfig } from "./UserConfig"
|
|
|
135
140
|
import { UserLimitsDeleteRequest } from "./UserLimitsDeleteRequest"
|
|
136
141
|
import { UserLimitsRequest } from "./UserLimitsRequest"
|
|
137
142
|
import { UserLimitsResponse } from "./UserLimitsResponse"
|
|
143
|
+
import { UsernameAvailabilityResponse } from "./UsernameAvailabilityResponse"
|
|
138
144
|
import { UserRequest } from "./UserRequest"
|
|
139
145
|
import { UserResponse } from "./UserResponse"
|
|
140
146
|
import { UserRoleResponse } from "./UserRoleResponse"
|
|
141
147
|
import { UserSearchRequest } from "./UserSearchRequest"
|
|
148
|
+
import { UserStatus } from "./UserStatus"
|
|
142
149
|
import { YearMonth } from "./YearMonth"
|
|
143
150
|
|
|
144
151
|
export {
|
|
@@ -188,6 +195,10 @@ export {
|
|
|
188
195
|
CardTypeSearchRequest,
|
|
189
196
|
CardTypeSpecification,
|
|
190
197
|
CardTypeSpecificationFlag,
|
|
198
|
+
CategoryFundingAccountAccessRequest,
|
|
199
|
+
CategoryLimitResponse,
|
|
200
|
+
CategoryResponse,
|
|
201
|
+
CategoryStatus,
|
|
191
202
|
ConfigMatchesRequest,
|
|
192
203
|
ConfigMatchesResponse,
|
|
193
204
|
ConfigRequest,
|
|
@@ -199,6 +210,7 @@ export {
|
|
|
199
210
|
CredentialResponse,
|
|
200
211
|
Criteria,
|
|
201
212
|
DateRangeLocalDate,
|
|
213
|
+
EmailValidationResponse,
|
|
202
214
|
ErrorMessageDto,
|
|
203
215
|
ErrorResponse,
|
|
204
216
|
FiveFieldsBookingInfoRequest,
|
|
@@ -279,9 +291,11 @@ export {
|
|
|
279
291
|
UserLimitsDeleteRequest,
|
|
280
292
|
UserLimitsRequest,
|
|
281
293
|
UserLimitsResponse,
|
|
294
|
+
UsernameAvailabilityResponse,
|
|
282
295
|
UserRequest,
|
|
283
296
|
UserResponse,
|
|
284
297
|
UserRoleResponse,
|
|
285
298
|
UserSearchRequest,
|
|
299
|
+
UserStatus,
|
|
286
300
|
YearMonth,
|
|
287
301
|
}
|