@blueid/access-proto 0.93.0 → 0.97.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 +5 -0
- package/BlueSDK.proto +46 -11
- package/cjs/BlueCore_pb.d.ts +25 -0
- package/cjs/BlueCore_pb.js +5 -0
- package/cjs/BlueSDK_pb.d.ts +93 -13
- package/cjs/BlueSDK_pb.js +25 -9
- package/es/BlueCore_pb.d.ts +25 -0
- package/es/BlueCore_pb.js +5 -0
- package/es/BlueSDK_pb.d.ts +93 -13
- package/es/BlueSDK_pb.js +25 -9
- package/nanopb/BlueCore.pb.h +5 -0
- package/nanopb/BlueSDK.pb.h +69 -21
- package/package.json +1 -1
- package/swift/BlueCore.pb.swift +20 -0
- package/swift/BlueSDK.pb.swift +328 -40
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,61 @@ 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 =
|
|
32
|
+
required string openViaOssTitle = 10
|
|
36
33
|
[ default = "Unlocking in Progress"];
|
|
37
|
-
required string openViaOssWaitMessage =
|
|
34
|
+
required string openViaOssWaitMessage = 11
|
|
38
35
|
[ default = "Establishing secure connection..."];
|
|
39
|
-
required string openViaOssAccessGrantedTitle =
|
|
36
|
+
required string openViaOssAccessGrantedTitle = 12
|
|
40
37
|
[ default = "Access Granted"];
|
|
41
|
-
required string openViaOssAccessGrantedMessage =
|
|
38
|
+
required string openViaOssAccessGrantedMessage = 13
|
|
42
39
|
[ default = "Please proceed."];
|
|
43
|
-
required string openViaOssAccessDeniedTitle =
|
|
40
|
+
required string openViaOssAccessDeniedTitle = 14
|
|
44
41
|
[ default = "Access Denied"];
|
|
45
|
-
required string openViaOssAccessDeniedMessage =
|
|
42
|
+
required string openViaOssAccessDeniedMessage = 15
|
|
46
43
|
[ default = "Credentials are invalid or outdated."];
|
|
47
|
-
required string openViaOssAccessDeniedScheduleMismatchMessage =
|
|
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 =
|
|
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 syncDeviceCompletedTitle = 23
|
|
63
|
+
[ default = "Synchronization has been completed" ];
|
|
64
|
+
required string syncDeviceGetAuthenticationTokenTaskLabel = 24
|
|
65
|
+
[ default = "Issue authentication token" ];
|
|
66
|
+
required string syncDeviceRetrieveDeviceConfigurationTaskLabel = 25
|
|
67
|
+
[ default = "Retrieve device configuration" ];
|
|
68
|
+
required string syncDeviceUpdateDeviceConfigurationTaskLabel = 26
|
|
69
|
+
[ default = "Update device configuration" ];
|
|
70
|
+
required string syncDeviceUpdateDeviceTimeTaskLabel = 27
|
|
71
|
+
[ default = "Update device time" ];
|
|
72
|
+
required string syncDeviceWaitForDeviceToRestartTaskLabel = 28
|
|
73
|
+
[ default = "Wait for device to restart" ];
|
|
74
|
+
required string syncDevicePushEventLogsTaskLabel = 29
|
|
75
|
+
[ default = "Push event logs" ];
|
|
76
|
+
required string syncDevicePushSystemLogsTaskLabel = 30
|
|
77
|
+
[ default = "Push system logs" ];
|
|
78
|
+
required string syncDeviceRetrieveBlacklistEntriesTaskLabel = 31
|
|
79
|
+
[ default = "Retrieve blacklist entries" ];
|
|
80
|
+
required string syncDeviceDeployBlacklistEntriesTaskLabel = 32
|
|
81
|
+
[ default = "Deploy blacklist entries" ];
|
|
82
|
+
required string syncDeviceRetrieveSystemStatusTaskLabel = 33
|
|
83
|
+
[ default = "Retrieve system status" ];
|
|
84
|
+
required string syncDevicePushSystemStatusTaskLabel = 34
|
|
85
|
+
[ default = "Push system status" ];
|
|
51
86
|
}
|
|
52
87
|
|
|
53
88
|
///////////////////////////////////////////////////////////////////////
|
package/cjs/BlueCore_pb.d.ts
CHANGED
|
@@ -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/cjs/BlueCore_pb.js
CHANGED
|
@@ -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
|
]
|
package/cjs/BlueSDK_pb.d.ts
CHANGED
|
@@ -97,50 +97,130 @@ export declare class BlueI18n extends Message<BlueI18n> {
|
|
|
97
97
|
nfcInitializingWritingProcess: string;
|
|
98
98
|
|
|
99
99
|
/**
|
|
100
|
-
* @generated from field: required string
|
|
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 =
|
|
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 =
|
|
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 =
|
|
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 =
|
|
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 =
|
|
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 =
|
|
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 =
|
|
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 syncDeviceCompletedTitle = 23 [default = "Synchronization has been completed"];
|
|
166
|
+
*/
|
|
167
|
+
syncDeviceCompletedTitle: string;
|
|
168
|
+
|
|
169
|
+
/**
|
|
170
|
+
* @generated from field: required string syncDeviceGetAuthenticationTokenTaskLabel = 24 [default = "Issue authentication token"];
|
|
171
|
+
*/
|
|
172
|
+
syncDeviceGetAuthenticationTokenTaskLabel: string;
|
|
173
|
+
|
|
174
|
+
/**
|
|
175
|
+
* @generated from field: required string syncDeviceRetrieveDeviceConfigurationTaskLabel = 25 [default = "Retrieve device configuration"];
|
|
176
|
+
*/
|
|
177
|
+
syncDeviceRetrieveDeviceConfigurationTaskLabel: string;
|
|
178
|
+
|
|
179
|
+
/**
|
|
180
|
+
* @generated from field: required string syncDeviceUpdateDeviceConfigurationTaskLabel = 26 [default = "Update device configuration"];
|
|
181
|
+
*/
|
|
182
|
+
syncDeviceUpdateDeviceConfigurationTaskLabel: string;
|
|
183
|
+
|
|
184
|
+
/**
|
|
185
|
+
* @generated from field: required string syncDeviceUpdateDeviceTimeTaskLabel = 27 [default = "Update device time"];
|
|
186
|
+
*/
|
|
187
|
+
syncDeviceUpdateDeviceTimeTaskLabel: string;
|
|
188
|
+
|
|
189
|
+
/**
|
|
190
|
+
* @generated from field: required string syncDeviceWaitForDeviceToRestartTaskLabel = 28 [default = "Wait for device to restart"];
|
|
191
|
+
*/
|
|
192
|
+
syncDeviceWaitForDeviceToRestartTaskLabel: string;
|
|
193
|
+
|
|
194
|
+
/**
|
|
195
|
+
* @generated from field: required string syncDevicePushEventLogsTaskLabel = 29 [default = "Push event logs"];
|
|
196
|
+
*/
|
|
197
|
+
syncDevicePushEventLogsTaskLabel: string;
|
|
198
|
+
|
|
199
|
+
/**
|
|
200
|
+
* @generated from field: required string syncDevicePushSystemLogsTaskLabel = 30 [default = "Push system logs"];
|
|
201
|
+
*/
|
|
202
|
+
syncDevicePushSystemLogsTaskLabel: string;
|
|
203
|
+
|
|
204
|
+
/**
|
|
205
|
+
* @generated from field: required string syncDeviceRetrieveBlacklistEntriesTaskLabel = 31 [default = "Retrieve blacklist entries"];
|
|
206
|
+
*/
|
|
207
|
+
syncDeviceRetrieveBlacklistEntriesTaskLabel: string;
|
|
208
|
+
|
|
209
|
+
/**
|
|
210
|
+
* @generated from field: required string syncDeviceDeployBlacklistEntriesTaskLabel = 32 [default = "Deploy blacklist entries"];
|
|
211
|
+
*/
|
|
212
|
+
syncDeviceDeployBlacklistEntriesTaskLabel: string;
|
|
213
|
+
|
|
214
|
+
/**
|
|
215
|
+
* @generated from field: required string syncDeviceRetrieveSystemStatusTaskLabel = 33 [default = "Retrieve system status"];
|
|
216
|
+
*/
|
|
217
|
+
syncDeviceRetrieveSystemStatusTaskLabel: string;
|
|
218
|
+
|
|
219
|
+
/**
|
|
220
|
+
* @generated from field: required string syncDevicePushSystemStatusTaskLabel = 34 [default = "Push system status"];
|
|
221
|
+
*/
|
|
222
|
+
syncDevicePushSystemStatusTaskLabel: string;
|
|
223
|
+
|
|
144
224
|
constructor(data?: PartialMessage<BlueI18n>);
|
|
145
225
|
|
|
146
226
|
static readonly runtime: typeof proto2;
|
package/cjs/BlueSDK_pb.js
CHANGED
|
@@ -65,15 +65,31 @@ 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: "
|
|
69
|
-
{ no: 11, name: "
|
|
70
|
-
{ no: 12, name: "
|
|
71
|
-
{ no: 13, name: "
|
|
72
|
-
{ no: 14, name: "
|
|
73
|
-
{ no: 15, name: "
|
|
74
|
-
{ no: 16, name: "
|
|
75
|
-
{ no: 17, name: "
|
|
76
|
-
{ no: 18, name: "
|
|
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: "syncDeviceCompletedTitle", kind: "scalar", T: 9, default: "Synchronization has been completed" },
|
|
82
|
+
{ no: 24, name: "syncDeviceGetAuthenticationTokenTaskLabel", kind: "scalar", T: 9, default: "Issue authentication token" },
|
|
83
|
+
{ no: 25, name: "syncDeviceRetrieveDeviceConfigurationTaskLabel", kind: "scalar", T: 9, default: "Retrieve device configuration" },
|
|
84
|
+
{ no: 26, name: "syncDeviceUpdateDeviceConfigurationTaskLabel", kind: "scalar", T: 9, default: "Update device configuration" },
|
|
85
|
+
{ no: 27, name: "syncDeviceUpdateDeviceTimeTaskLabel", kind: "scalar", T: 9, default: "Update device time" },
|
|
86
|
+
{ no: 28, name: "syncDeviceWaitForDeviceToRestartTaskLabel", kind: "scalar", T: 9, default: "Wait for device to restart" },
|
|
87
|
+
{ no: 29, name: "syncDevicePushEventLogsTaskLabel", kind: "scalar", T: 9, default: "Push event logs" },
|
|
88
|
+
{ no: 30, name: "syncDevicePushSystemLogsTaskLabel", kind: "scalar", T: 9, default: "Push system logs" },
|
|
89
|
+
{ no: 31, name: "syncDeviceRetrieveBlacklistEntriesTaskLabel", kind: "scalar", T: 9, default: "Retrieve blacklist entries" },
|
|
90
|
+
{ no: 32, name: "syncDeviceDeployBlacklistEntriesTaskLabel", kind: "scalar", T: 9, default: "Deploy blacklist entries" },
|
|
91
|
+
{ no: 33, name: "syncDeviceRetrieveSystemStatusTaskLabel", kind: "scalar", T: 9, default: "Retrieve system status" },
|
|
92
|
+
{ no: 34, name: "syncDevicePushSystemStatusTaskLabel", kind: "scalar", T: 9, default: "Push system status" }
|
|
77
93
|
]
|
|
78
94
|
);
|
|
79
95
|
const BlueDeviceDetailsBluetooth = import_protobuf.proto2.makeMessageType(
|
package/es/BlueCore_pb.d.ts
CHANGED
|
@@ -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
|
],
|
package/es/BlueSDK_pb.d.ts
CHANGED
|
@@ -97,50 +97,130 @@ export declare class BlueI18n extends Message<BlueI18n> {
|
|
|
97
97
|
nfcInitializingWritingProcess: string;
|
|
98
98
|
|
|
99
99
|
/**
|
|
100
|
-
* @generated from field: required string
|
|
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 =
|
|
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 =
|
|
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 =
|
|
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 =
|
|
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 =
|
|
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 =
|
|
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 =
|
|
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 syncDeviceCompletedTitle = 23 [default = "Synchronization has been completed"];
|
|
166
|
+
*/
|
|
167
|
+
syncDeviceCompletedTitle: string;
|
|
168
|
+
|
|
169
|
+
/**
|
|
170
|
+
* @generated from field: required string syncDeviceGetAuthenticationTokenTaskLabel = 24 [default = "Issue authentication token"];
|
|
171
|
+
*/
|
|
172
|
+
syncDeviceGetAuthenticationTokenTaskLabel: string;
|
|
173
|
+
|
|
174
|
+
/**
|
|
175
|
+
* @generated from field: required string syncDeviceRetrieveDeviceConfigurationTaskLabel = 25 [default = "Retrieve device configuration"];
|
|
176
|
+
*/
|
|
177
|
+
syncDeviceRetrieveDeviceConfigurationTaskLabel: string;
|
|
178
|
+
|
|
179
|
+
/**
|
|
180
|
+
* @generated from field: required string syncDeviceUpdateDeviceConfigurationTaskLabel = 26 [default = "Update device configuration"];
|
|
181
|
+
*/
|
|
182
|
+
syncDeviceUpdateDeviceConfigurationTaskLabel: string;
|
|
183
|
+
|
|
184
|
+
/**
|
|
185
|
+
* @generated from field: required string syncDeviceUpdateDeviceTimeTaskLabel = 27 [default = "Update device time"];
|
|
186
|
+
*/
|
|
187
|
+
syncDeviceUpdateDeviceTimeTaskLabel: string;
|
|
188
|
+
|
|
189
|
+
/**
|
|
190
|
+
* @generated from field: required string syncDeviceWaitForDeviceToRestartTaskLabel = 28 [default = "Wait for device to restart"];
|
|
191
|
+
*/
|
|
192
|
+
syncDeviceWaitForDeviceToRestartTaskLabel: string;
|
|
193
|
+
|
|
194
|
+
/**
|
|
195
|
+
* @generated from field: required string syncDevicePushEventLogsTaskLabel = 29 [default = "Push event logs"];
|
|
196
|
+
*/
|
|
197
|
+
syncDevicePushEventLogsTaskLabel: string;
|
|
198
|
+
|
|
199
|
+
/**
|
|
200
|
+
* @generated from field: required string syncDevicePushSystemLogsTaskLabel = 30 [default = "Push system logs"];
|
|
201
|
+
*/
|
|
202
|
+
syncDevicePushSystemLogsTaskLabel: string;
|
|
203
|
+
|
|
204
|
+
/**
|
|
205
|
+
* @generated from field: required string syncDeviceRetrieveBlacklistEntriesTaskLabel = 31 [default = "Retrieve blacklist entries"];
|
|
206
|
+
*/
|
|
207
|
+
syncDeviceRetrieveBlacklistEntriesTaskLabel: string;
|
|
208
|
+
|
|
209
|
+
/**
|
|
210
|
+
* @generated from field: required string syncDeviceDeployBlacklistEntriesTaskLabel = 32 [default = "Deploy blacklist entries"];
|
|
211
|
+
*/
|
|
212
|
+
syncDeviceDeployBlacklistEntriesTaskLabel: string;
|
|
213
|
+
|
|
214
|
+
/**
|
|
215
|
+
* @generated from field: required string syncDeviceRetrieveSystemStatusTaskLabel = 33 [default = "Retrieve system status"];
|
|
216
|
+
*/
|
|
217
|
+
syncDeviceRetrieveSystemStatusTaskLabel: string;
|
|
218
|
+
|
|
219
|
+
/**
|
|
220
|
+
* @generated from field: required string syncDevicePushSystemStatusTaskLabel = 34 [default = "Push system status"];
|
|
221
|
+
*/
|
|
222
|
+
syncDevicePushSystemStatusTaskLabel: string;
|
|
223
|
+
|
|
144
224
|
constructor(data?: PartialMessage<BlueI18n>);
|
|
145
225
|
|
|
146
226
|
static readonly runtime: typeof proto2;
|
package/es/BlueSDK_pb.js
CHANGED
|
@@ -45,15 +45,31 @@ 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: "
|
|
49
|
-
{ no: 11, name: "
|
|
50
|
-
{ no: 12, name: "
|
|
51
|
-
{ no: 13, name: "
|
|
52
|
-
{ no: 14, name: "
|
|
53
|
-
{ no: 15, name: "
|
|
54
|
-
{ no: 16, name: "
|
|
55
|
-
{ no: 17, name: "
|
|
56
|
-
{ no: 18, name: "
|
|
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: "syncDeviceCompletedTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Synchronization has been completed" },
|
|
62
|
+
{ no: 24, name: "syncDeviceGetAuthenticationTokenTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Issue authentication token" },
|
|
63
|
+
{ no: 25, name: "syncDeviceRetrieveDeviceConfigurationTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Retrieve device configuration" },
|
|
64
|
+
{ no: 26, name: "syncDeviceUpdateDeviceConfigurationTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Update device configuration" },
|
|
65
|
+
{ no: 27, name: "syncDeviceUpdateDeviceTimeTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Update device time" },
|
|
66
|
+
{ no: 28, name: "syncDeviceWaitForDeviceToRestartTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Wait for device to restart" },
|
|
67
|
+
{ no: 29, name: "syncDevicePushEventLogsTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Push event logs" },
|
|
68
|
+
{ no: 30, name: "syncDevicePushSystemLogsTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Push system logs" },
|
|
69
|
+
{ no: 31, name: "syncDeviceRetrieveBlacklistEntriesTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Retrieve blacklist entries" },
|
|
70
|
+
{ no: 32, name: "syncDeviceDeployBlacklistEntriesTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Deploy blacklist entries" },
|
|
71
|
+
{ no: 33, name: "syncDeviceRetrieveSystemStatusTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Retrieve system status" },
|
|
72
|
+
{ no: 34, name: "syncDevicePushSystemStatusTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Push system status" },
|
|
57
73
|
],
|
|
58
74
|
);
|
|
59
75
|
|
package/nanopb/BlueCore.pb.h
CHANGED
|
@@ -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;
|
package/nanopb/BlueSDK.pb.h
CHANGED
|
@@ -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,23 @@ 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 syncDeviceCompletedTitle;
|
|
51
|
+
pb_callback_t syncDeviceGetAuthenticationTokenTaskLabel;
|
|
52
|
+
pb_callback_t syncDeviceRetrieveDeviceConfigurationTaskLabel;
|
|
53
|
+
pb_callback_t syncDeviceUpdateDeviceConfigurationTaskLabel;
|
|
54
|
+
pb_callback_t syncDeviceUpdateDeviceTimeTaskLabel;
|
|
55
|
+
pb_callback_t syncDeviceWaitForDeviceToRestartTaskLabel;
|
|
56
|
+
pb_callback_t syncDevicePushEventLogsTaskLabel;
|
|
57
|
+
pb_callback_t syncDevicePushSystemLogsTaskLabel;
|
|
58
|
+
pb_callback_t syncDeviceRetrieveBlacklistEntriesTaskLabel;
|
|
59
|
+
pb_callback_t syncDeviceDeployBlacklistEntriesTaskLabel;
|
|
60
|
+
pb_callback_t syncDeviceRetrieveSystemStatusTaskLabel;
|
|
61
|
+
pb_callback_t syncDevicePushSystemStatusTaskLabel;
|
|
46
62
|
} BlueI18n_t;
|
|
47
63
|
|
|
48
64
|
typedef struct BlueDeviceDetailsBluetooth {
|
|
@@ -169,7 +185,7 @@ extern "C" {
|
|
|
169
185
|
|
|
170
186
|
|
|
171
187
|
/* 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}}
|
|
188
|
+
#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}, {{NULL}, NULL}}
|
|
173
189
|
#define BLUEDEVICEDETAILSBLUETOOTH_INIT_DEFAULT {0, 0, 0}
|
|
174
190
|
#define BLUEDEVICEDETAILSUWB_INIT_DEFAULT {0}
|
|
175
191
|
#define BLUEDEVICEINFO_INIT_DEFAULT {_BLUEDEVICETYPE_MIN, {{NULL}, NULL}, 0, false, BLUEBLEMANUFACTURERINFO_INIT_DEFAULT, 0, {BLUEDEVICEDETAILSBLUETOOTH_INIT_DEFAULT}}
|
|
@@ -183,7 +199,7 @@ extern "C" {
|
|
|
183
199
|
#define BLUEREFRESHOSSSOCREDENTIALS_INIT_DEFAULT {{{NULL}, NULL}}
|
|
184
200
|
#define BLUESYNCHRONIZEACCESSCREDENTIAL_INIT_DEFAULT {BLUECREDENTIALID_INIT_DEFAULT, _BLUERETURNCODE_MIN, {{NULL}, NULL}}
|
|
185
201
|
#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}}
|
|
202
|
+
#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}, {{NULL}, NULL}}
|
|
187
203
|
#define BLUEDEVICEDETAILSBLUETOOTH_INIT_ZERO {0, 0, 0}
|
|
188
204
|
#define BLUEDEVICEDETAILSUWB_INIT_ZERO {0}
|
|
189
205
|
#define BLUEDEVICEINFO_INIT_ZERO {_BLUEDEVICETYPE_MIN, {{NULL}, NULL}, 0, false, BLUEBLEMANUFACTURERINFO_INIT_ZERO, 0, {BLUEDEVICEDETAILSBLUETOOTH_INIT_ZERO}}
|
|
@@ -208,15 +224,31 @@ extern "C" {
|
|
|
208
224
|
#define BLUEI18N_NFCOSSSUCCESSUNPROVISIONMESSAGE_TAG 7
|
|
209
225
|
#define BLUEI18N_NFCOSSSUCCESSFORMATMESSAGE_TAG 8
|
|
210
226
|
#define BLUEI18N_NFCINITIALIZINGWRITINGPROCESS_TAG 9
|
|
211
|
-
#define
|
|
212
|
-
#define
|
|
213
|
-
#define
|
|
214
|
-
#define
|
|
215
|
-
#define
|
|
216
|
-
#define
|
|
217
|
-
#define
|
|
218
|
-
#define
|
|
219
|
-
#define
|
|
227
|
+
#define BLUEI18N_OPENVIAOSSTITLE_TAG 10
|
|
228
|
+
#define BLUEI18N_OPENVIAOSSWAITMESSAGE_TAG 11
|
|
229
|
+
#define BLUEI18N_OPENVIAOSSACCESSGRANTEDTITLE_TAG 12
|
|
230
|
+
#define BLUEI18N_OPENVIAOSSACCESSGRANTEDMESSAGE_TAG 13
|
|
231
|
+
#define BLUEI18N_OPENVIAOSSACCESSDENIEDTITLE_TAG 14
|
|
232
|
+
#define BLUEI18N_OPENVIAOSSACCESSDENIEDMESSAGE_TAG 15
|
|
233
|
+
#define BLUEI18N_OPENVIAOSSACCESSDENIEDSCHEDULEMISMATCHMESSAGE_TAG 16
|
|
234
|
+
#define BLUEI18N_OPENVIAOSSERRORTITLE_TAG 17
|
|
235
|
+
#define BLUEI18N_CMNCANCELLABEL_TAG 18
|
|
236
|
+
#define BLUEI18N_CMNCLOSELABEL_TAG 19
|
|
237
|
+
#define BLUEI18N_SYNCDEVICEINPROGRESSTITLE_TAG 20
|
|
238
|
+
#define BLUEI18N_SYNCDEVICEFAILEDTITLE_TAG 21
|
|
239
|
+
#define BLUEI18N_SYNCDEVICECANCELLINGTITLE_TAG 22
|
|
240
|
+
#define BLUEI18N_SYNCDEVICECOMPLETEDTITLE_TAG 23
|
|
241
|
+
#define BLUEI18N_SYNCDEVICEGETAUTHENTICATIONTOKENTASKLABEL_TAG 24
|
|
242
|
+
#define BLUEI18N_SYNCDEVICERETRIEVEDEVICECONFIGURATIONTASKLABEL_TAG 25
|
|
243
|
+
#define BLUEI18N_SYNCDEVICEUPDATEDEVICECONFIGURATIONTASKLABEL_TAG 26
|
|
244
|
+
#define BLUEI18N_SYNCDEVICEUPDATEDEVICETIMETASKLABEL_TAG 27
|
|
245
|
+
#define BLUEI18N_SYNCDEVICEWAITFORDEVICETORESTARTTASKLABEL_TAG 28
|
|
246
|
+
#define BLUEI18N_SYNCDEVICEPUSHEVENTLOGSTASKLABEL_TAG 29
|
|
247
|
+
#define BLUEI18N_SYNCDEVICEPUSHSYSTEMLOGSTASKLABEL_TAG 30
|
|
248
|
+
#define BLUEI18N_SYNCDEVICERETRIEVEBLACKLISTENTRIESTASKLABEL_TAG 31
|
|
249
|
+
#define BLUEI18N_SYNCDEVICEDEPLOYBLACKLISTENTRIESTASKLABEL_TAG 32
|
|
250
|
+
#define BLUEI18N_SYNCDEVICERETRIEVESYSTEMSTATUSTASKLABEL_TAG 33
|
|
251
|
+
#define BLUEI18N_SYNCDEVICEPUSHSYSTEMSTATUSTASKLABEL_TAG 34
|
|
220
252
|
#define BLUEDEVICEDETAILSBLUETOOTH_RSSI_TAG 1
|
|
221
253
|
#define BLUEDEVICEDETAILSBLUETOOTH_TXPOWER_TAG 2
|
|
222
254
|
#define BLUEDEVICEDETAILSBLUETOOTH_ISIBEACON_TAG 3
|
|
@@ -271,15 +303,31 @@ X(a, CALLBACK, REQUIRED, STRING, nfcOssSuccessProvisionMessage, 6) \
|
|
|
271
303
|
X(a, CALLBACK, REQUIRED, STRING, nfcOssSuccessUnprovisionMessage, 7) \
|
|
272
304
|
X(a, CALLBACK, REQUIRED, STRING, nfcOssSuccessFormatMessage, 8) \
|
|
273
305
|
X(a, CALLBACK, REQUIRED, STRING, nfcInitializingWritingProcess, 9) \
|
|
274
|
-
X(a, CALLBACK, REQUIRED, STRING,
|
|
275
|
-
X(a, CALLBACK, REQUIRED, STRING,
|
|
276
|
-
X(a, CALLBACK, REQUIRED, STRING,
|
|
277
|
-
X(a, CALLBACK, REQUIRED, STRING,
|
|
278
|
-
X(a, CALLBACK, REQUIRED, STRING,
|
|
279
|
-
X(a, CALLBACK, REQUIRED, STRING,
|
|
280
|
-
X(a, CALLBACK, REQUIRED, STRING,
|
|
281
|
-
X(a, CALLBACK, REQUIRED, STRING,
|
|
282
|
-
X(a, CALLBACK, REQUIRED, STRING,
|
|
306
|
+
X(a, CALLBACK, REQUIRED, STRING, openViaOssTitle, 10) \
|
|
307
|
+
X(a, CALLBACK, REQUIRED, STRING, openViaOssWaitMessage, 11) \
|
|
308
|
+
X(a, CALLBACK, REQUIRED, STRING, openViaOssAccessGrantedTitle, 12) \
|
|
309
|
+
X(a, CALLBACK, REQUIRED, STRING, openViaOssAccessGrantedMessage, 13) \
|
|
310
|
+
X(a, CALLBACK, REQUIRED, STRING, openViaOssAccessDeniedTitle, 14) \
|
|
311
|
+
X(a, CALLBACK, REQUIRED, STRING, openViaOssAccessDeniedMessage, 15) \
|
|
312
|
+
X(a, CALLBACK, REQUIRED, STRING, openViaOssAccessDeniedScheduleMismatchMessage, 16) \
|
|
313
|
+
X(a, CALLBACK, REQUIRED, STRING, openViaOssErrorTitle, 17) \
|
|
314
|
+
X(a, CALLBACK, REQUIRED, STRING, cmnCancelLabel, 18) \
|
|
315
|
+
X(a, CALLBACK, REQUIRED, STRING, cmnCloseLabel, 19) \
|
|
316
|
+
X(a, CALLBACK, REQUIRED, STRING, syncDeviceInProgressTitle, 20) \
|
|
317
|
+
X(a, CALLBACK, REQUIRED, STRING, syncDeviceFailedTitle, 21) \
|
|
318
|
+
X(a, CALLBACK, REQUIRED, STRING, syncDeviceCancellingTitle, 22) \
|
|
319
|
+
X(a, CALLBACK, REQUIRED, STRING, syncDeviceCompletedTitle, 23) \
|
|
320
|
+
X(a, CALLBACK, REQUIRED, STRING, syncDeviceGetAuthenticationTokenTaskLabel, 24) \
|
|
321
|
+
X(a, CALLBACK, REQUIRED, STRING, syncDeviceRetrieveDeviceConfigurationTaskLabel, 25) \
|
|
322
|
+
X(a, CALLBACK, REQUIRED, STRING, syncDeviceUpdateDeviceConfigurationTaskLabel, 26) \
|
|
323
|
+
X(a, CALLBACK, REQUIRED, STRING, syncDeviceUpdateDeviceTimeTaskLabel, 27) \
|
|
324
|
+
X(a, CALLBACK, REQUIRED, STRING, syncDeviceWaitForDeviceToRestartTaskLabel, 28) \
|
|
325
|
+
X(a, CALLBACK, REQUIRED, STRING, syncDevicePushEventLogsTaskLabel, 29) \
|
|
326
|
+
X(a, CALLBACK, REQUIRED, STRING, syncDevicePushSystemLogsTaskLabel, 30) \
|
|
327
|
+
X(a, CALLBACK, REQUIRED, STRING, syncDeviceRetrieveBlacklistEntriesTaskLabel, 31) \
|
|
328
|
+
X(a, CALLBACK, REQUIRED, STRING, syncDeviceDeployBlacklistEntriesTaskLabel, 32) \
|
|
329
|
+
X(a, CALLBACK, REQUIRED, STRING, syncDeviceRetrieveSystemStatusTaskLabel, 33) \
|
|
330
|
+
X(a, CALLBACK, REQUIRED, STRING, syncDevicePushSystemStatusTaskLabel, 34)
|
|
283
331
|
#define BLUEI18N_CALLBACK pb_default_field_callback
|
|
284
332
|
#define BLUEI18N_DEFAULT NULL
|
|
285
333
|
|
package/package.json
CHANGED
package/swift/BlueCore.pb.swift
CHANGED
|
@@ -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"),
|
package/swift/BlueSDK.pb.swift
CHANGED
|
@@ -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,159 @@ 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 syncDeviceCompletedTitle: String {
|
|
301
|
+
get {return _storage._syncDeviceCompletedTitle ?? "Synchronization has been completed"}
|
|
302
|
+
set {_uniqueStorage()._syncDeviceCompletedTitle = newValue}
|
|
303
|
+
}
|
|
304
|
+
/// Returns true if `syncDeviceCompletedTitle` has been explicitly set.
|
|
305
|
+
public var hasSyncDeviceCompletedTitle: Bool {return _storage._syncDeviceCompletedTitle != nil}
|
|
306
|
+
/// Clears the value of `syncDeviceCompletedTitle`. Subsequent reads from it will return its default value.
|
|
307
|
+
public mutating func clearSyncDeviceCompletedTitle() {_uniqueStorage()._syncDeviceCompletedTitle = nil}
|
|
308
|
+
|
|
309
|
+
public var syncDeviceGetAuthenticationTokenTaskLabel: String {
|
|
310
|
+
get {return _storage._syncDeviceGetAuthenticationTokenTaskLabel ?? "Issue authentication token"}
|
|
311
|
+
set {_uniqueStorage()._syncDeviceGetAuthenticationTokenTaskLabel = newValue}
|
|
312
|
+
}
|
|
313
|
+
/// Returns true if `syncDeviceGetAuthenticationTokenTaskLabel` has been explicitly set.
|
|
314
|
+
public var hasSyncDeviceGetAuthenticationTokenTaskLabel: Bool {return _storage._syncDeviceGetAuthenticationTokenTaskLabel != nil}
|
|
315
|
+
/// Clears the value of `syncDeviceGetAuthenticationTokenTaskLabel`. Subsequent reads from it will return its default value.
|
|
316
|
+
public mutating func clearSyncDeviceGetAuthenticationTokenTaskLabel() {_uniqueStorage()._syncDeviceGetAuthenticationTokenTaskLabel = nil}
|
|
317
|
+
|
|
318
|
+
public var syncDeviceRetrieveDeviceConfigurationTaskLabel: String {
|
|
319
|
+
get {return _storage._syncDeviceRetrieveDeviceConfigurationTaskLabel ?? "Retrieve device configuration"}
|
|
320
|
+
set {_uniqueStorage()._syncDeviceRetrieveDeviceConfigurationTaskLabel = newValue}
|
|
321
|
+
}
|
|
322
|
+
/// Returns true if `syncDeviceRetrieveDeviceConfigurationTaskLabel` has been explicitly set.
|
|
323
|
+
public var hasSyncDeviceRetrieveDeviceConfigurationTaskLabel: Bool {return _storage._syncDeviceRetrieveDeviceConfigurationTaskLabel != nil}
|
|
324
|
+
/// Clears the value of `syncDeviceRetrieveDeviceConfigurationTaskLabel`. Subsequent reads from it will return its default value.
|
|
325
|
+
public mutating func clearSyncDeviceRetrieveDeviceConfigurationTaskLabel() {_uniqueStorage()._syncDeviceRetrieveDeviceConfigurationTaskLabel = nil}
|
|
326
|
+
|
|
327
|
+
public var syncDeviceUpdateDeviceConfigurationTaskLabel: String {
|
|
328
|
+
get {return _storage._syncDeviceUpdateDeviceConfigurationTaskLabel ?? "Update device configuration"}
|
|
329
|
+
set {_uniqueStorage()._syncDeviceUpdateDeviceConfigurationTaskLabel = newValue}
|
|
330
|
+
}
|
|
331
|
+
/// Returns true if `syncDeviceUpdateDeviceConfigurationTaskLabel` has been explicitly set.
|
|
332
|
+
public var hasSyncDeviceUpdateDeviceConfigurationTaskLabel: Bool {return _storage._syncDeviceUpdateDeviceConfigurationTaskLabel != nil}
|
|
333
|
+
/// Clears the value of `syncDeviceUpdateDeviceConfigurationTaskLabel`. Subsequent reads from it will return its default value.
|
|
334
|
+
public mutating func clearSyncDeviceUpdateDeviceConfigurationTaskLabel() {_uniqueStorage()._syncDeviceUpdateDeviceConfigurationTaskLabel = nil}
|
|
335
|
+
|
|
336
|
+
public var syncDeviceUpdateDeviceTimeTaskLabel: String {
|
|
337
|
+
get {return _storage._syncDeviceUpdateDeviceTimeTaskLabel ?? "Update device time"}
|
|
338
|
+
set {_uniqueStorage()._syncDeviceUpdateDeviceTimeTaskLabel = newValue}
|
|
339
|
+
}
|
|
340
|
+
/// Returns true if `syncDeviceUpdateDeviceTimeTaskLabel` has been explicitly set.
|
|
341
|
+
public var hasSyncDeviceUpdateDeviceTimeTaskLabel: Bool {return _storage._syncDeviceUpdateDeviceTimeTaskLabel != nil}
|
|
342
|
+
/// Clears the value of `syncDeviceUpdateDeviceTimeTaskLabel`. Subsequent reads from it will return its default value.
|
|
343
|
+
public mutating func clearSyncDeviceUpdateDeviceTimeTaskLabel() {_uniqueStorage()._syncDeviceUpdateDeviceTimeTaskLabel = nil}
|
|
344
|
+
|
|
345
|
+
public var syncDeviceWaitForDeviceToRestartTaskLabel: String {
|
|
346
|
+
get {return _storage._syncDeviceWaitForDeviceToRestartTaskLabel ?? "Wait for device to restart"}
|
|
347
|
+
set {_uniqueStorage()._syncDeviceWaitForDeviceToRestartTaskLabel = newValue}
|
|
348
|
+
}
|
|
349
|
+
/// Returns true if `syncDeviceWaitForDeviceToRestartTaskLabel` has been explicitly set.
|
|
350
|
+
public var hasSyncDeviceWaitForDeviceToRestartTaskLabel: Bool {return _storage._syncDeviceWaitForDeviceToRestartTaskLabel != nil}
|
|
351
|
+
/// Clears the value of `syncDeviceWaitForDeviceToRestartTaskLabel`. Subsequent reads from it will return its default value.
|
|
352
|
+
public mutating func clearSyncDeviceWaitForDeviceToRestartTaskLabel() {_uniqueStorage()._syncDeviceWaitForDeviceToRestartTaskLabel = nil}
|
|
353
|
+
|
|
354
|
+
public var syncDevicePushEventLogsTaskLabel: String {
|
|
355
|
+
get {return _storage._syncDevicePushEventLogsTaskLabel ?? "Push event logs"}
|
|
356
|
+
set {_uniqueStorage()._syncDevicePushEventLogsTaskLabel = newValue}
|
|
357
|
+
}
|
|
358
|
+
/// Returns true if `syncDevicePushEventLogsTaskLabel` has been explicitly set.
|
|
359
|
+
public var hasSyncDevicePushEventLogsTaskLabel: Bool {return _storage._syncDevicePushEventLogsTaskLabel != nil}
|
|
360
|
+
/// Clears the value of `syncDevicePushEventLogsTaskLabel`. Subsequent reads from it will return its default value.
|
|
361
|
+
public mutating func clearSyncDevicePushEventLogsTaskLabel() {_uniqueStorage()._syncDevicePushEventLogsTaskLabel = nil}
|
|
362
|
+
|
|
363
|
+
public var syncDevicePushSystemLogsTaskLabel: String {
|
|
364
|
+
get {return _storage._syncDevicePushSystemLogsTaskLabel ?? "Push system logs"}
|
|
365
|
+
set {_uniqueStorage()._syncDevicePushSystemLogsTaskLabel = newValue}
|
|
366
|
+
}
|
|
367
|
+
/// Returns true if `syncDevicePushSystemLogsTaskLabel` has been explicitly set.
|
|
368
|
+
public var hasSyncDevicePushSystemLogsTaskLabel: Bool {return _storage._syncDevicePushSystemLogsTaskLabel != nil}
|
|
369
|
+
/// Clears the value of `syncDevicePushSystemLogsTaskLabel`. Subsequent reads from it will return its default value.
|
|
370
|
+
public mutating func clearSyncDevicePushSystemLogsTaskLabel() {_uniqueStorage()._syncDevicePushSystemLogsTaskLabel = nil}
|
|
371
|
+
|
|
372
|
+
public var syncDeviceRetrieveBlacklistEntriesTaskLabel: String {
|
|
373
|
+
get {return _storage._syncDeviceRetrieveBlacklistEntriesTaskLabel ?? "Retrieve blacklist entries"}
|
|
374
|
+
set {_uniqueStorage()._syncDeviceRetrieveBlacklistEntriesTaskLabel = newValue}
|
|
375
|
+
}
|
|
376
|
+
/// Returns true if `syncDeviceRetrieveBlacklistEntriesTaskLabel` has been explicitly set.
|
|
377
|
+
public var hasSyncDeviceRetrieveBlacklistEntriesTaskLabel: Bool {return _storage._syncDeviceRetrieveBlacklistEntriesTaskLabel != nil}
|
|
378
|
+
/// Clears the value of `syncDeviceRetrieveBlacklistEntriesTaskLabel`. Subsequent reads from it will return its default value.
|
|
379
|
+
public mutating func clearSyncDeviceRetrieveBlacklistEntriesTaskLabel() {_uniqueStorage()._syncDeviceRetrieveBlacklistEntriesTaskLabel = nil}
|
|
380
|
+
|
|
381
|
+
public var syncDeviceDeployBlacklistEntriesTaskLabel: String {
|
|
382
|
+
get {return _storage._syncDeviceDeployBlacklistEntriesTaskLabel ?? "Deploy blacklist entries"}
|
|
383
|
+
set {_uniqueStorage()._syncDeviceDeployBlacklistEntriesTaskLabel = newValue}
|
|
384
|
+
}
|
|
385
|
+
/// Returns true if `syncDeviceDeployBlacklistEntriesTaskLabel` has been explicitly set.
|
|
386
|
+
public var hasSyncDeviceDeployBlacklistEntriesTaskLabel: Bool {return _storage._syncDeviceDeployBlacklistEntriesTaskLabel != nil}
|
|
387
|
+
/// Clears the value of `syncDeviceDeployBlacklistEntriesTaskLabel`. Subsequent reads from it will return its default value.
|
|
388
|
+
public mutating func clearSyncDeviceDeployBlacklistEntriesTaskLabel() {_uniqueStorage()._syncDeviceDeployBlacklistEntriesTaskLabel = nil}
|
|
389
|
+
|
|
390
|
+
public var syncDeviceRetrieveSystemStatusTaskLabel: String {
|
|
391
|
+
get {return _storage._syncDeviceRetrieveSystemStatusTaskLabel ?? "Retrieve system status"}
|
|
392
|
+
set {_uniqueStorage()._syncDeviceRetrieveSystemStatusTaskLabel = newValue}
|
|
393
|
+
}
|
|
394
|
+
/// Returns true if `syncDeviceRetrieveSystemStatusTaskLabel` has been explicitly set.
|
|
395
|
+
public var hasSyncDeviceRetrieveSystemStatusTaskLabel: Bool {return _storage._syncDeviceRetrieveSystemStatusTaskLabel != nil}
|
|
396
|
+
/// Clears the value of `syncDeviceRetrieveSystemStatusTaskLabel`. Subsequent reads from it will return its default value.
|
|
397
|
+
public mutating func clearSyncDeviceRetrieveSystemStatusTaskLabel() {_uniqueStorage()._syncDeviceRetrieveSystemStatusTaskLabel = nil}
|
|
398
|
+
|
|
399
|
+
public var syncDevicePushSystemStatusTaskLabel: String {
|
|
400
|
+
get {return _storage._syncDevicePushSystemStatusTaskLabel ?? "Push system status"}
|
|
401
|
+
set {_uniqueStorage()._syncDevicePushSystemStatusTaskLabel = newValue}
|
|
402
|
+
}
|
|
403
|
+
/// Returns true if `syncDevicePushSystemStatusTaskLabel` has been explicitly set.
|
|
404
|
+
public var hasSyncDevicePushSystemStatusTaskLabel: Bool {return _storage._syncDevicePushSystemStatusTaskLabel != nil}
|
|
405
|
+
/// Clears the value of `syncDevicePushSystemStatusTaskLabel`. Subsequent reads from it will return its default value.
|
|
406
|
+
public mutating func clearSyncDevicePushSystemStatusTaskLabel() {_uniqueStorage()._syncDevicePushSystemStatusTaskLabel = nil}
|
|
407
|
+
|
|
264
408
|
public var unknownFields = SwiftProtobuf.UnknownStorage()
|
|
265
409
|
|
|
266
410
|
public init() {}
|
|
@@ -854,15 +998,31 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
|
|
|
854
998
|
7: .same(proto: "nfcOssSuccessUnprovisionMessage"),
|
|
855
999
|
8: .same(proto: "nfcOssSuccessFormatMessage"),
|
|
856
1000
|
9: .same(proto: "nfcInitializingWritingProcess"),
|
|
857
|
-
10: .same(proto: "
|
|
858
|
-
11: .same(proto: "
|
|
859
|
-
12: .same(proto: "
|
|
860
|
-
13: .same(proto: "
|
|
861
|
-
14: .same(proto: "
|
|
862
|
-
15: .same(proto: "
|
|
863
|
-
16: .same(proto: "
|
|
864
|
-
17: .same(proto: "
|
|
865
|
-
18: .same(proto: "
|
|
1001
|
+
10: .same(proto: "openViaOssTitle"),
|
|
1002
|
+
11: .same(proto: "openViaOssWaitMessage"),
|
|
1003
|
+
12: .same(proto: "openViaOssAccessGrantedTitle"),
|
|
1004
|
+
13: .same(proto: "openViaOssAccessGrantedMessage"),
|
|
1005
|
+
14: .same(proto: "openViaOssAccessDeniedTitle"),
|
|
1006
|
+
15: .same(proto: "openViaOssAccessDeniedMessage"),
|
|
1007
|
+
16: .same(proto: "openViaOssAccessDeniedScheduleMismatchMessage"),
|
|
1008
|
+
17: .same(proto: "openViaOssErrorTitle"),
|
|
1009
|
+
18: .same(proto: "cmnCancelLabel"),
|
|
1010
|
+
19: .same(proto: "cmnCloseLabel"),
|
|
1011
|
+
20: .same(proto: "syncDeviceInProgressTitle"),
|
|
1012
|
+
21: .same(proto: "syncDeviceFailedTitle"),
|
|
1013
|
+
22: .same(proto: "syncDeviceCancellingTitle"),
|
|
1014
|
+
23: .same(proto: "syncDeviceCompletedTitle"),
|
|
1015
|
+
24: .same(proto: "syncDeviceGetAuthenticationTokenTaskLabel"),
|
|
1016
|
+
25: .same(proto: "syncDeviceRetrieveDeviceConfigurationTaskLabel"),
|
|
1017
|
+
26: .same(proto: "syncDeviceUpdateDeviceConfigurationTaskLabel"),
|
|
1018
|
+
27: .same(proto: "syncDeviceUpdateDeviceTimeTaskLabel"),
|
|
1019
|
+
28: .same(proto: "syncDeviceWaitForDeviceToRestartTaskLabel"),
|
|
1020
|
+
29: .same(proto: "syncDevicePushEventLogsTaskLabel"),
|
|
1021
|
+
30: .same(proto: "syncDevicePushSystemLogsTaskLabel"),
|
|
1022
|
+
31: .same(proto: "syncDeviceRetrieveBlacklistEntriesTaskLabel"),
|
|
1023
|
+
32: .same(proto: "syncDeviceDeployBlacklistEntriesTaskLabel"),
|
|
1024
|
+
33: .same(proto: "syncDeviceRetrieveSystemStatusTaskLabel"),
|
|
1025
|
+
34: .same(proto: "syncDevicePushSystemStatusTaskLabel"),
|
|
866
1026
|
]
|
|
867
1027
|
|
|
868
1028
|
fileprivate class _StorageClass {
|
|
@@ -875,7 +1035,6 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
|
|
|
875
1035
|
var _nfcOssSuccessUnprovisionMessage: String? = nil
|
|
876
1036
|
var _nfcOssSuccessFormatMessage: String? = nil
|
|
877
1037
|
var _nfcInitializingWritingProcess: String? = nil
|
|
878
|
-
var _cmnCancelLabel: String? = nil
|
|
879
1038
|
var _openViaOssTitle: String? = nil
|
|
880
1039
|
var _openViaOssWaitMessage: String? = nil
|
|
881
1040
|
var _openViaOssAccessGrantedTitle: String? = nil
|
|
@@ -884,6 +1043,23 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
|
|
|
884
1043
|
var _openViaOssAccessDeniedMessage: String? = nil
|
|
885
1044
|
var _openViaOssAccessDeniedScheduleMismatchMessage: String? = nil
|
|
886
1045
|
var _openViaOssErrorTitle: String? = nil
|
|
1046
|
+
var _cmnCancelLabel: String? = nil
|
|
1047
|
+
var _cmnCloseLabel: String? = nil
|
|
1048
|
+
var _syncDeviceInProgressTitle: String? = nil
|
|
1049
|
+
var _syncDeviceFailedTitle: String? = nil
|
|
1050
|
+
var _syncDeviceCancellingTitle: String? = nil
|
|
1051
|
+
var _syncDeviceCompletedTitle: String? = nil
|
|
1052
|
+
var _syncDeviceGetAuthenticationTokenTaskLabel: String? = nil
|
|
1053
|
+
var _syncDeviceRetrieveDeviceConfigurationTaskLabel: String? = nil
|
|
1054
|
+
var _syncDeviceUpdateDeviceConfigurationTaskLabel: String? = nil
|
|
1055
|
+
var _syncDeviceUpdateDeviceTimeTaskLabel: String? = nil
|
|
1056
|
+
var _syncDeviceWaitForDeviceToRestartTaskLabel: String? = nil
|
|
1057
|
+
var _syncDevicePushEventLogsTaskLabel: String? = nil
|
|
1058
|
+
var _syncDevicePushSystemLogsTaskLabel: String? = nil
|
|
1059
|
+
var _syncDeviceRetrieveBlacklistEntriesTaskLabel: String? = nil
|
|
1060
|
+
var _syncDeviceDeployBlacklistEntriesTaskLabel: String? = nil
|
|
1061
|
+
var _syncDeviceRetrieveSystemStatusTaskLabel: String? = nil
|
|
1062
|
+
var _syncDevicePushSystemStatusTaskLabel: String? = nil
|
|
887
1063
|
|
|
888
1064
|
static let defaultInstance = _StorageClass()
|
|
889
1065
|
|
|
@@ -899,7 +1075,6 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
|
|
|
899
1075
|
_nfcOssSuccessUnprovisionMessage = source._nfcOssSuccessUnprovisionMessage
|
|
900
1076
|
_nfcOssSuccessFormatMessage = source._nfcOssSuccessFormatMessage
|
|
901
1077
|
_nfcInitializingWritingProcess = source._nfcInitializingWritingProcess
|
|
902
|
-
_cmnCancelLabel = source._cmnCancelLabel
|
|
903
1078
|
_openViaOssTitle = source._openViaOssTitle
|
|
904
1079
|
_openViaOssWaitMessage = source._openViaOssWaitMessage
|
|
905
1080
|
_openViaOssAccessGrantedTitle = source._openViaOssAccessGrantedTitle
|
|
@@ -908,6 +1083,23 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
|
|
|
908
1083
|
_openViaOssAccessDeniedMessage = source._openViaOssAccessDeniedMessage
|
|
909
1084
|
_openViaOssAccessDeniedScheduleMismatchMessage = source._openViaOssAccessDeniedScheduleMismatchMessage
|
|
910
1085
|
_openViaOssErrorTitle = source._openViaOssErrorTitle
|
|
1086
|
+
_cmnCancelLabel = source._cmnCancelLabel
|
|
1087
|
+
_cmnCloseLabel = source._cmnCloseLabel
|
|
1088
|
+
_syncDeviceInProgressTitle = source._syncDeviceInProgressTitle
|
|
1089
|
+
_syncDeviceFailedTitle = source._syncDeviceFailedTitle
|
|
1090
|
+
_syncDeviceCancellingTitle = source._syncDeviceCancellingTitle
|
|
1091
|
+
_syncDeviceCompletedTitle = source._syncDeviceCompletedTitle
|
|
1092
|
+
_syncDeviceGetAuthenticationTokenTaskLabel = source._syncDeviceGetAuthenticationTokenTaskLabel
|
|
1093
|
+
_syncDeviceRetrieveDeviceConfigurationTaskLabel = source._syncDeviceRetrieveDeviceConfigurationTaskLabel
|
|
1094
|
+
_syncDeviceUpdateDeviceConfigurationTaskLabel = source._syncDeviceUpdateDeviceConfigurationTaskLabel
|
|
1095
|
+
_syncDeviceUpdateDeviceTimeTaskLabel = source._syncDeviceUpdateDeviceTimeTaskLabel
|
|
1096
|
+
_syncDeviceWaitForDeviceToRestartTaskLabel = source._syncDeviceWaitForDeviceToRestartTaskLabel
|
|
1097
|
+
_syncDevicePushEventLogsTaskLabel = source._syncDevicePushEventLogsTaskLabel
|
|
1098
|
+
_syncDevicePushSystemLogsTaskLabel = source._syncDevicePushSystemLogsTaskLabel
|
|
1099
|
+
_syncDeviceRetrieveBlacklistEntriesTaskLabel = source._syncDeviceRetrieveBlacklistEntriesTaskLabel
|
|
1100
|
+
_syncDeviceDeployBlacklistEntriesTaskLabel = source._syncDeviceDeployBlacklistEntriesTaskLabel
|
|
1101
|
+
_syncDeviceRetrieveSystemStatusTaskLabel = source._syncDeviceRetrieveSystemStatusTaskLabel
|
|
1102
|
+
_syncDevicePushSystemStatusTaskLabel = source._syncDevicePushSystemStatusTaskLabel
|
|
911
1103
|
}
|
|
912
1104
|
}
|
|
913
1105
|
|
|
@@ -929,7 +1121,6 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
|
|
|
929
1121
|
if _storage._nfcOssSuccessUnprovisionMessage == nil {return false}
|
|
930
1122
|
if _storage._nfcOssSuccessFormatMessage == nil {return false}
|
|
931
1123
|
if _storage._nfcInitializingWritingProcess == nil {return false}
|
|
932
|
-
if _storage._cmnCancelLabel == nil {return false}
|
|
933
1124
|
if _storage._openViaOssTitle == nil {return false}
|
|
934
1125
|
if _storage._openViaOssWaitMessage == nil {return false}
|
|
935
1126
|
if _storage._openViaOssAccessGrantedTitle == nil {return false}
|
|
@@ -938,6 +1129,23 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
|
|
|
938
1129
|
if _storage._openViaOssAccessDeniedMessage == nil {return false}
|
|
939
1130
|
if _storage._openViaOssAccessDeniedScheduleMismatchMessage == nil {return false}
|
|
940
1131
|
if _storage._openViaOssErrorTitle == nil {return false}
|
|
1132
|
+
if _storage._cmnCancelLabel == nil {return false}
|
|
1133
|
+
if _storage._cmnCloseLabel == nil {return false}
|
|
1134
|
+
if _storage._syncDeviceInProgressTitle == nil {return false}
|
|
1135
|
+
if _storage._syncDeviceFailedTitle == nil {return false}
|
|
1136
|
+
if _storage._syncDeviceCancellingTitle == nil {return false}
|
|
1137
|
+
if _storage._syncDeviceCompletedTitle == nil {return false}
|
|
1138
|
+
if _storage._syncDeviceGetAuthenticationTokenTaskLabel == nil {return false}
|
|
1139
|
+
if _storage._syncDeviceRetrieveDeviceConfigurationTaskLabel == nil {return false}
|
|
1140
|
+
if _storage._syncDeviceUpdateDeviceConfigurationTaskLabel == nil {return false}
|
|
1141
|
+
if _storage._syncDeviceUpdateDeviceTimeTaskLabel == nil {return false}
|
|
1142
|
+
if _storage._syncDeviceWaitForDeviceToRestartTaskLabel == nil {return false}
|
|
1143
|
+
if _storage._syncDevicePushEventLogsTaskLabel == nil {return false}
|
|
1144
|
+
if _storage._syncDevicePushSystemLogsTaskLabel == nil {return false}
|
|
1145
|
+
if _storage._syncDeviceRetrieveBlacklistEntriesTaskLabel == nil {return false}
|
|
1146
|
+
if _storage._syncDeviceDeployBlacklistEntriesTaskLabel == nil {return false}
|
|
1147
|
+
if _storage._syncDeviceRetrieveSystemStatusTaskLabel == nil {return false}
|
|
1148
|
+
if _storage._syncDevicePushSystemStatusTaskLabel == nil {return false}
|
|
941
1149
|
return true
|
|
942
1150
|
}
|
|
943
1151
|
}
|
|
@@ -959,15 +1167,31 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
|
|
|
959
1167
|
case 7: try { try decoder.decodeSingularStringField(value: &_storage._nfcOssSuccessUnprovisionMessage) }()
|
|
960
1168
|
case 8: try { try decoder.decodeSingularStringField(value: &_storage._nfcOssSuccessFormatMessage) }()
|
|
961
1169
|
case 9: try { try decoder.decodeSingularStringField(value: &_storage._nfcInitializingWritingProcess) }()
|
|
962
|
-
case 10: try { try decoder.decodeSingularStringField(value: &_storage.
|
|
963
|
-
case 11: try { try decoder.decodeSingularStringField(value: &_storage.
|
|
964
|
-
case 12: try { try decoder.decodeSingularStringField(value: &_storage.
|
|
965
|
-
case 13: try { try decoder.decodeSingularStringField(value: &_storage.
|
|
966
|
-
case 14: try { try decoder.decodeSingularStringField(value: &_storage.
|
|
967
|
-
case 15: try { try decoder.decodeSingularStringField(value: &_storage.
|
|
968
|
-
case 16: try { try decoder.decodeSingularStringField(value: &_storage.
|
|
969
|
-
case 17: try { try decoder.decodeSingularStringField(value: &_storage.
|
|
970
|
-
case 18: try { try decoder.decodeSingularStringField(value: &_storage.
|
|
1170
|
+
case 10: try { try decoder.decodeSingularStringField(value: &_storage._openViaOssTitle) }()
|
|
1171
|
+
case 11: try { try decoder.decodeSingularStringField(value: &_storage._openViaOssWaitMessage) }()
|
|
1172
|
+
case 12: try { try decoder.decodeSingularStringField(value: &_storage._openViaOssAccessGrantedTitle) }()
|
|
1173
|
+
case 13: try { try decoder.decodeSingularStringField(value: &_storage._openViaOssAccessGrantedMessage) }()
|
|
1174
|
+
case 14: try { try decoder.decodeSingularStringField(value: &_storage._openViaOssAccessDeniedTitle) }()
|
|
1175
|
+
case 15: try { try decoder.decodeSingularStringField(value: &_storage._openViaOssAccessDeniedMessage) }()
|
|
1176
|
+
case 16: try { try decoder.decodeSingularStringField(value: &_storage._openViaOssAccessDeniedScheduleMismatchMessage) }()
|
|
1177
|
+
case 17: try { try decoder.decodeSingularStringField(value: &_storage._openViaOssErrorTitle) }()
|
|
1178
|
+
case 18: try { try decoder.decodeSingularStringField(value: &_storage._cmnCancelLabel) }()
|
|
1179
|
+
case 19: try { try decoder.decodeSingularStringField(value: &_storage._cmnCloseLabel) }()
|
|
1180
|
+
case 20: try { try decoder.decodeSingularStringField(value: &_storage._syncDeviceInProgressTitle) }()
|
|
1181
|
+
case 21: try { try decoder.decodeSingularStringField(value: &_storage._syncDeviceFailedTitle) }()
|
|
1182
|
+
case 22: try { try decoder.decodeSingularStringField(value: &_storage._syncDeviceCancellingTitle) }()
|
|
1183
|
+
case 23: try { try decoder.decodeSingularStringField(value: &_storage._syncDeviceCompletedTitle) }()
|
|
1184
|
+
case 24: try { try decoder.decodeSingularStringField(value: &_storage._syncDeviceGetAuthenticationTokenTaskLabel) }()
|
|
1185
|
+
case 25: try { try decoder.decodeSingularStringField(value: &_storage._syncDeviceRetrieveDeviceConfigurationTaskLabel) }()
|
|
1186
|
+
case 26: try { try decoder.decodeSingularStringField(value: &_storage._syncDeviceUpdateDeviceConfigurationTaskLabel) }()
|
|
1187
|
+
case 27: try { try decoder.decodeSingularStringField(value: &_storage._syncDeviceUpdateDeviceTimeTaskLabel) }()
|
|
1188
|
+
case 28: try { try decoder.decodeSingularStringField(value: &_storage._syncDeviceWaitForDeviceToRestartTaskLabel) }()
|
|
1189
|
+
case 29: try { try decoder.decodeSingularStringField(value: &_storage._syncDevicePushEventLogsTaskLabel) }()
|
|
1190
|
+
case 30: try { try decoder.decodeSingularStringField(value: &_storage._syncDevicePushSystemLogsTaskLabel) }()
|
|
1191
|
+
case 31: try { try decoder.decodeSingularStringField(value: &_storage._syncDeviceRetrieveBlacklistEntriesTaskLabel) }()
|
|
1192
|
+
case 32: try { try decoder.decodeSingularStringField(value: &_storage._syncDeviceDeployBlacklistEntriesTaskLabel) }()
|
|
1193
|
+
case 33: try { try decoder.decodeSingularStringField(value: &_storage._syncDeviceRetrieveSystemStatusTaskLabel) }()
|
|
1194
|
+
case 34: try { try decoder.decodeSingularStringField(value: &_storage._syncDevicePushSystemStatusTaskLabel) }()
|
|
971
1195
|
default: break
|
|
972
1196
|
}
|
|
973
1197
|
}
|
|
@@ -1007,33 +1231,81 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
|
|
|
1007
1231
|
try { if let v = _storage._nfcInitializingWritingProcess {
|
|
1008
1232
|
try visitor.visitSingularStringField(value: v, fieldNumber: 9)
|
|
1009
1233
|
} }()
|
|
1010
|
-
try { if let v = _storage.
|
|
1234
|
+
try { if let v = _storage._openViaOssTitle {
|
|
1011
1235
|
try visitor.visitSingularStringField(value: v, fieldNumber: 10)
|
|
1012
1236
|
} }()
|
|
1013
|
-
try { if let v = _storage.
|
|
1237
|
+
try { if let v = _storage._openViaOssWaitMessage {
|
|
1014
1238
|
try visitor.visitSingularStringField(value: v, fieldNumber: 11)
|
|
1015
1239
|
} }()
|
|
1016
|
-
try { if let v = _storage.
|
|
1240
|
+
try { if let v = _storage._openViaOssAccessGrantedTitle {
|
|
1017
1241
|
try visitor.visitSingularStringField(value: v, fieldNumber: 12)
|
|
1018
1242
|
} }()
|
|
1019
|
-
try { if let v = _storage.
|
|
1243
|
+
try { if let v = _storage._openViaOssAccessGrantedMessage {
|
|
1020
1244
|
try visitor.visitSingularStringField(value: v, fieldNumber: 13)
|
|
1021
1245
|
} }()
|
|
1022
|
-
try { if let v = _storage.
|
|
1246
|
+
try { if let v = _storage._openViaOssAccessDeniedTitle {
|
|
1023
1247
|
try visitor.visitSingularStringField(value: v, fieldNumber: 14)
|
|
1024
1248
|
} }()
|
|
1025
|
-
try { if let v = _storage.
|
|
1249
|
+
try { if let v = _storage._openViaOssAccessDeniedMessage {
|
|
1026
1250
|
try visitor.visitSingularStringField(value: v, fieldNumber: 15)
|
|
1027
1251
|
} }()
|
|
1028
|
-
try { if let v = _storage.
|
|
1252
|
+
try { if let v = _storage._openViaOssAccessDeniedScheduleMismatchMessage {
|
|
1029
1253
|
try visitor.visitSingularStringField(value: v, fieldNumber: 16)
|
|
1030
1254
|
} }()
|
|
1031
|
-
try { if let v = _storage.
|
|
1255
|
+
try { if let v = _storage._openViaOssErrorTitle {
|
|
1032
1256
|
try visitor.visitSingularStringField(value: v, fieldNumber: 17)
|
|
1033
1257
|
} }()
|
|
1034
|
-
try { if let v = _storage.
|
|
1258
|
+
try { if let v = _storage._cmnCancelLabel {
|
|
1035
1259
|
try visitor.visitSingularStringField(value: v, fieldNumber: 18)
|
|
1036
1260
|
} }()
|
|
1261
|
+
try { if let v = _storage._cmnCloseLabel {
|
|
1262
|
+
try visitor.visitSingularStringField(value: v, fieldNumber: 19)
|
|
1263
|
+
} }()
|
|
1264
|
+
try { if let v = _storage._syncDeviceInProgressTitle {
|
|
1265
|
+
try visitor.visitSingularStringField(value: v, fieldNumber: 20)
|
|
1266
|
+
} }()
|
|
1267
|
+
try { if let v = _storage._syncDeviceFailedTitle {
|
|
1268
|
+
try visitor.visitSingularStringField(value: v, fieldNumber: 21)
|
|
1269
|
+
} }()
|
|
1270
|
+
try { if let v = _storage._syncDeviceCancellingTitle {
|
|
1271
|
+
try visitor.visitSingularStringField(value: v, fieldNumber: 22)
|
|
1272
|
+
} }()
|
|
1273
|
+
try { if let v = _storage._syncDeviceCompletedTitle {
|
|
1274
|
+
try visitor.visitSingularStringField(value: v, fieldNumber: 23)
|
|
1275
|
+
} }()
|
|
1276
|
+
try { if let v = _storage._syncDeviceGetAuthenticationTokenTaskLabel {
|
|
1277
|
+
try visitor.visitSingularStringField(value: v, fieldNumber: 24)
|
|
1278
|
+
} }()
|
|
1279
|
+
try { if let v = _storage._syncDeviceRetrieveDeviceConfigurationTaskLabel {
|
|
1280
|
+
try visitor.visitSingularStringField(value: v, fieldNumber: 25)
|
|
1281
|
+
} }()
|
|
1282
|
+
try { if let v = _storage._syncDeviceUpdateDeviceConfigurationTaskLabel {
|
|
1283
|
+
try visitor.visitSingularStringField(value: v, fieldNumber: 26)
|
|
1284
|
+
} }()
|
|
1285
|
+
try { if let v = _storage._syncDeviceUpdateDeviceTimeTaskLabel {
|
|
1286
|
+
try visitor.visitSingularStringField(value: v, fieldNumber: 27)
|
|
1287
|
+
} }()
|
|
1288
|
+
try { if let v = _storage._syncDeviceWaitForDeviceToRestartTaskLabel {
|
|
1289
|
+
try visitor.visitSingularStringField(value: v, fieldNumber: 28)
|
|
1290
|
+
} }()
|
|
1291
|
+
try { if let v = _storage._syncDevicePushEventLogsTaskLabel {
|
|
1292
|
+
try visitor.visitSingularStringField(value: v, fieldNumber: 29)
|
|
1293
|
+
} }()
|
|
1294
|
+
try { if let v = _storage._syncDevicePushSystemLogsTaskLabel {
|
|
1295
|
+
try visitor.visitSingularStringField(value: v, fieldNumber: 30)
|
|
1296
|
+
} }()
|
|
1297
|
+
try { if let v = _storage._syncDeviceRetrieveBlacklistEntriesTaskLabel {
|
|
1298
|
+
try visitor.visitSingularStringField(value: v, fieldNumber: 31)
|
|
1299
|
+
} }()
|
|
1300
|
+
try { if let v = _storage._syncDeviceDeployBlacklistEntriesTaskLabel {
|
|
1301
|
+
try visitor.visitSingularStringField(value: v, fieldNumber: 32)
|
|
1302
|
+
} }()
|
|
1303
|
+
try { if let v = _storage._syncDeviceRetrieveSystemStatusTaskLabel {
|
|
1304
|
+
try visitor.visitSingularStringField(value: v, fieldNumber: 33)
|
|
1305
|
+
} }()
|
|
1306
|
+
try { if let v = _storage._syncDevicePushSystemStatusTaskLabel {
|
|
1307
|
+
try visitor.visitSingularStringField(value: v, fieldNumber: 34)
|
|
1308
|
+
} }()
|
|
1037
1309
|
}
|
|
1038
1310
|
try unknownFields.traverse(visitor: &visitor)
|
|
1039
1311
|
}
|
|
@@ -1052,7 +1324,6 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
|
|
|
1052
1324
|
if _storage._nfcOssSuccessUnprovisionMessage != rhs_storage._nfcOssSuccessUnprovisionMessage {return false}
|
|
1053
1325
|
if _storage._nfcOssSuccessFormatMessage != rhs_storage._nfcOssSuccessFormatMessage {return false}
|
|
1054
1326
|
if _storage._nfcInitializingWritingProcess != rhs_storage._nfcInitializingWritingProcess {return false}
|
|
1055
|
-
if _storage._cmnCancelLabel != rhs_storage._cmnCancelLabel {return false}
|
|
1056
1327
|
if _storage._openViaOssTitle != rhs_storage._openViaOssTitle {return false}
|
|
1057
1328
|
if _storage._openViaOssWaitMessage != rhs_storage._openViaOssWaitMessage {return false}
|
|
1058
1329
|
if _storage._openViaOssAccessGrantedTitle != rhs_storage._openViaOssAccessGrantedTitle {return false}
|
|
@@ -1061,6 +1332,23 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
|
|
|
1061
1332
|
if _storage._openViaOssAccessDeniedMessage != rhs_storage._openViaOssAccessDeniedMessage {return false}
|
|
1062
1333
|
if _storage._openViaOssAccessDeniedScheduleMismatchMessage != rhs_storage._openViaOssAccessDeniedScheduleMismatchMessage {return false}
|
|
1063
1334
|
if _storage._openViaOssErrorTitle != rhs_storage._openViaOssErrorTitle {return false}
|
|
1335
|
+
if _storage._cmnCancelLabel != rhs_storage._cmnCancelLabel {return false}
|
|
1336
|
+
if _storage._cmnCloseLabel != rhs_storage._cmnCloseLabel {return false}
|
|
1337
|
+
if _storage._syncDeviceInProgressTitle != rhs_storage._syncDeviceInProgressTitle {return false}
|
|
1338
|
+
if _storage._syncDeviceFailedTitle != rhs_storage._syncDeviceFailedTitle {return false}
|
|
1339
|
+
if _storage._syncDeviceCancellingTitle != rhs_storage._syncDeviceCancellingTitle {return false}
|
|
1340
|
+
if _storage._syncDeviceCompletedTitle != rhs_storage._syncDeviceCompletedTitle {return false}
|
|
1341
|
+
if _storage._syncDeviceGetAuthenticationTokenTaskLabel != rhs_storage._syncDeviceGetAuthenticationTokenTaskLabel {return false}
|
|
1342
|
+
if _storage._syncDeviceRetrieveDeviceConfigurationTaskLabel != rhs_storage._syncDeviceRetrieveDeviceConfigurationTaskLabel {return false}
|
|
1343
|
+
if _storage._syncDeviceUpdateDeviceConfigurationTaskLabel != rhs_storage._syncDeviceUpdateDeviceConfigurationTaskLabel {return false}
|
|
1344
|
+
if _storage._syncDeviceUpdateDeviceTimeTaskLabel != rhs_storage._syncDeviceUpdateDeviceTimeTaskLabel {return false}
|
|
1345
|
+
if _storage._syncDeviceWaitForDeviceToRestartTaskLabel != rhs_storage._syncDeviceWaitForDeviceToRestartTaskLabel {return false}
|
|
1346
|
+
if _storage._syncDevicePushEventLogsTaskLabel != rhs_storage._syncDevicePushEventLogsTaskLabel {return false}
|
|
1347
|
+
if _storage._syncDevicePushSystemLogsTaskLabel != rhs_storage._syncDevicePushSystemLogsTaskLabel {return false}
|
|
1348
|
+
if _storage._syncDeviceRetrieveBlacklistEntriesTaskLabel != rhs_storage._syncDeviceRetrieveBlacklistEntriesTaskLabel {return false}
|
|
1349
|
+
if _storage._syncDeviceDeployBlacklistEntriesTaskLabel != rhs_storage._syncDeviceDeployBlacklistEntriesTaskLabel {return false}
|
|
1350
|
+
if _storage._syncDeviceRetrieveSystemStatusTaskLabel != rhs_storage._syncDeviceRetrieveSystemStatusTaskLabel {return false}
|
|
1351
|
+
if _storage._syncDevicePushSystemStatusTaskLabel != rhs_storage._syncDevicePushSystemStatusTaskLabel {return false}
|
|
1064
1352
|
return true
|
|
1065
1353
|
}
|
|
1066
1354
|
if !storagesAreEqual {return false}
|