@fossa-app/bridge 0.1.8 → 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.
Files changed (60) 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.d.ts → ApiModels/PayloadModels.d.ts} +30 -82
  5. package/dist/Models/ApiModels/PayloadModels.js +256 -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 +74 -0
  9. package/dist/Models/ApiModels/SharedModels.js.map +1 -0
  10. package/dist/Services/Clients/BranchClient.d.ts +13 -7
  11. package/dist/Services/Clients/BranchClient.js +29 -9
  12. package/dist/Services/Clients/BranchClient.js.map +1 -1
  13. package/dist/Services/Clients/CompanyClient.d.ts +9 -4
  14. package/dist/Services/Clients/CompanyClient.js +20 -4
  15. package/dist/Services/Clients/CompanyClient.js.map +1 -1
  16. package/dist/Services/Clients/CompanyLicenseClient.d.ts +4 -1
  17. package/dist/Services/Clients/CompanyLicenseClient.js +8 -0
  18. package/dist/Services/Clients/CompanyLicenseClient.js.map +1 -1
  19. package/dist/Services/Clients/CompanySettingsClient.d.ts +9 -4
  20. package/dist/Services/Clients/CompanySettingsClient.js +20 -4
  21. package/dist/Services/Clients/CompanySettingsClient.js.map +1 -1
  22. package/dist/Services/Clients/DepartmentClient.d.ts +13 -7
  23. package/dist/Services/Clients/DepartmentClient.js +29 -9
  24. package/dist/Services/Clients/DepartmentClient.js.map +1 -1
  25. package/dist/Services/Clients/EmployeeClient.d.ts +16 -9
  26. package/dist/Services/Clients/EmployeeClient.js +38 -14
  27. package/dist/Services/Clients/EmployeeClient.js.map +1 -1
  28. package/dist/Services/Clients/IBranchClient.d.ts +9 -0
  29. package/dist/Services/Clients/IBranchClient.js +3 -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 +3 -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 +3 -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 +3 -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 +3 -0
  42. package/dist/Services/Clients/IDepartmentClient.js.map +1 -0
  43. package/dist/Services/Clients/IEmployeeClient.d.ts +10 -0
  44. package/dist/Services/Clients/IEmployeeClient.js +3 -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 +3 -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 +3 -0
  51. package/dist/Services/Clients/ISystemLicenseClient.js.map +1 -0
  52. package/dist/Services/Clients/IdentityClient.d.ts +3 -1
  53. package/dist/Services/Clients/IdentityClient.js +4 -0
  54. package/dist/Services/Clients/IdentityClient.js.map +1 -1
  55. package/dist/Services/Clients/SystemLicenseClient.d.ts +3 -1
  56. package/dist/Services/Clients/SystemLicenseClient.js +4 -0
  57. package/dist/Services/Clients/SystemLicenseClient.js.map +1 -1
  58. package/package.json +1 -1
  59. package/dist/Models/ApiModels.js +0 -350
  60. package/dist/Models/ApiModels.js.map +0 -1
