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