@fossa-app/bridge 0.1.19 → 0.1.20

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.
Files changed (67) hide show
  1. package/dist/Models/ApiModels/EnvelopeModels.d.ts +21 -0
  2. package/dist/Models/ApiModels/EnvelopeModels.js +34 -0
  3. package/dist/Models/ApiModels/EnvelopeModels.js.map +1 -0
  4. package/dist/Models/ApiModels/PayloadModels.d.ts +147 -0
  5. package/dist/Models/ApiModels/PayloadModels.js +286 -0
  6. package/dist/Models/ApiModels/PayloadModels.js.map +1 -0
  7. package/dist/Models/ApiModels/SharedModels.d.ts +41 -0
  8. package/dist/Models/ApiModels/SharedModels.js +79 -0
  9. package/dist/Models/ApiModels/SharedModels.js.map +1 -0
  10. package/dist/Services/Clients/BranchClient.d.ts +22 -0
  11. package/dist/Services/Clients/BranchClient.js +63 -0
  12. package/dist/Services/Clients/BranchClient.js.map +1 -0
  13. package/dist/Services/Clients/CompanyClient.d.ts +18 -0
  14. package/dist/Services/Clients/CompanyClient.js +45 -0
  15. package/dist/Services/Clients/CompanyClient.js.map +1 -0
  16. package/dist/Services/Clients/CompanyLicenseClient.d.ts +13 -0
  17. package/dist/Services/Clients/CompanyLicenseClient.js +31 -0
  18. package/dist/Services/Clients/CompanyLicenseClient.js.map +1 -0
  19. package/dist/Services/Clients/CompanySettingsClient.d.ts +18 -0
  20. package/dist/Services/Clients/CompanySettingsClient.js +45 -0
  21. package/dist/Services/Clients/CompanySettingsClient.js.map +1 -0
  22. package/dist/Services/Clients/DepartmentClient.d.ts +22 -0
  23. package/dist/Services/Clients/DepartmentClient.js +63 -0
  24. package/dist/Services/Clients/DepartmentClient.js.map +1 -0
  25. package/dist/Services/Clients/EmployeeClient.d.ts +33 -0
  26. package/dist/Services/Clients/EmployeeClient.js +102 -0
  27. package/dist/Services/Clients/EmployeeClient.js.map +1 -0
  28. package/dist/Services/Clients/IBranchClient.d.ts +9 -0
  29. package/dist/Services/Clients/IBranchClient.js +2 -0
  30. package/dist/Services/Clients/IBranchClient.js.map +1 -0
  31. package/dist/Services/Clients/ICompanyClient.d.ts +7 -0
  32. package/dist/Services/Clients/ICompanyClient.js +2 -0
  33. package/dist/Services/Clients/ICompanyClient.js.map +1 -0
  34. package/dist/Services/Clients/ICompanyLicenseClient.d.ts +4 -0
  35. package/dist/Services/Clients/ICompanyLicenseClient.js +2 -0
  36. package/dist/Services/Clients/ICompanyLicenseClient.js.map +1 -0
  37. package/dist/Services/Clients/ICompanySettingsClient.d.ts +7 -0
  38. package/dist/Services/Clients/ICompanySettingsClient.js +2 -0
  39. package/dist/Services/Clients/ICompanySettingsClient.js.map +1 -0
  40. package/dist/Services/Clients/IDepartmentClient.d.ts +9 -0
  41. package/dist/Services/Clients/IDepartmentClient.js +2 -0
  42. package/dist/Services/Clients/IDepartmentClient.js.map +1 -0
  43. package/dist/Services/Clients/IEmployeeClient.d.ts +14 -0
  44. package/dist/Services/Clients/IEmployeeClient.js +2 -0
  45. package/dist/Services/Clients/IEmployeeClient.js.map +1 -0
  46. package/dist/Services/Clients/IIdentityClient.d.ts +3 -0
  47. package/dist/Services/Clients/IIdentityClient.js +2 -0
  48. package/dist/Services/Clients/IIdentityClient.js.map +1 -0
  49. package/dist/Services/Clients/ISystemLicenseClient.d.ts +3 -0
  50. package/dist/Services/Clients/ISystemLicenseClient.js +2 -0
  51. package/dist/Services/Clients/ISystemLicenseClient.js.map +1 -0
  52. package/dist/Services/Clients/IdentityClient.d.ts +11 -0
  53. package/dist/Services/Clients/IdentityClient.js +24 -0
  54. package/dist/Services/Clients/IdentityClient.js.map +1 -0
  55. package/dist/Services/Clients/SystemLicenseClient.d.ts +11 -0
  56. package/dist/Services/Clients/SystemLicenseClient.js +24 -0
  57. package/dist/Services/Clients/SystemLicenseClient.js.map +1 -0
  58. package/dist/Services/Endpoints.d.ts +10 -0
  59. package/dist/Services/Endpoints.js +11 -0
  60. package/dist/Services/Endpoints.js.map +1 -0
  61. package/dist/Services/IHttpTransport.d.ts +7 -0
  62. package/dist/Services/IHttpTransport.js +2 -0
  63. package/dist/Services/IHttpTransport.js.map +1 -0
  64. package/dist/Services/UrlHelpers.d.ts +25 -0
  65. package/dist/Services/UrlHelpers.js +86 -0
  66. package/dist/Services/UrlHelpers.js.map +1 -0
  67. package/package.json +1 -1
