@blueid/access-proto 6.0.0 → 6.1.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/BlueSDK.proto +18 -0
- package/cjs/BlueSDK_pb.d.ts +78 -0
- package/cjs/BlueSDK_pb.js +20 -0
- package/es/BlueSDK_pb.d.ts +78 -0
- package/es/BlueSDK_pb.js +26 -0
- package/nanopb/BlueSDK.pb.c +12 -0
- package/nanopb/BlueSDK.pb.h +57 -3
- package/package.json +1 -1
- package/swift/BlueSDK.pb.swift +200 -0
package/BlueSDK.proto
CHANGED
|
@@ -27,6 +27,7 @@ message BlueI18n {
|
|
|
27
27
|
[ default = "Transponder was successfully formatted" ];
|
|
28
28
|
required string nfcInitializingWritingProcess = 9
|
|
29
29
|
[ default = "Initializing writing process" ];
|
|
30
|
+
|
|
30
31
|
required string nfcTransponderConnected = 100
|
|
31
32
|
[ default = "Transponder Connected" ];
|
|
32
33
|
required string nfcTransponderDisconnected = 101
|
|
@@ -34,6 +35,12 @@ message BlueI18n {
|
|
|
34
35
|
required string nfcTransponderSuccessReadMessage = 102
|
|
35
36
|
[ default = "Transponder was successfully read" ];
|
|
36
37
|
|
|
38
|
+
required string nfcKioskRefreshTransponderNoRefreshNeededMessage = 103
|
|
39
|
+
[ default = "Credentials are valid — no refresh needed" ];
|
|
40
|
+
required string nfcKioskRefreshTransponderPartialRefreshMessage = 104
|
|
41
|
+
[ default = "%d out of %d credentials have been refreshed" ];
|
|
42
|
+
required string nfcKioskRefreshTransponderHoldYourCardSteadyMessage = 105
|
|
43
|
+
[ default = "Please hold your card steady until the process is done" ];
|
|
37
44
|
|
|
38
45
|
required string openViaOssTitle = 10
|
|
39
46
|
[ default = "Unlocking in Progress"];
|
|
@@ -284,6 +291,17 @@ message BlueLegacyProvisioningResponse {
|
|
|
284
291
|
required BlueSystemProvisioning provisioning = 4;
|
|
285
292
|
}
|
|
286
293
|
|
|
294
|
+
message BlueRefreshTransponderResultItem {
|
|
295
|
+
required BlueCredentialId credentialId = 1;
|
|
296
|
+
optional string error = 2;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
message BlueRefreshTransponderResult {
|
|
300
|
+
repeated BlueRefreshTransponderResultItem updated = 1;
|
|
301
|
+
repeated BlueRefreshTransponderResultItem skipped = 2;
|
|
302
|
+
repeated BlueRefreshTransponderResultItem failed = 3;
|
|
303
|
+
}
|
|
304
|
+
|
|
287
305
|
///////////////////////////////////////////////////////////////////////
|
|
288
306
|
// DEPRECATED - WILL BE REMOVED
|
|
289
307
|
///////////////////////////////////////////////////////////////////////
|
package/cjs/BlueSDK_pb.d.ts
CHANGED
|
@@ -112,6 +112,21 @@ export declare class BlueI18n extends Message<BlueI18n> {
|
|
|
112
112
|
*/
|
|
113
113
|
nfcTransponderSuccessReadMessage: string;
|
|
114
114
|
|
|
115
|
+
/**
|
|
116
|
+
* @generated from field: required string nfcKioskRefreshTransponderNoRefreshNeededMessage = 103 [default = "Credentials are valid — no refresh needed"];
|
|
117
|
+
*/
|
|
118
|
+
nfcKioskRefreshTransponderNoRefreshNeededMessage: string;
|
|
119
|
+
|
|
120
|
+
/**
|
|
121
|
+
* @generated from field: required string nfcKioskRefreshTransponderPartialRefreshMessage = 104 [default = "%d out of %d credentials have been refreshed"];
|
|
122
|
+
*/
|
|
123
|
+
nfcKioskRefreshTransponderPartialRefreshMessage: string;
|
|
124
|
+
|
|
125
|
+
/**
|
|
126
|
+
* @generated from field: required string nfcKioskRefreshTransponderHoldYourCardSteadyMessage = 105 [default = "Please hold your card steady until the process is done"];
|
|
127
|
+
*/
|
|
128
|
+
nfcKioskRefreshTransponderHoldYourCardSteadyMessage: string;
|
|
129
|
+
|
|
115
130
|
/**
|
|
116
131
|
* @generated from field: required string openViaOssTitle = 10 [default = "Unlocking in Progress"];
|
|
117
132
|
*/
|
|
@@ -1023,6 +1038,69 @@ export declare class BlueLegacyProvisioningResponse extends Message<BlueLegacyPr
|
|
|
1023
1038
|
static equals(a: BlueLegacyProvisioningResponse | PlainMessage<BlueLegacyProvisioningResponse> | undefined, b: BlueLegacyProvisioningResponse | PlainMessage<BlueLegacyProvisioningResponse> | undefined): boolean;
|
|
1024
1039
|
}
|
|
1025
1040
|
|
|
1041
|
+
/**
|
|
1042
|
+
* @generated from message BlueRefreshTransponderResultItem
|
|
1043
|
+
*/
|
|
1044
|
+
export declare class BlueRefreshTransponderResultItem extends Message<BlueRefreshTransponderResultItem> {
|
|
1045
|
+
/**
|
|
1046
|
+
* @generated from field: required BlueCredentialId credentialId = 1;
|
|
1047
|
+
*/
|
|
1048
|
+
credentialId?: BlueCredentialId;
|
|
1049
|
+
|
|
1050
|
+
/**
|
|
1051
|
+
* @generated from field: optional string error = 2;
|
|
1052
|
+
*/
|
|
1053
|
+
error?: string;
|
|
1054
|
+
|
|
1055
|
+
constructor(data?: PartialMessage<BlueRefreshTransponderResultItem>);
|
|
1056
|
+
|
|
1057
|
+
static readonly runtime: typeof proto2;
|
|
1058
|
+
static readonly typeName = "BlueRefreshTransponderResultItem";
|
|
1059
|
+
static readonly fields: FieldList;
|
|
1060
|
+
|
|
1061
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): BlueRefreshTransponderResultItem;
|
|
1062
|
+
|
|
1063
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): BlueRefreshTransponderResultItem;
|
|
1064
|
+
|
|
1065
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): BlueRefreshTransponderResultItem;
|
|
1066
|
+
|
|
1067
|
+
static equals(a: BlueRefreshTransponderResultItem | PlainMessage<BlueRefreshTransponderResultItem> | undefined, b: BlueRefreshTransponderResultItem | PlainMessage<BlueRefreshTransponderResultItem> | undefined): boolean;
|
|
1068
|
+
}
|
|
1069
|
+
|
|
1070
|
+
/**
|
|
1071
|
+
* @generated from message BlueRefreshTransponderResult
|
|
1072
|
+
*/
|
|
1073
|
+
export declare class BlueRefreshTransponderResult extends Message<BlueRefreshTransponderResult> {
|
|
1074
|
+
/**
|
|
1075
|
+
* @generated from field: repeated BlueRefreshTransponderResultItem updated = 1;
|
|
1076
|
+
*/
|
|
1077
|
+
updated: BlueRefreshTransponderResultItem[];
|
|
1078
|
+
|
|
1079
|
+
/**
|
|
1080
|
+
* @generated from field: repeated BlueRefreshTransponderResultItem skipped = 2;
|
|
1081
|
+
*/
|
|
1082
|
+
skipped: BlueRefreshTransponderResultItem[];
|
|
1083
|
+
|
|
1084
|
+
/**
|
|
1085
|
+
* @generated from field: repeated BlueRefreshTransponderResultItem failed = 3;
|
|
1086
|
+
*/
|
|
1087
|
+
failed: BlueRefreshTransponderResultItem[];
|
|
1088
|
+
|
|
1089
|
+
constructor(data?: PartialMessage<BlueRefreshTransponderResult>);
|
|
1090
|
+
|
|
1091
|
+
static readonly runtime: typeof proto2;
|
|
1092
|
+
static readonly typeName = "BlueRefreshTransponderResult";
|
|
1093
|
+
static readonly fields: FieldList;
|
|
1094
|
+
|
|
1095
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): BlueRefreshTransponderResult;
|
|
1096
|
+
|
|
1097
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): BlueRefreshTransponderResult;
|
|
1098
|
+
|
|
1099
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): BlueRefreshTransponderResult;
|
|
1100
|
+
|
|
1101
|
+
static equals(a: BlueRefreshTransponderResult | PlainMessage<BlueRefreshTransponderResult> | undefined, b: BlueRefreshTransponderResult | PlainMessage<BlueRefreshTransponderResult> | undefined): boolean;
|
|
1102
|
+
}
|
|
1103
|
+
|
|
1026
1104
|
/**
|
|
1027
1105
|
* @TODO: Keep it until we have updated all places in both iOS and Android SDK.
|
|
1028
1106
|
*
|
package/cjs/BlueSDK_pb.js
CHANGED
|
@@ -38,6 +38,8 @@ __export(BlueSDK_pb_exports, {
|
|
|
38
38
|
BlueRefreshOssSoCredentials: () => BlueRefreshOssSoCredentials,
|
|
39
39
|
BlueRefreshOssSoIdentities: () => BlueRefreshOssSoIdentities,
|
|
40
40
|
BlueRefreshOssSoIdentity: () => BlueRefreshOssSoIdentity,
|
|
41
|
+
BlueRefreshTransponderResult: () => BlueRefreshTransponderResult,
|
|
42
|
+
BlueRefreshTransponderResultItem: () => BlueRefreshTransponderResultItem,
|
|
41
43
|
BlueSynchronizeAccessCredential: () => BlueSynchronizeAccessCredential,
|
|
42
44
|
BlueSynchronizeAccessCredentials: () => BlueSynchronizeAccessCredentials,
|
|
43
45
|
BlueSynchronizeIdentities: () => BlueSynchronizeIdentities,
|
|
@@ -79,6 +81,9 @@ const BlueI18n = import_protobuf.proto2.makeMessageType(
|
|
|
79
81
|
{ no: 100, name: "nfcTransponderConnected", kind: "scalar", T: 9, default: "Transponder Connected" },
|
|
80
82
|
{ no: 101, name: "nfcTransponderDisconnected", kind: "scalar", T: 9, default: "Transponder was disconnected" },
|
|
81
83
|
{ no: 102, name: "nfcTransponderSuccessReadMessage", kind: "scalar", T: 9, default: "Transponder was successfully read" },
|
|
84
|
+
{ no: 103, name: "nfcKioskRefreshTransponderNoRefreshNeededMessage", kind: "scalar", T: 9, default: "Credentials are valid \u2014 no refresh needed" },
|
|
85
|
+
{ no: 104, name: "nfcKioskRefreshTransponderPartialRefreshMessage", kind: "scalar", T: 9, default: "%d out of %d credentials have been refreshed" },
|
|
86
|
+
{ no: 105, name: "nfcKioskRefreshTransponderHoldYourCardSteadyMessage", kind: "scalar", T: 9, default: "Please hold your card steady until the process is done" },
|
|
82
87
|
{ no: 10, name: "openViaOssTitle", kind: "scalar", T: 9, default: "Unlocking in Progress" },
|
|
83
88
|
{ no: 11, name: "openViaOssWaitMessage", kind: "scalar", T: 9, default: "Establishing secure connection..." },
|
|
84
89
|
{ no: 12, name: "openViaOssAccessGrantedTitle", kind: "scalar", T: 9, default: "Access Granted" },
|
|
@@ -434,6 +439,21 @@ const BlueLegacyProvisioningResponse = import_protobuf.proto2.makeMessageType(
|
|
|
434
439
|
{ no: 4, name: "provisioning", kind: "message", T: import_BlueSystem_pb.BlueSystemProvisioning }
|
|
435
440
|
]
|
|
436
441
|
);
|
|
442
|
+
const BlueRefreshTransponderResultItem = import_protobuf.proto2.makeMessageType(
|
|
443
|
+
"BlueRefreshTransponderResultItem",
|
|
444
|
+
() => [
|
|
445
|
+
{ no: 1, name: "credentialId", kind: "message", T: import_BlueCore_pb.BlueCredentialId },
|
|
446
|
+
{ no: 2, name: "error", kind: "scalar", T: 9, opt: true }
|
|
447
|
+
]
|
|
448
|
+
);
|
|
449
|
+
const BlueRefreshTransponderResult = import_protobuf.proto2.makeMessageType(
|
|
450
|
+
"BlueRefreshTransponderResult",
|
|
451
|
+
() => [
|
|
452
|
+
{ no: 1, name: "updated", kind: "message", T: BlueRefreshTransponderResultItem, repeated: true },
|
|
453
|
+
{ no: 2, name: "skipped", kind: "message", T: BlueRefreshTransponderResultItem, repeated: true },
|
|
454
|
+
{ no: 3, name: "failed", kind: "message", T: BlueRefreshTransponderResultItem, repeated: true }
|
|
455
|
+
]
|
|
456
|
+
);
|
|
437
457
|
const BlueAccessCredential = import_protobuf.proto2.makeMessageType(
|
|
438
458
|
"BlueAccessCredential",
|
|
439
459
|
() => [
|
package/es/BlueSDK_pb.d.ts
CHANGED
|
@@ -112,6 +112,21 @@ export declare class BlueI18n extends Message<BlueI18n> {
|
|
|
112
112
|
*/
|
|
113
113
|
nfcTransponderSuccessReadMessage: string;
|
|
114
114
|
|
|
115
|
+
/**
|
|
116
|
+
* @generated from field: required string nfcKioskRefreshTransponderNoRefreshNeededMessage = 103 [default = "Credentials are valid — no refresh needed"];
|
|
117
|
+
*/
|
|
118
|
+
nfcKioskRefreshTransponderNoRefreshNeededMessage: string;
|
|
119
|
+
|
|
120
|
+
/**
|
|
121
|
+
* @generated from field: required string nfcKioskRefreshTransponderPartialRefreshMessage = 104 [default = "%d out of %d credentials have been refreshed"];
|
|
122
|
+
*/
|
|
123
|
+
nfcKioskRefreshTransponderPartialRefreshMessage: string;
|
|
124
|
+
|
|
125
|
+
/**
|
|
126
|
+
* @generated from field: required string nfcKioskRefreshTransponderHoldYourCardSteadyMessage = 105 [default = "Please hold your card steady until the process is done"];
|
|
127
|
+
*/
|
|
128
|
+
nfcKioskRefreshTransponderHoldYourCardSteadyMessage: string;
|
|
129
|
+
|
|
115
130
|
/**
|
|
116
131
|
* @generated from field: required string openViaOssTitle = 10 [default = "Unlocking in Progress"];
|
|
117
132
|
*/
|
|
@@ -1023,6 +1038,69 @@ export declare class BlueLegacyProvisioningResponse extends Message<BlueLegacyPr
|
|
|
1023
1038
|
static equals(a: BlueLegacyProvisioningResponse | PlainMessage<BlueLegacyProvisioningResponse> | undefined, b: BlueLegacyProvisioningResponse | PlainMessage<BlueLegacyProvisioningResponse> | undefined): boolean;
|
|
1024
1039
|
}
|
|
1025
1040
|
|
|
1041
|
+
/**
|
|
1042
|
+
* @generated from message BlueRefreshTransponderResultItem
|
|
1043
|
+
*/
|
|
1044
|
+
export declare class BlueRefreshTransponderResultItem extends Message<BlueRefreshTransponderResultItem> {
|
|
1045
|
+
/**
|
|
1046
|
+
* @generated from field: required BlueCredentialId credentialId = 1;
|
|
1047
|
+
*/
|
|
1048
|
+
credentialId?: BlueCredentialId;
|
|
1049
|
+
|
|
1050
|
+
/**
|
|
1051
|
+
* @generated from field: optional string error = 2;
|
|
1052
|
+
*/
|
|
1053
|
+
error?: string;
|
|
1054
|
+
|
|
1055
|
+
constructor(data?: PartialMessage<BlueRefreshTransponderResultItem>);
|
|
1056
|
+
|
|
1057
|
+
static readonly runtime: typeof proto2;
|
|
1058
|
+
static readonly typeName = "BlueRefreshTransponderResultItem";
|
|
1059
|
+
static readonly fields: FieldList;
|
|
1060
|
+
|
|
1061
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): BlueRefreshTransponderResultItem;
|
|
1062
|
+
|
|
1063
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): BlueRefreshTransponderResultItem;
|
|
1064
|
+
|
|
1065
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): BlueRefreshTransponderResultItem;
|
|
1066
|
+
|
|
1067
|
+
static equals(a: BlueRefreshTransponderResultItem | PlainMessage<BlueRefreshTransponderResultItem> | undefined, b: BlueRefreshTransponderResultItem | PlainMessage<BlueRefreshTransponderResultItem> | undefined): boolean;
|
|
1068
|
+
}
|
|
1069
|
+
|
|
1070
|
+
/**
|
|
1071
|
+
* @generated from message BlueRefreshTransponderResult
|
|
1072
|
+
*/
|
|
1073
|
+
export declare class BlueRefreshTransponderResult extends Message<BlueRefreshTransponderResult> {
|
|
1074
|
+
/**
|
|
1075
|
+
* @generated from field: repeated BlueRefreshTransponderResultItem updated = 1;
|
|
1076
|
+
*/
|
|
1077
|
+
updated: BlueRefreshTransponderResultItem[];
|
|
1078
|
+
|
|
1079
|
+
/**
|
|
1080
|
+
* @generated from field: repeated BlueRefreshTransponderResultItem skipped = 2;
|
|
1081
|
+
*/
|
|
1082
|
+
skipped: BlueRefreshTransponderResultItem[];
|
|
1083
|
+
|
|
1084
|
+
/**
|
|
1085
|
+
* @generated from field: repeated BlueRefreshTransponderResultItem failed = 3;
|
|
1086
|
+
*/
|
|
1087
|
+
failed: BlueRefreshTransponderResultItem[];
|
|
1088
|
+
|
|
1089
|
+
constructor(data?: PartialMessage<BlueRefreshTransponderResult>);
|
|
1090
|
+
|
|
1091
|
+
static readonly runtime: typeof proto2;
|
|
1092
|
+
static readonly typeName = "BlueRefreshTransponderResult";
|
|
1093
|
+
static readonly fields: FieldList;
|
|
1094
|
+
|
|
1095
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): BlueRefreshTransponderResult;
|
|
1096
|
+
|
|
1097
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): BlueRefreshTransponderResult;
|
|
1098
|
+
|
|
1099
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): BlueRefreshTransponderResult;
|
|
1100
|
+
|
|
1101
|
+
static equals(a: BlueRefreshTransponderResult | PlainMessage<BlueRefreshTransponderResult> | undefined, b: BlueRefreshTransponderResult | PlainMessage<BlueRefreshTransponderResult> | undefined): boolean;
|
|
1102
|
+
}
|
|
1103
|
+
|
|
1026
1104
|
/**
|
|
1027
1105
|
* @TODO: Keep it until we have updated all places in both iOS and Android SDK.
|
|
1028
1106
|
*
|
package/es/BlueSDK_pb.js
CHANGED
|
@@ -49,6 +49,9 @@ export const BlueI18n = proto2.makeMessageType(
|
|
|
49
49
|
{ no: 100, name: "nfcTransponderConnected", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Transponder Connected" },
|
|
50
50
|
{ no: 101, name: "nfcTransponderDisconnected", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Transponder was disconnected" },
|
|
51
51
|
{ no: 102, name: "nfcTransponderSuccessReadMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Transponder was successfully read" },
|
|
52
|
+
{ no: 103, name: "nfcKioskRefreshTransponderNoRefreshNeededMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Credentials are valid — no refresh needed" },
|
|
53
|
+
{ no: 104, name: "nfcKioskRefreshTransponderPartialRefreshMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "%d out of %d credentials have been refreshed" },
|
|
54
|
+
{ no: 105, name: "nfcKioskRefreshTransponderHoldYourCardSteadyMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Please hold your card steady until the process is done" },
|
|
52
55
|
{ no: 10, name: "openViaOssTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Unlocking in Progress" },
|
|
53
56
|
{ no: 11, name: "openViaOssWaitMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Establishing secure connection..." },
|
|
54
57
|
{ no: 12, name: "openViaOssAccessGrantedTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Access Granted" },
|
|
@@ -317,6 +320,29 @@ export const BlueLegacyProvisioningResponse = proto2.makeMessageType(
|
|
|
317
320
|
],
|
|
318
321
|
);
|
|
319
322
|
|
|
323
|
+
/**
|
|
324
|
+
* @generated from message BlueRefreshTransponderResultItem
|
|
325
|
+
*/
|
|
326
|
+
export const BlueRefreshTransponderResultItem = proto2.makeMessageType(
|
|
327
|
+
"BlueRefreshTransponderResultItem",
|
|
328
|
+
() => [
|
|
329
|
+
{ no: 1, name: "credentialId", kind: "message", T: BlueCredentialId },
|
|
330
|
+
{ no: 2, name: "error", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
331
|
+
],
|
|
332
|
+
);
|
|
333
|
+
|
|
334
|
+
/**
|
|
335
|
+
* @generated from message BlueRefreshTransponderResult
|
|
336
|
+
*/
|
|
337
|
+
export const BlueRefreshTransponderResult = proto2.makeMessageType(
|
|
338
|
+
"BlueRefreshTransponderResult",
|
|
339
|
+
() => [
|
|
340
|
+
{ no: 1, name: "updated", kind: "message", T: BlueRefreshTransponderResultItem, repeated: true },
|
|
341
|
+
{ no: 2, name: "skipped", kind: "message", T: BlueRefreshTransponderResultItem, repeated: true },
|
|
342
|
+
{ no: 3, name: "failed", kind: "message", T: BlueRefreshTransponderResultItem, repeated: true },
|
|
343
|
+
],
|
|
344
|
+
);
|
|
345
|
+
|
|
320
346
|
/**
|
|
321
347
|
* @TODO: Keep it until we have updated all places in both iOS and Android SDK.
|
|
322
348
|
*
|
package/nanopb/BlueSDK.pb.c
CHANGED
|
@@ -60,6 +60,12 @@ PB_BIND(BLUELEGACYPROVISIONINGREQUEST, BlueLegacyProvisioningRequest_t, AUTO)
|
|
|
60
60
|
PB_BIND(BLUELEGACYPROVISIONINGRESPONSE, BlueLegacyProvisioningResponse_t, 2)
|
|
61
61
|
|
|
62
62
|
|
|
63
|
+
PB_BIND(BLUEREFRESHTRANSPONDERRESULTITEM, BlueRefreshTransponderResultItem_t, AUTO)
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
PB_BIND(BLUEREFRESHTRANSPONDERRESULT, BlueRefreshTransponderResult_t, AUTO)
|
|
67
|
+
|
|
68
|
+
|
|
63
69
|
PB_BIND(BLUEACCESSCREDENTIAL, BlueAccessCredential_t, 2)
|
|
64
70
|
|
|
65
71
|
|
|
@@ -81,3 +87,9 @@ PB_BIND(BLUESYNCHRONIZEACCESSCREDENTIALS, BlueSynchronizeAccessCredentials_t, AU
|
|
|
81
87
|
|
|
82
88
|
|
|
83
89
|
|
|
90
|
+
/* Check that missing required fields will be properly detected */
|
|
91
|
+
#if PB_MAX_REQUIRED_FIELDS < 65
|
|
92
|
+
#error Properly detecting missing required fields in BlueI18n requires \
|
|
93
|
+
setting PB_MAX_REQUIRED_FIELDS to 65 or more.
|
|
94
|
+
#endif
|
|
95
|
+
|
package/nanopb/BlueSDK.pb.h
CHANGED
|
@@ -88,6 +88,9 @@ typedef struct BlueI18n {
|
|
|
88
88
|
pb_callback_t nfcTransponderConnected;
|
|
89
89
|
pb_callback_t nfcTransponderDisconnected;
|
|
90
90
|
pb_callback_t nfcTransponderSuccessReadMessage;
|
|
91
|
+
pb_callback_t nfcKioskRefreshTransponderNoRefreshNeededMessage;
|
|
92
|
+
pb_callback_t nfcKioskRefreshTransponderPartialRefreshMessage;
|
|
93
|
+
pb_callback_t nfcKioskRefreshTransponderHoldYourCardSteadyMessage;
|
|
91
94
|
} BlueI18n_t;
|
|
92
95
|
|
|
93
96
|
typedef struct BlueDeviceDetailsBluetooth {
|
|
@@ -219,6 +222,17 @@ typedef struct BlueLegacyProvisioningResponse {
|
|
|
219
222
|
BlueSystemProvisioning_t provisioning;
|
|
220
223
|
} BlueLegacyProvisioningResponse_t;
|
|
221
224
|
|
|
225
|
+
typedef struct BlueRefreshTransponderResultItem {
|
|
226
|
+
BlueCredentialId_t credentialId;
|
|
227
|
+
pb_callback_t error;
|
|
228
|
+
} BlueRefreshTransponderResultItem_t;
|
|
229
|
+
|
|
230
|
+
typedef struct BlueRefreshTransponderResult {
|
|
231
|
+
pb_callback_t updated;
|
|
232
|
+
pb_callback_t skipped;
|
|
233
|
+
pb_callback_t failed;
|
|
234
|
+
} BlueRefreshTransponderResult_t;
|
|
235
|
+
|
|
222
236
|
/* @TODO: Keep it until we have updated all places in both iOS and Android SDK. */
|
|
223
237
|
typedef struct BlueAccessCredential {
|
|
224
238
|
BlueCredentialId_t credentialId;
|
|
@@ -302,6 +316,8 @@ extern "C" {
|
|
|
302
316
|
#define BlueLegacyProvisioningRequest_t_hardwareType_ENUMTYPE BlueHardwareType_t
|
|
303
317
|
|
|
304
318
|
|
|
319
|
+
|
|
320
|
+
|
|
305
321
|
#define BlueAccessCredential_t_credentialType_ENUMTYPE BlueCredentialType_t
|
|
306
322
|
|
|
307
323
|
|
|
@@ -313,7 +329,7 @@ extern "C" {
|
|
|
313
329
|
|
|
314
330
|
|
|
315
331
|
/* Initializer values for message structs */
|
|
316
|
-
#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}, {{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}}
|
|
332
|
+
#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}, {{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}}
|
|
317
333
|
#define BLUEDEVICEDETAILSBLUETOOTH_INIT_DEFAULT {0, 0, 0}
|
|
318
334
|
#define BLUEDEVICEDETAILSUWB_INIT_DEFAULT {0}
|
|
319
335
|
#define BLUEDEVICEINFO_INIT_DEFAULT {_BLUEDEVICETYPE_MIN, {{NULL}, NULL}, 0, false, BLUEBLEMANUFACTURERINFO_INIT_DEFAULT, 0, {BLUEDEVICEDETAILSBLUETOOTH_INIT_DEFAULT}}
|
|
@@ -331,13 +347,15 @@ extern "C" {
|
|
|
331
347
|
#define BLUESYNCHRONIZEIDENTITIES_INIT_DEFAULT {{{NULL}, NULL}}
|
|
332
348
|
#define BLUELEGACYPROVISIONINGREQUEST_INIT_DEFAULT {{{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, _BLUEHARDWARETYPE_MIN, 0, {{NULL}, NULL}}
|
|
333
349
|
#define BLUELEGACYPROVISIONINGRESPONSE_INIT_DEFAULT {{{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, BLUESYSTEMPROVISIONING_INIT_DEFAULT}
|
|
350
|
+
#define BLUEREFRESHTRANSPONDERRESULTITEM_INIT_DEFAULT {BLUECREDENTIALID_INIT_DEFAULT, {{NULL}, NULL}}
|
|
351
|
+
#define BLUEREFRESHTRANSPONDERRESULT_INIT_DEFAULT {{{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}}
|
|
334
352
|
#define BLUEACCESSCREDENTIAL_INIT_DEFAULT {BLUECREDENTIALID_INIT_DEFAULT, _BLUECREDENTIALTYPE_MIN, {{NULL}, NULL}, {{NULL}, NULL}, 0, {{NULL}, NULL}, false, BLUELOCALTIMESTAMP_INIT_DEFAULT, false, BLUELOCALTIMESTAMP_INIT_DEFAULT, false, BLUELOCALTIMESTAMP_INIT_DEFAULT, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}}
|
|
335
353
|
#define BLUEACCESSCREDENTIALLIST_INIT_DEFAULT {{{NULL}, NULL}}
|
|
336
354
|
#define BLUEREFRESHOSSSOCREDENTIAL_INIT_DEFAULT {BLUECREDENTIALID_INIT_DEFAULT, _BLUEREFRESHOSSSOCREDENTIALSTATUS_MIN, false, BLUEOSSSOCONFIGURATION_INIT_DEFAULT}
|
|
337
355
|
#define BLUEREFRESHOSSSOCREDENTIALS_INIT_DEFAULT {{{NULL}, NULL}}
|
|
338
356
|
#define BLUESYNCHRONIZEACCESSCREDENTIAL_INIT_DEFAULT {BLUECREDENTIALID_INIT_DEFAULT, _BLUERETURNCODE_MIN, {{NULL}, NULL}}
|
|
339
357
|
#define BLUESYNCHRONIZEACCESSCREDENTIALS_INIT_DEFAULT {{{NULL}, NULL}}
|
|
340
|
-
#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}, {{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}}
|
|
358
|
+
#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}, {{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}}
|
|
341
359
|
#define BLUEDEVICEDETAILSBLUETOOTH_INIT_ZERO {0, 0, 0}
|
|
342
360
|
#define BLUEDEVICEDETAILSUWB_INIT_ZERO {0}
|
|
343
361
|
#define BLUEDEVICEINFO_INIT_ZERO {_BLUEDEVICETYPE_MIN, {{NULL}, NULL}, 0, false, BLUEBLEMANUFACTURERINFO_INIT_ZERO, 0, {BLUEDEVICEDETAILSBLUETOOTH_INIT_ZERO}}
|
|
@@ -355,6 +373,8 @@ extern "C" {
|
|
|
355
373
|
#define BLUESYNCHRONIZEIDENTITIES_INIT_ZERO {{{NULL}, NULL}}
|
|
356
374
|
#define BLUELEGACYPROVISIONINGREQUEST_INIT_ZERO {{{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, _BLUEHARDWARETYPE_MIN, 0, {{NULL}, NULL}}
|
|
357
375
|
#define BLUELEGACYPROVISIONINGRESPONSE_INIT_ZERO {{{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, BLUESYSTEMPROVISIONING_INIT_ZERO}
|
|
376
|
+
#define BLUEREFRESHTRANSPONDERRESULTITEM_INIT_ZERO {BLUECREDENTIALID_INIT_ZERO, {{NULL}, NULL}}
|
|
377
|
+
#define BLUEREFRESHTRANSPONDERRESULT_INIT_ZERO {{{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}}
|
|
358
378
|
#define BLUEACCESSCREDENTIAL_INIT_ZERO {BLUECREDENTIALID_INIT_ZERO, _BLUECREDENTIALTYPE_MIN, {{NULL}, NULL}, {{NULL}, NULL}, 0, {{NULL}, NULL}, false, BLUELOCALTIMESTAMP_INIT_ZERO, false, BLUELOCALTIMESTAMP_INIT_ZERO, false, BLUELOCALTIMESTAMP_INIT_ZERO, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}, {{NULL}, NULL}}
|
|
359
379
|
#define BLUEACCESSCREDENTIALLIST_INIT_ZERO {{{NULL}, NULL}}
|
|
360
380
|
#define BLUEREFRESHOSSSOCREDENTIAL_INIT_ZERO {BLUECREDENTIALID_INIT_ZERO, _BLUEREFRESHOSSSOCREDENTIALSTATUS_MIN, false, BLUEOSSSOCONFIGURATION_INIT_ZERO}
|
|
@@ -425,6 +445,9 @@ extern "C" {
|
|
|
425
445
|
#define BLUEI18N_NFCTRANSPONDERCONNECTED_TAG 100
|
|
426
446
|
#define BLUEI18N_NFCTRANSPONDERDISCONNECTED_TAG 101
|
|
427
447
|
#define BLUEI18N_NFCTRANSPONDERSUCCESSREADMESSAGE_TAG 102
|
|
448
|
+
#define BLUEI18N_NFCKIOSKREFRESHTRANSPONDERNOREFRESHNEEDEDMESSAGE_TAG 103
|
|
449
|
+
#define BLUEI18N_NFCKIOSKREFRESHTRANSPONDERPARTIALREFRESHMESSAGE_TAG 104
|
|
450
|
+
#define BLUEI18N_NFCKIOSKREFRESHTRANSPONDERHOLDYOURCARDSTEADYMESSAGE_TAG 105
|
|
428
451
|
#define BLUEDEVICEDETAILSBLUETOOTH_RSSI_TAG 1
|
|
429
452
|
#define BLUEDEVICEDETAILSBLUETOOTH_TXPOWER_TAG 2
|
|
430
453
|
#define BLUEDEVICEDETAILSBLUETOOTH_ISIBEACON_TAG 3
|
|
@@ -487,6 +510,11 @@ extern "C" {
|
|
|
487
510
|
#define BLUELEGACYPROVISIONINGRESPONSE_OBJECTID_TAG 2
|
|
488
511
|
#define BLUELEGACYPROVISIONINGRESPONSE_OBJECTNAME_TAG 3
|
|
489
512
|
#define BLUELEGACYPROVISIONINGRESPONSE_PROVISIONING_TAG 4
|
|
513
|
+
#define BLUEREFRESHTRANSPONDERRESULTITEM_CREDENTIALID_TAG 1
|
|
514
|
+
#define BLUEREFRESHTRANSPONDERRESULTITEM_ERROR_TAG 2
|
|
515
|
+
#define BLUEREFRESHTRANSPONDERRESULT_UPDATED_TAG 1
|
|
516
|
+
#define BLUEREFRESHTRANSPONDERRESULT_SKIPPED_TAG 2
|
|
517
|
+
#define BLUEREFRESHTRANSPONDERRESULT_FAILED_TAG 3
|
|
490
518
|
#define BLUEACCESSCREDENTIAL_CREDENTIALID_TAG 1
|
|
491
519
|
#define BLUEACCESSCREDENTIAL_CREDENTIALTYPE_TAG 2
|
|
492
520
|
#define BLUEACCESSCREDENTIAL_NAME_TAG 3
|
|
@@ -573,7 +601,10 @@ X(a, CALLBACK, REQUIRED, STRING, openViaOssSoSelectAccessTypeTitle, 58) \
|
|
|
573
601
|
X(a, CALLBACK, REQUIRED, STRING, openViaOssSoSelectAccessTypeMessage, 59) \
|
|
574
602
|
X(a, CALLBACK, REQUIRED, STRING, nfcTransponderConnected, 100) \
|
|
575
603
|
X(a, CALLBACK, REQUIRED, STRING, nfcTransponderDisconnected, 101) \
|
|
576
|
-
X(a, CALLBACK, REQUIRED, STRING, nfcTransponderSuccessReadMessage, 102)
|
|
604
|
+
X(a, CALLBACK, REQUIRED, STRING, nfcTransponderSuccessReadMessage, 102) \
|
|
605
|
+
X(a, CALLBACK, REQUIRED, STRING, nfcKioskRefreshTransponderNoRefreshNeededMessage, 103) \
|
|
606
|
+
X(a, CALLBACK, REQUIRED, STRING, nfcKioskRefreshTransponderPartialRefreshMessage, 104) \
|
|
607
|
+
X(a, CALLBACK, REQUIRED, STRING, nfcKioskRefreshTransponderHoldYourCardSteadyMessage, 105)
|
|
577
608
|
#define BLUEI18N_CALLBACK pb_default_field_callback
|
|
578
609
|
#define BLUEI18N_DEFAULT NULL
|
|
579
610
|
|
|
@@ -721,6 +752,23 @@ X(a, STATIC, REQUIRED, MESSAGE, provisioning, 4)
|
|
|
721
752
|
#define BLUELEGACYPROVISIONINGRESPONSE_DEFAULT NULL
|
|
722
753
|
#define BlueLegacyProvisioningResponse_t_provisioning_MSGTYPE BlueSystemProvisioning_t
|
|
723
754
|
|
|
755
|
+
#define BLUEREFRESHTRANSPONDERRESULTITEM_FIELDLIST(X, a) \
|
|
756
|
+
X(a, STATIC, REQUIRED, MESSAGE, credentialId, 1) \
|
|
757
|
+
X(a, CALLBACK, OPTIONAL, STRING, error, 2)
|
|
758
|
+
#define BLUEREFRESHTRANSPONDERRESULTITEM_CALLBACK pb_default_field_callback
|
|
759
|
+
#define BLUEREFRESHTRANSPONDERRESULTITEM_DEFAULT NULL
|
|
760
|
+
#define BlueRefreshTransponderResultItem_t_credentialId_MSGTYPE BlueCredentialId_t
|
|
761
|
+
|
|
762
|
+
#define BLUEREFRESHTRANSPONDERRESULT_FIELDLIST(X, a) \
|
|
763
|
+
X(a, CALLBACK, REPEATED, MESSAGE, updated, 1) \
|
|
764
|
+
X(a, CALLBACK, REPEATED, MESSAGE, skipped, 2) \
|
|
765
|
+
X(a, CALLBACK, REPEATED, MESSAGE, failed, 3)
|
|
766
|
+
#define BLUEREFRESHTRANSPONDERRESULT_CALLBACK pb_default_field_callback
|
|
767
|
+
#define BLUEREFRESHTRANSPONDERRESULT_DEFAULT NULL
|
|
768
|
+
#define BlueRefreshTransponderResult_t_updated_MSGTYPE BlueRefreshTransponderResultItem_t
|
|
769
|
+
#define BlueRefreshTransponderResult_t_skipped_MSGTYPE BlueRefreshTransponderResultItem_t
|
|
770
|
+
#define BlueRefreshTransponderResult_t_failed_MSGTYPE BlueRefreshTransponderResultItem_t
|
|
771
|
+
|
|
724
772
|
#define BLUEACCESSCREDENTIAL_FIELDLIST(X, a) \
|
|
725
773
|
X(a, STATIC, REQUIRED, MESSAGE, credentialId, 1) \
|
|
726
774
|
X(a, STATIC, REQUIRED, UENUM, credentialType, 2) \
|
|
@@ -795,6 +843,8 @@ extern const pb_msgdesc_t BlueSynchronizeIdentity_t_msg;
|
|
|
795
843
|
extern const pb_msgdesc_t BlueSynchronizeIdentities_t_msg;
|
|
796
844
|
extern const pb_msgdesc_t BlueLegacyProvisioningRequest_t_msg;
|
|
797
845
|
extern const pb_msgdesc_t BlueLegacyProvisioningResponse_t_msg;
|
|
846
|
+
extern const pb_msgdesc_t BlueRefreshTransponderResultItem_t_msg;
|
|
847
|
+
extern const pb_msgdesc_t BlueRefreshTransponderResult_t_msg;
|
|
798
848
|
extern const pb_msgdesc_t BlueAccessCredential_t_msg;
|
|
799
849
|
extern const pb_msgdesc_t BlueAccessCredentialList_t_msg;
|
|
800
850
|
extern const pb_msgdesc_t BlueRefreshOssSoCredential_t_msg;
|
|
@@ -821,6 +871,8 @@ extern const pb_msgdesc_t BlueSynchronizeAccessCredentials_t_msg;
|
|
|
821
871
|
#define BLUESYNCHRONIZEIDENTITIES_FIELDS &BlueSynchronizeIdentities_t_msg
|
|
822
872
|
#define BLUELEGACYPROVISIONINGREQUEST_FIELDS &BlueLegacyProvisioningRequest_t_msg
|
|
823
873
|
#define BLUELEGACYPROVISIONINGRESPONSE_FIELDS &BlueLegacyProvisioningResponse_t_msg
|
|
874
|
+
#define BLUEREFRESHTRANSPONDERRESULTITEM_FIELDS &BlueRefreshTransponderResultItem_t_msg
|
|
875
|
+
#define BLUEREFRESHTRANSPONDERRESULT_FIELDS &BlueRefreshTransponderResult_t_msg
|
|
824
876
|
#define BLUEACCESSCREDENTIAL_FIELDS &BlueAccessCredential_t_msg
|
|
825
877
|
#define BLUEACCESSCREDENTIALLIST_FIELDS &BlueAccessCredentialList_t_msg
|
|
826
878
|
#define BLUEREFRESHOSSSOCREDENTIAL_FIELDS &BlueRefreshOssSoCredential_t_msg
|
|
@@ -845,6 +897,8 @@ extern const pb_msgdesc_t BlueSynchronizeAccessCredentials_t_msg;
|
|
|
845
897
|
/* BlueSynchronizeIdentities_size depends on runtime parameters */
|
|
846
898
|
/* BlueLegacyProvisioningRequest_size depends on runtime parameters */
|
|
847
899
|
/* BlueLegacyProvisioningResponse_size depends on runtime parameters */
|
|
900
|
+
/* BlueRefreshTransponderResultItem_size depends on runtime parameters */
|
|
901
|
+
/* BlueRefreshTransponderResult_size depends on runtime parameters */
|
|
848
902
|
/* BlueAccessCredential_size depends on runtime parameters */
|
|
849
903
|
/* BlueAccessCredentialList_size depends on runtime parameters */
|
|
850
904
|
/* BlueRefreshOssSoCredentials_size depends on runtime parameters */
|
package/package.json
CHANGED
package/swift/BlueSDK.pb.swift
CHANGED
|
@@ -192,6 +192,33 @@ public struct BlueI18n: @unchecked Sendable {
|
|
|
192
192
|
/// Clears the value of `nfcTransponderSuccessReadMessage`. Subsequent reads from it will return its default value.
|
|
193
193
|
public mutating func clearNfcTransponderSuccessReadMessage() {_uniqueStorage()._nfcTransponderSuccessReadMessage = nil}
|
|
194
194
|
|
|
195
|
+
public var nfcKioskRefreshTransponderNoRefreshNeededMessage: String {
|
|
196
|
+
get {return _storage._nfcKioskRefreshTransponderNoRefreshNeededMessage ?? "Credentials are valid — no refresh needed"}
|
|
197
|
+
set {_uniqueStorage()._nfcKioskRefreshTransponderNoRefreshNeededMessage = newValue}
|
|
198
|
+
}
|
|
199
|
+
/// Returns true if `nfcKioskRefreshTransponderNoRefreshNeededMessage` has been explicitly set.
|
|
200
|
+
public var hasNfcKioskRefreshTransponderNoRefreshNeededMessage: Bool {return _storage._nfcKioskRefreshTransponderNoRefreshNeededMessage != nil}
|
|
201
|
+
/// Clears the value of `nfcKioskRefreshTransponderNoRefreshNeededMessage`. Subsequent reads from it will return its default value.
|
|
202
|
+
public mutating func clearNfcKioskRefreshTransponderNoRefreshNeededMessage() {_uniqueStorage()._nfcKioskRefreshTransponderNoRefreshNeededMessage = nil}
|
|
203
|
+
|
|
204
|
+
public var nfcKioskRefreshTransponderPartialRefreshMessage: String {
|
|
205
|
+
get {return _storage._nfcKioskRefreshTransponderPartialRefreshMessage ?? "%d out of %d credentials have been refreshed"}
|
|
206
|
+
set {_uniqueStorage()._nfcKioskRefreshTransponderPartialRefreshMessage = newValue}
|
|
207
|
+
}
|
|
208
|
+
/// Returns true if `nfcKioskRefreshTransponderPartialRefreshMessage` has been explicitly set.
|
|
209
|
+
public var hasNfcKioskRefreshTransponderPartialRefreshMessage: Bool {return _storage._nfcKioskRefreshTransponderPartialRefreshMessage != nil}
|
|
210
|
+
/// Clears the value of `nfcKioskRefreshTransponderPartialRefreshMessage`. Subsequent reads from it will return its default value.
|
|
211
|
+
public mutating func clearNfcKioskRefreshTransponderPartialRefreshMessage() {_uniqueStorage()._nfcKioskRefreshTransponderPartialRefreshMessage = nil}
|
|
212
|
+
|
|
213
|
+
public var nfcKioskRefreshTransponderHoldYourCardSteadyMessage: String {
|
|
214
|
+
get {return _storage._nfcKioskRefreshTransponderHoldYourCardSteadyMessage ?? "Please hold your card steady until the process is done"}
|
|
215
|
+
set {_uniqueStorage()._nfcKioskRefreshTransponderHoldYourCardSteadyMessage = newValue}
|
|
216
|
+
}
|
|
217
|
+
/// Returns true if `nfcKioskRefreshTransponderHoldYourCardSteadyMessage` has been explicitly set.
|
|
218
|
+
public var hasNfcKioskRefreshTransponderHoldYourCardSteadyMessage: Bool {return _storage._nfcKioskRefreshTransponderHoldYourCardSteadyMessage != nil}
|
|
219
|
+
/// Clears the value of `nfcKioskRefreshTransponderHoldYourCardSteadyMessage`. Subsequent reads from it will return its default value.
|
|
220
|
+
public mutating func clearNfcKioskRefreshTransponderHoldYourCardSteadyMessage() {_uniqueStorage()._nfcKioskRefreshTransponderHoldYourCardSteadyMessage = nil}
|
|
221
|
+
|
|
195
222
|
public var openViaOssTitle: String {
|
|
196
223
|
get {return _storage._openViaOssTitle ?? "Unlocking in Progress"}
|
|
197
224
|
set {_uniqueStorage()._openViaOssTitle = newValue}
|
|
@@ -1415,6 +1442,53 @@ public struct BlueLegacyProvisioningResponse: Sendable {
|
|
|
1415
1442
|
fileprivate var _provisioning: BlueSystemProvisioning? = nil
|
|
1416
1443
|
}
|
|
1417
1444
|
|
|
1445
|
+
public struct BlueRefreshTransponderResultItem: Sendable {
|
|
1446
|
+
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1447
|
+
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1448
|
+
// methods supported on all messages.
|
|
1449
|
+
|
|
1450
|
+
public var credentialID: BlueCredentialId {
|
|
1451
|
+
get {return _credentialID ?? BlueCredentialId()}
|
|
1452
|
+
set {_credentialID = newValue}
|
|
1453
|
+
}
|
|
1454
|
+
/// Returns true if `credentialID` has been explicitly set.
|
|
1455
|
+
public var hasCredentialID: Bool {return self._credentialID != nil}
|
|
1456
|
+
/// Clears the value of `credentialID`. Subsequent reads from it will return its default value.
|
|
1457
|
+
public mutating func clearCredentialID() {self._credentialID = nil}
|
|
1458
|
+
|
|
1459
|
+
public var error: String {
|
|
1460
|
+
get {return _error ?? String()}
|
|
1461
|
+
set {_error = newValue}
|
|
1462
|
+
}
|
|
1463
|
+
/// Returns true if `error` has been explicitly set.
|
|
1464
|
+
public var hasError: Bool {return self._error != nil}
|
|
1465
|
+
/// Clears the value of `error`. Subsequent reads from it will return its default value.
|
|
1466
|
+
public mutating func clearError() {self._error = nil}
|
|
1467
|
+
|
|
1468
|
+
public var unknownFields = SwiftProtobuf.UnknownStorage()
|
|
1469
|
+
|
|
1470
|
+
public init() {}
|
|
1471
|
+
|
|
1472
|
+
fileprivate var _credentialID: BlueCredentialId? = nil
|
|
1473
|
+
fileprivate var _error: String? = nil
|
|
1474
|
+
}
|
|
1475
|
+
|
|
1476
|
+
public struct BlueRefreshTransponderResult: Sendable {
|
|
1477
|
+
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
1478
|
+
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
|
|
1479
|
+
// methods supported on all messages.
|
|
1480
|
+
|
|
1481
|
+
public var updated: [BlueRefreshTransponderResultItem] = []
|
|
1482
|
+
|
|
1483
|
+
public var skipped: [BlueRefreshTransponderResultItem] = []
|
|
1484
|
+
|
|
1485
|
+
public var failed: [BlueRefreshTransponderResultItem] = []
|
|
1486
|
+
|
|
1487
|
+
public var unknownFields = SwiftProtobuf.UnknownStorage()
|
|
1488
|
+
|
|
1489
|
+
public init() {}
|
|
1490
|
+
}
|
|
1491
|
+
|
|
1418
1492
|
/// @TODO: Keep it until we have updated all places in both iOS and Android SDK.
|
|
1419
1493
|
public struct BlueAccessCredential: @unchecked Sendable {
|
|
1420
1494
|
// SwiftProtobuf.Message conformance is added in an extension below. See the
|
|
@@ -1696,6 +1770,9 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
|
|
|
1696
1770
|
100: .same(proto: "nfcTransponderConnected"),
|
|
1697
1771
|
101: .same(proto: "nfcTransponderDisconnected"),
|
|
1698
1772
|
102: .same(proto: "nfcTransponderSuccessReadMessage"),
|
|
1773
|
+
103: .same(proto: "nfcKioskRefreshTransponderNoRefreshNeededMessage"),
|
|
1774
|
+
104: .same(proto: "nfcKioskRefreshTransponderPartialRefreshMessage"),
|
|
1775
|
+
105: .same(proto: "nfcKioskRefreshTransponderHoldYourCardSteadyMessage"),
|
|
1699
1776
|
10: .same(proto: "openViaOssTitle"),
|
|
1700
1777
|
11: .same(proto: "openViaOssWaitMessage"),
|
|
1701
1778
|
12: .same(proto: "openViaOssAccessGrantedTitle"),
|
|
@@ -1761,6 +1838,9 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
|
|
|
1761
1838
|
var _nfcTransponderConnected: String? = nil
|
|
1762
1839
|
var _nfcTransponderDisconnected: String? = nil
|
|
1763
1840
|
var _nfcTransponderSuccessReadMessage: String? = nil
|
|
1841
|
+
var _nfcKioskRefreshTransponderNoRefreshNeededMessage: String? = nil
|
|
1842
|
+
var _nfcKioskRefreshTransponderPartialRefreshMessage: String? = nil
|
|
1843
|
+
var _nfcKioskRefreshTransponderHoldYourCardSteadyMessage: String? = nil
|
|
1764
1844
|
var _openViaOssTitle: String? = nil
|
|
1765
1845
|
var _openViaOssWaitMessage: String? = nil
|
|
1766
1846
|
var _openViaOssAccessGrantedTitle: String? = nil
|
|
@@ -1837,6 +1917,9 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
|
|
|
1837
1917
|
_nfcTransponderConnected = source._nfcTransponderConnected
|
|
1838
1918
|
_nfcTransponderDisconnected = source._nfcTransponderDisconnected
|
|
1839
1919
|
_nfcTransponderSuccessReadMessage = source._nfcTransponderSuccessReadMessage
|
|
1920
|
+
_nfcKioskRefreshTransponderNoRefreshNeededMessage = source._nfcKioskRefreshTransponderNoRefreshNeededMessage
|
|
1921
|
+
_nfcKioskRefreshTransponderPartialRefreshMessage = source._nfcKioskRefreshTransponderPartialRefreshMessage
|
|
1922
|
+
_nfcKioskRefreshTransponderHoldYourCardSteadyMessage = source._nfcKioskRefreshTransponderHoldYourCardSteadyMessage
|
|
1840
1923
|
_openViaOssTitle = source._openViaOssTitle
|
|
1841
1924
|
_openViaOssWaitMessage = source._openViaOssWaitMessage
|
|
1842
1925
|
_openViaOssAccessGrantedTitle = source._openViaOssAccessGrantedTitle
|
|
@@ -1911,6 +1994,9 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
|
|
|
1911
1994
|
if _storage._nfcTransponderConnected == nil {return false}
|
|
1912
1995
|
if _storage._nfcTransponderDisconnected == nil {return false}
|
|
1913
1996
|
if _storage._nfcTransponderSuccessReadMessage == nil {return false}
|
|
1997
|
+
if _storage._nfcKioskRefreshTransponderNoRefreshNeededMessage == nil {return false}
|
|
1998
|
+
if _storage._nfcKioskRefreshTransponderPartialRefreshMessage == nil {return false}
|
|
1999
|
+
if _storage._nfcKioskRefreshTransponderHoldYourCardSteadyMessage == nil {return false}
|
|
1914
2000
|
if _storage._openViaOssTitle == nil {return false}
|
|
1915
2001
|
if _storage._openViaOssWaitMessage == nil {return false}
|
|
1916
2002
|
if _storage._openViaOssAccessGrantedTitle == nil {return false}
|
|
@@ -2035,6 +2121,9 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
|
|
|
2035
2121
|
case 100: try { try decoder.decodeSingularStringField(value: &_storage._nfcTransponderConnected) }()
|
|
2036
2122
|
case 101: try { try decoder.decodeSingularStringField(value: &_storage._nfcTransponderDisconnected) }()
|
|
2037
2123
|
case 102: try { try decoder.decodeSingularStringField(value: &_storage._nfcTransponderSuccessReadMessage) }()
|
|
2124
|
+
case 103: try { try decoder.decodeSingularStringField(value: &_storage._nfcKioskRefreshTransponderNoRefreshNeededMessage) }()
|
|
2125
|
+
case 104: try { try decoder.decodeSingularStringField(value: &_storage._nfcKioskRefreshTransponderPartialRefreshMessage) }()
|
|
2126
|
+
case 105: try { try decoder.decodeSingularStringField(value: &_storage._nfcKioskRefreshTransponderHoldYourCardSteadyMessage) }()
|
|
2038
2127
|
default: break
|
|
2039
2128
|
}
|
|
2040
2129
|
}
|
|
@@ -2233,6 +2322,15 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
|
|
|
2233
2322
|
try { if let v = _storage._nfcTransponderSuccessReadMessage {
|
|
2234
2323
|
try visitor.visitSingularStringField(value: v, fieldNumber: 102)
|
|
2235
2324
|
} }()
|
|
2325
|
+
try { if let v = _storage._nfcKioskRefreshTransponderNoRefreshNeededMessage {
|
|
2326
|
+
try visitor.visitSingularStringField(value: v, fieldNumber: 103)
|
|
2327
|
+
} }()
|
|
2328
|
+
try { if let v = _storage._nfcKioskRefreshTransponderPartialRefreshMessage {
|
|
2329
|
+
try visitor.visitSingularStringField(value: v, fieldNumber: 104)
|
|
2330
|
+
} }()
|
|
2331
|
+
try { if let v = _storage._nfcKioskRefreshTransponderHoldYourCardSteadyMessage {
|
|
2332
|
+
try visitor.visitSingularStringField(value: v, fieldNumber: 105)
|
|
2333
|
+
} }()
|
|
2236
2334
|
}
|
|
2237
2335
|
try unknownFields.traverse(visitor: &visitor)
|
|
2238
2336
|
}
|
|
@@ -2254,6 +2352,9 @@ extension BlueI18n: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationB
|
|
|
2254
2352
|
if _storage._nfcTransponderConnected != rhs_storage._nfcTransponderConnected {return false}
|
|
2255
2353
|
if _storage._nfcTransponderDisconnected != rhs_storage._nfcTransponderDisconnected {return false}
|
|
2256
2354
|
if _storage._nfcTransponderSuccessReadMessage != rhs_storage._nfcTransponderSuccessReadMessage {return false}
|
|
2355
|
+
if _storage._nfcKioskRefreshTransponderNoRefreshNeededMessage != rhs_storage._nfcKioskRefreshTransponderNoRefreshNeededMessage {return false}
|
|
2356
|
+
if _storage._nfcKioskRefreshTransponderPartialRefreshMessage != rhs_storage._nfcKioskRefreshTransponderPartialRefreshMessage {return false}
|
|
2357
|
+
if _storage._nfcKioskRefreshTransponderHoldYourCardSteadyMessage != rhs_storage._nfcKioskRefreshTransponderHoldYourCardSteadyMessage {return false}
|
|
2257
2358
|
if _storage._openViaOssTitle != rhs_storage._openViaOssTitle {return false}
|
|
2258
2359
|
if _storage._openViaOssWaitMessage != rhs_storage._openViaOssWaitMessage {return false}
|
|
2259
2360
|
if _storage._openViaOssAccessGrantedTitle != rhs_storage._openViaOssAccessGrantedTitle {return false}
|
|
@@ -3384,6 +3485,105 @@ extension BlueLegacyProvisioningResponse: SwiftProtobuf.Message, SwiftProtobuf._
|
|
|
3384
3485
|
}
|
|
3385
3486
|
}
|
|
3386
3487
|
|
|
3488
|
+
extension BlueRefreshTransponderResultItem: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
3489
|
+
public static let protoMessageName: String = "BlueRefreshTransponderResultItem"
|
|
3490
|
+
public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
|
|
3491
|
+
1: .same(proto: "credentialId"),
|
|
3492
|
+
2: .same(proto: "error"),
|
|
3493
|
+
]
|
|
3494
|
+
|
|
3495
|
+
public var isInitialized: Bool {
|
|
3496
|
+
if self._credentialID == nil {return false}
|
|
3497
|
+
if let v = self._credentialID, !v.isInitialized {return false}
|
|
3498
|
+
return true
|
|
3499
|
+
}
|
|
3500
|
+
|
|
3501
|
+
public mutating func decodeMessage<D: SwiftProtobuf.Decoder>(decoder: inout D) throws {
|
|
3502
|
+
while let fieldNumber = try decoder.nextFieldNumber() {
|
|
3503
|
+
// The use of inline closures is to circumvent an issue where the compiler
|
|
3504
|
+
// allocates stack space for every case branch when no optimizations are
|
|
3505
|
+
// enabled. https://github.com/apple/swift-protobuf/issues/1034
|
|
3506
|
+
switch fieldNumber {
|
|
3507
|
+
case 1: try { try decoder.decodeSingularMessageField(value: &self._credentialID) }()
|
|
3508
|
+
case 2: try { try decoder.decodeSingularStringField(value: &self._error) }()
|
|
3509
|
+
default: break
|
|
3510
|
+
}
|
|
3511
|
+
}
|
|
3512
|
+
}
|
|
3513
|
+
|
|
3514
|
+
public func traverse<V: SwiftProtobuf.Visitor>(visitor: inout V) throws {
|
|
3515
|
+
// The use of inline closures is to circumvent an issue where the compiler
|
|
3516
|
+
// allocates stack space for every if/case branch local when no optimizations
|
|
3517
|
+
// are enabled. https://github.com/apple/swift-protobuf/issues/1034 and
|
|
3518
|
+
// https://github.com/apple/swift-protobuf/issues/1182
|
|
3519
|
+
try { if let v = self._credentialID {
|
|
3520
|
+
try visitor.visitSingularMessageField(value: v, fieldNumber: 1)
|
|
3521
|
+
} }()
|
|
3522
|
+
try { if let v = self._error {
|
|
3523
|
+
try visitor.visitSingularStringField(value: v, fieldNumber: 2)
|
|
3524
|
+
} }()
|
|
3525
|
+
try unknownFields.traverse(visitor: &visitor)
|
|
3526
|
+
}
|
|
3527
|
+
|
|
3528
|
+
public static func ==(lhs: BlueRefreshTransponderResultItem, rhs: BlueRefreshTransponderResultItem) -> Bool {
|
|
3529
|
+
if lhs._credentialID != rhs._credentialID {return false}
|
|
3530
|
+
if lhs._error != rhs._error {return false}
|
|
3531
|
+
if lhs.unknownFields != rhs.unknownFields {return false}
|
|
3532
|
+
return true
|
|
3533
|
+
}
|
|
3534
|
+
}
|
|
3535
|
+
|
|
3536
|
+
extension BlueRefreshTransponderResult: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
3537
|
+
public static let protoMessageName: String = "BlueRefreshTransponderResult"
|
|
3538
|
+
public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
|
|
3539
|
+
1: .same(proto: "updated"),
|
|
3540
|
+
2: .same(proto: "skipped"),
|
|
3541
|
+
3: .same(proto: "failed"),
|
|
3542
|
+
]
|
|
3543
|
+
|
|
3544
|
+
public var isInitialized: Bool {
|
|
3545
|
+
if !SwiftProtobuf.Internal.areAllInitialized(self.updated) {return false}
|
|
3546
|
+
if !SwiftProtobuf.Internal.areAllInitialized(self.skipped) {return false}
|
|
3547
|
+
if !SwiftProtobuf.Internal.areAllInitialized(self.failed) {return false}
|
|
3548
|
+
return true
|
|
3549
|
+
}
|
|
3550
|
+
|
|
3551
|
+
public mutating func decodeMessage<D: SwiftProtobuf.Decoder>(decoder: inout D) throws {
|
|
3552
|
+
while let fieldNumber = try decoder.nextFieldNumber() {
|
|
3553
|
+
// The use of inline closures is to circumvent an issue where the compiler
|
|
3554
|
+
// allocates stack space for every case branch when no optimizations are
|
|
3555
|
+
// enabled. https://github.com/apple/swift-protobuf/issues/1034
|
|
3556
|
+
switch fieldNumber {
|
|
3557
|
+
case 1: try { try decoder.decodeRepeatedMessageField(value: &self.updated) }()
|
|
3558
|
+
case 2: try { try decoder.decodeRepeatedMessageField(value: &self.skipped) }()
|
|
3559
|
+
case 3: try { try decoder.decodeRepeatedMessageField(value: &self.failed) }()
|
|
3560
|
+
default: break
|
|
3561
|
+
}
|
|
3562
|
+
}
|
|
3563
|
+
}
|
|
3564
|
+
|
|
3565
|
+
public func traverse<V: SwiftProtobuf.Visitor>(visitor: inout V) throws {
|
|
3566
|
+
if !self.updated.isEmpty {
|
|
3567
|
+
try visitor.visitRepeatedMessageField(value: self.updated, fieldNumber: 1)
|
|
3568
|
+
}
|
|
3569
|
+
if !self.skipped.isEmpty {
|
|
3570
|
+
try visitor.visitRepeatedMessageField(value: self.skipped, fieldNumber: 2)
|
|
3571
|
+
}
|
|
3572
|
+
if !self.failed.isEmpty {
|
|
3573
|
+
try visitor.visitRepeatedMessageField(value: self.failed, fieldNumber: 3)
|
|
3574
|
+
}
|
|
3575
|
+
try unknownFields.traverse(visitor: &visitor)
|
|
3576
|
+
}
|
|
3577
|
+
|
|
3578
|
+
public static func ==(lhs: BlueRefreshTransponderResult, rhs: BlueRefreshTransponderResult) -> Bool {
|
|
3579
|
+
if lhs.updated != rhs.updated {return false}
|
|
3580
|
+
if lhs.skipped != rhs.skipped {return false}
|
|
3581
|
+
if lhs.failed != rhs.failed {return false}
|
|
3582
|
+
if lhs.unknownFields != rhs.unknownFields {return false}
|
|
3583
|
+
return true
|
|
3584
|
+
}
|
|
3585
|
+
}
|
|
3586
|
+
|
|
3387
3587
|
extension BlueAccessCredential: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
|
|
3388
3588
|
public static let protoMessageName: String = "BlueAccessCredential"
|
|
3389
3589
|
public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
|