mobicloud-core 1.0.204 → 1.0.205

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.
@@ -331,6 +331,11 @@ export declare enum ProductConsumptionJournalStatus {
331
331
  Open = "Open",
332
332
  Closed = "Closed"
333
333
  }
334
+ export declare enum TimeForecastStatus {
335
+ Created = "Created",
336
+ Approved = "Approved",
337
+ Closed = "Closed"
338
+ }
334
339
  export declare enum ProductConsumptionItemType {
335
340
  None = "None",
336
341
  Product = "Product"
@@ -1,6 +1,9 @@
1
+ import { Beacon } from "./beacon";
1
2
  import { DomainObject } from "./domain-object";
2
3
  export declare class GatewayPrinter extends DomainObject {
3
4
  PrinterId?: string | undefined;
5
+ BeaconId?: string | undefined;
6
+ Beacon?: Beacon | undefined;
4
7
  GatewayInstallationName?: string | undefined;
5
8
  PrinterName?: string | undefined;
6
9
  }
@@ -2,10 +2,11 @@ import { DomainObject } from "./domain-object";
2
2
  import { Employee } from "./employee";
3
3
  import { TimeCategory } from "./time-category";
4
4
  import { Project } from "./project";
5
- import { UserType } from "./all.enum";
5
+ import { TimeForecastStatus, UserType } from "./all.enum";
6
6
  export declare class TimeForecast extends DomainObject {
7
7
  ForecastId?: string | undefined;
8
8
  Date?: Date | undefined;
9
+ Status?: TimeForecastStatus | undefined;
9
10
  Start?: Date | undefined;
10
11
  End?: Date | undefined;
11
12
  EmployeeId?: string | undefined;
@@ -1318,6 +1318,12 @@
1318
1318
  ProductConsumptionJournalStatus["Open"] = "Open";
1319
1319
  ProductConsumptionJournalStatus["Closed"] = "Closed";
1320
1320
  })(exports.ProductConsumptionJournalStatus || (exports.ProductConsumptionJournalStatus = {}));
1321
+ exports.TimeForecastStatus = void 0;
1322
+ (function (TimeForecastStatus) {
1323
+ TimeForecastStatus["Created"] = "Created";
1324
+ TimeForecastStatus["Approved"] = "Approved";
1325
+ TimeForecastStatus["Closed"] = "Closed";
1326
+ })(exports.TimeForecastStatus || (exports.TimeForecastStatus = {}));
1321
1327
  exports.ProductConsumptionItemType = void 0;
1322
1328
  (function (ProductConsumptionItemType) {
1323
1329
  ProductConsumptionItemType["None"] = "None";