@@ -0,0 +1,21 @@
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;
@@ -0,0 +1,34 @@
1
+ import { Record } from "@fable-org/fable-library-ts/Types.ts";
2
+ import { LicenseTermsModel_$reflection } from "./SharedModels.js";
3
+ import { int64_type, class_type, option_type, int32_type, record_type } from "@fable-org/fable-library-ts/Reflection.ts";
4
+ export class LicenseResponseModel$1 extends Record {
5
+ Terms;
6
+ Entitlements;
7
+ constructor(Terms, Entitlements) {
8
+ super();
9
+ this.Terms = Terms;
10
+ this.Entitlements = Entitlements;
11
+ }
12
+ }
13
+ export function LicenseResponseModel$1_$reflection(gen0) {
14
+ return record_type("Fossa.Bridge.Models.ApiModels.LicenseResponseModel`1", [gen0], LicenseResponseModel$1, () => [["Terms", LicenseTermsModel_$reflection()], ["Entitlements", gen0]]);
15
+ }
16
+ export class PagingResponseModel$1 extends Record {
17
+ PageNumber;
18
+ PageSize;
19
+ Items;
20
+ TotalItems;
21
+ TotalPages;
22
+ constructor(PageNumber, PageSize, Items, TotalItems, TotalPages) {
23
+ super();
24
+ this.PageNumber = PageNumber;
25
+ this.PageSize = PageSize;
26
+ this.Items = Items;
27
+ this.TotalItems = TotalItems;
28
+ this.TotalPages = TotalPages;
29
+ }
30
+ }
31
+ export function PagingResponseModel$1_$reflection(gen0) {
32
+ return record_type("Fossa.Bridge.Models.ApiModels.PagingResponseModel`1", [gen0], PagingResponseModel$1, () => [["PageNumber", option_type(int32_type)], ["PageSize", option_type(int32_type)], ["Items", class_type("System.Collections.Generic.IReadOnlyCollection`1", [gen0])], ["TotalItems", option_type(int64_type)], ["TotalPages", option_type(int64_type)]]);
33
+ }
34
+ //# sourceMappingURL=EnvelopeModels.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EnvelopeModels.js","sourceRoot":"","sources":["../../../fable_output/Models/ApiModels/EnvelopeModels.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,sCAAsC,CAAC;AAC9D,OAAO,EAAE,6BAA6B,EAAqB,MAAM,mBAAmB,CAAC;AAErF,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,WAAW,EAAE,UAAU,EAAE,WAAW,EAAY,MAAM,2CAA2C,CAAC;AAInI,MAAM,OAAO,sBAA2C,SAAQ,MAAM;IACzD,KAAK,CAAoB;IACzB,YAAY,CAAqB;IAC1C,YAAY,KAAwB,EAAE,YAAgC;QAClE,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QACnB,IAAI,CAAC,YAAY,GAAG,YAAY,CAAC;IACrC,CAAC;CACJ;AAED,MAAM,UAAU,kCAAkC,CAAC,IAAc;IAC7D,OAAO,WAAW,CAAC,sDAAsD,EAAE,CAAC,IAAI,CAAC,EAAE,sBAAsB,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC,OAAO,EAAE,6BAA6B,EAAE,CAAC,EAAE,CAAC,cAAc,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC;AAC3L,CAAC;AAED,MAAM,OAAO,qBAAyB,SAAQ,MAAM;IACvC,UAAU,CAAkB;IAC5B,QAAQ,CAAkB;IAC1B,KAAK,CAAM;IACX,UAAU,CAAkB;IAC5B,UAAU,CAAkB;IACrC,YAAY,UAA2B,EAAE,QAAyB,EAAE,KAAU,EAAE,UAA2B,EAAE,UAA2B;QACpI,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;QAC7B,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QACzB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QACnB,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;QAC7B,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;IACjC,CAAC;CACJ;AAED,MAAM,UAAU,iCAAiC,CAAC,IAAc;IAC5D,OAAO,WAAW,CAAC,qDAAqD,EAAE,CAAC,IAAI,CAAC,EAAE,qBAAqB,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE,WAAW,CAAC,UAAU,CAAC,CAAC,EAAE,CAAC,UAAU,EAAE,WAAW,CAAC,UAAU,CAAC,CAAC,EAAE,CAAC,OAAO,EAAE,UAAU,CAAC,kDAAkD,EAAE,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,YAAY,EAAE,WAAW,CAAC,UAAU,CAAC,CAAC,EAAE,CAAC,YAAY,EAAE,WAAW,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC;AAC1W,CAAC"}
@@ -0,0 +1,147 @@
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;
@@ -0,0 +1,286 @@
1
+ import { Record } from "@fable-org/fable-library-ts/Types.ts";
2
+ import { bool_type, int32_type, int64_type, record_type, string_type, option_type, class_type } from "@fable-org/fable-library-ts/Reflection.ts";
3
+ import { TimeZoneModel_$reflection, CountryModel_$reflection, AddressModel_$reflection } from "./SharedModels.js";
4
+ export class IdentityClientRetrievalModel extends Record {
5
+ ClientId;
6
+ ClientName;
7
+ TenantId;
8
+ constructor(ClientId, ClientName, TenantId) {
9
+ super();
10
+ this.ClientId = ClientId;
11
+ this.ClientName = ClientName;
12
+ this.TenantId = TenantId;
13
+ }
14
+ }
15
+ export function IdentityClientRetrievalModel_$reflection() {
16
+ return record_type("Fossa.Bridge.Models.ApiModels.IdentityClientRetrievalModel", [], IdentityClientRetrievalModel, () => [["ClientId", option_type(class_type("System.Guid"))], ["ClientName", string_type], ["TenantId", option_type(class_type("System.Guid"))]]);
17
+ }
18
+ export class BranchModificationModel extends Record {
19
+ Name;
20
+ TimeZoneId;
21
+ Address;
22
+ constructor(Name, TimeZoneId, Address) {
23
+ super();
24
+ this.Name = Name;
25
+ this.TimeZoneId = TimeZoneId;
26
+ this.Address = Address;
27
+ }
28
+ }
29
+ export function BranchModificationModel_$reflection() {
30
+ return record_type("Fossa.Bridge.Models.ApiModels.BranchModificationModel", [], BranchModificationModel, () => [["Name", string_type], ["TimeZoneId", string_type], ["Address", AddressModel_$reflection()]]);
31
+ }
32
+ export class BranchQueryRequestModel extends Record {
33
+ Id;
34
+ Search;
35
+ PageNumber;
36
+ PageSize;
37
+ constructor(Id, Search, PageNumber, PageSize) {
38
+ super();
39
+ this.Id = Id;
40
+ this.Search = Search;
41
+ this.PageNumber = PageNumber;
42
+ this.PageSize = PageSize;
43
+ }
44
+ }
45
+ export function BranchQueryRequestModel_$reflection() {
46
+ return record_type("Fossa.Bridge.Models.ApiModels.BranchQueryRequestModel", [], BranchQueryRequestModel, () => [["Id", class_type("System.Collections.Generic.IReadOnlyList`1", [int64_type])], ["Search", string_type], ["PageNumber", option_type(int32_type)], ["PageSize", option_type(int32_type)]]);
47
+ }
48
+ export class BranchRetrievalModel extends Record {
49
+ Id;
50
+ CompanyId;
51
+ Name;
52
+ TimeZoneId;
53
+ Address;
54
+ constructor(Id, CompanyId, Name, TimeZoneId, Address) {
55
+ super();
56
+ this.Id = Id;
57
+ this.CompanyId = CompanyId;
58
+ this.Name = Name;
59
+ this.TimeZoneId = TimeZoneId;
60
+ this.Address = Address;
61
+ }
62
+ }
63
+ export function BranchRetrievalModel_$reflection() {
64
+ return record_type("Fossa.Bridge.Models.ApiModels.BranchRetrievalModel", [], BranchRetrievalModel, () => [["Id", int64_type], ["CompanyId", int64_type], ["Name", string_type], ["TimeZoneId", string_type], ["Address", AddressModel_$reflection()]]);
65
+ }
66
+ export class CompanyEntitlementsModel extends Record {
67
+ CompanyId;
68
+ MaximumBranchCount;
69
+ MaximumEmployeeCount;
70
+ MaximumDepartmentCount;
71
+ constructor(CompanyId, MaximumBranchCount, MaximumEmployeeCount, MaximumDepartmentCount) {
72
+ super();
73
+ this.CompanyId = CompanyId;
74
+ this.MaximumBranchCount = (MaximumBranchCount | 0);
75
+ this.MaximumEmployeeCount = (MaximumEmployeeCount | 0);
76
+ this.MaximumDepartmentCount = (MaximumDepartmentCount | 0);
77
+ }
78
+ }
79
+ export function CompanyEntitlementsModel_$reflection() {
80
+ return record_type("Fossa.Bridge.Models.ApiModels.CompanyEntitlementsModel", [], CompanyEntitlementsModel, () => [["CompanyId", int64_type], ["MaximumBranchCount", int32_type], ["MaximumEmployeeCount", int32_type], ["MaximumDepartmentCount", int32_type]]);
81
+ }
82
+ export class CompanyModificationModel extends Record {
83
+ Name;
84
+ CountryCode;
85
+ constructor(Name, CountryCode) {
86
+ super();
87
+ this.Name = Name;
88
+ this.CountryCode = CountryCode;
89
+ }
90
+ }
91
+ export function CompanyModificationModel_$reflection() {
92
+ return record_type("Fossa.Bridge.Models.ApiModels.CompanyModificationModel", [], CompanyModificationModel, () => [["Name", string_type], ["CountryCode", string_type]]);
93
+ }
94
+ export class CompanyRetrievalModel extends Record {
95
+ Id;
96
+ Name;
97
+ CountryCode;
98
+ constructor(Id, Name, CountryCode) {
99
+ super();
100
+ this.Id = Id;
101
+ this.Name = Name;
102
+ this.CountryCode = CountryCode;
103
+ }
104
+ }
105
+ export function CompanyRetrievalModel_$reflection() {
106
+ return record_type("Fossa.Bridge.Models.ApiModels.CompanyRetrievalModel", [], CompanyRetrievalModel, () => [["Id", int64_type], ["Name", string_type], ["CountryCode", string_type]]);
107
+ }
108
+ export class CompanySettingsModificationModel extends Record {
109
+ ColorSchemeId;
110
+ constructor(ColorSchemeId) {
111
+ super();
112
+ this.ColorSchemeId = ColorSchemeId;
113
+ }
114
+ }
115
+ export function CompanySettingsModificationModel_$reflection() {
116
+ return record_type("Fossa.Bridge.Models.ApiModels.CompanySettingsModificationModel", [], CompanySettingsModificationModel, () => [["ColorSchemeId", string_type]]);
117
+ }
118
+ export class CompanySettingsRetrievalModel extends Record {
119
+ Id;
120
+ CompanyId;
121
+ ColorSchemeId;
122
+ constructor(Id, CompanyId, ColorSchemeId) {
123
+ super();
124
+ this.Id = Id;
125
+ this.CompanyId = CompanyId;
126
+ this.ColorSchemeId = ColorSchemeId;
127
+ }
128
+ }
129
+ export function CompanySettingsRetrievalModel_$reflection() {
130
+ return record_type("Fossa.Bridge.Models.ApiModels.CompanySettingsRetrievalModel", [], CompanySettingsRetrievalModel, () => [["Id", int64_type], ["CompanyId", int64_type], ["ColorSchemeId", string_type]]);
131
+ }
132
+ export class DepartmentModificationModel extends Record {
133
+ Name;
134
+ ParentDepartmentId;
135
+ ManagerId;
136
+ constructor(Name, ParentDepartmentId, ManagerId) {
137
+ super();
138
+ this.Name = Name;
139
+ this.ParentDepartmentId = ParentDepartmentId;
140
+ this.ManagerId = ManagerId;
141
+ }
142
+ }
143
+ export function DepartmentModificationModel_$reflection() {
144
+ return record_type("Fossa.Bridge.Models.ApiModels.DepartmentModificationModel", [], DepartmentModificationModel, () => [["Name", string_type], ["ParentDepartmentId", option_type(int64_type)], ["ManagerId", option_type(int64_type)]]);
145
+ }
146
+ export class DepartmentQueryRequestModel extends Record {
147
+ Id;
148
+ Search;
149
+ PageNumber;
150
+ PageSize;
151
+ constructor(Id, Search, PageNumber, PageSize) {
152
+ super();
153
+ this.Id = Id;
154
+ this.Search = Search;
155
+ this.PageNumber = PageNumber;
156
+ this.PageSize = PageSize;
157
+ }
158
+ }
159
+ export function DepartmentQueryRequestModel_$reflection() {
160
+ return record_type("Fossa.Bridge.Models.ApiModels.DepartmentQueryRequestModel", [], DepartmentQueryRequestModel, () => [["Id", class_type("System.Collections.Generic.IReadOnlyList`1", [int64_type])], ["Search", string_type], ["PageNumber", option_type(int32_type)], ["PageSize", option_type(int32_type)]]);
161
+ }
162
+ export class DepartmentRetrievalModel extends Record {
163
+ Id;
164
+ Name;
165
+ ParentDepartmentId;
166
+ ManagerId;
167
+ constructor(Id, Name, ParentDepartmentId, ManagerId) {
168
+ super();
169
+ this.Id = Id;
170
+ this.Name = Name;
171
+ this.ParentDepartmentId = ParentDepartmentId;
172
+ this.ManagerId = ManagerId;
173
+ }
174
+ }
175
+ export function DepartmentRetrievalModel_$reflection() {
176
+ return record_type("Fossa.Bridge.Models.ApiModels.DepartmentRetrievalModel", [], DepartmentRetrievalModel, () => [["Id", int64_type], ["Name", string_type], ["ParentDepartmentId", option_type(int64_type)], ["ManagerId", option_type(int64_type)]]);
177
+ }
178
+ export class EmployeeManagementModel extends Record {
179
+ AssignedBranchId;
180
+ AssignedDepartmentId;
181
+ ReportsToId;
182
+ JobTitle;
183
+ constructor(AssignedBranchId, AssignedDepartmentId, ReportsToId, JobTitle) {
184
+ super();
185
+ this.AssignedBranchId = AssignedBranchId;
186
+ this.AssignedDepartmentId = AssignedDepartmentId;
187
+ this.ReportsToId = ReportsToId;
188
+ this.JobTitle = JobTitle;
189
+ }
190
+ }
191
+ export function EmployeeManagementModel_$reflection() {
192
+ return record_type("Fossa.Bridge.Models.ApiModels.EmployeeManagementModel", [], EmployeeManagementModel, () => [["AssignedBranchId", option_type(int64_type)], ["AssignedDepartmentId", option_type(int64_type)], ["ReportsToId", option_type(int64_type)], ["JobTitle", string_type]]);
193
+ }
194
+ export class EmployeeModificationModel extends Record {
195
+ FirstName;
196
+ LastName;
197
+ FullName;
198
+ constructor(FirstName, LastName, FullName) {
199
+ super();
200
+ this.FirstName = FirstName;
201
+ this.LastName = LastName;
202
+ this.FullName = FullName;
203
+ }
204
+ }
205
+ export function EmployeeModificationModel_$reflection() {
206
+ return record_type("Fossa.Bridge.Models.ApiModels.EmployeeModificationModel", [], EmployeeModificationModel, () => [["FirstName", string_type], ["LastName", string_type], ["FullName", string_type]]);
207
+ }
208
+ export class EmployeePagingRequestModel extends Record {
209
+ Search;
210
+ PageNumber;
211
+ PageSize;
212
+ constructor(Search, PageNumber, PageSize) {
213
+ super();
214
+ this.Search = Search;
215
+ this.PageNumber = PageNumber;
216
+ this.PageSize = PageSize;
217
+ }
218
+ }
219
+ export function EmployeePagingRequestModel_$reflection() {
220
+ return record_type("Fossa.Bridge.Models.ApiModels.EmployeePagingRequestModel", [], EmployeePagingRequestModel, () => [["Search", string_type], ["PageNumber", option_type(int32_type)], ["PageSize", option_type(int32_type)]]);
221
+ }
222
+ export class EmployeeQueryRequestModel extends Record {
223
+ Id;
224
+ Search;
225
+ PageNumber;
226
+ PageSize;
227
+ ReportsToId;
228
+ TopLevelOnly;
229
+ constructor(Id, Search, PageNumber, PageSize, ReportsToId, TopLevelOnly) {
230
+ super();
231
+ this.Id = Id;
232
+ this.Search = Search;
233
+ this.PageNumber = PageNumber;
234
+ this.PageSize = PageSize;
235
+ this.ReportsToId = ReportsToId;
236
+ this.TopLevelOnly = TopLevelOnly;
237
+ }
238
+ }
239
+ export function EmployeeQueryRequestModel_$reflection() {
240
+ return record_type("Fossa.Bridge.Models.ApiModels.EmployeeQueryRequestModel", [], EmployeeQueryRequestModel, () => [["Id", class_type("System.Collections.Generic.IReadOnlyList`1", [int64_type])], ["Search", string_type], ["PageNumber", option_type(int32_type)], ["PageSize", option_type(int32_type)], ["ReportsToId", option_type(int64_type)], ["TopLevelOnly", option_type(bool_type)]]);
241
+ }
242
+ export class EmployeeRetrievalModel extends Record {
243
+ Id;
244
+ CompanyId;
245
+ AssignedBranchId;
246
+ AssignedDepartmentId;
247
+ ReportsToId;
248
+ JobTitle;
249
+ FirstName;
250
+ LastName;
251
+ FullName;
252
+ constructor(Id, CompanyId, AssignedBranchId, AssignedDepartmentId, ReportsToId, JobTitle, FirstName, LastName, FullName) {
253
+ super();
254
+ this.Id = Id;
255
+ this.CompanyId = CompanyId;
256
+ this.AssignedBranchId = AssignedBranchId;
257
+ this.AssignedDepartmentId = AssignedDepartmentId;
258
+ this.ReportsToId = ReportsToId;
259
+ this.JobTitle = JobTitle;
260
+ this.FirstName = FirstName;
261
+ this.LastName = LastName;
262
+ this.FullName = FullName;
263
+ }
264
+ }
265
+ export function EmployeeRetrievalModel_$reflection() {
266
+ return record_type("Fossa.Bridge.Models.ApiModels.EmployeeRetrievalModel", [], EmployeeRetrievalModel, () => [["Id", int64_type], ["CompanyId", int64_type], ["AssignedBranchId", option_type(int64_type)], ["AssignedDepartmentId", option_type(int64_type)], ["ReportsToId", option_type(int64_type)], ["JobTitle", string_type], ["FirstName", string_type], ["LastName", string_type], ["FullName", string_type]]);
267
+ }
268
+ export class SystemEntitlementsModel extends Record {
269
+ EnvironmentName;
270
+ EnvironmentKind;
271
+ Countries;
272
+ TimeZones;
273
+ MaximumCompanyCount;
274
+ constructor(EnvironmentName, EnvironmentKind, Countries, TimeZones, MaximumCompanyCount) {
275
+ super();
276
+ this.EnvironmentName = EnvironmentName;
277
+ this.EnvironmentKind = EnvironmentKind;
278
+ this.Countries = Countries;
279
+ this.TimeZones = TimeZones;
280
+ this.MaximumCompanyCount = (MaximumCompanyCount | 0);
281
+ }
282
+ }
283
+ export function SystemEntitlementsModel_$reflection() {
284
+ return record_type("Fossa.Bridge.Models.ApiModels.SystemEntitlementsModel", [], SystemEntitlementsModel, () => [["EnvironmentName", string_type], ["EnvironmentKind", string_type], ["Countries", class_type("System.Collections.Generic.IReadOnlyList`1", [CountryModel_$reflection()])], ["TimeZones", class_type("System.Collections.Generic.IReadOnlyList`1", [TimeZoneModel_$reflection()])], ["MaximumCompanyCount", int32_type]]);
285
+ }
286
+ //# sourceMappingURL=PayloadModels.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PayloadModels.js","sourceRoot":"","sources":["../../../fable_output/Models/ApiModels/PayloadModels.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,41 @@
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;
@@ -0,0 +1,79 @@
1
+ import { Record } from "@fable-org/fable-library-ts/Types.ts";
2
+ import { option_type, class_type, record_type, string_type } from "@fable-org/fable-library-ts/Reflection.ts";
3
+ export class AddressModel extends Record {
4
+ Line1;
5
+ Line2;
6
+ City;
7
+ Subdivision;
8
+ PostalCode;
9
+ CountryCode;
10
+ constructor(Line1, Line2, City, Subdivision, PostalCode, CountryCode) {
11
+ super();
12
+ this.Line1 = Line1;
13
+ this.Line2 = Line2;
14
+ this.City = City;
15
+ this.Subdivision = Subdivision;
16
+ this.PostalCode = PostalCode;
17
+ this.CountryCode = CountryCode;
18
+ }
19
+ }
20
+ export function AddressModel_$reflection() {
21
+ return record_type("Fossa.Bridge.Models.ApiModels.AddressModel", [], AddressModel, () => [["Line1", string_type], ["Line2", string_type], ["City", string_type], ["Subdivision", string_type], ["PostalCode", string_type], ["CountryCode", string_type]]);
22
+ }
23
+ export class CountryModel extends Record {
24
+ Name;
25
+ Code;
26
+ constructor(Name, Code) {
27
+ super();
28
+ this.Name = Name;
29
+ this.Code = Code;
30
+ }
31
+ }
32
+ export function CountryModel_$reflection() {
33
+ return record_type("Fossa.Bridge.Models.ApiModels.CountryModel", [], CountryModel, () => [["Name", string_type], ["Code", string_type]]);
34
+ }
35
+ export class TimeZoneModel extends Record {
36
+ Id;
37
+ Name;
38
+ CountryCode;
39
+ CurrentOffset;
40
+ constructor(Id, Name, CountryCode, CurrentOffset) {
41
+ super();
42
+ this.Id = Id;
43
+ this.Name = Name;
44
+ this.CountryCode = CountryCode;
45
+ this.CurrentOffset = CurrentOffset;
46
+ }
47
+ }
48
+ export function TimeZoneModel_$reflection() {
49
+ return record_type("Fossa.Bridge.Models.ApiModels.TimeZoneModel", [], TimeZoneModel, () => [["Id", string_type], ["Name", string_type], ["CountryCode", string_type], ["CurrentOffset", option_type(class_type("System.TimeSpan"))]]);
50
+ }
51
+ export class PartyModel extends Record {
52
+ LongName;
53
+ ShortName;
54
+ constructor(LongName, ShortName) {
55
+ super();
56
+ this.LongName = LongName;
57
+ this.ShortName = ShortName;
58
+ }
59
+ }
60
+ export function PartyModel_$reflection() {
61
+ return record_type("Fossa.Bridge.Models.ApiModels.PartyModel", [], PartyModel, () => [["LongName", string_type], ["ShortName", string_type]]);
62
+ }
63
+ export class LicenseTermsModel extends Record {
64
+ Licensor;
65
+ Licensee;
66
+ NotBefore;
67
+ NotAfter;
68
+ constructor(Licensor, Licensee, NotBefore, NotAfter) {
69
+ super();
70
+ this.Licensor = Licensor;
71
+ this.Licensee = Licensee;
72
+ this.NotBefore = NotBefore;
73
+ this.NotAfter = NotAfter;
74
+ }
75
+ }
76
+ export function LicenseTermsModel_$reflection() {
77
+ return record_type("Fossa.Bridge.Models.ApiModels.LicenseTermsModel", [], LicenseTermsModel, () => [["Licensor", PartyModel_$reflection()], ["Licensee", PartyModel_$reflection()], ["NotBefore", option_type(class_type("System.DateTimeOffset"))], ["NotAfter", option_type(class_type("System.DateTimeOffset"))]]);
78
+ }
79
+ //# sourceMappingURL=SharedModels.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SharedModels.js","sourceRoot":"","sources":["../../../fable_output/Models/ApiModels/SharedModels.ts"],"names":[],"mappings":"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"}