@blueid/access-proto 0.92.0 → 0.95.0

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.
package/BlueCore.proto CHANGED
@@ -184,6 +184,11 @@ enum BlueReturnCode {
184
184
  SdkDecodeJsonFailed = -414;
185
185
  SdkFetchDataFailed = -415;
186
186
  SdkTimeout = -416;
187
+ SdkGetAuthenticationTokenFailed = -417;
188
+ SdkUpdateDeviceFailed = -418;
189
+ SdkGetBlacklistEntriesFailed = -419;
190
+ SdkGetSystemStatusFailed = -420;
191
+ SdkWaitDeviceToRestartFailed = -421;
187
192
 
188
193
  //
189
194
  // Everything after here equals OssMaIoReturnCode codes; to gather the
package/BlueSDK.proto CHANGED
@@ -28,26 +28,59 @@ message BlueI18n {
28
28
  required string nfcInitializingWritingProcess = 9
29
29
  [ default = "Initializing writing process" ];
30
30
 
31
-
32
- required string cmnCancelLabel = 10
33
- [ default = "Cancel"];
34
31
 
35
- required string openViaOssTitle = 11
32
+ required string openViaOssTitle = 10
36
33
  [ default = "Unlocking in Progress"];
37
- required string openViaOssWaitMessage = 12
34
+ required string openViaOssWaitMessage = 11
38
35
  [ default = "Establishing secure connection..."];
39
- required string openViaOssAccessGrantedTitle = 13
36
+ required string openViaOssAccessGrantedTitle = 12
40
37
  [ default = "Access Granted"];
41
- required string openViaOssAccessGrantedMessage = 14
38
+ required string openViaOssAccessGrantedMessage = 13
42
39
  [ default = "Please proceed."];
43
- required string openViaOssAccessDeniedTitle = 15
40
+ required string openViaOssAccessDeniedTitle = 14
44
41
  [ default = "Access Denied"];
45
- required string openViaOssAccessDeniedMessage = 16
42
+ required string openViaOssAccessDeniedMessage = 15
46
43
  [ default = "Credentials are invalid or outdated."];
47
- required string openViaOssAccessDeniedScheduleMismatchMessage = 17
44
+ required string openViaOssAccessDeniedScheduleMismatchMessage = 16
48
45
  [ default = "Credentials are not valid at this time and/or day of the week."];
49
- required string openViaOssErrorTitle = 18
46
+ required string openViaOssErrorTitle = 17
50
47
  [ default = "Error"];
48
+
49
+
50
+ required string cmnCancelLabel = 18
51
+ [ default = "Cancel"];
52
+ required string cmnCloseLabel = 19
53
+ [ default = "Close"];
54
+
55
+
56
+ required string syncDeviceInProgressTitle = 20
57
+ [ default = "Synchronization in Progress" ];
58
+ required string syncDeviceFailedTitle = 21
59
+ [ default = "Synchronization has failed" ];
60
+ required string syncDeviceCancellingTitle = 22
61
+ [ default = "Cancelling..." ];
62
+ required string syncDeviceGetAuthenticationTokenTaskLabel = 23
63
+ [ default = "Issue authentication token" ];
64
+ required string syncDeviceRetrieveDeviceConfigurationTaskLabel = 24
65
+ [ default = "Retrieve device configuration" ];
66
+ required string syncDeviceUpdateDeviceConfigurationTaskLabel = 25
67
+ [ default = "Update device configuration" ];
68
+ required string syncDeviceUpdateDeviceTimeTaskLabel = 26
69
+ [ default = "Update device time" ];
70
+ required string syncDeviceWaitForDeviceToRestartTaskLabel = 27
71
+ [ default = "Wait for device to restart" ];
72
+ required string syncDevicePushEventLogsTaskLabel = 28
73
+ [ default = "Push event logs" ];
74
+ required string syncDevicePushSystemLogsTaskLabel = 29
75
+ [ default = "Push system logs" ];
76
+ required string syncDeviceRetrieveBlacklistEntriesTaskLabel = 30
77
+ [ default = "Retrieve blacklist entries" ];
78
+ required string syncDeviceDeployBlacklistEntriesTaskLabel = 31
79
+ [ default = "Deploy blacklist entries" ];
80
+ required string syncDeviceRetrieveSystemStatusTaskLabel = 32
81
+ [ default = "Retrieve system status" ];
82
+ required string syncDevicePushSystemStatusTaskLabel = 33
83
+ [ default = "Push system status" ];
51
84
  }
52
85
 
53
86
  ///////////////////////////////////////////////////////////////////////
@@ -476,6 +476,31 @@ export declare enum BlueReturnCode {
476
476
  */
477
477
  SdkTimeout = -416,
478
478
 
479
+ /**
480
+ * @generated from enum value: SdkGetAuthenticationTokenFailed = -417;
481
+ */
482
+ SdkGetAuthenticationTokenFailed = -417,
483
+
484
+ /**
485
+ * @generated from enum value: SdkUpdateDeviceFailed = -418;
486
+ */
487
+ SdkUpdateDeviceFailed = -418,
488
+
489
+ /**
490
+ * @generated from enum value: SdkGetBlacklistEntriesFailed = -419;
491
+ */
492
+ SdkGetBlacklistEntriesFailed = -419,
493
+
494
+ /**
495
+ * @generated from enum value: SdkGetSystemStatusFailed = -420;
496
+ */
497
+ SdkGetSystemStatusFailed = -420,
498
+
499
+ /**
500
+ * @generated from enum value: SdkWaitDeviceToRestartFailed = -421;
501
+ */
502
+ SdkWaitDeviceToRestartFailed = -421,
503
+
479
504
  /**
480
505
  * @generated from enum value: OssMAReturnCodeStart = -1000;
481
506
  */
@@ -184,6 +184,11 @@ const BlueReturnCode = import_protobuf.proto2.makeEnum(
184
184
  { no: -414, name: "SdkDecodeJsonFailed" },
185
185
  { no: -415, name: "SdkFetchDataFailed" },
186
186
  { no: -416, name: "SdkTimeout" },
187
+ { no: -417, name: "SdkGetAuthenticationTokenFailed" },
188
+ { no: -418, name: "SdkUpdateDeviceFailed" },
189
+ { no: -419, name: "SdkGetBlacklistEntriesFailed" },
190
+ { no: -420, name: "SdkGetSystemStatusFailed" },
191
+ { no: -421, name: "SdkWaitDeviceToRestartFailed" },
187
192
  { no: -1e3, name: "OssMAReturnCodeStart" },
188
193
  { no: -1100, name: "OssMAReturnCodeEnd" }
189
194
  ]
@@ -97,50 +97,125 @@ export declare class BlueI18n extends Message<BlueI18n> {
97
97
  nfcInitializingWritingProcess: string;
98
98
 
99
99
  /**
100
- * @generated from field: required string cmnCancelLabel = 10 [default = "Cancel"];
101
- */
102
- cmnCancelLabel: string;
103
-
104
- /**
105
- * @generated from field: required string openViaOssTitle = 11 [default = "Unlocking in Progress"];
100
+ * @generated from field: required string openViaOssTitle = 10 [default = "Unlocking in Progress"];
106
101
  */
107
102
  openViaOssTitle: string;
108
103
 
109
104
  /**
110
- * @generated from field: required string openViaOssWaitMessage = 12 [default = "Establishing secure connection..."];
105
+ * @generated from field: required string openViaOssWaitMessage = 11 [default = "Establishing secure connection..."];
111
106
  */
112
107
  openViaOssWaitMessage: string;
113
108
 
114
109
  /**
115
- * @generated from field: required string openViaOssAccessGrantedTitle = 13 [default = "Access Granted"];
110
+ * @generated from field: required string openViaOssAccessGrantedTitle = 12 [default = "Access Granted"];
116
111
  */
117
112
  openViaOssAccessGrantedTitle: string;
118
113
 
119
114
  /**
120
- * @generated from field: required string openViaOssAccessGrantedMessage = 14 [default = "Please proceed."];
115
+ * @generated from field: required string openViaOssAccessGrantedMessage = 13 [default = "Please proceed."];
121
116
  */
122
117
  openViaOssAccessGrantedMessage: string;
123
118
 
124
119
  /**
125
- * @generated from field: required string openViaOssAccessDeniedTitle = 15 [default = "Access Denied"];
120
+ * @generated from field: required string openViaOssAccessDeniedTitle = 14 [default = "Access Denied"];
126
121
  */
127
122
  openViaOssAccessDeniedTitle: string;
128
123
 
129
124
  /**
130
- * @generated from field: required string openViaOssAccessDeniedMessage = 16 [default = "Credentials are invalid or outdated."];
125
+ * @generated from field: required string openViaOssAccessDeniedMessage = 15 [default = "Credentials are invalid or outdated."];
131
126
  */
132
127
  openViaOssAccessDeniedMessage: string;
133
128
 
134
129
  /**
135
- * @generated from field: required string openViaOssAccessDeniedScheduleMismatchMessage = 17 [default = "Credentials are not valid at this time and/or day of the week."];
130
+ * @generated from field: required string openViaOssAccessDeniedScheduleMismatchMessage = 16 [default = "Credentials are not valid at this time and/or day of the week."];
136
131
  */
137
132
  openViaOssAccessDeniedScheduleMismatchMessage: string;
138
133
 
139
134
  /**
140
- * @generated from field: required string openViaOssErrorTitle = 18 [default = "Error"];
135
+ * @generated from field: required string openViaOssErrorTitle = 17 [default = "Error"];
141
136
  */
142
137
  openViaOssErrorTitle: string;
143
138
 
139
+ /**
140
+ * @generated from field: required string cmnCancelLabel = 18 [default = "Cancel"];
141
+ */
142
+ cmnCancelLabel: string;
143
+
144
+ /**
145
+ * @generated from field: required string cmnCloseLabel = 19 [default = "Close"];
146
+ */
147
+ cmnCloseLabel: string;
148
+
149
+ /**
150
+ * @generated from field: required string syncDeviceInProgressTitle = 20 [default = "Synchronization in Progress"];
151
+ */
152
+ syncDeviceInProgressTitle: string;
153
+
154
+ /**
155
+ * @generated from field: required string syncDeviceFailedTitle = 21 [default = "Synchronization has failed"];
156
+ */
157
+ syncDeviceFailedTitle: string;
158
+
159
+ /**
160
+ * @generated from field: required string syncDeviceCancellingTitle = 22 [default = "Cancelling..."];
161
+ */
162
+ syncDeviceCancellingTitle: string;
163
+
164
+ /**
165
+ * @generated from field: required string syncDeviceGetAuthenticationTokenTaskLabel = 23 [default = "Issue authentication token"];
166
+ */
167
+ syncDeviceGetAuthenticationTokenTaskLabel: string;
168
+
169
+ /**
170
+ * @generated from field: required string syncDeviceRetrieveDeviceConfigurationTaskLabel = 24 [default = "Retrieve device configuration"];
171
+ */
172
+ syncDeviceRetrieveDeviceConfigurationTaskLabel: string;
173
+
174
+ /**
175
+ * @generated from field: required string syncDeviceUpdateDeviceConfigurationTaskLabel = 25 [default = "Update device configuration"];
176
+ */
177
+ syncDeviceUpdateDeviceConfigurationTaskLabel: string;
178
+
179
+ /**
180
+ * @generated from field: required string syncDeviceUpdateDeviceTimeTaskLabel = 26 [default = "Update device time"];
181
+ */
182
+ syncDeviceUpdateDeviceTimeTaskLabel: string;
183
+
184
+ /**
185
+ * @generated from field: required string syncDeviceWaitForDeviceToRestartTaskLabel = 27 [default = "Wait for device to restart"];
186
+ */
187
+ syncDeviceWaitForDeviceToRestartTaskLabel: string;
188
+
189
+ /**
190
+ * @generated from field: required string syncDevicePushEventLogsTaskLabel = 28 [default = "Push event logs"];
191
+ */
192
+ syncDevicePushEventLogsTaskLabel: string;
193
+
194
+ /**
195
+ * @generated from field: required string syncDevicePushSystemLogsTaskLabel = 29 [default = "Push system logs"];
196
+ */
197
+ syncDevicePushSystemLogsTaskLabel: string;
198
+
199
+ /**
200
+ * @generated from field: required string syncDeviceRetrieveBlacklistEntriesTaskLabel = 30 [default = "Retrieve blacklist entries"];
201
+ */
202
+ syncDeviceRetrieveBlacklistEntriesTaskLabel: string;
203
+
204
+ /**
205
+ * @generated from field: required string syncDeviceDeployBlacklistEntriesTaskLabel = 31 [default = "Deploy blacklist entries"];
206
+ */
207
+ syncDeviceDeployBlacklistEntriesTaskLabel: string;
208
+
209
+ /**
210
+ * @generated from field: required string syncDeviceRetrieveSystemStatusTaskLabel = 32 [default = "Retrieve system status"];
211
+ */
212
+ syncDeviceRetrieveSystemStatusTaskLabel: string;
213
+
214
+ /**
215
+ * @generated from field: required string syncDevicePushSystemStatusTaskLabel = 33 [default = "Push system status"];
216
+ */
217
+ syncDevicePushSystemStatusTaskLabel: string;
218
+
144
219
  constructor(data?: PartialMessage<BlueI18n>);
145
220
 
146
221
  static readonly runtime: typeof proto2;
package/cjs/BlueSDK_pb.js CHANGED
@@ -65,15 +65,30 @@ const BlueI18n = import_protobuf.proto2.makeMessageType(
65
65
  { no: 7, name: "nfcOssSuccessUnprovisionMessage", kind: "scalar", T: 9, default: "Successfully unprovisioned" },
66
66
  { no: 8, name: "nfcOssSuccessFormatMessage", kind: "scalar", T: 9, default: "Transponder was successfully formatted" },
67
67
  { no: 9, name: "nfcInitializingWritingProcess", kind: "scalar", T: 9, default: "Initializing writing process" },
68
- { no: 10, name: "cmnCancelLabel", kind: "scalar", T: 9, default: "Cancel" },
69
- { no: 11, name: "openViaOssTitle", kind: "scalar", T: 9, default: "Unlocking in Progress" },
70
- { no: 12, name: "openViaOssWaitMessage", kind: "scalar", T: 9, default: "Establishing secure connection..." },
71
- { no: 13, name: "openViaOssAccessGrantedTitle", kind: "scalar", T: 9, default: "Access Granted" },
72
- { no: 14, name: "openViaOssAccessGrantedMessage", kind: "scalar", T: 9, default: "Please proceed." },
73
- { no: 15, name: "openViaOssAccessDeniedTitle", kind: "scalar", T: 9, default: "Access Denied" },
74
- { no: 16, name: "openViaOssAccessDeniedMessage", kind: "scalar", T: 9, default: "Credentials are invalid or outdated." },
75
- { no: 17, name: "openViaOssAccessDeniedScheduleMismatchMessage", kind: "scalar", T: 9, default: "Credentials are not valid at this time and/or day of the week." },
76
- { no: 18, name: "openViaOssErrorTitle", kind: "scalar", T: 9, default: "Error" }
68
+ { no: 10, name: "openViaOssTitle", kind: "scalar", T: 9, default: "Unlocking in Progress" },
69
+ { no: 11, name: "openViaOssWaitMessage", kind: "scalar", T: 9, default: "Establishing secure connection..." },
70
+ { no: 12, name: "openViaOssAccessGrantedTitle", kind: "scalar", T: 9, default: "Access Granted" },
71
+ { no: 13, name: "openViaOssAccessGrantedMessage", kind: "scalar", T: 9, default: "Please proceed." },
72
+ { no: 14, name: "openViaOssAccessDeniedTitle", kind: "scalar", T: 9, default: "Access Denied" },
73
+ { no: 15, name: "openViaOssAccessDeniedMessage", kind: "scalar", T: 9, default: "Credentials are invalid or outdated." },
74
+ { no: 16, name: "openViaOssAccessDeniedScheduleMismatchMessage", kind: "scalar", T: 9, default: "Credentials are not valid at this time and/or day of the week." },
75
+ { no: 17, name: "openViaOssErrorTitle", kind: "scalar", T: 9, default: "Error" },
76
+ { no: 18, name: "cmnCancelLabel", kind: "scalar", T: 9, default: "Cancel" },
77
+ { no: 19, name: "cmnCloseLabel", kind: "scalar", T: 9, default: "Close" },
78
+ { no: 20, name: "syncDeviceInProgressTitle", kind: "scalar", T: 9, default: "Synchronization in Progress" },
79
+ { no: 21, name: "syncDeviceFailedTitle", kind: "scalar", T: 9, default: "Synchronization has failed" },
80
+ { no: 22, name: "syncDeviceCancellingTitle", kind: "scalar", T: 9, default: "Cancelling..." },
81
+ { no: 23, name: "syncDeviceGetAuthenticationTokenTaskLabel", kind: "scalar", T: 9, default: "Issue authentication token" },
82
+ { no: 24, name: "syncDeviceRetrieveDeviceConfigurationTaskLabel", kind: "scalar", T: 9, default: "Retrieve device configuration" },
83
+ { no: 25, name: "syncDeviceUpdateDeviceConfigurationTaskLabel", kind: "scalar", T: 9, default: "Update device configuration" },
84
+ { no: 26, name: "syncDeviceUpdateDeviceTimeTaskLabel", kind: "scalar", T: 9, default: "Update device time" },
85
+ { no: 27, name: "syncDeviceWaitForDeviceToRestartTaskLabel", kind: "scalar", T: 9, default: "Wait for device to restart" },
86
+ { no: 28, name: "syncDevicePushEventLogsTaskLabel", kind: "scalar", T: 9, default: "Push event logs" },
87
+ { no: 29, name: "syncDevicePushSystemLogsTaskLabel", kind: "scalar", T: 9, default: "Push system logs" },
88
+ { no: 30, name: "syncDeviceRetrieveBlacklistEntriesTaskLabel", kind: "scalar", T: 9, default: "Retrieve blacklist entries" },
89
+ { no: 31, name: "syncDeviceDeployBlacklistEntriesTaskLabel", kind: "scalar", T: 9, default: "Deploy blacklist entries" },
90
+ { no: 32, name: "syncDeviceRetrieveSystemStatusTaskLabel", kind: "scalar", T: 9, default: "Retrieve system status" },
91
+ { no: 33, name: "syncDevicePushSystemStatusTaskLabel", kind: "scalar", T: 9, default: "Push system status" }
77
92
  ]
78
93
  );
79
94
  const BlueDeviceDetailsBluetooth = import_protobuf.proto2.makeMessageType(
@@ -476,6 +476,31 @@ export declare enum BlueReturnCode {
476
476
  */
477
477
  SdkTimeout = -416,
478
478
 
479
+ /**
480
+ * @generated from enum value: SdkGetAuthenticationTokenFailed = -417;
481
+ */
482
+ SdkGetAuthenticationTokenFailed = -417,
483
+
484
+ /**
485
+ * @generated from enum value: SdkUpdateDeviceFailed = -418;
486
+ */
487
+ SdkUpdateDeviceFailed = -418,
488
+
489
+ /**
490
+ * @generated from enum value: SdkGetBlacklistEntriesFailed = -419;
491
+ */
492
+ SdkGetBlacklistEntriesFailed = -419,
493
+
494
+ /**
495
+ * @generated from enum value: SdkGetSystemStatusFailed = -420;
496
+ */
497
+ SdkGetSystemStatusFailed = -420,
498
+
499
+ /**
500
+ * @generated from enum value: SdkWaitDeviceToRestartFailed = -421;
501
+ */
502
+ SdkWaitDeviceToRestartFailed = -421,
503
+
479
504
  /**
480
505
  * @generated from enum value: OssMAReturnCodeStart = -1000;
481
506
  */
package/es/BlueCore_pb.js CHANGED
@@ -101,6 +101,11 @@ export const BlueReturnCode = proto2.makeEnum(
101
101
  {no: -414, name: "SdkDecodeJsonFailed"},
102
102
  {no: -415, name: "SdkFetchDataFailed"},
103
103
  {no: -416, name: "SdkTimeout"},
104
+ {no: -417, name: "SdkGetAuthenticationTokenFailed"},
105
+ {no: -418, name: "SdkUpdateDeviceFailed"},
106
+ {no: -419, name: "SdkGetBlacklistEntriesFailed"},
107
+ {no: -420, name: "SdkGetSystemStatusFailed"},
108
+ {no: -421, name: "SdkWaitDeviceToRestartFailed"},
104
109
  {no: -1000, name: "OssMAReturnCodeStart"},
105
110
  {no: -1100, name: "OssMAReturnCodeEnd"},
106
111
  ],
@@ -97,50 +97,125 @@ export declare class BlueI18n extends Message<BlueI18n> {
97
97
  nfcInitializingWritingProcess: string;
98
98
 
99
99
  /**
100
- * @generated from field: required string cmnCancelLabel = 10 [default = "Cancel"];
101
- */
102
- cmnCancelLabel: string;
103
-
104
- /**
105
- * @generated from field: required string openViaOssTitle = 11 [default = "Unlocking in Progress"];
100
+ * @generated from field: required string openViaOssTitle = 10 [default = "Unlocking in Progress"];
106
101
  */
107
102
  openViaOssTitle: string;
108
103
 
109
104
  /**
110
- * @generated from field: required string openViaOssWaitMessage = 12 [default = "Establishing secure connection..."];
105
+ * @generated from field: required string openViaOssWaitMessage = 11 [default = "Establishing secure connection..."];
111
106
  */
112
107
  openViaOssWaitMessage: string;
113
108
 
114
109
  /**
115
- * @generated from field: required string openViaOssAccessGrantedTitle = 13 [default = "Access Granted"];
110
+ * @generated from field: required string openViaOssAccessGrantedTitle = 12 [default = "Access Granted"];
116
111
  */
117
112
  openViaOssAccessGrantedTitle: string;
118
113
 
119
114
  /**
120
- * @generated from field: required string openViaOssAccessGrantedMessage = 14 [default = "Please proceed."];
115
+ * @generated from field: required string openViaOssAccessGrantedMessage = 13 [default = "Please proceed."];
121
116
  */
122
117
  openViaOssAccessGrantedMessage: string;
123
118
 
124
119
  /**
125
- * @generated from field: required string openViaOssAccessDeniedTitle = 15 [default = "Access Denied"];
120
+ * @generated from field: required string openViaOssAccessDeniedTitle = 14 [default = "Access Denied"];
126
121
  */
127
122
  openViaOssAccessDeniedTitle: string;
128
123
 
129
124
  /**
130
- * @generated from field: required string openViaOssAccessDeniedMessage = 16 [default = "Credentials are invalid or outdated."];
125
+ * @generated from field: required string openViaOssAccessDeniedMessage = 15 [default = "Credentials are invalid or outdated."];
131
126
  */
132
127
  openViaOssAccessDeniedMessage: string;
133
128
 
134
129
  /**
135
- * @generated from field: required string openViaOssAccessDeniedScheduleMismatchMessage = 17 [default = "Credentials are not valid at this time and/or day of the week."];
130
+ * @generated from field: required string openViaOssAccessDeniedScheduleMismatchMessage = 16 [default = "Credentials are not valid at this time and/or day of the week."];
136
131
  */
137
132
  openViaOssAccessDeniedScheduleMismatchMessage: string;
138
133
 
139
134
  /**
140
- * @generated from field: required string openViaOssErrorTitle = 18 [default = "Error"];
135
+ * @generated from field: required string openViaOssErrorTitle = 17 [default = "Error"];
141
136
  */
142
137
  openViaOssErrorTitle: string;
143
138
 
139
+ /**
140
+ * @generated from field: required string cmnCancelLabel = 18 [default = "Cancel"];
141
+ */
142
+ cmnCancelLabel: string;
143
+
144
+ /**
145
+ * @generated from field: required string cmnCloseLabel = 19 [default = "Close"];
146
+ */
147
+ cmnCloseLabel: string;
148
+
149
+ /**
150
+ * @generated from field: required string syncDeviceInProgressTitle = 20 [default = "Synchronization in Progress"];
151
+ */
152
+ syncDeviceInProgressTitle: string;
153
+
154
+ /**
155
+ * @generated from field: required string syncDeviceFailedTitle = 21 [default = "Synchronization has failed"];
156
+ */
157
+ syncDeviceFailedTitle: string;
158
+
159
+ /**
160
+ * @generated from field: required string syncDeviceCancellingTitle = 22 [default = "Cancelling..."];
161
+ */
162
+ syncDeviceCancellingTitle: string;
163
+
164
+ /**
165
+ * @generated from field: required string syncDeviceGetAuthenticationTokenTaskLabel = 23 [default = "Issue authentication token"];
166
+ */
167
+ syncDeviceGetAuthenticationTokenTaskLabel: string;
168
+
169
+ /**
170
+ * @generated from field: required string syncDeviceRetrieveDeviceConfigurationTaskLabel = 24 [default = "Retrieve device configuration"];
171
+ */
172
+ syncDeviceRetrieveDeviceConfigurationTaskLabel: string;
173
+
174
+ /**
175
+ * @generated from field: required string syncDeviceUpdateDeviceConfigurationTaskLabel = 25 [default = "Update device configuration"];
176
+ */
177
+ syncDeviceUpdateDeviceConfigurationTaskLabel: string;
178
+
179
+ /**
180
+ * @generated from field: required string syncDeviceUpdateDeviceTimeTaskLabel = 26 [default = "Update device time"];
181
+ */
182
+ syncDeviceUpdateDeviceTimeTaskLabel: string;
183
+
184
+ /**
185
+ * @generated from field: required string syncDeviceWaitForDeviceToRestartTaskLabel = 27 [default = "Wait for device to restart"];
186
+ */
187
+ syncDeviceWaitForDeviceToRestartTaskLabel: string;
188
+
189
+ /**
190
+ * @generated from field: required string syncDevicePushEventLogsTaskLabel = 28 [default = "Push event logs"];
191
+ */
192
+ syncDevicePushEventLogsTaskLabel: string;
193
+
194
+ /**
195
+ * @generated from field: required string syncDevicePushSystemLogsTaskLabel = 29 [default = "Push system logs"];
196
+ */
197
+ syncDevicePushSystemLogsTaskLabel: string;
198
+
199
+ /**
200
+ * @generated from field: required string syncDeviceRetrieveBlacklistEntriesTaskLabel = 30 [default = "Retrieve blacklist entries"];
201
+ */
202
+ syncDeviceRetrieveBlacklistEntriesTaskLabel: string;
203
+
204
+ /**
205
+ * @generated from field: required string syncDeviceDeployBlacklistEntriesTaskLabel = 31 [default = "Deploy blacklist entries"];
206
+ */
207
+ syncDeviceDeployBlacklistEntriesTaskLabel: string;
208
+
209
+ /**
210
+ * @generated from field: required string syncDeviceRetrieveSystemStatusTaskLabel = 32 [default = "Retrieve system status"];
211
+ */
212
+ syncDeviceRetrieveSystemStatusTaskLabel: string;
213
+
214
+ /**
215
+ * @generated from field: required string syncDevicePushSystemStatusTaskLabel = 33 [default = "Push system status"];
216
+ */
217
+ syncDevicePushSystemStatusTaskLabel: string;
218
+
144
219
  constructor(data?: PartialMessage<BlueI18n>);
145
220
 
146
221
  static readonly runtime: typeof proto2;
package/es/BlueSDK_pb.js CHANGED
@@ -45,15 +45,30 @@ export const BlueI18n = proto2.makeMessageType(
45
45
  { no: 7, name: "nfcOssSuccessUnprovisionMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Successfully unprovisioned" },
46
46
  { no: 8, name: "nfcOssSuccessFormatMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Transponder was successfully formatted" },
47
47
  { no: 9, name: "nfcInitializingWritingProcess", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Initializing writing process" },
48
- { no: 10, name: "cmnCancelLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Cancel" },
49
- { no: 11, name: "openViaOssTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Unlocking in Progress" },
50
- { no: 12, name: "openViaOssWaitMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Establishing secure connection..." },
51
- { no: 13, name: "openViaOssAccessGrantedTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Access Granted" },
52
- { no: 14, name: "openViaOssAccessGrantedMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Please proceed." },
53
- { no: 15, name: "openViaOssAccessDeniedTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Access Denied" },
54
- { no: 16, name: "openViaOssAccessDeniedMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Credentials are invalid or outdated." },
55
- { no: 17, name: "openViaOssAccessDeniedScheduleMismatchMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Credentials are not valid at this time and/or day of the week." },
56
- { no: 18, name: "openViaOssErrorTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Error" },
48
+ { no: 10, name: "openViaOssTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Unlocking in Progress" },
49
+ { no: 11, name: "openViaOssWaitMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Establishing secure connection..." },
50
+ { no: 12, name: "openViaOssAccessGrantedTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Access Granted" },
51
+ { no: 13, name: "openViaOssAccessGrantedMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Please proceed." },
52
+ { no: 14, name: "openViaOssAccessDeniedTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Access Denied" },
53
+ { no: 15, name: "openViaOssAccessDeniedMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Credentials are invalid or outdated." },
54
+ { no: 16, name: "openViaOssAccessDeniedScheduleMismatchMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Credentials are not valid at this time and/or day of the week." },
55
+ { no: 17, name: "openViaOssErrorTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Error" },
56
+ { no: 18, name: "cmnCancelLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Cancel" },
57
+ { no: 19, name: "cmnCloseLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Close" },
58
+ { no: 20, name: "syncDeviceInProgressTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Synchronization in Progress" },
59
+ { no: 21, name: "syncDeviceFailedTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Synchronization has failed" },
60
+ { no: 22, name: "syncDeviceCancellingTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Cancelling..." },
61
+ { no: 23, name: "syncDeviceGetAuthenticationTokenTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Issue authentication token" },
62
+ { no: 24, name: "syncDeviceRetrieveDeviceConfigurationTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Retrieve device configuration" },
63
+ { no: 25, name: "syncDeviceUpdateDeviceConfigurationTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Update device configuration" },
64
+ { no: 26, name: "syncDeviceUpdateDeviceTimeTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Update device time" },
65
+ { no: 27, name: "syncDeviceWaitForDeviceToRestartTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Wait for device to restart" },
66
+ { no: 28, name: "syncDevicePushEventLogsTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Push event logs" },
67
+ { no: 29, name: "syncDevicePushSystemLogsTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Push system logs" },
68
+ { no: 30, name: "syncDeviceRetrieveBlacklistEntriesTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Retrieve blacklist entries" },
69
+ { no: 31, name: "syncDeviceDeployBlacklistEntriesTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Deploy blacklist entries" },
70
+ { no: 32, name: "syncDeviceRetrieveSystemStatusTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Retrieve system status" },
71
+ { no: 33, name: "syncDevicePushSystemStatusTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Push system status" },
57
72
  ],
58
73
  );
59
74
 
@@ -105,6 +105,11 @@ typedef enum BlueReturnCode {
105
105
  BlueReturnCode_SdkDecodeJsonFailed = -414,
106
106
  BlueReturnCode_SdkFetchDataFailed = -415,
107
107
  BlueReturnCode_SdkTimeout = -416,
108
+ BlueReturnCode_SdkGetAuthenticationTokenFailed = -417,
109
+ BlueReturnCode_SdkUpdateDeviceFailed = -418,
110
+ BlueReturnCode_SdkGetBlacklistEntriesFailed = -419,
111
+ BlueReturnCode_SdkGetSystemStatusFailed = -420,
112
+ BlueReturnCode_SdkWaitDeviceToRestartFailed = -421,
108
113
  BlueReturnCode_OssMAReturnCodeStart = -1000,
109
114
  BlueReturnCode_OssMAReturnCodeEnd = -1100
110
115
  } BlueReturnCode_t;
@@ -34,7 +34,6 @@ typedef struct BlueI18n {
34
34
  pb_callback_t nfcOssSuccessUnprovisionMessage;
35
35
  pb_callback_t nfcOssSuccessFormatMessage;
36
36
  pb_callback_t nfcInitializingWritingProcess;
37
- pb_callback_t cmnCancelLabel;
38
37
  pb_callback_t openViaOssTitle;
39
38
  pb_callback_t openViaOssWaitMessage;
40
39
  pb_callback_t openViaOssAccessGrantedTitle;
@@ -43,6 +42,22 @@ typedef struct BlueI18n {
43
42
  pb_callback_t openViaOssAccessDeniedMessage;
44
43
  pb_callback_t openViaOssAccessDeniedScheduleMismatchMessage;
45
44
  pb_callback_t openViaOssErrorTitle;
45
+ pb_callback_t cmnCancelLabel;
46
+ pb_callback_t cmnCloseLabel;
47
+ pb_callback_t syncDeviceInProgressTitle;
48
+ pb_callback_t syncDeviceFailedTitle;
49
+ pb_callback_t syncDeviceCancellingTitle;
50
+ pb_callback_t syncDeviceGetAuthenticationTokenTaskLabel;
51
+ pb_callback_t syncDeviceRetrieveDeviceConfigurationTaskLabel;
52
+ pb_callback_t syncDeviceUpdateDeviceConfigurationTaskLabel;
53
+ pb_callback_t syncDeviceUpdateDeviceTimeTaskLabel;
54
+ pb_callback_t syncDeviceWaitForDeviceToRestartTaskLabel;
55
+ pb_callback_t syncDevicePushEventLogsTaskLabel;
56
+ pb_callback_t syncDevicePushSystemLogsTaskLabel;
57
+ pb_callback_t syncDeviceRetrieveBlacklistEntriesTaskLabel;
58
+ pb_callback_t syncDeviceDeployBlacklistEntriesTaskLabel;
59
+ pb_callback_t syncDeviceRetrieveSystemStatusTaskLabel;
60
+ pb_callback_t syncDevicePushSystemStatusTaskLabel;
46
61
  } BlueI18n_t;
47
62
 
48
63
  typedef struct BlueDeviceDetailsBluetooth {
@@ -169,7 +184,7 @@ extern "C" {
169
184
 
170
185
 
171
186
  /* Initializer values for message structs */
172
- #define BLUEI18N_INIT_DEFAULT {{{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}}
187
+ #define BLUEI18N_INIT_DEFAULT {{{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}}
173
188
  #define BLUEDEVICEDETAILSBLUETOOTH_INIT_DEFAULT {0, 0, 0}
174
189
  #define BLUEDEVICEDETAILSUWB_INIT_DEFAULT {0}
175
190
  #define BLUEDEVICEINFO_INIT_DEFAULT {_BLUEDEVICETYPE_MIN, {{NULL}, NULL}, 0, false, BLUEBLEMANUFACTURERINFO_INIT_DEFAULT, 0, {BLUEDEVICEDETAILSBLUETOOTH_INIT_DEFAULT}}
@@ -183,7 +198,7 @@ extern "C" {
183
198
  #define BLUEREFRESHOSSSOCREDENTIALS_INIT_DEFAULT {{{NULL}, NULL}}
184
199
  #define BLUESYNCHRONIZEACCESSCREDENTIAL_INIT_DEFAULT {BLUECREDENTIALID_INIT_DEFAULT, _BLUERETURNCODE_MIN, {{NULL}, NULL}}
185
200
  #define BLUESYNCHRONIZEACCESSCREDENTIALS_INIT_DEFAULT {{{NULL}, NULL}}
186
- #define BLUEI18N_INIT_ZERO {{{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}}
201
+ #define BLUEI18N_INIT_ZERO {{{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}}
187
202
  #define BLUEDEVICEDETAILSBLUETOOTH_INIT_ZERO {0, 0, 0}
188
203
  #define BLUEDEVICEDETAILSUWB_INIT_ZERO {0}
189
204
  #define BLUEDEVICEINFO_INIT_ZERO {_BLUEDEVICETYPE_MIN, {{NULL}, NULL}, 0, false, BLUEBLEMANUFACTURERINFO_INIT_ZERO, 0, {BLUEDEVICEDETAILSBLUETOOTH_INIT_ZERO}}
@@ -208,15 +223,30 @@ extern "C" {
208
223
  #define BLUEI18N_NFCOSSSUCCESSUNPROVISIONMESSAGE_TAG 7
209
224
  #define BLUEI18N_NFCOSSSUCCESSFORMATMESSAGE_TAG 8
210
225
  #define BLUEI18N_NFCINITIALIZINGWRITINGPROCESS_TAG 9
211
- #define BLUEI18N_CMNCANCELLABEL_TAG 10
212
- #define BLUEI18N_OPENVIAOSSTITLE_TAG 11
213
- #define BLUEI18N_OPENVIAOSSWAITMESSAGE_TAG 12
214
- #define BLUEI18N_OPENVIAOSSACCESSGRANTEDTITLE_TAG 13
215
- #define BLUEI18N_OPENVIAOSSACCESSGRANTEDMESSAGE_TAG 14
216
- #define BLUEI18N_OPENVIAOSSACCESSDENIEDTITLE_TAG 15
217
- #define BLUEI18N_OPENVIAOSSACCESSDENIEDMESSAGE_TAG 16
218
- #define BLUEI18N_OPENVIAOSSACCESSDENIEDSCHEDULEMISMATCHMESSAGE_TAG 17
219
- #define BLUEI18N_OPENVIAOSSERRORTITLE_TAG 18
226
+ #define BLUEI18N_OPENVIAOSSTITLE_TAG 10
227
+ #define BLUEI18N_OPENVIAOSSWAITMESSAGE_TAG 11
228
+ #define BLUEI18N_OPENVIAOSSACCESSGRANTEDTITLE_TAG 12
229
+ #define BLUEI18N_OPENVIAOSSACCESSGRANTEDMESSAGE_TAG 13
230
+ #define BLUEI18N_OPENVIAOSSACCESSDENIEDTITLE_TAG 14
231
+ #define BLUEI18N_OPENVIAOSSACCESSDENIEDMESSAGE_TAG 15
232
+ #define BLUEI18N_OPENVIAOSSACCESSDENIEDSCHEDULEMISMATCHMESSAGE_TAG 16
233
+ #define BLUEI18N_OPENVIAOSSERRORTITLE_TAG 17
234
+ #define BLUEI18N_CMNCANCELLABEL_TAG 18
235
+ #define BLUEI18N_CMNCLOSELABEL_TAG 19
236
+ #define BLUEI18N_SYNCDEVICEINPROGRESSTITLE_TAG 20
237
+ #define BLUEI18N_SYNCDEVICEFAILEDTITLE_TAG 21
238
+ #define BLUEI18N_SYNCDEVICECANCELLINGTITLE_TAG 22
239
+ #define BLUEI18N_SYNCDEVICEGETAUTHENTICATIONTOKENTASKLABEL_TAG 23
240
+ #define BLUEI18N_SYNCDEVICERETRIEVEDEVICECONFIGURATIONTASKLABEL_TAG 24
241
+ #define BLUEI18N_SYNCDEVICEUPDATEDEVICECONFIGURATIONTASKLABEL_TAG 25
242
+ #define BLUEI18N_SYNCDEVICEUPDATEDEVICETIMETASKLABEL_TAG 26
243
+ #define BLUEI18N_SYNCDEVICEWAITFORDEVICETORESTARTTASKLABEL_TAG 27
244
+ #define BLUEI18N_SYNCDEVICEPUSHEVENTLOGSTASKLABEL_TAG 28
245
+ #define BLUEI18N_SYNCDEVICEPUSHSYSTEMLOGSTASKLABEL_TAG 29
246
+ #define BLUEI18N_SYNCDEVICERETRIEVEBLACKLISTENTRIESTASKLABEL_TAG 30
247
+ #define BLUEI18N_SYNCDEVICEDEPLOYBLACKLISTENTRIESTASKLABEL_TAG 31
248
+ #define BLUEI18N_SYNCDEVICERETRIEVESYSTEMSTATUSTASKLABEL_TAG 32
249
+ #define BLUEI18N_SYNCDEVICEPUSHSYSTEMSTATUSTASKLABEL_TAG 33
220
250
  #define BLUEDEVICEDETAILSBLUETOOTH_RSSI_TAG 1
221
251
  #define BLUEDEVICEDETAILSBLUETOOTH_TXPOWER_TAG 2
222
252
  #define BLUEDEVICEDETAILSBLUETOOTH_ISIBEACON_TAG 3
@@ -271,15 +301,30 @@ X(a, CALLBACK, REQUIRED, STRING, nfcOssSuccessProvisionMessage, 6) \
271
301
  X(a, CALLBACK, REQUIRED, STRING, nfcOssSuccessUnprovisionMessage, 7) \
272
302
  X(a, CALLBACK, REQUIRED, STRING, nfcOssSuccessFormatMessage, 8) \
273
303
  X(a, CALLBACK, REQUIRED, STRING, nfcInitializingWritingProcess, 9) \
274
- X(a, CALLBACK, REQUIRED, STRING, cmnCancelLabel, 10) \
275
- X(a, CALLBACK, REQUIRED, STRING, openViaOssTitle, 11) \
276
- X(a, CALLBACK, REQUIRED, STRING, openViaOssWaitMessage, 12) \
277
- X(a, CALLBACK, REQUIRED, STRING, openViaOssAccessGrantedTitle, 13) \
278
- X(a, CALLBACK, REQUIRED, STRING, openViaOssAccessGrantedMessage, 14) \
279
- X(a, CALLBACK, REQUIRED, STRING, openViaOssAccessDeniedTitle, 15) \
280
- X(a, CALLBACK, REQUIRED, STRING, openViaOssAccessDeniedMessage, 16) \
281
- X(a, CALLBACK, REQUIRED, STRING, openViaOssAccessDeniedScheduleMismatchMessage, 17) \
282
- X(a, CALLBACK, REQUIRED, STRING, openViaOssErrorTitle, 18)
304
+ X(a, CALLBACK, REQUIRED, STRING, openViaOssTitle, 10) \
305
+ X(a, CALLBACK, REQUIRED, STRING, openViaOssWaitMessage, 11) \
306
+ X(a, CALLBACK, REQUIRED, STRING, openViaOssAccessGrantedTitle, 12) \
307
+ X(a, CALLBACK, REQUIRED, STRING, openViaOssAccessGrantedMessage, 13) \
308
+ X(a, CALLBACK, REQUIRED, STRING, openViaOssAccessDeniedTitle, 14) \
309
+ X(a, CALLBACK, REQUIRED, STRING, openViaOssAccessDeniedMessage, 15) \
310
+ X(a, CALLBACK, REQUIRED, STRING, openViaOssAccessDeniedScheduleMismatchMessage, 16) \
311
+ X(a, CALLBACK, REQUIRED, STRING, openViaOssErrorTitle, 17) \
312
+ X(a, CALLBACK, REQUIRED, STRING, cmnCancelLabel, 18) \
313
+ X(a, CALLBACK, REQUIRED, STRING, cmnCloseLabel, 19) \
314
+ X(a, CALLBACK, REQUIRED, STRING, syncDeviceInProgressTitle, 20) \
315
+ X(a, CALLBACK, REQUIRED, STRING, syncDeviceFailedTitle, 21) \
316
+ X(a, CALLBACK, REQUIRED, STRING, syncDeviceCancellingTitle, 22) \
317
+ X(a, CALLBACK, REQUIRED, STRING, syncDeviceGetAuthenticationTokenTaskLabel, 23) \
318
+ X(a, CALLBACK, REQUIRED, STRING, syncDeviceRetrieveDeviceConfigurationTaskLabel, 24) \
319
+ X(a, CALLBACK, REQUIRED, STRING, syncDeviceUpdateDeviceConfigurationTaskLabel, 25) \
320
+ X(a, CALLBACK, REQUIRED, STRING, syncDeviceUpdateDeviceTimeTaskLabel, 26) \
321
+ X(a, CALLBACK, REQUIRED, STRING, syncDeviceWaitForDeviceToRestartTaskLabel, 27) \
322
+ X(a, CALLBACK, REQUIRED, STRING, syncDevicePushEventLogsTaskLabel, 28) \
323
+ X(a, CALLBACK, REQUIRED, STRING, syncDevicePushSystemLogsTaskLabel, 29) \
324
+ X(a, CALLBACK, REQUIRED, STRING, syncDeviceRetrieveBlacklistEntriesTaskLabel, 30) \
325
+ X(a, CALLBACK, REQUIRED, STRING, syncDeviceDeployBlacklistEntriesTaskLabel, 31) \
326
+ X(a, CALLBACK, REQUIRED, STRING, syncDeviceRetrieveSystemStatusTaskLabel, 32) \
327
+ X(a, CALLBACK, REQUIRED, STRING, syncDevicePushSystemStatusTaskLabel, 33)
283
328
  #define BLUEI18N_CALLBACK pb_default_field_callback
284
329
  #define BLUEI18N_DEFAULT NULL
285
330
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blueid/access-proto",
3
- "version": "0.92.0",
3
+ "version": "0.95.0",
4
4
  "description": "BlueID Access Proto files",
5
5
  "author": "BlueID GmbH",
6
6
  "main": "cjs/index.js",
@@ -124,6 +124,11 @@ public enum BlueReturnCode: SwiftProtobuf.Enum {
124
124
  case sdkDecodeJsonFailed // = -414
125
125
  case sdkFetchDataFailed // = -415
126
126
  case sdkTimeout // = -416
127
+ case sdkGetAuthenticationTokenFailed // = -417
128
+ case sdkUpdateDeviceFailed // = -418
129
+ case sdkGetBlacklistEntriesFailed // = -419
130
+ case sdkGetSystemStatusFailed // = -420
131
+ case sdkWaitDeviceToRestartFailed // = -421
127
132
  case ossMareturnCodeStart // = -1000
128
133
  case ossMareturnCodeEnd // = -1100
129
134
 
@@ -135,6 +140,11 @@ public enum BlueReturnCode: SwiftProtobuf.Enum {
135
140
  switch rawValue {
136
141
  case -1100: self = .ossMareturnCodeEnd
137
142
  case -1000: self = .ossMareturnCodeStart
143
+ case -421: self = .sdkWaitDeviceToRestartFailed
144
+ case -420: self = .sdkGetSystemStatusFailed
145
+ case -419: self = .sdkGetBlacklistEntriesFailed
146
+ case -418: self = .sdkUpdateDeviceFailed
147
+ case -417: self = .sdkGetAuthenticationTokenFailed
138
148
  case -416: self = .sdkTimeout
139
149
  case -415: self = .sdkFetchDataFailed
140
150
  case -414: self = .sdkDecodeJsonFailed
@@ -233,6 +243,11 @@ public enum BlueReturnCode: SwiftProtobuf.Enum {
233
243
  switch self {
234
244
  case .ossMareturnCodeEnd: return -1100
235
245
  case .ossMareturnCodeStart: return -1000
246
+ case .sdkWaitDeviceToRestartFailed: return -421
247
+ case .sdkGetSystemStatusFailed: return -420
248
+ case .sdkGetBlacklistEntriesFailed: return -419
249
+ case .sdkUpdateDeviceFailed: return -418
250
+ case .sdkGetAuthenticationTokenFailed: return -417
236
251
  case .sdkTimeout: return -416
237
252
  case .sdkFetchDataFailed: return -415
238
253
  case .sdkDecodeJsonFailed: return -414
@@ -3580,6 +3595,11 @@ extension BlueReturnCode: SwiftProtobuf._ProtoNameProviding {
3580
3595
  public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
3581
3596
  -1100: .same(proto: "OssMAReturnCodeEnd"),
3582
3597
  -1000: .same(proto: "OssMAReturnCodeStart"),
3598
+ -421: .same(proto: "SdkWaitDeviceToRestartFailed"),
3599
+ -420: .same(proto: "SdkGetSystemStatusFailed"),
3600
+ -419: .same(proto: "SdkGetBlacklistEntriesFailed"),
3601
+ -418: .same(proto: "SdkUpdateDeviceFailed"),
3602
+ -417: .same(proto: "SdkGetAuthenticationTokenFailed"),
3583
3603
  -416: .same(proto: "SdkTimeout"),
3584
3604
  -415: .same(proto: "SdkFetchDataFailed"),
3585
3605
  -414: .same(proto: "SdkDecodeJsonFailed"),
@@ -180,15 +180,6 @@ public struct BlueI18n {
180
180
  /// Clears the value of `nfcInitializingWritingProcess`. Subsequent reads from it will return its default value.
181
181
  public mutating func clearNfcInitializingWritingProcess() {_uniqueStorage()._nfcInitializingWritingProcess = nil}
182
182
 
183
- public var cmnCancelLabel: String {
184
- get {return _storage._cmnCancelLabel ?? "Cancel"}
185
- set {_uniqueStorage()._cmnCancelLabel = newValue}
186
- }
187
- /// Returns true if `cmnCancelLabel` has been explicitly set.
188
- public var hasCmnCancelLabel: Bool {return _storage._cmnCancelLabel != nil}
189
- /// Clears the value of `cmnCancelLabel`. Subsequent reads from it will return its default value.
190
- public mutating func clearCmnCancelLabel() {_uniqueStorage()._cmnCancelLabel = nil}
191
-
192
183
  public var openViaOssTitle: String {
193
184
  get {return _storage._openViaOssTitle ?? "Unlocking in Progress"}
194
185
  set {_uniqueStorage()._openViaOssTitle = newValue}
@@ -261,6 +252,150 @@ public struct BlueI18n {
261
252
  /// Clears the value of `openViaOssErrorTitle`. Subsequent reads from it will return its default value.
262
253
  public mutating func clearOpenViaOssErrorTitle() {_uniqueStorage()._openViaOssErrorTitle = nil}
263
254
 
255
+ public var cmnCancelLabel: String {
256
+ get {return _storage._cmnCancelLabel ?? "Cancel"}
257
+ set {_uniqueStorage()._cmnCancelLabel = newValue}
258
+ }
259
+ /// Returns true if `cmnCancelLabel` has been explicitly set.
260
+ public var hasCmnCancelLabel: Bool {return _storage._cmnCancelLabel != nil}
261
+ /// Clears the value of `cmnCancelLabel`. Subsequent reads from it will return its default value.
262
+ public mutating func clearCmnCancelLabel() {_uniqueStorage()._cmnCancelLabel = nil}
263
+
264
+ public var cmnCloseLabel: String {
265
+ get {return _storage._cmnCloseLabel ?? "Close"}
266
+ set {_uniqueStorage()._cmnCloseLabel = newValue}
267
+ }
268
+ /// Returns true if `cmnCloseLabel` has been explicitly set.
269
+ public var hasCmnCloseLabel: Bool {return _storage._cmnCloseLabel != nil}
270
+ /// Clears the value of `cmnCloseLabel`. Subsequent reads from it will return its default value.
271
+ public mutating func clearCmnCloseLabel() {_uniqueStorage()._cmnCloseLabel = nil}
272
+
273
+ public var syncDeviceInProgressTitle: String {
274
+ get {return _storage._syncDeviceInProgressTitle ?? "Synchronization in Progress"}
275
+ set {_uniqueStorage()._syncDeviceInProgressTitle = newValue}
276
+ }
277
+ /// Returns true if `syncDeviceInProgressTitle` has been explicitly set.
278
+ public var hasSyncDeviceInProgressTitle: Bool {return _storage._syncDeviceInProgressTitle != nil}
279
+ /// Clears the value of `syncDeviceInProgressTitle`. Subsequent reads from it will return its default value.
280
+ public mutating func clearSyncDeviceInProgressTitle() {_uniqueStorage()._syncDeviceInProgressTitle = nil}
281
+
282
+ public var syncDeviceFailedTitle: String {
283
+ get {return _storage._syncDeviceFailedTitle ?? "Synchronization has failed"}
284
+ set {_uniqueStorage()._syncDeviceFailedTitle = newValue}
285
+ }
286
+ /// Returns true if `syncDeviceFailedTitle` has been explicitly set.
287
+ public var hasSyncDeviceFailedTitle: Bool {return _storage._syncDeviceFailedTitle != nil}
288
+ /// Clears the value of `syncDeviceFailedTitle`. Subsequent reads from it will return its default value.
289
+ public mutating func clearSyncDeviceFailedTitle() {_uniqueStorage()._syncDeviceFailedTitle = nil}
290
+
291
+ public var syncDeviceCancellingTitle: String {
292
+ get {return _storage._syncDeviceCancellingTitle ?? "Cancelling..."}
293
+ set {_uniqueStorage()._syncDeviceCancellingTitle = newValue}
294
+ }
295
+ /// Returns true if `syncDeviceCancellingTitle` has been explicitly set.
296
+ public var hasSyncDeviceCancellingTitle: Bool {return _storage._syncDeviceCancellingTitle != nil}
297
+ /// Clears the value of `syncDeviceCancellingTitle`. Subsequent reads from it will return its default value.
298
+ public mutating func clearSyncDeviceCancellingTitle() {_uniqueStorage()._syncDeviceCancellingTitle = nil}
299
+
300
+ public var syncDeviceGetAuthenticationTokenTaskLabel: String {
301
+ get {return _storage._syncDeviceGetAuthenticationTokenTaskLabel ?? "Issue authentication token"}
302
+ set {_uniqueStorage()._syncDeviceGetAuthenticationTokenTaskLabel = newValue}
303
+ }
304
+ /// Returns true if `syncDeviceGetAuthenticationTokenTaskLabel` has been explicitly set.
305
+ public var hasSyncDeviceGetAuthenticationTokenTaskLabel: Bool {return _storage._syncDeviceGetAuthenticationTokenTaskLabel != nil}
306
+ /// Clears the value of `syncDeviceGetAuthenticationTokenTaskLabel`. Subsequent reads from it will return its default value.
307
+ public mutating func clearSyncDeviceGetAuthenticationTokenTaskLabel() {_uniqueStorage()._syncDeviceGetAuthenticationTokenTaskLabel = nil}
308
+
309
+ public var syncDeviceRetrieveDeviceConfigurationTaskLabel: String {
310
+ get {return _storage._syncDeviceRetrieveDeviceConfigurationTaskLabel ?? "Retrieve device configuration"}
311
+ set {_uniqueStorage()._syncDeviceRetrieveDeviceConfigurationTaskLabel = newValue}
312
+ }
313
+ /// Returns true if `syncDeviceRetrieveDeviceConfigurationTaskLabel` has been explicitly set.
314
+ public var hasSyncDeviceRetrieveDeviceConfigurationTaskLabel: Bool {return _storage._syncDeviceRetrieveDeviceConfigurationTaskLabel != nil}
315
+ /// Clears the value of `syncDeviceRetrieveDeviceConfigurationTaskLabel`. Subsequent reads from it will return its default value.
316
+ public mutating func clearSyncDeviceRetrieveDeviceConfigurationTaskLabel() {_uniqueStorage()._syncDeviceRetrieveDeviceConfigurationTaskLabel = nil}
317
+
318
+ public var syncDeviceUpdateDeviceConfigurationTaskLabel: String {
319
+ get {return _storage._syncDeviceUpdateDeviceConfigurationTaskLabel ?? "Update device configuration"}
320
+ set {_uniqueStorage()._syncDeviceUpdateDeviceConfigurationTaskLabel = newValue}
321
+ }
322
+ /// Returns true if `syncDeviceUpdateDeviceConfigurationTaskLabel` has been explicitly set.
323
+ public var hasSyncDeviceUpdateDeviceConfigurationTaskLabel: Bool {return _storage._syncDeviceUpdateDeviceConfigurationTaskLabel != nil}
324
+ /// Clears the value of `syncDeviceUpdateDeviceConfigurationTaskLabel`. Subsequent reads from it will return its default value.
325
+ public mutating func clearSyncDeviceUpdateDeviceConfigurationTaskLabel() {_uniqueStorage()._syncDeviceUpdateDeviceConfigurationTaskLabel = nil}
326
+
327
+ public var syncDeviceUpdateDeviceTimeTaskLabel: String {
328
+ get {return _storage._syncDeviceUpdateDeviceTimeTaskLabel ?? "Update device time"}
329
+ set {_uniqueStorage()._syncDeviceUpdateDeviceTimeTaskLabel = newValue}
330
+ }
331
+ /// Returns true if `syncDeviceUpdateDeviceTimeTaskLabel` has been explicitly set.
332
+ public var hasSyncDeviceUpdateDeviceTimeTaskLabel: Bool {return _storage._syncDeviceUpdateDeviceTimeTaskLabel != nil}
333
+ /// Clears the value of `syncDeviceUpdateDeviceTimeTaskLabel`. Subsequent reads from it will return its default value.
334
+ public mutating func clearSyncDeviceUpdateDeviceTimeTaskLabel() {_uniqueStorage()._syncDeviceUpdateDeviceTimeTaskLabel = nil}
335
+
336
+ public var syncDeviceWaitForDeviceToRestartTaskLabel: String {
337
+ get {return _storage._syncDeviceWaitForDeviceToRestartTaskLabel ?? "Wait for device to restart"}
338
+ set {_uniqueStorage()._syncDeviceWaitForDeviceToRestartTaskLabel = newValue}
339
+ }
340
+ /// Returns true if `syncDeviceWaitForDeviceToRestartTaskLabel` has been explicitly set.
341
+ public var hasSyncDeviceWaitForDeviceToRestartTaskLabel: Bool {return _storage._syncDeviceWaitForDeviceToRestartTaskLabel != nil}
342
+ /// Clears the value of `syncDeviceWaitForDeviceToRestartTaskLabel`. Subsequent reads from it will return its default value.
343
+ public mutating func clearSyncDeviceWaitForDeviceToRestartTaskLabel() {_uniqueStorage()._syncDeviceWaitForDeviceToRestartTaskLabel = nil}
344
+
345
+ public var syncDevicePushEventLogsTaskLabel: String {
346
+ get {return _storage._syncDevicePushEventLogsTaskLabel ?? "Push event logs"}
347
+ set {_uniqueStorage()._syncDevicePushEventLogsTaskLabel = newValue}
348
+ }
349
+ /// Returns true if `syncDevicePushEventLogsTaskLabel` has been explicitly set.
350
+ public var hasSyncDevicePushEventLogsTaskLabel: Bool {return _storage._syncDevicePushEventLogsTaskLabel != nil}
351
+ /// Clears the value of `syncDevicePushEventLogsTaskLabel`. Subsequent reads from it will return its default value.
352
+ public mutating func clearSyncDevicePushEventLogsTaskLabel() {_uniqueStorage()._syncDevicePushEventLogsTaskLabel = nil}
353
+
354
+ public var syncDevicePushSystemLogsTaskLabel: String {
355
+ get {return _storage._syncDevicePushSystemLogsTaskLabel ?? "Push system logs"}
356
+ set {_uniqueStorage()._syncDevicePushSystemLogsTaskLabel = newValue}
357
+ }
358
+ /// Returns true if `syncDevicePushSystemLogsTaskLabel` has been explicitly set.
359
+ public var hasSyncDevicePushSystemLogsTaskLabel: Bool {return _storage._syncDevicePushSystemLogsTaskLabel != nil}
360
+ /// Clears the value of `syncDevicePushSystemLogsTaskLabel`. Subsequent reads from it will return its default value.
361
+ public mutating func clearSyncDevicePushSystemLogsTaskLabel() {_uniqueStorage()._syncDevicePushSystemLogsTaskLabel = nil}
362
+
363
+ public var syncDeviceRetrieveBlacklistEntriesTaskLabel: String {
364
+ get {return _storage._syncDeviceRetrieveBlacklistEntriesTaskLabel ?? "Retrieve blacklist entries"}
365
+ set {_uniqueStorage()._syncDeviceRetrieveBlacklistEntriesTaskLabel = newValue}
366
+ }
367
+ /// Returns true if `syncDeviceRetrieveBlacklistEntriesTaskLabel` has been explicitly set.
368
+ public var hasSyncDeviceRetrieveBlacklistEntriesTaskLabel: Bool {return _storage._syncDeviceRetrieveBlacklistEntriesTaskLabel != nil}
369
+ /// Clears the value of `syncDeviceRetrieveBlacklistEntriesTaskLabel`. Subsequent reads from it will return its default value.
370
+ public mutating func clearSyncDeviceRetrieveBlacklistEntriesTaskLabel() {_uniqueStorage()._syncDeviceRetrieveBlacklistEntriesTaskLabel = nil}
371
+
372
+ public var syncDeviceDeployBlacklistEntriesTaskLabel: String {
373
+ get {return _storage._syncDeviceDeployBlacklistEntriesTaskLabel ?? "Deploy blacklist entries"}
374
+ set {_uniqueStorage()._syncDeviceDeployBlacklistEntriesTaskLabel = newValue}
375
+ }
376
+ /// Returns true if `syncDeviceDeployBlacklistEntriesTaskLabel` has been explicitly set.
377
+ public var hasSyncDeviceDeployBlacklistEntriesTaskLabel: Bool {return _storage._syncDeviceDeployBlacklistEntriesTaskLabel != nil}
378
+ /// Clears the value of `syncDeviceDeployBlacklistEntriesTaskLabel`. Subsequent reads from it will return its default value.
379
+ public mutating func clearSyncDeviceDeployBlacklistEntriesTaskLabel() {_uniqueStorage()._syncDeviceDeployBlacklistEntriesTaskLabel = nil}
380
+
381
+ public var syncDeviceRetrieveSystemStatusTaskLabel: String {
382
+ get {return _storage._syncDeviceRetrieveSystemStatusTaskLabel ?? "Retrieve system status"}
383
+ set {_uniqueStorage()._syncDeviceRetrieveSystemStatusTaskLabel = newValue}
384
+ }
385
+ /// Returns true if `syncDeviceRetrieveSystemStatusTaskLabel` has been explicitly set.
386
+ public var hasSyncDeviceRetrieveSystemStatusTaskLabel: Bool {return _storage._syncDeviceRetrieveSystemStatusTaskLabel != nil}
387
+ /// Clears the value of `syncDeviceRetrieveSystemStatusTaskLabel`. Subsequent reads from it will return its default value.
388
+ public mutating func clearSyncDeviceRetrieveSystemStatusTaskLabel() {_uniqueStorage()._syncDeviceRetrieveSystemStatusTaskLabel = nil}
389
+
390
+ public var syncDevicePushSystemStatusTaskLabel: String {
391
+ get {return _storage._syncDevicePushSystemStatusTaskLabel ?? "Push system status"}
392
+ set {_uniqueStorage()._syncDevicePushSystemStatusTaskLabel = newValue}
393
+ }
394
+ /// Returns true if `syncDevicePushSystemStatusTaskLabel` has been explicitly set.
395
+ public var hasSyncDevicePushSystemStatusTaskLabel: Bool {return _storage._syncDevicePushSystemStatusTaskLabel != nil}
396
+ /// Clears the value of `syncDevicePushSystemStatusTaskLabel`. Subsequent reads from it will return its default value.
397
+ public mutating func clearSyncDevicePushSystemStatusTaskLabel() {_uniqueStorage()._syncDevicePushSystemStatusTaskLabel = nil}
398
+
264
399
  public var unknownFields = SwiftProtobuf.UnknownStorage()
265
400
 
266
401
  public init() {}
@@ -854,15 +989,30 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
854
989
  7: .same(proto: "nfcOssSuccessUnprovisionMessage"),
855
990
  8: .same(proto: "nfcOssSuccessFormatMessage"),
856
991
  9: .same(proto: "nfcInitializingWritingProcess"),
857
- 10: .same(proto: "cmnCancelLabel"),
858
- 11: .same(proto: "openViaOssTitle"),
859
- 12: .same(proto: "openViaOssWaitMessage"),
860
- 13: .same(proto: "openViaOssAccessGrantedTitle"),
861
- 14: .same(proto: "openViaOssAccessGrantedMessage"),
862
- 15: .same(proto: "openViaOssAccessDeniedTitle"),
863
- 16: .same(proto: "openViaOssAccessDeniedMessage"),
864
- 17: .same(proto: "openViaOssAccessDeniedScheduleMismatchMessage"),
865
- 18: .same(proto: "openViaOssErrorTitle"),
992
+ 10: .same(proto: "openViaOssTitle"),
993
+ 11: .same(proto: "openViaOssWaitMessage"),
994
+ 12: .same(proto: "openViaOssAccessGrantedTitle"),
995
+ 13: .same(proto: "openViaOssAccessGrantedMessage"),
996
+ 14: .same(proto: "openViaOssAccessDeniedTitle"),
997
+ 15: .same(proto: "openViaOssAccessDeniedMessage"),
998
+ 16: .same(proto: "openViaOssAccessDeniedScheduleMismatchMessage"),
999
+ 17: .same(proto: "openViaOssErrorTitle"),
1000
+ 18: .same(proto: "cmnCancelLabel"),
1001
+ 19: .same(proto: "cmnCloseLabel"),
1002
+ 20: .same(proto: "syncDeviceInProgressTitle"),
1003
+ 21: .same(proto: "syncDeviceFailedTitle"),
1004
+ 22: .same(proto: "syncDeviceCancellingTitle"),
1005
+ 23: .same(proto: "syncDeviceGetAuthenticationTokenTaskLabel"),
1006
+ 24: .same(proto: "syncDeviceRetrieveDeviceConfigurationTaskLabel"),
1007
+ 25: .same(proto: "syncDeviceUpdateDeviceConfigurationTaskLabel"),
1008
+ 26: .same(proto: "syncDeviceUpdateDeviceTimeTaskLabel"),
1009
+ 27: .same(proto: "syncDeviceWaitForDeviceToRestartTaskLabel"),
1010
+ 28: .same(proto: "syncDevicePushEventLogsTaskLabel"),
1011
+ 29: .same(proto: "syncDevicePushSystemLogsTaskLabel"),
1012
+ 30: .same(proto: "syncDeviceRetrieveBlacklistEntriesTaskLabel"),
1013
+ 31: .same(proto: "syncDeviceDeployBlacklistEntriesTaskLabel"),
1014
+ 32: .same(proto: "syncDeviceRetrieveSystemStatusTaskLabel"),
1015
+ 33: .same(proto: "syncDevicePushSystemStatusTaskLabel"),
866
1016
  ]
867
1017
 
868
1018
  fileprivate class _StorageClass {
@@ -875,7 +1025,6 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
875
1025
  var _nfcOssSuccessUnprovisionMessage: String? = nil
876
1026
  var _nfcOssSuccessFormatMessage: String? = nil
877
1027
  var _nfcInitializingWritingProcess: String? = nil
878
- var _cmnCancelLabel: String? = nil
879
1028
  var _openViaOssTitle: String? = nil
880
1029
  var _openViaOssWaitMessage: String? = nil
881
1030
  var _openViaOssAccessGrantedTitle: String? = nil
@@ -884,6 +1033,22 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
884
1033
  var _openViaOssAccessDeniedMessage: String? = nil
885
1034
  var _openViaOssAccessDeniedScheduleMismatchMessage: String? = nil
886
1035
  var _openViaOssErrorTitle: String? = nil
1036
+ var _cmnCancelLabel: String? = nil
1037
+ var _cmnCloseLabel: String? = nil
1038
+ var _syncDeviceInProgressTitle: String? = nil
1039
+ var _syncDeviceFailedTitle: String? = nil
1040
+ var _syncDeviceCancellingTitle: String? = nil
1041
+ var _syncDeviceGetAuthenticationTokenTaskLabel: String? = nil
1042
+ var _syncDeviceRetrieveDeviceConfigurationTaskLabel: String? = nil
1043
+ var _syncDeviceUpdateDeviceConfigurationTaskLabel: String? = nil
1044
+ var _syncDeviceUpdateDeviceTimeTaskLabel: String? = nil
1045
+ var _syncDeviceWaitForDeviceToRestartTaskLabel: String? = nil
1046
+ var _syncDevicePushEventLogsTaskLabel: String? = nil
1047
+ var _syncDevicePushSystemLogsTaskLabel: String? = nil
1048
+ var _syncDeviceRetrieveBlacklistEntriesTaskLabel: String? = nil
1049
+ var _syncDeviceDeployBlacklistEntriesTaskLabel: String? = nil
1050
+ var _syncDeviceRetrieveSystemStatusTaskLabel: String? = nil
1051
+ var _syncDevicePushSystemStatusTaskLabel: String? = nil
887
1052
 
888
1053
  static let defaultInstance = _StorageClass()
889
1054
 
@@ -899,7 +1064,6 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
899
1064
  _nfcOssSuccessUnprovisionMessage = source._nfcOssSuccessUnprovisionMessage
900
1065
  _nfcOssSuccessFormatMessage = source._nfcOssSuccessFormatMessage
901
1066
  _nfcInitializingWritingProcess = source._nfcInitializingWritingProcess
902
- _cmnCancelLabel = source._cmnCancelLabel
903
1067
  _openViaOssTitle = source._openViaOssTitle
904
1068
  _openViaOssWaitMessage = source._openViaOssWaitMessage
905
1069
  _openViaOssAccessGrantedTitle = source._openViaOssAccessGrantedTitle
@@ -908,6 +1072,22 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
908
1072
  _openViaOssAccessDeniedMessage = source._openViaOssAccessDeniedMessage
909
1073
  _openViaOssAccessDeniedScheduleMismatchMessage = source._openViaOssAccessDeniedScheduleMismatchMessage
910
1074
  _openViaOssErrorTitle = source._openViaOssErrorTitle
1075
+ _cmnCancelLabel = source._cmnCancelLabel
1076
+ _cmnCloseLabel = source._cmnCloseLabel
1077
+ _syncDeviceInProgressTitle = source._syncDeviceInProgressTitle
1078
+ _syncDeviceFailedTitle = source._syncDeviceFailedTitle
1079
+ _syncDeviceCancellingTitle = source._syncDeviceCancellingTitle
1080
+ _syncDeviceGetAuthenticationTokenTaskLabel = source._syncDeviceGetAuthenticationTokenTaskLabel
1081
+ _syncDeviceRetrieveDeviceConfigurationTaskLabel = source._syncDeviceRetrieveDeviceConfigurationTaskLabel
1082
+ _syncDeviceUpdateDeviceConfigurationTaskLabel = source._syncDeviceUpdateDeviceConfigurationTaskLabel
1083
+ _syncDeviceUpdateDeviceTimeTaskLabel = source._syncDeviceUpdateDeviceTimeTaskLabel
1084
+ _syncDeviceWaitForDeviceToRestartTaskLabel = source._syncDeviceWaitForDeviceToRestartTaskLabel
1085
+ _syncDevicePushEventLogsTaskLabel = source._syncDevicePushEventLogsTaskLabel
1086
+ _syncDevicePushSystemLogsTaskLabel = source._syncDevicePushSystemLogsTaskLabel
1087
+ _syncDeviceRetrieveBlacklistEntriesTaskLabel = source._syncDeviceRetrieveBlacklistEntriesTaskLabel
1088
+ _syncDeviceDeployBlacklistEntriesTaskLabel = source._syncDeviceDeployBlacklistEntriesTaskLabel
1089
+ _syncDeviceRetrieveSystemStatusTaskLabel = source._syncDeviceRetrieveSystemStatusTaskLabel
1090
+ _syncDevicePushSystemStatusTaskLabel = source._syncDevicePushSystemStatusTaskLabel
911
1091
  }
912
1092
  }
913
1093
 
@@ -929,7 +1109,6 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
929
1109
  if _storage._nfcOssSuccessUnprovisionMessage == nil {return false}
930
1110
  if _storage._nfcOssSuccessFormatMessage == nil {return false}
931
1111
  if _storage._nfcInitializingWritingProcess == nil {return false}
932
- if _storage._cmnCancelLabel == nil {return false}
933
1112
  if _storage._openViaOssTitle == nil {return false}
934
1113
  if _storage._openViaOssWaitMessage == nil {return false}
935
1114
  if _storage._openViaOssAccessGrantedTitle == nil {return false}
@@ -938,6 +1117,22 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
938
1117
  if _storage._openViaOssAccessDeniedMessage == nil {return false}
939
1118
  if _storage._openViaOssAccessDeniedScheduleMismatchMessage == nil {return false}
940
1119
  if _storage._openViaOssErrorTitle == nil {return false}
1120
+ if _storage._cmnCancelLabel == nil {return false}
1121
+ if _storage._cmnCloseLabel == nil {return false}
1122
+ if _storage._syncDeviceInProgressTitle == nil {return false}
1123
+ if _storage._syncDeviceFailedTitle == nil {return false}
1124
+ if _storage._syncDeviceCancellingTitle == nil {return false}
1125
+ if _storage._syncDeviceGetAuthenticationTokenTaskLabel == nil {return false}
1126
+ if _storage._syncDeviceRetrieveDeviceConfigurationTaskLabel == nil {return false}
1127
+ if _storage._syncDeviceUpdateDeviceConfigurationTaskLabel == nil {return false}
1128
+ if _storage._syncDeviceUpdateDeviceTimeTaskLabel == nil {return false}
1129
+ if _storage._syncDeviceWaitForDeviceToRestartTaskLabel == nil {return false}
1130
+ if _storage._syncDevicePushEventLogsTaskLabel == nil {return false}
1131
+ if _storage._syncDevicePushSystemLogsTaskLabel == nil {return false}
1132
+ if _storage._syncDeviceRetrieveBlacklistEntriesTaskLabel == nil {return false}
1133
+ if _storage._syncDeviceDeployBlacklistEntriesTaskLabel == nil {return false}
1134
+ if _storage._syncDeviceRetrieveSystemStatusTaskLabel == nil {return false}
1135
+ if _storage._syncDevicePushSystemStatusTaskLabel == nil {return false}
941
1136
  return true
942
1137
  }
943
1138
  }
@@ -959,15 +1154,30 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
959
1154
  case 7: try { try decoder.decodeSingularStringField(value: &_storage._nfcOssSuccessUnprovisionMessage) }()
960
1155
  case 8: try { try decoder.decodeSingularStringField(value: &_storage._nfcOssSuccessFormatMessage) }()
961
1156
  case 9: try { try decoder.decodeSingularStringField(value: &_storage._nfcInitializingWritingProcess) }()
962
- case 10: try { try decoder.decodeSingularStringField(value: &_storage._cmnCancelLabel) }()
963
- case 11: try { try decoder.decodeSingularStringField(value: &_storage._openViaOssTitle) }()
964
- case 12: try { try decoder.decodeSingularStringField(value: &_storage._openViaOssWaitMessage) }()
965
- case 13: try { try decoder.decodeSingularStringField(value: &_storage._openViaOssAccessGrantedTitle) }()
966
- case 14: try { try decoder.decodeSingularStringField(value: &_storage._openViaOssAccessGrantedMessage) }()
967
- case 15: try { try decoder.decodeSingularStringField(value: &_storage._openViaOssAccessDeniedTitle) }()
968
- case 16: try { try decoder.decodeSingularStringField(value: &_storage._openViaOssAccessDeniedMessage) }()
969
- case 17: try { try decoder.decodeSingularStringField(value: &_storage._openViaOssAccessDeniedScheduleMismatchMessage) }()
970
- case 18: try { try decoder.decodeSingularStringField(value: &_storage._openViaOssErrorTitle) }()
1157
+ case 10: try { try decoder.decodeSingularStringField(value: &_storage._openViaOssTitle) }()
1158
+ case 11: try { try decoder.decodeSingularStringField(value: &_storage._openViaOssWaitMessage) }()
1159
+ case 12: try { try decoder.decodeSingularStringField(value: &_storage._openViaOssAccessGrantedTitle) }()
1160
+ case 13: try { try decoder.decodeSingularStringField(value: &_storage._openViaOssAccessGrantedMessage) }()
1161
+ case 14: try { try decoder.decodeSingularStringField(value: &_storage._openViaOssAccessDeniedTitle) }()
1162
+ case 15: try { try decoder.decodeSingularStringField(value: &_storage._openViaOssAccessDeniedMessage) }()
1163
+ case 16: try { try decoder.decodeSingularStringField(value: &_storage._openViaOssAccessDeniedScheduleMismatchMessage) }()
1164
+ case 17: try { try decoder.decodeSingularStringField(value: &_storage._openViaOssErrorTitle) }()
1165
+ case 18: try { try decoder.decodeSingularStringField(value: &_storage._cmnCancelLabel) }()
1166
+ case 19: try { try decoder.decodeSingularStringField(value: &_storage._cmnCloseLabel) }()
1167
+ case 20: try { try decoder.decodeSingularStringField(value: &_storage._syncDeviceInProgressTitle) }()
1168
+ case 21: try { try decoder.decodeSingularStringField(value: &_storage._syncDeviceFailedTitle) }()
1169
+ case 22: try { try decoder.decodeSingularStringField(value: &_storage._syncDeviceCancellingTitle) }()
1170
+ case 23: try { try decoder.decodeSingularStringField(value: &_storage._syncDeviceGetAuthenticationTokenTaskLabel) }()
1171
+ case 24: try { try decoder.decodeSingularStringField(value: &_storage._syncDeviceRetrieveDeviceConfigurationTaskLabel) }()
1172
+ case 25: try { try decoder.decodeSingularStringField(value: &_storage._syncDeviceUpdateDeviceConfigurationTaskLabel) }()
1173
+ case 26: try { try decoder.decodeSingularStringField(value: &_storage._syncDeviceUpdateDeviceTimeTaskLabel) }()
1174
+ case 27: try { try decoder.decodeSingularStringField(value: &_storage._syncDeviceWaitForDeviceToRestartTaskLabel) }()
1175
+ case 28: try { try decoder.decodeSingularStringField(value: &_storage._syncDevicePushEventLogsTaskLabel) }()
1176
+ case 29: try { try decoder.decodeSingularStringField(value: &_storage._syncDevicePushSystemLogsTaskLabel) }()
1177
+ case 30: try { try decoder.decodeSingularStringField(value: &_storage._syncDeviceRetrieveBlacklistEntriesTaskLabel) }()
1178
+ case 31: try { try decoder.decodeSingularStringField(value: &_storage._syncDeviceDeployBlacklistEntriesTaskLabel) }()
1179
+ case 32: try { try decoder.decodeSingularStringField(value: &_storage._syncDeviceRetrieveSystemStatusTaskLabel) }()
1180
+ case 33: try { try decoder.decodeSingularStringField(value: &_storage._syncDevicePushSystemStatusTaskLabel) }()
971
1181
  default: break
972
1182
  }
973
1183
  }
@@ -1007,33 +1217,78 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
1007
1217
  try { if let v = _storage._nfcInitializingWritingProcess {
1008
1218
  try visitor.visitSingularStringField(value: v, fieldNumber: 9)
1009
1219
  } }()
1010
- try { if let v = _storage._cmnCancelLabel {
1220
+ try { if let v = _storage._openViaOssTitle {
1011
1221
  try visitor.visitSingularStringField(value: v, fieldNumber: 10)
1012
1222
  } }()
1013
- try { if let v = _storage._openViaOssTitle {
1223
+ try { if let v = _storage._openViaOssWaitMessage {
1014
1224
  try visitor.visitSingularStringField(value: v, fieldNumber: 11)
1015
1225
  } }()
1016
- try { if let v = _storage._openViaOssWaitMessage {
1226
+ try { if let v = _storage._openViaOssAccessGrantedTitle {
1017
1227
  try visitor.visitSingularStringField(value: v, fieldNumber: 12)
1018
1228
  } }()
1019
- try { if let v = _storage._openViaOssAccessGrantedTitle {
1229
+ try { if let v = _storage._openViaOssAccessGrantedMessage {
1020
1230
  try visitor.visitSingularStringField(value: v, fieldNumber: 13)
1021
1231
  } }()
1022
- try { if let v = _storage._openViaOssAccessGrantedMessage {
1232
+ try { if let v = _storage._openViaOssAccessDeniedTitle {
1023
1233
  try visitor.visitSingularStringField(value: v, fieldNumber: 14)
1024
1234
  } }()
1025
- try { if let v = _storage._openViaOssAccessDeniedTitle {
1235
+ try { if let v = _storage._openViaOssAccessDeniedMessage {
1026
1236
  try visitor.visitSingularStringField(value: v, fieldNumber: 15)
1027
1237
  } }()
1028
- try { if let v = _storage._openViaOssAccessDeniedMessage {
1238
+ try { if let v = _storage._openViaOssAccessDeniedScheduleMismatchMessage {
1029
1239
  try visitor.visitSingularStringField(value: v, fieldNumber: 16)
1030
1240
  } }()
1031
- try { if let v = _storage._openViaOssAccessDeniedScheduleMismatchMessage {
1241
+ try { if let v = _storage._openViaOssErrorTitle {
1032
1242
  try visitor.visitSingularStringField(value: v, fieldNumber: 17)
1033
1243
  } }()
1034
- try { if let v = _storage._openViaOssErrorTitle {
1244
+ try { if let v = _storage._cmnCancelLabel {
1035
1245
  try visitor.visitSingularStringField(value: v, fieldNumber: 18)
1036
1246
  } }()
1247
+ try { if let v = _storage._cmnCloseLabel {
1248
+ try visitor.visitSingularStringField(value: v, fieldNumber: 19)
1249
+ } }()
1250
+ try { if let v = _storage._syncDeviceInProgressTitle {
1251
+ try visitor.visitSingularStringField(value: v, fieldNumber: 20)
1252
+ } }()
1253
+ try { if let v = _storage._syncDeviceFailedTitle {
1254
+ try visitor.visitSingularStringField(value: v, fieldNumber: 21)
1255
+ } }()
1256
+ try { if let v = _storage._syncDeviceCancellingTitle {
1257
+ try visitor.visitSingularStringField(value: v, fieldNumber: 22)
1258
+ } }()
1259
+ try { if let v = _storage._syncDeviceGetAuthenticationTokenTaskLabel {
1260
+ try visitor.visitSingularStringField(value: v, fieldNumber: 23)
1261
+ } }()
1262
+ try { if let v = _storage._syncDeviceRetrieveDeviceConfigurationTaskLabel {
1263
+ try visitor.visitSingularStringField(value: v, fieldNumber: 24)
1264
+ } }()
1265
+ try { if let v = _storage._syncDeviceUpdateDeviceConfigurationTaskLabel {
1266
+ try visitor.visitSingularStringField(value: v, fieldNumber: 25)
1267
+ } }()
1268
+ try { if let v = _storage._syncDeviceUpdateDeviceTimeTaskLabel {
1269
+ try visitor.visitSingularStringField(value: v, fieldNumber: 26)
1270
+ } }()
1271
+ try { if let v = _storage._syncDeviceWaitForDeviceToRestartTaskLabel {
1272
+ try visitor.visitSingularStringField(value: v, fieldNumber: 27)
1273
+ } }()
1274
+ try { if let v = _storage._syncDevicePushEventLogsTaskLabel {
1275
+ try visitor.visitSingularStringField(value: v, fieldNumber: 28)
1276
+ } }()
1277
+ try { if let v = _storage._syncDevicePushSystemLogsTaskLabel {
1278
+ try visitor.visitSingularStringField(value: v, fieldNumber: 29)
1279
+ } }()
1280
+ try { if let v = _storage._syncDeviceRetrieveBlacklistEntriesTaskLabel {
1281
+ try visitor.visitSingularStringField(value: v, fieldNumber: 30)
1282
+ } }()
1283
+ try { if let v = _storage._syncDeviceDeployBlacklistEntriesTaskLabel {
1284
+ try visitor.visitSingularStringField(value: v, fieldNumber: 31)
1285
+ } }()
1286
+ try { if let v = _storage._syncDeviceRetrieveSystemStatusTaskLabel {
1287
+ try visitor.visitSingularStringField(value: v, fieldNumber: 32)
1288
+ } }()
1289
+ try { if let v = _storage._syncDevicePushSystemStatusTaskLabel {
1290
+ try visitor.visitSingularStringField(value: v, fieldNumber: 33)
1291
+ } }()
1037
1292
  }
1038
1293
  try unknownFields.traverse(visitor: &visitor)
1039
1294
  }
@@ -1052,7 +1307,6 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
1052
1307
  if _storage._nfcOssSuccessUnprovisionMessage != rhs_storage._nfcOssSuccessUnprovisionMessage {return false}
1053
1308
  if _storage._nfcOssSuccessFormatMessage != rhs_storage._nfcOssSuccessFormatMessage {return false}
1054
1309
  if _storage._nfcInitializingWritingProcess != rhs_storage._nfcInitializingWritingProcess {return false}
1055
- if _storage._cmnCancelLabel != rhs_storage._cmnCancelLabel {return false}
1056
1310
  if _storage._openViaOssTitle != rhs_storage._openViaOssTitle {return false}
1057
1311
  if _storage._openViaOssWaitMessage != rhs_storage._openViaOssWaitMessage {return false}
1058
1312
  if _storage._openViaOssAccessGrantedTitle != rhs_storage._openViaOssAccessGrantedTitle {return false}
@@ -1061,6 +1315,22 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
1061
1315
  if _storage._openViaOssAccessDeniedMessage != rhs_storage._openViaOssAccessDeniedMessage {return false}
1062
1316
  if _storage._openViaOssAccessDeniedScheduleMismatchMessage != rhs_storage._openViaOssAccessDeniedScheduleMismatchMessage {return false}
1063
1317
  if _storage._openViaOssErrorTitle != rhs_storage._openViaOssErrorTitle {return false}
1318
+ if _storage._cmnCancelLabel != rhs_storage._cmnCancelLabel {return false}
1319
+ if _storage._cmnCloseLabel != rhs_storage._cmnCloseLabel {return false}
1320
+ if _storage._syncDeviceInProgressTitle != rhs_storage._syncDeviceInProgressTitle {return false}
1321
+ if _storage._syncDeviceFailedTitle != rhs_storage._syncDeviceFailedTitle {return false}
1322
+ if _storage._syncDeviceCancellingTitle != rhs_storage._syncDeviceCancellingTitle {return false}
1323
+ if _storage._syncDeviceGetAuthenticationTokenTaskLabel != rhs_storage._syncDeviceGetAuthenticationTokenTaskLabel {return false}
1324
+ if _storage._syncDeviceRetrieveDeviceConfigurationTaskLabel != rhs_storage._syncDeviceRetrieveDeviceConfigurationTaskLabel {return false}
1325
+ if _storage._syncDeviceUpdateDeviceConfigurationTaskLabel != rhs_storage._syncDeviceUpdateDeviceConfigurationTaskLabel {return false}
1326
+ if _storage._syncDeviceUpdateDeviceTimeTaskLabel != rhs_storage._syncDeviceUpdateDeviceTimeTaskLabel {return false}
1327
+ if _storage._syncDeviceWaitForDeviceToRestartTaskLabel != rhs_storage._syncDeviceWaitForDeviceToRestartTaskLabel {return false}
1328
+ if _storage._syncDevicePushEventLogsTaskLabel != rhs_storage._syncDevicePushEventLogsTaskLabel {return false}
1329
+ if _storage._syncDevicePushSystemLogsTaskLabel != rhs_storage._syncDevicePushSystemLogsTaskLabel {return false}
1330
+ if _storage._syncDeviceRetrieveBlacklistEntriesTaskLabel != rhs_storage._syncDeviceRetrieveBlacklistEntriesTaskLabel {return false}
1331
+ if _storage._syncDeviceDeployBlacklistEntriesTaskLabel != rhs_storage._syncDeviceDeployBlacklistEntriesTaskLabel {return false}
1332
+ if _storage._syncDeviceRetrieveSystemStatusTaskLabel != rhs_storage._syncDeviceRetrieveSystemStatusTaskLabel {return false}
1333
+ if _storage._syncDevicePushSystemStatusTaskLabel != rhs_storage._syncDevicePushSystemStatusTaskLabel {return false}
1064
1334
  return true
1065
1335
  }
1066
1336
  if !storagesAreEqual {return false}