@blueid/access-proto 6.5.0 → 6.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/BlueCore.proto CHANGED
@@ -193,6 +193,8 @@ enum BlueReturnCode {
193
193
  SdkUnzipError = -422;
194
194
  SdkInvalidFirmwareURL = -423;
195
195
  SdkDeviceFactoryStateRequired = -424;
196
+ SdkClaimDeviceFailedAutoUnclaimSuccess = -425;
197
+ SdkClaimDeviceAndAutoUnclaimFailed = -426;
196
198
 
197
199
  //
198
200
  // Everything after here equals OssMaIoReturnCode codes; to gather the
@@ -521,6 +521,16 @@ export declare enum BlueReturnCode {
521
521
  */
522
522
  SdkDeviceFactoryStateRequired = -424,
523
523
 
524
+ /**
525
+ * @generated from enum value: SdkClaimDeviceFailedAutoUnclaimSuccess = -425;
526
+ */
527
+ SdkClaimDeviceFailedAutoUnclaimSuccess = -425,
528
+
529
+ /**
530
+ * @generated from enum value: SdkClaimDeviceAndAutoUnclaimFailed = -426;
531
+ */
532
+ SdkClaimDeviceAndAutoUnclaimFailed = -426,
533
+
524
534
  /**
525
535
  * @generated from enum value: OssMAReturnCodeStart = -1000;
526
536
  */
@@ -195,6 +195,8 @@ const BlueReturnCode = import_protobuf.proto2.makeEnum(
195
195
  { no: -422, name: "SdkUnzipError" },
196
196
  { no: -423, name: "SdkInvalidFirmwareURL" },
197
197
  { no: -424, name: "SdkDeviceFactoryStateRequired" },
198
+ { no: -425, name: "SdkClaimDeviceFailedAutoUnclaimSuccess" },
199
+ { no: -426, name: "SdkClaimDeviceAndAutoUnclaimFailed" },
198
200
  { no: -1e3, name: "OssMAReturnCodeStart" },
199
201
  { no: -1100, name: "OssMAReturnCodeEnd" }
200
202
  ]
@@ -521,6 +521,16 @@ export declare enum BlueReturnCode {
521
521
  */
522
522
  SdkDeviceFactoryStateRequired = -424,
523
523
 
524
+ /**
525
+ * @generated from enum value: SdkClaimDeviceFailedAutoUnclaimSuccess = -425;
526
+ */
527
+ SdkClaimDeviceFailedAutoUnclaimSuccess = -425,
528
+
529
+ /**
530
+ * @generated from enum value: SdkClaimDeviceAndAutoUnclaimFailed = -426;
531
+ */
532
+ SdkClaimDeviceAndAutoUnclaimFailed = -426,
533
+
524
534
  /**
525
535
  * @generated from enum value: OssMAReturnCodeStart = -1000;
526
536
  */
package/es/BlueCore_pb.js CHANGED
@@ -110,6 +110,8 @@ export const BlueReturnCode = proto2.makeEnum(
110
110
  {no: -422, name: "SdkUnzipError"},
111
111
  {no: -423, name: "SdkInvalidFirmwareURL"},
112
112
  {no: -424, name: "SdkDeviceFactoryStateRequired"},
113
+ {no: -425, name: "SdkClaimDeviceFailedAutoUnclaimSuccess"},
114
+ {no: -426, name: "SdkClaimDeviceAndAutoUnclaimFailed"},
113
115
  {no: -1000, name: "OssMAReturnCodeStart"},
114
116
  {no: -1100, name: "OssMAReturnCodeEnd"},
115
117
  ],
@@ -114,6 +114,8 @@ typedef enum BlueReturnCode {
114
114
  BlueReturnCode_SdkUnzipError = -422,
115
115
  BlueReturnCode_SdkInvalidFirmwareURL = -423,
116
116
  BlueReturnCode_SdkDeviceFactoryStateRequired = -424,
117
+ BlueReturnCode_SdkClaimDeviceFailedAutoUnclaimSuccess = -425,
118
+ BlueReturnCode_SdkClaimDeviceAndAutoUnclaimFailed = -426,
117
119
  BlueReturnCode_OssMAReturnCodeStart = -1000,
118
120
  BlueReturnCode_OssMAReturnCodeEnd = -1100
119
121
  } BlueReturnCode_t;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blueid/access-proto",
3
- "version": "6.5.0",
3
+ "version": "6.7.0",
4
4
  "description": "BlueID Access Proto files",
5
5
  "author": "BlueID GmbH",
6
6
  "main": "cjs/index.js",
@@ -134,6 +134,8 @@ public enum BlueReturnCode: SwiftProtobuf.Enum, Swift.CaseIterable {
134
134
  case sdkUnzipError // = -422
135
135
  case sdkInvalidFirmwareURL // = -423
136
136
  case sdkDeviceFactoryStateRequired // = -424
137
+ case sdkClaimDeviceFailedAutoUnclaimSuccess // = -425
138
+ case sdkClaimDeviceAndAutoUnclaimFailed // = -426
137
139
  case ossMareturnCodeStart // = -1000
138
140
  case ossMareturnCodeEnd // = -1100
139
141
 
@@ -145,6 +147,8 @@ public enum BlueReturnCode: SwiftProtobuf.Enum, Swift.CaseIterable {
145
147
  switch rawValue {
146
148
  case -1100: self = .ossMareturnCodeEnd
147
149
  case -1000: self = .ossMareturnCodeStart
150
+ case -426: self = .sdkClaimDeviceAndAutoUnclaimFailed
151
+ case -425: self = .sdkClaimDeviceFailedAutoUnclaimSuccess
148
152
  case -424: self = .sdkDeviceFactoryStateRequired
149
153
  case -423: self = .sdkInvalidFirmwareURL
150
154
  case -422: self = .sdkUnzipError
@@ -252,6 +256,8 @@ public enum BlueReturnCode: SwiftProtobuf.Enum, Swift.CaseIterable {
252
256
  switch self {
253
257
  case .ossMareturnCodeEnd: return -1100
254
258
  case .ossMareturnCodeStart: return -1000
259
+ case .sdkClaimDeviceAndAutoUnclaimFailed: return -426
260
+ case .sdkClaimDeviceFailedAutoUnclaimSuccess: return -425
255
261
  case .sdkDeviceFactoryStateRequired: return -424
256
262
  case .sdkInvalidFirmwareURL: return -423
257
263
  case .sdkUnzipError: return -422
@@ -3515,6 +3521,8 @@ extension BlueReturnCode: SwiftProtobuf._ProtoNameProviding {
3515
3521
  public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
3516
3522
  -1100: .same(proto: "OssMAReturnCodeEnd"),
3517
3523
  -1000: .same(proto: "OssMAReturnCodeStart"),
3524
+ -426: .same(proto: "SdkClaimDeviceAndAutoUnclaimFailed"),
3525
+ -425: .same(proto: "SdkClaimDeviceFailedAutoUnclaimSuccess"),
3518
3526
  -424: .same(proto: "SdkDeviceFactoryStateRequired"),
3519
3527
  -423: .same(proto: "SdkInvalidFirmwareURL"),
3520
3528
  -422: .same(proto: "SdkUnzipError"),