waltronics-types 1.0.21 → 1.0.22

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.
@@ -1,5 +1,5 @@
1
1
  import { AppointmentLabels } from "./Label";
2
- export type AppointmentEntry = {
2
+ export type AppointmentRow = {
3
3
  AppointmentID: string;
4
4
  CustomerID: string;
5
5
  FName: string;
@@ -21,7 +21,7 @@ export type AppointmentEntry = {
21
21
  LicensePlate: string;
22
22
  Labels: AppointmentLabels;
23
23
  };
24
- export type AppointmentList = {
24
+ export type AppointmentsTable = {
25
25
  Count: number;
26
- Appointments: Array<AppointmentEntry>;
26
+ Appointments: Array<AppointmentRow>;
27
27
  };
package/dist/Label.d.ts CHANGED
@@ -2,7 +2,7 @@ import { ID, UUID } from "./Types";
2
2
  export type Label = {
3
3
  LabelID: ID;
4
4
  Label: string;
5
- Value: boolean | null;
5
+ Value: number | null;
6
6
  AppointmentID: UUID;
7
7
  };
8
8
  export type AppointmentLabels = {
package/dist/Note.d.ts CHANGED
@@ -11,7 +11,7 @@ export type Note = {
11
11
  AppointmentID: UUID;
12
12
  Head: string;
13
13
  Body: string;
14
- ShowCustomer: boolean;
14
+ ShowCustomer: number;
15
15
  CreationDate: Date;
16
16
  UpdationDate: Date;
17
17
  Sharees: Array<{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waltronics-types",
3
- "version": "1.0.21",
3
+ "version": "1.0.22",
4
4
  "description": "Contains the types used in the Waltronics application.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",