diff --git a/packages/sample-server/package.json b/packages/sample-server/package.json index fc8fdda..a24e98a 100644 --- a/packages/sample-server/package.json +++ b/packages/sample-server/package.json @@ -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", diff --git a/packages/sdk/package.json b/packages/sdk/package.json index d38e11a..d5ff188 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -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", diff --git a/packages/sdk/src/api/VCLXVnfProtocolVersion.ts b/packages/sdk/src/api/VCLXVnfProtocolVersion.ts index eb9e471..11fbf95 100644 --- a/packages/sdk/src/api/VCLXVnfProtocolVersion.ts +++ b/packages/sdk/src/api/VCLXVnfProtocolVersion.ts @@ -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; \ No newline at end of file diff --git a/packages/sdk/src/index.ts b/packages/sdk/src/index.ts index 79612f1..364a516 100644 --- a/packages/sdk/src/index.ts +++ b/packages/sdk/src/index.ts @@ -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"; @@ -68,6 +69,7 @@ export { VCLJwtSignService, VCLJwtVerifyService, VCLEnvironment, + VCLXVnfProtocolVersion, VCLStatusCode, VCLErrorCode, VCLServiceType,