From 53003e98d64fdee39b522df6ffb9f0b1acdd9493 Mon Sep 17 00:00:00 2001 From: Colin Frederickson <110066636+colinfrederickson@users.noreply.github.com> Date: Wed, 18 Oct 2023 14:56:51 -0600 Subject: [PATCH 1/8] Add "next" URL to job completion response (#280) * Add "next" URL to job completion response Added a "next" action in the job completion response that redirects users to the "Available Downloads" section of the Files page in Flatfile. This enhancement provides a smoother user experience by guiding users directly to their exported files. * fix: relative url * Create few-suits-rule.md --------- Co-authored-by: Carl Brugger --- .changeset/few-suits-rule.md | 5 +++++ plugins/export-workbook/src/plugin.ts | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 .changeset/few-suits-rule.md diff --git a/.changeset/few-suits-rule.md b/.changeset/few-suits-rule.md new file mode 100644 index 000000000..b2d9ed225 --- /dev/null +++ b/.changeset/few-suits-rule.md @@ -0,0 +1,5 @@ +--- +'@flatfile/plugin-export-workbook': patch +--- + +Add "Next" url to job completion message diff --git a/plugins/export-workbook/src/plugin.ts b/plugins/export-workbook/src/plugin.ts index df0ffad6b..15d38281e 100644 --- a/plugins/export-workbook/src/plugin.ts +++ b/plugins/export-workbook/src/plugin.ts @@ -198,6 +198,11 @@ export const run = async ( outcome: { message: 'Data was successfully written to Excel file and uploaded. You can access the workbook in the "Available Downloads" section of the Files page in Flatfile.', + next: { + type: 'url', + url: `/space/${spaceId}/files?mode=export`, + label: 'Available Downloads', + }, }, }) From e215c59050b97ef5aec93e1541f7c280b37cce19 Mon Sep 17 00:00:00 2001 From: Flatfile Bot <62193415+flatfiledocker@users.noreply.github.com> Date: Wed, 18 Oct 2023 14:00:18 -0700 Subject: [PATCH 2/8] chore: update versions (#281) Co-authored-by: github-actions[bot] --- .changeset/few-suits-rule.md | 5 ----- plugins/export-workbook/CHANGELOG.md | 6 ++++++ plugins/export-workbook/package.json | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) delete mode 100644 .changeset/few-suits-rule.md diff --git a/.changeset/few-suits-rule.md b/.changeset/few-suits-rule.md deleted file mode 100644 index b2d9ed225..000000000 --- a/.changeset/few-suits-rule.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@flatfile/plugin-export-workbook': patch ---- - -Add "Next" url to job completion message diff --git a/plugins/export-workbook/CHANGELOG.md b/plugins/export-workbook/CHANGELOG.md index c0d334769..4c4b63ca5 100644 --- a/plugins/export-workbook/CHANGELOG.md +++ b/plugins/export-workbook/CHANGELOG.md @@ -1,5 +1,11 @@ # @flatfile/plugin-export-workbook +## 0.0.8 + +### Patch Changes + +- 53003e9: Add "Next" url to job completion message + ## 0.0.7 ### Patch Changes diff --git a/plugins/export-workbook/package.json b/plugins/export-workbook/package.json index fabe10ab7..4e5ee3e37 100644 --- a/plugins/export-workbook/package.json +++ b/plugins/export-workbook/package.json @@ -1,6 +1,6 @@ { "name": "@flatfile/plugin-export-workbook", - "version": "0.0.7", + "version": "0.0.8", "description": "A plugin for exporting data in Flatfile to Workbooks.", "registryMetadata": { "category": "export" From 59cb901f08fd6fd1e857585964b14cda6e9664b3 Mon Sep 17 00:00:00 2001 From: Carl Brugger Date: Thu, 19 Oct 2023 15:08:17 -0500 Subject: [PATCH 3/8] feat: export each extractor's parser (#285) --- .changeset/rare-parents-swim.md | 9 +++++++++ plugins/delimiter-extractor/src/index.ts | 2 ++ plugins/json-extractor/src/index.ts | 2 ++ plugins/xlsx-extractor/src/index.ts | 2 ++ plugins/xml-extractor/src/index.ts | 2 ++ 5 files changed, 17 insertions(+) create mode 100644 .changeset/rare-parents-swim.md diff --git a/.changeset/rare-parents-swim.md b/.changeset/rare-parents-swim.md new file mode 100644 index 000000000..b3706842b --- /dev/null +++ b/.changeset/rare-parents-swim.md @@ -0,0 +1,9 @@ +--- +'@flatfile/plugin-delimiter-extractor': patch +'@flatfile/plugin-export-workbook': patch +'@flatfile/plugin-json-extractor': patch +'@flatfile/plugin-xlsx-extractor': patch +'@flatfile/plugin-xml-extractor': patch +--- + +Export parsers diff --git a/plugins/delimiter-extractor/src/index.ts b/plugins/delimiter-extractor/src/index.ts index 66573a1bf..9f1de409d 100644 --- a/plugins/delimiter-extractor/src/index.ts +++ b/plugins/delimiter-extractor/src/index.ts @@ -38,3 +38,5 @@ export const DelimiterExtractor = ( ...restOptions, }) } + +export const delimiterParser = parseBuffer diff --git a/plugins/json-extractor/src/index.ts b/plugins/json-extractor/src/index.ts index eeb44262f..3f3c6d247 100644 --- a/plugins/json-extractor/src/index.ts +++ b/plugins/json-extractor/src/index.ts @@ -9,6 +9,8 @@ export const JSONExtractor = (options?: { return Extractor('.json', 'json', parseBuffer, options) } +export const jsonParser = parseBuffer + /* * @deprecated use `JSONExtractor` instead */ diff --git a/plugins/xlsx-extractor/src/index.ts b/plugins/xlsx-extractor/src/index.ts index b6e655dea..b1610e41c 100644 --- a/plugins/xlsx-extractor/src/index.ts +++ b/plugins/xlsx-extractor/src/index.ts @@ -27,6 +27,8 @@ export const ExcelExtractor = (options?: ExcelExtractorOptions) => { ) } +export const excelParser = parseBuffer + /* * @deprecated use `ExcelExtractor` instead */ diff --git a/plugins/xml-extractor/src/index.ts b/plugins/xml-extractor/src/index.ts index 8b37b154e..0020b23b5 100644 --- a/plugins/xml-extractor/src/index.ts +++ b/plugins/xml-extractor/src/index.ts @@ -11,3 +11,5 @@ export const XMLExtractor = (options?: { }) => { return Extractor('.xml', 'xml', parseBuffer, options) } + +export const xmlParser = parseBuffer From b64a0c87b82ecc699a6c6d38b71d2cae747094ff Mon Sep 17 00:00:00 2001 From: Flatfile Bot <62193415+flatfiledocker@users.noreply.github.com> Date: Thu, 19 Oct 2023 13:13:27 -0700 Subject: [PATCH 4/8] chore: update versions (#286) Co-authored-by: github-actions[bot] --- .changeset/rare-parents-swim.md | 9 --------- plugins/delimiter-extractor/CHANGELOG.md | 6 ++++++ plugins/delimiter-extractor/package.json | 2 +- plugins/export-workbook/CHANGELOG.md | 6 ++++++ plugins/export-workbook/package.json | 2 +- plugins/json-extractor/CHANGELOG.md | 6 ++++++ plugins/json-extractor/package.json | 2 +- plugins/xlsx-extractor/CHANGELOG.md | 6 ++++++ plugins/xlsx-extractor/package.json | 2 +- plugins/xml-extractor/CHANGELOG.md | 6 ++++++ plugins/xml-extractor/package.json | 2 +- 11 files changed, 35 insertions(+), 14 deletions(-) delete mode 100644 .changeset/rare-parents-swim.md diff --git a/.changeset/rare-parents-swim.md b/.changeset/rare-parents-swim.md deleted file mode 100644 index b3706842b..000000000 --- a/.changeset/rare-parents-swim.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -'@flatfile/plugin-delimiter-extractor': patch -'@flatfile/plugin-export-workbook': patch -'@flatfile/plugin-json-extractor': patch -'@flatfile/plugin-xlsx-extractor': patch -'@flatfile/plugin-xml-extractor': patch ---- - -Export parsers diff --git a/plugins/delimiter-extractor/CHANGELOG.md b/plugins/delimiter-extractor/CHANGELOG.md index 4f3e54060..6b9a5d3fa 100644 --- a/plugins/delimiter-extractor/CHANGELOG.md +++ b/plugins/delimiter-extractor/CHANGELOG.md @@ -1,5 +1,11 @@ # @flatfile/plugin-delimiter-extractor +## 0.7.6 + +### Patch Changes + +- 59cb901: Export parsers + ## 0.7.5 ### Patch Changes diff --git a/plugins/delimiter-extractor/package.json b/plugins/delimiter-extractor/package.json index 83ff95dca..4d119b3a7 100644 --- a/plugins/delimiter-extractor/package.json +++ b/plugins/delimiter-extractor/package.json @@ -1,6 +1,6 @@ { "name": "@flatfile/plugin-delimiter-extractor", - "version": "0.7.5", + "version": "0.7.6", "description": "A plugin for parsing a delimited file and extracting it into Flatfile.", "registryMetadata": { "category": "extractors" diff --git a/plugins/export-workbook/CHANGELOG.md b/plugins/export-workbook/CHANGELOG.md index 4c4b63ca5..5383a3f95 100644 --- a/plugins/export-workbook/CHANGELOG.md +++ b/plugins/export-workbook/CHANGELOG.md @@ -1,5 +1,11 @@ # @flatfile/plugin-export-workbook +## 0.0.9 + +### Patch Changes + +- 59cb901: Export parsers + ## 0.0.8 ### Patch Changes diff --git a/plugins/export-workbook/package.json b/plugins/export-workbook/package.json index 4e5ee3e37..f57e8ef77 100644 --- a/plugins/export-workbook/package.json +++ b/plugins/export-workbook/package.json @@ -1,6 +1,6 @@ { "name": "@flatfile/plugin-export-workbook", - "version": "0.0.8", + "version": "0.0.9", "description": "A plugin for exporting data in Flatfile to Workbooks.", "registryMetadata": { "category": "export" diff --git a/plugins/json-extractor/CHANGELOG.md b/plugins/json-extractor/CHANGELOG.md index 5f1a8cc61..201442725 100644 --- a/plugins/json-extractor/CHANGELOG.md +++ b/plugins/json-extractor/CHANGELOG.md @@ -1,5 +1,11 @@ # @flatfile/plugin-json-extractor +## 0.6.7 + +### Patch Changes + +- 59cb901: Export parsers + ## 0.6.6 ### Patch Changes diff --git a/plugins/json-extractor/package.json b/plugins/json-extractor/package.json index 15b797272..74d120ea4 100644 --- a/plugins/json-extractor/package.json +++ b/plugins/json-extractor/package.json @@ -1,6 +1,6 @@ { "name": "@flatfile/plugin-json-extractor", - "version": "0.6.6", + "version": "0.6.7", "description": "A plugin for parsing json files in Flatfile.", "registryMetadata": { "category": "extractors" diff --git a/plugins/xlsx-extractor/CHANGELOG.md b/plugins/xlsx-extractor/CHANGELOG.md index 030ff41db..40654f95a 100644 --- a/plugins/xlsx-extractor/CHANGELOG.md +++ b/plugins/xlsx-extractor/CHANGELOG.md @@ -1,5 +1,11 @@ # @flatfile/plugin-record-hook +## 1.8.1 + +### Patch Changes + +- 59cb901: Export parsers + ## 1.8.0 ### Minor Changes diff --git a/plugins/xlsx-extractor/package.json b/plugins/xlsx-extractor/package.json index a4cde517a..dc8aa4c31 100644 --- a/plugins/xlsx-extractor/package.json +++ b/plugins/xlsx-extractor/package.json @@ -1,6 +1,6 @@ { "name": "@flatfile/plugin-xlsx-extractor", - "version": "1.8.0", + "version": "1.8.1", "description": "A plugin for parsing xlsx files in Flatfile.", "registryMetadata": { "category": "extractors" diff --git a/plugins/xml-extractor/CHANGELOG.md b/plugins/xml-extractor/CHANGELOG.md index c6b1951a9..42c2f4bca 100644 --- a/plugins/xml-extractor/CHANGELOG.md +++ b/plugins/xml-extractor/CHANGELOG.md @@ -1,5 +1,11 @@ # @flatfile/plugin-dxp-config +## 0.5.7 + +### Patch Changes + +- 59cb901: Export parsers + ## 0.5.6 ### Patch Changes diff --git a/plugins/xml-extractor/package.json b/plugins/xml-extractor/package.json index ffac64b6a..b2cfe4ffa 100644 --- a/plugins/xml-extractor/package.json +++ b/plugins/xml-extractor/package.json @@ -1,6 +1,6 @@ { "name": "@flatfile/plugin-xml-extractor", - "version": "0.5.6", + "version": "0.5.7", "description": "A plugin for extracting data from XML files.", "registryMetadata": { "category": "extractors" From 82da1b92d21689b0ab21fe4a1e2da3a5bfec18ee Mon Sep 17 00:00:00 2001 From: Carl Brugger Date: Thu, 19 Oct 2023 15:21:58 -0500 Subject: [PATCH 5/8] feat:process-records-utility (#284) --- .changeset/angry-ears-boil.md | 5 +++ package-lock.json | 49 ++++++++++++++++++++++++++--- utils/common/package.json | 5 ++- utils/common/src/index.ts | 1 + utils/common/src/process.records.ts | 28 +++++++++++++++++ 5 files changed, 83 insertions(+), 5 deletions(-) create mode 100644 .changeset/angry-ears-boil.md create mode 100644 utils/common/src/process.records.ts diff --git a/.changeset/angry-ears-boil.md b/.changeset/angry-ears-boil.md new file mode 100644 index 000000000..4c3de4839 --- /dev/null +++ b/.changeset/angry-ears-boil.md @@ -0,0 +1,5 @@ +--- +'@flatfile/util-common': patch +--- + +Added a utility to process all records diff --git a/package-lock.json b/package-lock.json index 36fbe2902..eed7b7912 100644 --- a/package-lock.json +++ b/package-lock.json @@ -782,18 +782,21 @@ } }, "node_modules/@flatfile/api": { - "version": "1.5.30", - "resolved": "https://registry.npmjs.org/@flatfile/api/-/api-1.5.30.tgz", - "integrity": "sha512-aJj7VfIsqO+8XD1n66N+ytcRFGfD77kYiBAjTTxsegt2zdfTlunsofbGoJLpF6l7wd9e2yJPH5MYG1fxrfRwuA==", + "version": "1.5.32", + "resolved": "https://registry.npmjs.org/@flatfile/api/-/api-1.5.32.tgz", + "integrity": "sha512-S8F23+NnPjXrONWJhWYiGI0WO2sQsJBESBI6g1MSFz5jmswIkguxFmffhp0gj+A8zfYoHpyhlhYbuKMYzBcyEw==", "dependencies": { "@flatfile/cross-env-config": "0.0.4", "@types/pako": "2.0.1", + "@types/qs": "6.9.8", "@types/url-join": "4.0.1", "@ungap/url-search-params": "0.2.2", "axios": "0.27.2", + "axios-retry": "3.2.0", "form-data": "4.0.0", "js-base64": "3.7.2", "pako": "2.0.1", + "qs": "6.11.2", "url-join": "4.0.1" } }, @@ -3591,6 +3594,11 @@ "@types/node": "*" } }, + "node_modules/@types/qs": { + "version": "6.9.8", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.8.tgz", + "integrity": "sha512-u95svzDlTysU5xecFNTgfFG5RUWu1A9P0VzgpcIiGZA9iraHOdSzcxMxQ55DyeRaGCSxQi7LxXDI4rzq/MYfdg==" + }, "node_modules/@types/semver": { "version": "7.5.1", "dev": true, @@ -3811,6 +3819,14 @@ "proxy-from-env": "^1.1.0" } }, + "node_modules/axios-retry": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/axios-retry/-/axios-retry-3.2.0.tgz", + "integrity": "sha512-RK2cLMgIsAQBDhlIsJR5dOhODPigvel18XUv1dDXW+4k1FzebyfRk+C+orot6WPZOYFKSfhLwHPwVmTVOODQ5w==", + "dependencies": { + "is-retry-allowed": "^1.1.0" + } + }, "node_modules/babel-jest": { "version": "29.6.4", "dev": true, @@ -6031,6 +6047,14 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/is-retry-allowed": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", + "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/is-shared-array-buffer": { "version": "1.0.2", "dev": true, @@ -10401,6 +10425,20 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "plugins/auto-update-records": { + "name": "@flatfile/plugin-auto-update-records", + "version": "0.0.0", + "extraneous": true, + "license": "ISC", + "dependencies": { + "@flatfile/api": "^1.5.30", + "@flatfile/listener": "^0.3.10", + "@flatfile/plugin-job-handler": "^0.1.4" + }, + "engines": { + "node": ">= 18" + } + }, "plugins/autocast": { "name": "@flatfile/plugin-autocast", "version": "0.3.2", @@ -10499,7 +10537,7 @@ }, "plugins/export-workbook": { "name": "@flatfile/plugin-export-workbook", - "version": "0.0.6", + "version": "0.0.8", "license": "ISC", "dependencies": { "@flatfile/api": "^1.5.30", @@ -10767,6 +10805,9 @@ "name": "@flatfile/util-common", "version": "0.2.1", "license": "ISC", + "dependencies": { + "@flatfile/api": "^1.5.32" + }, "engines": { "node": ">= 16" } diff --git a/utils/common/package.json b/utils/common/package.json index 1f9fbf9e3..f4b61fe9c 100644 --- a/utils/common/package.json +++ b/utils/common/package.json @@ -22,5 +22,8 @@ "url": "https://github.com/FlatFilers/flatfile-plugins.git", "directory": "utils/common" }, - "license": "ISC" + "license": "ISC", + "dependencies": { + "@flatfile/api": "^1.5.32" + } } diff --git a/utils/common/src/index.ts b/utils/common/src/index.ts index 18d50033d..3f0af7e70 100644 --- a/utils/common/src/index.ts +++ b/utils/common/src/index.ts @@ -1,2 +1,3 @@ export * from './async.batch' export * from './logging.helper' +export * from './process.records' diff --git a/utils/common/src/process.records.ts b/utils/common/src/process.records.ts new file mode 100644 index 000000000..4fe3ec1dc --- /dev/null +++ b/utils/common/src/process.records.ts @@ -0,0 +1,28 @@ +import api, { Flatfile } from '@flatfile/api' + +export async function processRecords( + sheetId: string, + callback: (records: Flatfile.RecordsWithLinks) => R, + recordGetOptions?: Omit +): Promise { + let pageNumber = 1 + const results: R[] = [] + + while (true) { + const { + data: { records }, + } = await api.records.get(sheetId, { + ...recordGetOptions, + pageNumber: pageNumber++, + }) + + if (records.length === 0) { + break + } + + const result = callback(records) + results.push(result) + } + + return results +} From 54800f390c9926429fa2a714b36a4e484f2ee746 Mon Sep 17 00:00:00 2001 From: Flatfile Bot <62193415+flatfiledocker@users.noreply.github.com> Date: Thu, 19 Oct 2023 14:10:37 -0700 Subject: [PATCH 6/8] chore: update versions (#287) Co-authored-by: github-actions[bot] --- .changeset/angry-ears-boil.md | 5 ----- utils/common/CHANGELOG.md | 6 ++++++ utils/common/package.json | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) delete mode 100644 .changeset/angry-ears-boil.md diff --git a/.changeset/angry-ears-boil.md b/.changeset/angry-ears-boil.md deleted file mode 100644 index 4c3de4839..000000000 --- a/.changeset/angry-ears-boil.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@flatfile/util-common': patch ---- - -Added a utility to process all records diff --git a/utils/common/CHANGELOG.md b/utils/common/CHANGELOG.md index 743976c5e..80fc5e85f 100644 --- a/utils/common/CHANGELOG.md +++ b/utils/common/CHANGELOG.md @@ -1,5 +1,11 @@ # @flatfile/util-common +## 0.2.2 + +### Patch Changes + +- 82da1b9: Added a utility to process all records + ## 0.2.1 ### Patch Changes diff --git a/utils/common/package.json b/utils/common/package.json index f4b61fe9c..9349555fd 100644 --- a/utils/common/package.json +++ b/utils/common/package.json @@ -1,6 +1,6 @@ { "name": "@flatfile/util-common", - "version": "0.2.1", + "version": "0.2.2", "description": "A library containing common utilities and helpers for plugins.", "keywords": [], "author": "Carl Brugger", From 379e1d740e1d90284812a4a273fbaa6a110c7301 Mon Sep 17 00:00:00 2001 From: Carl Brugger Date: Wed, 25 Oct 2023 09:01:25 -0500 Subject: [PATCH 7/8] chore: recordHook dep update (#289) * chore: recordHook dep update * Create bright-numbers-guess.md --- .changeset/bright-numbers-guess.md | 5 +++++ package-lock.json | 20 ++++++++++---------- plugins/record-hook/package.json | 2 +- 3 files changed, 16 insertions(+), 11 deletions(-) create mode 100644 .changeset/bright-numbers-guess.md diff --git a/.changeset/bright-numbers-guess.md b/.changeset/bright-numbers-guess.md new file mode 100644 index 000000000..c870ce45d --- /dev/null +++ b/.changeset/bright-numbers-guess.md @@ -0,0 +1,5 @@ +--- +'@flatfile/plugin-record-hook': patch +--- + +Dependency update diff --git a/package-lock.json b/package-lock.json index eed7b7912..11274068c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -782,9 +782,9 @@ } }, "node_modules/@flatfile/api": { - "version": "1.5.32", - "resolved": "https://registry.npmjs.org/@flatfile/api/-/api-1.5.32.tgz", - "integrity": "sha512-S8F23+NnPjXrONWJhWYiGI0WO2sQsJBESBI6g1MSFz5jmswIkguxFmffhp0gj+A8zfYoHpyhlhYbuKMYzBcyEw==", + "version": "1.5.33", + "resolved": "https://registry.npmjs.org/@flatfile/api/-/api-1.5.33.tgz", + "integrity": "sha512-KP7NzP0q7ekXDWGl4yANCPpZmovNTJT2r3oafvlIu5rYvWwe/QDJZkmOsMOax7kIeH5tvEx0wW6Z7xW34JTZPg==", "dependencies": { "@flatfile/cross-env-config": "0.0.4", "@types/pako": "2.0.1", @@ -10488,7 +10488,7 @@ }, "plugins/delimiter-extractor": { "name": "@flatfile/plugin-delimiter-extractor", - "version": "0.7.5", + "version": "0.7.6", "license": "ISC", "dependencies": { "@flatfile/api": "^1.5.30", @@ -10537,7 +10537,7 @@ }, "plugins/export-workbook": { "name": "@flatfile/plugin-export-workbook", - "version": "0.0.8", + "version": "0.0.9", "license": "ISC", "dependencies": { "@flatfile/api": "^1.5.30", @@ -10570,7 +10570,7 @@ }, "plugins/json-extractor": { "name": "@flatfile/plugin-json-extractor", - "version": "0.6.6", + "version": "0.6.7", "license": "ISC", "dependencies": { "@flatfile/api": "^1.5.30", @@ -10682,7 +10682,7 @@ "version": "1.1.7", "license": "ISC", "dependencies": { - "@flatfile/api": "^1.5.30", + "@flatfile/api": "^1.5.33", "@flatfile/hooks": "^1.3.1", "@flatfile/listener": "^0.3.15", "@flatfile/util-common": "^0.2.1", @@ -10742,7 +10742,7 @@ }, "plugins/xlsx-extractor": { "name": "@flatfile/plugin-xlsx-extractor", - "version": "1.8.0", + "version": "1.8.1", "license": "ISC", "dependencies": { "@flatfile/api": "^1.5.30", @@ -10758,7 +10758,7 @@ }, "plugins/xml-extractor": { "name": "@flatfile/plugin-xml-extractor", - "version": "0.5.6", + "version": "0.5.7", "license": "ISC", "dependencies": { "@flatfile/api": "^1.5.30", @@ -10803,7 +10803,7 @@ }, "utils/common": { "name": "@flatfile/util-common", - "version": "0.2.1", + "version": "0.2.2", "license": "ISC", "dependencies": { "@flatfile/api": "^1.5.32" diff --git a/plugins/record-hook/package.json b/plugins/record-hook/package.json index 441760b02..d2a975808 100644 --- a/plugins/record-hook/package.json +++ b/plugins/record-hook/package.json @@ -32,7 +32,7 @@ }, "license": "ISC", "dependencies": { - "@flatfile/api": "^1.5.30", + "@flatfile/api": "^1.5.33", "@flatfile/hooks": "^1.3.1", "@flatfile/listener": "^0.3.15", "@flatfile/util-common": "^0.2.1", From 7ca9341d0fc1b85666080b3aa8bb660d8ba6ecfc Mon Sep 17 00:00:00 2001 From: Flatfile Bot <62193415+flatfiledocker@users.noreply.github.com> Date: Wed, 25 Oct 2023 07:04:37 -0700 Subject: [PATCH 8/8] chore: update versions (#290) Co-authored-by: github-actions[bot] --- .changeset/bright-numbers-guess.md | 5 ----- plugins/record-hook/CHANGELOG.md | 6 ++++++ plugins/record-hook/package.json | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) delete mode 100644 .changeset/bright-numbers-guess.md diff --git a/.changeset/bright-numbers-guess.md b/.changeset/bright-numbers-guess.md deleted file mode 100644 index c870ce45d..000000000 --- a/.changeset/bright-numbers-guess.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@flatfile/plugin-record-hook': patch ---- - -Dependency update diff --git a/plugins/record-hook/CHANGELOG.md b/plugins/record-hook/CHANGELOG.md index ec60356c5..02f91781e 100644 --- a/plugins/record-hook/CHANGELOG.md +++ b/plugins/record-hook/CHANGELOG.md @@ -1,5 +1,11 @@ # @flatfile/plugin-record-hook +## 1.1.8 + +### Patch Changes + +- 379e1d7: Dependency update + ## 1.1.7 ### Patch Changes diff --git a/plugins/record-hook/package.json b/plugins/record-hook/package.json index d2a975808..592dbc2e7 100644 --- a/plugins/record-hook/package.json +++ b/plugins/record-hook/package.json @@ -1,6 +1,6 @@ { "name": "@flatfile/plugin-record-hook", - "version": "1.1.7", + "version": "1.1.8", "description": "A plugin for writing custom record-level hooks in Flatfile.", "registryMetadata": { "category": "records"