@blueid/access-capacitor 0.98.0 → 0.100.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/BlueCore_pb.d.ts +28 -7
- package/dist/esm/BlueCore_pb.js +25 -3
- package/dist/esm/BlueCore_pb.js.map +1 -1
- package/dist/plugin.cjs.js +26 -3
- package/dist/plugin.cjs.js.map +1 -1
- package/dist/plugin.js +26 -3
- package/dist/plugin.js.map +1 -1
- package/ios/CBlueIDAccess.xcframework/Info.plist +5 -5
- package/ios/CBlueIDAccess.xcframework/ios-arm64/Headers/core/BlueCore.pb.h +29 -15
- package/ios/CBlueIDAccess.xcframework/ios-arm64/Headers/core/oss/BlueOss.h +1 -1
- package/ios/CBlueIDAccess.xcframework/ios-arm64/libCBlueIDAccess.a +0 -0
- package/ios/CBlueIDAccess.xcframework/ios-arm64_x86_64-simulator/Headers/core/BlueCore.pb.h +29 -15
- package/ios/CBlueIDAccess.xcframework/ios-arm64_x86_64-simulator/Headers/core/oss/BlueOss.h +1 -1
- package/ios/CBlueIDAccess.xcframework/ios-arm64_x86_64-simulator/libCBlueIDAccess.a +0 -0
- package/ios/CBlueIDAccess.xcframework/macos-arm64_x86_64/Headers/core/BlueCore.pb.h +29 -15
- package/ios/CBlueIDAccess.xcframework/macos-arm64_x86_64/Headers/core/oss/BlueOss.h +1 -1
- package/ios/CBlueIDAccess.xcframework/macos-arm64_x86_64/libCBlueIDAccess.a +0 -0
- package/ios/Plugin/BlueIDAccessSDK/BlueAccess.swift +28 -10
- package/ios/Plugin/BlueIDAccessSDK/BlueAccessSync.swift +2 -2
- package/ios/Plugin/BlueIDAccessSDK/BlueAccessSyncScheduler.swift +25 -7
- package/ios/Plugin/BlueIDAccessSDK/BlueCore.pb.swift +72 -10
- package/ios/Plugin/BlueIDAccessSDK/BlueDemoData.swift +9 -2
- package/ios/Plugin/BlueIDAccessSDK/BlueOssSo.swift +1 -1
- package/ios/Plugin/BlueIDAccessSDK/BlueTerminal.swift +11 -1
- package/ios/Plugin/BlueIDAccessSDK/Extensions.swift +14 -0
- package/package.json +1 -1
package/dist/plugin.js
CHANGED
|
@@ -670,7 +670,7 @@ var capacitorBlueIDAccess = (function (exports, core, protobuf) {
|
|
|
670
670
|
*/
|
|
671
671
|
BlueCredentialType[BlueCredentialType["Maintenance"] = 2] = "Maintenance";
|
|
672
672
|
/**
|
|
673
|
-
* Master can open all locks within the given site
|
|
673
|
+
* Master can open all locks within the given site
|
|
674
674
|
*
|
|
675
675
|
* @generated from enum value: Master = 3;
|
|
676
676
|
*/
|
|
@@ -681,6 +681,12 @@ var capacitorBlueIDAccess = (function (exports, core, protobuf) {
|
|
|
681
681
|
* @generated from enum value: NfcWriter = 4;
|
|
682
682
|
*/
|
|
683
683
|
BlueCredentialType[BlueCredentialType["NfcWriter"] = 4] = "NfcWriter";
|
|
684
|
+
/**
|
|
685
|
+
* Emergency can open all locks within given site, requires no refresh and has no validity
|
|
686
|
+
*
|
|
687
|
+
* @generated from enum value: Emergency = 5;
|
|
688
|
+
*/
|
|
689
|
+
BlueCredentialType[BlueCredentialType["Emergency"] = 5] = "Emergency";
|
|
684
690
|
})(exports.BlueCredentialType || (exports.BlueCredentialType = {}));
|
|
685
691
|
// Retrieve enum metadata with: proto2.getEnumType(BlueCredentialType)
|
|
686
692
|
protobuf.proto2.util.setEnumType(exports.BlueCredentialType, "BlueCredentialType", [
|
|
@@ -688,6 +694,7 @@ var capacitorBlueIDAccess = (function (exports, core, protobuf) {
|
|
|
688
694
|
{ no: 2, name: "Maintenance" },
|
|
689
695
|
{ no: 3, name: "Master" },
|
|
690
696
|
{ no: 4, name: "NfcWriter" },
|
|
697
|
+
{ no: 5, name: "Emergency" },
|
|
691
698
|
]);
|
|
692
699
|
/**
|
|
693
700
|
* @generated from enum BlueAccessType
|
|
@@ -1096,6 +1103,20 @@ var capacitorBlueIDAccess = (function (exports, core, protobuf) {
|
|
|
1096
1103
|
{ no: 0, name: "Standard" },
|
|
1097
1104
|
{ no: 1, name: "InterventionMedia" },
|
|
1098
1105
|
]);
|
|
1106
|
+
/**
|
|
1107
|
+
* @generated from enum BlueOssSoDoorGroupId
|
|
1108
|
+
*/
|
|
1109
|
+
exports.BlueOssSoDoorGroupId = void 0;
|
|
1110
|
+
(function (BlueOssSoDoorGroupId) {
|
|
1111
|
+
/**
|
|
1112
|
+
* @generated from enum value: MasterGroupId = 0;
|
|
1113
|
+
*/
|
|
1114
|
+
BlueOssSoDoorGroupId[BlueOssSoDoorGroupId["MasterGroupId"] = 0] = "MasterGroupId";
|
|
1115
|
+
})(exports.BlueOssSoDoorGroupId || (exports.BlueOssSoDoorGroupId = {}));
|
|
1116
|
+
// Retrieve enum metadata with: proto2.getEnumType(BlueOssSoDoorGroupId)
|
|
1117
|
+
protobuf.proto2.util.setEnumType(exports.BlueOssSoDoorGroupId, "BlueOssSoDoorGroupId", [
|
|
1118
|
+
{ no: 0, name: "MasterGroupId" },
|
|
1119
|
+
]);
|
|
1099
1120
|
/**
|
|
1100
1121
|
* @generated from enum BlueOssSoDoorInfoAccessBy
|
|
1101
1122
|
*/
|
|
@@ -1612,8 +1633,9 @@ var capacitorBlueIDAccess = (function (exports, core, protobuf) {
|
|
|
1612
1633
|
BlueOssAccessResult.fields = protobuf.proto2.util.newFieldList(() => [
|
|
1613
1634
|
{ no: 1, name: "accessGranted", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
1614
1635
|
{ no: 2, name: "accessType", kind: "enum", T: protobuf.proto2.getEnumType(exports.BlueAccessType) },
|
|
1615
|
-
{ no: 3, name: "
|
|
1616
|
-
{ no: 4, name: "
|
|
1636
|
+
{ no: 3, name: "accessInfo", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
1637
|
+
{ no: 4, name: "scheduleEndTime", kind: "message", T: BlueLocalTimestamp },
|
|
1638
|
+
{ no: 5, name: "scheduleMissmatch", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
1617
1639
|
]);
|
|
1618
1640
|
/**
|
|
1619
1641
|
* @generated from message BlueOssAccessEventsResult
|
|
@@ -2807,6 +2829,7 @@ var capacitorBlueIDAccess = (function (exports, core, protobuf) {
|
|
|
2807
2829
|
get BlueEventInfoAccess () { return exports.BlueEventInfoAccess; },
|
|
2808
2830
|
get BlueOssCredentialTypeSource () { return exports.BlueOssCredentialTypeSource; },
|
|
2809
2831
|
get BlueOssSoCredentialTypeOssCredential () { return exports.BlueOssSoCredentialTypeOssCredential; },
|
|
2832
|
+
get BlueOssSoDoorGroupId () { return exports.BlueOssSoDoorGroupId; },
|
|
2810
2833
|
get BlueOssSoDoorInfoAccessBy () { return exports.BlueOssSoDoorInfoAccessBy; },
|
|
2811
2834
|
get BlueOssSoFileId () { return exports.BlueOssSoFileId; },
|
|
2812
2835
|
BlueSharedDemoData: BlueSharedDemoData,
|