Skip to content

Commit

Permalink
Merge pull request #88 from velocitycareerlabs/VL-7981-proof
Browse files Browse the repository at this point in the history
v0.9.6
  • Loading branch information
michaelavoyan authored Jun 3, 2024
2 parents 2553807 + e48d390 commit 4c791c3
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/sample-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"@fastify/autoload": "~5.7.1",
"env-var": "~7.3.0",
"fastify": "~4.15.0",
"@velocitycareerlabs/vnf-nodejs-wallet-sdk": "^0.9.5"
"@velocitycareerlabs/vnf-nodejs-wallet-sdk": "^0.9.6"
},
"devDependencies": {
"@jest/globals": "~29.5.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@velocitycareerlabs/vnf-nodejs-wallet-sdk",
"version": "0.9.5",
"version": "0.9.6",
"description": "VNF Wallet SDK Nodejs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
11 changes: 10 additions & 1 deletion packages/sdk/src/api/VCLXVnfProtocolVersion.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
export enum VCLXVnfProtocolVersion {
/**
* Created by Michael Avoyan on 03/06/2024.
*
* Copyright 2022 Velocity Career Labs inc.
* SPDX-License-Identifier: Apache-2.0
*/

enum VCLXVnfProtocolVersion {
XVnfProtocolVersion1 = "1.0",
XVnfProtocolVersion2 = "2.0"
}

export default VCLXVnfProtocolVersion;
2 changes: 2 additions & 0 deletions packages/sdk/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import VCLKeyService from "./api/keys/VCLKeyService";
import VCLJwtSignService from "./api/jwt/VCLJwtSignService";
import VCLJwtVerifyService from "./api/jwt/VCLJwtVerifyService";
import VCLEnvironment from "./api/VCLEnvironment";
import VCLXVnfProtocolVersion from "./api/VCLXVnfProtocolVersion";
import VCLCountry from "./api/entities/VCLCountry";
import VCLCountries from "./api/entities/VCLCountries";
import VCLCountryCodes from "./api/entities/VCLCountries";
Expand Down Expand Up @@ -68,6 +69,7 @@ export {
VCLJwtSignService,
VCLJwtVerifyService,
VCLEnvironment,
VCLXVnfProtocolVersion,
VCLStatusCode,
VCLErrorCode,
VCLServiceType,
Expand Down

0 comments on commit 4c791c3

Please sign in to comment.