From 51b3293e629619a4b7ff5e07b0de2f26c9a486ef Mon Sep 17 00:00:00 2001 From: js07 <19861096+js07@users.noreply.github.com> Date: Wed, 4 Dec 2024 15:17:55 -0500 Subject: [PATCH 1/4] Fix Airtable URL field asking for object According to the Airtable docs, the URL field type should be a string, not an object. See: https://airtable.com/developers/extensions/api/FieldType#URL --- components/airtable_oauth/common/constants.mjs | 2 +- components/airtable_oauth/common/utils.mjs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/airtable_oauth/common/constants.mjs b/components/airtable_oauth/common/constants.mjs index 4c0a5c4a4496c..ea291bc0018d0 100644 --- a/components/airtable_oauth/common/constants.mjs +++ b/components/airtable_oauth/common/constants.mjs @@ -32,8 +32,8 @@ const FieldType = { EXTERNAL_SYNC_SOURCE: "externalSyncSource", LAST_MODIFIED_BY: "lastModifiedBy", LAST_MODIFIED_TIME: "lastModifiedTime", - URL: "url", // string + URL: "url", SINGLE_COLLABORATOR: "singleCollaborator", DATE: "date", DATE_TIME: "dateTime", diff --git a/components/airtable_oauth/common/utils.mjs b/components/airtable_oauth/common/utils.mjs index 534de05c41bba..6ab4e6a8ea20b 100644 --- a/components/airtable_oauth/common/utils.mjs +++ b/components/airtable_oauth/common/utils.mjs @@ -37,9 +37,9 @@ function fieldTypeToPropType(fieldType) { case FieldType.EXTERNAL_SYNC_SOURCE: case FieldType.LAST_MODIFIED_BY: case FieldType.LAST_MODIFIED_TIME: - case FieldType.URL: return "object"; // string + case FieldType.URL: case FieldType.SINGLE_COLLABORATOR: case FieldType.DATE: case FieldType.DATE_TIME: From 893498649cca412dcce776f952dbec93a83323ec Mon Sep 17 00:00:00 2001 From: js07 <19861096+js07@users.noreply.github.com> Date: Wed, 4 Dec 2024 15:22:42 -0500 Subject: [PATCH 2/4] bump airtable package and component versions --- .../airtable_oauth/actions/create-comment/create-comment.mjs | 2 +- components/airtable_oauth/actions/create-field/create-field.mjs | 2 +- .../actions/create-multiple-records/create-multiple-records.mjs | 2 +- .../actions/create-or-update-record/create-or-update-record.mjs | 2 +- .../actions/create-single-record/create-single-record.mjs | 2 +- components/airtable_oauth/actions/create-table/create-table.mjs | 2 +- .../airtable_oauth/actions/delete-record/delete-record.mjs | 2 +- .../actions/get-record-or-create/get-record-or-create.mjs | 2 +- components/airtable_oauth/actions/get-record/get-record.mjs | 2 +- .../actions/list-records-in-view/list-records-in-view.mjs | 2 +- components/airtable_oauth/actions/list-records/list-records.mjs | 2 +- .../airtable_oauth/actions/search-records/search-records.mjs | 2 +- .../airtable_oauth/actions/update-comment/update-comment.mjs | 2 +- components/airtable_oauth/actions/update-field/update-field.mjs | 2 +- .../airtable_oauth/actions/update-record/update-record.mjs | 2 +- components/airtable_oauth/actions/update-table/update-table.mjs | 2 +- components/airtable_oauth/package.json | 2 +- components/airtable_oauth/sources/new-field/new-field.mjs | 2 +- .../new-modified-or-deleted-records-instant.mjs | 2 +- .../new-modified-or-deleted-records.mjs | 2 +- .../sources/new-or-modified-field/new-or-modified-field.mjs | 2 +- .../new-or-modified-records-in-view.mjs | 2 +- .../sources/new-or-modified-records/new-or-modified-records.mjs | 2 +- .../sources/new-records-in-view/new-records-in-view.mjs | 2 +- components/airtable_oauth/sources/new-records/new-records.mjs | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/components/airtable_oauth/actions/create-comment/create-comment.mjs b/components/airtable_oauth/actions/create-comment/create-comment.mjs index 3f4b324746d38..0654cf4064b8a 100644 --- a/components/airtable_oauth/actions/create-comment/create-comment.mjs +++ b/components/airtable_oauth/actions/create-comment/create-comment.mjs @@ -4,7 +4,7 @@ export default { key: "airtable_oauth-create-comment", name: "Create Comment", description: "Create a new comment on a record. [See the documentation](https://airtable.com/developers/web/api/create-comment)", - version: "0.0.6", + version: "0.0.7", type: "action", props: { ...common.props, diff --git a/components/airtable_oauth/actions/create-field/create-field.mjs b/components/airtable_oauth/actions/create-field/create-field.mjs index 1db1affcc9e7a..b141e4d8a39c7 100644 --- a/components/airtable_oauth/actions/create-field/create-field.mjs +++ b/components/airtable_oauth/actions/create-field/create-field.mjs @@ -4,7 +4,7 @@ export default { key: "airtable_oauth-create-field", name: "Create Field", description: "Create a new field in a table. [See the documentation](https://airtable.com/developers/web/api/create-field)", - version: "0.0.6", + version: "0.0.7", type: "action", props: { ...common.props, diff --git a/components/airtable_oauth/actions/create-multiple-records/create-multiple-records.mjs b/components/airtable_oauth/actions/create-multiple-records/create-multiple-records.mjs index 68b6a6182d2ef..44e4ed8a66fe6 100644 --- a/components/airtable_oauth/actions/create-multiple-records/create-multiple-records.mjs +++ b/components/airtable_oauth/actions/create-multiple-records/create-multiple-records.mjs @@ -8,7 +8,7 @@ export default { key: "airtable_oauth-create-multiple-records", name: "Create Multiple Records", description: "Create one or more records in a table by passing an array of objects containing field names and values as key/value pairs. [See the documentation](https://airtable.com/developers/web/api/create-records)", - version: "0.0.6", + version: "0.0.7", type: "action", props: { ...common.props, diff --git a/components/airtable_oauth/actions/create-or-update-record/create-or-update-record.mjs b/components/airtable_oauth/actions/create-or-update-record/create-or-update-record.mjs index 3ff95139c545a..0e9d302a3a5c5 100644 --- a/components/airtable_oauth/actions/create-or-update-record/create-or-update-record.mjs +++ b/components/airtable_oauth/actions/create-or-update-record/create-or-update-record.mjs @@ -6,7 +6,7 @@ export default { key: "airtable_oauth-create-or-update-record", name: "Create Single Record Or Update", description: "Updates a record if `recordId` is provided or adds a record to a table.", - version: "0.0.7", + version: "0.0.8", type: "action", props: { ...common.props, diff --git a/components/airtable_oauth/actions/create-single-record/create-single-record.mjs b/components/airtable_oauth/actions/create-single-record/create-single-record.mjs index 13630c1438881..b711e06fee2ae 100644 --- a/components/airtable_oauth/actions/create-single-record/create-single-record.mjs +++ b/components/airtable_oauth/actions/create-single-record/create-single-record.mjs @@ -6,7 +6,7 @@ export default { key: "airtable_oauth-create-single-record", name: "Create Single Record", description: "Adds a record to a table.", - version: "0.0.7", + version: "0.0.8", type: "action", props: { ...common.props, diff --git a/components/airtable_oauth/actions/create-table/create-table.mjs b/components/airtable_oauth/actions/create-table/create-table.mjs index 93e2b39d1f891..04095c968bd38 100644 --- a/components/airtable_oauth/actions/create-table/create-table.mjs +++ b/components/airtable_oauth/actions/create-table/create-table.mjs @@ -4,7 +4,7 @@ export default { key: "airtable_oauth-create-table", name: "Create Table", description: "Create a new table. [See the documentation](https://airtable.com/developers/web/api/create-table)", - version: "0.0.6", + version: "0.0.7", type: "action", props: { airtable, diff --git a/components/airtable_oauth/actions/delete-record/delete-record.mjs b/components/airtable_oauth/actions/delete-record/delete-record.mjs index b7c49541704d3..2b13c5b41d8b0 100644 --- a/components/airtable_oauth/actions/delete-record/delete-record.mjs +++ b/components/airtable_oauth/actions/delete-record/delete-record.mjs @@ -5,7 +5,7 @@ export default { key: "airtable_oauth-delete-record", name: "Delete Record", description: "Delete a record from a table by record ID. [See the documentation](https://airtable.com/developers/web/api/delete-record)", - version: "0.0.6", + version: "0.0.7", type: "action", props: { ...common.props, diff --git a/components/airtable_oauth/actions/get-record-or-create/get-record-or-create.mjs b/components/airtable_oauth/actions/get-record-or-create/get-record-or-create.mjs index 435a996f95c7b..6c9d438592663 100644 --- a/components/airtable_oauth/actions/get-record-or-create/get-record-or-create.mjs +++ b/components/airtable_oauth/actions/get-record-or-create/get-record-or-create.mjs @@ -6,7 +6,7 @@ export default { key: "airtable_oauth-get-record-or-create", name: "Get Record Or Create", description: "Get a record from a table by record ID or create a new register.", - version: "0.0.7", + version: "0.0.8", type: "action", props: { ...common.props, diff --git a/components/airtable_oauth/actions/get-record/get-record.mjs b/components/airtable_oauth/actions/get-record/get-record.mjs index 92713bcbcc37c..697846e04d017 100644 --- a/components/airtable_oauth/actions/get-record/get-record.mjs +++ b/components/airtable_oauth/actions/get-record/get-record.mjs @@ -6,7 +6,7 @@ export default { key: "airtable_oauth-get-record", name: "Get Record", description: "Get a record from a table by record ID. [See the documentation](https://airtable.com/developers/web/api/get-record)", - version: "0.0.7", + version: "0.0.8", type: "action", props: { ...common.props, diff --git a/components/airtable_oauth/actions/list-records-in-view/list-records-in-view.mjs b/components/airtable_oauth/actions/list-records-in-view/list-records-in-view.mjs index 0db3726a60c1a..4599642acc383 100644 --- a/components/airtable_oauth/actions/list-records-in-view/list-records-in-view.mjs +++ b/components/airtable_oauth/actions/list-records-in-view/list-records-in-view.mjs @@ -6,7 +6,7 @@ export default { name: "List Records in View", description: "Retrieve records in a view with automatic pagination. Optionally sort and filter results. Only available for Enterprise accounts.", type: "action", - version: "0.0.6", + version: "0.0.7", ...commonList, props: { ...common.props, diff --git a/components/airtable_oauth/actions/list-records/list-records.mjs b/components/airtable_oauth/actions/list-records/list-records.mjs index 31be61fb83e5c..c58dce9021fe4 100644 --- a/components/airtable_oauth/actions/list-records/list-records.mjs +++ b/components/airtable_oauth/actions/list-records/list-records.mjs @@ -6,7 +6,7 @@ export default { name: "List Records", description: "Retrieve records from a table with automatic pagination. Optionally sort and filter results.", type: "action", - version: "0.0.6", + version: "0.0.7", ...commonList, props: { ...common.props, diff --git a/components/airtable_oauth/actions/search-records/search-records.mjs b/components/airtable_oauth/actions/search-records/search-records.mjs index 11bb92adbcfef..a4cdb9a649a2c 100644 --- a/components/airtable_oauth/actions/search-records/search-records.mjs +++ b/components/airtable_oauth/actions/search-records/search-records.mjs @@ -5,7 +5,7 @@ export default { key: "airtable_oauth-search-records", name: "Search Records", description: "Searches for a record by formula or by field value. [See the documentation](https://airtable.com/developers/web/api/list-records)", - version: "0.0.8", + version: "0.0.9", type: "action", props: { ...common.props, diff --git a/components/airtable_oauth/actions/update-comment/update-comment.mjs b/components/airtable_oauth/actions/update-comment/update-comment.mjs index 9bb91e67a4fda..2fb997cb19c8b 100644 --- a/components/airtable_oauth/actions/update-comment/update-comment.mjs +++ b/components/airtable_oauth/actions/update-comment/update-comment.mjs @@ -4,7 +4,7 @@ export default { key: "airtable_oauth-update-comment", name: "Update Comment", description: "Updates an existing comment on a record. [See the documentation](https://airtable.com/developers/web/api/update-comment)", - version: "0.0.6", + version: "0.0.7", type: "action", props: { ...common.props, diff --git a/components/airtable_oauth/actions/update-field/update-field.mjs b/components/airtable_oauth/actions/update-field/update-field.mjs index 564a9e9fc0f5d..cdf808501266b 100644 --- a/components/airtable_oauth/actions/update-field/update-field.mjs +++ b/components/airtable_oauth/actions/update-field/update-field.mjs @@ -5,7 +5,7 @@ export default { key: "airtable_oauth-update-field", name: "Update Field", description: "Updates an existing field in a table. [See the documentation](https://airtable.com/developers/web/api/update-field)", - version: "0.0.6", + version: "0.0.7", type: "action", props: { ...common.props, diff --git a/components/airtable_oauth/actions/update-record/update-record.mjs b/components/airtable_oauth/actions/update-record/update-record.mjs index 5a450fa0d4832..5327c8282a703 100644 --- a/components/airtable_oauth/actions/update-record/update-record.mjs +++ b/components/airtable_oauth/actions/update-record/update-record.mjs @@ -6,7 +6,7 @@ export default { key: "airtable_oauth-update-record", name: "Update Record", description: "Update a single record in a table by Record ID. [See the documentation](https://airtable.com/developers/web/api/update-record)", - version: "0.0.7", + version: "0.0.8", type: "action", props: { ...common.props, diff --git a/components/airtable_oauth/actions/update-table/update-table.mjs b/components/airtable_oauth/actions/update-table/update-table.mjs index f29f7874d81ca..d9a4c5eb89ec3 100644 --- a/components/airtable_oauth/actions/update-table/update-table.mjs +++ b/components/airtable_oauth/actions/update-table/update-table.mjs @@ -4,7 +4,7 @@ export default { key: "airtable_oauth-update-table", name: "Update Table", description: "Updates an existing table. [See the documentation](https://airtable.com/developers/web/api/update-table)", - version: "0.0.6", + version: "0.0.7", type: "action", props: { ...common.props, diff --git a/components/airtable_oauth/package.json b/components/airtable_oauth/package.json index b42f40486604c..c148bd6ac266c 100644 --- a/components/airtable_oauth/package.json +++ b/components/airtable_oauth/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/airtable_oauth", - "version": "0.3.0", + "version": "0.3.1", "description": "Pipedream Airtable (OAuth) Components", "main": "airtable_oauth.app.mjs", "keywords": [ diff --git a/components/airtable_oauth/sources/new-field/new-field.mjs b/components/airtable_oauth/sources/new-field/new-field.mjs index b527098e94cd3..6db13d3371942 100644 --- a/components/airtable_oauth/sources/new-field/new-field.mjs +++ b/components/airtable_oauth/sources/new-field/new-field.mjs @@ -4,7 +4,7 @@ export default { name: "New Field", description: "Emit new event for each new field created in a table", key: "airtable_oauth-new-field", - version: "0.0.6", + version: "0.0.7", type: "source", props: { ...common.props, diff --git a/components/airtable_oauth/sources/new-modified-or-deleted-records-instant/new-modified-or-deleted-records-instant.mjs b/components/airtable_oauth/sources/new-modified-or-deleted-records-instant/new-modified-or-deleted-records-instant.mjs index 054694a797d14..232241063889b 100644 --- a/components/airtable_oauth/sources/new-modified-or-deleted-records-instant/new-modified-or-deleted-records-instant.mjs +++ b/components/airtable_oauth/sources/new-modified-or-deleted-records-instant/new-modified-or-deleted-records-instant.mjs @@ -6,7 +6,7 @@ export default { name: "New Modified or Deleted Records (Instant)", description: "Emit new event each time a record is added, updated, or deleted in an Airtable table. [See the documentation](https://airtable.com/developers/web/api/create-a-webhook)", key: "airtable_oauth-new-modified-or-deleted-records-instant", - version: "0.0.1", + version: "0.0.2", type: "source", dedupe: "unique", props: { diff --git a/components/airtable_oauth/sources/new-modified-or-deleted-records/new-modified-or-deleted-records.mjs b/components/airtable_oauth/sources/new-modified-or-deleted-records/new-modified-or-deleted-records.mjs index 3ca29a927249b..ed37e8d2a2beb 100644 --- a/components/airtable_oauth/sources/new-modified-or-deleted-records/new-modified-or-deleted-records.mjs +++ b/components/airtable_oauth/sources/new-modified-or-deleted-records/new-modified-or-deleted-records.mjs @@ -5,7 +5,7 @@ export default { ...base, name: "New, Modified or Deleted Records", key: "airtable_oauth-new-modified-or-deleted-records", - version: "0.0.6", + version: "0.0.7", type: "source", description: "Emit new event each time a record is added, updated, or deleted in an Airtable table. Supports tables up to 10,000 records", props: { diff --git a/components/airtable_oauth/sources/new-or-modified-field/new-or-modified-field.mjs b/components/airtable_oauth/sources/new-or-modified-field/new-or-modified-field.mjs index 6a91741cf3343..8ff6651c69f1c 100644 --- a/components/airtable_oauth/sources/new-or-modified-field/new-or-modified-field.mjs +++ b/components/airtable_oauth/sources/new-or-modified-field/new-or-modified-field.mjs @@ -4,7 +4,7 @@ export default { name: "New or Modified Field", description: "Emit new event for each new or modified field in a table", key: "airtable_oauth-new-or-modified-field", - version: "0.0.6", + version: "0.0.7", type: "source", props: { ...common.props, diff --git a/components/airtable_oauth/sources/new-or-modified-records-in-view/new-or-modified-records-in-view.mjs b/components/airtable_oauth/sources/new-or-modified-records-in-view/new-or-modified-records-in-view.mjs index be69e185cc9e5..c130c8cfc7921 100644 --- a/components/airtable_oauth/sources/new-or-modified-records-in-view/new-or-modified-records-in-view.mjs +++ b/components/airtable_oauth/sources/new-or-modified-records-in-view/new-or-modified-records-in-view.mjs @@ -6,7 +6,7 @@ export default { name: "New or Modified Records in View", description: "Emit new event for each new or modified record in a view", key: "airtable_oauth-new-or-modified-records-in-view", - version: "0.0.6", + version: "0.0.7", type: "source", props: { ...base.props, diff --git a/components/airtable_oauth/sources/new-or-modified-records/new-or-modified-records.mjs b/components/airtable_oauth/sources/new-or-modified-records/new-or-modified-records.mjs index 1814893d29cb3..7bc083785dbad 100644 --- a/components/airtable_oauth/sources/new-or-modified-records/new-or-modified-records.mjs +++ b/components/airtable_oauth/sources/new-or-modified-records/new-or-modified-records.mjs @@ -7,7 +7,7 @@ export default { name: "New or Modified Records", key: "airtable_oauth-new-or-modified-records", description: "Emit new event for each new or modified record in a table", - version: "0.0.8", + version: "0.0.9", type: "source", props: { ...base.props, diff --git a/components/airtable_oauth/sources/new-records-in-view/new-records-in-view.mjs b/components/airtable_oauth/sources/new-records-in-view/new-records-in-view.mjs index bb4d186bb73c4..4132004cf6574 100644 --- a/components/airtable_oauth/sources/new-records-in-view/new-records-in-view.mjs +++ b/components/airtable_oauth/sources/new-records-in-view/new-records-in-view.mjs @@ -6,7 +6,7 @@ export default { name: "New Records in View", description: "Emit new event for each new record in a view", key: "airtable_oauth-new-records-in-view", - version: "0.0.6", + version: "0.0.7", type: "source", props: { ...base.props, diff --git a/components/airtable_oauth/sources/new-records/new-records.mjs b/components/airtable_oauth/sources/new-records/new-records.mjs index 0bd968d630d87..b310ee45052b8 100644 --- a/components/airtable_oauth/sources/new-records/new-records.mjs +++ b/components/airtable_oauth/sources/new-records/new-records.mjs @@ -6,7 +6,7 @@ export default { name: "New Records", description: "Emit new event for each new record in a table", key: "airtable_oauth-new-records", - version: "0.0.6", + version: "0.0.7", type: "source", props: { ...base.props, From bd6ad0f738f1938163f1bb17dc95ad4f13e71b34 Mon Sep 17 00:00:00 2001 From: js07 <19861096+js07@users.noreply.github.com> Date: Wed, 4 Dec 2024 15:23:21 -0500 Subject: [PATCH 3/4] update pnpm-lock.yaml --- pnpm-lock.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 641f9a8ec00c3..ad7317837dbcc 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -12241,7 +12241,7 @@ importers: version: 3.1.7 ts-jest: specifier: ^29.2.5 - version: 29.2.5(@babel/core@7.26.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.0))(jest@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0))(typescript@5.7.2) + version: 29.2.5(@babel/core@8.0.0-alpha.13)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@8.0.0-alpha.13))(jest@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0))(typescript@5.7.2) typescript: specifier: ^5.6 version: 5.7.2 @@ -39374,7 +39374,7 @@ snapshots: dependencies: typescript: 5.6.3 - ts-jest@29.2.5(@babel/core@7.26.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.0))(jest@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0))(typescript@5.7.2): + ts-jest@29.2.5(@babel/core@8.0.0-alpha.13)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@8.0.0-alpha.13))(jest@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0))(typescript@5.6.3): dependencies: bs-logger: 0.2.6 ejs: 3.1.10 @@ -39385,15 +39385,15 @@ snapshots: lodash.memoize: 4.1.2 make-error: 1.3.6 semver: 7.6.3 - typescript: 5.7.2 + typescript: 5.6.3 yargs-parser: 21.1.1 optionalDependencies: - '@babel/core': 7.26.0 + '@babel/core': 8.0.0-alpha.13 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.26.0) + babel-jest: 29.7.0(@babel/core@8.0.0-alpha.13) - ts-jest@29.2.5(@babel/core@8.0.0-alpha.13)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@8.0.0-alpha.13))(jest@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0))(typescript@5.6.3): + ts-jest@29.2.5(@babel/core@8.0.0-alpha.13)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@8.0.0-alpha.13))(jest@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0))(typescript@5.7.2): dependencies: bs-logger: 0.2.6 ejs: 3.1.10 @@ -39404,7 +39404,7 @@ snapshots: lodash.memoize: 4.1.2 make-error: 1.3.6 semver: 7.6.3 - typescript: 5.6.3 + typescript: 5.7.2 yargs-parser: 21.1.1 optionalDependencies: '@babel/core': 8.0.0-alpha.13 From 09c60edfbfb1722107daddd01ec769bb1229b901 Mon Sep 17 00:00:00 2001 From: js07 <19861096+js07@users.noreply.github.com> Date: Wed, 4 Dec 2024 15:23:56 -0500 Subject: [PATCH 4/4] update pnpm-lock.yaml --- pnpm-lock.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ad7317837dbcc..641f9a8ec00c3 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -12241,7 +12241,7 @@ importers: version: 3.1.7 ts-jest: specifier: ^29.2.5 - version: 29.2.5(@babel/core@8.0.0-alpha.13)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@8.0.0-alpha.13))(jest@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0))(typescript@5.7.2) + version: 29.2.5(@babel/core@7.26.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.0))(jest@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0))(typescript@5.7.2) typescript: specifier: ^5.6 version: 5.7.2 @@ -39374,7 +39374,7 @@ snapshots: dependencies: typescript: 5.6.3 - ts-jest@29.2.5(@babel/core@8.0.0-alpha.13)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@8.0.0-alpha.13))(jest@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0))(typescript@5.6.3): + ts-jest@29.2.5(@babel/core@7.26.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.0))(jest@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0))(typescript@5.7.2): dependencies: bs-logger: 0.2.6 ejs: 3.1.10 @@ -39385,15 +39385,15 @@ snapshots: lodash.memoize: 4.1.2 make-error: 1.3.6 semver: 7.6.3 - typescript: 5.6.3 + typescript: 5.7.2 yargs-parser: 21.1.1 optionalDependencies: - '@babel/core': 8.0.0-alpha.13 + '@babel/core': 7.26.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@8.0.0-alpha.13) + babel-jest: 29.7.0(@babel/core@7.26.0) - ts-jest@29.2.5(@babel/core@8.0.0-alpha.13)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@8.0.0-alpha.13))(jest@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0))(typescript@5.7.2): + ts-jest@29.2.5(@babel/core@8.0.0-alpha.13)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@8.0.0-alpha.13))(jest@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0))(typescript@5.6.3): dependencies: bs-logger: 0.2.6 ejs: 3.1.10 @@ -39404,7 +39404,7 @@ snapshots: lodash.memoize: 4.1.2 make-error: 1.3.6 semver: 7.6.3 - typescript: 5.7.2 + typescript: 5.6.3 yargs-parser: 21.1.1 optionalDependencies: '@babel/core': 8.0.0-alpha.13