@blueid/access-capacitor 1.34.0 → 1.36.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/dist/esm/BlueSDK_pb.d.ts +70 -3
- package/dist/esm/BlueSDK_pb.js +64 -3
- package/dist/esm/BlueSDK_pb.js.map +1 -1
- package/dist/esm/BlueSystem_pb.d.ts +0 -49
- package/dist/esm/BlueSystem_pb.js +0 -34
- package/dist/esm/BlueSystem_pb.js.map +1 -1
- package/dist/plugin.cjs.js +668 -640
- package/dist/plugin.cjs.js.map +1 -1
- package/dist/plugin.js +668 -640
- package/dist/plugin.js.map +1 -1
- package/package.json +1 -1
package/dist/plugin.cjs.js
CHANGED
|
@@ -3015,1190 +3015,1217 @@ var BlueLock = /*#__PURE__*/Object.freeze({
|
|
|
3015
3015
|
|
|
3016
3016
|
// @generated by protoc-gen-es v1.4.0 with parameter "target=ts"
|
|
3017
3017
|
/**
|
|
3018
|
-
* @generated from
|
|
3019
|
-
*/
|
|
3020
|
-
exports.BlueDeviceType = void 0;
|
|
3021
|
-
(function (BlueDeviceType) {
|
|
3022
|
-
/**
|
|
3023
|
-
* @generated from enum value: BluetoothDevice = 1;
|
|
3024
|
-
*/
|
|
3025
|
-
BlueDeviceType[BlueDeviceType["BluetoothDevice"] = 1] = "BluetoothDevice";
|
|
3026
|
-
/**
|
|
3027
|
-
* @generated from enum value: UWBDevice = 2;
|
|
3028
|
-
*/
|
|
3029
|
-
BlueDeviceType[BlueDeviceType["UWBDevice"] = 2] = "UWBDevice";
|
|
3030
|
-
})(exports.BlueDeviceType || (exports.BlueDeviceType = {}));
|
|
3031
|
-
// Retrieve enum metadata with: proto2.getEnumType(BlueDeviceType)
|
|
3032
|
-
protobuf.proto2.util.setEnumType(exports.BlueDeviceType, "BlueDeviceType", [
|
|
3033
|
-
{ no: 1, name: "BluetoothDevice" },
|
|
3034
|
-
{ no: 2, name: "UWBDevice" },
|
|
3035
|
-
]);
|
|
3036
|
-
/**
|
|
3037
|
-
* @generated from enum BlueRefreshOssSoCredentialStatus
|
|
3018
|
+
* @generated from message BlueBaseConfig
|
|
3038
3019
|
*/
|
|
3039
|
-
|
|
3040
|
-
(
|
|
3041
|
-
|
|
3042
|
-
|
|
3043
|
-
|
|
3044
|
-
|
|
3045
|
-
|
|
3046
|
-
|
|
3047
|
-
|
|
3048
|
-
|
|
3049
|
-
|
|
3050
|
-
|
|
3051
|
-
|
|
3052
|
-
|
|
3053
|
-
|
|
3054
|
-
|
|
3055
|
-
|
|
3056
|
-
|
|
3057
|
-
|
|
3058
|
-
|
|
3059
|
-
protobuf.proto2.util.
|
|
3060
|
-
{ no: 1, name: "
|
|
3061
|
-
{ no: 2, name: "
|
|
3062
|
-
{ no: 3, name: "
|
|
3063
|
-
{ no: 4, name: "
|
|
3020
|
+
class BlueBaseConfig extends protobuf.Message {
|
|
3021
|
+
constructor(data) {
|
|
3022
|
+
super();
|
|
3023
|
+
protobuf.proto2.util.initPartial(data, this);
|
|
3024
|
+
}
|
|
3025
|
+
static fromBinary(bytes, options) {
|
|
3026
|
+
return new BlueBaseConfig().fromBinary(bytes, options);
|
|
3027
|
+
}
|
|
3028
|
+
static fromJson(jsonValue, options) {
|
|
3029
|
+
return new BlueBaseConfig().fromJson(jsonValue, options);
|
|
3030
|
+
}
|
|
3031
|
+
static fromJsonString(jsonString, options) {
|
|
3032
|
+
return new BlueBaseConfig().fromJsonString(jsonString, options);
|
|
3033
|
+
}
|
|
3034
|
+
static equals(a, b) {
|
|
3035
|
+
return protobuf.proto2.util.equals(BlueBaseConfig, a, b);
|
|
3036
|
+
}
|
|
3037
|
+
}
|
|
3038
|
+
BlueBaseConfig.runtime = protobuf.proto2;
|
|
3039
|
+
BlueBaseConfig.typeName = "BlueBaseConfig";
|
|
3040
|
+
BlueBaseConfig.fields = protobuf.proto2.util.newFieldList(() => [
|
|
3041
|
+
{ no: 1, name: "isoCountry", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3042
|
+
{ no: 2, name: "isoState", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3043
|
+
{ no: 3, name: "utcOffsetMinutes", kind: "scalar", T: 5 /* ScalarType.INT32 */, default: 0 },
|
|
3044
|
+
{ no: 4, name: "autoCheckSystemStatus", kind: "scalar", T: 8 /* ScalarType.BOOL */, default: false },
|
|
3064
3045
|
]);
|
|
3065
3046
|
/**
|
|
3066
|
-
* @generated from message
|
|
3047
|
+
* @generated from message BlueBleConfig
|
|
3067
3048
|
*/
|
|
3068
|
-
class
|
|
3049
|
+
class BlueBleConfig extends protobuf.Message {
|
|
3069
3050
|
constructor(data) {
|
|
3070
3051
|
super();
|
|
3052
|
+
/**
|
|
3053
|
+
* Optional schedule on when ble advertising is enabled, if none
|
|
3054
|
+
* set then ble is always on when enabled
|
|
3055
|
+
*
|
|
3056
|
+
* @generated from field: repeated BlueLocalTimeSchedule advertisingSchedules = 2;
|
|
3057
|
+
*/
|
|
3058
|
+
this.advertisingSchedules = [];
|
|
3059
|
+
/**
|
|
3060
|
+
* Index of advertising schedules (starting at zero) where it should
|
|
3061
|
+
* use the max power level available for broader reach
|
|
3062
|
+
*
|
|
3063
|
+
* @generated from field: repeated uint32 maxPowerAdvertisingSchedulesIndices = 3;
|
|
3064
|
+
*/
|
|
3065
|
+
this.maxPowerAdvertisingSchedulesIndices = [];
|
|
3071
3066
|
protobuf.proto2.util.initPartial(data, this);
|
|
3072
3067
|
}
|
|
3073
3068
|
static fromBinary(bytes, options) {
|
|
3074
|
-
return new
|
|
3069
|
+
return new BlueBleConfig().fromBinary(bytes, options);
|
|
3075
3070
|
}
|
|
3076
3071
|
static fromJson(jsonValue, options) {
|
|
3077
|
-
return new
|
|
3072
|
+
return new BlueBleConfig().fromJson(jsonValue, options);
|
|
3078
3073
|
}
|
|
3079
3074
|
static fromJsonString(jsonString, options) {
|
|
3080
|
-
return new
|
|
3075
|
+
return new BlueBleConfig().fromJsonString(jsonString, options);
|
|
3081
3076
|
}
|
|
3082
3077
|
static equals(a, b) {
|
|
3083
|
-
return protobuf.proto2.util.equals(
|
|
3078
|
+
return protobuf.proto2.util.equals(BlueBleConfig, a, b);
|
|
3084
3079
|
}
|
|
3085
3080
|
}
|
|
3086
|
-
|
|
3087
|
-
|
|
3088
|
-
|
|
3089
|
-
{ no: 1, name: "
|
|
3090
|
-
{ no: 2, name: "
|
|
3091
|
-
{ no: 3, name: "
|
|
3092
|
-
{ no: 4, name: "
|
|
3093
|
-
{ no: 5, name: "
|
|
3094
|
-
{ no: 6, name: "
|
|
3095
|
-
{ no: 7, name: "
|
|
3096
|
-
{ no: 8, name: "
|
|
3097
|
-
{ no: 9, name: "nfcInitializingWritingProcess", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Initializing writing process" },
|
|
3098
|
-
{ no: 10, name: "openViaOssTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Unlocking in Progress" },
|
|
3099
|
-
{ no: 11, name: "openViaOssWaitMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Establishing secure connection..." },
|
|
3100
|
-
{ no: 12, name: "openViaOssAccessGrantedTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Access Granted" },
|
|
3101
|
-
{ no: 13, name: "openViaOssAccessGrantedMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Please proceed." },
|
|
3102
|
-
{ no: 14, name: "openViaOssAccessGrantedLockEngagedTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Lock engaged" },
|
|
3103
|
-
{ no: 15, name: "openViaOssAccessGrantedLockEngagedMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Lock remains closed until toggled again." },
|
|
3104
|
-
{ no: 16, name: "openViaOssAccessGrantedLockDisengagedTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Lock disengaged" },
|
|
3105
|
-
{ no: 17, name: "openViaOssAccessGrantedLockDisengagedMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Lock remains open until toggled again." },
|
|
3106
|
-
{ no: 18, name: "openViaOssAccessGrantedExtendedTimeMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Lock will remain disengaged for %d seconds." },
|
|
3107
|
-
{ no: 19, name: "openViaOssAccessDeniedTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Access Denied" },
|
|
3108
|
-
{ no: 20, name: "openViaOssAccessDeniedMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Credentials are invalid or outdated." },
|
|
3109
|
-
{ no: 21, name: "openViaOssAccessDeniedScheduleMismatchMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Credentials are not valid at this time and/or day of the week." },
|
|
3110
|
-
{ no: 22, name: "openViaOssErrorTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Error" },
|
|
3111
|
-
{ no: 23, name: "cmnCancelLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Cancel" },
|
|
3112
|
-
{ no: 24, name: "cmnCloseLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Close" },
|
|
3113
|
-
{ no: 25, name: "syncDeviceInProgressTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Synchronization in Progress" },
|
|
3114
|
-
{ no: 26, name: "syncDeviceFailedTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Synchronization has failed" },
|
|
3115
|
-
{ no: 27, name: "syncDeviceCancellingTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Cancelling..." },
|
|
3116
|
-
{ no: 28, name: "syncDeviceCompletedTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Synchronization has been completed" },
|
|
3117
|
-
{ no: 29, name: "syncDeviceGetAuthenticationTokenTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Issue authentication token" },
|
|
3118
|
-
{ no: 30, name: "syncDeviceRetrieveDeviceConfigurationTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Retrieve device configuration" },
|
|
3119
|
-
{ no: 31, name: "syncDeviceUpdateDeviceConfigurationTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Update device configuration" },
|
|
3120
|
-
{ no: 32, name: "syncDeviceUpdateDeviceTimeTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Update device time" },
|
|
3121
|
-
{ no: 33, name: "syncDeviceWaitForDeviceToRestartTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Wait for device to restart" },
|
|
3122
|
-
{ no: 34, name: "syncDevicePushEventLogsTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Push event logs" },
|
|
3123
|
-
{ no: 35, name: "syncDevicePushSystemLogsTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Push system logs" },
|
|
3124
|
-
{ no: 36, name: "syncDeviceRetrieveBlacklistEntriesTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Retrieve blacklist entries" },
|
|
3125
|
-
{ no: 37, name: "syncDeviceDeployBlacklistEntriesTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Deploy blacklist entries" },
|
|
3126
|
-
{ no: 38, name: "syncDeviceRetrieveSystemStatusTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Retrieve system status" },
|
|
3127
|
-
{ no: 39, name: "syncDevicePushSystemStatusTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Push system status" },
|
|
3128
|
-
{ no: 40, name: "syncDeviceCheckLatestFWLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Check latest firmware" },
|
|
3129
|
-
{ no: 41, name: "dfuInProgressTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Update in Progress" },
|
|
3130
|
-
{ no: 42, name: "dfuFailedTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Update has failed" },
|
|
3131
|
-
{ no: 43, name: "dfuCancellingTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Cancelling..." },
|
|
3132
|
-
{ no: 44, name: "dfuCompletedTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Update has been completed" },
|
|
3133
|
-
{ no: 45, name: "dfuGetAuthenticationTokenTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Issue authentication token" },
|
|
3134
|
-
{ no: 46, name: "dfuCheckLatestFWLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Check latest firmware" },
|
|
3135
|
-
{ no: 47, name: "dfuDownloadLatestFWLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Download latest firmware" },
|
|
3136
|
-
{ no: 48, name: "dfuPrepareUpdateLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Prepare Update" },
|
|
3137
|
-
{ no: 49, name: "dfuStartBootloaderLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Start Bootloader" },
|
|
3138
|
-
{ no: 50, name: "dfuInitializationLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "DFU initialization" },
|
|
3139
|
-
{ no: 51, name: "dfuUpdateFWLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Update firmware" },
|
|
3140
|
-
{ no: 52, name: "dfuWaitForDeviceToRestartTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Wait for device to restart" },
|
|
3081
|
+
BlueBleConfig.runtime = protobuf.proto2;
|
|
3082
|
+
BlueBleConfig.typeName = "BlueBleConfig";
|
|
3083
|
+
BlueBleConfig.fields = protobuf.proto2.util.newFieldList(() => [
|
|
3084
|
+
{ no: 1, name: "isAdvertising", kind: "scalar", T: 8 /* ScalarType.BOOL */, default: true },
|
|
3085
|
+
{ no: 2, name: "advertisingSchedules", kind: "message", T: BlueLocalTimeSchedule, repeated: true },
|
|
3086
|
+
{ no: 3, name: "maxPowerAdvertisingSchedulesIndices", kind: "scalar", T: 13 /* ScalarType.UINT32 */, repeated: true },
|
|
3087
|
+
{ no: 4, name: "advertisingIntervalMs", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 500 },
|
|
3088
|
+
{ no: 5, name: "maxConnectionTimeoutMs", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 3000 },
|
|
3089
|
+
{ no: 6, name: "txPowerLevel", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 3 },
|
|
3090
|
+
{ no: 7, name: "advertisedTxPower1Meter", kind: "scalar", T: 5 /* ScalarType.INT32 */, default: -77 },
|
|
3091
|
+
{ no: 8, name: "isIBeaconAdvertisement", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
3141
3092
|
]);
|
|
3142
3093
|
/**
|
|
3143
|
-
* @generated from message
|
|
3094
|
+
* @generated from message BlueOnlineConfig
|
|
3144
3095
|
*/
|
|
3145
|
-
class
|
|
3096
|
+
class BlueOnlineConfig extends protobuf.Message {
|
|
3146
3097
|
constructor(data) {
|
|
3147
3098
|
super();
|
|
3099
|
+
/**
|
|
3100
|
+
* Schedules when it should go online for updating. Only applies to
|
|
3101
|
+
* battery-powered devices with wifi or gsm module. If no schedule is set will
|
|
3102
|
+
* never go online. The end time is not used.
|
|
3103
|
+
*
|
|
3104
|
+
* @generated from field: repeated BlueLocalTimeSchedule connectSchedules = 1;
|
|
3105
|
+
*/
|
|
3106
|
+
this.connectSchedules = [];
|
|
3148
3107
|
protobuf.proto2.util.initPartial(data, this);
|
|
3149
3108
|
}
|
|
3150
3109
|
static fromBinary(bytes, options) {
|
|
3151
|
-
return new
|
|
3110
|
+
return new BlueOnlineConfig().fromBinary(bytes, options);
|
|
3152
3111
|
}
|
|
3153
3112
|
static fromJson(jsonValue, options) {
|
|
3154
|
-
return new
|
|
3113
|
+
return new BlueOnlineConfig().fromJson(jsonValue, options);
|
|
3155
3114
|
}
|
|
3156
3115
|
static fromJsonString(jsonString, options) {
|
|
3157
|
-
return new
|
|
3116
|
+
return new BlueOnlineConfig().fromJsonString(jsonString, options);
|
|
3158
3117
|
}
|
|
3159
3118
|
static equals(a, b) {
|
|
3160
|
-
return protobuf.proto2.util.equals(
|
|
3119
|
+
return protobuf.proto2.util.equals(BlueOnlineConfig, a, b);
|
|
3161
3120
|
}
|
|
3162
3121
|
}
|
|
3163
|
-
|
|
3164
|
-
|
|
3165
|
-
|
|
3166
|
-
{ no: 1, name: "
|
|
3167
|
-
{ no: 2, name: "
|
|
3168
|
-
{ no: 3, name: "
|
|
3122
|
+
BlueOnlineConfig.runtime = protobuf.proto2;
|
|
3123
|
+
BlueOnlineConfig.typeName = "BlueOnlineConfig";
|
|
3124
|
+
BlueOnlineConfig.fields = protobuf.proto2.util.newFieldList(() => [
|
|
3125
|
+
{ no: 1, name: "connectSchedules", kind: "message", T: BlueLocalTimeSchedule, repeated: true },
|
|
3126
|
+
{ no: 2, name: "wifiSSID", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3127
|
+
{ no: 3, name: "wifiPassword", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3128
|
+
{ no: 4, name: "timeoutSec", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 30 },
|
|
3169
3129
|
]);
|
|
3170
3130
|
/**
|
|
3171
|
-
* @generated from message
|
|
3131
|
+
* @generated from message BlueAccessConfigGroup
|
|
3172
3132
|
*/
|
|
3173
|
-
class
|
|
3133
|
+
class BlueAccessConfigGroup extends protobuf.Message {
|
|
3174
3134
|
constructor(data) {
|
|
3175
3135
|
super();
|
|
3136
|
+
/**
|
|
3137
|
+
* @generated from field: repeated BlueLocalTimeSchedule schedules = 2;
|
|
3138
|
+
*/
|
|
3139
|
+
this.schedules = [];
|
|
3176
3140
|
protobuf.proto2.util.initPartial(data, this);
|
|
3177
3141
|
}
|
|
3178
3142
|
static fromBinary(bytes, options) {
|
|
3179
|
-
return new
|
|
3143
|
+
return new BlueAccessConfigGroup().fromBinary(bytes, options);
|
|
3180
3144
|
}
|
|
3181
3145
|
static fromJson(jsonValue, options) {
|
|
3182
|
-
return new
|
|
3146
|
+
return new BlueAccessConfigGroup().fromJson(jsonValue, options);
|
|
3183
3147
|
}
|
|
3184
3148
|
static fromJsonString(jsonString, options) {
|
|
3185
|
-
return new
|
|
3149
|
+
return new BlueAccessConfigGroup().fromJsonString(jsonString, options);
|
|
3186
3150
|
}
|
|
3187
3151
|
static equals(a, b) {
|
|
3188
|
-
return protobuf.proto2.util.equals(
|
|
3152
|
+
return protobuf.proto2.util.equals(BlueAccessConfigGroup, a, b);
|
|
3189
3153
|
}
|
|
3190
3154
|
}
|
|
3191
|
-
|
|
3192
|
-
|
|
3193
|
-
|
|
3194
|
-
{ no: 1, name: "
|
|
3155
|
+
BlueAccessConfigGroup.runtime = protobuf.proto2;
|
|
3156
|
+
BlueAccessConfigGroup.typeName = "BlueAccessConfigGroup";
|
|
3157
|
+
BlueAccessConfigGroup.fields = protobuf.proto2.util.newFieldList(() => [
|
|
3158
|
+
{ no: 1, name: "groupId", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
3159
|
+
{ no: 2, name: "schedules", kind: "message", T: BlueLocalTimeSchedule, repeated: true },
|
|
3195
3160
|
]);
|
|
3196
3161
|
/**
|
|
3197
|
-
* @generated from message
|
|
3162
|
+
* @generated from message BlueAccessConfig
|
|
3198
3163
|
*/
|
|
3199
|
-
class
|
|
3164
|
+
class BlueAccessConfig extends protobuf.Message {
|
|
3200
3165
|
constructor(data) {
|
|
3201
3166
|
super();
|
|
3202
3167
|
/**
|
|
3203
|
-
*
|
|
3168
|
+
* The access groups this device is part of
|
|
3169
|
+
*
|
|
3170
|
+
* @generated from field: repeated BlueAccessConfigGroup groups = 3;
|
|
3204
3171
|
*/
|
|
3205
|
-
this.
|
|
3172
|
+
this.groups = [];
|
|
3206
3173
|
protobuf.proto2.util.initPartial(data, this);
|
|
3207
3174
|
}
|
|
3208
3175
|
static fromBinary(bytes, options) {
|
|
3209
|
-
return new
|
|
3176
|
+
return new BlueAccessConfig().fromBinary(bytes, options);
|
|
3210
3177
|
}
|
|
3211
3178
|
static fromJson(jsonValue, options) {
|
|
3212
|
-
return new
|
|
3179
|
+
return new BlueAccessConfig().fromJson(jsonValue, options);
|
|
3213
3180
|
}
|
|
3214
3181
|
static fromJsonString(jsonString, options) {
|
|
3215
|
-
return new
|
|
3182
|
+
return new BlueAccessConfig().fromJsonString(jsonString, options);
|
|
3216
3183
|
}
|
|
3217
3184
|
static equals(a, b) {
|
|
3218
|
-
return protobuf.proto2.util.equals(
|
|
3185
|
+
return protobuf.proto2.util.equals(BlueAccessConfig, a, b);
|
|
3219
3186
|
}
|
|
3220
3187
|
}
|
|
3221
|
-
|
|
3222
|
-
|
|
3223
|
-
|
|
3224
|
-
{ no: 1, name: "
|
|
3225
|
-
{ no: 2, name: "
|
|
3226
|
-
{ no: 3, name: "
|
|
3227
|
-
{ no: 4, name: "manufacturerInfo", kind: "message", T: BlueBleManufacturerInfo, opt: true },
|
|
3228
|
-
{ no: 5, name: "bluetooth", kind: "message", T: BlueDeviceDetailsBluetooth, oneof: "details" },
|
|
3229
|
-
{ no: 6, name: "uwb", kind: "message", T: BlueDeviceDetailsUWB, oneof: "details" },
|
|
3188
|
+
BlueAccessConfig.runtime = protobuf.proto2;
|
|
3189
|
+
BlueAccessConfig.typeName = "BlueAccessConfig";
|
|
3190
|
+
BlueAccessConfig.fields = protobuf.proto2.util.newFieldList(() => [
|
|
3191
|
+
{ no: 1, name: "id", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 1 },
|
|
3192
|
+
{ no: 2, name: "siteId", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 1 },
|
|
3193
|
+
{ no: 3, name: "groups", kind: "message", T: BlueAccessConfigGroup, repeated: true },
|
|
3230
3194
|
]);
|
|
3231
3195
|
/**
|
|
3232
|
-
*
|
|
3196
|
+
*
|
|
3197
|
+
* -- Oss SecureId --
|
|
3198
|
+
*
|
|
3199
|
+
*
|
|
3200
|
+
* @generated from message BlueOssConfig
|
|
3233
3201
|
*/
|
|
3234
|
-
class
|
|
3202
|
+
class BlueOssConfig extends protobuf.Message {
|
|
3235
3203
|
constructor(data) {
|
|
3236
3204
|
super();
|
|
3237
3205
|
protobuf.proto2.util.initPartial(data, this);
|
|
3238
3206
|
}
|
|
3239
3207
|
static fromBinary(bytes, options) {
|
|
3240
|
-
return new
|
|
3208
|
+
return new BlueOssConfig().fromBinary(bytes, options);
|
|
3241
3209
|
}
|
|
3242
3210
|
static fromJson(jsonValue, options) {
|
|
3243
|
-
return new
|
|
3211
|
+
return new BlueOssConfig().fromJson(jsonValue, options);
|
|
3244
3212
|
}
|
|
3245
3213
|
static fromJsonString(jsonString, options) {
|
|
3246
|
-
return new
|
|
3214
|
+
return new BlueOssConfig().fromJsonString(jsonString, options);
|
|
3247
3215
|
}
|
|
3248
3216
|
static equals(a, b) {
|
|
3249
|
-
return protobuf.proto2.util.equals(
|
|
3217
|
+
return protobuf.proto2.util.equals(BlueOssConfig, a, b);
|
|
3250
3218
|
}
|
|
3251
3219
|
}
|
|
3252
|
-
|
|
3253
|
-
|
|
3254
|
-
|
|
3255
|
-
{ no: 1, name: "
|
|
3256
|
-
{ no: 2, name: "
|
|
3257
|
-
{ no: 3, name: "
|
|
3258
|
-
{ no: 4, name: "
|
|
3259
|
-
{ no: 5, name: "
|
|
3260
|
-
{ no: 6, name: "
|
|
3261
|
-
{ no: 7, name: "
|
|
3262
|
-
{ no: 8, name: "
|
|
3263
|
-
{ no: 9, name: "validity", kind: "message", T: BlueLocalTimestamp, opt: true },
|
|
3264
|
-
{ no: 10, name: "privateKey", kind: "scalar", T: 12 /* ScalarType.BYTES */, opt: true },
|
|
3265
|
-
{ no: 11, name: "receiverName", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
3266
|
-
{ no: 12, name: "organisation", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3267
|
-
{ no: 13, name: "organisationName", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
3220
|
+
BlueOssConfig.runtime = protobuf.proto2;
|
|
3221
|
+
BlueOssConfig.typeName = "BlueOssConfig";
|
|
3222
|
+
BlueOssConfig.fields = protobuf.proto2.util.newFieldList(() => [
|
|
3223
|
+
{ no: 1, name: "sidMifareAesKey", kind: "scalar", T: 12 /* ScalarType.BYTES */, default: new Uint8Array([0xFF, 0xEE, 0xDD, 0xCC, 0xBB, 0xAA, 0x99, 0x88, 0x77, 0x66, 0x55, 0x44, 0x33, 0x11, 0x00]) },
|
|
3224
|
+
{ no: 2, name: "sidMifareAid", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 16076801 },
|
|
3225
|
+
{ no: 3, name: "soUpdater", kind: "scalar", T: 8 /* ScalarType.BOOL */, default: false },
|
|
3226
|
+
{ no: 4, name: "soPushEvents", kind: "scalar", T: 8 /* ScalarType.BOOL */, default: false },
|
|
3227
|
+
{ no: 5, name: "soWritePendingEvents", kind: "scalar", T: 8 /* ScalarType.BOOL */, default: true },
|
|
3228
|
+
{ no: 6, name: "soUpdateFromBlacklist", kind: "scalar", T: 8 /* ScalarType.BOOL */, default: true },
|
|
3229
|
+
{ no: 7, name: "soMifareAesKey", kind: "scalar", T: 12 /* ScalarType.BYTES */, default: new Uint8Array([0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1A, 0x1B, 0x1C, 0x1D, 0x1E, 0x1F]) },
|
|
3230
|
+
{ no: 8, name: "soMifareAid", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 16076800 },
|
|
3268
3231
|
]);
|
|
3269
3232
|
/**
|
|
3270
|
-
* @generated from message
|
|
3233
|
+
* @generated from message BlueSystemConfig
|
|
3271
3234
|
*/
|
|
3272
|
-
class
|
|
3235
|
+
class BlueSystemConfig extends protobuf.Message {
|
|
3273
3236
|
constructor(data) {
|
|
3274
3237
|
super();
|
|
3275
|
-
/**
|
|
3276
|
-
* @generated from field: repeated BlueAccessCredential credentials = 1;
|
|
3277
|
-
*/
|
|
3278
|
-
this.credentials = [];
|
|
3279
3238
|
protobuf.proto2.util.initPartial(data, this);
|
|
3280
3239
|
}
|
|
3281
3240
|
static fromBinary(bytes, options) {
|
|
3282
|
-
return new
|
|
3241
|
+
return new BlueSystemConfig().fromBinary(bytes, options);
|
|
3283
3242
|
}
|
|
3284
3243
|
static fromJson(jsonValue, options) {
|
|
3285
|
-
return new
|
|
3244
|
+
return new BlueSystemConfig().fromJson(jsonValue, options);
|
|
3286
3245
|
}
|
|
3287
3246
|
static fromJsonString(jsonString, options) {
|
|
3288
|
-
return new
|
|
3247
|
+
return new BlueSystemConfig().fromJsonString(jsonString, options);
|
|
3289
3248
|
}
|
|
3290
3249
|
static equals(a, b) {
|
|
3291
|
-
return protobuf.proto2.util.equals(
|
|
3250
|
+
return protobuf.proto2.util.equals(BlueSystemConfig, a, b);
|
|
3292
3251
|
}
|
|
3293
3252
|
}
|
|
3294
|
-
|
|
3295
|
-
|
|
3296
|
-
|
|
3297
|
-
{ no: 1, name: "
|
|
3253
|
+
BlueSystemConfig.runtime = protobuf.proto2;
|
|
3254
|
+
BlueSystemConfig.typeName = "BlueSystemConfig";
|
|
3255
|
+
BlueSystemConfig.fields = protobuf.proto2.util.newFieldList(() => [
|
|
3256
|
+
{ no: 1, name: "configId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3257
|
+
{ no: 2, name: "base", kind: "message", T: BlueBaseConfig },
|
|
3258
|
+
{ no: 3, name: "ble", kind: "message", T: BlueBleConfig },
|
|
3259
|
+
{ no: 4, name: "online", kind: "message", T: BlueOnlineConfig },
|
|
3260
|
+
{ no: 5, name: "access", kind: "message", T: BlueAccessConfig },
|
|
3261
|
+
{ no: 6, name: "oss", kind: "message", T: BlueOssConfig },
|
|
3262
|
+
{ no: 7, name: "lock", kind: "message", T: BlueLockConfig, opt: true },
|
|
3298
3263
|
]);
|
|
3299
3264
|
/**
|
|
3300
|
-
* @generated from message
|
|
3265
|
+
* @generated from message BlueSystemTimeUnix
|
|
3301
3266
|
*/
|
|
3302
|
-
class
|
|
3267
|
+
class BlueSystemTimeUnix extends protobuf.Message {
|
|
3303
3268
|
constructor(data) {
|
|
3304
3269
|
super();
|
|
3305
3270
|
protobuf.proto2.util.initPartial(data, this);
|
|
3306
3271
|
}
|
|
3307
3272
|
static fromBinary(bytes, options) {
|
|
3308
|
-
return new
|
|
3273
|
+
return new BlueSystemTimeUnix().fromBinary(bytes, options);
|
|
3309
3274
|
}
|
|
3310
3275
|
static fromJson(jsonValue, options) {
|
|
3311
|
-
return new
|
|
3276
|
+
return new BlueSystemTimeUnix().fromJson(jsonValue, options);
|
|
3312
3277
|
}
|
|
3313
3278
|
static fromJsonString(jsonString, options) {
|
|
3314
|
-
return new
|
|
3279
|
+
return new BlueSystemTimeUnix().fromJsonString(jsonString, options);
|
|
3315
3280
|
}
|
|
3316
3281
|
static equals(a, b) {
|
|
3317
|
-
return protobuf.proto2.util.equals(
|
|
3282
|
+
return protobuf.proto2.util.equals(BlueSystemTimeUnix, a, b);
|
|
3318
3283
|
}
|
|
3319
3284
|
}
|
|
3320
|
-
|
|
3321
|
-
|
|
3322
|
-
|
|
3323
|
-
{ no: 1, name: "
|
|
3324
|
-
{ no: 2, name: "objectName", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
3325
|
-
{ no: 3, name: "objectId", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
|
|
3285
|
+
BlueSystemTimeUnix.runtime = protobuf.proto2;
|
|
3286
|
+
BlueSystemTimeUnix.typeName = "BlueSystemTimeUnix";
|
|
3287
|
+
BlueSystemTimeUnix.fields = protobuf.proto2.util.newFieldList(() => [
|
|
3288
|
+
{ no: 1, name: "epoch", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
3326
3289
|
]);
|
|
3327
3290
|
/**
|
|
3328
|
-
* @generated from message
|
|
3291
|
+
* @generated from message BlueSystemUpdate
|
|
3329
3292
|
*/
|
|
3330
|
-
class
|
|
3293
|
+
class BlueSystemUpdate extends protobuf.Message {
|
|
3331
3294
|
constructor(data) {
|
|
3332
3295
|
super();
|
|
3333
|
-
/**
|
|
3334
|
-
* @generated from field: repeated BlueAccessDevice devices = 1;
|
|
3335
|
-
*/
|
|
3336
|
-
this.devices = [];
|
|
3337
3296
|
protobuf.proto2.util.initPartial(data, this);
|
|
3338
3297
|
}
|
|
3339
3298
|
static fromBinary(bytes, options) {
|
|
3340
|
-
return new
|
|
3299
|
+
return new BlueSystemUpdate().fromBinary(bytes, options);
|
|
3341
3300
|
}
|
|
3342
3301
|
static fromJson(jsonValue, options) {
|
|
3343
|
-
return new
|
|
3302
|
+
return new BlueSystemUpdate().fromJson(jsonValue, options);
|
|
3344
3303
|
}
|
|
3345
3304
|
static fromJsonString(jsonString, options) {
|
|
3346
|
-
return new
|
|
3305
|
+
return new BlueSystemUpdate().fromJsonString(jsonString, options);
|
|
3347
3306
|
}
|
|
3348
3307
|
static equals(a, b) {
|
|
3349
|
-
return protobuf.proto2.util.equals(
|
|
3308
|
+
return protobuf.proto2.util.equals(BlueSystemUpdate, a, b);
|
|
3350
3309
|
}
|
|
3351
3310
|
}
|
|
3352
|
-
|
|
3353
|
-
|
|
3354
|
-
|
|
3355
|
-
{ no: 1, name: "
|
|
3311
|
+
BlueSystemUpdate.runtime = protobuf.proto2;
|
|
3312
|
+
BlueSystemUpdate.typeName = "BlueSystemUpdate";
|
|
3313
|
+
BlueSystemUpdate.fields = protobuf.proto2.util.newFieldList(() => [
|
|
3314
|
+
{ no: 1, name: "config", kind: "message", T: BlueSystemConfig, opt: true },
|
|
3315
|
+
{ no: 2, name: "timeUnix", kind: "message", T: BlueSystemTimeUnix, opt: true },
|
|
3356
3316
|
]);
|
|
3357
3317
|
/**
|
|
3358
|
-
* @generated from message
|
|
3318
|
+
* @generated from message BlueSystemSettings
|
|
3359
3319
|
*/
|
|
3360
|
-
class
|
|
3320
|
+
class BlueSystemSettings extends protobuf.Message {
|
|
3361
3321
|
constructor(data) {
|
|
3362
3322
|
super();
|
|
3363
|
-
/**
|
|
3364
|
-
* @generated from field: repeated string deviceIds = 5;
|
|
3365
|
-
*/
|
|
3366
|
-
this.deviceIds = [];
|
|
3367
3323
|
protobuf.proto2.util.initPartial(data, this);
|
|
3368
3324
|
}
|
|
3369
3325
|
static fromBinary(bytes, options) {
|
|
3370
|
-
return new
|
|
3326
|
+
return new BlueSystemSettings().fromBinary(bytes, options);
|
|
3371
3327
|
}
|
|
3372
3328
|
static fromJson(jsonValue, options) {
|
|
3373
|
-
return new
|
|
3329
|
+
return new BlueSystemSettings().fromJson(jsonValue, options);
|
|
3374
3330
|
}
|
|
3375
3331
|
static fromJsonString(jsonString, options) {
|
|
3376
|
-
return new
|
|
3332
|
+
return new BlueSystemSettings().fromJsonString(jsonString, options);
|
|
3377
3333
|
}
|
|
3378
3334
|
static equals(a, b) {
|
|
3379
|
-
return protobuf.proto2.util.equals(
|
|
3335
|
+
return protobuf.proto2.util.equals(BlueSystemSettings, a, b);
|
|
3380
3336
|
}
|
|
3381
3337
|
}
|
|
3382
|
-
|
|
3383
|
-
|
|
3384
|
-
|
|
3385
|
-
{ no: 1, name: "
|
|
3386
|
-
{ no: 2, name: "
|
|
3387
|
-
{ no: 3, name: "
|
|
3388
|
-
{ no: 4, name: "
|
|
3389
|
-
{ no: 5, name: "
|
|
3338
|
+
BlueSystemSettings.runtime = protobuf.proto2;
|
|
3339
|
+
BlueSystemSettings.typeName = "BlueSystemSettings";
|
|
3340
|
+
BlueSystemSettings.fields = protobuf.proto2.util.newFieldList(() => [
|
|
3341
|
+
{ no: 1, name: "blacklistMaxEntriesCount", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 0 },
|
|
3342
|
+
{ no: 2, name: "blacklistEntriesCount", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 0 },
|
|
3343
|
+
{ no: 3, name: "eventLogMaxEntriesCount", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 0 },
|
|
3344
|
+
{ no: 4, name: "eventLogEntriesCount", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 0 },
|
|
3345
|
+
{ no: 5, name: "eventLogSequenceId", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 0 },
|
|
3346
|
+
{ no: 6, name: "eventLogIndex", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 0 },
|
|
3347
|
+
{ no: 7, name: "systemLogMaxEntriesCount", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 0 },
|
|
3348
|
+
{ no: 8, name: "systemLogEntriesCount", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 0 },
|
|
3349
|
+
{ no: 9, name: "systemLogSequenceId", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 0 },
|
|
3350
|
+
{ no: 10, name: "systemLogIndex", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 0 },
|
|
3351
|
+
{ no: 11, name: "timeWasSet", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
3352
|
+
{ no: 12, name: "isBatteryLow", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
3390
3353
|
]);
|
|
3391
3354
|
/**
|
|
3392
|
-
* @generated from message
|
|
3355
|
+
* @generated from message BlueSystemProvisioning
|
|
3393
3356
|
*/
|
|
3394
|
-
class
|
|
3357
|
+
class BlueSystemProvisioning extends protobuf.Message {
|
|
3395
3358
|
constructor(data) {
|
|
3396
3359
|
super();
|
|
3397
|
-
/**
|
|
3398
|
-
* @generated from field: repeated BlueAccessObject objects = 1;
|
|
3399
|
-
*/
|
|
3400
|
-
this.objects = [];
|
|
3401
3360
|
protobuf.proto2.util.initPartial(data, this);
|
|
3402
3361
|
}
|
|
3403
3362
|
static fromBinary(bytes, options) {
|
|
3404
|
-
return new
|
|
3363
|
+
return new BlueSystemProvisioning().fromBinary(bytes, options);
|
|
3405
3364
|
}
|
|
3406
3365
|
static fromJson(jsonValue, options) {
|
|
3407
|
-
return new
|
|
3366
|
+
return new BlueSystemProvisioning().fromJson(jsonValue, options);
|
|
3408
3367
|
}
|
|
3409
3368
|
static fromJsonString(jsonString, options) {
|
|
3410
|
-
return new
|
|
3369
|
+
return new BlueSystemProvisioning().fromJsonString(jsonString, options);
|
|
3411
3370
|
}
|
|
3412
3371
|
static equals(a, b) {
|
|
3413
|
-
return protobuf.proto2.util.equals(
|
|
3372
|
+
return protobuf.proto2.util.equals(BlueSystemProvisioning, a, b);
|
|
3414
3373
|
}
|
|
3415
3374
|
}
|
|
3416
|
-
|
|
3417
|
-
|
|
3418
|
-
|
|
3419
|
-
{ no: 1, name: "
|
|
3375
|
+
BlueSystemProvisioning.runtime = protobuf.proto2;
|
|
3376
|
+
BlueSystemProvisioning.typeName = "BlueSystemProvisioning";
|
|
3377
|
+
BlueSystemProvisioning.fields = protobuf.proto2.util.newFieldList(() => [
|
|
3378
|
+
{ no: 1, name: "hardwareType", kind: "enum", T: protobuf.proto2.getEnumType(exports.BlueHardwareType), default: exports.BlueHardwareType.TestHardware },
|
|
3379
|
+
{ no: 2, name: "deviceId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3380
|
+
{ no: 3, name: "serialNumber", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "00000000000000000000" },
|
|
3381
|
+
{ no: 4, name: "terminalPrivateKey", kind: "scalar", T: 12 /* ScalarType.BYTES */ },
|
|
3382
|
+
{ no: 5, name: "signaturePublicKey", kind: "scalar", T: 12 /* ScalarType.BYTES */ },
|
|
3420
3383
|
]);
|
|
3421
3384
|
/**
|
|
3422
|
-
* @generated from message
|
|
3385
|
+
* @generated from message BlueSystemStatus
|
|
3423
3386
|
*/
|
|
3424
|
-
class
|
|
3387
|
+
class BlueSystemStatus extends protobuf.Message {
|
|
3425
3388
|
constructor(data) {
|
|
3426
3389
|
super();
|
|
3427
3390
|
protobuf.proto2.util.initPartial(data, this);
|
|
3428
3391
|
}
|
|
3429
3392
|
static fromBinary(bytes, options) {
|
|
3430
|
-
return new
|
|
3393
|
+
return new BlueSystemStatus().fromBinary(bytes, options);
|
|
3431
3394
|
}
|
|
3432
3395
|
static fromJson(jsonValue, options) {
|
|
3433
|
-
return new
|
|
3396
|
+
return new BlueSystemStatus().fromJson(jsonValue, options);
|
|
3434
3397
|
}
|
|
3435
3398
|
static fromJsonString(jsonString, options) {
|
|
3436
|
-
return new
|
|
3399
|
+
return new BlueSystemStatus().fromJsonString(jsonString, options);
|
|
3437
3400
|
}
|
|
3438
3401
|
static equals(a, b) {
|
|
3439
|
-
return protobuf.proto2.util.equals(
|
|
3402
|
+
return protobuf.proto2.util.equals(BlueSystemStatus, a, b);
|
|
3440
3403
|
}
|
|
3441
3404
|
}
|
|
3442
|
-
|
|
3443
|
-
|
|
3444
|
-
|
|
3445
|
-
{ no: 1, name: "
|
|
3446
|
-
{ no: 2, name: "
|
|
3447
|
-
{ no: 3, name: "
|
|
3405
|
+
BlueSystemStatus.runtime = protobuf.proto2;
|
|
3406
|
+
BlueSystemStatus.typeName = "BlueSystemStatus";
|
|
3407
|
+
BlueSystemStatus.fields = protobuf.proto2.util.newFieldList(() => [
|
|
3408
|
+
{ no: 1, name: "configId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3409
|
+
{ no: 2, name: "deviceId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3410
|
+
{ no: 3, name: "serialNumber", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3411
|
+
{ no: 4, name: "hardwareType", kind: "enum", T: protobuf.proto2.getEnumType(exports.BlueHardwareType) },
|
|
3412
|
+
{ no: 5, name: "batteryLevel", kind: "enum", T: protobuf.proto2.getEnumType(exports.BlueBatteryLevel) },
|
|
3413
|
+
{ no: 6, name: "applicationVersion", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
3414
|
+
{ no: 7, name: "localTime", kind: "message", T: BlueLocalTimestamp },
|
|
3415
|
+
{ no: 8, name: "settings", kind: "message", T: BlueSystemSettings },
|
|
3416
|
+
{ no: 9, name: "lock", kind: "message", T: BlueLockStatus, opt: true },
|
|
3417
|
+
{ no: 10, name: "applicationVersionTest", kind: "scalar", T: 13 /* ScalarType.UINT32 */, opt: true },
|
|
3448
3418
|
]);
|
|
3449
3419
|
/**
|
|
3450
|
-
* @generated from message
|
|
3420
|
+
* @generated from message BlueSystemLogQuery
|
|
3451
3421
|
*/
|
|
3452
|
-
class
|
|
3422
|
+
class BlueSystemLogQuery extends protobuf.Message {
|
|
3453
3423
|
constructor(data) {
|
|
3454
3424
|
super();
|
|
3455
3425
|
/**
|
|
3456
|
-
* @generated from
|
|
3426
|
+
* @generated from oneof BlueSystemLogQuery.start
|
|
3457
3427
|
*/
|
|
3458
|
-
this.
|
|
3428
|
+
this.start = { case: undefined };
|
|
3459
3429
|
protobuf.proto2.util.initPartial(data, this);
|
|
3460
3430
|
}
|
|
3461
3431
|
static fromBinary(bytes, options) {
|
|
3462
|
-
return new
|
|
3432
|
+
return new BlueSystemLogQuery().fromBinary(bytes, options);
|
|
3463
3433
|
}
|
|
3464
3434
|
static fromJson(jsonValue, options) {
|
|
3465
|
-
return new
|
|
3435
|
+
return new BlueSystemLogQuery().fromJson(jsonValue, options);
|
|
3466
3436
|
}
|
|
3467
3437
|
static fromJsonString(jsonString, options) {
|
|
3468
|
-
return new
|
|
3438
|
+
return new BlueSystemLogQuery().fromJsonString(jsonString, options);
|
|
3469
3439
|
}
|
|
3470
3440
|
static equals(a, b) {
|
|
3471
|
-
return protobuf.proto2.util.equals(
|
|
3441
|
+
return protobuf.proto2.util.equals(BlueSystemLogQuery, a, b);
|
|
3472
3442
|
}
|
|
3473
3443
|
}
|
|
3474
|
-
|
|
3475
|
-
|
|
3476
|
-
|
|
3477
|
-
{ no: 1, name: "
|
|
3444
|
+
BlueSystemLogQuery.runtime = protobuf.proto2;
|
|
3445
|
+
BlueSystemLogQuery.typeName = "BlueSystemLogQuery";
|
|
3446
|
+
BlueSystemLogQuery.fields = protobuf.proto2.util.newFieldList(() => [
|
|
3447
|
+
{ no: 1, name: "maxCount", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
3448
|
+
{ no: 2, name: "sequenceId", kind: "scalar", T: 13 /* ScalarType.UINT32 */, oneof: "start" },
|
|
3449
|
+
{ no: 3, name: "fromHead", kind: "scalar", T: 8 /* ScalarType.BOOL */, oneof: "start" },
|
|
3478
3450
|
]);
|
|
3479
3451
|
/**
|
|
3480
|
-
* @generated from message
|
|
3452
|
+
* @generated from message BlueSystemLogEntry
|
|
3481
3453
|
*/
|
|
3482
|
-
class
|
|
3454
|
+
class BlueSystemLogEntry extends protobuf.Message {
|
|
3483
3455
|
constructor(data) {
|
|
3484
3456
|
super();
|
|
3485
3457
|
protobuf.proto2.util.initPartial(data, this);
|
|
3486
3458
|
}
|
|
3487
3459
|
static fromBinary(bytes, options) {
|
|
3488
|
-
return new
|
|
3460
|
+
return new BlueSystemLogEntry().fromBinary(bytes, options);
|
|
3489
3461
|
}
|
|
3490
3462
|
static fromJson(jsonValue, options) {
|
|
3491
|
-
return new
|
|
3463
|
+
return new BlueSystemLogEntry().fromJson(jsonValue, options);
|
|
3492
3464
|
}
|
|
3493
3465
|
static fromJsonString(jsonString, options) {
|
|
3494
|
-
return new
|
|
3466
|
+
return new BlueSystemLogEntry().fromJsonString(jsonString, options);
|
|
3495
3467
|
}
|
|
3496
3468
|
static equals(a, b) {
|
|
3497
|
-
return protobuf.proto2.util.equals(
|
|
3469
|
+
return protobuf.proto2.util.equals(BlueSystemLogEntry, a, b);
|
|
3498
3470
|
}
|
|
3499
3471
|
}
|
|
3500
|
-
|
|
3501
|
-
|
|
3502
|
-
|
|
3503
|
-
{ no: 1, name: "
|
|
3504
|
-
{ no: 2, name: "
|
|
3505
|
-
{ no: 3, name: "
|
|
3472
|
+
BlueSystemLogEntry.runtime = protobuf.proto2;
|
|
3473
|
+
BlueSystemLogEntry.typeName = "BlueSystemLogEntry";
|
|
3474
|
+
BlueSystemLogEntry.fields = protobuf.proto2.util.newFieldList(() => [
|
|
3475
|
+
{ no: 1, name: "sequenceId", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
3476
|
+
{ no: 2, name: "time", kind: "message", T: BlueLocalTimestamp },
|
|
3477
|
+
{ no: 3, name: "severity", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
3478
|
+
{ no: 4, name: "line", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
3479
|
+
{ no: 5, name: "file", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3480
|
+
{ no: 6, name: "message", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3506
3481
|
]);
|
|
3507
3482
|
/**
|
|
3508
|
-
* @generated from message
|
|
3483
|
+
* @generated from message BlueSystemLogResult
|
|
3509
3484
|
*/
|
|
3510
|
-
class
|
|
3485
|
+
class BlueSystemLogResult extends protobuf.Message {
|
|
3511
3486
|
constructor(data) {
|
|
3512
3487
|
super();
|
|
3513
3488
|
/**
|
|
3514
|
-
* @generated from field: repeated
|
|
3489
|
+
* @generated from field: repeated BlueSystemLogEntry entries = 1;
|
|
3515
3490
|
*/
|
|
3516
|
-
this.
|
|
3491
|
+
this.entries = [];
|
|
3517
3492
|
protobuf.proto2.util.initPartial(data, this);
|
|
3518
3493
|
}
|
|
3519
3494
|
static fromBinary(bytes, options) {
|
|
3520
|
-
return new
|
|
3495
|
+
return new BlueSystemLogResult().fromBinary(bytes, options);
|
|
3521
3496
|
}
|
|
3522
3497
|
static fromJson(jsonValue, options) {
|
|
3523
|
-
return new
|
|
3498
|
+
return new BlueSystemLogResult().fromJson(jsonValue, options);
|
|
3524
3499
|
}
|
|
3525
3500
|
static fromJsonString(jsonString, options) {
|
|
3526
|
-
return new
|
|
3501
|
+
return new BlueSystemLogResult().fromJsonString(jsonString, options);
|
|
3527
3502
|
}
|
|
3528
3503
|
static equals(a, b) {
|
|
3529
|
-
return protobuf.proto2.util.equals(
|
|
3504
|
+
return protobuf.proto2.util.equals(BlueSystemLogResult, a, b);
|
|
3530
3505
|
}
|
|
3531
3506
|
}
|
|
3532
|
-
|
|
3533
|
-
|
|
3534
|
-
|
|
3535
|
-
{ no: 1, name: "
|
|
3507
|
+
BlueSystemLogResult.runtime = protobuf.proto2;
|
|
3508
|
+
BlueSystemLogResult.typeName = "BlueSystemLogResult";
|
|
3509
|
+
BlueSystemLogResult.fields = protobuf.proto2.util.newFieldList(() => [
|
|
3510
|
+
{ no: 1, name: "entries", kind: "message", T: BlueSystemLogEntry, repeated: true },
|
|
3536
3511
|
]);
|
|
3537
|
-
|
|
3538
|
-
var BlueSDK = /*#__PURE__*/Object.freeze({
|
|
3539
|
-
__proto__: null,
|
|
3540
|
-
get BlueDeviceType () { return exports.BlueDeviceType; },
|
|
3541
|
-
get BlueRefreshOssSoCredentialStatus () { return exports.BlueRefreshOssSoCredentialStatus; },
|
|
3542
|
-
BlueI18n: BlueI18n,
|
|
3543
|
-
BlueDeviceDetailsBluetooth: BlueDeviceDetailsBluetooth,
|
|
3544
|
-
BlueDeviceDetailsUWB: BlueDeviceDetailsUWB,
|
|
3545
|
-
BlueDeviceInfo: BlueDeviceInfo,
|
|
3546
|
-
BlueAccessCredential: BlueAccessCredential,
|
|
3547
|
-
BlueAccessCredentialList: BlueAccessCredentialList,
|
|
3548
|
-
BlueAccessDevice: BlueAccessDevice,
|
|
3549
|
-
BlueAccessDeviceList: BlueAccessDeviceList,
|
|
3550
|
-
BlueAccessObject: BlueAccessObject,
|
|
3551
|
-
BlueAccessObjectList: BlueAccessObjectList,
|
|
3552
|
-
BlueRefreshOssSoCredential: BlueRefreshOssSoCredential,
|
|
3553
|
-
BlueRefreshOssSoCredentials: BlueRefreshOssSoCredentials,
|
|
3554
|
-
BlueSynchronizeAccessCredential: BlueSynchronizeAccessCredential,
|
|
3555
|
-
BlueSynchronizeAccessCredentials: BlueSynchronizeAccessCredentials
|
|
3556
|
-
});
|
|
3557
|
-
|
|
3558
|
-
// @generated by protoc-gen-es v1.4.0 with parameter "target=ts"
|
|
3559
3512
|
/**
|
|
3560
|
-
* @generated from message
|
|
3513
|
+
* @generated from message BlueEventLogQuery
|
|
3561
3514
|
*/
|
|
3562
|
-
class
|
|
3515
|
+
class BlueEventLogQuery extends protobuf.Message {
|
|
3563
3516
|
constructor(data) {
|
|
3564
3517
|
super();
|
|
3518
|
+
/**
|
|
3519
|
+
* @generated from oneof BlueEventLogQuery.start
|
|
3520
|
+
*/
|
|
3521
|
+
this.start = { case: undefined };
|
|
3565
3522
|
protobuf.proto2.util.initPartial(data, this);
|
|
3566
3523
|
}
|
|
3567
3524
|
static fromBinary(bytes, options) {
|
|
3568
|
-
return new
|
|
3525
|
+
return new BlueEventLogQuery().fromBinary(bytes, options);
|
|
3569
3526
|
}
|
|
3570
3527
|
static fromJson(jsonValue, options) {
|
|
3571
|
-
return new
|
|
3528
|
+
return new BlueEventLogQuery().fromJson(jsonValue, options);
|
|
3572
3529
|
}
|
|
3573
3530
|
static fromJsonString(jsonString, options) {
|
|
3574
|
-
return new
|
|
3531
|
+
return new BlueEventLogQuery().fromJsonString(jsonString, options);
|
|
3575
3532
|
}
|
|
3576
3533
|
static equals(a, b) {
|
|
3577
|
-
return protobuf.proto2.util.equals(
|
|
3534
|
+
return protobuf.proto2.util.equals(BlueEventLogQuery, a, b);
|
|
3578
3535
|
}
|
|
3579
3536
|
}
|
|
3580
|
-
|
|
3581
|
-
|
|
3582
|
-
|
|
3583
|
-
{ no: 1, name: "
|
|
3584
|
-
{ no: 2, name: "
|
|
3585
|
-
{ no: 3, name: "
|
|
3586
|
-
{ no: 4, name: "autoCheckSystemStatus", kind: "scalar", T: 8 /* ScalarType.BOOL */, default: false },
|
|
3537
|
+
BlueEventLogQuery.runtime = protobuf.proto2;
|
|
3538
|
+
BlueEventLogQuery.typeName = "BlueEventLogQuery";
|
|
3539
|
+
BlueEventLogQuery.fields = protobuf.proto2.util.newFieldList(() => [
|
|
3540
|
+
{ no: 1, name: "maxCount", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
3541
|
+
{ no: 2, name: "sequenceId", kind: "scalar", T: 13 /* ScalarType.UINT32 */, oneof: "start" },
|
|
3542
|
+
{ no: 3, name: "fromHead", kind: "scalar", T: 8 /* ScalarType.BOOL */, oneof: "start" },
|
|
3587
3543
|
]);
|
|
3588
3544
|
/**
|
|
3589
|
-
* @generated from message
|
|
3545
|
+
* @generated from message BlueEventLogResult
|
|
3590
3546
|
*/
|
|
3591
|
-
class
|
|
3547
|
+
class BlueEventLogResult extends protobuf.Message {
|
|
3592
3548
|
constructor(data) {
|
|
3593
3549
|
super();
|
|
3594
3550
|
/**
|
|
3595
|
-
*
|
|
3596
|
-
* set then ble is always on when enabled
|
|
3597
|
-
*
|
|
3598
|
-
* @generated from field: repeated BlueLocalTimeSchedule advertisingSchedules = 2;
|
|
3599
|
-
*/
|
|
3600
|
-
this.advertisingSchedules = [];
|
|
3601
|
-
/**
|
|
3602
|
-
* Index of advertising schedules (starting at zero) where it should
|
|
3603
|
-
* use the max power level available for broader reach
|
|
3604
|
-
*
|
|
3605
|
-
* @generated from field: repeated uint32 maxPowerAdvertisingSchedulesIndices = 3;
|
|
3551
|
+
* @generated from field: repeated BlueEvent events = 1;
|
|
3606
3552
|
*/
|
|
3607
|
-
this.
|
|
3553
|
+
this.events = [];
|
|
3608
3554
|
protobuf.proto2.util.initPartial(data, this);
|
|
3609
3555
|
}
|
|
3610
3556
|
static fromBinary(bytes, options) {
|
|
3611
|
-
return new
|
|
3557
|
+
return new BlueEventLogResult().fromBinary(bytes, options);
|
|
3612
3558
|
}
|
|
3613
3559
|
static fromJson(jsonValue, options) {
|
|
3614
|
-
return new
|
|
3560
|
+
return new BlueEventLogResult().fromJson(jsonValue, options);
|
|
3615
3561
|
}
|
|
3616
3562
|
static fromJsonString(jsonString, options) {
|
|
3617
|
-
return new
|
|
3563
|
+
return new BlueEventLogResult().fromJsonString(jsonString, options);
|
|
3618
3564
|
}
|
|
3619
3565
|
static equals(a, b) {
|
|
3620
|
-
return protobuf.proto2.util.equals(
|
|
3566
|
+
return protobuf.proto2.util.equals(BlueEventLogResult, a, b);
|
|
3621
3567
|
}
|
|
3622
3568
|
}
|
|
3623
|
-
|
|
3624
|
-
|
|
3625
|
-
|
|
3626
|
-
{ no: 1, name: "
|
|
3627
|
-
{ no: 2, name: "advertisingSchedules", kind: "message", T: BlueLocalTimeSchedule, repeated: true },
|
|
3628
|
-
{ no: 3, name: "maxPowerAdvertisingSchedulesIndices", kind: "scalar", T: 13 /* ScalarType.UINT32 */, repeated: true },
|
|
3629
|
-
{ no: 4, name: "advertisingIntervalMs", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 500 },
|
|
3630
|
-
{ no: 5, name: "maxConnectionTimeoutMs", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 3000 },
|
|
3631
|
-
{ no: 6, name: "txPowerLevel", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 3 },
|
|
3632
|
-
{ no: 7, name: "advertisedTxPower1Meter", kind: "scalar", T: 5 /* ScalarType.INT32 */, default: -77 },
|
|
3633
|
-
{ no: 8, name: "isIBeaconAdvertisement", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
3569
|
+
BlueEventLogResult.runtime = protobuf.proto2;
|
|
3570
|
+
BlueEventLogResult.typeName = "BlueEventLogResult";
|
|
3571
|
+
BlueEventLogResult.fields = protobuf.proto2.util.newFieldList(() => [
|
|
3572
|
+
{ no: 1, name: "events", kind: "message", T: BlueEvent, repeated: true },
|
|
3634
3573
|
]);
|
|
3635
3574
|
/**
|
|
3636
|
-
* @generated from message
|
|
3575
|
+
* @generated from message BlueBlacklistEntries
|
|
3637
3576
|
*/
|
|
3638
|
-
class
|
|
3577
|
+
class BlueBlacklistEntries extends protobuf.Message {
|
|
3639
3578
|
constructor(data) {
|
|
3640
3579
|
super();
|
|
3641
3580
|
/**
|
|
3642
|
-
*
|
|
3643
|
-
* battery-powered devices with wifi or gsm module. If no schedule is set will
|
|
3644
|
-
* never go online. The end time is not used.
|
|
3645
|
-
*
|
|
3646
|
-
* @generated from field: repeated BlueLocalTimeSchedule connectSchedules = 1;
|
|
3581
|
+
* @generated from field: repeated BlueBlacklistEntry entries = 1;
|
|
3647
3582
|
*/
|
|
3648
|
-
this.
|
|
3583
|
+
this.entries = [];
|
|
3649
3584
|
protobuf.proto2.util.initPartial(data, this);
|
|
3650
3585
|
}
|
|
3651
3586
|
static fromBinary(bytes, options) {
|
|
3652
|
-
return new
|
|
3587
|
+
return new BlueBlacklistEntries().fromBinary(bytes, options);
|
|
3653
3588
|
}
|
|
3654
3589
|
static fromJson(jsonValue, options) {
|
|
3655
|
-
return new
|
|
3590
|
+
return new BlueBlacklistEntries().fromJson(jsonValue, options);
|
|
3656
3591
|
}
|
|
3657
3592
|
static fromJsonString(jsonString, options) {
|
|
3658
|
-
return new
|
|
3593
|
+
return new BlueBlacklistEntries().fromJsonString(jsonString, options);
|
|
3659
3594
|
}
|
|
3660
3595
|
static equals(a, b) {
|
|
3661
|
-
return protobuf.proto2.util.equals(
|
|
3596
|
+
return protobuf.proto2.util.equals(BlueBlacklistEntries, a, b);
|
|
3662
3597
|
}
|
|
3663
3598
|
}
|
|
3664
|
-
|
|
3665
|
-
|
|
3666
|
-
|
|
3667
|
-
{ no: 1, name: "
|
|
3668
|
-
{ no: 2, name: "wifiSSID", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3669
|
-
{ no: 3, name: "wifiPassword", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3670
|
-
{ no: 4, name: "timeoutSec", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 30 },
|
|
3599
|
+
BlueBlacklistEntries.runtime = protobuf.proto2;
|
|
3600
|
+
BlueBlacklistEntries.typeName = "BlueBlacklistEntries";
|
|
3601
|
+
BlueBlacklistEntries.fields = protobuf.proto2.util.newFieldList(() => [
|
|
3602
|
+
{ no: 1, name: "entries", kind: "message", T: BlueBlacklistEntry, repeated: true },
|
|
3671
3603
|
]);
|
|
3604
|
+
|
|
3605
|
+
var BlueSystem = /*#__PURE__*/Object.freeze({
|
|
3606
|
+
__proto__: null,
|
|
3607
|
+
BlueBaseConfig: BlueBaseConfig,
|
|
3608
|
+
BlueBleConfig: BlueBleConfig,
|
|
3609
|
+
BlueOnlineConfig: BlueOnlineConfig,
|
|
3610
|
+
BlueAccessConfigGroup: BlueAccessConfigGroup,
|
|
3611
|
+
BlueAccessConfig: BlueAccessConfig,
|
|
3612
|
+
BlueOssConfig: BlueOssConfig,
|
|
3613
|
+
BlueSystemConfig: BlueSystemConfig,
|
|
3614
|
+
BlueSystemTimeUnix: BlueSystemTimeUnix,
|
|
3615
|
+
BlueSystemUpdate: BlueSystemUpdate,
|
|
3616
|
+
BlueSystemSettings: BlueSystemSettings,
|
|
3617
|
+
BlueSystemProvisioning: BlueSystemProvisioning,
|
|
3618
|
+
BlueSystemStatus: BlueSystemStatus,
|
|
3619
|
+
BlueSystemLogQuery: BlueSystemLogQuery,
|
|
3620
|
+
BlueSystemLogEntry: BlueSystemLogEntry,
|
|
3621
|
+
BlueSystemLogResult: BlueSystemLogResult,
|
|
3622
|
+
BlueEventLogQuery: BlueEventLogQuery,
|
|
3623
|
+
BlueEventLogResult: BlueEventLogResult,
|
|
3624
|
+
BlueBlacklistEntries: BlueBlacklistEntries
|
|
3625
|
+
});
|
|
3626
|
+
|
|
3627
|
+
// @generated by protoc-gen-es v1.4.0 with parameter "target=ts"
|
|
3672
3628
|
/**
|
|
3673
|
-
* @generated from
|
|
3629
|
+
* @generated from enum BlueDeviceType
|
|
3674
3630
|
*/
|
|
3675
|
-
|
|
3631
|
+
exports.BlueDeviceType = void 0;
|
|
3632
|
+
(function (BlueDeviceType) {
|
|
3633
|
+
/**
|
|
3634
|
+
* @generated from enum value: BluetoothDevice = 1;
|
|
3635
|
+
*/
|
|
3636
|
+
BlueDeviceType[BlueDeviceType["BluetoothDevice"] = 1] = "BluetoothDevice";
|
|
3637
|
+
/**
|
|
3638
|
+
* @generated from enum value: UWBDevice = 2;
|
|
3639
|
+
*/
|
|
3640
|
+
BlueDeviceType[BlueDeviceType["UWBDevice"] = 2] = "UWBDevice";
|
|
3641
|
+
})(exports.BlueDeviceType || (exports.BlueDeviceType = {}));
|
|
3642
|
+
// Retrieve enum metadata with: proto2.getEnumType(BlueDeviceType)
|
|
3643
|
+
protobuf.proto2.util.setEnumType(exports.BlueDeviceType, "BlueDeviceType", [
|
|
3644
|
+
{ no: 1, name: "BluetoothDevice" },
|
|
3645
|
+
{ no: 2, name: "UWBDevice" },
|
|
3646
|
+
]);
|
|
3647
|
+
/**
|
|
3648
|
+
* @generated from enum BlueRefreshOssSoCredentialStatus
|
|
3649
|
+
*/
|
|
3650
|
+
exports.BlueRefreshOssSoCredentialStatus = void 0;
|
|
3651
|
+
(function (BlueRefreshOssSoCredentialStatus) {
|
|
3652
|
+
/**
|
|
3653
|
+
* @generated from enum value: Succeeded = 1;
|
|
3654
|
+
*/
|
|
3655
|
+
BlueRefreshOssSoCredentialStatus[BlueRefreshOssSoCredentialStatus["Succeeded"] = 1] = "Succeeded";
|
|
3656
|
+
/**
|
|
3657
|
+
* @generated from enum value: Failed = 2;
|
|
3658
|
+
*/
|
|
3659
|
+
BlueRefreshOssSoCredentialStatus[BlueRefreshOssSoCredentialStatus["Failed"] = 2] = "Failed";
|
|
3660
|
+
/**
|
|
3661
|
+
* @generated from enum value: NotNeeded = 3;
|
|
3662
|
+
*/
|
|
3663
|
+
BlueRefreshOssSoCredentialStatus[BlueRefreshOssSoCredentialStatus["NotNeeded"] = 3] = "NotNeeded";
|
|
3664
|
+
/**
|
|
3665
|
+
* @generated from enum value: Unsupported = 4;
|
|
3666
|
+
*/
|
|
3667
|
+
BlueRefreshOssSoCredentialStatus[BlueRefreshOssSoCredentialStatus["Unsupported"] = 4] = "Unsupported";
|
|
3668
|
+
})(exports.BlueRefreshOssSoCredentialStatus || (exports.BlueRefreshOssSoCredentialStatus = {}));
|
|
3669
|
+
// Retrieve enum metadata with: proto2.getEnumType(BlueRefreshOssSoCredentialStatus)
|
|
3670
|
+
protobuf.proto2.util.setEnumType(exports.BlueRefreshOssSoCredentialStatus, "BlueRefreshOssSoCredentialStatus", [
|
|
3671
|
+
{ no: 1, name: "Succeeded" },
|
|
3672
|
+
{ no: 2, name: "Failed" },
|
|
3673
|
+
{ no: 3, name: "NotNeeded" },
|
|
3674
|
+
{ no: 4, name: "Unsupported" },
|
|
3675
|
+
]);
|
|
3676
|
+
/**
|
|
3677
|
+
* @generated from message BlueI18n
|
|
3678
|
+
*/
|
|
3679
|
+
class BlueI18n extends protobuf.Message {
|
|
3676
3680
|
constructor(data) {
|
|
3677
3681
|
super();
|
|
3678
|
-
/**
|
|
3679
|
-
* @generated from field: repeated BlueLocalTimeSchedule schedules = 2;
|
|
3680
|
-
*/
|
|
3681
|
-
this.schedules = [];
|
|
3682
3682
|
protobuf.proto2.util.initPartial(data, this);
|
|
3683
3683
|
}
|
|
3684
3684
|
static fromBinary(bytes, options) {
|
|
3685
|
-
return new
|
|
3685
|
+
return new BlueI18n().fromBinary(bytes, options);
|
|
3686
3686
|
}
|
|
3687
3687
|
static fromJson(jsonValue, options) {
|
|
3688
|
-
return new
|
|
3688
|
+
return new BlueI18n().fromJson(jsonValue, options);
|
|
3689
3689
|
}
|
|
3690
3690
|
static fromJsonString(jsonString, options) {
|
|
3691
|
-
return new
|
|
3691
|
+
return new BlueI18n().fromJsonString(jsonString, options);
|
|
3692
3692
|
}
|
|
3693
3693
|
static equals(a, b) {
|
|
3694
|
-
return protobuf.proto2.util.equals(
|
|
3694
|
+
return protobuf.proto2.util.equals(BlueI18n, a, b);
|
|
3695
3695
|
}
|
|
3696
3696
|
}
|
|
3697
|
-
|
|
3698
|
-
|
|
3699
|
-
|
|
3700
|
-
{ no: 1, name: "
|
|
3701
|
-
{ no: 2, name: "
|
|
3697
|
+
BlueI18n.runtime = protobuf.proto2;
|
|
3698
|
+
BlueI18n.typeName = "BlueI18n";
|
|
3699
|
+
BlueI18n.fields = protobuf.proto2.util.newFieldList(() => [
|
|
3700
|
+
{ no: 1, name: "nfcWaitMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Waiting for transponder..." },
|
|
3701
|
+
{ no: 2, name: "nfcOssSuccessReadConfigurationMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Configuration read successfully" },
|
|
3702
|
+
{ no: 3, name: "nfcOssSuccessUpdateConfigurationMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Configuration successfully updated" },
|
|
3703
|
+
{ no: 4, name: "nfcOssSuccessClearEventsMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Events successfully cleared" },
|
|
3704
|
+
{ no: 5, name: "nfcOssSuccessIsProvisionedMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Is already provisioned" },
|
|
3705
|
+
{ no: 6, name: "nfcOssSuccessProvisionMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Successfully provisioned" },
|
|
3706
|
+
{ no: 7, name: "nfcOssSuccessUnprovisionMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Successfully unprovisioned" },
|
|
3707
|
+
{ no: 8, name: "nfcOssSuccessFormatMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Transponder was successfully formatted" },
|
|
3708
|
+
{ no: 9, name: "nfcInitializingWritingProcess", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Initializing writing process" },
|
|
3709
|
+
{ no: 10, name: "openViaOssTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Unlocking in Progress" },
|
|
3710
|
+
{ no: 11, name: "openViaOssWaitMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Establishing secure connection..." },
|
|
3711
|
+
{ no: 12, name: "openViaOssAccessGrantedTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Access Granted" },
|
|
3712
|
+
{ no: 13, name: "openViaOssAccessGrantedMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Please proceed." },
|
|
3713
|
+
{ no: 14, name: "openViaOssAccessGrantedLockEngagedTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Lock engaged" },
|
|
3714
|
+
{ no: 15, name: "openViaOssAccessGrantedLockEngagedMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Lock permanently closed." },
|
|
3715
|
+
{ no: 16, name: "openViaOssAccessGrantedLockDisengagedTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Lock disengaged" },
|
|
3716
|
+
{ no: 17, name: "openViaOssAccessGrantedLockDisengagedMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Lock permanently opened." },
|
|
3717
|
+
{ no: 18, name: "openViaOssAccessGrantedExtendedTimeMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Lock will remain disengaged for %d seconds." },
|
|
3718
|
+
{ no: 19, name: "openViaOssAccessDeniedTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Access Denied" },
|
|
3719
|
+
{ no: 20, name: "openViaOssAccessDeniedMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Credentials are invalid or outdated." },
|
|
3720
|
+
{ no: 21, name: "openViaOssAccessDeniedScheduleMismatchMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Credentials are not valid at this time and/or day of the week." },
|
|
3721
|
+
{ no: 22, name: "openViaOssErrorTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Error" },
|
|
3722
|
+
{ no: 23, name: "cmnCancelLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Cancel" },
|
|
3723
|
+
{ no: 24, name: "cmnCloseLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Close" },
|
|
3724
|
+
{ no: 25, name: "syncDeviceInProgressTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Synchronization in Progress" },
|
|
3725
|
+
{ no: 26, name: "syncDeviceFailedTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Synchronization has failed" },
|
|
3726
|
+
{ no: 27, name: "syncDeviceCancellingTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Cancelling..." },
|
|
3727
|
+
{ no: 28, name: "syncDeviceCompletedTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Synchronization has been completed" },
|
|
3728
|
+
{ no: 29, name: "syncDeviceGetAuthenticationTokenTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Issue authentication token" },
|
|
3729
|
+
{ no: 30, name: "syncDeviceRetrieveDeviceConfigurationTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Retrieve device configuration" },
|
|
3730
|
+
{ no: 31, name: "syncDeviceUpdateDeviceConfigurationTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Update device configuration" },
|
|
3731
|
+
{ no: 32, name: "syncDeviceUpdateDeviceTimeTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Update device time" },
|
|
3732
|
+
{ no: 33, name: "syncDeviceWaitForDeviceToRestartTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Wait for device to restart" },
|
|
3733
|
+
{ no: 34, name: "syncDevicePushEventLogsTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Push event logs" },
|
|
3734
|
+
{ no: 35, name: "syncDevicePushSystemLogsTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Push system logs" },
|
|
3735
|
+
{ no: 36, name: "syncDeviceRetrieveBlacklistEntriesTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Retrieve blacklist entries" },
|
|
3736
|
+
{ no: 37, name: "syncDeviceDeployBlacklistEntriesTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Deploy blacklist entries" },
|
|
3737
|
+
{ no: 38, name: "syncDeviceRetrieveSystemStatusTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Retrieve system status" },
|
|
3738
|
+
{ no: 39, name: "syncDevicePushSystemStatusTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Push system status" },
|
|
3739
|
+
{ no: 40, name: "syncDeviceCheckLatestFWLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Check latest firmware" },
|
|
3740
|
+
{ no: 41, name: "dfuInProgressTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Update in Progress" },
|
|
3741
|
+
{ no: 42, name: "dfuFailedTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Update has failed" },
|
|
3742
|
+
{ no: 43, name: "dfuCancellingTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Cancelling..." },
|
|
3743
|
+
{ no: 44, name: "dfuCompletedTitle", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Update has been completed" },
|
|
3744
|
+
{ no: 45, name: "dfuGetAuthenticationTokenTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Issue authentication token" },
|
|
3745
|
+
{ no: 46, name: "dfuCheckLatestFWLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Check latest firmware" },
|
|
3746
|
+
{ no: 47, name: "dfuDownloadLatestFWLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Download latest firmware" },
|
|
3747
|
+
{ no: 48, name: "dfuPrepareUpdateLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Prepare Update" },
|
|
3748
|
+
{ no: 49, name: "dfuStartBootloaderLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Start Bootloader" },
|
|
3749
|
+
{ no: 50, name: "dfuInitializationLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "DFU initialization" },
|
|
3750
|
+
{ no: 51, name: "dfuUpdateFWLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Update firmware" },
|
|
3751
|
+
{ no: 52, name: "dfuWaitForDeviceToRestartTaskLabel", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "Wait for device to restart" },
|
|
3702
3752
|
]);
|
|
3703
3753
|
/**
|
|
3704
|
-
* @generated from message
|
|
3754
|
+
* @generated from message BlueDeviceDetailsBluetooth
|
|
3705
3755
|
*/
|
|
3706
|
-
class
|
|
3756
|
+
class BlueDeviceDetailsBluetooth extends protobuf.Message {
|
|
3707
3757
|
constructor(data) {
|
|
3708
3758
|
super();
|
|
3709
|
-
/**
|
|
3710
|
-
* The access groups this device is part of
|
|
3711
|
-
*
|
|
3712
|
-
* @generated from field: repeated BlueAccessConfigGroup groups = 3;
|
|
3713
|
-
*/
|
|
3714
|
-
this.groups = [];
|
|
3715
3759
|
protobuf.proto2.util.initPartial(data, this);
|
|
3716
3760
|
}
|
|
3717
3761
|
static fromBinary(bytes, options) {
|
|
3718
|
-
return new
|
|
3762
|
+
return new BlueDeviceDetailsBluetooth().fromBinary(bytes, options);
|
|
3719
3763
|
}
|
|
3720
3764
|
static fromJson(jsonValue, options) {
|
|
3721
|
-
return new
|
|
3765
|
+
return new BlueDeviceDetailsBluetooth().fromJson(jsonValue, options);
|
|
3722
3766
|
}
|
|
3723
3767
|
static fromJsonString(jsonString, options) {
|
|
3724
|
-
return new
|
|
3768
|
+
return new BlueDeviceDetailsBluetooth().fromJsonString(jsonString, options);
|
|
3725
3769
|
}
|
|
3726
3770
|
static equals(a, b) {
|
|
3727
|
-
return protobuf.proto2.util.equals(
|
|
3771
|
+
return protobuf.proto2.util.equals(BlueDeviceDetailsBluetooth, a, b);
|
|
3728
3772
|
}
|
|
3729
3773
|
}
|
|
3730
|
-
|
|
3731
|
-
|
|
3732
|
-
|
|
3733
|
-
{ no: 1, name: "
|
|
3734
|
-
{ no: 2, name: "
|
|
3735
|
-
{ no: 3, name: "
|
|
3774
|
+
BlueDeviceDetailsBluetooth.runtime = protobuf.proto2;
|
|
3775
|
+
BlueDeviceDetailsBluetooth.typeName = "BlueDeviceDetailsBluetooth";
|
|
3776
|
+
BlueDeviceDetailsBluetooth.fields = protobuf.proto2.util.newFieldList(() => [
|
|
3777
|
+
{ no: 1, name: "rssi", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
3778
|
+
{ no: 2, name: "txPower", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
3779
|
+
{ no: 3, name: "isIBeacon", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
3736
3780
|
]);
|
|
3737
3781
|
/**
|
|
3738
|
-
*
|
|
3739
|
-
* -- Oss SecureId --
|
|
3740
|
-
*
|
|
3741
|
-
*
|
|
3742
|
-
* @generated from message BlueOssConfig
|
|
3782
|
+
* @generated from message BlueDeviceDetailsUWB
|
|
3743
3783
|
*/
|
|
3744
|
-
class
|
|
3784
|
+
class BlueDeviceDetailsUWB extends protobuf.Message {
|
|
3745
3785
|
constructor(data) {
|
|
3746
3786
|
super();
|
|
3747
3787
|
protobuf.proto2.util.initPartial(data, this);
|
|
3748
3788
|
}
|
|
3749
3789
|
static fromBinary(bytes, options) {
|
|
3750
|
-
return new
|
|
3790
|
+
return new BlueDeviceDetailsUWB().fromBinary(bytes, options);
|
|
3751
3791
|
}
|
|
3752
3792
|
static fromJson(jsonValue, options) {
|
|
3753
|
-
return new
|
|
3793
|
+
return new BlueDeviceDetailsUWB().fromJson(jsonValue, options);
|
|
3754
3794
|
}
|
|
3755
3795
|
static fromJsonString(jsonString, options) {
|
|
3756
|
-
return new
|
|
3796
|
+
return new BlueDeviceDetailsUWB().fromJsonString(jsonString, options);
|
|
3757
3797
|
}
|
|
3758
3798
|
static equals(a, b) {
|
|
3759
|
-
return protobuf.proto2.util.equals(
|
|
3799
|
+
return protobuf.proto2.util.equals(BlueDeviceDetailsUWB, a, b);
|
|
3760
3800
|
}
|
|
3761
3801
|
}
|
|
3762
|
-
|
|
3763
|
-
|
|
3764
|
-
|
|
3765
|
-
{ no: 1, name: "
|
|
3766
|
-
{ no: 2, name: "sidMifareAid", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 16076801 },
|
|
3767
|
-
{ no: 3, name: "soUpdater", kind: "scalar", T: 8 /* ScalarType.BOOL */, default: false },
|
|
3768
|
-
{ no: 4, name: "soPushEvents", kind: "scalar", T: 8 /* ScalarType.BOOL */, default: false },
|
|
3769
|
-
{ no: 5, name: "soWritePendingEvents", kind: "scalar", T: 8 /* ScalarType.BOOL */, default: true },
|
|
3770
|
-
{ no: 6, name: "soUpdateFromBlacklist", kind: "scalar", T: 8 /* ScalarType.BOOL */, default: true },
|
|
3771
|
-
{ no: 7, name: "soMifareAesKey", kind: "scalar", T: 12 /* ScalarType.BYTES */, default: new Uint8Array([0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1A, 0x1B, 0x1C, 0x1D, 0x1E, 0x1F]) },
|
|
3772
|
-
{ no: 8, name: "soMifareAid", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 16076800 },
|
|
3802
|
+
BlueDeviceDetailsUWB.runtime = protobuf.proto2;
|
|
3803
|
+
BlueDeviceDetailsUWB.typeName = "BlueDeviceDetailsUWB";
|
|
3804
|
+
BlueDeviceDetailsUWB.fields = protobuf.proto2.util.newFieldList(() => [
|
|
3805
|
+
{ no: 1, name: "notUsed", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
3773
3806
|
]);
|
|
3774
3807
|
/**
|
|
3775
|
-
* @generated from message
|
|
3808
|
+
* @generated from message BlueDeviceInfo
|
|
3776
3809
|
*/
|
|
3777
|
-
class
|
|
3810
|
+
class BlueDeviceInfo extends protobuf.Message {
|
|
3778
3811
|
constructor(data) {
|
|
3779
3812
|
super();
|
|
3813
|
+
/**
|
|
3814
|
+
* @generated from oneof BlueDeviceInfo.details
|
|
3815
|
+
*/
|
|
3816
|
+
this.details = { case: undefined };
|
|
3780
3817
|
protobuf.proto2.util.initPartial(data, this);
|
|
3781
3818
|
}
|
|
3782
3819
|
static fromBinary(bytes, options) {
|
|
3783
|
-
return new
|
|
3820
|
+
return new BlueDeviceInfo().fromBinary(bytes, options);
|
|
3784
3821
|
}
|
|
3785
3822
|
static fromJson(jsonValue, options) {
|
|
3786
|
-
return new
|
|
3823
|
+
return new BlueDeviceInfo().fromJson(jsonValue, options);
|
|
3787
3824
|
}
|
|
3788
3825
|
static fromJsonString(jsonString, options) {
|
|
3789
|
-
return new
|
|
3826
|
+
return new BlueDeviceInfo().fromJsonString(jsonString, options);
|
|
3790
3827
|
}
|
|
3791
3828
|
static equals(a, b) {
|
|
3792
|
-
return protobuf.proto2.util.equals(
|
|
3829
|
+
return protobuf.proto2.util.equals(BlueDeviceInfo, a, b);
|
|
3793
3830
|
}
|
|
3794
3831
|
}
|
|
3795
|
-
|
|
3796
|
-
|
|
3797
|
-
|
|
3798
|
-
{ no: 1, name: "
|
|
3799
|
-
{ no: 2, name: "
|
|
3800
|
-
{ no: 3, name: "
|
|
3801
|
-
{ no: 4, name: "
|
|
3802
|
-
{ no: 5, name: "
|
|
3803
|
-
{ no: 6, name: "
|
|
3804
|
-
{ no: 7, name: "lock", kind: "message", T: BlueLockConfig, opt: true },
|
|
3832
|
+
BlueDeviceInfo.runtime = protobuf.proto2;
|
|
3833
|
+
BlueDeviceInfo.typeName = "BlueDeviceInfo";
|
|
3834
|
+
BlueDeviceInfo.fields = protobuf.proto2.util.newFieldList(() => [
|
|
3835
|
+
{ no: 1, name: "deviceType", kind: "enum", T: protobuf.proto2.getEnumType(exports.BlueDeviceType) },
|
|
3836
|
+
{ no: 2, name: "deviceId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3837
|
+
{ no: 3, name: "distanceMeters", kind: "scalar", T: 2 /* ScalarType.FLOAT */ },
|
|
3838
|
+
{ no: 4, name: "manufacturerInfo", kind: "message", T: BlueBleManufacturerInfo, opt: true },
|
|
3839
|
+
{ no: 5, name: "bluetooth", kind: "message", T: BlueDeviceDetailsBluetooth, oneof: "details" },
|
|
3840
|
+
{ no: 6, name: "uwb", kind: "message", T: BlueDeviceDetailsUWB, oneof: "details" },
|
|
3805
3841
|
]);
|
|
3806
3842
|
/**
|
|
3807
|
-
* @generated from message
|
|
3843
|
+
* @generated from message BlueAccessCredential
|
|
3808
3844
|
*/
|
|
3809
|
-
class
|
|
3845
|
+
class BlueAccessCredential extends protobuf.Message {
|
|
3810
3846
|
constructor(data) {
|
|
3811
3847
|
super();
|
|
3812
3848
|
protobuf.proto2.util.initPartial(data, this);
|
|
3813
3849
|
}
|
|
3814
3850
|
static fromBinary(bytes, options) {
|
|
3815
|
-
return new
|
|
3851
|
+
return new BlueAccessCredential().fromBinary(bytes, options);
|
|
3816
3852
|
}
|
|
3817
3853
|
static fromJson(jsonValue, options) {
|
|
3818
|
-
return new
|
|
3854
|
+
return new BlueAccessCredential().fromJson(jsonValue, options);
|
|
3819
3855
|
}
|
|
3820
3856
|
static fromJsonString(jsonString, options) {
|
|
3821
|
-
return new
|
|
3857
|
+
return new BlueAccessCredential().fromJsonString(jsonString, options);
|
|
3822
3858
|
}
|
|
3823
3859
|
static equals(a, b) {
|
|
3824
|
-
return protobuf.proto2.util.equals(
|
|
3860
|
+
return protobuf.proto2.util.equals(BlueAccessCredential, a, b);
|
|
3825
3861
|
}
|
|
3826
3862
|
}
|
|
3827
|
-
|
|
3828
|
-
|
|
3829
|
-
|
|
3830
|
-
{ no: 1, name: "
|
|
3863
|
+
BlueAccessCredential.runtime = protobuf.proto2;
|
|
3864
|
+
BlueAccessCredential.typeName = "BlueAccessCredential";
|
|
3865
|
+
BlueAccessCredential.fields = protobuf.proto2.util.newFieldList(() => [
|
|
3866
|
+
{ no: 1, name: "credentialId", kind: "message", T: BlueCredentialId },
|
|
3867
|
+
{ no: 2, name: "credentialType", kind: "enum", T: protobuf.proto2.getEnumType(exports.BlueCredentialType) },
|
|
3868
|
+
{ no: 3, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
3869
|
+
{ no: 4, name: "description", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
3870
|
+
{ no: 5, name: "siteId", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
3871
|
+
{ no: 6, name: "siteName", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
3872
|
+
{ no: 7, name: "validFrom", kind: "message", T: BlueLocalTimestamp, opt: true },
|
|
3873
|
+
{ no: 8, name: "validTo", kind: "message", T: BlueLocalTimestamp, opt: true },
|
|
3874
|
+
{ no: 9, name: "validity", kind: "message", T: BlueLocalTimestamp, opt: true },
|
|
3875
|
+
{ no: 10, name: "privateKey", kind: "scalar", T: 12 /* ScalarType.BYTES */, opt: true },
|
|
3876
|
+
{ no: 11, name: "receiverName", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
3877
|
+
{ no: 12, name: "organisation", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3878
|
+
{ no: 13, name: "organisationName", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
3831
3879
|
]);
|
|
3832
3880
|
/**
|
|
3833
|
-
* @generated from message
|
|
3881
|
+
* @generated from message BlueAccessCredentialList
|
|
3834
3882
|
*/
|
|
3835
|
-
class
|
|
3883
|
+
class BlueAccessCredentialList extends protobuf.Message {
|
|
3836
3884
|
constructor(data) {
|
|
3837
3885
|
super();
|
|
3886
|
+
/**
|
|
3887
|
+
* @generated from field: repeated BlueAccessCredential credentials = 1;
|
|
3888
|
+
*/
|
|
3889
|
+
this.credentials = [];
|
|
3838
3890
|
protobuf.proto2.util.initPartial(data, this);
|
|
3839
3891
|
}
|
|
3840
3892
|
static fromBinary(bytes, options) {
|
|
3841
|
-
return new
|
|
3893
|
+
return new BlueAccessCredentialList().fromBinary(bytes, options);
|
|
3842
3894
|
}
|
|
3843
3895
|
static fromJson(jsonValue, options) {
|
|
3844
|
-
return new
|
|
3896
|
+
return new BlueAccessCredentialList().fromJson(jsonValue, options);
|
|
3845
3897
|
}
|
|
3846
3898
|
static fromJsonString(jsonString, options) {
|
|
3847
|
-
return new
|
|
3899
|
+
return new BlueAccessCredentialList().fromJsonString(jsonString, options);
|
|
3848
3900
|
}
|
|
3849
3901
|
static equals(a, b) {
|
|
3850
|
-
return protobuf.proto2.util.equals(
|
|
3902
|
+
return protobuf.proto2.util.equals(BlueAccessCredentialList, a, b);
|
|
3851
3903
|
}
|
|
3852
3904
|
}
|
|
3853
|
-
|
|
3854
|
-
|
|
3855
|
-
|
|
3856
|
-
{ no: 1, name: "
|
|
3857
|
-
{ no: 2, name: "timeUnix", kind: "message", T: BlueSystemTimeUnix, opt: true },
|
|
3905
|
+
BlueAccessCredentialList.runtime = protobuf.proto2;
|
|
3906
|
+
BlueAccessCredentialList.typeName = "BlueAccessCredentialList";
|
|
3907
|
+
BlueAccessCredentialList.fields = protobuf.proto2.util.newFieldList(() => [
|
|
3908
|
+
{ no: 1, name: "credentials", kind: "message", T: BlueAccessCredential, repeated: true },
|
|
3858
3909
|
]);
|
|
3859
3910
|
/**
|
|
3860
|
-
* @generated from message
|
|
3911
|
+
* @generated from message BlueAccessDevice
|
|
3861
3912
|
*/
|
|
3862
|
-
class
|
|
3913
|
+
class BlueAccessDevice extends protobuf.Message {
|
|
3863
3914
|
constructor(data) {
|
|
3864
3915
|
super();
|
|
3865
3916
|
protobuf.proto2.util.initPartial(data, this);
|
|
3866
3917
|
}
|
|
3867
3918
|
static fromBinary(bytes, options) {
|
|
3868
|
-
return new
|
|
3919
|
+
return new BlueAccessDevice().fromBinary(bytes, options);
|
|
3869
3920
|
}
|
|
3870
3921
|
static fromJson(jsonValue, options) {
|
|
3871
|
-
return new
|
|
3922
|
+
return new BlueAccessDevice().fromJson(jsonValue, options);
|
|
3872
3923
|
}
|
|
3873
3924
|
static fromJsonString(jsonString, options) {
|
|
3874
|
-
return new
|
|
3925
|
+
return new BlueAccessDevice().fromJsonString(jsonString, options);
|
|
3875
3926
|
}
|
|
3876
3927
|
static equals(a, b) {
|
|
3877
|
-
return protobuf.proto2.util.equals(
|
|
3928
|
+
return protobuf.proto2.util.equals(BlueAccessDevice, a, b);
|
|
3878
3929
|
}
|
|
3879
3930
|
}
|
|
3880
|
-
|
|
3881
|
-
|
|
3882
|
-
|
|
3883
|
-
{ no: 1, name: "
|
|
3884
|
-
{ no: 2, name: "
|
|
3885
|
-
{ no: 3, name: "
|
|
3886
|
-
{ no: 4, name: "eventLogEntriesCount", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 0 },
|
|
3887
|
-
{ no: 5, name: "eventLogSequenceId", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 0 },
|
|
3888
|
-
{ no: 6, name: "eventLogIndex", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 0 },
|
|
3889
|
-
{ no: 7, name: "systemLogMaxEntriesCount", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 0 },
|
|
3890
|
-
{ no: 8, name: "systemLogEntriesCount", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 0 },
|
|
3891
|
-
{ no: 9, name: "systemLogSequenceId", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 0 },
|
|
3892
|
-
{ no: 10, name: "systemLogIndex", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 0 },
|
|
3893
|
-
{ no: 11, name: "timeWasSet", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
3894
|
-
{ no: 12, name: "isBatteryLow", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
3931
|
+
BlueAccessDevice.runtime = protobuf.proto2;
|
|
3932
|
+
BlueAccessDevice.typeName = "BlueAccessDevice";
|
|
3933
|
+
BlueAccessDevice.fields = protobuf.proto2.util.newFieldList(() => [
|
|
3934
|
+
{ no: 1, name: "deviceId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3935
|
+
{ no: 2, name: "objectName", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
3936
|
+
{ no: 3, name: "objectId", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
|
|
3895
3937
|
]);
|
|
3896
3938
|
/**
|
|
3897
|
-
* @generated from message
|
|
3939
|
+
* @generated from message BlueAccessDeviceList
|
|
3898
3940
|
*/
|
|
3899
|
-
class
|
|
3941
|
+
class BlueAccessDeviceList extends protobuf.Message {
|
|
3900
3942
|
constructor(data) {
|
|
3901
3943
|
super();
|
|
3944
|
+
/**
|
|
3945
|
+
* @generated from field: repeated BlueAccessDevice devices = 1;
|
|
3946
|
+
*/
|
|
3947
|
+
this.devices = [];
|
|
3902
3948
|
protobuf.proto2.util.initPartial(data, this);
|
|
3903
3949
|
}
|
|
3904
3950
|
static fromBinary(bytes, options) {
|
|
3905
|
-
return new
|
|
3951
|
+
return new BlueAccessDeviceList().fromBinary(bytes, options);
|
|
3906
3952
|
}
|
|
3907
3953
|
static fromJson(jsonValue, options) {
|
|
3908
|
-
return new
|
|
3954
|
+
return new BlueAccessDeviceList().fromJson(jsonValue, options);
|
|
3909
3955
|
}
|
|
3910
3956
|
static fromJsonString(jsonString, options) {
|
|
3911
|
-
return new
|
|
3957
|
+
return new BlueAccessDeviceList().fromJsonString(jsonString, options);
|
|
3912
3958
|
}
|
|
3913
3959
|
static equals(a, b) {
|
|
3914
|
-
return protobuf.proto2.util.equals(
|
|
3960
|
+
return protobuf.proto2.util.equals(BlueAccessDeviceList, a, b);
|
|
3915
3961
|
}
|
|
3916
|
-
}
|
|
3917
|
-
|
|
3918
|
-
|
|
3919
|
-
|
|
3920
|
-
{ no: 1, name: "
|
|
3921
|
-
{ no: 2, name: "deviceId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3922
|
-
{ no: 3, name: "serialNumber", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "00000000000000000000" },
|
|
3923
|
-
{ no: 4, name: "terminalPrivateKey", kind: "scalar", T: 12 /* ScalarType.BYTES */ },
|
|
3924
|
-
{ no: 5, name: "signaturePublicKey", kind: "scalar", T: 12 /* ScalarType.BYTES */ },
|
|
3962
|
+
}
|
|
3963
|
+
BlueAccessDeviceList.runtime = protobuf.proto2;
|
|
3964
|
+
BlueAccessDeviceList.typeName = "BlueAccessDeviceList";
|
|
3965
|
+
BlueAccessDeviceList.fields = protobuf.proto2.util.newFieldList(() => [
|
|
3966
|
+
{ no: 1, name: "devices", kind: "message", T: BlueAccessDevice, repeated: true },
|
|
3925
3967
|
]);
|
|
3926
3968
|
/**
|
|
3927
|
-
* @generated from message
|
|
3969
|
+
* @generated from message BlueAccessObject
|
|
3928
3970
|
*/
|
|
3929
|
-
class
|
|
3971
|
+
class BlueAccessObject extends protobuf.Message {
|
|
3930
3972
|
constructor(data) {
|
|
3931
3973
|
super();
|
|
3974
|
+
/**
|
|
3975
|
+
* @generated from field: repeated string deviceIds = 5;
|
|
3976
|
+
*/
|
|
3977
|
+
this.deviceIds = [];
|
|
3932
3978
|
protobuf.proto2.util.initPartial(data, this);
|
|
3933
3979
|
}
|
|
3934
3980
|
static fromBinary(bytes, options) {
|
|
3935
|
-
return new
|
|
3981
|
+
return new BlueAccessObject().fromBinary(bytes, options);
|
|
3936
3982
|
}
|
|
3937
3983
|
static fromJson(jsonValue, options) {
|
|
3938
|
-
return new
|
|
3984
|
+
return new BlueAccessObject().fromJson(jsonValue, options);
|
|
3939
3985
|
}
|
|
3940
3986
|
static fromJsonString(jsonString, options) {
|
|
3941
|
-
return new
|
|
3987
|
+
return new BlueAccessObject().fromJsonString(jsonString, options);
|
|
3942
3988
|
}
|
|
3943
3989
|
static equals(a, b) {
|
|
3944
|
-
return protobuf.proto2.util.equals(
|
|
3990
|
+
return protobuf.proto2.util.equals(BlueAccessObject, a, b);
|
|
3945
3991
|
}
|
|
3946
3992
|
}
|
|
3947
|
-
|
|
3948
|
-
|
|
3949
|
-
|
|
3950
|
-
{ no: 1, name: "
|
|
3951
|
-
{ no: 2, name: "
|
|
3952
|
-
{ no: 3, name: "
|
|
3953
|
-
{ no: 4, name: "
|
|
3954
|
-
{ no: 5, name: "
|
|
3993
|
+
BlueAccessObject.runtime = protobuf.proto2;
|
|
3994
|
+
BlueAccessObject.typeName = "BlueAccessObject";
|
|
3995
|
+
BlueAccessObject.fields = protobuf.proto2.util.newFieldList(() => [
|
|
3996
|
+
{ no: 1, name: "_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3997
|
+
{ no: 2, name: "objectId", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
3998
|
+
{ no: 3, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3999
|
+
{ no: 4, name: "description", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
4000
|
+
{ no: 5, name: "deviceIds", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
3955
4001
|
]);
|
|
3956
4002
|
/**
|
|
3957
|
-
* @generated from message
|
|
4003
|
+
* @generated from message BlueAccessObjectList
|
|
3958
4004
|
*/
|
|
3959
|
-
class
|
|
4005
|
+
class BlueAccessObjectList extends protobuf.Message {
|
|
3960
4006
|
constructor(data) {
|
|
3961
4007
|
super();
|
|
4008
|
+
/**
|
|
4009
|
+
* @generated from field: repeated BlueAccessObject objects = 1;
|
|
4010
|
+
*/
|
|
4011
|
+
this.objects = [];
|
|
3962
4012
|
protobuf.proto2.util.initPartial(data, this);
|
|
3963
4013
|
}
|
|
3964
4014
|
static fromBinary(bytes, options) {
|
|
3965
|
-
return new
|
|
4015
|
+
return new BlueAccessObjectList().fromBinary(bytes, options);
|
|
3966
4016
|
}
|
|
3967
4017
|
static fromJson(jsonValue, options) {
|
|
3968
|
-
return new
|
|
4018
|
+
return new BlueAccessObjectList().fromJson(jsonValue, options);
|
|
3969
4019
|
}
|
|
3970
4020
|
static fromJsonString(jsonString, options) {
|
|
3971
|
-
return new
|
|
4021
|
+
return new BlueAccessObjectList().fromJsonString(jsonString, options);
|
|
3972
4022
|
}
|
|
3973
4023
|
static equals(a, b) {
|
|
3974
|
-
return protobuf.proto2.util.equals(
|
|
4024
|
+
return protobuf.proto2.util.equals(BlueAccessObjectList, a, b);
|
|
3975
4025
|
}
|
|
3976
4026
|
}
|
|
3977
|
-
|
|
3978
|
-
|
|
3979
|
-
|
|
3980
|
-
{ no: 1, name: "
|
|
3981
|
-
{ no: 2, name: "deviceId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3982
|
-
{ no: 3, name: "serialNumber", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3983
|
-
{ no: 4, name: "hardwareType", kind: "enum", T: protobuf.proto2.getEnumType(exports.BlueHardwareType) },
|
|
3984
|
-
{ no: 5, name: "batteryLevel", kind: "enum", T: protobuf.proto2.getEnumType(exports.BlueBatteryLevel) },
|
|
3985
|
-
{ no: 6, name: "applicationVersion", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
3986
|
-
{ no: 7, name: "localTime", kind: "message", T: BlueLocalTimestamp },
|
|
3987
|
-
{ no: 8, name: "settings", kind: "message", T: BlueSystemSettings },
|
|
3988
|
-
{ no: 9, name: "lock", kind: "message", T: BlueLockStatus, opt: true },
|
|
3989
|
-
{ no: 10, name: "applicationVersionTest", kind: "scalar", T: 13 /* ScalarType.UINT32 */, opt: true },
|
|
3990
|
-
{ no: 11, name: "newFirmwareVersionAvailable", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
3991
|
-
{ no: 12, name: "newTestFirmwareVersionAvailable", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
3992
|
-
{ no: 13, name: "newConfigurationAvailable", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
3993
|
-
{ no: 14, name: "hardwareInfo", kind: "message", T: BlueHardwareInfo, opt: true },
|
|
4027
|
+
BlueAccessObjectList.runtime = protobuf.proto2;
|
|
4028
|
+
BlueAccessObjectList.typeName = "BlueAccessObjectList";
|
|
4029
|
+
BlueAccessObjectList.fields = protobuf.proto2.util.newFieldList(() => [
|
|
4030
|
+
{ no: 1, name: "objects", kind: "message", T: BlueAccessObject, repeated: true },
|
|
3994
4031
|
]);
|
|
3995
4032
|
/**
|
|
3996
|
-
* @generated from message
|
|
4033
|
+
* @generated from message BlueRefreshOssSoCredential
|
|
3997
4034
|
*/
|
|
3998
|
-
class
|
|
4035
|
+
class BlueRefreshOssSoCredential extends protobuf.Message {
|
|
3999
4036
|
constructor(data) {
|
|
4000
4037
|
super();
|
|
4001
|
-
/**
|
|
4002
|
-
* @generated from oneof BlueSystemLogQuery.start
|
|
4003
|
-
*/
|
|
4004
|
-
this.start = { case: undefined };
|
|
4005
4038
|
protobuf.proto2.util.initPartial(data, this);
|
|
4006
4039
|
}
|
|
4007
4040
|
static fromBinary(bytes, options) {
|
|
4008
|
-
return new
|
|
4041
|
+
return new BlueRefreshOssSoCredential().fromBinary(bytes, options);
|
|
4009
4042
|
}
|
|
4010
4043
|
static fromJson(jsonValue, options) {
|
|
4011
|
-
return new
|
|
4044
|
+
return new BlueRefreshOssSoCredential().fromJson(jsonValue, options);
|
|
4012
4045
|
}
|
|
4013
4046
|
static fromJsonString(jsonString, options) {
|
|
4014
|
-
return new
|
|
4047
|
+
return new BlueRefreshOssSoCredential().fromJsonString(jsonString, options);
|
|
4015
4048
|
}
|
|
4016
4049
|
static equals(a, b) {
|
|
4017
|
-
return protobuf.proto2.util.equals(
|
|
4050
|
+
return protobuf.proto2.util.equals(BlueRefreshOssSoCredential, a, b);
|
|
4018
4051
|
}
|
|
4019
4052
|
}
|
|
4020
|
-
|
|
4021
|
-
|
|
4022
|
-
|
|
4023
|
-
{ no: 1, name: "
|
|
4024
|
-
{ no: 2, name: "
|
|
4025
|
-
{ no: 3, name: "
|
|
4053
|
+
BlueRefreshOssSoCredential.runtime = protobuf.proto2;
|
|
4054
|
+
BlueRefreshOssSoCredential.typeName = "BlueRefreshOssSoCredential";
|
|
4055
|
+
BlueRefreshOssSoCredential.fields = protobuf.proto2.util.newFieldList(() => [
|
|
4056
|
+
{ no: 1, name: "credentialId", kind: "message", T: BlueCredentialId },
|
|
4057
|
+
{ no: 2, name: "status", kind: "enum", T: protobuf.proto2.getEnumType(exports.BlueRefreshOssSoCredentialStatus) },
|
|
4058
|
+
{ no: 3, name: "configuration", kind: "message", T: BlueOssSoConfiguration, opt: true },
|
|
4026
4059
|
]);
|
|
4027
4060
|
/**
|
|
4028
|
-
* @generated from message
|
|
4061
|
+
* @generated from message BlueRefreshOssSoCredentials
|
|
4029
4062
|
*/
|
|
4030
|
-
class
|
|
4063
|
+
class BlueRefreshOssSoCredentials extends protobuf.Message {
|
|
4031
4064
|
constructor(data) {
|
|
4032
4065
|
super();
|
|
4066
|
+
/**
|
|
4067
|
+
* @generated from field: repeated BlueRefreshOssSoCredential credentials = 1;
|
|
4068
|
+
*/
|
|
4069
|
+
this.credentials = [];
|
|
4033
4070
|
protobuf.proto2.util.initPartial(data, this);
|
|
4034
4071
|
}
|
|
4035
4072
|
static fromBinary(bytes, options) {
|
|
4036
|
-
return new
|
|
4073
|
+
return new BlueRefreshOssSoCredentials().fromBinary(bytes, options);
|
|
4037
4074
|
}
|
|
4038
4075
|
static fromJson(jsonValue, options) {
|
|
4039
|
-
return new
|
|
4076
|
+
return new BlueRefreshOssSoCredentials().fromJson(jsonValue, options);
|
|
4040
4077
|
}
|
|
4041
4078
|
static fromJsonString(jsonString, options) {
|
|
4042
|
-
return new
|
|
4079
|
+
return new BlueRefreshOssSoCredentials().fromJsonString(jsonString, options);
|
|
4043
4080
|
}
|
|
4044
4081
|
static equals(a, b) {
|
|
4045
|
-
return protobuf.proto2.util.equals(
|
|
4082
|
+
return protobuf.proto2.util.equals(BlueRefreshOssSoCredentials, a, b);
|
|
4046
4083
|
}
|
|
4047
4084
|
}
|
|
4048
|
-
|
|
4049
|
-
|
|
4050
|
-
|
|
4051
|
-
{ no: 1, name: "
|
|
4052
|
-
{ no: 2, name: "time", kind: "message", T: BlueLocalTimestamp },
|
|
4053
|
-
{ no: 3, name: "severity", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
4054
|
-
{ no: 4, name: "line", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
4055
|
-
{ no: 5, name: "file", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
4056
|
-
{ no: 6, name: "message", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
4085
|
+
BlueRefreshOssSoCredentials.runtime = protobuf.proto2;
|
|
4086
|
+
BlueRefreshOssSoCredentials.typeName = "BlueRefreshOssSoCredentials";
|
|
4087
|
+
BlueRefreshOssSoCredentials.fields = protobuf.proto2.util.newFieldList(() => [
|
|
4088
|
+
{ no: 1, name: "credentials", kind: "message", T: BlueRefreshOssSoCredential, repeated: true },
|
|
4057
4089
|
]);
|
|
4058
4090
|
/**
|
|
4059
|
-
* @generated from message
|
|
4091
|
+
* @generated from message BlueSynchronizeAccessCredential
|
|
4060
4092
|
*/
|
|
4061
|
-
class
|
|
4093
|
+
class BlueSynchronizeAccessCredential extends protobuf.Message {
|
|
4062
4094
|
constructor(data) {
|
|
4063
4095
|
super();
|
|
4064
|
-
/**
|
|
4065
|
-
* @generated from field: repeated BlueSystemLogEntry entries = 1;
|
|
4066
|
-
*/
|
|
4067
|
-
this.entries = [];
|
|
4068
4096
|
protobuf.proto2.util.initPartial(data, this);
|
|
4069
4097
|
}
|
|
4070
4098
|
static fromBinary(bytes, options) {
|
|
4071
|
-
return new
|
|
4099
|
+
return new BlueSynchronizeAccessCredential().fromBinary(bytes, options);
|
|
4072
4100
|
}
|
|
4073
4101
|
static fromJson(jsonValue, options) {
|
|
4074
|
-
return new
|
|
4102
|
+
return new BlueSynchronizeAccessCredential().fromJson(jsonValue, options);
|
|
4075
4103
|
}
|
|
4076
4104
|
static fromJsonString(jsonString, options) {
|
|
4077
|
-
return new
|
|
4105
|
+
return new BlueSynchronizeAccessCredential().fromJsonString(jsonString, options);
|
|
4078
4106
|
}
|
|
4079
4107
|
static equals(a, b) {
|
|
4080
|
-
return protobuf.proto2.util.equals(
|
|
4108
|
+
return protobuf.proto2.util.equals(BlueSynchronizeAccessCredential, a, b);
|
|
4081
4109
|
}
|
|
4082
4110
|
}
|
|
4083
|
-
|
|
4084
|
-
|
|
4085
|
-
|
|
4086
|
-
{ no: 1, name: "
|
|
4111
|
+
BlueSynchronizeAccessCredential.runtime = protobuf.proto2;
|
|
4112
|
+
BlueSynchronizeAccessCredential.typeName = "BlueSynchronizeAccessCredential";
|
|
4113
|
+
BlueSynchronizeAccessCredential.fields = protobuf.proto2.util.newFieldList(() => [
|
|
4114
|
+
{ no: 1, name: "credentialId", kind: "message", T: BlueCredentialId },
|
|
4115
|
+
{ no: 2, name: "returnCode", kind: "enum", T: protobuf.proto2.getEnumType(exports.BlueReturnCode) },
|
|
4116
|
+
{ no: 3, name: "errorDescription", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
4087
4117
|
]);
|
|
4088
4118
|
/**
|
|
4089
|
-
* @generated from message
|
|
4119
|
+
* @generated from message BlueSynchronizeAccessCredentials
|
|
4090
4120
|
*/
|
|
4091
|
-
class
|
|
4121
|
+
class BlueSynchronizeAccessCredentials extends protobuf.Message {
|
|
4092
4122
|
constructor(data) {
|
|
4093
4123
|
super();
|
|
4094
4124
|
/**
|
|
4095
|
-
* @generated from
|
|
4125
|
+
* @generated from field: repeated BlueSynchronizeAccessCredential credentials = 1;
|
|
4096
4126
|
*/
|
|
4097
|
-
this.
|
|
4127
|
+
this.credentials = [];
|
|
4098
4128
|
protobuf.proto2.util.initPartial(data, this);
|
|
4099
4129
|
}
|
|
4100
4130
|
static fromBinary(bytes, options) {
|
|
4101
|
-
return new
|
|
4131
|
+
return new BlueSynchronizeAccessCredentials().fromBinary(bytes, options);
|
|
4102
4132
|
}
|
|
4103
4133
|
static fromJson(jsonValue, options) {
|
|
4104
|
-
return new
|
|
4134
|
+
return new BlueSynchronizeAccessCredentials().fromJson(jsonValue, options);
|
|
4105
4135
|
}
|
|
4106
4136
|
static fromJsonString(jsonString, options) {
|
|
4107
|
-
return new
|
|
4137
|
+
return new BlueSynchronizeAccessCredentials().fromJsonString(jsonString, options);
|
|
4108
4138
|
}
|
|
4109
4139
|
static equals(a, b) {
|
|
4110
|
-
return protobuf.proto2.util.equals(
|
|
4140
|
+
return protobuf.proto2.util.equals(BlueSynchronizeAccessCredentials, a, b);
|
|
4111
4141
|
}
|
|
4112
4142
|
}
|
|
4113
|
-
|
|
4114
|
-
|
|
4115
|
-
|
|
4116
|
-
{ no: 1, name: "
|
|
4117
|
-
{ no: 2, name: "sequenceId", kind: "scalar", T: 13 /* ScalarType.UINT32 */, oneof: "start" },
|
|
4118
|
-
{ no: 3, name: "fromHead", kind: "scalar", T: 8 /* ScalarType.BOOL */, oneof: "start" },
|
|
4143
|
+
BlueSynchronizeAccessCredentials.runtime = protobuf.proto2;
|
|
4144
|
+
BlueSynchronizeAccessCredentials.typeName = "BlueSynchronizeAccessCredentials";
|
|
4145
|
+
BlueSynchronizeAccessCredentials.fields = protobuf.proto2.util.newFieldList(() => [
|
|
4146
|
+
{ no: 1, name: "credentials", kind: "message", T: BlueSynchronizeAccessCredential, repeated: true },
|
|
4119
4147
|
]);
|
|
4120
4148
|
/**
|
|
4121
|
-
* @generated from message
|
|
4149
|
+
* @generated from message BlueHardwareInfo
|
|
4122
4150
|
*/
|
|
4123
|
-
class
|
|
4151
|
+
class BlueHardwareInfo extends protobuf.Message {
|
|
4124
4152
|
constructor(data) {
|
|
4125
4153
|
super();
|
|
4126
|
-
/**
|
|
4127
|
-
* @generated from field: repeated BlueEvent events = 1;
|
|
4128
|
-
*/
|
|
4129
|
-
this.events = [];
|
|
4130
4154
|
protobuf.proto2.util.initPartial(data, this);
|
|
4131
4155
|
}
|
|
4132
4156
|
static fromBinary(bytes, options) {
|
|
4133
|
-
return new
|
|
4157
|
+
return new BlueHardwareInfo().fromBinary(bytes, options);
|
|
4134
4158
|
}
|
|
4135
4159
|
static fromJson(jsonValue, options) {
|
|
4136
|
-
return new
|
|
4160
|
+
return new BlueHardwareInfo().fromJson(jsonValue, options);
|
|
4137
4161
|
}
|
|
4138
4162
|
static fromJsonString(jsonString, options) {
|
|
4139
|
-
return new
|
|
4163
|
+
return new BlueHardwareInfo().fromJsonString(jsonString, options);
|
|
4140
4164
|
}
|
|
4141
4165
|
static equals(a, b) {
|
|
4142
|
-
return protobuf.proto2.util.equals(
|
|
4166
|
+
return protobuf.proto2.util.equals(BlueHardwareInfo, a, b);
|
|
4143
4167
|
}
|
|
4144
4168
|
}
|
|
4145
|
-
|
|
4146
|
-
|
|
4147
|
-
|
|
4148
|
-
{ no: 1, name: "
|
|
4169
|
+
BlueHardwareInfo.runtime = protobuf.proto2;
|
|
4170
|
+
BlueHardwareInfo.typeName = "BlueHardwareInfo";
|
|
4171
|
+
BlueHardwareInfo.fields = protobuf.proto2.util.newFieldList(() => [
|
|
4172
|
+
{ no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
4173
|
+
{ no: 2, name: "vendor", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
4174
|
+
{ no: 3, name: "vendorName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
4175
|
+
{ no: 4, name: "version", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
4176
|
+
{ no: 5, name: "type", kind: "enum", T: protobuf.proto2.getEnumType(exports.BlueHardwareType) },
|
|
4149
4177
|
]);
|
|
4150
4178
|
/**
|
|
4151
|
-
* @generated from message
|
|
4179
|
+
* @generated from message BlueSystemStatusExt
|
|
4152
4180
|
*/
|
|
4153
|
-
class
|
|
4181
|
+
class BlueSystemStatusExt extends protobuf.Message {
|
|
4154
4182
|
constructor(data) {
|
|
4155
4183
|
super();
|
|
4156
|
-
/**
|
|
4157
|
-
* @generated from field: repeated BlueBlacklistEntry entries = 1;
|
|
4158
|
-
*/
|
|
4159
|
-
this.entries = [];
|
|
4160
4184
|
protobuf.proto2.util.initPartial(data, this);
|
|
4161
4185
|
}
|
|
4162
4186
|
static fromBinary(bytes, options) {
|
|
4163
|
-
return new
|
|
4187
|
+
return new BlueSystemStatusExt().fromBinary(bytes, options);
|
|
4164
4188
|
}
|
|
4165
4189
|
static fromJson(jsonValue, options) {
|
|
4166
|
-
return new
|
|
4190
|
+
return new BlueSystemStatusExt().fromJson(jsonValue, options);
|
|
4167
4191
|
}
|
|
4168
4192
|
static fromJsonString(jsonString, options) {
|
|
4169
|
-
return new
|
|
4193
|
+
return new BlueSystemStatusExt().fromJsonString(jsonString, options);
|
|
4170
4194
|
}
|
|
4171
4195
|
static equals(a, b) {
|
|
4172
|
-
return protobuf.proto2.util.equals(
|
|
4196
|
+
return protobuf.proto2.util.equals(BlueSystemStatusExt, a, b);
|
|
4173
4197
|
}
|
|
4174
4198
|
}
|
|
4175
|
-
|
|
4176
|
-
|
|
4177
|
-
|
|
4178
|
-
{ no: 1, name: "
|
|
4199
|
+
BlueSystemStatusExt.runtime = protobuf.proto2;
|
|
4200
|
+
BlueSystemStatusExt.typeName = "BlueSystemStatusExt";
|
|
4201
|
+
BlueSystemStatusExt.fields = protobuf.proto2.util.newFieldList(() => [
|
|
4202
|
+
{ no: 1, name: "status", kind: "message", T: BlueSystemStatus },
|
|
4203
|
+
{ no: 2, name: "newFirmwareVersionAvailable", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
4204
|
+
{ no: 3, name: "newTestFirmwareVersionAvailable", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
4205
|
+
{ no: 4, name: "newConfigurationAvailable", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
4206
|
+
{ no: 5, name: "hardwareInfo", kind: "message", T: BlueHardwareInfo, opt: true },
|
|
4179
4207
|
]);
|
|
4180
4208
|
|
|
4181
|
-
var
|
|
4209
|
+
var BlueSDK = /*#__PURE__*/Object.freeze({
|
|
4182
4210
|
__proto__: null,
|
|
4183
|
-
|
|
4184
|
-
|
|
4185
|
-
|
|
4186
|
-
|
|
4187
|
-
|
|
4188
|
-
|
|
4189
|
-
|
|
4190
|
-
|
|
4191
|
-
|
|
4192
|
-
|
|
4193
|
-
|
|
4211
|
+
get BlueDeviceType () { return exports.BlueDeviceType; },
|
|
4212
|
+
get BlueRefreshOssSoCredentialStatus () { return exports.BlueRefreshOssSoCredentialStatus; },
|
|
4213
|
+
BlueI18n: BlueI18n,
|
|
4214
|
+
BlueDeviceDetailsBluetooth: BlueDeviceDetailsBluetooth,
|
|
4215
|
+
BlueDeviceDetailsUWB: BlueDeviceDetailsUWB,
|
|
4216
|
+
BlueDeviceInfo: BlueDeviceInfo,
|
|
4217
|
+
BlueAccessCredential: BlueAccessCredential,
|
|
4218
|
+
BlueAccessCredentialList: BlueAccessCredentialList,
|
|
4219
|
+
BlueAccessDevice: BlueAccessDevice,
|
|
4220
|
+
BlueAccessDeviceList: BlueAccessDeviceList,
|
|
4221
|
+
BlueAccessObject: BlueAccessObject,
|
|
4222
|
+
BlueAccessObjectList: BlueAccessObjectList,
|
|
4223
|
+
BlueRefreshOssSoCredential: BlueRefreshOssSoCredential,
|
|
4224
|
+
BlueRefreshOssSoCredentials: BlueRefreshOssSoCredentials,
|
|
4225
|
+
BlueSynchronizeAccessCredential: BlueSynchronizeAccessCredential,
|
|
4226
|
+
BlueSynchronizeAccessCredentials: BlueSynchronizeAccessCredentials,
|
|
4194
4227
|
BlueHardwareInfo: BlueHardwareInfo,
|
|
4195
|
-
|
|
4196
|
-
BlueSystemLogQuery: BlueSystemLogQuery,
|
|
4197
|
-
BlueSystemLogEntry: BlueSystemLogEntry,
|
|
4198
|
-
BlueSystemLogResult: BlueSystemLogResult,
|
|
4199
|
-
BlueEventLogQuery: BlueEventLogQuery,
|
|
4200
|
-
BlueEventLogResult: BlueEventLogResult,
|
|
4201
|
-
BlueBlacklistEntries: BlueBlacklistEntries
|
|
4228
|
+
BlueSystemStatusExt: BlueSystemStatusExt
|
|
4202
4229
|
});
|
|
4203
4230
|
|
|
4204
4231
|
//
|
|
@@ -4454,6 +4481,7 @@ exports.BlueSystemLogResult = BlueSystemLogResult;
|
|
|
4454
4481
|
exports.BlueSystemProvisioning = BlueSystemProvisioning;
|
|
4455
4482
|
exports.BlueSystemSettings = BlueSystemSettings;
|
|
4456
4483
|
exports.BlueSystemStatus = BlueSystemStatus;
|
|
4484
|
+
exports.BlueSystemStatusExt = BlueSystemStatusExt;
|
|
4457
4485
|
exports.BlueSystemTimeUnix = BlueSystemTimeUnix;
|
|
4458
4486
|
exports.BlueSystemUpdate = BlueSystemUpdate;
|
|
4459
4487
|
exports.BlueVersionInfo = BlueVersionInfo;
|