@blueid/access-capacitor 0.78.0 → 0.79.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 +43 -1
- package/dist/esm/BlueSDK_pb.js +59 -1
- package/dist/esm/BlueSDK_pb.js.map +1 -1
- package/dist/plugin.cjs.js +63 -1
- package/dist/plugin.cjs.js.map +1 -1
- package/dist/plugin.js +63 -1
- package/dist/plugin.js.map +1 -1
- package/ios/CBlueIDAccess.xcframework/Info.plist +8 -8
- package/ios/CBlueIDAccess.xcframework/ios-arm64/libCBlueIDAccess.a +0 -0
- package/ios/CBlueIDAccess.xcframework/ios-arm64_x86_64-simulator/libCBlueIDAccess.a +0 -0
- package/ios/CBlueIDAccess.xcframework/macos-arm64_x86_64/libCBlueIDAccess.a +0 -0
- package/ios/Plugin/BlueIDAccessSDK/BlueAccessSync.swift +66 -3
- package/ios/Plugin/BlueIDAccessSDK/BlueCommands.swift +1 -0
- package/ios/Plugin/BlueIDAccessSDK/BlueSDK.pb.swift +147 -0
- package/ios/Plugin/BlueIDAccessSDK/Extensions.swift +6 -0
- package/package.json +1 -1
package/dist/plugin.js
CHANGED
|
@@ -3339,6 +3339,64 @@ var capacitorBlueIDAccess = (function (exports, core, protobuf) {
|
|
|
3339
3339
|
BlueRefreshOssSoCredentials.fields = protobuf.proto2.util.newFieldList(() => [
|
|
3340
3340
|
{ no: 1, name: "credentials", kind: "message", T: BlueRefreshOssSoCredential, repeated: true },
|
|
3341
3341
|
]);
|
|
3342
|
+
/**
|
|
3343
|
+
* @generated from message BlueSynchronizeAccessCredential
|
|
3344
|
+
*/
|
|
3345
|
+
class BlueSynchronizeAccessCredential extends protobuf.Message {
|
|
3346
|
+
constructor(data) {
|
|
3347
|
+
super();
|
|
3348
|
+
protobuf.proto2.util.initPartial(data, this);
|
|
3349
|
+
}
|
|
3350
|
+
static fromBinary(bytes, options) {
|
|
3351
|
+
return new BlueSynchronizeAccessCredential().fromBinary(bytes, options);
|
|
3352
|
+
}
|
|
3353
|
+
static fromJson(jsonValue, options) {
|
|
3354
|
+
return new BlueSynchronizeAccessCredential().fromJson(jsonValue, options);
|
|
3355
|
+
}
|
|
3356
|
+
static fromJsonString(jsonString, options) {
|
|
3357
|
+
return new BlueSynchronizeAccessCredential().fromJsonString(jsonString, options);
|
|
3358
|
+
}
|
|
3359
|
+
static equals(a, b) {
|
|
3360
|
+
return protobuf.proto2.util.equals(BlueSynchronizeAccessCredential, a, b);
|
|
3361
|
+
}
|
|
3362
|
+
}
|
|
3363
|
+
BlueSynchronizeAccessCredential.runtime = protobuf.proto2;
|
|
3364
|
+
BlueSynchronizeAccessCredential.typeName = "BlueSynchronizeAccessCredential";
|
|
3365
|
+
BlueSynchronizeAccessCredential.fields = protobuf.proto2.util.newFieldList(() => [
|
|
3366
|
+
{ no: 1, name: "credentialId", kind: "message", T: BlueCredentialId },
|
|
3367
|
+
{ no: 2, name: "returnCode", kind: "enum", T: protobuf.proto2.getEnumType(exports.BlueReturnCode) },
|
|
3368
|
+
{ no: 3, name: "errorDescription", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
3369
|
+
]);
|
|
3370
|
+
/**
|
|
3371
|
+
* @generated from message BlueSynchronizeAccessCredentials
|
|
3372
|
+
*/
|
|
3373
|
+
class BlueSynchronizeAccessCredentials extends protobuf.Message {
|
|
3374
|
+
constructor(data) {
|
|
3375
|
+
super();
|
|
3376
|
+
/**
|
|
3377
|
+
* @generated from field: repeated BlueSynchronizeAccessCredential credentials = 1;
|
|
3378
|
+
*/
|
|
3379
|
+
this.credentials = [];
|
|
3380
|
+
protobuf.proto2.util.initPartial(data, this);
|
|
3381
|
+
}
|
|
3382
|
+
static fromBinary(bytes, options) {
|
|
3383
|
+
return new BlueSynchronizeAccessCredentials().fromBinary(bytes, options);
|
|
3384
|
+
}
|
|
3385
|
+
static fromJson(jsonValue, options) {
|
|
3386
|
+
return new BlueSynchronizeAccessCredentials().fromJson(jsonValue, options);
|
|
3387
|
+
}
|
|
3388
|
+
static fromJsonString(jsonString, options) {
|
|
3389
|
+
return new BlueSynchronizeAccessCredentials().fromJsonString(jsonString, options);
|
|
3390
|
+
}
|
|
3391
|
+
static equals(a, b) {
|
|
3392
|
+
return protobuf.proto2.util.equals(BlueSynchronizeAccessCredentials, a, b);
|
|
3393
|
+
}
|
|
3394
|
+
}
|
|
3395
|
+
BlueSynchronizeAccessCredentials.runtime = protobuf.proto2;
|
|
3396
|
+
BlueSynchronizeAccessCredentials.typeName = "BlueSynchronizeAccessCredentials";
|
|
3397
|
+
BlueSynchronizeAccessCredentials.fields = protobuf.proto2.util.newFieldList(() => [
|
|
3398
|
+
{ no: 1, name: "credentials", kind: "message", T: BlueSynchronizeAccessCredential, repeated: true },
|
|
3399
|
+
]);
|
|
3342
3400
|
|
|
3343
3401
|
var BlueSDK = /*#__PURE__*/Object.freeze({
|
|
3344
3402
|
__proto__: null,
|
|
@@ -3355,7 +3413,9 @@ var capacitorBlueIDAccess = (function (exports, core, protobuf) {
|
|
|
3355
3413
|
BlueAccessObject: BlueAccessObject,
|
|
3356
3414
|
BlueAccessObjectList: BlueAccessObjectList,
|
|
3357
3415
|
BlueRefreshOssSoCredential: BlueRefreshOssSoCredential,
|
|
3358
|
-
BlueRefreshOssSoCredentials: BlueRefreshOssSoCredentials
|
|
3416
|
+
BlueRefreshOssSoCredentials: BlueRefreshOssSoCredentials,
|
|
3417
|
+
BlueSynchronizeAccessCredential: BlueSynchronizeAccessCredential,
|
|
3418
|
+
BlueSynchronizeAccessCredentials: BlueSynchronizeAccessCredentials
|
|
3359
3419
|
});
|
|
3360
3420
|
|
|
3361
3421
|
// @generated by protoc-gen-es v1.4.0 with parameter "target=ts"
|
|
@@ -4206,6 +4266,8 @@ var capacitorBlueIDAccess = (function (exports, core, protobuf) {
|
|
|
4206
4266
|
exports.BlueSPToken = BlueSPToken;
|
|
4207
4267
|
exports.BlueSPTokenCommand = BlueSPTokenCommand;
|
|
4208
4268
|
exports.BlueSharedDemoData = BlueSharedDemoData;
|
|
4269
|
+
exports.BlueSynchronizeAccessCredential = BlueSynchronizeAccessCredential;
|
|
4270
|
+
exports.BlueSynchronizeAccessCredentials = BlueSynchronizeAccessCredentials;
|
|
4209
4271
|
exports.BlueSystemConfig = BlueSystemConfig;
|
|
4210
4272
|
exports.BlueSystemLogEntry = BlueSystemLogEntry;
|
|
4211
4273
|
exports.BlueSystemLogQuery = BlueSystemLogQuery;
|