@fossa-app/bridge 0.1.17 → 0.1.19
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/package.json +1 -1
- package/dist/Models/ApiModels/EnvelopeModels.d.ts +0 -21
- package/dist/Models/ApiModels/PayloadModels.d.ts +0 -147
- package/dist/Models/ApiModels/SharedModels.d.ts +0 -41
- package/dist/Services/Clients/BranchClient.d.ts +0 -22
- package/dist/Services/Clients/CompanyClient.d.ts +0 -18
- package/dist/Services/Clients/CompanyLicenseClient.d.ts +0 -13
- package/dist/Services/Clients/CompanySettingsClient.d.ts +0 -18
- package/dist/Services/Clients/DepartmentClient.d.ts +0 -22
- package/dist/Services/Clients/EmployeeClient.d.ts +0 -33
- package/dist/Services/Clients/IBranchClient.d.ts +0 -9
- package/dist/Services/Clients/ICompanyClient.d.ts +0 -7
- package/dist/Services/Clients/ICompanyLicenseClient.d.ts +0 -4
- package/dist/Services/Clients/ICompanySettingsClient.d.ts +0 -7
- package/dist/Services/Clients/IDepartmentClient.d.ts +0 -9
- package/dist/Services/Clients/IEmployeeClient.d.ts +0 -14
- package/dist/Services/Clients/IIdentityClient.d.ts +0 -3
- package/dist/Services/Clients/ISystemLicenseClient.d.ts +0 -3
- package/dist/Services/Clients/IdentityClient.d.ts +0 -11
- package/dist/Services/Clients/SystemLicenseClient.d.ts +0 -11
- package/dist/Services/Endpoints.d.ts +0 -10
- package/dist/Services/IHttpTransport.d.ts +0 -7
- package/dist/Services/UrlHelpers.d.ts +0 -25
package/package.json
CHANGED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { Record } from "@fable-org/fable-library-ts/Types.ts";
|
|
2
|
-
import { LicenseTermsModel } from "./SharedModels.ts";
|
|
3
|
-
import { Nullable, IEquatable } from "@fable-org/fable-library-ts/Util.ts";
|
|
4
|
-
import { TypeInfo } from "@fable-org/fable-library-ts/Reflection.ts";
|
|
5
|
-
import { int32 } from "@fable-org/fable-library-ts/Int32.ts";
|
|
6
|
-
import { int64 } from "@fable-org/fable-library-ts/BigInt.ts";
|
|
7
|
-
export declare class LicenseResponseModel$1<TEntitlementsModel> extends Record implements IEquatable<LicenseResponseModel$1<TEntitlementsModel>> {
|
|
8
|
-
readonly Terms: LicenseTermsModel;
|
|
9
|
-
readonly Entitlements: TEntitlementsModel;
|
|
10
|
-
constructor(Terms: LicenseTermsModel, Entitlements: TEntitlementsModel);
|
|
11
|
-
}
|
|
12
|
-
export declare function LicenseResponseModel$1_$reflection(gen0: TypeInfo): TypeInfo;
|
|
13
|
-
export declare class PagingResponseModel$1<T> extends Record implements IEquatable<PagingResponseModel$1<T>> {
|
|
14
|
-
readonly PageNumber: Nullable<int32>;
|
|
15
|
-
readonly PageSize: Nullable<int32>;
|
|
16
|
-
readonly Items: any;
|
|
17
|
-
readonly TotalItems: Nullable<int64>;
|
|
18
|
-
readonly TotalPages: Nullable<int64>;
|
|
19
|
-
constructor(PageNumber: Nullable<int32>, PageSize: Nullable<int32>, Items: any, TotalItems: Nullable<int64>, TotalPages: Nullable<int64>);
|
|
20
|
-
}
|
|
21
|
-
export declare function PagingResponseModel$1_$reflection(gen0: TypeInfo): TypeInfo;
|
|
@@ -1,147 +0,0 @@
|
|
|
1
|
-
import { Record } from "@fable-org/fable-library-ts/Types.ts";
|
|
2
|
-
import { IComparable, IEquatable, Nullable } from "@fable-org/fable-library-ts/Util.ts";
|
|
3
|
-
import { TypeInfo } from "@fable-org/fable-library-ts/Reflection.ts";
|
|
4
|
-
import { AddressModel } from "./SharedModels.ts";
|
|
5
|
-
import { int32 } from "@fable-org/fable-library-ts/Int32.ts";
|
|
6
|
-
import { int64 } from "@fable-org/fable-library-ts/BigInt.ts";
|
|
7
|
-
export declare class IdentityClientRetrievalModel extends Record implements IEquatable<IdentityClientRetrievalModel> {
|
|
8
|
-
readonly ClientId: Nullable<string>;
|
|
9
|
-
readonly ClientName: string;
|
|
10
|
-
readonly TenantId: Nullable<string>;
|
|
11
|
-
constructor(ClientId: Nullable<string>, ClientName: string, TenantId: Nullable<string>);
|
|
12
|
-
}
|
|
13
|
-
export declare function IdentityClientRetrievalModel_$reflection(): TypeInfo;
|
|
14
|
-
export declare class BranchModificationModel extends Record implements IEquatable<BranchModificationModel>, IComparable<BranchModificationModel> {
|
|
15
|
-
readonly Name: string;
|
|
16
|
-
readonly TimeZoneId: string;
|
|
17
|
-
readonly Address: AddressModel;
|
|
18
|
-
constructor(Name: string, TimeZoneId: string, Address: AddressModel);
|
|
19
|
-
}
|
|
20
|
-
export declare function BranchModificationModel_$reflection(): TypeInfo;
|
|
21
|
-
export declare class BranchQueryRequestModel extends Record implements IEquatable<BranchQueryRequestModel> {
|
|
22
|
-
readonly Id: any;
|
|
23
|
-
readonly Search: string;
|
|
24
|
-
readonly PageNumber: Nullable<int32>;
|
|
25
|
-
readonly PageSize: Nullable<int32>;
|
|
26
|
-
constructor(Id: any, Search: string, PageNumber: Nullable<int32>, PageSize: Nullable<int32>);
|
|
27
|
-
}
|
|
28
|
-
export declare function BranchQueryRequestModel_$reflection(): TypeInfo;
|
|
29
|
-
export declare class BranchRetrievalModel extends Record implements IEquatable<BranchRetrievalModel>, IComparable<BranchRetrievalModel> {
|
|
30
|
-
readonly Id: int64;
|
|
31
|
-
readonly CompanyId: int64;
|
|
32
|
-
readonly Name: string;
|
|
33
|
-
readonly TimeZoneId: string;
|
|
34
|
-
readonly Address: AddressModel;
|
|
35
|
-
constructor(Id: int64, CompanyId: int64, Name: string, TimeZoneId: string, Address: AddressModel);
|
|
36
|
-
}
|
|
37
|
-
export declare function BranchRetrievalModel_$reflection(): TypeInfo;
|
|
38
|
-
export declare class CompanyEntitlementsModel extends Record implements IEquatable<CompanyEntitlementsModel>, IComparable<CompanyEntitlementsModel> {
|
|
39
|
-
readonly CompanyId: int64;
|
|
40
|
-
readonly MaximumBranchCount: int32;
|
|
41
|
-
readonly MaximumEmployeeCount: int32;
|
|
42
|
-
readonly MaximumDepartmentCount: int32;
|
|
43
|
-
constructor(CompanyId: int64, MaximumBranchCount: int32, MaximumEmployeeCount: int32, MaximumDepartmentCount: int32);
|
|
44
|
-
}
|
|
45
|
-
export declare function CompanyEntitlementsModel_$reflection(): TypeInfo;
|
|
46
|
-
export declare class CompanyModificationModel extends Record implements IEquatable<CompanyModificationModel>, IComparable<CompanyModificationModel> {
|
|
47
|
-
readonly Name: string;
|
|
48
|
-
readonly CountryCode: string;
|
|
49
|
-
constructor(Name: string, CountryCode: string);
|
|
50
|
-
}
|
|
51
|
-
export declare function CompanyModificationModel_$reflection(): TypeInfo;
|
|
52
|
-
export declare class CompanyRetrievalModel extends Record implements IEquatable<CompanyRetrievalModel>, IComparable<CompanyRetrievalModel> {
|
|
53
|
-
readonly Id: int64;
|
|
54
|
-
readonly Name: string;
|
|
55
|
-
readonly CountryCode: string;
|
|
56
|
-
constructor(Id: int64, Name: string, CountryCode: string);
|
|
57
|
-
}
|
|
58
|
-
export declare function CompanyRetrievalModel_$reflection(): TypeInfo;
|
|
59
|
-
export declare class CompanySettingsModificationModel extends Record implements IEquatable<CompanySettingsModificationModel>, IComparable<CompanySettingsModificationModel> {
|
|
60
|
-
readonly ColorSchemeId: string;
|
|
61
|
-
constructor(ColorSchemeId: string);
|
|
62
|
-
}
|
|
63
|
-
export declare function CompanySettingsModificationModel_$reflection(): TypeInfo;
|
|
64
|
-
export declare class CompanySettingsRetrievalModel extends Record implements IEquatable<CompanySettingsRetrievalModel>, IComparable<CompanySettingsRetrievalModel> {
|
|
65
|
-
readonly Id: int64;
|
|
66
|
-
readonly CompanyId: int64;
|
|
67
|
-
readonly ColorSchemeId: string;
|
|
68
|
-
constructor(Id: int64, CompanyId: int64, ColorSchemeId: string);
|
|
69
|
-
}
|
|
70
|
-
export declare function CompanySettingsRetrievalModel_$reflection(): TypeInfo;
|
|
71
|
-
export declare class DepartmentModificationModel extends Record implements IEquatable<DepartmentModificationModel> {
|
|
72
|
-
readonly Name: string;
|
|
73
|
-
readonly ParentDepartmentId: Nullable<int64>;
|
|
74
|
-
readonly ManagerId: Nullable<int64>;
|
|
75
|
-
constructor(Name: string, ParentDepartmentId: Nullable<int64>, ManagerId: Nullable<int64>);
|
|
76
|
-
}
|
|
77
|
-
export declare function DepartmentModificationModel_$reflection(): TypeInfo;
|
|
78
|
-
export declare class DepartmentQueryRequestModel extends Record implements IEquatable<DepartmentQueryRequestModel> {
|
|
79
|
-
readonly Id: any;
|
|
80
|
-
readonly Search: string;
|
|
81
|
-
readonly PageNumber: Nullable<int32>;
|
|
82
|
-
readonly PageSize: Nullable<int32>;
|
|
83
|
-
constructor(Id: any, Search: string, PageNumber: Nullable<int32>, PageSize: Nullable<int32>);
|
|
84
|
-
}
|
|
85
|
-
export declare function DepartmentQueryRequestModel_$reflection(): TypeInfo;
|
|
86
|
-
export declare class DepartmentRetrievalModel extends Record implements IEquatable<DepartmentRetrievalModel> {
|
|
87
|
-
readonly Id: int64;
|
|
88
|
-
readonly Name: string;
|
|
89
|
-
readonly ParentDepartmentId: Nullable<int64>;
|
|
90
|
-
readonly ManagerId: Nullable<int64>;
|
|
91
|
-
constructor(Id: int64, Name: string, ParentDepartmentId: Nullable<int64>, ManagerId: Nullable<int64>);
|
|
92
|
-
}
|
|
93
|
-
export declare function DepartmentRetrievalModel_$reflection(): TypeInfo;
|
|
94
|
-
export declare class EmployeeManagementModel extends Record implements IEquatable<EmployeeManagementModel> {
|
|
95
|
-
readonly AssignedBranchId: Nullable<int64>;
|
|
96
|
-
readonly AssignedDepartmentId: Nullable<int64>;
|
|
97
|
-
readonly ReportsToId: Nullable<int64>;
|
|
98
|
-
readonly JobTitle: string;
|
|
99
|
-
constructor(AssignedBranchId: Nullable<int64>, AssignedDepartmentId: Nullable<int64>, ReportsToId: Nullable<int64>, JobTitle: string);
|
|
100
|
-
}
|
|
101
|
-
export declare function EmployeeManagementModel_$reflection(): TypeInfo;
|
|
102
|
-
export declare class EmployeeModificationModel extends Record implements IEquatable<EmployeeModificationModel>, IComparable<EmployeeModificationModel> {
|
|
103
|
-
readonly FirstName: string;
|
|
104
|
-
readonly LastName: string;
|
|
105
|
-
readonly FullName: string;
|
|
106
|
-
constructor(FirstName: string, LastName: string, FullName: string);
|
|
107
|
-
}
|
|
108
|
-
export declare function EmployeeModificationModel_$reflection(): TypeInfo;
|
|
109
|
-
export declare class EmployeePagingRequestModel extends Record implements IEquatable<EmployeePagingRequestModel> {
|
|
110
|
-
readonly Search: string;
|
|
111
|
-
readonly PageNumber: Nullable<int32>;
|
|
112
|
-
readonly PageSize: Nullable<int32>;
|
|
113
|
-
constructor(Search: string, PageNumber: Nullable<int32>, PageSize: Nullable<int32>);
|
|
114
|
-
}
|
|
115
|
-
export declare function EmployeePagingRequestModel_$reflection(): TypeInfo;
|
|
116
|
-
export declare class EmployeeQueryRequestModel extends Record implements IEquatable<EmployeeQueryRequestModel> {
|
|
117
|
-
readonly Id: any;
|
|
118
|
-
readonly Search: string;
|
|
119
|
-
readonly PageNumber: Nullable<int32>;
|
|
120
|
-
readonly PageSize: Nullable<int32>;
|
|
121
|
-
readonly ReportsToId: Nullable<int64>;
|
|
122
|
-
readonly TopLevelOnly: Nullable<boolean>;
|
|
123
|
-
constructor(Id: any, Search: string, PageNumber: Nullable<int32>, PageSize: Nullable<int32>, ReportsToId: Nullable<int64>, TopLevelOnly: Nullable<boolean>);
|
|
124
|
-
}
|
|
125
|
-
export declare function EmployeeQueryRequestModel_$reflection(): TypeInfo;
|
|
126
|
-
export declare class EmployeeRetrievalModel extends Record implements IEquatable<EmployeeRetrievalModel> {
|
|
127
|
-
readonly Id: int64;
|
|
128
|
-
readonly CompanyId: int64;
|
|
129
|
-
readonly AssignedBranchId: Nullable<int64>;
|
|
130
|
-
readonly AssignedDepartmentId: Nullable<int64>;
|
|
131
|
-
readonly ReportsToId: Nullable<int64>;
|
|
132
|
-
readonly JobTitle: string;
|
|
133
|
-
readonly FirstName: string;
|
|
134
|
-
readonly LastName: string;
|
|
135
|
-
readonly FullName: string;
|
|
136
|
-
constructor(Id: int64, CompanyId: int64, AssignedBranchId: Nullable<int64>, AssignedDepartmentId: Nullable<int64>, ReportsToId: Nullable<int64>, JobTitle: string, FirstName: string, LastName: string, FullName: string);
|
|
137
|
-
}
|
|
138
|
-
export declare function EmployeeRetrievalModel_$reflection(): TypeInfo;
|
|
139
|
-
export declare class SystemEntitlementsModel extends Record implements IEquatable<SystemEntitlementsModel> {
|
|
140
|
-
readonly EnvironmentName: string;
|
|
141
|
-
readonly EnvironmentKind: string;
|
|
142
|
-
readonly Countries: any;
|
|
143
|
-
readonly TimeZones: any;
|
|
144
|
-
readonly MaximumCompanyCount: int32;
|
|
145
|
-
constructor(EnvironmentName: string, EnvironmentKind: string, Countries: any, TimeZones: any, MaximumCompanyCount: int32);
|
|
146
|
-
}
|
|
147
|
-
export declare function SystemEntitlementsModel_$reflection(): TypeInfo;
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import { Record } from "@fable-org/fable-library-ts/Types.ts";
|
|
2
|
-
import { Nullable, IComparable, IEquatable } from "@fable-org/fable-library-ts/Util.ts";
|
|
3
|
-
import { TypeInfo } from "@fable-org/fable-library-ts/Reflection.ts";
|
|
4
|
-
export declare class AddressModel extends Record implements IEquatable<AddressModel>, IComparable<AddressModel> {
|
|
5
|
-
readonly Line1: string;
|
|
6
|
-
readonly Line2: string;
|
|
7
|
-
readonly City: string;
|
|
8
|
-
readonly Subdivision: string;
|
|
9
|
-
readonly PostalCode: string;
|
|
10
|
-
readonly CountryCode: string;
|
|
11
|
-
constructor(Line1: string, Line2: string, City: string, Subdivision: string, PostalCode: string, CountryCode: string);
|
|
12
|
-
}
|
|
13
|
-
export declare function AddressModel_$reflection(): TypeInfo;
|
|
14
|
-
export declare class CountryModel extends Record implements IEquatable<CountryModel>, IComparable<CountryModel> {
|
|
15
|
-
readonly Name: string;
|
|
16
|
-
readonly Code: string;
|
|
17
|
-
constructor(Name: string, Code: string);
|
|
18
|
-
}
|
|
19
|
-
export declare function CountryModel_$reflection(): TypeInfo;
|
|
20
|
-
export declare class TimeZoneModel extends Record implements IEquatable<TimeZoneModel> {
|
|
21
|
-
readonly Id: string;
|
|
22
|
-
readonly Name: string;
|
|
23
|
-
readonly CountryCode: string;
|
|
24
|
-
readonly CurrentOffset: Nullable<number>;
|
|
25
|
-
constructor(Id: string, Name: string, CountryCode: string, CurrentOffset: Nullable<number>);
|
|
26
|
-
}
|
|
27
|
-
export declare function TimeZoneModel_$reflection(): TypeInfo;
|
|
28
|
-
export declare class PartyModel extends Record implements IEquatable<PartyModel>, IComparable<PartyModel> {
|
|
29
|
-
readonly LongName: string;
|
|
30
|
-
readonly ShortName: string;
|
|
31
|
-
constructor(LongName: string, ShortName: string);
|
|
32
|
-
}
|
|
33
|
-
export declare function PartyModel_$reflection(): TypeInfo;
|
|
34
|
-
export declare class LicenseTermsModel extends Record implements IEquatable<LicenseTermsModel> {
|
|
35
|
-
readonly Licensor: PartyModel;
|
|
36
|
-
readonly Licensee: PartyModel;
|
|
37
|
-
readonly NotBefore: Nullable<Date>;
|
|
38
|
-
readonly NotAfter: Nullable<Date>;
|
|
39
|
-
constructor(Licensor: PartyModel, Licensee: PartyModel, NotBefore: Nullable<Date>, NotAfter: Nullable<Date>);
|
|
40
|
-
}
|
|
41
|
-
export declare function LicenseTermsModel_$reflection(): TypeInfo;
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { BranchModificationModel, BranchQueryRequestModel } from "../../Models/ApiModels/PayloadModels.ts";
|
|
2
|
-
import { int64 } from "@fable-org/fable-library-ts/BigInt.ts";
|
|
3
|
-
import { IHttpTransport } from "../IHttpTransport.ts";
|
|
4
|
-
import { IBranchClient } from "./IBranchClient.ts";
|
|
5
|
-
import { TypeInfo } from "@fable-org/fable-library-ts/Reflection.ts";
|
|
6
|
-
export declare class BranchClient implements IBranchClient {
|
|
7
|
-
readonly transport: IHttpTransport;
|
|
8
|
-
constructor(transport: IHttpTransport);
|
|
9
|
-
GetBranchesAsync(query: BranchQueryRequestModel, cancellationToken: any): any;
|
|
10
|
-
GetBranchAsync(id: int64, cancellationToken: any): any;
|
|
11
|
-
CreateBranchAsync(model: BranchModificationModel, cancellationToken: any): any;
|
|
12
|
-
UpdateBranchAsync(id: int64, model: BranchModificationModel, cancellationToken: any): any;
|
|
13
|
-
DeleteBranchAsync(id: int64, cancellationToken: any): any;
|
|
14
|
-
}
|
|
15
|
-
export declare function BranchClient_$reflection(): TypeInfo;
|
|
16
|
-
export declare function BranchClient_$ctor_Z7C557C0(transport: IHttpTransport): BranchClient;
|
|
17
|
-
export declare function BranchClient__GetBranchesAsync_19A32868(_: BranchClient, query: BranchQueryRequestModel, cancellationToken: any): any;
|
|
18
|
-
export declare function BranchClient__GetBranchAsync_Z446FC023(_: BranchClient, id: int64, cancellationToken: any): any;
|
|
19
|
-
export declare function BranchClient__CreateBranchAsync_Z656583D3(_: BranchClient, model: BranchModificationModel, cancellationToken: any): any;
|
|
20
|
-
export declare function BranchClient__UpdateBranchAsync_118B55D2(_: BranchClient, id: int64, model: BranchModificationModel, cancellationToken: any): any;
|
|
21
|
-
export declare function BranchClient__DeleteBranchAsync_Z446FC023(_: BranchClient, id: int64, cancellationToken: any): any;
|
|
22
|
-
export declare function BranchClient__buildUrl_Z113C1396(this$: BranchClient, queryParams: BranchQueryRequestModel): string;
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { CompanyModificationModel } from "../../Models/ApiModels/PayloadModels.ts";
|
|
2
|
-
import { IHttpTransport } from "../IHttpTransport.ts";
|
|
3
|
-
import { ICompanyClient } from "./ICompanyClient.ts";
|
|
4
|
-
import { TypeInfo } from "@fable-org/fable-library-ts/Reflection.ts";
|
|
5
|
-
export declare class CompanyClient implements ICompanyClient {
|
|
6
|
-
readonly transport: IHttpTransport;
|
|
7
|
-
constructor(transport: IHttpTransport);
|
|
8
|
-
GetCompanyAsync(cancellationToken: any): any;
|
|
9
|
-
CreateCompanyAsync(model: CompanyModificationModel, cancellationToken: any): any;
|
|
10
|
-
UpdateCompanyAsync(model: CompanyModificationModel, cancellationToken: any): any;
|
|
11
|
-
DeleteCompanyAsync(cancellationToken: any): any;
|
|
12
|
-
}
|
|
13
|
-
export declare function CompanyClient_$reflection(): TypeInfo;
|
|
14
|
-
export declare function CompanyClient_$ctor_Z7C557C0(transport: IHttpTransport): CompanyClient;
|
|
15
|
-
export declare function CompanyClient__GetCompanyAsync_Z211DAE3E(_: CompanyClient, cancellationToken: any): any;
|
|
16
|
-
export declare function CompanyClient__CreateCompanyAsync_Z38C56082(_: CompanyClient, model: CompanyModificationModel, cancellationToken: any): any;
|
|
17
|
-
export declare function CompanyClient__UpdateCompanyAsync_Z38C56082(_: CompanyClient, model: CompanyModificationModel, cancellationToken: any): any;
|
|
18
|
-
export declare function CompanyClient__DeleteCompanyAsync_Z211DAE3E(_: CompanyClient, cancellationToken: any): any;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { IHttpTransport } from "../IHttpTransport.ts";
|
|
2
|
-
import { ICompanyLicenseClient } from "./ICompanyLicenseClient.ts";
|
|
3
|
-
import { TypeInfo } from "@fable-org/fable-library-ts/Reflection.ts";
|
|
4
|
-
export declare class CompanyLicenseClient implements ICompanyLicenseClient {
|
|
5
|
-
readonly transport: IHttpTransport;
|
|
6
|
-
constructor(transport: IHttpTransport);
|
|
7
|
-
GetLicenseAsync(cancellationToken: any): any;
|
|
8
|
-
CreateLicenseAsync(model: string, cancellationToken: any): any;
|
|
9
|
-
}
|
|
10
|
-
export declare function CompanyLicenseClient_$reflection(): TypeInfo;
|
|
11
|
-
export declare function CompanyLicenseClient_$ctor_Z7C557C0(transport: IHttpTransport): CompanyLicenseClient;
|
|
12
|
-
export declare function CompanyLicenseClient__GetLicenseAsync_Z211DAE3E(_: CompanyLicenseClient, cancellationToken: any): any;
|
|
13
|
-
export declare function CompanyLicenseClient__CreateLicenseAsync_Z6B4EADA7(_: CompanyLicenseClient, model: string, cancellationToken: any): any;
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { CompanySettingsModificationModel } from "../../Models/ApiModels/PayloadModels.ts";
|
|
2
|
-
import { IHttpTransport } from "../IHttpTransport.ts";
|
|
3
|
-
import { ICompanySettingsClient } from "./ICompanySettingsClient.ts";
|
|
4
|
-
import { TypeInfo } from "@fable-org/fable-library-ts/Reflection.ts";
|
|
5
|
-
export declare class CompanySettingsClient implements ICompanySettingsClient {
|
|
6
|
-
readonly transport: IHttpTransport;
|
|
7
|
-
constructor(transport: IHttpTransport);
|
|
8
|
-
GetCompanySettingsAsync(cancellationToken: any): any;
|
|
9
|
-
CreateCompanySettingsAsync(model: CompanySettingsModificationModel, cancellationToken: any): any;
|
|
10
|
-
UpdateCompanySettingsAsync(model: CompanySettingsModificationModel, cancellationToken: any): any;
|
|
11
|
-
DeleteCompanySettingsAsync(cancellationToken: any): any;
|
|
12
|
-
}
|
|
13
|
-
export declare function CompanySettingsClient_$reflection(): TypeInfo;
|
|
14
|
-
export declare function CompanySettingsClient_$ctor_Z7C557C0(transport: IHttpTransport): CompanySettingsClient;
|
|
15
|
-
export declare function CompanySettingsClient__GetCompanySettingsAsync_Z211DAE3E(_: CompanySettingsClient, cancellationToken: any): any;
|
|
16
|
-
export declare function CompanySettingsClient__CreateCompanySettingsAsync_158F9BFB(_: CompanySettingsClient, model: CompanySettingsModificationModel, cancellationToken: any): any;
|
|
17
|
-
export declare function CompanySettingsClient__UpdateCompanySettingsAsync_158F9BFB(_: CompanySettingsClient, model: CompanySettingsModificationModel, cancellationToken: any): any;
|
|
18
|
-
export declare function CompanySettingsClient__DeleteCompanySettingsAsync_Z211DAE3E(_: CompanySettingsClient, cancellationToken: any): any;
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { DepartmentModificationModel, DepartmentQueryRequestModel } from "../../Models/ApiModels/PayloadModels.ts";
|
|
2
|
-
import { int64 } from "@fable-org/fable-library-ts/BigInt.ts";
|
|
3
|
-
import { IHttpTransport } from "../IHttpTransport.ts";
|
|
4
|
-
import { IDepartmentClient } from "./IDepartmentClient.ts";
|
|
5
|
-
import { TypeInfo } from "@fable-org/fable-library-ts/Reflection.ts";
|
|
6
|
-
export declare class DepartmentClient implements IDepartmentClient {
|
|
7
|
-
readonly transport: IHttpTransport;
|
|
8
|
-
constructor(transport: IHttpTransport);
|
|
9
|
-
GetDepartmentsAsync(query: DepartmentQueryRequestModel, cancellationToken: any): any;
|
|
10
|
-
GetDepartmentAsync(id: int64, cancellationToken: any): any;
|
|
11
|
-
CreateDepartmentAsync(model: DepartmentModificationModel, cancellationToken: any): any;
|
|
12
|
-
UpdateDepartmentAsync(id: int64, model: DepartmentModificationModel, cancellationToken: any): any;
|
|
13
|
-
DeleteDepartmentAsync(id: int64, cancellationToken: any): any;
|
|
14
|
-
}
|
|
15
|
-
export declare function DepartmentClient_$reflection(): TypeInfo;
|
|
16
|
-
export declare function DepartmentClient_$ctor_Z7C557C0(transport: IHttpTransport): DepartmentClient;
|
|
17
|
-
export declare function DepartmentClient__GetDepartmentsAsync_Z2848A3A8(_: DepartmentClient, query: DepartmentQueryRequestModel, cancellationToken: any): any;
|
|
18
|
-
export declare function DepartmentClient__GetDepartmentAsync_Z446FC023(_: DepartmentClient, id: int64, cancellationToken: any): any;
|
|
19
|
-
export declare function DepartmentClient__CreateDepartmentAsync_62951BDD(_: DepartmentClient, model: DepartmentModificationModel, cancellationToken: any): any;
|
|
20
|
-
export declare function DepartmentClient__UpdateDepartmentAsync_5770A1E2(_: DepartmentClient, id: int64, model: DepartmentModificationModel, cancellationToken: any): any;
|
|
21
|
-
export declare function DepartmentClient__DeleteDepartmentAsync_Z446FC023(_: DepartmentClient, id: int64, cancellationToken: any): any;
|
|
22
|
-
export declare function DepartmentClient__buildUrl_Z2E433DA6(this$: DepartmentClient, queryParams: DepartmentQueryRequestModel): string;
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import { EmployeeManagementModel, EmployeeModificationModel, EmployeePagingRequestModel, EmployeeQueryRequestModel } from "../../Models/ApiModels/PayloadModels.ts";
|
|
2
|
-
import { int64 } from "@fable-org/fable-library-ts/BigInt.ts";
|
|
3
|
-
import { IHttpTransport } from "../IHttpTransport.ts";
|
|
4
|
-
import { IEmployeeClient } from "./IEmployeeClient.ts";
|
|
5
|
-
import { TypeInfo } from "@fable-org/fable-library-ts/Reflection.ts";
|
|
6
|
-
export declare class EmployeeClient implements IEmployeeClient {
|
|
7
|
-
readonly transport: IHttpTransport;
|
|
8
|
-
constructor(transport: IHttpTransport);
|
|
9
|
-
GetEmployeesAsync(query: EmployeeQueryRequestModel, cancellationToken: any): any;
|
|
10
|
-
GetEmployeesPagingAsync(query: EmployeePagingRequestModel, cancellationToken: any): any;
|
|
11
|
-
GetEmployeeAsync(id: int64, cancellationToken: any): any;
|
|
12
|
-
GetCurrentEmployeeAsync(cancellationToken: any): any;
|
|
13
|
-
CreateEmployeeAsync(model: EmployeeModificationModel, cancellationToken: any): any;
|
|
14
|
-
UpdateEmployeeAsync(id: int64, model: EmployeeModificationModel, cancellationToken: any): any;
|
|
15
|
-
UpdateCurrentEmployeeAsync(model: EmployeeModificationModel, cancellationToken: any): any;
|
|
16
|
-
ManageEmployeeAsync(id: int64, model: EmployeeManagementModel, cancellationToken: any): any;
|
|
17
|
-
DeleteEmployeeAsync(id: int64, cancellationToken: any): any;
|
|
18
|
-
DeleteCurrentEmployeeAsync(cancellationToken: any): any;
|
|
19
|
-
}
|
|
20
|
-
export declare function EmployeeClient_$reflection(): TypeInfo;
|
|
21
|
-
export declare function EmployeeClient_$ctor_Z7C557C0(transport: IHttpTransport): EmployeeClient;
|
|
22
|
-
export declare function EmployeeClient__GetEmployeesAsync_5DA070DE(_: EmployeeClient, query: EmployeeQueryRequestModel, cancellationToken: any): any;
|
|
23
|
-
export declare function EmployeeClient__GetEmployeesPagingAsync_Z11CE29DE(_: EmployeeClient, query: EmployeePagingRequestModel, cancellationToken: any): any;
|
|
24
|
-
export declare function EmployeeClient__GetEmployeeAsync_Z446FC023(_: EmployeeClient, id: int64, cancellationToken: any): any;
|
|
25
|
-
export declare function EmployeeClient__GetCurrentEmployeeAsync_Z211DAE3E(_: EmployeeClient, cancellationToken: any): any;
|
|
26
|
-
export declare function EmployeeClient__CreateEmployeeAsync_26ADFE5B(_: EmployeeClient, model: EmployeeModificationModel, cancellationToken: any): any;
|
|
27
|
-
export declare function EmployeeClient__UpdateEmployeeAsync_Z4FFE351C(_: EmployeeClient, id: int64, model: EmployeeModificationModel, cancellationToken: any): any;
|
|
28
|
-
export declare function EmployeeClient__UpdateCurrentEmployeeAsync_26ADFE5B(_: EmployeeClient, model: EmployeeModificationModel, cancellationToken: any): any;
|
|
29
|
-
export declare function EmployeeClient__ManageEmployeeAsync_Z59544D17(_: EmployeeClient, id: int64, model: EmployeeManagementModel, cancellationToken: any): any;
|
|
30
|
-
export declare function EmployeeClient__DeleteEmployeeAsync_Z446FC023(_: EmployeeClient, id: int64, cancellationToken: any): any;
|
|
31
|
-
export declare function EmployeeClient__DeleteCurrentEmployeeAsync_Z211DAE3E(_: EmployeeClient, cancellationToken: any): any;
|
|
32
|
-
export declare function EmployeeClient__buildUrl_Z134B9264(this$: EmployeeClient, queryParams: EmployeeQueryRequestModel): string;
|
|
33
|
-
export declare function EmployeeClient__buildPagingUrl_5E920BE0(this$: EmployeeClient, queryParams: EmployeePagingRequestModel): string;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { BranchQueryRequestModel, BranchModificationModel } from "../../Models/ApiModels/PayloadModels.ts";
|
|
2
|
-
import { int64 } from "@fable-org/fable-library-ts/BigInt.ts";
|
|
3
|
-
export interface IBranchClient {
|
|
4
|
-
CreateBranchAsync(model: BranchModificationModel, cancellationToken: any): any;
|
|
5
|
-
DeleteBranchAsync(id: int64, cancellationToken: any): any;
|
|
6
|
-
GetBranchAsync(id: int64, cancellationToken: any): any;
|
|
7
|
-
GetBranchesAsync(query: BranchQueryRequestModel, cancellationToken: any): any;
|
|
8
|
-
UpdateBranchAsync(id: int64, model: BranchModificationModel, cancellationToken: any): any;
|
|
9
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { CompanyModificationModel } from "../../Models/ApiModels/PayloadModels.ts";
|
|
2
|
-
export interface ICompanyClient {
|
|
3
|
-
CreateCompanyAsync(model: CompanyModificationModel, cancellationToken: any): any;
|
|
4
|
-
DeleteCompanyAsync(cancellationToken: any): any;
|
|
5
|
-
GetCompanyAsync(cancellationToken: any): any;
|
|
6
|
-
UpdateCompanyAsync(model: CompanyModificationModel, cancellationToken: any): any;
|
|
7
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { CompanySettingsModificationModel } from "../../Models/ApiModels/PayloadModels.ts";
|
|
2
|
-
export interface ICompanySettingsClient {
|
|
3
|
-
CreateCompanySettingsAsync(model: CompanySettingsModificationModel, cancellationToken: any): any;
|
|
4
|
-
DeleteCompanySettingsAsync(cancellationToken: any): any;
|
|
5
|
-
GetCompanySettingsAsync(cancellationToken: any): any;
|
|
6
|
-
UpdateCompanySettingsAsync(model: CompanySettingsModificationModel, cancellationToken: any): any;
|
|
7
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { DepartmentQueryRequestModel, DepartmentModificationModel } from "../../Models/ApiModels/PayloadModels.ts";
|
|
2
|
-
import { int64 } from "@fable-org/fable-library-ts/BigInt.ts";
|
|
3
|
-
export interface IDepartmentClient {
|
|
4
|
-
CreateDepartmentAsync(model: DepartmentModificationModel, cancellationToken: any): any;
|
|
5
|
-
DeleteDepartmentAsync(id: int64, cancellationToken: any): any;
|
|
6
|
-
GetDepartmentAsync(id: int64, cancellationToken: any): any;
|
|
7
|
-
GetDepartmentsAsync(query: DepartmentQueryRequestModel, cancellationToken: any): any;
|
|
8
|
-
UpdateDepartmentAsync(id: int64, model: DepartmentModificationModel, cancellationToken: any): any;
|
|
9
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { EmployeeManagementModel, EmployeePagingRequestModel, EmployeeQueryRequestModel, EmployeeModificationModel } from "../../Models/ApiModels/PayloadModels.ts";
|
|
2
|
-
import { int64 } from "@fable-org/fable-library-ts/BigInt.ts";
|
|
3
|
-
export interface IEmployeeClient {
|
|
4
|
-
CreateEmployeeAsync(model: EmployeeModificationModel, cancellationToken: any): any;
|
|
5
|
-
DeleteCurrentEmployeeAsync(cancellationToken: any): any;
|
|
6
|
-
DeleteEmployeeAsync(id: int64, cancellationToken: any): any;
|
|
7
|
-
GetCurrentEmployeeAsync(cancellationToken: any): any;
|
|
8
|
-
GetEmployeeAsync(id: int64, cancellationToken: any): any;
|
|
9
|
-
GetEmployeesAsync(query: EmployeeQueryRequestModel, cancellationToken: any): any;
|
|
10
|
-
GetEmployeesPagingAsync(query: EmployeePagingRequestModel, cancellationToken: any): any;
|
|
11
|
-
ManageEmployeeAsync(id: int64, model: EmployeeManagementModel, cancellationToken: any): any;
|
|
12
|
-
UpdateCurrentEmployeeAsync(model: EmployeeModificationModel, cancellationToken: any): any;
|
|
13
|
-
UpdateEmployeeAsync(id: int64, model: EmployeeModificationModel, cancellationToken: any): any;
|
|
14
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { IHttpTransport } from "../IHttpTransport.ts";
|
|
2
|
-
import { IIdentityClient } from "./IIdentityClient.ts";
|
|
3
|
-
import { TypeInfo } from "@fable-org/fable-library-ts/Reflection.ts";
|
|
4
|
-
export declare class IdentityClient implements IIdentityClient {
|
|
5
|
-
readonly transport: IHttpTransport;
|
|
6
|
-
constructor(transport: IHttpTransport);
|
|
7
|
-
GetClientAsync(origin: string, cancellationToken: any): any;
|
|
8
|
-
}
|
|
9
|
-
export declare function IdentityClient_$reflection(): TypeInfo;
|
|
10
|
-
export declare function IdentityClient_$ctor_Z7C557C0(transport: IHttpTransport): IdentityClient;
|
|
11
|
-
export declare function IdentityClient__GetClientAsync_Z6B4EADA7(_: IdentityClient, origin: string, cancellationToken: any): any;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { IHttpTransport } from "../IHttpTransport.ts";
|
|
2
|
-
import { ISystemLicenseClient } from "./ISystemLicenseClient.ts";
|
|
3
|
-
import { TypeInfo } from "@fable-org/fable-library-ts/Reflection.ts";
|
|
4
|
-
export declare class SystemLicenseClient implements ISystemLicenseClient {
|
|
5
|
-
readonly transport: IHttpTransport;
|
|
6
|
-
constructor(transport: IHttpTransport);
|
|
7
|
-
GetLicenseAsync(cancellationToken: any): any;
|
|
8
|
-
}
|
|
9
|
-
export declare function SystemLicenseClient_$reflection(): TypeInfo;
|
|
10
|
-
export declare function SystemLicenseClient_$ctor_Z7C557C0(transport: IHttpTransport): SystemLicenseClient;
|
|
11
|
-
export declare function SystemLicenseClient__GetLicenseAsync_Z211DAE3E(_: SystemLicenseClient, cancellationToken: any): any;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export declare const BasePath = "api/1.0";
|
|
2
|
-
export declare const Client = "Identity/Client";
|
|
3
|
-
export declare const SystemLicense = "License/System";
|
|
4
|
-
export declare const CompanyLicense = "License/Company";
|
|
5
|
-
export declare const Company = "Company";
|
|
6
|
-
export declare const CompanySettings = "CompanySettings";
|
|
7
|
-
export declare const Branches = "Branches";
|
|
8
|
-
export declare const Departments = "Departments";
|
|
9
|
-
export declare const Employee = "Employee";
|
|
10
|
-
export declare const Employees = "Employees";
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
export interface IHttpTransport {
|
|
2
|
-
DeleteAsync(requestUri: string, cancellationToken: any): any;
|
|
3
|
-
GetAsync<TResponse>(requestUri: string, cancellationToken: any): any;
|
|
4
|
-
PatchAsync<TRequest>(requestUri: string, request: TRequest, cancellationToken: any): any;
|
|
5
|
-
PostAsync<TRequest>(requestUri: string, request: TRequest, cancellationToken: any): any;
|
|
6
|
-
PutAsync<TRequest>(requestUri: string, request: TRequest, cancellationToken: any): any;
|
|
7
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { FSharpList } from "@fable-org/fable-library-ts/List.ts";
|
|
2
|
-
import { FSharpChoice$2_$union } from "@fable-org/fable-library-ts/Choice.ts";
|
|
3
|
-
import { TypeInfo } from "@fable-org/fable-library-ts/Reflection.ts";
|
|
4
|
-
import { float64, int32 } from "@fable-org/fable-library-ts/Int32.ts";
|
|
5
|
-
import { int64 } from "@fable-org/fable-library-ts/BigInt.ts";
|
|
6
|
-
import { decimal } from "@fable-org/fable-library-ts/Decimal.ts";
|
|
7
|
-
export declare function getBackendOrigin(frontendOrigin: string): string;
|
|
8
|
-
export declare class UrlPart {
|
|
9
|
-
readonly value: FSharpChoice$2_$union<string, any>;
|
|
10
|
-
constructor(value: FSharpChoice$2_$union<string, any>);
|
|
11
|
-
}
|
|
12
|
-
export declare function UrlPart_$reflection(): TypeInfo;
|
|
13
|
-
export declare function UrlPart_$ctor_Z19415666(value: FSharpChoice$2_$union<string, any>): UrlPart;
|
|
14
|
-
export declare function UrlPart__get_Value(_: UrlPart): FSharpChoice$2_$union<string, any>;
|
|
15
|
-
export declare function UrlPart_op_Implicit_Z721C83C5(s: string): UrlPart;
|
|
16
|
-
export declare function UrlPart_op_Implicit_Z6CAC3EAA(f: any): UrlPart;
|
|
17
|
-
export declare function UrlPart_op_Implicit_Z1FBCCD16(b: boolean): UrlPart;
|
|
18
|
-
export declare function UrlPart_op_Implicit_Z524259A4(i: int32): UrlPart;
|
|
19
|
-
export declare function UrlPart_op_Implicit_Z524259C1(i: int64): UrlPart;
|
|
20
|
-
export declare function UrlPart_op_Implicit_5E38073B(f: float64): UrlPart;
|
|
21
|
-
export declare function UrlPart_op_Implicit_32C73145(d: decimal): UrlPart;
|
|
22
|
-
export declare function UrlPart_op_Implicit_244AC511(g: string): UrlPart;
|
|
23
|
-
export declare function UrlPart_op_Implicit_7F9DDECF(dt: Date): UrlPart;
|
|
24
|
-
export declare function UrlPart_op_Implicit_Z53C0511E(dto: Date): UrlPart;
|
|
25
|
-
export declare function composeRelativeUrl(relativePathSections: FSharpList<UrlPart>, queryParameters: FSharpList<[string, UrlPart]>): string;
|