@@ -0,0 +1,21 @@
1
+ import { Record } from "../../fable_modules/fable-library-ts.5.0.0-rc.1/Types.ts";
2
+ import { LicenseTermsModel } from "./SharedModels.ts";
3
+ import { Nullable, IEquatable } from "../../fable_modules/fable-library-ts.5.0.0-rc.1/Util.ts";
4
+ import { TypeInfo } from "../../fable_modules/fable-library-ts.5.0.0-rc.1/Reflection.ts";
5
+ import { int32 } from "../../fable_modules/fable-library-ts.5.0.0-rc.1/Int32.ts";
6
+ import { int64 } from "../../fable_modules/fable-library-ts.5.0.0-rc.1/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
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PagingResponseModel$1 = exports.LicenseResponseModel$1 = void 0;
4
+ exports.LicenseResponseModel$1_$reflection = LicenseResponseModel$1_$reflection;
5
+ exports.PagingResponseModel$1_$reflection = PagingResponseModel$1_$reflection;
6
+ const Types_ts_1 = require("../../fable_modules/fable-library-ts.5.0.0-rc.1/Types.js");
7
+ const SharedModels_ts_1 = require("./SharedModels.js");
8
+ const Reflection_ts_1 = require("../../fable_modules/fable-library-ts.5.0.0-rc.1/Reflection.js");
9
+ class LicenseResponseModel$1 extends Types_ts_1.Record {
10
+ constructor(Terms, Entitlements) {
11
+ super();
12
+ this.Terms = Terms;
13
+ this.Entitlements = Entitlements;
14
+ }
15
+ }
16
+ exports.LicenseResponseModel$1 = LicenseResponseModel$1;
17
+ function LicenseResponseModel$1_$reflection(gen0) {
18
+ return (0, Reflection_ts_1.record_type)("Fossa.Bridge.Models.ApiModels.LicenseResponseModel`1", [gen0], LicenseResponseModel$1, () => [["Terms", (0, SharedModels_ts_1.LicenseTermsModel_$reflection)()], ["Entitlements", gen0]]);
19
+ }
20
+ class PagingResponseModel$1 extends Types_ts_1.Record {
21
+ constructor(PageNumber, PageSize, Items, TotalItems, TotalPages) {
22
+ super();
23
+ this.PageNumber = PageNumber;
24
+ this.PageSize = PageSize;
25
+ this.Items = Items;
26
+ this.TotalItems = TotalItems;
27
+ this.TotalPages = TotalPages;
28
+ }
29
+ }
30
+ exports.PagingResponseModel$1 = PagingResponseModel$1;
31
+ function PagingResponseModel$1_$reflection(gen0) {
32
+ return (0, Reflection_ts_1.record_type)("Fossa.Bridge.Models.ApiModels.PagingResponseModel`1", [gen0], PagingResponseModel$1, () => [["PageNumber", (0, Reflection_ts_1.option_type)(Reflection_ts_1.int32_type)], ["PageSize", (0, Reflection_ts_1.option_type)(Reflection_ts_1.int32_type)], ["Items", (0, Reflection_ts_1.class_type)("System.Collections.Generic.IReadOnlyCollection`1", [gen0])], ["TotalItems", (0, Reflection_ts_1.option_type)(Reflection_ts_1.int64_type)], ["TotalPages", (0, Reflection_ts_1.option_type)(Reflection_ts_1.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":";;;AAkBA,gFAEC;AAkBD,8EAEC;AAvCD,uFAAkF;AAClF,uDAAqF;AAErF,iGAAuJ;AAIvJ,MAAa,sBAA2C,SAAQ,iBAAM;IAGlE,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;AARD,wDAQC;AAED,SAAgB,kCAAkC,CAAC,IAAc;IAC7D,OAAO,IAAA,2BAAW,EAAC,sDAAsD,EAAE,CAAC,IAAI,CAAC,EAAE,sBAAsB,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC,OAAO,EAAE,IAAA,+CAA6B,GAAE,CAAC,EAAE,CAAC,cAAc,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC;AAC3L,CAAC;AAED,MAAa,qBAAyB,SAAQ,iBAAM;IAMhD,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;AAdD,sDAcC;AAED,SAAgB,iCAAiC,CAAC,IAAc;IAC5D,OAAO,IAAA,2BAAW,EAAC,qDAAqD,EAAE,CAAC,IAAI,CAAC,EAAE,qBAAqB,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE,IAAA,2BAAW,EAAC,0BAAU,CAAC,CAAC,EAAE,CAAC,UAAU,EAAE,IAAA,2BAAW,EAAC,0BAAU,CAAC,CAAC,EAAE,CAAC,OAAO,EAAE,IAAA,0BAAU,EAAC,kDAAkD,EAAE,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,YAAY,EAAE,IAAA,2BAAW,EAAC,0BAAU,CAAC,CAAC,EAAE,CAAC,YAAY,EAAE,IAAA,2BAAW,EAAC,0BAAU,CAAC,CAAC,CAAC,CAAC,CAAC;AAC1W,CAAC"}
@@ -1,18 +1,9 @@
1
- import { Record } from "../fable_modules/fable-library-ts.5.0.0-rc.1/Types.ts";
2
- import { Nullable, IComparable, IEquatable } from "../fable_modules/fable-library-ts.5.0.0-rc.1/Util.ts";
3
- import { TypeInfo } from "../fable_modules/fable-library-ts.5.0.0-rc.1/Reflection.ts";
4
- import { int32 } from "../fable_modules/fable-library-ts.5.0.0-rc.1/Int32.ts";
5
- import { int64 } from "../fable_modules/fable-library-ts.5.0.0-rc.1/BigInt.ts";
6
- export declare class AddressModel extends Record implements IEquatable<AddressModel>, IComparable<AddressModel> {
7
- readonly Line1: string;
8
- readonly Line2: string;
9
- readonly City: string;
10
- readonly Subdivision: string;
11
- readonly PostalCode: string;
12
- readonly CountryCode: string;
13
- constructor(Line1: string, Line2: string, City: string, Subdivision: string, PostalCode: string, CountryCode: string);
14
- }
15
- export declare function AddressModel_$reflection(): TypeInfo;
1
+ import { Record } from "../../fable_modules/fable-library-ts.5.0.0-rc.1/Types.ts";
2
+ import { IComparable, IEquatable, Nullable } from "../../fable_modules/fable-library-ts.5.0.0-rc.1/Util.ts";
3
+ import { TypeInfo } from "../../fable_modules/fable-library-ts.5.0.0-rc.1/Reflection.ts";
4
+ import { AddressModel } from "./SharedModels.ts";
5
+ import { int32 } from "../../fable_modules/fable-library-ts.5.0.0-rc.1/Int32.ts";
6
+ import { int64 } from "../../fable_modules/fable-library-ts.5.0.0-rc.1/BigInt.ts";
16
7
  export declare class IdentityClientRetrievalModel extends Record implements IEquatable<IdentityClientRetrievalModel> {
17
8
  readonly ClientId: Nullable<string>;
18
9
  readonly ClientName: string;
@@ -35,21 +26,21 @@ export declare class BranchQueryRequestModel extends Record implements IEquatabl
35
26
  constructor(Id: any, Search: string, PageNumber: Nullable<int32>, PageSize: Nullable<int32>);
36
27
  }
37
28
  export declare function BranchQueryRequestModel_$reflection(): TypeInfo;
38
- export declare class BranchRetrievalModel extends Record implements IEquatable<BranchRetrievalModel> {
39
- readonly Id: Nullable<int64>;
40
- readonly CompanyId: Nullable<int64>;
29
+ export declare class BranchRetrievalModel extends Record implements IEquatable<BranchRetrievalModel>, IComparable<BranchRetrievalModel> {
30
+ readonly Id: int64;
31
+ readonly CompanyId: int64;
41
32
  readonly Name: string;
42
33
  readonly TimeZoneId: string;
43
34
  readonly Address: AddressModel;
44
- constructor(Id: Nullable<int64>, CompanyId: Nullable<int64>, Name: string, TimeZoneId: string, Address: AddressModel);
35
+ constructor(Id: int64, CompanyId: int64, Name: string, TimeZoneId: string, Address: AddressModel);
45
36
  }
46
37
  export declare function BranchRetrievalModel_$reflection(): TypeInfo;
47
- export declare class CompanyEntitlementsModel extends Record implements IEquatable<CompanyEntitlementsModel> {
48
- readonly CompanyId: Nullable<int64>;
49
- readonly MaximumBranchCount: Nullable<int32>;
50
- readonly MaximumEmployeeCount: Nullable<int32>;
51
- readonly MaximumDepartmentCount: Nullable<int32>;
52
- constructor(CompanyId: Nullable<int64>, MaximumBranchCount: Nullable<int32>, MaximumEmployeeCount: Nullable<int32>, MaximumDepartmentCount: Nullable<int32>);
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);
53
44
  }
54
45
  export declare function CompanyEntitlementsModel_$reflection(): TypeInfo;
55
46
  export declare class CompanyModificationModel extends Record implements IEquatable<CompanyModificationModel>, IComparable<CompanyModificationModel> {
@@ -58,11 +49,11 @@ export declare class CompanyModificationModel extends Record implements IEquatab
58
49
  constructor(Name: string, CountryCode: string);
59
50
  }
60
51
  export declare function CompanyModificationModel_$reflection(): TypeInfo;
61
- export declare class CompanyRetrievalModel extends Record implements IEquatable<CompanyRetrievalModel> {
62
- readonly Id: Nullable<int64>;
52
+ export declare class CompanyRetrievalModel extends Record implements IEquatable<CompanyRetrievalModel>, IComparable<CompanyRetrievalModel> {
53
+ readonly Id: int64;
63
54
  readonly Name: string;
64
55
  readonly CountryCode: string;
65
- constructor(Id: Nullable<int64>, Name: string, CountryCode: string);
56
+ constructor(Id: int64, Name: string, CountryCode: string);
66
57
  }
67
58
  export declare function CompanyRetrievalModel_$reflection(): TypeInfo;
68
59
  export declare class CompanySettingsModificationModel extends Record implements IEquatable<CompanySettingsModificationModel>, IComparable<CompanySettingsModificationModel> {
@@ -70,19 +61,13 @@ export declare class CompanySettingsModificationModel extends Record implements
70
61
  constructor(ColorSchemeId: string);
71
62
  }
72
63
  export declare function CompanySettingsModificationModel_$reflection(): TypeInfo;
73
- export declare class CompanySettingsRetrievalModel extends Record implements IEquatable<CompanySettingsRetrievalModel> {
74
- readonly Id: Nullable<int64>;
75
- readonly CompanyId: Nullable<int64>;
64
+ export declare class CompanySettingsRetrievalModel extends Record implements IEquatable<CompanySettingsRetrievalModel>, IComparable<CompanySettingsRetrievalModel> {
65
+ readonly Id: int64;
66
+ readonly CompanyId: int64;
76
67
  readonly ColorSchemeId: string;
77
- constructor(Id: Nullable<int64>, CompanyId: Nullable<int64>, ColorSchemeId: string);
68
+ constructor(Id: int64, CompanyId: int64, ColorSchemeId: string);
78
69
  }
79
70
  export declare function CompanySettingsRetrievalModel_$reflection(): TypeInfo;
80
- export declare class CountryModel extends Record implements IEquatable<CountryModel>, IComparable<CountryModel> {
81
- readonly Name: string;
82
- readonly Code: string;
83
- constructor(Name: string, Code: string);
84
- }
85
- export declare function CountryModel_$reflection(): TypeInfo;
86
71
  export declare class DepartmentModificationModel extends Record implements IEquatable<DepartmentModificationModel> {
87
72
  readonly Name: string;
88
73
  readonly ParentDepartmentId: Nullable<int64>;
@@ -99,11 +84,11 @@ export declare class DepartmentQueryRequestModel extends Record implements IEqua
99
84
  }
100
85
  export declare function DepartmentQueryRequestModel_$reflection(): TypeInfo;
101
86
  export declare class DepartmentRetrievalModel extends Record implements IEquatable<DepartmentRetrievalModel> {
102
- readonly Id: Nullable<int64>;
87
+ readonly Id: int64;
103
88
  readonly Name: string;
104
89
  readonly ParentDepartmentId: Nullable<int64>;
105
90
  readonly ManagerId: Nullable<int64>;
106
- constructor(Id: Nullable<int64>, Name: string, ParentDepartmentId: Nullable<int64>, ManagerId: Nullable<int64>);
91
+ constructor(Id: int64, Name: string, ParentDepartmentId: Nullable<int64>, ManagerId: Nullable<int64>);
107
92
  }
108
93
  export declare function DepartmentRetrievalModel_$reflection(): TypeInfo;
109
94
  export declare class EmployeeManagementModel extends Record implements IEquatable<EmployeeManagementModel> {
@@ -139,8 +124,8 @@ export declare class EmployeeQueryRequestModel extends Record implements IEquata
139
124
  }
140
125
  export declare function EmployeeQueryRequestModel_$reflection(): TypeInfo;
141
126
  export declare class EmployeeRetrievalModel extends Record implements IEquatable<EmployeeRetrievalModel> {
142
- readonly Id: Nullable<int64>;
143
- readonly CompanyId: Nullable<int64>;
127
+ readonly Id: int64;
128
+ readonly CompanyId: int64;
144
129
  readonly AssignedBranchId: Nullable<int64>;
145
130
  readonly AssignedDepartmentId: Nullable<int64>;
146
131
  readonly ReportsToId: Nullable<int64>;
@@ -148,52 +133,15 @@ export declare class EmployeeRetrievalModel extends Record implements IEquatable
148
133
  readonly FirstName: string;
149
134
  readonly LastName: string;
150
135
  readonly FullName: string;
151
- constructor(Id: Nullable<int64>, CompanyId: Nullable<int64>, AssignedBranchId: Nullable<int64>, AssignedDepartmentId: Nullable<int64>, ReportsToId: Nullable<int64>, JobTitle: string, FirstName: string, LastName: string, 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);
152
137
  }
153
138
  export declare function EmployeeRetrievalModel_$reflection(): TypeInfo;
154
- export declare class TimeZoneModel extends Record implements IEquatable<TimeZoneModel> {
155
- readonly Id: string;
156
- readonly Name: string;
157
- readonly CountryCode: string;
158
- readonly CurrentOffset: Nullable<number>;
159
- constructor(Id: string, Name: string, CountryCode: string, CurrentOffset: Nullable<number>);
160
- }
161
- export declare function TimeZoneModel_$reflection(): TypeInfo;
162
- export declare class PartyModel extends Record implements IEquatable<PartyModel>, IComparable<PartyModel> {
163
- readonly LongName: string;
164
- readonly ShortName: string;
165
- constructor(LongName: string, ShortName: string);
166
- }
167
- export declare function PartyModel_$reflection(): TypeInfo;
168
- export declare class LicenseTermsModel extends Record implements IEquatable<LicenseTermsModel> {
169
- readonly Licensor: PartyModel;
170
- readonly Licensee: PartyModel;
171
- readonly NotBefore: Nullable<Date>;
172
- readonly NotAfter: Nullable<Date>;
173
- constructor(Licensor: PartyModel, Licensee: PartyModel, NotBefore: Nullable<Date>, NotAfter: Nullable<Date>);
174
- }
175
- export declare function LicenseTermsModel_$reflection(): TypeInfo;
176
- export declare class LicenseResponseModel$1<TEntitlementsModel> extends Record implements IEquatable<LicenseResponseModel$1<TEntitlementsModel>> {
177
- readonly Terms: LicenseTermsModel;
178
- readonly Entitlements: TEntitlementsModel;
179
- constructor(Terms: LicenseTermsModel, Entitlements: TEntitlementsModel);
180
- }
181
- export declare function LicenseResponseModel$1_$reflection(gen0: TypeInfo): TypeInfo;
182
- export declare class PagingResponseModel$1<T> extends Record implements IEquatable<PagingResponseModel$1<T>> {
183
- readonly PageNumber: Nullable<int32>;
184
- readonly PageSize: Nullable<int32>;
185
- readonly Items: any;
186
- readonly TotalItems: Nullable<int64>;
187
- readonly TotalPages: Nullable<int64>;
188
- constructor(PageNumber: Nullable<int32>, PageSize: Nullable<int32>, Items: any, TotalItems: Nullable<int64>, TotalPages: Nullable<int64>);
189
- }
190
- export declare function PagingResponseModel$1_$reflection(gen0: TypeInfo): TypeInfo;
191
139
  export declare class SystemEntitlementsModel extends Record implements IEquatable<SystemEntitlementsModel> {
192
140
  readonly EnvironmentName: string;
193
141
  readonly EnvironmentKind: string;
194
142
  readonly Countries: any;
195
143
  readonly TimeZones: any;
196
- readonly MaximumCompanyCount: Nullable<int32>;
197
- constructor(EnvironmentName: string, EnvironmentKind: string, Countries: any, TimeZones: any, MaximumCompanyCount: Nullable<int32>);
144
+ readonly MaximumCompanyCount: int32;
145
+ constructor(EnvironmentName: string, EnvironmentKind: string, Countries: any, TimeZones: any, MaximumCompanyCount: int32);
198
146
  }
199
147
  export declare function SystemEntitlementsModel_$reflection(): TypeInfo;
@@ -0,0 +1,256 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SystemEntitlementsModel = exports.EmployeeRetrievalModel = exports.EmployeeQueryRequestModel = exports.EmployeePagingRequestModel = exports.EmployeeModificationModel = exports.EmployeeManagementModel = exports.DepartmentRetrievalModel = exports.DepartmentQueryRequestModel = exports.DepartmentModificationModel = exports.CompanySettingsRetrievalModel = exports.CompanySettingsModificationModel = exports.CompanyRetrievalModel = exports.CompanyModificationModel = exports.CompanyEntitlementsModel = exports.BranchRetrievalModel = exports.BranchQueryRequestModel = exports.BranchModificationModel = exports.IdentityClientRetrievalModel = void 0;
4
+ exports.IdentityClientRetrievalModel_$reflection = IdentityClientRetrievalModel_$reflection;
5
+ exports.BranchModificationModel_$reflection = BranchModificationModel_$reflection;
6
+ exports.BranchQueryRequestModel_$reflection = BranchQueryRequestModel_$reflection;
7
+ exports.BranchRetrievalModel_$reflection = BranchRetrievalModel_$reflection;
8
+ exports.CompanyEntitlementsModel_$reflection = CompanyEntitlementsModel_$reflection;
9
+ exports.CompanyModificationModel_$reflection = CompanyModificationModel_$reflection;
10
+ exports.CompanyRetrievalModel_$reflection = CompanyRetrievalModel_$reflection;
11
+ exports.CompanySettingsModificationModel_$reflection = CompanySettingsModificationModel_$reflection;
12
+ exports.CompanySettingsRetrievalModel_$reflection = CompanySettingsRetrievalModel_$reflection;
13
+ exports.DepartmentModificationModel_$reflection = DepartmentModificationModel_$reflection;
14
+ exports.DepartmentQueryRequestModel_$reflection = DepartmentQueryRequestModel_$reflection;
15
+ exports.DepartmentRetrievalModel_$reflection = DepartmentRetrievalModel_$reflection;
16
+ exports.EmployeeManagementModel_$reflection = EmployeeManagementModel_$reflection;
17
+ exports.EmployeeModificationModel_$reflection = EmployeeModificationModel_$reflection;
18
+ exports.EmployeePagingRequestModel_$reflection = EmployeePagingRequestModel_$reflection;
19
+ exports.EmployeeQueryRequestModel_$reflection = EmployeeQueryRequestModel_$reflection;
20
+ exports.EmployeeRetrievalModel_$reflection = EmployeeRetrievalModel_$reflection;
21
+ exports.SystemEntitlementsModel_$reflection = SystemEntitlementsModel_$reflection;
22
+ const Types_ts_1 = require("../../fable_modules/fable-library-ts.5.0.0-rc.1/Types.js");
23
+ const Reflection_ts_1 = require("../../fable_modules/fable-library-ts.5.0.0-rc.1/Reflection.js");
24
+ const SharedModels_ts_1 = require("./SharedModels.js");
25
+ class IdentityClientRetrievalModel extends Types_ts_1.Record {
26
+ constructor(ClientId, ClientName, TenantId) {
27
+ super();
28
+ this.ClientId = ClientId;
29
+ this.ClientName = ClientName;
30
+ this.TenantId = TenantId;
31
+ }
32
+ }
33
+ exports.IdentityClientRetrievalModel = IdentityClientRetrievalModel;
34
+ function IdentityClientRetrievalModel_$reflection() {
35
+ return (0, Reflection_ts_1.record_type)("Fossa.Bridge.Models.ApiModels.IdentityClientRetrievalModel", [], IdentityClientRetrievalModel, () => [["ClientId", (0, Reflection_ts_1.option_type)((0, Reflection_ts_1.class_type)("System.Guid"))], ["ClientName", Reflection_ts_1.string_type], ["TenantId", (0, Reflection_ts_1.option_type)((0, Reflection_ts_1.class_type)("System.Guid"))]]);
36
+ }
37
+ class BranchModificationModel extends Types_ts_1.Record {
38
+ constructor(Name, TimeZoneId, Address) {
39
+ super();
40
+ this.Name = Name;
41
+ this.TimeZoneId = TimeZoneId;
42
+ this.Address = Address;
43
+ }
44
+ }
45
+ exports.BranchModificationModel = BranchModificationModel;
46
+ function BranchModificationModel_$reflection() {
47
+ return (0, Reflection_ts_1.record_type)("Fossa.Bridge.Models.ApiModels.BranchModificationModel", [], BranchModificationModel, () => [["Name", Reflection_ts_1.string_type], ["TimeZoneId", Reflection_ts_1.string_type], ["Address", (0, SharedModels_ts_1.AddressModel_$reflection)()]]);
48
+ }
49
+ class BranchQueryRequestModel extends Types_ts_1.Record {
50
+ constructor(Id, Search, PageNumber, PageSize) {
51
+ super();
52
+ this.Id = Id;
53
+ this.Search = Search;
54
+ this.PageNumber = PageNumber;
55
+ this.PageSize = PageSize;
56
+ }
57
+ }
58
+ exports.BranchQueryRequestModel = BranchQueryRequestModel;
59
+ function BranchQueryRequestModel_$reflection() {
60
+ return (0, Reflection_ts_1.record_type)("Fossa.Bridge.Models.ApiModels.BranchQueryRequestModel", [], BranchQueryRequestModel, () => [["Id", (0, Reflection_ts_1.class_type)("System.Collections.Generic.IReadOnlyList`1", [Reflection_ts_1.int64_type])], ["Search", Reflection_ts_1.string_type], ["PageNumber", (0, Reflection_ts_1.option_type)(Reflection_ts_1.int32_type)], ["PageSize", (0, Reflection_ts_1.option_type)(Reflection_ts_1.int32_type)]]);
61
+ }
62
+ class BranchRetrievalModel extends Types_ts_1.Record {
63
+ constructor(Id, CompanyId, Name, TimeZoneId, Address) {
64
+ super();
65
+ this.Id = Id;
66
+ this.CompanyId = CompanyId;
67
+ this.Name = Name;
68
+ this.TimeZoneId = TimeZoneId;
69
+ this.Address = Address;
70
+ }
71
+ }
72
+ exports.BranchRetrievalModel = BranchRetrievalModel;
73
+ function BranchRetrievalModel_$reflection() {
74
+ return (0, Reflection_ts_1.record_type)("Fossa.Bridge.Models.ApiModels.BranchRetrievalModel", [], BranchRetrievalModel, () => [["Id", Reflection_ts_1.int64_type], ["CompanyId", Reflection_ts_1.int64_type], ["Name", Reflection_ts_1.string_type], ["TimeZoneId", Reflection_ts_1.string_type], ["Address", (0, SharedModels_ts_1.AddressModel_$reflection)()]]);
75
+ }
76
+ class CompanyEntitlementsModel extends Types_ts_1.Record {
77
+ constructor(CompanyId, MaximumBranchCount, MaximumEmployeeCount, MaximumDepartmentCount) {
78
+ super();
79
+ this.CompanyId = CompanyId;
80
+ this.MaximumBranchCount = (MaximumBranchCount | 0);
81
+ this.MaximumEmployeeCount = (MaximumEmployeeCount | 0);
82
+ this.MaximumDepartmentCount = (MaximumDepartmentCount | 0);
83
+ }
84
+ }
85
+ exports.CompanyEntitlementsModel = CompanyEntitlementsModel;
86
+ function CompanyEntitlementsModel_$reflection() {
87
+ return (0, Reflection_ts_1.record_type)("Fossa.Bridge.Models.ApiModels.CompanyEntitlementsModel", [], CompanyEntitlementsModel, () => [["CompanyId", Reflection_ts_1.int64_type], ["MaximumBranchCount", Reflection_ts_1.int32_type], ["MaximumEmployeeCount", Reflection_ts_1.int32_type], ["MaximumDepartmentCount", Reflection_ts_1.int32_type]]);
88
+ }
89
+ class CompanyModificationModel extends Types_ts_1.Record {
90
+ constructor(Name, CountryCode) {
91
+ super();
92
+ this.Name = Name;
93
+ this.CountryCode = CountryCode;
94
+ }
95
+ }
96
+ exports.CompanyModificationModel = CompanyModificationModel;
97
+ function CompanyModificationModel_$reflection() {
98
+ return (0, Reflection_ts_1.record_type)("Fossa.Bridge.Models.ApiModels.CompanyModificationModel", [], CompanyModificationModel, () => [["Name", Reflection_ts_1.string_type], ["CountryCode", Reflection_ts_1.string_type]]);
99
+ }
100
+ class CompanyRetrievalModel extends Types_ts_1.Record {
101
+ constructor(Id, Name, CountryCode) {
102
+ super();
103
+ this.Id = Id;
104
+ this.Name = Name;
105
+ this.CountryCode = CountryCode;
106
+ }
107
+ }
108
+ exports.CompanyRetrievalModel = CompanyRetrievalModel;
109
+ function CompanyRetrievalModel_$reflection() {
110
+ return (0, Reflection_ts_1.record_type)("Fossa.Bridge.Models.ApiModels.CompanyRetrievalModel", [], CompanyRetrievalModel, () => [["Id", Reflection_ts_1.int64_type], ["Name", Reflection_ts_1.string_type], ["CountryCode", Reflection_ts_1.string_type]]);
111
+ }
112
+ class CompanySettingsModificationModel extends Types_ts_1.Record {
113
+ constructor(ColorSchemeId) {
114
+ super();
115
+ this.ColorSchemeId = ColorSchemeId;
116
+ }
117
+ }
118
+ exports.CompanySettingsModificationModel = CompanySettingsModificationModel;
119
+ function CompanySettingsModificationModel_$reflection() {
120
+ return (0, Reflection_ts_1.record_type)("Fossa.Bridge.Models.ApiModels.CompanySettingsModificationModel", [], CompanySettingsModificationModel, () => [["ColorSchemeId", Reflection_ts_1.string_type]]);
121
+ }
122
+ class CompanySettingsRetrievalModel extends Types_ts_1.Record {
123
+ constructor(Id, CompanyId, ColorSchemeId) {
124
+ super();
125
+ this.Id = Id;
126
+ this.CompanyId = CompanyId;
127
+ this.ColorSchemeId = ColorSchemeId;
128
+ }
129
+ }
130
+ exports.CompanySettingsRetrievalModel = CompanySettingsRetrievalModel;
131
+ function CompanySettingsRetrievalModel_$reflection() {
132
+ return (0, Reflection_ts_1.record_type)("Fossa.Bridge.Models.ApiModels.CompanySettingsRetrievalModel", [], CompanySettingsRetrievalModel, () => [["Id", Reflection_ts_1.int64_type], ["CompanyId", Reflection_ts_1.int64_type], ["ColorSchemeId", Reflection_ts_1.string_type]]);
133
+ }
134
+ class DepartmentModificationModel extends Types_ts_1.Record {
135
+ constructor(Name, ParentDepartmentId, ManagerId) {
136
+ super();
137
+ this.Name = Name;
138
+ this.ParentDepartmentId = ParentDepartmentId;
139
+ this.ManagerId = ManagerId;
140
+ }
141
+ }
142
+ exports.DepartmentModificationModel = DepartmentModificationModel;
143
+ function DepartmentModificationModel_$reflection() {
144
+ return (0, Reflection_ts_1.record_type)("Fossa.Bridge.Models.ApiModels.DepartmentModificationModel", [], DepartmentModificationModel, () => [["Name", Reflection_ts_1.string_type], ["ParentDepartmentId", (0, Reflection_ts_1.option_type)(Reflection_ts_1.int64_type)], ["ManagerId", (0, Reflection_ts_1.option_type)(Reflection_ts_1.int64_type)]]);
145
+ }
146
+ class DepartmentQueryRequestModel extends Types_ts_1.Record {
147
+ constructor(Id, Search, PageNumber, PageSize) {
148
+ super();
149
+ this.Id = Id;
150
+ this.Search = Search;
151
+ this.PageNumber = PageNumber;
152
+ this.PageSize = PageSize;
153
+ }
154
+ }
155
+ exports.DepartmentQueryRequestModel = DepartmentQueryRequestModel;
156
+ function DepartmentQueryRequestModel_$reflection() {
157
+ return (0, Reflection_ts_1.record_type)("Fossa.Bridge.Models.ApiModels.DepartmentQueryRequestModel", [], DepartmentQueryRequestModel, () => [["Id", (0, Reflection_ts_1.class_type)("System.Collections.Generic.IReadOnlyList`1", [Reflection_ts_1.int64_type])], ["Search", Reflection_ts_1.string_type], ["PageNumber", (0, Reflection_ts_1.option_type)(Reflection_ts_1.int32_type)], ["PageSize", (0, Reflection_ts_1.option_type)(Reflection_ts_1.int32_type)]]);
158
+ }
159
+ class DepartmentRetrievalModel extends Types_ts_1.Record {
160
+ constructor(Id, Name, ParentDepartmentId, ManagerId) {
161
+ super();
162
+ this.Id = Id;
163
+ this.Name = Name;
164
+ this.ParentDepartmentId = ParentDepartmentId;
165
+ this.ManagerId = ManagerId;
166
+ }
167
+ }
168
+ exports.DepartmentRetrievalModel = DepartmentRetrievalModel;
169
+ function DepartmentRetrievalModel_$reflection() {
170
+ return (0, Reflection_ts_1.record_type)("Fossa.Bridge.Models.ApiModels.DepartmentRetrievalModel", [], DepartmentRetrievalModel, () => [["Id", Reflection_ts_1.int64_type], ["Name", Reflection_ts_1.string_type], ["ParentDepartmentId", (0, Reflection_ts_1.option_type)(Reflection_ts_1.int64_type)], ["ManagerId", (0, Reflection_ts_1.option_type)(Reflection_ts_1.int64_type)]]);
171
+ }
172
+ class EmployeeManagementModel extends Types_ts_1.Record {
173
+ constructor(AssignedBranchId, AssignedDepartmentId, ReportsToId, JobTitle) {
174
+ super();
175
+ this.AssignedBranchId = AssignedBranchId;
176
+ this.AssignedDepartmentId = AssignedDepartmentId;
177
+ this.ReportsToId = ReportsToId;
178
+ this.JobTitle = JobTitle;
179
+ }
180
+ }
181
+ exports.EmployeeManagementModel = EmployeeManagementModel;
182
+ function EmployeeManagementModel_$reflection() {
183
+ return (0, Reflection_ts_1.record_type)("Fossa.Bridge.Models.ApiModels.EmployeeManagementModel", [], EmployeeManagementModel, () => [["AssignedBranchId", (0, Reflection_ts_1.option_type)(Reflection_ts_1.int64_type)], ["AssignedDepartmentId", (0, Reflection_ts_1.option_type)(Reflection_ts_1.int64_type)], ["ReportsToId", (0, Reflection_ts_1.option_type)(Reflection_ts_1.int64_type)], ["JobTitle", Reflection_ts_1.string_type]]);
184
+ }
185
+ class EmployeeModificationModel extends Types_ts_1.Record {
186
+ constructor(FirstName, LastName, FullName) {
187
+ super();
188
+ this.FirstName = FirstName;
189
+ this.LastName = LastName;
190
+ this.FullName = FullName;
191
+ }
192
+ }
193
+ exports.EmployeeModificationModel = EmployeeModificationModel;
194
+ function EmployeeModificationModel_$reflection() {
195
+ return (0, Reflection_ts_1.record_type)("Fossa.Bridge.Models.ApiModels.EmployeeModificationModel", [], EmployeeModificationModel, () => [["FirstName", Reflection_ts_1.string_type], ["LastName", Reflection_ts_1.string_type], ["FullName", Reflection_ts_1.string_type]]);
196
+ }
197
+ class EmployeePagingRequestModel extends Types_ts_1.Record {
198
+ constructor(Search, PageNumber, PageSize) {
199
+ super();
200
+ this.Search = Search;
201
+ this.PageNumber = PageNumber;
202
+ this.PageSize = PageSize;
203
+ }
204
+ }
205
+ exports.EmployeePagingRequestModel = EmployeePagingRequestModel;
206
+ function EmployeePagingRequestModel_$reflection() {
207
+ return (0, Reflection_ts_1.record_type)("Fossa.Bridge.Models.ApiModels.EmployeePagingRequestModel", [], EmployeePagingRequestModel, () => [["Search", Reflection_ts_1.string_type], ["PageNumber", (0, Reflection_ts_1.option_type)(Reflection_ts_1.int32_type)], ["PageSize", (0, Reflection_ts_1.option_type)(Reflection_ts_1.int32_type)]]);
208
+ }
209
+ class EmployeeQueryRequestModel extends Types_ts_1.Record {
210
+ constructor(Id, Search, PageNumber, PageSize, ReportsToId, TopLevelOnly) {
211
+ super();
212
+ this.Id = Id;
213
+ this.Search = Search;
214
+ this.PageNumber = PageNumber;
215
+ this.PageSize = PageSize;
216
+ this.ReportsToId = ReportsToId;
217
+ this.TopLevelOnly = TopLevelOnly;
218
+ }
219
+ }
220
+ exports.EmployeeQueryRequestModel = EmployeeQueryRequestModel;
221
+ function EmployeeQueryRequestModel_$reflection() {
222
+ return (0, Reflection_ts_1.record_type)("Fossa.Bridge.Models.ApiModels.EmployeeQueryRequestModel", [], EmployeeQueryRequestModel, () => [["Id", (0, Reflection_ts_1.class_type)("System.Collections.Generic.IReadOnlyList`1", [Reflection_ts_1.int64_type])], ["Search", Reflection_ts_1.string_type], ["PageNumber", (0, Reflection_ts_1.option_type)(Reflection_ts_1.int32_type)], ["PageSize", (0, Reflection_ts_1.option_type)(Reflection_ts_1.int32_type)], ["ReportsToId", (0, Reflection_ts_1.option_type)(Reflection_ts_1.int64_type)], ["TopLevelOnly", (0, Reflection_ts_1.option_type)(Reflection_ts_1.bool_type)]]);
223
+ }
224
+ class EmployeeRetrievalModel extends Types_ts_1.Record {
225
+ constructor(Id, CompanyId, AssignedBranchId, AssignedDepartmentId, ReportsToId, JobTitle, FirstName, LastName, FullName) {
226
+ super();
227
+ this.Id = Id;
228
+ this.CompanyId = CompanyId;
229
+ this.AssignedBranchId = AssignedBranchId;
230
+ this.AssignedDepartmentId = AssignedDepartmentId;
231
+ this.ReportsToId = ReportsToId;
232
+ this.JobTitle = JobTitle;
233
+ this.FirstName = FirstName;
234
+ this.LastName = LastName;
235
+ this.FullName = FullName;
236
+ }
237
+ }
238
+ exports.EmployeeRetrievalModel = EmployeeRetrievalModel;
239
+ function EmployeeRetrievalModel_$reflection() {
240
+ return (0, Reflection_ts_1.record_type)("Fossa.Bridge.Models.ApiModels.EmployeeRetrievalModel", [], EmployeeRetrievalModel, () => [["Id", Reflection_ts_1.int64_type], ["CompanyId", Reflection_ts_1.int64_type], ["AssignedBranchId", (0, Reflection_ts_1.option_type)(Reflection_ts_1.int64_type)], ["AssignedDepartmentId", (0, Reflection_ts_1.option_type)(Reflection_ts_1.int64_type)], ["ReportsToId", (0, Reflection_ts_1.option_type)(Reflection_ts_1.int64_type)], ["JobTitle", Reflection_ts_1.string_type], ["FirstName", Reflection_ts_1.string_type], ["LastName", Reflection_ts_1.string_type], ["FullName", Reflection_ts_1.string_type]]);
241
+ }
242
+ class SystemEntitlementsModel extends Types_ts_1.Record {
243
+ constructor(EnvironmentName, EnvironmentKind, Countries, TimeZones, MaximumCompanyCount) {
244
+ super();
245
+ this.EnvironmentName = EnvironmentName;
246
+ this.EnvironmentKind = EnvironmentKind;
247
+ this.Countries = Countries;
248
+ this.TimeZones = TimeZones;
249
+ this.MaximumCompanyCount = (MaximumCompanyCount | 0);
250
+ }
251
+ }
252
+ exports.SystemEntitlementsModel = SystemEntitlementsModel;
253
+ function SystemEntitlementsModel_$reflection() {
254
+ return (0, Reflection_ts_1.record_type)("Fossa.Bridge.Models.ApiModels.SystemEntitlementsModel", [], SystemEntitlementsModel, () => [["EnvironmentName", Reflection_ts_1.string_type], ["EnvironmentKind", Reflection_ts_1.string_type], ["Countries", (0, Reflection_ts_1.class_type)("System.Collections.Generic.IReadOnlyList`1", [(0, SharedModels_ts_1.CountryModel_$reflection)()])], ["TimeZones", (0, Reflection_ts_1.class_type)("System.Collections.Generic.IReadOnlyList`1", [(0, SharedModels_ts_1.TimeZoneModel_$reflection)()])], ["MaximumCompanyCount", Reflection_ts_1.int32_type]]);
255
+ }
256
+ //# 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_modules/fable-library-ts.5.0.0-rc.1/Types.ts";
2
+ import { Nullable, IComparable, IEquatable } from "../../fable_modules/fable-library-ts.5.0.0-rc.1/Util.ts";
3
+ import { TypeInfo } from "../../fable_modules/fable-library-ts.5.0.0-rc.1/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,74 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.LicenseTermsModel = exports.PartyModel = exports.TimeZoneModel = exports.CountryModel = exports.AddressModel = void 0;
4
+ exports.AddressModel_$reflection = AddressModel_$reflection;
5
+ exports.CountryModel_$reflection = CountryModel_$reflection;
6
+ exports.TimeZoneModel_$reflection = TimeZoneModel_$reflection;
7
+ exports.PartyModel_$reflection = PartyModel_$reflection;
8
+ exports.LicenseTermsModel_$reflection = LicenseTermsModel_$reflection;
9
+ const Types_ts_1 = require("../../fable_modules/fable-library-ts.5.0.0-rc.1/Types.js");
10
+ const Reflection_ts_1 = require("../../fable_modules/fable-library-ts.5.0.0-rc.1/Reflection.js");
11
+ class AddressModel extends Types_ts_1.Record {
12
+ constructor(Line1, Line2, City, Subdivision, PostalCode, CountryCode) {
13
+ super();
14
+ this.Line1 = Line1;
15
+ this.Line2 = Line2;
16
+ this.City = City;
17
+ this.Subdivision = Subdivision;
18
+ this.PostalCode = PostalCode;
19
+ this.CountryCode = CountryCode;
20
+ }
21
+ }
22
+ exports.AddressModel = AddressModel;
23
+ function AddressModel_$reflection() {
24
+ return (0, Reflection_ts_1.record_type)("Fossa.Bridge.Models.ApiModels.AddressModel", [], AddressModel, () => [["Line1", Reflection_ts_1.string_type], ["Line2", Reflection_ts_1.string_type], ["City", Reflection_ts_1.string_type], ["Subdivision", Reflection_ts_1.string_type], ["PostalCode", Reflection_ts_1.string_type], ["CountryCode", Reflection_ts_1.string_type]]);
25
+ }
26
+ class CountryModel extends Types_ts_1.Record {
27
+ constructor(Name, Code) {
28
+ super();
29
+ this.Name = Name;
30
+ this.Code = Code;
31
+ }
32
+ }
33
+ exports.CountryModel = CountryModel;
34
+ function CountryModel_$reflection() {
35
+ return (0, Reflection_ts_1.record_type)("Fossa.Bridge.Models.ApiModels.CountryModel", [], CountryModel, () => [["Name", Reflection_ts_1.string_type], ["Code", Reflection_ts_1.string_type]]);
36
+ }
37
+ class TimeZoneModel extends Types_ts_1.Record {
38
+ constructor(Id, Name, CountryCode, CurrentOffset) {
39
+ super();
40
+ this.Id = Id;
41
+ this.Name = Name;
42
+ this.CountryCode = CountryCode;
43
+ this.CurrentOffset = CurrentOffset;
44
+ }
45
+ }
46
+ exports.TimeZoneModel = TimeZoneModel;
47
+ function TimeZoneModel_$reflection() {
48
+ return (0, Reflection_ts_1.record_type)("Fossa.Bridge.Models.ApiModels.TimeZoneModel", [], TimeZoneModel, () => [["Id", Reflection_ts_1.string_type], ["Name", Reflection_ts_1.string_type], ["CountryCode", Reflection_ts_1.string_type], ["CurrentOffset", (0, Reflection_ts_1.option_type)((0, Reflection_ts_1.class_type)("System.TimeSpan"))]]);
49
+ }
50
+ class PartyModel extends Types_ts_1.Record {
51
+ constructor(LongName, ShortName) {
52
+ super();
53
+ this.LongName = LongName;
54
+ this.ShortName = ShortName;
55
+ }
56
+ }
57
+ exports.PartyModel = PartyModel;
58
+ function PartyModel_$reflection() {
59
+ return (0, Reflection_ts_1.record_type)("Fossa.Bridge.Models.ApiModels.PartyModel", [], PartyModel, () => [["LongName", Reflection_ts_1.string_type], ["ShortName", Reflection_ts_1.string_type]]);
60
+ }
61
+ class LicenseTermsModel extends Types_ts_1.Record {
62
+ constructor(Licensor, Licensee, NotBefore, NotAfter) {
63
+ super();
64
+ this.Licensor = Licensor;
65
+ this.Licensee = Licensee;
66
+ this.NotBefore = NotBefore;
67
+ this.NotAfter = NotAfter;
68
+ }
69
+ }
70
+ exports.LicenseTermsModel = LicenseTermsModel;
71
+ function LicenseTermsModel_$reflection() {
72
+ return (0, Reflection_ts_1.record_type)("Fossa.Bridge.Models.ApiModels.LicenseTermsModel", [], LicenseTermsModel, () => [["Licensor", PartyModel_$reflection()], ["Licensee", PartyModel_$reflection()], ["NotBefore", (0, Reflection_ts_1.option_type)((0, Reflection_ts_1.class_type)("System.DateTimeOffset"))], ["NotAfter", (0, Reflection_ts_1.option_type)((0, Reflection_ts_1.class_type)("System.DateTimeOffset"))]]);
73
+ }
74
+ //# sourceMappingURL=SharedModels.js.map