@spytecgps/nova-orm 1.0.5 → 1.0.7

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.
@@ -14,6 +14,8 @@ export declare class SVRPairingRequest {
14
14
  mainDevicePairCommandsQueued: boolean;
15
15
  mainDevicePairCommandsConfirmed: boolean;
16
16
  readyToPair: boolean;
17
- paired: boolean;
17
+ installationOK: boolean;
18
+ installationFailed: boolean;
19
+ pairingLost: boolean;
18
20
  notes: string;
19
21
  }
@@ -25,7 +25,9 @@ let SVRPairingRequest = class SVRPairingRequest {
25
25
  mainDevicePairCommandsQueued;
26
26
  mainDevicePairCommandsConfirmed;
27
27
  readyToPair;
28
- paired;
28
+ installationOK;
29
+ installationFailed;
30
+ pairingLost;
29
31
  notes;
30
32
  };
31
33
  __decorate([
@@ -56,6 +58,7 @@ __decorate([
56
58
  Column('tinyint', {
57
59
  name: 'ghostConfigured',
58
60
  width: 1,
61
+ default: 0,
59
62
  transformer: new BoolToNumberTransformer(),
60
63
  }),
61
64
  __metadata("design:type", Boolean)
@@ -64,6 +67,7 @@ __decorate([
64
67
  Column('tinyint', {
65
68
  name: 'ghostAlreadyReported',
66
69
  width: 1,
70
+ default: 0,
67
71
  transformer: new BoolToNumberTransformer(),
68
72
  }),
69
73
  __metadata("design:type", Boolean)
@@ -72,6 +76,7 @@ __decorate([
72
76
  Column('tinyint', {
73
77
  name: 'mainDeviceWithCorrectBBFW',
74
78
  width: 1,
79
+ default: 0,
75
80
  transformer: new BoolToNumberTransformer(),
76
81
  }),
77
82
  __metadata("design:type", Boolean)
@@ -80,6 +85,7 @@ __decorate([
80
85
  Column('tinyint', {
81
86
  name: 'mainDeviceWithCorrectMCUFW',
82
87
  width: 1,
88
+ default: 0,
83
89
  transformer: new BoolToNumberTransformer(),
84
90
  }),
85
91
  __metadata("design:type", Boolean)
@@ -88,6 +94,7 @@ __decorate([
88
94
  Column('tinyint', {
89
95
  name: 'ghostDeviceWithCorrectBBFW',
90
96
  width: 1,
97
+ default: 0,
91
98
  transformer: new BoolToNumberTransformer(),
92
99
  }),
93
100
  __metadata("design:type", Boolean)
@@ -96,6 +103,7 @@ __decorate([
96
103
  Column('tinyint', {
97
104
  name: 'ghostDeviceWithCorrectMCUFW',
98
105
  width: 1,
106
+ default: 0,
99
107
  transformer: new BoolToNumberTransformer(),
100
108
  }),
101
109
  __metadata("design:type", Boolean)
@@ -104,6 +112,7 @@ __decorate([
104
112
  Column('tinyint', {
105
113
  name: 'mainDevicePairCommandsQueued',
106
114
  width: 1,
115
+ default: 0,
107
116
  transformer: new BoolToNumberTransformer(),
108
117
  }),
109
118
  __metadata("design:type", Boolean)
@@ -112,6 +121,7 @@ __decorate([
112
121
  Column('tinyint', {
113
122
  name: 'mainDevicePairCommandsConfirmed',
114
123
  width: 1,
124
+ default: 0,
115
125
  transformer: new BoolToNumberTransformer(),
116
126
  }),
117
127
  __metadata("design:type", Boolean)
@@ -120,18 +130,38 @@ __decorate([
120
130
  Column('tinyint', {
121
131
  name: 'readyToPair',
122
132
  width: 1,
133
+ default: 0,
123
134
  transformer: new BoolToNumberTransformer(),
124
135
  }),
125
136
  __metadata("design:type", Boolean)
126
137
  ], SVRPairingRequest.prototype, "readyToPair", void 0);
127
138
  __decorate([
128
139
  Column('tinyint', {
129
- name: 'paired',
140
+ name: 'installationOK',
130
141
  width: 1,
142
+ default: 0,
131
143
  transformer: new BoolToNumberTransformer(),
132
144
  }),
133
145
  __metadata("design:type", Boolean)
134
- ], SVRPairingRequest.prototype, "paired", void 0);
146
+ ], SVRPairingRequest.prototype, "installationOK", void 0);
147
+ __decorate([
148
+ Column('tinyint', {
149
+ name: 'installationFailed',
150
+ width: 1,
151
+ default: 0,
152
+ transformer: new BoolToNumberTransformer(),
153
+ }),
154
+ __metadata("design:type", Boolean)
155
+ ], SVRPairingRequest.prototype, "installationFailed", void 0);
156
+ __decorate([
157
+ Column('tinyint', {
158
+ name: 'pairingLost',
159
+ width: 1,
160
+ default: 0,
161
+ transformer: new BoolToNumberTransformer(),
162
+ }),
163
+ __metadata("design:type", Boolean)
164
+ ], SVRPairingRequest.prototype, "pairingLost", void 0);
135
165
  __decorate([
136
166
  Column('varchar', { name: 'notes', nullable: true, length: 1000 }),
137
167
  __metadata("design:type", String)