diff --git a/android/build.gradle b/android/build.gradle index 3d1724d..c57d998 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -92,9 +92,9 @@ dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" //--------- Must: be added: - implementation "io.velocitycareerlabs:vcl:2.7.1" + implementation "io.velocitycareerlabs:vcl:2.7.2" implementation 'com.nimbusds:nimbus-jose-jwt:10.0.1' - implementation "androidx.security:security-crypto:1.1.0-alpha06" + implementation "androidx.security:security-crypto:1.1.0-alpha07" //------------------------- } diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock index 3c0b977..c1e5d15 100644 --- a/example/ios/Podfile.lock +++ b/example/ios/Podfile.lock @@ -1054,12 +1054,12 @@ PODS: - React-logger (= 0.73.6) - React-perflogger (= 0.73.6) - SocketRocket (0.6.1) - - VCL (2.7.1) - - velocitycareerlabs-vcl-react-native (2.7.1): + - VCL (2.7.2) + - velocitycareerlabs-vcl-react-native (2.7.2): - glog - RCT-Folly (= 2022.05.16.00) - React-Core - - VCL (= 2.7.1) + - VCL (= 2.7.2) - Yoga (1.14.0) DEPENDENCIES: @@ -1276,8 +1276,8 @@ SPEC CHECKSUMS: React-utils: 288c9cb9a73bb150c273c84df7c2f8546f28e23f ReactCommon: 2e5492a3e3a8e72d635c266405e49d12627e5bf0 SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17 - VCL: c3b7e075776bbbb1f3632f0533d9b44faeafc646 - velocitycareerlabs-vcl-react-native: e0d49c576438d8f2b4d8f471028ae9f3e3ed5eef + VCL: 4f0ecc3b624e34ec0395f9738aabd93d7369240b + velocitycareerlabs-vcl-react-native: a4f3df0dece79f9c6a0fcf2d8e376871e9dc5590 Yoga: 805bf71192903b20fc14babe48080582fee65a80 PODFILE CHECKSUM: dda665d1488c2a02df92eccd852bd6de0cd38761 diff --git a/package.json b/package.json index ff38572..73a1da3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@velocitycareerlabs/vcl-react-native", - "version": "2.7.1", + "version": "2.7.2", "description": "Velocity Career Labs React Native SDK", "main": "lib/commonjs/index", "module": "lib/module/index", diff --git a/src/api/entities/VCLPresentationRequest.ts b/src/api/entities/VCLPresentationRequest.ts index 0110f5b..9c92f46 100644 --- a/src/api/entities/VCLPresentationRequest.ts +++ b/src/api/entities/VCLPresentationRequest.ts @@ -18,6 +18,6 @@ export interface VCLPresentationRequest { presentationDefinitionId: string; iss: string; didJwk: VCLDidJwk; - feed: boolean; + feed?: boolean; remoteCryptoServicesToken?: VCLToken; } diff --git a/velocitycareerlabs-vcl-react-native.podspec b/velocitycareerlabs-vcl-react-native.podspec index 46fe8a9..533d18e 100644 --- a/velocitycareerlabs-vcl-react-native.podspec +++ b/velocitycareerlabs-vcl-react-native.podspec @@ -15,7 +15,7 @@ Pod::Spec.new do |s| s.source_files = "ios/**/*.{h,m,mm,swift}" - s.dependency "VCL", "2.7.1" + s.dependency "VCL", "2.7.2" # Use install_modules_dependencies helper to install the dependencies if React Native version >=0.71.0. # See https://github.com/facebook/react-native/blob/febf6b7f33fdb4904669f99d795eba4c0f95d7bf/scripts/cocoapods/new_architecture.rb#L79.