From ca4d26ead990958c99edaa4b780558545d5a04b3 Mon Sep 17 00:00:00 2001 From: Omri Levy Date: Mon, 22 Apr 2024 10:48:45 +0300 Subject: [PATCH] refactor(common): updated document schemas --- apps/backoffice-v2/CHANGELOG.md | 9 ++ apps/backoffice-v2/package.json | 8 +- apps/kyb-app/CHANGELOG.md | 8 + apps/kyb-app/package.json | 6 +- examples/headless-example/CHANGELOG.md | 8 + examples/headless-example/package.json | 6 +- packages/common/CHANGELOG.md | 6 + packages/common/package.json | 2 +- .../workflow/documents/schemas/GH.ts | 131 ++++++++++++++++ .../workflow/documents/schemas/UG.ts | 147 ++++++++++++++++++ packages/workflow-core/CHANGELOG.md | 7 + packages/workflow-core/package.json | 4 +- pnpm-lock.yaml | 32 ++-- sdks/web-ui-sdk/CHANGELOG.md | 7 + sdks/web-ui-sdk/package.json | 4 +- sdks/workflow-browser-sdk/CHANGELOG.md | 8 + sdks/workflow-browser-sdk/package.json | 6 +- sdks/workflow-node-sdk/CHANGELOG.md | 6 + sdks/workflow-node-sdk/package.json | 4 +- services/workflows-service/CHANGELOG.md | 9 ++ services/workflows-service/package.json | 8 +- .../workflows-service/prisma/data-migrations | 2 +- websites/docs/package.json | 2 +- 23 files changed, 388 insertions(+), 42 deletions(-) diff --git a/apps/backoffice-v2/CHANGELOG.md b/apps/backoffice-v2/CHANGELOG.md index 8573cbf015..b710e706ce 100644 --- a/apps/backoffice-v2/CHANGELOG.md +++ b/apps/backoffice-v2/CHANGELOG.md @@ -1,5 +1,14 @@ # @ballerine/backoffice-v2 +## 0.7.6 + +### Patch Changes + +- Updated dependencies + - @ballerine/common@0.9.4 + - @ballerine/workflow-browser-sdk@0.6.7 + - @ballerine/workflow-node-sdk@0.6.7 + ## 0.7.5 ### Patch Changes diff --git a/apps/backoffice-v2/package.json b/apps/backoffice-v2/package.json index a37375f2db..d50bf70bc0 100644 --- a/apps/backoffice-v2/package.json +++ b/apps/backoffice-v2/package.json @@ -1,6 +1,6 @@ { "name": "@ballerine/backoffice-v2", - "version": "0.7.5", + "version": "0.7.6", "description": "Ballerine - Backoffice", "homepage": "https://github.com/ballerine-io/ballerine", "repository": { @@ -51,10 +51,10 @@ }, "dependencies": { "@ballerine/blocks": "0.2.2", - "@ballerine/common": "0.9.3", + "@ballerine/common": "0.9.4", "@ballerine/ui": "^0.5.1", - "@ballerine/workflow-browser-sdk": "0.6.6", - "@ballerine/workflow-node-sdk": "0.6.6", + "@ballerine/workflow-browser-sdk": "0.6.7", + "@ballerine/workflow-node-sdk": "0.6.7", "@fontsource/inter": "^4.5.15", "@formkit/auto-animate": "1.0.0-beta.5", "@hookform/resolvers": "^3.1.0", diff --git a/apps/kyb-app/CHANGELOG.md b/apps/kyb-app/CHANGELOG.md index f802246bbc..6a0999cc8a 100644 --- a/apps/kyb-app/CHANGELOG.md +++ b/apps/kyb-app/CHANGELOG.md @@ -1,5 +1,13 @@ # kyb-app +## 0.3.7 + +### Patch Changes + +- Updated dependencies + - @ballerine/common@0.9.4 + - @ballerine/workflow-browser-sdk@0.6.7 + ## 0.3.6 ### Patch Changes diff --git a/apps/kyb-app/package.json b/apps/kyb-app/package.json index f251056595..a99f773913 100644 --- a/apps/kyb-app/package.json +++ b/apps/kyb-app/package.json @@ -1,7 +1,7 @@ { "name": "@ballerine/kyb-app", "private": true, - "version": "0.3.6", + "version": "0.3.7", "type": "module", "scripts": { "dev": "vite", @@ -15,9 +15,9 @@ }, "dependencies": { "@ballerine/blocks": "0.2.2", - "@ballerine/common": "^0.9.3", + "@ballerine/common": "^0.9.4", "@ballerine/ui": "0.5.2", - "@ballerine/workflow-browser-sdk": "0.6.6", + "@ballerine/workflow-browser-sdk": "0.6.7", "@lukemorales/query-key-factory": "^1.0.3", "@radix-ui/react-icons": "^1.3.0", "@rjsf/core": "^5.9.0", diff --git a/examples/headless-example/CHANGELOG.md b/examples/headless-example/CHANGELOG.md index 7b5a9c0133..7f7e825ac6 100644 --- a/examples/headless-example/CHANGELOG.md +++ b/examples/headless-example/CHANGELOG.md @@ -1,5 +1,13 @@ # @ballerine/headless-example +## 0.3.6 + +### Patch Changes + +- Updated dependencies + - @ballerine/common@0.9.4 + - @ballerine/workflow-browser-sdk@0.6.7 + ## 0.3.5 ### Patch Changes diff --git a/examples/headless-example/package.json b/examples/headless-example/package.json index 47077050de..5c52f25910 100644 --- a/examples/headless-example/package.json +++ b/examples/headless-example/package.json @@ -1,7 +1,7 @@ { "name": "@ballerine/headless-example", "private": true, - "version": "0.3.5", + "version": "0.3.6", "type": "module", "scripts": { "spellcheck": "cspell \"*\"", @@ -34,8 +34,8 @@ "vite": "^4.5.3" }, "dependencies": { - "@ballerine/common": "0.9.3", - "@ballerine/workflow-browser-sdk": "0.6.6", + "@ballerine/common": "0.9.4", + "@ballerine/workflow-browser-sdk": "0.6.7", "@felte/reporter-svelte": "^1.1.5", "@felte/validator-zod": "^1.0.13", "@fontsource/inter": "^4.5.15", diff --git a/packages/common/CHANGELOG.md b/packages/common/CHANGELOG.md index 31fe10dc40..b78eee7f80 100644 --- a/packages/common/CHANGELOG.md +++ b/packages/common/CHANGELOG.md @@ -1,5 +1,11 @@ # @ballerine/common +## 0.9.4 + +### Patch Changes + +- updated document schemas + ## 0.9.3 ### Patch Changes diff --git a/packages/common/package.json b/packages/common/package.json index a913797a74..3be7d7caff 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -2,7 +2,7 @@ "private": false, "name": "@ballerine/common", "author": "Ballerine ", - "version": "0.9.3", + "version": "0.9.4", "description": "common", "module": "./dist/esm/index.js", "main": "./dist/cjs/index.js", diff --git a/packages/common/src/schemas/documents/workflow/documents/schemas/GH.ts b/packages/common/src/schemas/documents/workflow/documents/schemas/GH.ts index 1924354272..9643c489c2 100644 --- a/packages/common/src/schemas/documents/workflow/documents/schemas/GH.ts +++ b/packages/common/src/schemas/documents/workflow/documents/schemas/GH.ts @@ -26,6 +26,20 @@ export const getGhanaDocuments = (): TDocument[] => { return [ // Financial Information + { + category: 'financial_information', + type: 'mtn_statement', + issuer: { country: 'GH' }, + issuingVersion: 1, + version: 1, + propertiesSchema: Type.Object({ + msisdn: Type.String({ pattern: '^233[0-9]{9}$' }), + accountHolderName: Type.String(), + from: Type.Optional(Type.String({ format: 'date' })), + to: Type.Optional(Type.String({ format: 'date' })), + timeRun: Type.Optional(Type.String()), + }), + }, { category: 'business_document', type: 'mtn_statement', @@ -94,6 +108,44 @@ export const getGhanaDocuments = (): TDocument[] => { accountNumber: Type.Optional(Type.String()), }), }, + { + category: 'financial_information', + type: 'bank_statement', + issuer: { country: 'GH' }, + issuingVersion: 1, + version: 1, + propertiesSchema: Type.Object({ + issuer: TypeStringEnum([ + 'Absa Bank Ghana Limited', + 'Access Bank Ghana Plc', + 'Agricultural Development Bank of Ghana', + 'Bank of Africa Ghana Limited', + 'CalBank Limited', + 'Consolidated Bank Ghana Limited', + 'Ecobank Ghana Limited', + 'FBN Bank Ghana Limited', + 'Fidelity Bank Ghana Limited', + 'First Atlantic Bank Limited', + 'First National Bank Ghana', + 'GCB Bank Limited', + 'Guaranty Trust Bank Ghana Limited', + 'National Investment Bank Limited', + 'OmniBSIC Bank Ghana Limited', + 'Prudential Bank Limited', + 'Republic Bank Ghana', + 'Societe Generale Ghana Limited', + 'Stanbic Bank Ghana Limited', + 'Standard Chartered Bank Ghana Limited', + 'United Bank for Africa Ghana Limited', + 'Zenith Bank Ghana Limited', + ]), + printDate: Type.String({ format: 'date-time' }), + accountHolderName: TypeNonEmptyString, + from: Type.String({ format: 'date' }), + to: Type.String({ format: 'date' }), + accountNumber: Type.Optional(Type.String()), + }), + }, // Proof of Address { category: 'proof_of_address', @@ -669,6 +721,19 @@ export const getGhanaDocuments = (): TDocument[] => { issueDate: TypePastDate, }), }, + { + category: 'proof_of_registration', + type: 'certificate_of_registration', + issuer: { country: 'GH' }, + issuingVersion: 1, + version: 1, + propertiesSchema: Type.Object({ + businessName: Type.String(), + taxIdNumber: TypeAlphanumericString, + registrationNumber: TypeAlphanumericString, + issueDate: TypePastDate, + }), + }, { category: 'business_document', type: 'operating_permit', @@ -682,6 +747,19 @@ export const getGhanaDocuments = (): TDocument[] => { expirationDate: TypeFutureDate, }), }, + { + category: 'proof_of_registration', + type: 'operating_permit', + issuer: { country: 'GH' }, + issuingVersion: 1, + version: 1, + propertiesSchema: Type.Object({ + businessName: Type.String(), + registrationNumber: Type.Optional(TypeAlphanumericString), + issueDate: TypePastDate, + expirationDate: TypeFutureDate, + }), + }, { category: 'business_document', type: 'district_assembly_certificate', @@ -695,6 +773,19 @@ export const getGhanaDocuments = (): TDocument[] => { issueDate: TypePastDate, }), }, + { + category: 'proof_of_registration', + type: 'district_assembly_certificate', + issuer: { country: 'GH' }, + issuingVersion: 1, + version: 1, + propertiesSchema: Type.Object({ + certificateNumber: TypeAlphanumericString, + businessName: TypeAlphanumericWithSpacesString, + registrationNumber: Type.Optional(TypeAlphanumericString), + issueDate: TypePastDate, + }), + }, // Proof of Ownership { category: 'business_document', @@ -713,6 +804,23 @@ export const getGhanaDocuments = (): TDocument[] => { dateOfBirth: TypePastDate, }), }, + { + category: 'proof_of_ownership', + type: 'form_a', + issuer: { country: 'GH' }, + issuingVersion: 1, + version: 1, + propertiesSchema: Type.Object({ + businessName: Type.String(), + registrationNumber: TypeNonEmptyAlphanumericString, + taxIdNumber: TypeAlphanumericString, + issueDate: TypePastDate, + firstName: Type.String(), + middleName: Type.Optional(Type.String()), + lastName: Type.String(), + dateOfBirth: TypePastDate, + }), + }, { category: 'business_document', type: 'receipt_for_permit', @@ -724,6 +832,17 @@ export const getGhanaDocuments = (): TDocument[] => { issueDate: TypePastDate, }), }, + { + category: 'proof_of_ownership', + type: 'receipt_for_permit', + issuer: { country: 'GH' }, + issuingVersion: 1, + version: 1, + propertiesSchema: Type.Object({ + businessName: Type.String(), + issueDate: TypePastDate, + }), + }, { category: 'business_document', type: 'property_rate', @@ -736,6 +855,18 @@ export const getGhanaDocuments = (): TDocument[] => { issueDate: TypePastDate, }), }, + { + category: 'proof_of_ownership', + type: 'property_rate', + issuer: { country: 'GH' }, + issuingVersion: 1, + version: 1, + propertiesSchema: Type.Object({ + businessName: Type.String(), + payerName: Type.String(), + issueDate: TypePastDate, + }), + }, { category: 'proof_of_ownership', type: 'business_utility_bill', diff --git a/packages/common/src/schemas/documents/workflow/documents/schemas/UG.ts b/packages/common/src/schemas/documents/workflow/documents/schemas/UG.ts index 39c72ce883..e6505ab9f2 100644 --- a/packages/common/src/schemas/documents/workflow/documents/schemas/UG.ts +++ b/packages/common/src/schemas/documents/workflow/documents/schemas/UG.ts @@ -27,6 +27,18 @@ export const getUgandaDocuments = (): TDocument[] => { issueDate: TypePastDate, }), }, + { + category: 'proof_of_registration', + type: 'certificate_of_registration', + issuer: { country: 'UG' }, + issuingVersion: 1, + version: 1, + propertiesSchema: Type.Object({ + businessName: Type.String(), + registrationNumber: TypeAlphanumericString, + issueDate: TypePastDate, + }), + }, { category: 'business_document', type: 'trade_license', @@ -41,6 +53,33 @@ export const getUgandaDocuments = (): TDocument[] => { ownerName: Type.String(), }), }, + { + category: 'proof_of_registration', + type: 'trade_license', + issuer: { country: 'UG' }, + issuingVersion: 1, + version: 1, + propertiesSchema: Type.Object({ + businessName: Type.String(), + prnNumber: TypeAlphanumericString, + issuer: TypeStringEnum(['KCCA', 'Other']), + expirationDate: Type.String({ format: 'date' }), + }), + }, + { + category: 'proof_of_ownership', + type: 'trade_license', + issuer: { country: 'UG' }, + issuingVersion: 1, + version: 1, + propertiesSchema: Type.Object({ + businessName: Type.String(), + registrationNumber: TypeAlphanumericString, + issuer: TypeStringEnum(['KCCA', 'Other']), + expirationDate: Type.String({ format: 'date' }), + ownerName: Type.String(), + }), + }, { category: 'business_document', type: 'association_letter', @@ -54,6 +93,19 @@ export const getUgandaDocuments = (): TDocument[] => { issueDate: TypePastDate, }), }, + { + category: 'proof_of_registration', + type: 'association_letter', + issuer: { country: 'UG' }, + issuingVersion: 1, + version: 1, + propertiesSchema: Type.Object({ + isOwnerNameOnDocument: Type.Boolean(), + isValidIssuer: Type.Boolean(), + isDocumentStampedAndValid: Type.Boolean(), + issueDate: TypePastDate, + }), + }, // Business Ownership { @@ -70,6 +122,20 @@ export const getUgandaDocuments = (): TDocument[] => { ownerName: Type.String(), }), }, + { + category: 'proof_of_ownership', + type: 'business_registration_form', + issuer: { country: 'UG' }, + issuingVersion: 1, + version: 1, + propertiesSchema: Type.Object({ + registrationNumber: TypeAlphanumericString, + businessName: Type.String(), + taxIdNumber: Type.String(), + issueDate: TypePastDate, + ownerName: Type.String(), + }), + }, // Financial Statement { @@ -86,6 +152,20 @@ export const getUgandaDocuments = (): TDocument[] => { accountHolderName: TypeNonEmptyString, }), }, + { + category: 'financial_information', + type: 'mtn_statement', + issuer: { country: 'UG' }, + issuingVersion: 1, + version: 1, + propertiesSchema: Type.Object({ + dateOfStatement: Type.Optional(Type.String()), + from: Type.String({ format: 'date' }), + to: Type.String({ format: 'date' }), + msisdn: TypeUgandaMobileNumber, + accountHolderName: TypeNonEmptyString, + }), + }, { category: 'business_document', type: 'airtel_statement', @@ -99,6 +179,19 @@ export const getUgandaDocuments = (): TDocument[] => { accountHolderName: TypeNonEmptyString, }), }, + { + category: 'financial_information', + type: 'airtel_statement', + issuer: { country: 'UG' }, + issuingVersion: 1, + version: 1, + propertiesSchema: Type.Object({ + from: Type.String({ format: 'date' }), + to: Type.String({ format: 'date' }), + msisdn: TypeUgandaMobileNumber, + accountHolderName: TypeNonEmptyString, + }), + }, { category: 'business_document', type: 'bank_statement', @@ -141,6 +234,48 @@ export const getUgandaDocuments = (): TDocument[] => { accountNumber: Type.Optional(Type.String()), }), }, + { + category: 'financial_information', + type: 'bank_statement', + issuer: { country: 'UG' }, + issuingVersion: 1, + version: 1, + propertiesSchema: Type.Object({ + bankName: TypeStringEnum([ + 'ABC Bank Uganda Limited', + 'Absa Bank Uganda Limited', + 'Bank of Africa Uganda Limited', + 'Bank of Baroda Uganda Limited', + 'Bank of India Uganda Limited', + 'Cairo Bank Uganda', + 'Centenary Bank', + 'Citibank Uganda', + 'DFCU Bank', + 'Diamond Trust Bank', + 'Ecobank Uganda', + 'Equity Bank Uganda Limited', + 'Exim Bank (Uganda)', + 'Finance Trust Bank', + 'Guaranty Trust Bank', + 'Housing Finance Bank', + 'I&M Bank Uganda', + 'KCB Bank Uganda Limited', + 'NCBA Bank Uganda', + 'Opportunity Bank Uganda Limited', + 'PostBank Uganda', + 'Stanbic Bank Uganda Limited', + 'Standard Chartered Uganda', + 'Tropical Bank', + 'United Bank for Africa', + 'Other', + ]), + printDate: Type.Optional(Type.String({ format: 'date' })), + from: Type.String({ format: 'date' }), + to: Type.String({ format: 'date' }), + accountHolderName: TypeNonEmptyString, + accountNumber: Type.Optional(Type.String()), + }), + }, // Proof of Address { @@ -217,6 +352,18 @@ export const getUgandaDocuments = (): TDocument[] => { issueDate: TypePastDate, }), }, + { + category: 'proof_of_ownership', + type: 'property_rate', + issuer: { country: 'UG' }, + issuingVersion: 1, + version: 1, + propertiesSchema: Type.Object({ + businessName: Type.String(), + payerName: Type.String(), + issueDate: TypePastDate, + }), + }, { category: 'proof_of_ownership', type: 'business_utility_bill', diff --git a/packages/workflow-core/CHANGELOG.md b/packages/workflow-core/CHANGELOG.md index d2a42664a3..0da381426c 100644 --- a/packages/workflow-core/CHANGELOG.md +++ b/packages/workflow-core/CHANGELOG.md @@ -1,5 +1,12 @@ # @ballerine/workflow-core +## 0.6.7 + +### Patch Changes + +- Updated dependencies + - @ballerine/common@0.9.4 + ## 0.6.6 ### Patch Changes diff --git a/packages/workflow-core/package.json b/packages/workflow-core/package.json index 053c28ae0b..4ff1af8c77 100644 --- a/packages/workflow-core/package.json +++ b/packages/workflow-core/package.json @@ -1,7 +1,7 @@ { "name": "@ballerine/workflow-core", "author": "Ballerine ", - "version": "0.6.6", + "version": "0.6.7", "description": "workflow-core", "module": "./dist/esm/index.js", "main": "./dist/cjs/index.js", @@ -31,7 +31,7 @@ "node": ">=12" }, "dependencies": { - "@ballerine/common": "0.9.3", + "@ballerine/common": "0.9.4", "ajv": "^8.12.0", "i18n-iso-countries": "^7.6.0", "jmespath": "^0.16.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b6be68ee09..e89ee186bd 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -64,16 +64,16 @@ importers: specifier: 0.2.2 version: link:../../packages/blocks '@ballerine/common': - specifier: 0.9.3 + specifier: 0.9.4 version: link:../../packages/common '@ballerine/ui': specifier: ^0.5.1 version: link:../../packages/ui '@ballerine/workflow-browser-sdk': - specifier: 0.6.6 + specifier: 0.6.7 version: link:../../sdks/workflow-browser-sdk '@ballerine/workflow-node-sdk': - specifier: 0.6.6 + specifier: 0.6.7 version: link:../../sdks/workflow-node-sdk '@fontsource/inter': specifier: ^4.5.15 @@ -389,13 +389,13 @@ importers: specifier: 0.2.2 version: link:../../packages/blocks '@ballerine/common': - specifier: ^0.9.3 + specifier: ^0.9.4 version: link:../../packages/common '@ballerine/ui': specifier: 0.5.2 version: link:../../packages/ui '@ballerine/workflow-browser-sdk': - specifier: 0.6.6 + specifier: 0.6.7 version: link:../../sdks/workflow-browser-sdk '@lukemorales/query-key-factory': specifier: ^1.0.3 @@ -820,10 +820,10 @@ importers: examples/headless-example: dependencies: '@ballerine/common': - specifier: 0.9.3 + specifier: 0.9.4 version: link:../../packages/common '@ballerine/workflow-browser-sdk': - specifier: 0.6.6 + specifier: 0.6.7 version: link:../../sdks/workflow-browser-sdk '@felte/reporter-svelte': specifier: ^1.1.5 @@ -1723,7 +1723,7 @@ importers: packages/workflow-core: dependencies: '@ballerine/common': - specifier: 0.9.3 + specifier: 0.9.4 version: link:../common ajv: specifier: ^8.12.0 @@ -1886,7 +1886,7 @@ importers: sdks/web-ui-sdk: dependencies: '@ballerine/common': - specifier: 0.9.3 + specifier: 0.9.4 version: link:../../packages/common '@zerodevx/svelte-toast': specifier: ^0.8.0 @@ -2013,10 +2013,10 @@ importers: sdks/workflow-browser-sdk: dependencies: '@ballerine/common': - specifier: 0.9.3 + specifier: 0.9.4 version: link:../../packages/common '@ballerine/workflow-core': - specifier: 0.6.6 + specifier: 0.6.7 version: link:../../packages/workflow-core xstate: specifier: ^4.37.0 @@ -2155,7 +2155,7 @@ importers: sdks/workflow-node-sdk: dependencies: '@ballerine/workflow-core': - specifier: 0.6.6 + specifier: 0.6.7 version: link:../../packages/workflow-core json-logic-js: specifier: ^2.0.2 @@ -2397,13 +2397,13 @@ importers: specifier: 3.347.1 version: 3.347.1 '@ballerine/common': - specifier: 0.9.3 + specifier: 0.9.4 version: link:../../packages/common '@ballerine/workflow-core': - specifier: 0.6.6 + specifier: 0.6.7 version: link:../../packages/workflow-core '@ballerine/workflow-node-sdk': - specifier: 0.6.6 + specifier: 0.6.7 version: link:../../sdks/workflow-node-sdk '@faker-js/faker': specifier: ^7.6.0 @@ -2719,7 +2719,7 @@ importers: specifier: ^4.0.0 version: 4.0.0(astro@3.3.3)(tailwindcss@3.3.5)(ts-node@10.9.1) '@ballerine/common': - specifier: ^0.9.3 + specifier: ^0.9.4 version: link:../../packages/common astro: specifier: 3.3.3 diff --git a/sdks/web-ui-sdk/CHANGELOG.md b/sdks/web-ui-sdk/CHANGELOG.md index 21bc2d2561..9606dccee1 100644 --- a/sdks/web-ui-sdk/CHANGELOG.md +++ b/sdks/web-ui-sdk/CHANGELOG.md @@ -1,5 +1,12 @@ # web-ui-sdk +## 1.5.5 + +### Patch Changes + +- Updated dependencies + - @ballerine/common@0.9.4 + ## 1.5.4 ### Patch Changes diff --git a/sdks/web-ui-sdk/package.json b/sdks/web-ui-sdk/package.json index 3833479f02..ff1498ab9a 100644 --- a/sdks/web-ui-sdk/package.json +++ b/sdks/web-ui-sdk/package.json @@ -21,7 +21,7 @@ "types": "dist/index.d.ts", "name": "@ballerine/web-ui-sdk", "private": false, - "version": "1.5.4", + "version": "1.5.5", "type": "module", "files": [ "dist" @@ -96,7 +96,7 @@ "vitest": "^0.24.5" }, "dependencies": { - "@ballerine/common": "0.9.3", + "@ballerine/common": "0.9.4", "@zerodevx/svelte-toast": "^0.8.0", "compressorjs": "^1.1.1", "deepmerge": "^4.3.0", diff --git a/sdks/workflow-browser-sdk/CHANGELOG.md b/sdks/workflow-browser-sdk/CHANGELOG.md index f13cb7ac03..4658af666b 100644 --- a/sdks/workflow-browser-sdk/CHANGELOG.md +++ b/sdks/workflow-browser-sdk/CHANGELOG.md @@ -1,5 +1,13 @@ # @ballerine/workflow-browser-sdk +## 0.6.7 + +### Patch Changes + +- Updated dependencies + - @ballerine/common@0.9.4 + - @ballerine/workflow-core@0.6.7 + ## 0.6.6 ### Patch Changes diff --git a/sdks/workflow-browser-sdk/package.json b/sdks/workflow-browser-sdk/package.json index 5e8eb9b113..9d418ef23d 100644 --- a/sdks/workflow-browser-sdk/package.json +++ b/sdks/workflow-browser-sdk/package.json @@ -1,7 +1,7 @@ { "name": "@ballerine/workflow-browser-sdk", "author": "Ballerine ", - "version": "0.6.6", + "version": "0.6.7", "description": "workflow-browser-sdk", "module": "./dist/esm/index.js", "main": "./dist/cjs/index.js", @@ -33,8 +33,8 @@ "node": ">=12" }, "dependencies": { - "@ballerine/common": "0.9.3", - "@ballerine/workflow-core": "0.6.6", + "@ballerine/common": "0.9.4", + "@ballerine/workflow-core": "0.6.7", "xstate": "^4.37.0" }, "devDependencies": { diff --git a/sdks/workflow-node-sdk/CHANGELOG.md b/sdks/workflow-node-sdk/CHANGELOG.md index 189d0bf760..8933bf0cde 100644 --- a/sdks/workflow-node-sdk/CHANGELOG.md +++ b/sdks/workflow-node-sdk/CHANGELOG.md @@ -1,5 +1,11 @@ # @ballerine/workflow-node-sdk +## 0.6.7 + +### Patch Changes + +- @ballerine/workflow-core@0.6.7 + ## 0.6.6 ### Patch Changes diff --git a/sdks/workflow-node-sdk/package.json b/sdks/workflow-node-sdk/package.json index cfea761f69..f7b19f0732 100644 --- a/sdks/workflow-node-sdk/package.json +++ b/sdks/workflow-node-sdk/package.json @@ -1,7 +1,7 @@ { "name": "@ballerine/workflow-node-sdk", "author": "Ballerine ", - "version": "0.6.6", + "version": "0.6.7", "description": "workflow-node-sdk", "module": "./dist/esm/index.js", "main": "./dist/cjs/index.js", @@ -28,7 +28,7 @@ "node": ">=12" }, "dependencies": { - "@ballerine/workflow-core": "0.6.6", + "@ballerine/workflow-core": "0.6.7", "json-logic-js": "^2.0.2", "xstate": "^4.36.0" }, diff --git a/services/workflows-service/CHANGELOG.md b/services/workflows-service/CHANGELOG.md index 5d42dd77c9..68f35d65a9 100644 --- a/services/workflows-service/CHANGELOG.md +++ b/services/workflows-service/CHANGELOG.md @@ -1,5 +1,14 @@ # @ballerine/workflows-service +## 0.7.6 + +### Patch Changes + +- Updated dependencies + - @ballerine/common@0.9.4 + - @ballerine/workflow-core@0.6.7 + - @ballerine/workflow-node-sdk@0.6.7 + ## 0.7.5 ### Patch Changes diff --git a/services/workflows-service/package.json b/services/workflows-service/package.json index 23b878ff2c..2f9ef2d5da 100644 --- a/services/workflows-service/package.json +++ b/services/workflows-service/package.json @@ -1,7 +1,7 @@ { "name": "@ballerine/workflows-service", "private": false, - "version": "0.7.5", + "version": "0.7.6", "description": "workflow-service", "scripts": { "spellcheck": "cspell \"*\"", @@ -45,9 +45,9 @@ "@aws-sdk/client-s3": "3.347.1", "@aws-sdk/lib-storage": "3.347.1", "@aws-sdk/s3-request-presigner": "3.347.1", - "@ballerine/common": "0.9.3", - "@ballerine/workflow-core": "0.6.6", - "@ballerine/workflow-node-sdk": "0.6.6", + "@ballerine/common": "0.9.4", + "@ballerine/workflow-core": "0.6.7", + "@ballerine/workflow-node-sdk": "0.6.7", "@faker-js/faker": "^7.6.0", "@nestjs/axios": "^2.0.0", "@nestjs/common": "^9.3.12", diff --git a/services/workflows-service/prisma/data-migrations b/services/workflows-service/prisma/data-migrations index d12609bb5f..caac99a1ad 160000 --- a/services/workflows-service/prisma/data-migrations +++ b/services/workflows-service/prisma/data-migrations @@ -1 +1 @@ -Subproject commit d12609bb5f12d5ab48c7d51501b2e9f6e64aa15e +Subproject commit caac99a1ad91048502c5c31aa5165bc8c1415fd4 diff --git a/websites/docs/package.json b/websites/docs/package.json index 5c772d2906..e530926e9d 100644 --- a/websites/docs/package.json +++ b/websites/docs/package.json @@ -17,7 +17,7 @@ "dependencies": { "@astrojs/starlight": "0.11.1", "@astrojs/tailwind": "^4.0.0", - "@ballerine/common": "^0.9.3", + "@ballerine/common": "^0.9.4", "astro": "3.3.3", "sharp": "^0.32.4", "shiki": "^0.14.3"