diff --git a/components/dixa/actions/add-message/add-message.mjs b/components/dixa/actions/add-message/add-message.mjs index 2065bdf3217e4..f3f8b68e2685b 100644 --- a/components/dixa/actions/add-message/add-message.mjs +++ b/components/dixa/actions/add-message/add-message.mjs @@ -4,7 +4,7 @@ export default { key: "dixa-add-message", name: "Add Message to Conversation", description: "Adds a message to an existing conversation. [See the documentation](https://docs.dixa.io/openapi/dixa-api/v1/tag/Conversations/#tag/Conversations/operation/postConversationsConversationidMessages).", - version: "0.0.3", + version: "0.0.4", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/dixa/actions/claim-conversation/claim-conversation.mjs b/components/dixa/actions/claim-conversation/claim-conversation.mjs new file mode 100644 index 0000000000000..5004b6c9964d4 --- /dev/null +++ b/components/dixa/actions/claim-conversation/claim-conversation.mjs @@ -0,0 +1,58 @@ +import dixa from "../../dixa.app.mjs"; + +export default { + key: "dixa-claim-conversation", + name: "Claim Conversation", + description: "Claims a conversation for a given agent. To avoid taking over assigned conversations, set the force parameter to false. [See the documentation](https://docs.dixa.io/openapi/dixa-api/v1/tag/Conversations/#tag/Conversations/operation/putConversationsConversationidClaim)", + version: "0.0.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, + type: "action", + props: { + dixa, + endUserId: { + propDefinition: [ + dixa, + "endUserId", + ], + }, + conversationId: { + propDefinition: [ + dixa, + "conversationId", + ({ endUserId }) => ({ + endUserId, + }), + ], + }, + agentId: { + propDefinition: [ + dixa, + "agentId", + ], + hidden: false, + description: "The ID of the agent who is claiming the conversation.", + }, + force: { + type: "boolean", + label: "Force", + description: "Set as false to avoid taking over the conversation if it is already assigned to an agent.", + default: false, + }, + }, + async run({ $ }) { + const response = await this.dixa.claimConversation({ + $, + conversationId: this.conversationId, + data: { + agentId: this.agentId, + force: this.force, + }, + }); + $.export("$summary", `Successfully claimed conversation ${this.conversationId} for agent ${this.agentId}`); + return response; + }, +}; diff --git a/components/dixa/actions/close-conversation/close-conversation.mjs b/components/dixa/actions/close-conversation/close-conversation.mjs new file mode 100644 index 0000000000000..7aa1e260d8d78 --- /dev/null +++ b/components/dixa/actions/close-conversation/close-conversation.mjs @@ -0,0 +1,52 @@ +import dixa from "../../dixa.app.mjs"; + +export default { + key: "dixa-close-conversation", + name: "Close Conversation", + description: "Mark a conversation as closed by providing its id. [See the documentation](https://docs.dixa.io/openapi/dixa-api/v1/tag/Conversations/#tag/Conversations/operation/putConversationsConversationidClose)", + version: "0.0.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, + type: "action", + props: { + dixa, + endUserId: { + propDefinition: [ + dixa, + "endUserId", + ], + }, + conversationId: { + propDefinition: [ + dixa, + "conversationId", + ({ endUserId }) => ({ + endUserId, + }), + ], + }, + agentId: { + propDefinition: [ + dixa, + "agentId", + ], + hidden: false, + description: "An optional agent/admin to close the conversation.", + optional: true, + }, + }, + async run({ $ }) { + const response = await this.dixa.closeConversation({ + $, + conversationId: this.conversationId, + data: { + agentId: this.agentId, + }, + }); + $.export("$summary", `Successfully closed conversation ${this.conversationId}`); + return response; + }, +}; diff --git a/components/dixa/actions/create-conversation/create-conversation.mjs b/components/dixa/actions/create-conversation/create-conversation.mjs index cba054489644d..3ba96b34c92d7 100644 --- a/components/dixa/actions/create-conversation/create-conversation.mjs +++ b/components/dixa/actions/create-conversation/create-conversation.mjs @@ -4,7 +4,7 @@ export default { key: "dixa-create-conversation", name: "Create Conversation", description: "Creates a new email or contact form-based conversation. [See the documentation](https://docs.dixa.io/openapi/dixa-api/v1/tag/Conversations/#tag/Conversations/operation/postConversations).", - version: "0.0.3", + version: "0.0.4", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/dixa/actions/create-note/create-note.mjs b/components/dixa/actions/create-note/create-note.mjs new file mode 100644 index 0000000000000..f6873d3632290 --- /dev/null +++ b/components/dixa/actions/create-note/create-note.mjs @@ -0,0 +1,48 @@ +import dixa from "../../dixa.app.mjs"; + +export default { + key: "dixa-create-note", + name: "Create Note", + description: "Creates an internal note for a conversation. [See the documentation](https://docs.dixa.io/openapi/dixa-api/v1/tag/Conversations/#tag/Conversations/operation/postConversationsConversationidNotes).", + version: "0.0.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: false, + }, + type: "action", + props: { + dixa, + endUserId: { + propDefinition: [ + dixa, + "endUserId", + ], + }, + conversationId: { + propDefinition: [ + dixa, + "conversationId", + ({ endUserId }) => ({ + endUserId, + }), + ], + }, + message: { + type: "string", + label: "Message", + description: "The message to create the note for.", + }, + }, + async run({ $ }) { + const response = await this.dixa.createNote({ + $, + conversationId: this.conversationId, + data: { + message: this.message, + }, + }); + $.export("$summary", `Successfully created note with ID ${response.data.id}`); + return response; + }, +}; diff --git a/components/dixa/actions/get-article-translations/get-article-translations.mjs b/components/dixa/actions/get-article-translations/get-article-translations.mjs index cb964d211844a..2db9e896837c6 100644 --- a/components/dixa/actions/get-article-translations/get-article-translations.mjs +++ b/components/dixa/actions/get-article-translations/get-article-translations.mjs @@ -4,7 +4,7 @@ export default { key: "dixa-get-article-translations", name: "Get Article Translations", description: "Get the translations of an article from Dixa. [See the documentation](https://docs.dixa.io/openapi/dixa-api/beta/tag/Knowledge/#tag/Knowledge/operation/getKnowledgeArticlesArticleidTranslations)", - version: "0.0.1", + version: "0.0.2", type: "action", annotations: { destructiveHint: false, diff --git a/components/dixa/actions/get-article/get-article.mjs b/components/dixa/actions/get-article/get-article.mjs index aa0b988d9db58..7bf510e73681c 100644 --- a/components/dixa/actions/get-article/get-article.mjs +++ b/components/dixa/actions/get-article/get-article.mjs @@ -4,7 +4,7 @@ export default { key: "dixa-get-article", name: "Get Article", description: "Get an article from Dixa. [See the documentation](https://docs.dixa.io/openapi/dixa-api/v1/tag/Knowledge/#tag/Knowledge/operation/getKnowledgeArticlesArticleid)", - version: "0.0.1", + version: "0.0.2", type: "action", annotations: { destructiveHint: false, diff --git a/components/dixa/actions/get-conversation/get-conversation.mjs b/components/dixa/actions/get-conversation/get-conversation.mjs new file mode 100644 index 0000000000000..4a699c7610998 --- /dev/null +++ b/components/dixa/actions/get-conversation/get-conversation.mjs @@ -0,0 +1,40 @@ +import dixa from "../../dixa.app.mjs"; + +export default { + key: "dixa-get-conversation", + name: "Get Conversation", + description: "Gets a conversation. [See the documentation](https://docs.dixa.io/openapi/dixa-api/v1/tag/Conversations/#tag/Conversations/operation/getConversationsConversationid)", + version: "0.0.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, + type: "action", + props: { + dixa, + endUserId: { + propDefinition: [ + dixa, + "endUserId", + ], + }, + conversationId: { + propDefinition: [ + dixa, + "conversationId", + ({ endUserId }) => ({ + endUserId, + }), + ], + }, + }, + async run({ $ }) { + const response = await this.dixa.getConversation({ + $, + conversationId: this.conversationId, + }); + $.export("$summary", `Successfully retrieved conversation ${this.conversationId}`); + return response; + }, +}; diff --git a/components/dixa/actions/list-messages/list-messages.mjs b/components/dixa/actions/list-messages/list-messages.mjs new file mode 100644 index 0000000000000..e9aa481cf0f32 --- /dev/null +++ b/components/dixa/actions/list-messages/list-messages.mjs @@ -0,0 +1,40 @@ +import dixa from "../../dixa.app.mjs"; + +export default { + key: "dixa-list-messages", + name: "List Messages", + description: "Lists messages from a conversation. [See the documentation](https://docs.dixa.io/openapi/dixa-api/v1/tag/Conversations/#tag/Conversations/operation/getConversationsConversationidMessages).", + version: "0.0.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, + type: "action", + props: { + dixa, + endUserId: { + propDefinition: [ + dixa, + "endUserId", + ], + }, + conversationId: { + propDefinition: [ + dixa, + "conversationId", + ({ endUserId }) => ({ + endUserId, + }), + ], + }, + }, + async run({ $ }) { + const response = await this.dixa.listMessages({ + $, + conversationId: this.conversationId, + }); + $.export("$summary", `Successfully retrieved ${response.data.length} message(s) from conversation ${this.conversationId}`); + return response; + }, +}; diff --git a/components/dixa/actions/list-notes/list-notes.mjs b/components/dixa/actions/list-notes/list-notes.mjs new file mode 100644 index 0000000000000..75d8c903cbb9d --- /dev/null +++ b/components/dixa/actions/list-notes/list-notes.mjs @@ -0,0 +1,40 @@ +import dixa from "../../dixa.app.mjs"; + +export default { + key: "dixa-list-notes", + name: "List Notes", + description: "Lists internal notes from a conversation. [See the documentation](https://docs.dixa.io/openapi/dixa-api/v1/tag/Conversations/#tag/Conversations/operation/getConversationsConversationidNotes).", + version: "0.0.1", + annotations: { + destructiveHint: false, + openWorldHint: true, + readOnlyHint: true, + }, + type: "action", + props: { + dixa, + endUserId: { + propDefinition: [ + dixa, + "endUserId", + ], + }, + conversationId: { + propDefinition: [ + dixa, + "conversationId", + ({ endUserId }) => ({ + endUserId, + }), + ], + }, + }, + async run({ $ }) { + const response = await this.dixa.listNotes({ + $, + conversationId: this.conversationId, + }); + $.export("$summary", `Successfully retrieved ${response.data.length} note(s) from conversation ${this.conversationId}`); + return response; + }, +}; diff --git a/components/dixa/actions/set-custom-contact-attributes/set-custom-contact-attributes.mjs b/components/dixa/actions/set-custom-contact-attributes/set-custom-contact-attributes.mjs index 5607d196030c9..d7c91d860522a 100644 --- a/components/dixa/actions/set-custom-contact-attributes/set-custom-contact-attributes.mjs +++ b/components/dixa/actions/set-custom-contact-attributes/set-custom-contact-attributes.mjs @@ -4,7 +4,7 @@ export default { key: "dixa-set-custom-contact-attributes", name: "Set Custom Contact Attributes", description: "Updates custom attributes for a specified user. [See the documentation](https://docs.dixa.io/openapi/dixa-api/v1/tag/Custom-Attributes/#tag/Custom-Attributes/operation/patchEndusersUseridCustom-attributes)", - version: "0.0.3", + version: "0.0.4", annotations: { destructiveHint: true, openWorldHint: true, diff --git a/components/dixa/actions/tag-conversation/tag-conversation.mjs b/components/dixa/actions/tag-conversation/tag-conversation.mjs index b8b0ad491731b..63cdc2f3e5934 100644 --- a/components/dixa/actions/tag-conversation/tag-conversation.mjs +++ b/components/dixa/actions/tag-conversation/tag-conversation.mjs @@ -4,7 +4,7 @@ export default { key: "dixa-tag-conversation", name: "Add Tag to Conversation", description: "Adds a tag to a conversation. [See the documentation](https://docs.dixa.io/openapi/dixa-api/v1/tag/Tags/#tag/Tags/operation/putConversationsConversationidTagsTagid)", - version: "0.0.3", + version: "0.0.4", annotations: { destructiveHint: false, openWorldHint: true, diff --git a/components/dixa/dixa.app.mjs b/components/dixa/dixa.app.mjs index bf06688976b84..46c49511ec948 100644 --- a/components/dixa/dixa.app.mjs +++ b/components/dixa/dixa.app.mjs @@ -224,5 +224,56 @@ export default { ...opts, }); }, + listMessages({ + conversationId, ...opts + }) { + return this._makeRequest({ + path: `/conversations/${conversationId}/messages`, + ...opts, + }); + }, + listNotes({ + conversationId, ...opts + }) { + return this._makeRequest({ + path: `/conversations/${conversationId}/notes`, + ...opts, + }); + }, + createNote({ + conversationId, ...opts + }) { + return this._makeRequest({ + method: "POST", + path: `/conversations/${conversationId}/notes`, + ...opts, + }); + }, + getConversation({ + conversationId, ...opts + }) { + return this._makeRequest({ + path: `/conversations/${conversationId}`, + ...opts, + }); + }, + claimConversation({ + conversationId, ...opts + }) { + return this._makeRequest({ + method: "PUT", + path: `/conversations/${conversationId}/claim`, + ...opts, + }); + }, + closeConversation({ + conversationId, ...opts + }) { + return this._makeRequest({ + method: "PUT", + path: `/conversations/${conversationId}/close`, + ...opts, + }); + }, }, }; diff --git a/components/dixa/package.json b/components/dixa/package.json index efbb7cce9974a..9917891f0f756 100644 --- a/components/dixa/package.json +++ b/components/dixa/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/dixa", - "version": "0.2.0", + "version": "0.3.0", "description": "Pipedream Dixa Components", "main": "dixa.app.mjs", "keywords": [ diff --git a/components/dixa/sources/conversation-status-changed-instant/conversation-status-changed-instant.mjs b/components/dixa/sources/conversation-status-changed-instant/conversation-status-changed-instant.mjs index cc2a77ed85f16..d461ac5071cf2 100644 --- a/components/dixa/sources/conversation-status-changed-instant/conversation-status-changed-instant.mjs +++ b/components/dixa/sources/conversation-status-changed-instant/conversation-status-changed-instant.mjs @@ -6,7 +6,7 @@ export default { key: "dixa-conversation-status-changed-instant", name: "New Conversation Status Changed (Instant)", description: "Emit new events when the status of a conversation changes (e.g., open, closed, or abandoned). [See the documentation](https://docs.dixa.io/openapi/dixa-api/v1/tag/Webhooks/).", - version: "0.0.2", + version: "0.0.3", type: "source", dedupe: "unique", methods: { diff --git a/components/dixa/sources/new-conversation-created-instant/new-conversation-created-instant.mjs b/components/dixa/sources/new-conversation-created-instant/new-conversation-created-instant.mjs index 88a73eb536d39..5b280e726dc48 100644 --- a/components/dixa/sources/new-conversation-created-instant/new-conversation-created-instant.mjs +++ b/components/dixa/sources/new-conversation-created-instant/new-conversation-created-instant.mjs @@ -6,7 +6,7 @@ export default { key: "dixa-new-conversation-created-instant", name: "New Conversation Created (Instant)", description: "Emit new event when a conversation is created in Dixa. [See the documentation](https://docs.dixa.io/openapi/dixa-api/v1/tag/Webhooks/).", - version: "0.0.2", + version: "0.0.3", type: "source", dedupe: "unique", methods: { diff --git a/components/dixa/sources/new-customer-satisfaction-rating-instant/new-customer-satisfaction-rating-instant.mjs b/components/dixa/sources/new-customer-satisfaction-rating-instant/new-customer-satisfaction-rating-instant.mjs index 477054ec9b1c7..c417cbf479141 100644 --- a/components/dixa/sources/new-customer-satisfaction-rating-instant/new-customer-satisfaction-rating-instant.mjs +++ b/components/dixa/sources/new-customer-satisfaction-rating-instant/new-customer-satisfaction-rating-instant.mjs @@ -6,7 +6,7 @@ export default { key: "dixa-new-customer-satisfaction-rating-instant", name: "New Customer Satisfaction Rating (Instant)", description: "Emit new event when a customer submits a satisfaction rating for a conversation. [See the documentation](https://docs.dixa.io/openapi/dixa-api/v1/tag/Webhooks/).", - version: "0.0.2", + version: "0.0.3", type: "source", dedupe: "unique", methods: { diff --git a/components/dixa/sources/new-message-added-instant/new-message-added-instant.mjs b/components/dixa/sources/new-message-added-instant/new-message-added-instant.mjs index fbf485416410c..f9570561de962 100644 --- a/components/dixa/sources/new-message-added-instant/new-message-added-instant.mjs +++ b/components/dixa/sources/new-message-added-instant/new-message-added-instant.mjs @@ -6,7 +6,7 @@ export default { key: "dixa-new-message-added-instant", name: "New Message Added to Conversation (Instant)", description: "Emit new event when a new message is added to a conversation. [See the documentation](https://docs.dixa.io/openapi/dixa-api/v1/tag/Webhooks/).", - version: "0.0.2", + version: "0.0.3", type: "source", dedupe: "unique", methods: { diff --git a/components/dixa/sources/new-tag-added-instant/new-tag-added-instant.mjs b/components/dixa/sources/new-tag-added-instant/new-tag-added-instant.mjs index 25bae9ef1f289..a66275088a629 100644 --- a/components/dixa/sources/new-tag-added-instant/new-tag-added-instant.mjs +++ b/components/dixa/sources/new-tag-added-instant/new-tag-added-instant.mjs @@ -6,7 +6,7 @@ export default { key: "dixa-new-tag-added-instant", name: "New Tag Added in Conversation (Instant)", description: "Emit new event when a tag is added to a conversation. [See the documentation](https://docs.dixa.io/openapi/dixa-api/v1/tag/Webhooks/).", - version: "0.0.2", + version: "0.0.3", type: "source", dedupe: "unique", methods: { diff --git a/components/postiz/postiz.app.mjs b/components/postiz/postiz.app.mjs index 5d949fba1df89..30f2b7aa9d040 100644 --- a/components/postiz/postiz.app.mjs +++ b/components/postiz/postiz.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/promptlayer/promptlayer.app.mjs b/components/promptlayer/promptlayer.app.mjs index 081945aa4c9d6..b24444e5e21eb 100644 --- a/components/promptlayer/promptlayer.app.mjs +++ b/components/promptlayer/promptlayer.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/quickchart/quickchart.app.mjs b/components/quickchart/quickchart.app.mjs index 87629778e793f..cf4419fab4273 100644 --- a/components/quickchart/quickchart.app.mjs +++ b/components/quickchart/quickchart.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/quintadb/quintadb.app.mjs b/components/quintadb/quintadb.app.mjs index 90efca0b41d3d..b101c3ec74bc8 100644 --- a/components/quintadb/quintadb.app.mjs +++ b/components/quintadb/quintadb.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/referral_factory/referral_factory.app.mjs b/components/referral_factory/referral_factory.app.mjs index e36cfed4f6d0c..a68c5c183caa8 100644 --- a/components/referral_factory/referral_factory.app.mjs +++ b/components/referral_factory/referral_factory.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/reportei/reportei.app.mjs b/components/reportei/reportei.app.mjs index 4ae722b786669..38ce368d1a300 100644 --- a/components/reportei/reportei.app.mjs +++ b/components/reportei/reportei.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/rootly/rootly.app.mjs b/components/rootly/rootly.app.mjs index 2fedc8d3720a7..d01a09ea303aa 100644 --- a/components/rootly/rootly.app.mjs +++ b/components/rootly/rootly.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/scrape_creators/scrape_creators.app.mjs b/components/scrape_creators/scrape_creators.app.mjs index 28617d69c08f1..572ee0dcb2894 100644 --- a/components/scrape_creators/scrape_creators.app.mjs +++ b/components/scrape_creators/scrape_creators.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/scrapeops/scrapeops.app.mjs b/components/scrapeops/scrapeops.app.mjs index b56b600c35f2c..e4f1ac3c0ce2c 100644 --- a/components/scrapeops/scrapeops.app.mjs +++ b/components/scrapeops/scrapeops.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/scrapingdog/scrapingdog.app.mjs b/components/scrapingdog/scrapingdog.app.mjs index b325a90b9d810..5699690727933 100644 --- a/components/scrapingdog/scrapingdog.app.mjs +++ b/components/scrapingdog/scrapingdog.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/scrappey/scrappey.app.mjs b/components/scrappey/scrappey.app.mjs index 51a9275f14cfd..b671f21f8c524 100644 --- a/components/scrappey/scrappey.app.mjs +++ b/components/scrappey/scrappey.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/shuffle/shuffle.app.mjs b/components/shuffle/shuffle.app.mjs index 9d350d0303cb9..644a66fa452c3 100644 --- a/components/shuffle/shuffle.app.mjs +++ b/components/shuffle/shuffle.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/components/simplelocalize/simplelocalize.app.mjs b/components/simplelocalize/simplelocalize.app.mjs index 6660c415a733f..b6f1a712ac501 100644 --- a/components/simplelocalize/simplelocalize.app.mjs +++ b/components/simplelocalize/simplelocalize.app.mjs @@ -8,4 +8,4 @@ export default { console.log(Object.keys(this.$auth)); }, }, -}; \ No newline at end of file +}; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ab560fd88a268..539e5b5baa1ff 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -59,10 +59,10 @@ importers: version: 7.120.4 '@types/node': specifier: ^20.17.6 - version: 20.19.24 + version: 20.19.25 linkup-sdk: specifier: ^1.0.3 - version: 1.2.0(@types/node@20.19.24)(typescript@5.6.3) + version: 1.2.0(@types/node@20.19.25)(typescript@5.6.3) uuid: specifier: ^8.3.2 version: 8.3.2 @@ -108,7 +108,7 @@ importers: version: 2.32.0(@typescript-eslint/parser@8.46.4(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1) eslint-plugin-jest: specifier: ^28 - version: 28.14.0(@typescript-eslint/eslint-plugin@8.46.4(@typescript-eslint/parser@8.46.4(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(jest@29.7.0(@types/node@20.19.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.24)(typescript@5.6.3)))(typescript@5.6.3) + version: 28.14.0(@typescript-eslint/eslint-plugin@8.46.4(@typescript-eslint/parser@8.46.4(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(jest@29.7.0(@types/node@20.19.25)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.25)(typescript@5.6.3)))(typescript@5.6.3) eslint-plugin-jsonc: specifier: ^1.6.0 version: 1.7.0(eslint@8.57.1) @@ -129,7 +129,7 @@ importers: version: 7.0.4 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@20.19.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.24)(typescript@5.6.3)) + version: 29.7.0(@types/node@20.19.25)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.25)(typescript@5.6.3)) lint-staged: specifier: ^12.3.4 version: 12.5.0(enquirer@2.4.1) @@ -144,7 +144,7 @@ importers: version: 4.0.0 ts-jest: specifier: ^29.1.1 - version: 29.4.5(@babel/core@8.0.0-beta.3)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@8.0.0-beta.3))(jest-util@29.7.0)(jest@29.7.0(@types/node@20.19.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.24)(typescript@5.6.3)))(typescript@5.6.3) + version: 29.4.5(@babel/core@8.0.0-beta.3)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@8.0.0-beta.3))(jest-util@29.7.0)(jest@29.7.0(@types/node@20.19.25)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.25)(typescript@5.6.3)))(typescript@5.6.3) tsc-esm-fix: specifier: ^2.18.0 version: 2.20.27 @@ -8344,7 +8344,7 @@ importers: dependencies: linkup-sdk: specifier: ^1.0.3 - version: 1.2.0(@types/node@22.19.0)(typescript@5.9.3) + version: 1.2.0(@types/node@22.19.1)(typescript@5.9.3) components/linkupapi: {} @@ -9684,7 +9684,7 @@ importers: version: 0.5.6 netlify: specifier: ^23.0.0 - version: 23.10.0(@azure/storage-blob@12.29.1)(@types/express@4.17.25)(@types/node@22.19.0)(picomatch@4.0.3)(rollup@4.53.2) + version: 23.10.0(@azure/storage-blob@12.29.1)(@types/express@4.17.25)(@types/node@22.19.1)(picomatch@4.0.3)(rollup@4.53.2) parse-link-header: specifier: ^2.0.0 version: 2.0.0 @@ -14330,7 +14330,7 @@ importers: dependencies: stripe: specifier: ^18.0.0 - version: 18.5.0(@types/node@22.19.0) + version: 18.5.0(@types/node@22.19.1) components/stripo: dependencies: @@ -17181,7 +17181,7 @@ importers: version: 4.17.12 '@types/node': specifier: ^20.14.7 - version: 20.19.24 + version: 20.19.25 typescript: specifier: ^5.5.2 version: 5.6.3 @@ -17224,7 +17224,7 @@ importers: version: 5.0.5 '@types/node': specifier: ^22.15.3 - version: 22.19.0 + version: 22.19.1 dotenv: specifier: ^6.0.0 version: 6.2.0 @@ -17249,7 +17249,7 @@ importers: version: 1.3.2 tsup: specifier: ^8.3.6 - version: 8.5.0(@microsoft/api-extractor@7.54.0(@types/node@22.19.0))(jiti@2.6.1)(postcss@8.5.6)(tsx@4.20.6)(typescript@5.6.3)(yaml@2.8.1) + version: 8.5.0(@microsoft/api-extractor@7.55.0(@types/node@22.19.1))(jiti@2.6.1)(postcss@8.5.6)(tsx@4.20.6)(typescript@5.6.3)(yaml@2.8.1) typescript: specifier: ^5.6 version: 5.6.3 @@ -17273,7 +17273,7 @@ importers: version: 2.2.0 '@tanstack/react-query': specifier: ^5.59.16 - version: 5.90.7(react@18.3.1) + version: 5.90.8(react@18.3.1) lodash.isequal: specifier: ^4.5.0 version: 4.5.0 @@ -17301,10 +17301,10 @@ importers: version: 18.3.26 vite: specifier: ^5.4.11 - version: 5.4.21(@types/node@22.19.0) + version: 5.4.21(@types/node@22.19.1) vite-plugin-dts: specifier: ^4.3.0 - version: 4.5.4(@types/node@22.19.0)(rollup@4.53.2)(typescript@5.9.3)(vite@5.4.21(@types/node@22.19.0)) + version: 4.5.4(@types/node@22.19.1)(rollup@4.53.2)(typescript@5.9.3)(vite@5.4.21(@types/node@22.19.1)) packages/prompts: dependencies: @@ -17332,7 +17332,7 @@ importers: version: 29.5.14 '@types/node': specifier: ^20.17.6 - version: 20.19.24 + version: 20.19.25 '@types/rails__actioncable': specifier: ^6.1.11 version: 6.1.11 @@ -17341,7 +17341,7 @@ importers: version: 8.18.1 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@20.19.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.24)(typescript@5.6.3)) + version: 29.7.0(@types/node@20.19.25)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.25)(typescript@5.6.3)) lodash.isequal: specifier: ^4.5.0 version: 4.5.0 @@ -17350,10 +17350,10 @@ importers: version: 3.1.11 ts-jest: specifier: ^29.2.5 - version: 29.4.5(@babel/core@7.28.5)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.28.5))(jest-util@29.7.0)(jest@29.7.0(@types/node@20.19.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.24)(typescript@5.6.3)))(typescript@5.6.3) + version: 29.4.5(@babel/core@7.28.5)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.28.5))(jest-util@29.7.0)(jest@29.7.0(@types/node@20.19.25)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.25)(typescript@5.6.3)))(typescript@5.6.3) tsup: specifier: ^8.3.6 - version: 8.5.0(@microsoft/api-extractor@7.54.0(@types/node@20.19.24))(jiti@2.6.1)(postcss@8.5.6)(tsx@4.20.6)(typescript@5.6.3)(yaml@2.8.1) + version: 8.5.0(@microsoft/api-extractor@7.55.0(@types/node@20.19.25))(jiti@2.6.1)(postcss@8.5.6)(tsx@4.20.6)(typescript@5.6.3)(yaml@2.8.1) typescript: specifier: ^5.6 version: 5.6.3 @@ -17393,7 +17393,7 @@ importers: version: 3.1.0 jest: specifier: ^29.1.2 - version: 29.7.0(@types/node@22.19.0)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.19.0)(typescript@3.9.10)) + version: 29.7.0(@types/node@22.19.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.19.1)(typescript@3.9.10)) type-fest: specifier: ^4.15.0 version: 4.41.0 @@ -17421,7 +17421,7 @@ importers: devDependencies: '@types/node': specifier: ^20.9.2 - version: 20.19.24 + version: 20.19.25 dtslint: specifier: ^4.2.1 version: 4.2.1(typescript@5.6.3) @@ -18567,11 +18567,11 @@ packages: '@bufbuild/protobuf@1.10.1': resolution: {integrity: sha512-wJ8ReQbHxsAfXhrf9ixl0aYbZorRuOWpBNzm8pL8ftmSxQx/wnJD5Eg861NwJU/czy2VXFIebCeZnZrI9rktIQ==} - '@bufbuild/protobuf@2.10.0': - resolution: {integrity: sha512-fdRs9PSrBF7QUntpZpq6BTw58fhgGJojgg39m9oFOJGZT+nip9b0so5cYY1oWl5pvemDLr0cPPsH46vwThEbpQ==} + '@bufbuild/protobuf@2.10.1': + resolution: {integrity: sha512-ckS3+vyJb5qGpEYv/s1OebUHDi/xSNtfgw1wqKZo7MR9F2z+qXr0q5XagafAG/9O0QPVIUfST0smluYSTpYFkg==} - '@bufbuild/protoplugin@2.10.0': - resolution: {integrity: sha512-GPJOZ1Gp9/Ci3MXP3yI7+q4G7IhB5cSpbLjsfnBILxtNx69I9+ix3r9P7JfewHvqMjtPe6L+YWX1LPBGNfZMGw==} + '@bufbuild/protoplugin@2.10.1': + resolution: {integrity: sha512-imB8dKEjrOnG5+XqVS+CeYn924WGLU/g3wogKhk11XtX9y9NJ7432OS6h24asuBbLrQcPdEZ6QkfM7KeOCeeyQ==} '@bugsnag/browser@8.6.0': resolution: {integrity: sha512-7UGqTGnQqXUQ09gOlWbDTFUSbeLIIrP+hML3kTOq8Zdc8nP/iuOEflXGLV2TxWBWW8xIUPc928caFPr9EcaDuw==} @@ -19793,11 +19793,11 @@ packages: '@memberstack/admin@1.3.1': resolution: {integrity: sha512-ulRCIpt6k/3RIag+YyU2eW+b0Ik1pF+gXx2b+hYI3Mk6/NxwzZWTVC+YJw3BO3tRUq9TOFy7IaPMfm8wQTJYIA==} - '@microsoft/api-extractor-model@7.31.3': - resolution: {integrity: sha512-dv4quQI46p0U03TCEpasUf6JrJL3qjMN7JUAobsPElxBv4xayYYvWW9aPpfYV+Jx6hqUcVaLVOeV7+5hxsyoFQ==} + '@microsoft/api-extractor-model@7.32.0': + resolution: {integrity: sha512-QIVJSreb8fGGJy1Qx0yzGVXxvHJN1WXgkFNHFheVv1iBJNqgvp+xeT3ienJmRwXmPPc5Es/cxBrXtKZJR3i7iw==} - '@microsoft/api-extractor@7.54.0': - resolution: {integrity: sha512-t0SEcbVUPy4yAVykPafTNWktBg728X6p9t8qCuGDsYr1/lz2VQFihYDP2CnBFSArP5vwJPcvxktoKVSqH326cA==} + '@microsoft/api-extractor@7.55.0': + resolution: {integrity: sha512-TYc5OtAK/9E3HGgd2bIfSjQDYIwPc0dysf9rPiwXZGsq916I6W2oww9bhm1OxPOeg6rMfOX3PoroGd7oCryYog==} hasBin: true '@microsoft/microsoft-graph-client@3.0.7': @@ -19818,11 +19818,11 @@ packages: stream-browserify: optional: true - '@microsoft/tsdoc-config@0.17.1': - resolution: {integrity: sha512-UtjIFe0C6oYgTnad4q1QP4qXwLhe6tIpNTRStJ2RZEPIkqQPREAwE5spzVxsdn9UaEMUqhh0AqSx3X4nWAKXWw==} + '@microsoft/tsdoc-config@0.18.0': + resolution: {integrity: sha512-8N/vClYyfOH+l4fLkkr9+myAoR6M7akc8ntBJ4DJdWH2b09uVfr71+LTMpNyG19fNqWDg8KEDZhx5wxuqHyGjw==} - '@microsoft/tsdoc@0.15.1': - resolution: {integrity: sha512-4aErSrCR/On/e5G2hDP0wjooqDdauzEbIq8hIkIe5pXV0rtWJZvdCEKL0ykZxex+IxIwBp0eGeV48hQN07dXtw==} + '@microsoft/tsdoc@0.16.0': + resolution: {integrity: sha512-xgAyonlVVS+q7Vc7qLW0UrJU7rSFcETRWsqdXZtjzRU8dF+6CkozTK4V4y1LwOX7j8r/vHphjDeMeGI4tNGeGA==} '@mixmark-io/domino@2.2.0': resolution: {integrity: sha512-Y28PR25bHXUg88kCV7nivXrP2Nj2RueZ3/l/jdx6J9f8J4nsEGcgX0Qe6lt7Pa+J79+kPiJU3LguR6O/6zrLOw==} @@ -20690,8 +20690,8 @@ packages: resolution: {integrity: sha512-05ZVVKdT4cRgAKitceZb33h3RPEukXcrLba60rn4j36HA788YAgYWeieXs3j+uju4k/bMxswTVVL7mOTLwT9pQ==} engines: {node: '>=18'} - '@putout/babel@4.5.0': - resolution: {integrity: sha512-TnxnFMHmDZdyEoV4au5tgdX5M0Spt2QNFeZtZC4MZcSP7R8+OFhXe7NnnGh8oK/hOAgFYG82+FFkRSnc0lDkwQ==} + '@putout/babel@4.5.2': + resolution: {integrity: sha512-7tmOg0SlOY3wXXyjK1gx9ShepC78GjvD8CFUo8L7Jyoe12kcnOuTA/9Grn7BclvZUFkzyHKNGFkeZjWLlGLFvQ==} engines: {node: '>=20'} '@putout/cli-cache@6.0.0': @@ -21344,8 +21344,8 @@ packages: peerDependencies: putout: '>=40' - '@putout/plugin-remove-iife@5.0.0': - resolution: {integrity: sha512-AQM0hM1a4ORt13yZHlb+5mOQMkx2NjcXB504CMg5egPJysMwuXfv6GPSrVbjfN56c0mO/MiQcLZqltTI4dCmxw==} + '@putout/plugin-remove-iife@5.1.0': + resolution: {integrity: sha512-UYUxfsWfDY5ixjNBAHAJ+QQ66a4gtk2ekkJ7Z4igrysRyCLAJYa6/Ydig+PKzGOMbsHQZSZ48RAeC/BAIKTKDw==} engines: {node: '>=20'} peerDependencies: putout: '>=40' @@ -21398,8 +21398,8 @@ packages: peerDependencies: putout: '>=40' - '@putout/plugin-remove-useless-arguments@12.1.0': - resolution: {integrity: sha512-G/+OrKPNdmA0mQAW2FNE1gDrl77ZU6nwu7EHl9hPJ6y9NXwuXWomyy9tpQoY1aaAFSvcOKXSV0i2vXNaj5SNaA==} + '@putout/plugin-remove-useless-arguments@12.1.1': + resolution: {integrity: sha512-Cm5WwD10YPrb+cp9YJ+9Wd4panlYIIjV3Vttu6dBkIXXwb2/kE6fF0iL/EgmrV8+diEyXTPpYxb0NU7RtkozKA==} engines: {node: '>=20'} peerDependencies: putout: '>=40' @@ -21578,8 +21578,8 @@ packages: resolution: {integrity: sha512-JbnHSCUcZGdCd2rs50tPYEB4zntd1xlO2s8EpP+dJnoDxR7JfTRjqBGFja2OT9lmzxJlrQk5X41G0NeR5VHw9A==} engines: {node: '>=20'} - '@putout/printer@15.26.2': - resolution: {integrity: sha512-Fckusxh/99+gtKLFC5qoL7K56smm9yL57MESP9yhlhigR65dHMgu8d6enSffKZwWcSczcBJYqEyhzd31yhJSwA==} + '@putout/printer@15.27.0': + resolution: {integrity: sha512-Zy0ZE1wEWLmmSptVzcVnsAv0krW+Owm4UvRzqSasM6AwDefH+2JXnab3kmpAVWFt+5kj2sUk9QKsMirAMCVxbg==} engines: {node: '>=20'} '@putout/processor-css@11.1.0': @@ -21858,8 +21858,8 @@ packages: '@rtsao/scc@1.1.0': resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==} - '@rushstack/eslint-patch@1.14.1': - resolution: {integrity: sha512-jGTk8UD/RdjsNZW8qq10r0RBvxL8OWtoT+kImlzPDFilmozzM+9QmIJsmze9UiSBrFU45ZxhTYBypn9q9z/VfQ==} + '@rushstack/eslint-patch@1.15.0': + resolution: {integrity: sha512-ojSshQPKwVvSMR8yT2L/QtUkV5SXi/IfDiJ4/8d6UbTPjiHVmxZzUAzGD8Tzks1b9+qQkZa0isUOvYObedITaw==} '@rushstack/node-core-library@5.18.0': resolution: {integrity: sha512-XDebtBdw5S3SuZIt+Ra2NieT8kQ3D2Ow1HxhDQ/2soinswnOu9e7S69VSwTOLlQnx5mpWbONu+5JJjDxMAb6Fw==} @@ -22071,8 +22071,8 @@ packages: resolution: {integrity: sha512-ezHLe1tKLUxDJo2LHtDuEDyWXolw8WGOR92qb4bQdWq/zKenO5BvctZGrVJBK08zjezSk7bmbKFOXIVyChvDLw==} engines: {node: '>=18.0.0'} - '@smithy/core@3.18.0': - resolution: {integrity: sha512-vGSDXOJFZgOPTatSI1ly7Gwyy/d/R9zh2TO3y0JZ0uut5qQ88p9IaWaZYIWSSqtdekNM4CGok/JppxbAff4KcQ==} + '@smithy/core@3.18.1': + resolution: {integrity: sha512-IesyYrxNbuynvVHbCfFX7eh2d+S67BbvlUBwIAOV7pg1Pg7QgHZgHExq5E+EHwkuPL7xuljEPOEFbJvmMgs37g==} engines: {node: '>=18.0.0'} '@smithy/credential-provider-imds@4.2.5': @@ -22135,12 +22135,12 @@ packages: resolution: {integrity: sha512-Y/RabVa5vbl5FuHYV2vUCwvh/dqzrEY/K2yWPSqvhFUwIY0atLqO4TienjBXakoy4zrKAMCZwg+YEqmH7jaN7A==} engines: {node: '>=18.0.0'} - '@smithy/middleware-endpoint@4.3.7': - resolution: {integrity: sha512-i8Mi8OuY6Yi82Foe3iu7/yhBj1HBRoOQwBSsUNYglJTNSFaWYTNM2NauBBs/7pq2sqkLRqeUXA3Ogi2utzpUlQ==} + '@smithy/middleware-endpoint@4.3.8': + resolution: {integrity: sha512-1+y5jpr6a64XUsvD0XZuSqt6LTQ4Wn/xfRo6yxf+6Jkf6q84IC18RFVFBb6kApsQNMhQeoizEvuzR5wW0BxpLQ==} engines: {node: '>=18.0.0'} - '@smithy/middleware-retry@4.4.7': - resolution: {integrity: sha512-E7Vc6WHCHlzDRTx1W0jZ6J1L6ziEV0PIWcUdmfL4y+c8r7WYr6I+LkQudaD8Nfb7C5c4P3SQ972OmXHtv6m/OA==} + '@smithy/middleware-retry@4.4.8': + resolution: {integrity: sha512-+EuCRxnnt6WxsUqyKI5CBMzTlzP/z+DvfE5qgPc8AQYt5aOlYWhHvhxvdCvYLi5nttR672wlmTa/IN3/7Sok1w==} engines: {node: '>=18.0.0'} '@smithy/middleware-serde@4.2.5': @@ -22187,8 +22187,8 @@ packages: resolution: {integrity: sha512-xSUfMu1FT7ccfSXkoLl/QRQBi2rOvi3tiBZU2Tdy3I6cgvZ6SEi9QNey+lqps/sJRnogIS+lq+B1gxxbra2a/w==} engines: {node: '>=18.0.0'} - '@smithy/smithy-client@4.9.3': - resolution: {integrity: sha512-8tlueuTgV5n7inQCkhyptrB3jo2AO80uGrps/XTYZivv5MFQKKBj3CIWIGMI2fRY5LEduIiazOhAWdFknY1O9w==} + '@smithy/smithy-client@4.9.4': + resolution: {integrity: sha512-4Wp4DAh76G9uTsYYRK2ATdoj/ypwky+qSvcAYYP0Ny7Ued0pq8/KQTY/78hZTbLnNFv757TUWn5IK91aKtQsuQ==} engines: {node: '>=18.0.0'} '@smithy/types@4.9.0': @@ -22223,12 +22223,12 @@ packages: resolution: {integrity: sha512-YEjpl6XJ36FTKmD+kRJJWYvrHeUvm5ykaUS5xK+6oXffQPHeEM4/nXlZPe+Wu0lsgRUcNZiliYNh/y7q9c2y6Q==} engines: {node: '>=18.0.0'} - '@smithy/util-defaults-mode-browser@4.3.6': - resolution: {integrity: sha512-kbpuXbEf2YQ9zEE6eeVnUCQWO0e1BjMnKrXL8rfXgiWA0m8/E0leU4oSNzxP04WfCmW8vjEqaDeXWxwE4tpOjQ==} + '@smithy/util-defaults-mode-browser@4.3.7': + resolution: {integrity: sha512-G97AZPt52SyeHf/HjJGZ3pE+sYwseKLQDZcgIGCRwU41ZI6KLgnEwtCdXZaJoqN6wFk2XumzI9bs9ChAIbkfhQ==} engines: {node: '>=18.0.0'} - '@smithy/util-defaults-mode-node@4.2.9': - resolution: {integrity: sha512-dgyribrVWN5qE5usYJ0m5M93mVM3L3TyBPZWe1Xl6uZlH2gzfQx3dz+ZCdW93lWqdedJRkOecnvbnoEEXRZ5VQ==} + '@smithy/util-defaults-mode-node@4.2.10': + resolution: {integrity: sha512-ovT7q1Zev9Nm4bz9QOYdiYDawBUa1xLiyt962RiU1UJgFfumnXgOCGtLxmpOL/M8qAUHGD4VYo+akM2cEUMwyw==} engines: {node: '>=18.0.0'} '@smithy/util-endpoints@3.2.5': @@ -22358,11 +22358,11 @@ packages: resolution: {integrity: sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==} engines: {node: '>=14.16'} - '@tanstack/query-core@5.90.7': - resolution: {integrity: sha512-6PN65csiuTNfBMXqQUxQhCNdtm1rV+9kC9YwWAIKcaxAauq3Wu7p18j3gQY3YIBJU70jT/wzCCZ2uqto/vQgiQ==} + '@tanstack/query-core@5.90.8': + resolution: {integrity: sha512-4E0RP/0GJCxSNiRF2kAqE/LQkTJVlL/QNU7gIJSptaseV9HP6kOuA+N11y4bZKZxa3QopK3ZuewwutHx6DqDXQ==} - '@tanstack/react-query@5.90.7': - resolution: {integrity: sha512-wAHc/cgKzW7LZNFloThyHnV/AX9gTg3w5yAv0gvQHPZoCnepwqCMtzbuPbb2UvfvO32XZ46e8bPOYbfZhzVnnQ==} + '@tanstack/react-query@5.90.8': + resolution: {integrity: sha512-/3b9QGzkf4rE5/miL6tyhldQRlLXzMHcySOm/2Tm2OLEFE9P1ImkH0+OviDBSvyAvtAOJocar5xhd7vxdLi3aQ==} peerDependencies: react: ^18 || ^19 @@ -22578,11 +22578,11 @@ packages: '@types/node@18.19.130': resolution: {integrity: sha512-GRaXQx6jGfL8sKfaIDD6OupbIHBr9jv7Jnaml9tB7l4v068PAOXqfcujMMo5PhbIs6ggR1XODELqahT2R8v0fg==} - '@types/node@20.19.24': - resolution: {integrity: sha512-FE5u0ezmi6y9OZEzlJfg37mqqf6ZDSF2V/NLjUyGrR9uTZ7Sb9F7bLNZ03S4XVUNRWGA7Ck4c1kK+YnuWjl+DA==} + '@types/node@20.19.25': + resolution: {integrity: sha512-ZsJzA5thDQMSQO788d7IocwwQbI8B5OPzmqNvpf3NY/+MHDAS759Wo0gd2WQeXYt5AAAQjzcrTVC6SKCuYgoCQ==} - '@types/node@22.19.0': - resolution: {integrity: sha512-xpr/lmLPQEj+TUnHmR+Ab91/glhJvsqcjB+yY0Ix9GO70H6Lb4FHH5GeqdOE5btAx7eIMwuHkp4H2MSkLcqWbA==} + '@types/node@22.19.1': + resolution: {integrity: sha512-LCCV0HdSZZZb34qifBsyWlUmok6W7ouER+oQIGBScS8EsZsQbrtFTUrDX4hOl+CS6p7cnNC4td+qrSVGSCTUfQ==} '@types/node@22.7.5': resolution: {integrity: sha512-jML7s2NAzMWc//QSJ1a3prpk78cOPchGvXJsC3C6R6PSMoooztvRVQEz89gmBTBY1SPMaqo5teB4uNHPdetShQ==} @@ -23560,8 +23560,8 @@ packages: base64-js@1.5.1: resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} - baseline-browser-mapping@2.8.26: - resolution: {integrity: sha512-73lC1ugzwoaWCLJ1LvOgrR5xsMLTqSKIEoMHVtL9E/HNk0PXtTM76ZIm84856/SF7Nv8mPZxKoBsgpm0tR1u1Q==} + baseline-browser-mapping@2.8.27: + resolution: {integrity: sha512-2CXFpkjVnY2FT+B6GrSYxzYf65BJWEqz5tIRHCvNsZZ2F3CmsCB37h8SpYgKG7y9C4YAeTipIPWG7EmFmhAeXA==} hasBin: true basic-ftp@5.0.5: @@ -24116,8 +24116,8 @@ packages: color-name@1.1.4: resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} - color-name@2.0.2: - resolution: {integrity: sha512-9vEt7gE16EW7Eu7pvZnR0abW9z6ufzhXxGXZEVU9IqPdlsUiMwJeJfRtq0zePUmnbHGT9zajca7mX8zgoayo4A==} + color-name@2.1.0: + resolution: {integrity: sha512-1bPaDNFm0axzE4MEAzKPuqKWeRaT43U/hyxKPBdqTfmPF+d6n7FSoTFxLVULUJOmiLp01KjhIPPH+HrXZJN4Rg==} engines: {node: '>=12.20'} color-string@2.1.2: @@ -24695,8 +24695,8 @@ packages: resolution: {integrity: sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==} engines: {node: '>=18'} - default-browser@5.2.1: - resolution: {integrity: sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==} + default-browser@5.3.0: + resolution: {integrity: sha512-Qq68+VkJlc8tjnPV1i7HtbIn7ohmjZa88qUvHMIK0ZKUXMCuV45cT7cEXALPUmeXCe0q1DWQkQTemHVaLIFSrg==} engines: {node: '>=18'} defaults@1.0.4: @@ -27554,8 +27554,8 @@ packages: resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} hasBin: true - js-yaml@4.1.0: - resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + js-yaml@4.1.1: + resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==} hasBin: true js2xmlparser@4.0.2: @@ -30046,8 +30046,8 @@ packages: (For a CapTP with native promises, see @endo/eventual-send and @endo/captp) - qified@0.5.1: - resolution: {integrity: sha512-+BtFN3dCP+IaFA6IYNOu/f/uK1B8xD2QWyOeCse0rjtAebBmkzgd2d1OAXi3ikAzJMIBSdzZDNZ3wZKEUDQs5w==} + qified@0.5.2: + resolution: {integrity: sha512-7gJ6mxcQb9vUBOtbKm5mDevbe2uRcOEVp1g4gb/Q+oLntB3HY8eBhOYRxFI2mlDFlY1e4DOSCptzxarXRvzxCA==} engines: {node: '>=20'} qs@6.11.2: @@ -31363,17 +31363,17 @@ packages: superagent@3.8.1: resolution: {integrity: sha512-VMBFLYgFuRdfeNQSMLbxGSLfmXL/xc+OO+BZp41Za/NRDBet/BNbkRJrYzCUu0u4GU0i/ml2dtT8b9qgkw9z6Q==} engines: {node: '>= 4.0'} - deprecated: Please upgrade to v9.0.0+ as we have fixed a public vulnerability with formidable dependency. Note that v9.0.0+ requires Node.js v14.18.0+. See https://github.com/ladjs/superagent/pull/1800 for insight. This project is supported and maintained by the team at Forward Email @ https://forwardemail.net + deprecated: Please upgrade to superagent v10.2.2+, see release notes at https://github.com/forwardemail/superagent/releases/tag/v10.2.2 - maintenance is supported by Forward Email @ https://forwardemail.net superagent@4.1.0: resolution: {integrity: sha512-FT3QLMasz0YyCd4uIi5HNe+3t/onxMyEho7C3PSqmti3Twgy2rXT4fmkTz6wRL6bTF4uzPcfkUCa8u4JWHw8Ag==} engines: {node: '>= 6.0'} - deprecated: Please upgrade to v9.0.0+ as we have fixed a public vulnerability with formidable dependency. Note that v9.0.0+ requires Node.js v14.18.0+. See https://github.com/ladjs/superagent/pull/1800 for insight. This project is supported and maintained by the team at Forward Email @ https://forwardemail.net + deprecated: Please upgrade to superagent v10.2.2+, see release notes at https://github.com/forwardemail/superagent/releases/tag/v10.2.2 - maintenance is supported by Forward Email @ https://forwardemail.net superagent@5.3.1: resolution: {integrity: sha512-wjJ/MoTid2/RuGCOFtlacyGNxN9QLMgcpYLDQlWFIhhdJ93kNscFonGvrpAHSCVjRVj++DGCglocF7Aej1KHvQ==} engines: {node: '>= 7.0.0'} - deprecated: Please upgrade to v9.0.0+ as we have fixed a public vulnerability with formidable dependency. Note that v9.0.0+ requires Node.js v14.18.0+. See https://github.com/ladjs/superagent/pull/1800 for insight. This project is supported and maintained by the team at Forward Email @ https://forwardemail.net + deprecated: Please upgrade to superagent v10.2.2+, see release notes at https://github.com/forwardemail/superagent/releases/tag/v10.2.2 - maintenance is supported by Forward Email @ https://forwardemail.net supports-color@10.2.2: resolution: {integrity: sha512-SS+jx45GF1QjgEXQx4NJZV9ImqmO2NPz5FNsIHrsDjh2YsHnawpan7SNQ1o8NuhrbHZy9AZhIoCUiCeaW/C80g==} @@ -32408,8 +32408,8 @@ packages: vfile@6.0.3: resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==} - viem@2.38.6: - resolution: {integrity: sha512-aqO6P52LPXRjdnP6rl5Buab65sYa4cZ6Cpn+k4OLOzVJhGIK8onTVoKMFMT04YjDfyDICa/DZyV9HmvLDgcjkw==} + viem@2.39.0: + resolution: {integrity: sha512-rCN+IfnMESlrg/iPyyVL+M9NS/BHzyyNy72470tFmbTuscY3iPaZGMtJDcHKKV8TC6HV9DjWk0zWX6cpu0juyA==} peerDependencies: typescript: '>=5.0.4' peerDependenciesMeta: @@ -33075,7 +33075,7 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.922.0 '@aws-sdk/util-user-agent-node': 3.928.0(aws-crt@1.27.5) '@smithy/config-resolver': 4.4.3 - '@smithy/core': 3.18.0 + '@smithy/core': 3.18.1 '@smithy/eventstream-serde-browser': 4.2.5 '@smithy/eventstream-serde-config-resolver': 4.3.5 '@smithy/eventstream-serde-node': 4.2.5 @@ -33083,21 +33083,21 @@ snapshots: '@smithy/hash-node': 4.2.5 '@smithy/invalid-dependency': 4.2.5 '@smithy/middleware-content-length': 4.2.5 - '@smithy/middleware-endpoint': 4.3.7 - '@smithy/middleware-retry': 4.4.7 + '@smithy/middleware-endpoint': 4.3.8 + '@smithy/middleware-retry': 4.4.8 '@smithy/middleware-serde': 4.2.5 '@smithy/middleware-stack': 4.2.5 '@smithy/node-config-provider': 4.3.5 '@smithy/node-http-handler': 4.4.5 '@smithy/protocol-http': 5.3.5 - '@smithy/smithy-client': 4.9.3 + '@smithy/smithy-client': 4.9.4 '@smithy/types': 4.9.0 '@smithy/url-parser': 4.2.5 '@smithy/util-base64': 4.3.0 '@smithy/util-body-length-browser': 4.2.0 '@smithy/util-body-length-node': 4.2.1 - '@smithy/util-defaults-mode-browser': 4.3.6 - '@smithy/util-defaults-mode-node': 4.2.9 + '@smithy/util-defaults-mode-browser': 4.3.7 + '@smithy/util-defaults-mode-node': 4.2.10 '@smithy/util-endpoints': 3.2.5 '@smithy/util-middleware': 4.2.5 '@smithy/util-retry': 4.2.5 @@ -33122,26 +33122,26 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.922.0 '@aws-sdk/util-user-agent-node': 3.928.0(aws-crt@1.27.5) '@smithy/config-resolver': 4.4.3 - '@smithy/core': 3.18.0 + '@smithy/core': 3.18.1 '@smithy/fetch-http-handler': 5.3.6 '@smithy/hash-node': 4.2.5 '@smithy/invalid-dependency': 4.2.5 '@smithy/middleware-content-length': 4.2.5 - '@smithy/middleware-endpoint': 4.3.7 - '@smithy/middleware-retry': 4.4.7 + '@smithy/middleware-endpoint': 4.3.8 + '@smithy/middleware-retry': 4.4.8 '@smithy/middleware-serde': 4.2.5 '@smithy/middleware-stack': 4.2.5 '@smithy/node-config-provider': 4.3.5 '@smithy/node-http-handler': 4.4.5 '@smithy/protocol-http': 5.3.5 - '@smithy/smithy-client': 4.9.3 + '@smithy/smithy-client': 4.9.4 '@smithy/types': 4.9.0 '@smithy/url-parser': 4.2.5 '@smithy/util-base64': 4.3.0 '@smithy/util-body-length-browser': 4.2.0 '@smithy/util-body-length-node': 4.2.1 - '@smithy/util-defaults-mode-browser': 4.3.6 - '@smithy/util-defaults-mode-node': 4.2.9 + '@smithy/util-defaults-mode-browser': 4.3.7 + '@smithy/util-defaults-mode-node': 4.2.10 '@smithy/util-endpoints': 3.2.5 '@smithy/util-middleware': 4.2.5 '@smithy/util-retry': 4.2.5 @@ -33166,26 +33166,26 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.922.0 '@aws-sdk/util-user-agent-node': 3.928.0(aws-crt@1.27.5) '@smithy/config-resolver': 4.4.3 - '@smithy/core': 3.18.0 + '@smithy/core': 3.18.1 '@smithy/fetch-http-handler': 5.3.6 '@smithy/hash-node': 4.2.5 '@smithy/invalid-dependency': 4.2.5 '@smithy/middleware-content-length': 4.2.5 - '@smithy/middleware-endpoint': 4.3.7 - '@smithy/middleware-retry': 4.4.7 + '@smithy/middleware-endpoint': 4.3.8 + '@smithy/middleware-retry': 4.4.8 '@smithy/middleware-serde': 4.2.5 '@smithy/middleware-stack': 4.2.5 '@smithy/node-config-provider': 4.3.5 '@smithy/node-http-handler': 4.4.5 '@smithy/protocol-http': 5.3.5 - '@smithy/smithy-client': 4.9.3 + '@smithy/smithy-client': 4.9.4 '@smithy/types': 4.9.0 '@smithy/url-parser': 4.2.5 '@smithy/util-base64': 4.3.0 '@smithy/util-body-length-browser': 4.2.0 '@smithy/util-body-length-node': 4.2.1 - '@smithy/util-defaults-mode-browser': 4.3.6 - '@smithy/util-defaults-mode-node': 4.2.9 + '@smithy/util-defaults-mode-browser': 4.3.7 + '@smithy/util-defaults-mode-node': 4.2.10 '@smithy/util-endpoints': 3.2.5 '@smithy/util-middleware': 4.2.5 '@smithy/util-retry': 4.2.5 @@ -33211,26 +33211,26 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.922.0 '@aws-sdk/util-user-agent-node': 3.928.0(aws-crt@1.27.5) '@smithy/config-resolver': 4.4.3 - '@smithy/core': 3.18.0 + '@smithy/core': 3.18.1 '@smithy/fetch-http-handler': 5.3.6 '@smithy/hash-node': 4.2.5 '@smithy/invalid-dependency': 4.2.5 '@smithy/middleware-content-length': 4.2.5 - '@smithy/middleware-endpoint': 4.3.7 - '@smithy/middleware-retry': 4.4.7 + '@smithy/middleware-endpoint': 4.3.8 + '@smithy/middleware-retry': 4.4.8 '@smithy/middleware-serde': 4.2.5 '@smithy/middleware-stack': 4.2.5 '@smithy/node-config-provider': 4.3.5 '@smithy/node-http-handler': 4.4.5 '@smithy/protocol-http': 5.3.5 - '@smithy/smithy-client': 4.9.3 + '@smithy/smithy-client': 4.9.4 '@smithy/types': 4.9.0 '@smithy/url-parser': 4.2.5 '@smithy/util-base64': 4.3.0 '@smithy/util-body-length-browser': 4.2.0 '@smithy/util-body-length-node': 4.2.1 - '@smithy/util-defaults-mode-browser': 4.3.6 - '@smithy/util-defaults-mode-node': 4.2.9 + '@smithy/util-defaults-mode-browser': 4.3.7 + '@smithy/util-defaults-mode-node': 4.2.10 '@smithy/util-endpoints': 3.2.5 '@smithy/util-middleware': 4.2.5 '@smithy/util-retry': 4.2.5 @@ -33257,26 +33257,26 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.922.0 '@aws-sdk/util-user-agent-node': 3.928.0(aws-crt@1.27.5) '@smithy/config-resolver': 4.4.3 - '@smithy/core': 3.18.0 + '@smithy/core': 3.18.1 '@smithy/fetch-http-handler': 5.3.6 '@smithy/hash-node': 4.2.5 '@smithy/invalid-dependency': 4.2.5 '@smithy/middleware-content-length': 4.2.5 - '@smithy/middleware-endpoint': 4.3.7 - '@smithy/middleware-retry': 4.4.7 + '@smithy/middleware-endpoint': 4.3.8 + '@smithy/middleware-retry': 4.4.8 '@smithy/middleware-serde': 4.2.5 '@smithy/middleware-stack': 4.2.5 '@smithy/node-config-provider': 4.3.5 '@smithy/node-http-handler': 4.4.5 '@smithy/protocol-http': 5.3.5 - '@smithy/smithy-client': 4.9.3 + '@smithy/smithy-client': 4.9.4 '@smithy/types': 4.9.0 '@smithy/url-parser': 4.2.5 '@smithy/util-base64': 4.3.0 '@smithy/util-body-length-browser': 4.2.0 '@smithy/util-body-length-node': 4.2.1 - '@smithy/util-defaults-mode-browser': 4.3.6 - '@smithy/util-defaults-mode-node': 4.2.9 + '@smithy/util-defaults-mode-browser': 4.3.7 + '@smithy/util-defaults-mode-node': 4.2.10 '@smithy/util-endpoints': 3.2.5 '@smithy/util-middleware': 4.2.5 '@smithy/util-retry': 4.2.5 @@ -33304,26 +33304,26 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.922.0 '@aws-sdk/util-user-agent-node': 3.928.0(aws-crt@1.27.5) '@smithy/config-resolver': 4.4.3 - '@smithy/core': 3.18.0 + '@smithy/core': 3.18.1 '@smithy/fetch-http-handler': 5.3.6 '@smithy/hash-node': 4.2.5 '@smithy/invalid-dependency': 4.2.5 '@smithy/middleware-content-length': 4.2.5 - '@smithy/middleware-endpoint': 4.3.7 - '@smithy/middleware-retry': 4.4.7 + '@smithy/middleware-endpoint': 4.3.8 + '@smithy/middleware-retry': 4.4.8 '@smithy/middleware-serde': 4.2.5 '@smithy/middleware-stack': 4.2.5 '@smithy/node-config-provider': 4.3.5 '@smithy/node-http-handler': 4.4.5 '@smithy/protocol-http': 5.3.5 - '@smithy/smithy-client': 4.9.3 + '@smithy/smithy-client': 4.9.4 '@smithy/types': 4.9.0 '@smithy/url-parser': 4.2.5 '@smithy/util-base64': 4.3.0 '@smithy/util-body-length-browser': 4.2.0 '@smithy/util-body-length-node': 4.2.1 - '@smithy/util-defaults-mode-browser': 4.3.6 - '@smithy/util-defaults-mode-node': 4.2.9 + '@smithy/util-defaults-mode-browser': 4.3.7 + '@smithy/util-defaults-mode-node': 4.2.10 '@smithy/util-endpoints': 3.2.5 '@smithy/util-middleware': 4.2.5 '@smithy/util-retry': 4.2.5 @@ -33348,26 +33348,26 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.922.0 '@aws-sdk/util-user-agent-node': 3.928.0(aws-crt@1.27.5) '@smithy/config-resolver': 4.4.3 - '@smithy/core': 3.18.0 + '@smithy/core': 3.18.1 '@smithy/fetch-http-handler': 5.3.6 '@smithy/hash-node': 4.2.5 '@smithy/invalid-dependency': 4.2.5 '@smithy/middleware-content-length': 4.2.5 - '@smithy/middleware-endpoint': 4.3.7 - '@smithy/middleware-retry': 4.4.7 + '@smithy/middleware-endpoint': 4.3.8 + '@smithy/middleware-retry': 4.4.8 '@smithy/middleware-serde': 4.2.5 '@smithy/middleware-stack': 4.2.5 '@smithy/node-config-provider': 4.3.5 '@smithy/node-http-handler': 4.4.5 '@smithy/protocol-http': 5.3.5 - '@smithy/smithy-client': 4.9.3 + '@smithy/smithy-client': 4.9.4 '@smithy/types': 4.9.0 '@smithy/url-parser': 4.2.5 '@smithy/util-base64': 4.3.0 '@smithy/util-body-length-browser': 4.2.0 '@smithy/util-body-length-node': 4.2.1 - '@smithy/util-defaults-mode-browser': 4.3.6 - '@smithy/util-defaults-mode-node': 4.2.9 + '@smithy/util-defaults-mode-browser': 4.3.7 + '@smithy/util-defaults-mode-node': 4.2.10 '@smithy/util-endpoints': 3.2.5 '@smithy/util-middleware': 4.2.5 '@smithy/util-retry': 4.2.5 @@ -33393,7 +33393,7 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.922.0 '@aws-sdk/util-user-agent-node': 3.928.0(aws-crt@1.27.5) '@smithy/config-resolver': 4.4.3 - '@smithy/core': 3.18.0 + '@smithy/core': 3.18.1 '@smithy/eventstream-serde-browser': 4.2.5 '@smithy/eventstream-serde-config-resolver': 4.3.5 '@smithy/eventstream-serde-node': 4.2.5 @@ -33401,21 +33401,21 @@ snapshots: '@smithy/hash-node': 4.2.5 '@smithy/invalid-dependency': 4.2.5 '@smithy/middleware-content-length': 4.2.5 - '@smithy/middleware-endpoint': 4.3.7 - '@smithy/middleware-retry': 4.4.7 + '@smithy/middleware-endpoint': 4.3.8 + '@smithy/middleware-retry': 4.4.8 '@smithy/middleware-serde': 4.2.5 '@smithy/middleware-stack': 4.2.5 '@smithy/node-config-provider': 4.3.5 '@smithy/node-http-handler': 4.4.5 '@smithy/protocol-http': 5.3.5 - '@smithy/smithy-client': 4.9.3 + '@smithy/smithy-client': 4.9.4 '@smithy/types': 4.9.0 '@smithy/url-parser': 4.2.5 '@smithy/util-base64': 4.3.0 '@smithy/util-body-length-browser': 4.2.0 '@smithy/util-body-length-node': 4.2.1 - '@smithy/util-defaults-mode-browser': 4.3.6 - '@smithy/util-defaults-mode-node': 4.2.9 + '@smithy/util-defaults-mode-browser': 4.3.7 + '@smithy/util-defaults-mode-node': 4.2.10 '@smithy/util-endpoints': 3.2.5 '@smithy/util-middleware': 4.2.5 '@smithy/util-retry': 4.2.5 @@ -33443,26 +33443,26 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.922.0 '@aws-sdk/util-user-agent-node': 3.928.0(aws-crt@1.27.5) '@smithy/config-resolver': 4.4.3 - '@smithy/core': 3.18.0 + '@smithy/core': 3.18.1 '@smithy/fetch-http-handler': 5.3.6 '@smithy/hash-node': 4.2.5 '@smithy/invalid-dependency': 4.2.5 '@smithy/middleware-content-length': 4.2.5 - '@smithy/middleware-endpoint': 4.3.7 - '@smithy/middleware-retry': 4.4.7 + '@smithy/middleware-endpoint': 4.3.8 + '@smithy/middleware-retry': 4.4.8 '@smithy/middleware-serde': 4.2.5 '@smithy/middleware-stack': 4.2.5 '@smithy/node-config-provider': 4.3.5 '@smithy/node-http-handler': 4.4.5 '@smithy/protocol-http': 5.3.5 - '@smithy/smithy-client': 4.9.3 + '@smithy/smithy-client': 4.9.4 '@smithy/types': 4.9.0 '@smithy/url-parser': 4.2.5 '@smithy/util-base64': 4.3.0 '@smithy/util-body-length-browser': 4.2.0 '@smithy/util-body-length-node': 4.2.1 - '@smithy/util-defaults-mode-browser': 4.3.6 - '@smithy/util-defaults-mode-node': 4.2.9 + '@smithy/util-defaults-mode-browser': 4.3.7 + '@smithy/util-defaults-mode-node': 4.2.10 '@smithy/util-endpoints': 3.2.5 '@smithy/util-middleware': 4.2.5 '@smithy/util-retry': 4.2.5 @@ -33488,26 +33488,26 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.922.0 '@aws-sdk/util-user-agent-node': 3.928.0(aws-crt@1.27.5) '@smithy/config-resolver': 4.4.3 - '@smithy/core': 3.18.0 + '@smithy/core': 3.18.1 '@smithy/fetch-http-handler': 5.3.6 '@smithy/hash-node': 4.2.5 '@smithy/invalid-dependency': 4.2.5 '@smithy/middleware-content-length': 4.2.5 - '@smithy/middleware-endpoint': 4.3.7 - '@smithy/middleware-retry': 4.4.7 + '@smithy/middleware-endpoint': 4.3.8 + '@smithy/middleware-retry': 4.4.8 '@smithy/middleware-serde': 4.2.5 '@smithy/middleware-stack': 4.2.5 '@smithy/node-config-provider': 4.3.5 '@smithy/node-http-handler': 4.4.5 '@smithy/protocol-http': 5.3.5 - '@smithy/smithy-client': 4.9.3 + '@smithy/smithy-client': 4.9.4 '@smithy/types': 4.9.0 '@smithy/url-parser': 4.2.5 '@smithy/util-base64': 4.3.0 '@smithy/util-body-length-browser': 4.2.0 '@smithy/util-body-length-node': 4.2.1 - '@smithy/util-defaults-mode-browser': 4.3.6 - '@smithy/util-defaults-mode-node': 4.2.9 + '@smithy/util-defaults-mode-browser': 4.3.7 + '@smithy/util-defaults-mode-node': 4.2.10 '@smithy/util-endpoints': 3.2.5 '@smithy/util-middleware': 4.2.5 '@smithy/util-retry': 4.2.5 @@ -33532,26 +33532,26 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.922.0 '@aws-sdk/util-user-agent-node': 3.928.0(aws-crt@1.27.5) '@smithy/config-resolver': 4.4.3 - '@smithy/core': 3.18.0 + '@smithy/core': 3.18.1 '@smithy/fetch-http-handler': 5.3.6 '@smithy/hash-node': 4.2.5 '@smithy/invalid-dependency': 4.2.5 '@smithy/middleware-content-length': 4.2.5 - '@smithy/middleware-endpoint': 4.3.7 - '@smithy/middleware-retry': 4.4.7 + '@smithy/middleware-endpoint': 4.3.8 + '@smithy/middleware-retry': 4.4.8 '@smithy/middleware-serde': 4.2.5 '@smithy/middleware-stack': 4.2.5 '@smithy/node-config-provider': 4.3.5 '@smithy/node-http-handler': 4.4.5 '@smithy/protocol-http': 5.3.5 - '@smithy/smithy-client': 4.9.3 + '@smithy/smithy-client': 4.9.4 '@smithy/types': 4.9.0 '@smithy/url-parser': 4.2.5 '@smithy/util-base64': 4.3.0 '@smithy/util-body-length-browser': 4.2.0 '@smithy/util-body-length-node': 4.2.1 - '@smithy/util-defaults-mode-browser': 4.3.6 - '@smithy/util-defaults-mode-node': 4.2.9 + '@smithy/util-defaults-mode-browser': 4.3.7 + '@smithy/util-defaults-mode-node': 4.2.10 '@smithy/util-endpoints': 3.2.5 '@smithy/util-middleware': 4.2.5 '@smithy/util-retry': 4.2.5 @@ -33585,7 +33585,7 @@ snapshots: '@aws-sdk/util-user-agent-node': 3.928.0(aws-crt@1.27.5) '@aws-sdk/xml-builder': 3.921.0 '@smithy/config-resolver': 4.4.3 - '@smithy/core': 3.18.0 + '@smithy/core': 3.18.1 '@smithy/eventstream-serde-browser': 4.2.5 '@smithy/eventstream-serde-config-resolver': 4.3.5 '@smithy/eventstream-serde-node': 4.2.5 @@ -33596,21 +33596,21 @@ snapshots: '@smithy/invalid-dependency': 4.2.5 '@smithy/md5-js': 4.2.5 '@smithy/middleware-content-length': 4.2.5 - '@smithy/middleware-endpoint': 4.3.7 - '@smithy/middleware-retry': 4.4.7 + '@smithy/middleware-endpoint': 4.3.8 + '@smithy/middleware-retry': 4.4.8 '@smithy/middleware-serde': 4.2.5 '@smithy/middleware-stack': 4.2.5 '@smithy/node-config-provider': 4.3.5 '@smithy/node-http-handler': 4.4.5 '@smithy/protocol-http': 5.3.5 - '@smithy/smithy-client': 4.9.3 + '@smithy/smithy-client': 4.9.4 '@smithy/types': 4.9.0 '@smithy/url-parser': 4.2.5 '@smithy/util-base64': 4.3.0 '@smithy/util-body-length-browser': 4.2.0 '@smithy/util-body-length-node': 4.2.1 - '@smithy/util-defaults-mode-browser': 4.3.6 - '@smithy/util-defaults-mode-node': 4.2.9 + '@smithy/util-defaults-mode-browser': 4.3.7 + '@smithy/util-defaults-mode-node': 4.2.10 '@smithy/util-endpoints': 3.2.5 '@smithy/util-middleware': 4.2.5 '@smithy/util-retry': 4.2.5 @@ -33638,26 +33638,26 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.922.0 '@aws-sdk/util-user-agent-node': 3.928.0(aws-crt@1.27.5) '@smithy/config-resolver': 4.4.3 - '@smithy/core': 3.18.0 + '@smithy/core': 3.18.1 '@smithy/fetch-http-handler': 5.3.6 '@smithy/hash-node': 4.2.5 '@smithy/invalid-dependency': 4.2.5 '@smithy/middleware-content-length': 4.2.5 - '@smithy/middleware-endpoint': 4.3.7 - '@smithy/middleware-retry': 4.4.7 + '@smithy/middleware-endpoint': 4.3.8 + '@smithy/middleware-retry': 4.4.8 '@smithy/middleware-serde': 4.2.5 '@smithy/middleware-stack': 4.2.5 '@smithy/node-config-provider': 4.3.5 '@smithy/node-http-handler': 4.4.5 '@smithy/protocol-http': 5.3.5 - '@smithy/smithy-client': 4.9.3 + '@smithy/smithy-client': 4.9.4 '@smithy/types': 4.9.0 '@smithy/url-parser': 4.2.5 '@smithy/util-base64': 4.3.0 '@smithy/util-body-length-browser': 4.2.0 '@smithy/util-body-length-node': 4.2.1 - '@smithy/util-defaults-mode-browser': 4.3.6 - '@smithy/util-defaults-mode-node': 4.2.9 + '@smithy/util-defaults-mode-browser': 4.3.7 + '@smithy/util-defaults-mode-node': 4.2.10 '@smithy/util-endpoints': 3.2.5 '@smithy/util-middleware': 4.2.5 '@smithy/util-retry': 4.2.5 @@ -33683,26 +33683,26 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.922.0 '@aws-sdk/util-user-agent-node': 3.928.0(aws-crt@1.27.5) '@smithy/config-resolver': 4.4.3 - '@smithy/core': 3.18.0 + '@smithy/core': 3.18.1 '@smithy/fetch-http-handler': 5.3.6 '@smithy/hash-node': 4.2.5 '@smithy/invalid-dependency': 4.2.5 '@smithy/middleware-content-length': 4.2.5 - '@smithy/middleware-endpoint': 4.3.7 - '@smithy/middleware-retry': 4.4.7 + '@smithy/middleware-endpoint': 4.3.8 + '@smithy/middleware-retry': 4.4.8 '@smithy/middleware-serde': 4.2.5 '@smithy/middleware-stack': 4.2.5 '@smithy/node-config-provider': 4.3.5 '@smithy/node-http-handler': 4.4.5 '@smithy/protocol-http': 5.3.5 - '@smithy/smithy-client': 4.9.3 + '@smithy/smithy-client': 4.9.4 '@smithy/types': 4.9.0 '@smithy/url-parser': 4.2.5 '@smithy/util-base64': 4.3.0 '@smithy/util-body-length-browser': 4.2.0 '@smithy/util-body-length-node': 4.2.1 - '@smithy/util-defaults-mode-browser': 4.3.6 - '@smithy/util-defaults-mode-node': 4.2.9 + '@smithy/util-defaults-mode-browser': 4.3.7 + '@smithy/util-defaults-mode-node': 4.2.10 '@smithy/util-endpoints': 3.2.5 '@smithy/util-middleware': 4.2.5 '@smithy/util-retry': 4.2.5 @@ -33729,26 +33729,26 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.922.0 '@aws-sdk/util-user-agent-node': 3.928.0(aws-crt@1.27.5) '@smithy/config-resolver': 4.4.3 - '@smithy/core': 3.18.0 + '@smithy/core': 3.18.1 '@smithy/fetch-http-handler': 5.3.6 '@smithy/hash-node': 4.2.5 '@smithy/invalid-dependency': 4.2.5 '@smithy/middleware-content-length': 4.2.5 - '@smithy/middleware-endpoint': 4.3.7 - '@smithy/middleware-retry': 4.4.7 + '@smithy/middleware-endpoint': 4.3.8 + '@smithy/middleware-retry': 4.4.8 '@smithy/middleware-serde': 4.2.5 '@smithy/middleware-stack': 4.2.5 '@smithy/node-config-provider': 4.3.5 '@smithy/node-http-handler': 4.4.5 '@smithy/protocol-http': 5.3.5 - '@smithy/smithy-client': 4.9.3 + '@smithy/smithy-client': 4.9.4 '@smithy/types': 4.9.0 '@smithy/url-parser': 4.2.5 '@smithy/util-base64': 4.3.0 '@smithy/util-body-length-browser': 4.2.0 '@smithy/util-body-length-node': 4.2.1 - '@smithy/util-defaults-mode-browser': 4.3.6 - '@smithy/util-defaults-mode-node': 4.2.9 + '@smithy/util-defaults-mode-browser': 4.3.7 + '@smithy/util-defaults-mode-node': 4.2.10 '@smithy/util-endpoints': 3.2.5 '@smithy/util-middleware': 4.2.5 '@smithy/util-retry': 4.2.5 @@ -33773,26 +33773,26 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.922.0 '@aws-sdk/util-user-agent-node': 3.928.0(aws-crt@1.27.5) '@smithy/config-resolver': 4.4.3 - '@smithy/core': 3.18.0 + '@smithy/core': 3.18.1 '@smithy/fetch-http-handler': 5.3.6 '@smithy/hash-node': 4.2.5 '@smithy/invalid-dependency': 4.2.5 '@smithy/middleware-content-length': 4.2.5 - '@smithy/middleware-endpoint': 4.3.7 - '@smithy/middleware-retry': 4.4.7 + '@smithy/middleware-endpoint': 4.3.8 + '@smithy/middleware-retry': 4.4.8 '@smithy/middleware-serde': 4.2.5 '@smithy/middleware-stack': 4.2.5 '@smithy/node-config-provider': 4.3.5 '@smithy/node-http-handler': 4.4.5 '@smithy/protocol-http': 5.3.5 - '@smithy/smithy-client': 4.9.3 + '@smithy/smithy-client': 4.9.4 '@smithy/types': 4.9.0 '@smithy/url-parser': 4.2.5 '@smithy/util-base64': 4.3.0 '@smithy/util-body-length-browser': 4.2.0 '@smithy/util-body-length-node': 4.2.1 - '@smithy/util-defaults-mode-browser': 4.3.6 - '@smithy/util-defaults-mode-node': 4.2.9 + '@smithy/util-defaults-mode-browser': 4.3.7 + '@smithy/util-defaults-mode-node': 4.2.10 '@smithy/util-endpoints': 3.2.5 '@smithy/util-middleware': 4.2.5 '@smithy/util-retry': 4.2.5 @@ -33817,26 +33817,26 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.922.0 '@aws-sdk/util-user-agent-node': 3.928.0(aws-crt@1.27.5) '@smithy/config-resolver': 4.4.3 - '@smithy/core': 3.18.0 + '@smithy/core': 3.18.1 '@smithy/fetch-http-handler': 5.3.6 '@smithy/hash-node': 4.2.5 '@smithy/invalid-dependency': 4.2.5 '@smithy/middleware-content-length': 4.2.5 - '@smithy/middleware-endpoint': 4.3.7 - '@smithy/middleware-retry': 4.4.7 + '@smithy/middleware-endpoint': 4.3.8 + '@smithy/middleware-retry': 4.4.8 '@smithy/middleware-serde': 4.2.5 '@smithy/middleware-stack': 4.2.5 '@smithy/node-config-provider': 4.3.5 '@smithy/node-http-handler': 4.4.5 '@smithy/protocol-http': 5.3.5 - '@smithy/smithy-client': 4.9.3 + '@smithy/smithy-client': 4.9.4 '@smithy/types': 4.9.0 '@smithy/url-parser': 4.2.5 '@smithy/util-base64': 4.3.0 '@smithy/util-body-length-browser': 4.2.0 '@smithy/util-body-length-node': 4.2.1 - '@smithy/util-defaults-mode-browser': 4.3.6 - '@smithy/util-defaults-mode-node': 4.2.9 + '@smithy/util-defaults-mode-browser': 4.3.7 + '@smithy/util-defaults-mode-node': 4.2.10 '@smithy/util-endpoints': 3.2.5 '@smithy/util-middleware': 4.2.5 '@smithy/util-retry': 4.2.5 @@ -33862,27 +33862,27 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.922.0 '@aws-sdk/util-user-agent-node': 3.928.0(aws-crt@1.27.5) '@smithy/config-resolver': 4.4.3 - '@smithy/core': 3.18.0 + '@smithy/core': 3.18.1 '@smithy/fetch-http-handler': 5.3.6 '@smithy/hash-node': 4.2.5 '@smithy/invalid-dependency': 4.2.5 '@smithy/md5-js': 4.2.5 '@smithy/middleware-content-length': 4.2.5 - '@smithy/middleware-endpoint': 4.3.7 - '@smithy/middleware-retry': 4.4.7 + '@smithy/middleware-endpoint': 4.3.8 + '@smithy/middleware-retry': 4.4.8 '@smithy/middleware-serde': 4.2.5 '@smithy/middleware-stack': 4.2.5 '@smithy/node-config-provider': 4.3.5 '@smithy/node-http-handler': 4.4.5 '@smithy/protocol-http': 5.3.5 - '@smithy/smithy-client': 4.9.3 + '@smithy/smithy-client': 4.9.4 '@smithy/types': 4.9.0 '@smithy/url-parser': 4.2.5 '@smithy/util-base64': 4.3.0 '@smithy/util-body-length-browser': 4.2.0 '@smithy/util-body-length-node': 4.2.1 - '@smithy/util-defaults-mode-browser': 4.3.6 - '@smithy/util-defaults-mode-node': 4.2.9 + '@smithy/util-defaults-mode-browser': 4.3.7 + '@smithy/util-defaults-mode-node': 4.2.10 '@smithy/util-endpoints': 3.2.5 '@smithy/util-middleware': 4.2.5 '@smithy/util-retry': 4.2.5 @@ -33907,26 +33907,26 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.922.0 '@aws-sdk/util-user-agent-node': 3.928.0(aws-crt@1.27.5) '@smithy/config-resolver': 4.4.3 - '@smithy/core': 3.18.0 + '@smithy/core': 3.18.1 '@smithy/fetch-http-handler': 5.3.6 '@smithy/hash-node': 4.2.5 '@smithy/invalid-dependency': 4.2.5 '@smithy/middleware-content-length': 4.2.5 - '@smithy/middleware-endpoint': 4.3.7 - '@smithy/middleware-retry': 4.4.7 + '@smithy/middleware-endpoint': 4.3.8 + '@smithy/middleware-retry': 4.4.8 '@smithy/middleware-serde': 4.2.5 '@smithy/middleware-stack': 4.2.5 '@smithy/node-config-provider': 4.3.5 '@smithy/node-http-handler': 4.4.5 '@smithy/protocol-http': 5.3.5 - '@smithy/smithy-client': 4.9.3 + '@smithy/smithy-client': 4.9.4 '@smithy/types': 4.9.0 '@smithy/url-parser': 4.2.5 '@smithy/util-base64': 4.3.0 '@smithy/util-body-length-browser': 4.2.0 '@smithy/util-body-length-node': 4.2.1 - '@smithy/util-defaults-mode-browser': 4.3.6 - '@smithy/util-defaults-mode-node': 4.2.9 + '@smithy/util-defaults-mode-browser': 4.3.7 + '@smithy/util-defaults-mode-node': 4.2.10 '@smithy/util-endpoints': 3.2.5 '@smithy/util-middleware': 4.2.5 '@smithy/util-retry': 4.2.5 @@ -33951,26 +33951,26 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.922.0 '@aws-sdk/util-user-agent-node': 3.928.0(aws-crt@1.27.5) '@smithy/config-resolver': 4.4.3 - '@smithy/core': 3.18.0 + '@smithy/core': 3.18.1 '@smithy/fetch-http-handler': 5.3.6 '@smithy/hash-node': 4.2.5 '@smithy/invalid-dependency': 4.2.5 '@smithy/middleware-content-length': 4.2.5 - '@smithy/middleware-endpoint': 4.3.7 - '@smithy/middleware-retry': 4.4.7 + '@smithy/middleware-endpoint': 4.3.8 + '@smithy/middleware-retry': 4.4.8 '@smithy/middleware-serde': 4.2.5 '@smithy/middleware-stack': 4.2.5 '@smithy/node-config-provider': 4.3.5 '@smithy/node-http-handler': 4.4.5 '@smithy/protocol-http': 5.3.5 - '@smithy/smithy-client': 4.9.3 + '@smithy/smithy-client': 4.9.4 '@smithy/types': 4.9.0 '@smithy/url-parser': 4.2.5 '@smithy/util-base64': 4.3.0 '@smithy/util-body-length-browser': 4.2.0 '@smithy/util-body-length-node': 4.2.1 - '@smithy/util-defaults-mode-browser': 4.3.6 - '@smithy/util-defaults-mode-node': 4.2.9 + '@smithy/util-defaults-mode-browser': 4.3.7 + '@smithy/util-defaults-mode-node': 4.2.10 '@smithy/util-endpoints': 3.2.5 '@smithy/util-middleware': 4.2.5 '@smithy/util-retry': 4.2.5 @@ -33995,26 +33995,26 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.922.0 '@aws-sdk/util-user-agent-node': 3.928.0(aws-crt@1.27.5) '@smithy/config-resolver': 4.4.3 - '@smithy/core': 3.18.0 + '@smithy/core': 3.18.1 '@smithy/fetch-http-handler': 5.3.6 '@smithy/hash-node': 4.2.5 '@smithy/invalid-dependency': 4.2.5 '@smithy/middleware-content-length': 4.2.5 - '@smithy/middleware-endpoint': 4.3.7 - '@smithy/middleware-retry': 4.4.7 + '@smithy/middleware-endpoint': 4.3.8 + '@smithy/middleware-retry': 4.4.8 '@smithy/middleware-serde': 4.2.5 '@smithy/middleware-stack': 4.2.5 '@smithy/node-config-provider': 4.3.5 '@smithy/node-http-handler': 4.4.5 '@smithy/protocol-http': 5.3.5 - '@smithy/smithy-client': 4.9.3 + '@smithy/smithy-client': 4.9.4 '@smithy/types': 4.9.0 '@smithy/url-parser': 4.2.5 '@smithy/util-base64': 4.3.0 '@smithy/util-body-length-browser': 4.2.0 '@smithy/util-body-length-node': 4.2.1 - '@smithy/util-defaults-mode-browser': 4.3.6 - '@smithy/util-defaults-mode-node': 4.2.9 + '@smithy/util-defaults-mode-browser': 4.3.7 + '@smithy/util-defaults-mode-node': 4.2.10 '@smithy/util-endpoints': 3.2.5 '@smithy/util-middleware': 4.2.5 '@smithy/util-retry': 4.2.5 @@ -34027,12 +34027,12 @@ snapshots: dependencies: '@aws-sdk/types': 3.922.0 '@aws-sdk/xml-builder': 3.921.0 - '@smithy/core': 3.18.0 + '@smithy/core': 3.18.1 '@smithy/node-config-provider': 4.3.5 '@smithy/property-provider': 4.2.5 '@smithy/protocol-http': 5.3.5 '@smithy/signature-v4': 5.3.5 - '@smithy/smithy-client': 4.9.3 + '@smithy/smithy-client': 4.9.4 '@smithy/types': 4.9.0 '@smithy/util-base64': 4.3.0 '@smithy/util-middleware': 4.2.5 @@ -34065,7 +34065,7 @@ snapshots: '@smithy/node-http-handler': 4.4.5 '@smithy/property-provider': 4.2.5 '@smithy/protocol-http': 5.3.5 - '@smithy/smithy-client': 4.9.3 + '@smithy/smithy-client': 4.9.4 '@smithy/types': 4.9.0 '@smithy/util-stream': 4.5.6 tslib: 2.8.1 @@ -34154,7 +34154,7 @@ snapshots: '@aws-sdk/nested-clients': 3.929.0(aws-crt@1.27.5) '@aws-sdk/types': 3.922.0 '@smithy/config-resolver': 4.4.3 - '@smithy/core': 3.18.0 + '@smithy/core': 3.18.1 '@smithy/credential-provider-imds': 4.2.5 '@smithy/node-config-provider': 4.3.5 '@smithy/property-provider': 4.2.5 @@ -34183,8 +34183,8 @@ snapshots: dependencies: '@aws-sdk/client-s3': 3.929.0(aws-crt@1.27.5) '@smithy/abort-controller': 4.2.5 - '@smithy/middleware-endpoint': 4.3.7 - '@smithy/smithy-client': 4.9.3 + '@smithy/middleware-endpoint': 4.3.8 + '@smithy/smithy-client': 4.9.4 buffer: 5.6.0 events: 3.3.0 stream-browserify: 3.0.0 @@ -34263,10 +34263,10 @@ snapshots: dependencies: '@aws-sdk/types': 3.922.0 '@aws-sdk/util-format-url': 3.922.0 - '@smithy/middleware-endpoint': 4.3.7 + '@smithy/middleware-endpoint': 4.3.8 '@smithy/protocol-http': 5.3.5 '@smithy/signature-v4': 5.3.5 - '@smithy/smithy-client': 4.9.3 + '@smithy/smithy-client': 4.9.4 '@smithy/types': 4.9.0 tslib: 2.8.1 @@ -34274,7 +34274,7 @@ snapshots: dependencies: '@aws-sdk/types': 3.922.0 '@aws-sdk/util-format-url': 3.922.0 - '@smithy/middleware-endpoint': 4.3.7 + '@smithy/middleware-endpoint': 4.3.8 '@smithy/protocol-http': 5.3.5 '@smithy/signature-v4': 5.3.5 '@smithy/types': 4.9.0 @@ -34285,11 +34285,11 @@ snapshots: '@aws-sdk/core': 3.928.0 '@aws-sdk/types': 3.922.0 '@aws-sdk/util-arn-parser': 3.893.0 - '@smithy/core': 3.18.0 + '@smithy/core': 3.18.1 '@smithy/node-config-provider': 4.3.5 '@smithy/protocol-http': 5.3.5 '@smithy/signature-v4': 5.3.5 - '@smithy/smithy-client': 4.9.3 + '@smithy/smithy-client': 4.9.4 '@smithy/types': 4.9.0 '@smithy/util-config-provider': 4.2.0 '@smithy/util-middleware': 4.2.5 @@ -34300,7 +34300,7 @@ snapshots: '@aws-sdk/middleware-sdk-sqs@3.922.0': dependencies: '@aws-sdk/types': 3.922.0 - '@smithy/smithy-client': 4.9.3 + '@smithy/smithy-client': 4.9.4 '@smithy/types': 4.9.0 '@smithy/util-hex-encoding': 4.2.0 '@smithy/util-utf8': 4.2.0 @@ -34317,7 +34317,7 @@ snapshots: '@aws-sdk/core': 3.928.0 '@aws-sdk/types': 3.922.0 '@aws-sdk/util-endpoints': 3.922.0 - '@smithy/core': 3.18.0 + '@smithy/core': 3.18.1 '@smithy/protocol-http': 5.3.5 '@smithy/types': 4.9.0 tslib: 2.8.1 @@ -34337,26 +34337,26 @@ snapshots: '@aws-sdk/util-user-agent-browser': 3.922.0 '@aws-sdk/util-user-agent-node': 3.928.0(aws-crt@1.27.5) '@smithy/config-resolver': 4.4.3 - '@smithy/core': 3.18.0 + '@smithy/core': 3.18.1 '@smithy/fetch-http-handler': 5.3.6 '@smithy/hash-node': 4.2.5 '@smithy/invalid-dependency': 4.2.5 '@smithy/middleware-content-length': 4.2.5 - '@smithy/middleware-endpoint': 4.3.7 - '@smithy/middleware-retry': 4.4.7 + '@smithy/middleware-endpoint': 4.3.8 + '@smithy/middleware-retry': 4.4.8 '@smithy/middleware-serde': 4.2.5 '@smithy/middleware-stack': 4.2.5 '@smithy/node-config-provider': 4.3.5 '@smithy/node-http-handler': 4.4.5 '@smithy/protocol-http': 5.3.5 - '@smithy/smithy-client': 4.9.3 + '@smithy/smithy-client': 4.9.4 '@smithy/types': 4.9.0 '@smithy/url-parser': 4.2.5 '@smithy/util-base64': 4.3.0 '@smithy/util-body-length-browser': 4.2.0 '@smithy/util-body-length-node': 4.2.1 - '@smithy/util-defaults-mode-browser': 4.3.6 - '@smithy/util-defaults-mode-node': 4.2.9 + '@smithy/util-defaults-mode-browser': 4.3.7 + '@smithy/util-defaults-mode-node': 4.2.10 '@smithy/util-endpoints': 3.2.5 '@smithy/util-middleware': 4.2.5 '@smithy/util-retry': 4.2.5 @@ -34378,9 +34378,9 @@ snapshots: '@aws-sdk/signature-v4-multi-region': 3.928.0 '@aws-sdk/types': 3.922.0 '@aws-sdk/util-format-url': 3.922.0 - '@smithy/middleware-endpoint': 4.3.7 + '@smithy/middleware-endpoint': 4.3.8 '@smithy/protocol-http': 5.3.5 - '@smithy/smithy-client': 4.9.3 + '@smithy/smithy-client': 4.9.4 '@smithy/types': 4.9.0 tslib: 2.8.1 @@ -35617,11 +35617,11 @@ snapshots: '@bufbuild/protobuf@1.10.1': {} - '@bufbuild/protobuf@2.10.0': {} + '@bufbuild/protobuf@2.10.1': {} - '@bufbuild/protoplugin@2.10.0': + '@bufbuild/protoplugin@2.10.1': dependencies: - '@bufbuild/protobuf': 2.10.0 + '@bufbuild/protobuf': 2.10.1 '@typescript/vfs': 1.6.2(typescript@5.4.5) typescript: 5.4.5 transitivePeerDependencies: @@ -35687,7 +35687,7 @@ snapshots: ethers: 6.15.0 jose: 5.10.0 secp256k1: 5.0.1 - viem: 2.38.6(typescript@5.9.3)(zod@4.1.12) + viem: 2.39.0(typescript@5.9.3)(zod@4.1.12) transitivePeerDependencies: - bufferutil - debug @@ -35700,11 +35700,11 @@ snapshots: '@colors/colors@1.6.0': {} - '@commitlint/cli@19.8.1(@types/node@20.19.24)(typescript@5.6.3)': + '@commitlint/cli@19.8.1(@types/node@20.19.25)(typescript@5.6.3)': dependencies: '@commitlint/format': 19.8.1 '@commitlint/lint': 19.8.1 - '@commitlint/load': 19.8.1(@types/node@20.19.24)(typescript@5.6.3) + '@commitlint/load': 19.8.1(@types/node@20.19.25)(typescript@5.6.3) '@commitlint/read': 19.8.1 '@commitlint/types': 19.8.1 tinyexec: 1.0.2 @@ -35713,11 +35713,11 @@ snapshots: - '@types/node' - typescript - '@commitlint/cli@19.8.1(@types/node@22.19.0)(typescript@5.9.3)': + '@commitlint/cli@19.8.1(@types/node@22.19.1)(typescript@5.9.3)': dependencies: '@commitlint/format': 19.8.1 '@commitlint/lint': 19.8.1 - '@commitlint/load': 19.8.1(@types/node@22.19.0)(typescript@5.9.3) + '@commitlint/load': 19.8.1(@types/node@22.19.1)(typescript@5.9.3) '@commitlint/read': 19.8.1 '@commitlint/types': 19.8.1 tinyexec: 1.0.2 @@ -35764,7 +35764,7 @@ snapshots: '@commitlint/rules': 19.8.1 '@commitlint/types': 19.8.1 - '@commitlint/load@19.8.1(@types/node@20.19.24)(typescript@5.6.3)': + '@commitlint/load@19.8.1(@types/node@20.19.25)(typescript@5.6.3)': dependencies: '@commitlint/config-validator': 19.8.1 '@commitlint/execute-rule': 19.8.1 @@ -35772,7 +35772,7 @@ snapshots: '@commitlint/types': 19.8.1 chalk: 5.6.2 cosmiconfig: 9.0.0(typescript@5.6.3) - cosmiconfig-typescript-loader: 6.2.0(@types/node@20.19.24)(cosmiconfig@9.0.0(typescript@5.6.3))(typescript@5.6.3) + cosmiconfig-typescript-loader: 6.2.0(@types/node@20.19.25)(cosmiconfig@9.0.0(typescript@5.6.3))(typescript@5.6.3) lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 lodash.uniq: 4.5.0 @@ -35780,7 +35780,7 @@ snapshots: - '@types/node' - typescript - '@commitlint/load@19.8.1(@types/node@22.19.0)(typescript@5.9.3)': + '@commitlint/load@19.8.1(@types/node@22.19.1)(typescript@5.9.3)': dependencies: '@commitlint/config-validator': 19.8.1 '@commitlint/execute-rule': 19.8.1 @@ -35788,7 +35788,7 @@ snapshots: '@commitlint/types': 19.8.1 chalk: 5.6.2 cosmiconfig: 9.0.0(typescript@5.9.3) - cosmiconfig-typescript-loader: 6.2.0(@types/node@22.19.0)(cosmiconfig@9.0.0(typescript@5.9.3))(typescript@5.9.3) + cosmiconfig-typescript-loader: 6.2.0(@types/node@22.19.1)(cosmiconfig@9.0.0(typescript@5.9.3))(typescript@5.9.3) lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 lodash.uniq: 4.5.0 @@ -35839,14 +35839,14 @@ snapshots: '@types/conventional-commits-parser': 5.0.2 chalk: 5.6.2 - '@connectrpc/connect-web@2.0.0-rc.3(@bufbuild/protobuf@2.10.0)(@connectrpc/connect@2.0.0-rc.3(@bufbuild/protobuf@2.10.0))': + '@connectrpc/connect-web@2.0.0-rc.3(@bufbuild/protobuf@2.10.1)(@connectrpc/connect@2.0.0-rc.3(@bufbuild/protobuf@2.10.1))': dependencies: - '@bufbuild/protobuf': 2.10.0 - '@connectrpc/connect': 2.0.0-rc.3(@bufbuild/protobuf@2.10.0) + '@bufbuild/protobuf': 2.10.1 + '@connectrpc/connect': 2.0.0-rc.3(@bufbuild/protobuf@2.10.1) - '@connectrpc/connect@2.0.0-rc.3(@bufbuild/protobuf@2.10.0)': + '@connectrpc/connect@2.0.0-rc.3(@bufbuild/protobuf@2.10.1)': dependencies: - '@bufbuild/protobuf': 2.10.0 + '@bufbuild/protobuf': 2.10.1 '@crawlee/types@3.15.3': dependencies: @@ -36278,7 +36278,7 @@ snapshots: globals: 13.24.0 ignore: 5.3.2 import-fresh: 3.3.1 - js-yaml: 4.1.0 + js-yaml: 4.1.1 minimatch: 3.1.2 strip-json-comments: 3.1.1 transitivePeerDependencies: @@ -36292,7 +36292,7 @@ snapshots: globals: 14.0.0 ignore: 5.3.2 import-fresh: 3.3.1 - js-yaml: 4.1.0 + js-yaml: 4.1.1 minimatch: 3.1.2 strip-json-comments: 3.1.1 transitivePeerDependencies: @@ -36735,7 +36735,7 @@ snapshots: '@grpc/grpc-js@1.8.22': dependencies: '@grpc/proto-loader': 0.7.15 - '@types/node': 20.19.24 + '@types/node': 20.19.25 '@grpc/proto-loader@0.7.15': dependencies: @@ -36800,12 +36800,12 @@ snapshots: optionalDependencies: '@types/node': 17.0.45 - '@inquirer/external-editor@1.0.3(@types/node@22.19.0)': + '@inquirer/external-editor@1.0.3(@types/node@22.19.1)': dependencies: chardet: 2.1.1 iconv-lite: 0.7.0 optionalDependencies: - '@types/node': 22.19.0 + '@types/node': 22.19.1 '@isaacs/balanced-match@4.0.1': {} @@ -36839,27 +36839,27 @@ snapshots: '@jest/console@29.7.0': dependencies: '@jest/types': 29.6.3 - '@types/node': 20.19.24 + '@types/node': 20.19.25 chalk: 4.1.2 jest-message-util: 29.7.0 jest-util: 29.7.0 slash: 3.0.0 - '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.24)(typescript@5.6.3))': + '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.25)(typescript@5.6.3))': dependencies: '@jest/console': 29.7.0 '@jest/reporters': 29.7.0 '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.19.24 + '@types/node': 20.19.25 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.9.0 exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@20.19.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.24)(typescript@5.6.3)) + jest-config: 29.7.0(@types/node@20.19.25)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.25)(typescript@5.6.3)) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -36880,21 +36880,21 @@ snapshots: - supports-color - ts-node - '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.19.0)(typescript@3.9.10))': + '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.19.1)(typescript@3.9.10))': dependencies: '@jest/console': 29.7.0 '@jest/reporters': 29.7.0 '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.19.24 + '@types/node': 20.19.25 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.9.0 exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@20.19.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.19.0)(typescript@3.9.10)) + jest-config: 29.7.0(@types/node@20.19.25)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.19.1)(typescript@3.9.10)) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -36919,7 +36919,7 @@ snapshots: dependencies: '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.19.24 + '@types/node': 20.19.25 jest-mock: 29.7.0 '@jest/expect-utils@29.7.0': @@ -36937,7 +36937,7 @@ snapshots: dependencies: '@jest/types': 29.6.3 '@sinonjs/fake-timers': 10.3.0 - '@types/node': 20.19.24 + '@types/node': 20.19.25 jest-message-util: 29.7.0 jest-mock: 29.7.0 jest-util: 29.7.0 @@ -36959,7 +36959,7 @@ snapshots: '@jest/transform': 29.7.0 '@jest/types': 29.6.3 '@jridgewell/trace-mapping': 0.3.31 - '@types/node': 20.19.24 + '@types/node': 20.19.25 chalk: 4.1.2 collect-v8-coverage: 1.0.3 exit: 0.1.2 @@ -37029,7 +37029,7 @@ snapshots: '@jest/schemas': 29.6.3 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 20.19.24 + '@types/node': 20.19.25 '@types/yargs': 17.0.34 chalk: 4.1.2 @@ -37176,32 +37176,32 @@ snapshots: transitivePeerDependencies: - debug - '@microsoft/api-extractor-model@7.31.3(@types/node@20.19.24)': + '@microsoft/api-extractor-model@7.32.0(@types/node@20.19.25)': dependencies: - '@microsoft/tsdoc': 0.15.1 - '@microsoft/tsdoc-config': 0.17.1 - '@rushstack/node-core-library': 5.18.0(@types/node@20.19.24) + '@microsoft/tsdoc': 0.16.0 + '@microsoft/tsdoc-config': 0.18.0 + '@rushstack/node-core-library': 5.18.0(@types/node@20.19.25) transitivePeerDependencies: - '@types/node' optional: true - '@microsoft/api-extractor-model@7.31.3(@types/node@22.19.0)': + '@microsoft/api-extractor-model@7.32.0(@types/node@22.19.1)': dependencies: - '@microsoft/tsdoc': 0.15.1 - '@microsoft/tsdoc-config': 0.17.1 - '@rushstack/node-core-library': 5.18.0(@types/node@22.19.0) + '@microsoft/tsdoc': 0.16.0 + '@microsoft/tsdoc-config': 0.18.0 + '@rushstack/node-core-library': 5.18.0(@types/node@22.19.1) transitivePeerDependencies: - '@types/node' - '@microsoft/api-extractor@7.54.0(@types/node@20.19.24)': + '@microsoft/api-extractor@7.55.0(@types/node@20.19.25)': dependencies: - '@microsoft/api-extractor-model': 7.31.3(@types/node@20.19.24) - '@microsoft/tsdoc': 0.15.1 - '@microsoft/tsdoc-config': 0.17.1 - '@rushstack/node-core-library': 5.18.0(@types/node@20.19.24) + '@microsoft/api-extractor-model': 7.32.0(@types/node@20.19.25) + '@microsoft/tsdoc': 0.16.0 + '@microsoft/tsdoc-config': 0.18.0 + '@rushstack/node-core-library': 5.18.0(@types/node@20.19.25) '@rushstack/rig-package': 0.6.0 - '@rushstack/terminal': 0.19.3(@types/node@20.19.24) - '@rushstack/ts-command-line': 5.1.3(@types/node@20.19.24) + '@rushstack/terminal': 0.19.3(@types/node@20.19.25) + '@rushstack/ts-command-line': 5.1.3(@types/node@20.19.25) diff: 8.0.2 lodash: 4.17.21 minimatch: 10.0.3 @@ -37213,15 +37213,15 @@ snapshots: - '@types/node' optional: true - '@microsoft/api-extractor@7.54.0(@types/node@22.19.0)': + '@microsoft/api-extractor@7.55.0(@types/node@22.19.1)': dependencies: - '@microsoft/api-extractor-model': 7.31.3(@types/node@22.19.0) - '@microsoft/tsdoc': 0.15.1 - '@microsoft/tsdoc-config': 0.17.1 - '@rushstack/node-core-library': 5.18.0(@types/node@22.19.0) + '@microsoft/api-extractor-model': 7.32.0(@types/node@22.19.1) + '@microsoft/tsdoc': 0.16.0 + '@microsoft/tsdoc-config': 0.18.0 + '@rushstack/node-core-library': 5.18.0(@types/node@22.19.1) '@rushstack/rig-package': 0.6.0 - '@rushstack/terminal': 0.19.3(@types/node@22.19.0) - '@rushstack/ts-command-line': 5.1.3(@types/node@22.19.0) + '@rushstack/terminal': 0.19.3(@types/node@22.19.1) + '@rushstack/ts-command-line': 5.1.3(@types/node@22.19.1) diff: 8.0.2 lodash: 4.17.21 minimatch: 10.0.3 @@ -37237,14 +37237,14 @@ snapshots: '@babel/runtime': 7.28.4 tslib: 2.8.1 - '@microsoft/tsdoc-config@0.17.1': + '@microsoft/tsdoc-config@0.18.0': dependencies: - '@microsoft/tsdoc': 0.15.1 + '@microsoft/tsdoc': 0.16.0 ajv: 8.12.0 jju: 1.4.0 resolve: 1.22.11 - '@microsoft/tsdoc@0.15.1': {} + '@microsoft/tsdoc@0.16.0': {} '@mixmark-io/domino@2.2.0': {} @@ -37316,7 +37316,7 @@ snapshots: yaml: 2.8.1 yargs: 17.7.2 - '@netlify/build@35.3.1(@opentelemetry/api@1.8.0)(@types/node@22.19.0)(picomatch@4.0.3)(rollup@4.53.2)': + '@netlify/build@35.3.1(@opentelemetry/api@1.8.0)(@types/node@22.19.1)(picomatch@4.0.3)(rollup@4.53.2)': dependencies: '@bugsnag/js': 8.6.0 '@netlify/blobs': 10.3.3(supports-color@10.2.2) @@ -37364,7 +37364,7 @@ snapshots: string-width: 7.2.0 supports-color: 10.2.2 terminal-link: 4.0.0 - ts-node: 10.9.2(@types/node@22.19.0)(typescript@5.6.3) + ts-node: 10.9.2(@types/node@22.19.1)(typescript@5.6.3) typescript: 5.6.3 uuid: 11.1.0 yaml: 2.8.1 @@ -38486,8 +38486,8 @@ snapshots: '@protobuf-ts/plugin@2.11.1': dependencies: - '@bufbuild/protobuf': 2.10.0 - '@bufbuild/protoplugin': 2.10.0 + '@bufbuild/protobuf': 2.10.1 + '@bufbuild/protoplugin': 2.10.1 '@protobuf-ts/protoc': 2.11.1 '@protobuf-ts/runtime': 2.11.1 '@protobuf-ts/runtime-rpc': 2.11.1 @@ -38573,7 +38573,7 @@ snapshots: '@putout/babel@3.2.0': {} - '@putout/babel@4.5.0(rolldown@1.0.0-beta.9)(rollup@4.53.2)': + '@putout/babel@4.5.2(rolldown@1.0.0-beta.9)(rollup@4.53.2)': dependencies: rollup-plugin-visualizer: 6.0.5(rolldown@1.0.0-beta.9)(rollup@4.53.2) transitivePeerDependencies: @@ -38672,7 +38672,7 @@ snapshots: '@putout/compare@18.1.0(rolldown@1.0.0-beta.9)(rollup@4.53.2)': dependencies: - '@putout/babel': 4.5.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) + '@putout/babel': 4.5.2(rolldown@1.0.0-beta.9)(rollup@4.53.2) '@putout/engine-parser': 14.2.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) '@putout/operate': 14.2.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) debug: 4.4.3(supports-color@9.4.0) @@ -38732,8 +38732,8 @@ snapshots: '@putout/engine-parser@14.2.0(rolldown@1.0.0-beta.9)(rollup@4.53.2)': dependencies: - '@putout/babel': 4.5.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) - '@putout/printer': 15.26.2(rolldown@1.0.0-beta.9)(rollup@4.53.2) + '@putout/babel': 4.5.2(rolldown@1.0.0-beta.9)(rollup@4.53.2) + '@putout/printer': 15.27.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) align-spaces: 2.0.0 estree-to-babel: 11.1.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) nano-memoize: 3.0.16 @@ -38764,7 +38764,7 @@ snapshots: '@putout/engine-runner@25.1.0(putout@40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3))(rolldown@1.0.0-beta.9)(rollup@4.53.2)': dependencies: - '@putout/babel': 4.5.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) + '@putout/babel': 4.5.2(rolldown@1.0.0-beta.9)(rollup@4.53.2) '@putout/compare': 18.1.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) '@putout/engine-parser': 14.2.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) '@putout/operate': 14.2.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) @@ -38829,7 +38829,7 @@ snapshots: '@putout/formatter-codeframe@9.1.0(putout@40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3))(rolldown@1.0.0-beta.9)(rollup@4.53.2)': dependencies: - '@putout/babel': 4.5.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) + '@putout/babel': 4.5.2(rolldown@1.0.0-beta.9)(rollup@4.53.2) '@putout/formatter-json': 3.0.0(putout@40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3)) putout: 40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3) table: 6.9.0 @@ -38907,14 +38907,14 @@ snapshots: '@putout/operate@14.2.0(rolldown@1.0.0-beta.9)(rollup@4.53.2)': dependencies: - '@putout/babel': 4.5.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) + '@putout/babel': 4.5.2(rolldown@1.0.0-beta.9)(rollup@4.53.2) transitivePeerDependencies: - rolldown - rollup '@putout/operator-add-args@12.1.0(putout@40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3))(rolldown@1.0.0-beta.9)(rollup@4.53.2)': dependencies: - '@putout/babel': 4.5.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) + '@putout/babel': 4.5.2(rolldown@1.0.0-beta.9)(rollup@4.53.2) '@putout/compare': 18.1.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) '@putout/engine-parser': 14.2.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) putout: 40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3) @@ -38925,7 +38925,7 @@ snapshots: '@putout/operator-declare@14.0.2(putout@40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3))(rolldown@1.0.0-beta.9)(rollup@4.53.2)': dependencies: - '@putout/babel': 4.5.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) + '@putout/babel': 4.5.2(rolldown@1.0.0-beta.9)(rollup@4.53.2) '@putout/compare': 18.1.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) '@putout/engine-parser': 14.2.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) '@putout/operate': 14.2.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) @@ -38937,7 +38937,7 @@ snapshots: '@putout/operator-filesystem@9.0.1(putout@40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3))(rolldown@1.0.0-beta.9)(rollup@4.53.2)': dependencies: - '@putout/babel': 4.5.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) + '@putout/babel': 4.5.2(rolldown@1.0.0-beta.9)(rollup@4.53.2) '@putout/operate': 14.2.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) fullstore: 3.0.0 putout: 40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3) @@ -38948,7 +38948,7 @@ snapshots: '@putout/operator-ignore@3.0.0(rolldown@1.0.0-beta.9)(rollup@4.53.2)': dependencies: - '@putout/babel': 4.5.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) + '@putout/babel': 4.5.2(rolldown@1.0.0-beta.9)(rollup@4.53.2) '@putout/operate': 14.2.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) transitivePeerDependencies: - rolldown @@ -38960,7 +38960,7 @@ snapshots: '@putout/operator-jsx@1.8.2(putout@40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3))(rolldown@1.0.0-beta.9)(rollup@4.53.2)': dependencies: - '@putout/babel': 4.5.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) + '@putout/babel': 4.5.2(rolldown@1.0.0-beta.9)(rollup@4.53.2) '@putout/operate': 14.2.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) putout: 40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3) transitivePeerDependencies: @@ -38971,7 +38971,7 @@ snapshots: '@putout/operator-match-files@9.0.1(putout@40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3))(rolldown@1.0.0-beta.9)(rollup@4.53.2)': dependencies: - '@putout/babel': 4.5.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) + '@putout/babel': 4.5.2(rolldown@1.0.0-beta.9)(rollup@4.53.2) '@putout/engine-parser': 14.2.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) '@putout/operator-filesystem': 9.0.1(putout@40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3))(rolldown@1.0.0-beta.9)(rollup@4.53.2) '@putout/operator-json': 2.2.0 @@ -38979,10 +38979,11 @@ snapshots: transitivePeerDependencies: - rolldown - rollup + - supports-color '@putout/operator-parens@2.0.0(rolldown@1.0.0-beta.9)(rollup@4.53.2)': dependencies: - '@putout/babel': 4.5.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) + '@putout/babel': 4.5.2(rolldown@1.0.0-beta.9)(rollup@4.53.2) transitivePeerDependencies: - rolldown - rollup @@ -39143,7 +39144,7 @@ snapshots: '@putout/plugin-filesystem@11.0.1(putout@40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3))(rolldown@1.0.0-beta.9)(rollup@4.53.2)': dependencies: - '@putout/babel': 4.5.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) + '@putout/babel': 4.5.2(rolldown@1.0.0-beta.9)(rollup@4.53.2) '@putout/operate': 14.2.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) '@putout/operator-filesystem': 9.0.1(putout@40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3))(rolldown@1.0.0-beta.9)(rollup@4.53.2) '@putout/operator-json': 2.2.0 @@ -39285,7 +39286,7 @@ snapshots: dependencies: putout: 40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3) - '@putout/plugin-remove-iife@5.0.0(putout@40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3))': + '@putout/plugin-remove-iife@5.1.0(putout@40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3))': dependencies: putout: 40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3) @@ -39321,7 +39322,7 @@ snapshots: dependencies: putout: 40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3) - '@putout/plugin-remove-useless-arguments@12.1.0(putout@40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3))': + '@putout/plugin-remove-useless-arguments@12.1.1(putout@40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3))': dependencies: putout: 40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3) @@ -39517,9 +39518,9 @@ snapshots: - rollup - supports-color - '@putout/printer@15.26.2(rolldown@1.0.0-beta.9)(rollup@4.53.2)': + '@putout/printer@15.27.0(rolldown@1.0.0-beta.9)(rollup@4.53.2)': dependencies: - '@putout/babel': 4.5.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) + '@putout/babel': 4.5.2(rolldown@1.0.0-beta.9)(rollup@4.53.2) '@putout/compare': 18.1.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) '@putout/operate': 14.2.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) '@putout/operator-json': 2.2.0 @@ -39594,7 +39595,7 @@ snapshots: '@putout/traverse@14.0.0(rolldown@1.0.0-beta.9)(rollup@4.53.2)': dependencies: - '@putout/babel': 4.5.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) + '@putout/babel': 4.5.2(rolldown@1.0.0-beta.9)(rollup@4.53.2) '@putout/compare': 18.1.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) transitivePeerDependencies: - rolldown @@ -39647,7 +39648,7 @@ snapshots: '@jsdevtools/ono': 7.1.3 '@types/json-schema': 7.0.15 call-me-maybe: 1.0.2 - js-yaml: 4.1.0 + js-yaml: 4.1.1 '@readme/oas-extensions@14.4.0(oas@18.4.4(@types/node@17.0.45))': dependencies: @@ -39793,9 +39794,9 @@ snapshots: '@rtsao/scc@1.1.0': {} - '@rushstack/eslint-patch@1.14.1': {} + '@rushstack/eslint-patch@1.15.0': {} - '@rushstack/node-core-library@5.18.0(@types/node@20.19.24)': + '@rushstack/node-core-library@5.18.0(@types/node@20.19.25)': dependencies: ajv: 8.13.0 ajv-draft-04: 1.0.0(ajv@8.13.0) @@ -39806,10 +39807,10 @@ snapshots: resolve: 1.22.11 semver: 7.5.4 optionalDependencies: - '@types/node': 20.19.24 + '@types/node': 20.19.25 optional: true - '@rushstack/node-core-library@5.18.0(@types/node@22.19.0)': + '@rushstack/node-core-library@5.18.0(@types/node@22.19.1)': dependencies: ajv: 8.13.0 ajv-draft-04: 1.0.0(ajv@8.13.0) @@ -39820,42 +39821,42 @@ snapshots: resolve: 1.22.11 semver: 7.5.4 optionalDependencies: - '@types/node': 22.19.0 + '@types/node': 22.19.1 - '@rushstack/problem-matcher@0.1.1(@types/node@20.19.24)': + '@rushstack/problem-matcher@0.1.1(@types/node@20.19.25)': optionalDependencies: - '@types/node': 20.19.24 + '@types/node': 20.19.25 optional: true - '@rushstack/problem-matcher@0.1.1(@types/node@22.19.0)': + '@rushstack/problem-matcher@0.1.1(@types/node@22.19.1)': optionalDependencies: - '@types/node': 22.19.0 + '@types/node': 22.19.1 '@rushstack/rig-package@0.6.0': dependencies: resolve: 1.22.11 strip-json-comments: 3.1.1 - '@rushstack/terminal@0.19.3(@types/node@20.19.24)': + '@rushstack/terminal@0.19.3(@types/node@20.19.25)': dependencies: - '@rushstack/node-core-library': 5.18.0(@types/node@20.19.24) - '@rushstack/problem-matcher': 0.1.1(@types/node@20.19.24) + '@rushstack/node-core-library': 5.18.0(@types/node@20.19.25) + '@rushstack/problem-matcher': 0.1.1(@types/node@20.19.25) supports-color: 8.1.1 optionalDependencies: - '@types/node': 20.19.24 + '@types/node': 20.19.25 optional: true - '@rushstack/terminal@0.19.3(@types/node@22.19.0)': + '@rushstack/terminal@0.19.3(@types/node@22.19.1)': dependencies: - '@rushstack/node-core-library': 5.18.0(@types/node@22.19.0) - '@rushstack/problem-matcher': 0.1.1(@types/node@22.19.0) + '@rushstack/node-core-library': 5.18.0(@types/node@22.19.1) + '@rushstack/problem-matcher': 0.1.1(@types/node@22.19.1) supports-color: 8.1.1 optionalDependencies: - '@types/node': 22.19.0 + '@types/node': 22.19.1 - '@rushstack/ts-command-line@5.1.3(@types/node@20.19.24)': + '@rushstack/ts-command-line@5.1.3(@types/node@20.19.25)': dependencies: - '@rushstack/terminal': 0.19.3(@types/node@20.19.24) + '@rushstack/terminal': 0.19.3(@types/node@20.19.25) '@types/argparse': 1.0.38 argparse: 1.0.10 string-argv: 0.3.2 @@ -39863,9 +39864,9 @@ snapshots: - '@types/node' optional: true - '@rushstack/ts-command-line@5.1.3(@types/node@22.19.0)': + '@rushstack/ts-command-line@5.1.3(@types/node@22.19.1)': dependencies: - '@rushstack/terminal': 0.19.3(@types/node@22.19.0) + '@rushstack/terminal': 0.19.3(@types/node@22.19.1) '@types/argparse': 1.0.38 argparse: 1.0.10 string-argv: 0.3.2 @@ -40163,11 +40164,11 @@ snapshots: '@slack/logger@2.0.0': dependencies: - '@types/node': 20.19.24 + '@types/node': 20.19.25 '@slack/logger@4.0.0': dependencies: - '@types/node': 20.19.24 + '@types/node': 20.19.25 '@slack/types@1.10.0': {} @@ -40178,7 +40179,7 @@ snapshots: '@slack/logger': 2.0.0 '@slack/types': 1.10.0 '@types/is-stream': 1.1.0 - '@types/node': 20.19.24 + '@types/node': 20.19.25 axios: 0.30.2 eventemitter3: 3.1.2 form-data: 2.5.4 @@ -40192,7 +40193,7 @@ snapshots: dependencies: '@slack/logger': 4.0.0 '@slack/types': 2.18.0 - '@types/node': 20.19.24 + '@types/node': 20.19.25 '@types/retry': 0.12.0 axios: 1.13.2(debug@3.2.7) eventemitter3: 5.0.1 @@ -40234,7 +40235,7 @@ snapshots: '@smithy/util-middleware': 4.2.5 tslib: 2.8.1 - '@smithy/core@3.18.0': + '@smithy/core@3.18.1': dependencies: '@smithy/middleware-serde': 4.2.5 '@smithy/protocol-http': 5.3.5 @@ -40338,9 +40339,9 @@ snapshots: '@smithy/types': 4.9.0 tslib: 2.8.1 - '@smithy/middleware-endpoint@4.3.7': + '@smithy/middleware-endpoint@4.3.8': dependencies: - '@smithy/core': 3.18.0 + '@smithy/core': 3.18.1 '@smithy/middleware-serde': 4.2.5 '@smithy/node-config-provider': 4.3.5 '@smithy/shared-ini-file-loader': 4.4.0 @@ -40349,12 +40350,12 @@ snapshots: '@smithy/util-middleware': 4.2.5 tslib: 2.8.1 - '@smithy/middleware-retry@4.4.7': + '@smithy/middleware-retry@4.4.8': dependencies: '@smithy/node-config-provider': 4.3.5 '@smithy/protocol-http': 5.3.5 '@smithy/service-error-classification': 4.2.5 - '@smithy/smithy-client': 4.9.3 + '@smithy/smithy-client': 4.9.4 '@smithy/types': 4.9.0 '@smithy/util-middleware': 4.2.5 '@smithy/util-retry': 4.2.5 @@ -40428,10 +40429,10 @@ snapshots: '@smithy/util-utf8': 4.2.0 tslib: 2.8.1 - '@smithy/smithy-client@4.9.3': + '@smithy/smithy-client@4.9.4': dependencies: - '@smithy/core': 3.18.0 - '@smithy/middleware-endpoint': 4.3.7 + '@smithy/core': 3.18.1 + '@smithy/middleware-endpoint': 4.3.8 '@smithy/middleware-stack': 4.2.5 '@smithy/protocol-http': 5.3.5 '@smithy/types': 4.9.0 @@ -40476,20 +40477,20 @@ snapshots: dependencies: tslib: 2.8.1 - '@smithy/util-defaults-mode-browser@4.3.6': + '@smithy/util-defaults-mode-browser@4.3.7': dependencies: '@smithy/property-provider': 4.2.5 - '@smithy/smithy-client': 4.9.3 + '@smithy/smithy-client': 4.9.4 '@smithy/types': 4.9.0 tslib: 2.8.1 - '@smithy/util-defaults-mode-node@4.2.9': + '@smithy/util-defaults-mode-node@4.2.10': dependencies: '@smithy/config-resolver': 4.4.3 '@smithy/credential-provider-imds': 4.2.5 '@smithy/node-config-provider': 4.3.5 '@smithy/property-provider': 4.2.5 - '@smithy/smithy-client': 4.9.3 + '@smithy/smithy-client': 4.9.4 '@smithy/types': 4.9.0 tslib: 2.8.1 @@ -40678,11 +40679,11 @@ snapshots: dependencies: defer-to-connect: 2.0.1 - '@tanstack/query-core@5.90.7': {} + '@tanstack/query-core@5.90.8': {} - '@tanstack/react-query@5.90.7(react@18.3.1)': + '@tanstack/react-query@5.90.8(react@18.3.1)': dependencies: - '@tanstack/query-core': 5.90.7 + '@tanstack/query-core': 5.90.8 react: 18.3.1 '@techteamer/ocsp@1.0.0': @@ -40772,24 +40773,24 @@ snapshots: '@types/body-parser@1.19.6': dependencies: '@types/connect': 3.4.38 - '@types/node': 20.19.24 + '@types/node': 20.19.25 '@types/cacheable-request@6.0.3': dependencies: '@types/http-cache-semantics': 4.0.4 '@types/keyv': 3.1.4 - '@types/node': 20.19.24 + '@types/node': 20.19.25 '@types/responselike': 1.0.3 '@types/caseless@0.12.5': {} '@types/connect@3.4.38': dependencies: - '@types/node': 20.19.24 + '@types/node': 20.19.25 '@types/conventional-commits-parser@5.0.2': dependencies: - '@types/node': 20.19.24 + '@types/node': 20.19.25 '@types/debug@4.1.12': dependencies: @@ -40797,7 +40798,7 @@ snapshots: '@types/duplexify@3.6.5': dependencies: - '@types/node': 20.19.24 + '@types/node': 20.19.25 '@types/estree-jsx@1.0.5': dependencies: @@ -40807,14 +40808,14 @@ snapshots: '@types/express-serve-static-core@4.19.7': dependencies: - '@types/node': 20.19.24 + '@types/node': 20.19.25 '@types/qs': 6.14.0 '@types/range-parser': 1.2.7 '@types/send': 1.2.1 '@types/express-serve-static-core@5.1.0': dependencies: - '@types/node': 20.19.24 + '@types/node': 20.19.25 '@types/qs': 6.14.0 '@types/range-parser': 1.2.7 '@types/send': 1.2.1 @@ -40834,7 +40835,7 @@ snapshots: '@types/feedparser@2.2.8': dependencies: - '@types/node': 20.19.24 + '@types/node': 20.19.25 '@types/sax': 1.2.7 '@types/gensync@1.0.4': {} @@ -40845,7 +40846,7 @@ snapshots: '@types/graceful-fs@4.1.9': dependencies: - '@types/node': 20.19.24 + '@types/node': 20.19.25 '@types/hast@3.0.4': dependencies: @@ -40857,11 +40858,11 @@ snapshots: '@types/http-proxy@1.17.17': dependencies: - '@types/node': 20.19.24 + '@types/node': 20.19.25 '@types/is-stream@1.1.0': dependencies: - '@types/node': 20.19.24 + '@types/node': 20.19.25 '@types/isomorphic-fetch@0.0.35': {} @@ -40893,18 +40894,18 @@ snapshots: '@types/jsonwebtoken@9.0.0': dependencies: - '@types/node': 20.19.24 + '@types/node': 20.19.25 '@types/jsonwebtoken@9.0.10': dependencies: '@types/ms': 2.1.0 - '@types/node': 20.19.24 + '@types/node': 20.19.25 '@types/jssha@2.0.0': {} '@types/keyv@3.1.4': dependencies: - '@types/node': 20.19.24 + '@types/node': 20.19.25 '@types/linkify-it@5.0.0': {} @@ -40941,7 +40942,7 @@ snapshots: '@types/node-fetch@2.6.13': dependencies: - '@types/node': 20.19.24 + '@types/node': 20.19.25 form-data: 4.0.4 '@types/node@14.18.63': {} @@ -40952,11 +40953,11 @@ snapshots: dependencies: undici-types: 5.26.5 - '@types/node@20.19.24': + '@types/node@20.19.25': dependencies: undici-types: 6.21.0 - '@types/node@22.19.0': + '@types/node@22.19.1': dependencies: undici-types: 6.21.0 @@ -40970,7 +40971,7 @@ snapshots: '@types/opossum@4.1.1': dependencies: - '@types/node': 20.19.24 + '@types/node': 20.19.25 '@types/parse-json@4.0.2': {} @@ -40995,18 +40996,18 @@ snapshots: '@types/readable-stream@4.0.22': dependencies: - '@types/node': 20.19.24 + '@types/node': 20.19.25 '@types/request@2.48.13': dependencies: '@types/caseless': 0.12.5 - '@types/node': 20.19.24 + '@types/node': 20.19.25 '@types/tough-cookie': 4.0.5 form-data: 2.5.4 '@types/responselike@1.0.3': dependencies: - '@types/node': 20.19.24 + '@types/node': 20.19.25 '@types/retry@0.12.0': {} @@ -41015,25 +41016,25 @@ snapshots: '@types/rimraf@3.0.2': dependencies: '@types/glob': 9.0.0 - '@types/node': 20.19.24 + '@types/node': 20.19.25 '@types/sax@1.2.7': dependencies: - '@types/node': 20.19.24 + '@types/node': 20.19.25 '@types/send@0.17.6': dependencies: '@types/mime': 1.3.5 - '@types/node': 20.19.24 + '@types/node': 20.19.25 '@types/send@1.2.1': dependencies: - '@types/node': 20.19.24 + '@types/node': 20.19.25 '@types/serve-static@1.15.10': dependencies: '@types/http-errors': 2.0.5 - '@types/node': 20.19.24 + '@types/node': 20.19.25 '@types/send': 0.17.6 '@types/source-map@0.5.7': @@ -41042,7 +41043,7 @@ snapshots: '@types/sshpk@1.10.3': dependencies: - '@types/node': 20.19.24 + '@types/node': 20.19.25 '@types/stack-utils@2.0.3': {} @@ -41062,12 +41063,12 @@ snapshots: '@types/whatwg-url@8.2.2': dependencies: - '@types/node': 20.19.24 + '@types/node': 20.19.25 '@types/webidl-conversions': 7.0.3 '@types/ws@8.18.1': dependencies: - '@types/node': 20.19.24 + '@types/node': 20.19.25 '@types/yargs-parser@21.0.3': {} @@ -41077,7 +41078,7 @@ snapshots: '@types/yauzl@2.10.3': dependencies: - '@types/node': 20.19.24 + '@types/node': 20.19.25 optional: true '@typescript-eslint/eslint-plugin@8.46.4(@typescript-eslint/parser@8.46.4(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3)': @@ -41815,7 +41816,7 @@ snapshots: find-cache-dir: 3.3.2 form-data: 4.0.4 get-stream: 6.0.1 - js-yaml: 4.1.0 + js-yaml: 4.1.1 make-dir: 3.1.0 mimer: 2.0.2 node-fetch: 2.7.0 @@ -42309,7 +42310,7 @@ snapshots: base64-js@1.5.1: {} - baseline-browser-mapping@2.8.26: {} + baseline-browser-mapping@2.8.27: {} basic-ftp@5.0.5: {} @@ -42463,7 +42464,7 @@ snapshots: browserslist@4.28.0: dependencies: - baseline-browser-mapping: 2.8.26 + baseline-browser-mapping: 2.8.27 caniuse-lite: 1.0.30001754 electron-to-chromium: 1.5.250 node-releases: 2.0.27 @@ -42614,7 +42615,7 @@ snapshots: '@cacheable/utils': 2.2.0 hookified: 1.13.0 keyv: 5.5.4 - qified: 0.5.1 + qified: 0.5.2 cachedir@2.4.0: {} @@ -42935,17 +42936,17 @@ snapshots: color-convert@3.1.2: dependencies: - color-name: 2.0.2 + color-name: 2.1.0 color-name@1.1.3: {} color-name@1.1.4: {} - color-name@2.0.2: {} + color-name@2.1.0: {} color-string@2.1.2: dependencies: - color-name: 2.0.2 + color-name: 2.1.0 color@5.0.2: dependencies: @@ -43186,16 +43187,16 @@ snapshots: object-assign: 4.1.1 vary: 1.1.2 - cosmiconfig-typescript-loader@6.2.0(@types/node@20.19.24)(cosmiconfig@9.0.0(typescript@5.6.3))(typescript@5.6.3): + cosmiconfig-typescript-loader@6.2.0(@types/node@20.19.25)(cosmiconfig@9.0.0(typescript@5.6.3))(typescript@5.6.3): dependencies: - '@types/node': 20.19.24 + '@types/node': 20.19.25 cosmiconfig: 9.0.0(typescript@5.6.3) jiti: 2.6.1 typescript: 5.6.3 - cosmiconfig-typescript-loader@6.2.0(@types/node@22.19.0)(cosmiconfig@9.0.0(typescript@5.9.3))(typescript@5.9.3): + cosmiconfig-typescript-loader@6.2.0(@types/node@22.19.1)(cosmiconfig@9.0.0(typescript@5.9.3))(typescript@5.9.3): dependencies: - '@types/node': 22.19.0 + '@types/node': 22.19.1 cosmiconfig: 9.0.0(typescript@5.9.3) jiti: 2.6.1 typescript: 5.9.3 @@ -43219,7 +43220,7 @@ snapshots: dependencies: env-paths: 2.2.1 import-fresh: 3.3.1 - js-yaml: 4.1.0 + js-yaml: 4.1.1 parse-json: 5.2.0 optionalDependencies: typescript: 5.6.3 @@ -43228,7 +43229,7 @@ snapshots: dependencies: env-paths: 2.2.1 import-fresh: 3.3.1 - js-yaml: 4.1.0 + js-yaml: 4.1.1 parse-json: 5.2.0 optionalDependencies: typescript: 5.9.3 @@ -43280,13 +43281,13 @@ snapshots: safe-buffer: 5.2.1 sha.js: 2.4.12 - create-jest@29.7.0(@types/node@20.19.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.24)(typescript@5.6.3)): + create-jest@29.7.0(@types/node@20.19.25)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.25)(typescript@5.6.3)): dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@20.19.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.24)(typescript@5.6.3)) + jest-config: 29.7.0(@types/node@20.19.25)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.25)(typescript@5.6.3)) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -43295,13 +43296,13 @@ snapshots: - supports-color - ts-node - create-jest@29.7.0(@types/node@22.19.0)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.19.0)(typescript@3.9.10)): + create-jest@29.7.0(@types/node@22.19.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.19.1)(typescript@3.9.10)): dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@22.19.0)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.19.0)(typescript@3.9.10)) + jest-config: 29.7.0(@types/node@22.19.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.19.1)(typescript@3.9.10)) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -43579,7 +43580,7 @@ snapshots: default-browser-id@5.0.0: {} - default-browser@5.2.1: + default-browser@5.3.0: dependencies: bundle-name: 4.1.0 default-browser-id: 5.0.0 @@ -43930,9 +43931,9 @@ snapshots: e2b@1.13.2: dependencies: - '@bufbuild/protobuf': 2.10.0 - '@connectrpc/connect': 2.0.0-rc.3(@bufbuild/protobuf@2.10.0) - '@connectrpc/connect-web': 2.0.0-rc.3(@bufbuild/protobuf@2.10.0)(@connectrpc/connect@2.0.0-rc.3(@bufbuild/protobuf@2.10.0)) + '@bufbuild/protobuf': 2.10.1 + '@connectrpc/connect': 2.0.0-rc.3(@bufbuild/protobuf@2.10.1) + '@connectrpc/connect-web': 2.0.0-rc.3(@bufbuild/protobuf@2.10.1)(@connectrpc/connect@2.0.0-rc.3(@bufbuild/protobuf@2.10.1)) compare-versions: 6.1.1 openapi-fetch: 0.9.8 platform: 1.3.6 @@ -44322,7 +44323,7 @@ snapshots: eslint-config-next@15.5.6(eslint@8.57.1)(typescript@5.6.3): dependencies: '@next/eslint-plugin-next': 15.5.6 - '@rushstack/eslint-patch': 1.14.1 + '@rushstack/eslint-patch': 1.15.0 '@typescript-eslint/eslint-plugin': 8.46.4(@typescript-eslint/parser@8.46.4(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3) '@typescript-eslint/parser': 8.46.4(eslint@8.57.1)(typescript@5.6.3) eslint: 8.57.1 @@ -44409,13 +44410,13 @@ snapshots: - eslint-import-resolver-webpack - supports-color - eslint-plugin-jest@28.14.0(@typescript-eslint/eslint-plugin@8.46.4(@typescript-eslint/parser@8.46.4(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(jest@29.7.0(@types/node@20.19.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.24)(typescript@5.6.3)))(typescript@5.6.3): + eslint-plugin-jest@28.14.0(@typescript-eslint/eslint-plugin@8.46.4(@typescript-eslint/parser@8.46.4(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(jest@29.7.0(@types/node@20.19.25)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.25)(typescript@5.6.3)))(typescript@5.6.3): dependencies: '@typescript-eslint/utils': 8.46.4(eslint@8.57.1)(typescript@5.6.3) eslint: 8.57.1 optionalDependencies: '@typescript-eslint/eslint-plugin': 8.46.4(@typescript-eslint/parser@8.46.4(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3) - jest: 29.7.0(@types/node@20.19.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.24)(typescript@5.6.3)) + jest: 29.7.0(@types/node@20.19.25)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.25)(typescript@5.6.3)) transitivePeerDependencies: - supports-color - typescript @@ -44641,7 +44642,7 @@ snapshots: imurmurhash: 0.1.4 is-glob: 4.0.3 is-path-inside: 3.0.3 - js-yaml: 4.1.0 + js-yaml: 4.1.1 json-stable-stringify-without-jsonify: 1.0.1 levn: 0.4.1 lodash.merge: 4.6.2 @@ -44700,7 +44701,7 @@ snapshots: estree-to-babel@11.1.0(rolldown@1.0.0-beta.9)(rollup@4.53.2): dependencies: - '@putout/babel': 4.5.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) + '@putout/babel': 4.5.2(rolldown@1.0.0-beta.9)(rollup@4.53.2) transitivePeerDependencies: - rolldown - rollup @@ -45282,7 +45283,7 @@ snapshots: '@fastify/busboy': 3.2.0 '@firebase/database-compat': 2.1.0 '@firebase/database-types': 1.0.16 - '@types/node': 22.19.0 + '@types/node': 22.19.1 farmhash-modern: 1.1.0 fast-deep-equal: 3.1.3 google-auth-library: 9.15.1 @@ -45826,7 +45827,7 @@ snapshots: '@putout/plugin-declare': 5.0.0(putout@40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3)) '@putout/plugin-logical-expressions': 7.0.1(putout@40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3)) '@putout/plugin-try-catch': 6.0.0(putout@40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3)) - '@putout/printer': 15.26.2(rolldown@1.0.0-beta.9)(rollup@4.53.2) + '@putout/printer': 15.27.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) acorn: 8.15.0 acorn-typescript: 1.4.13(acorn@8.15.0) estree-to-babel: 11.1.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) @@ -46605,12 +46606,12 @@ snapshots: inline-style-parser@0.2.6: {} - inquirer-autocomplete-prompt@1.4.0(inquirer@8.2.7(@types/node@22.19.0)): + inquirer-autocomplete-prompt@1.4.0(inquirer@8.2.7(@types/node@22.19.1)): dependencies: ansi-escapes: 4.3.2 chalk: 4.1.2 figures: 3.2.0 - inquirer: 8.2.7(@types/node@22.19.0) + inquirer: 8.2.7(@types/node@22.19.1) run-async: 2.4.1 rxjs: 6.6.7 @@ -46634,9 +46635,9 @@ snapshots: transitivePeerDependencies: - '@types/node' - inquirer@8.2.7(@types/node@22.19.0): + inquirer@8.2.7(@types/node@22.19.1): dependencies: - '@inquirer/external-editor': 1.0.3(@types/node@22.19.0) + '@inquirer/external-editor': 1.0.3(@types/node@22.19.1) ansi-escapes: 4.3.2 chalk: 4.1.2 cli-cursor: 3.1.0 @@ -47139,7 +47140,7 @@ snapshots: '@jest/expect': 29.7.0 '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.19.24 + '@types/node': 20.19.25 chalk: 4.1.2 co: 4.6.0 dedent: 1.7.0(babel-plugin-macros@3.1.0) @@ -47159,16 +47160,16 @@ snapshots: - babel-plugin-macros - supports-color - jest-cli@29.7.0(@types/node@20.19.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.24)(typescript@5.6.3)): + jest-cli@29.7.0(@types/node@20.19.25)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.25)(typescript@5.6.3)): dependencies: - '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.24)(typescript@5.6.3)) + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.25)(typescript@5.6.3)) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@20.19.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.24)(typescript@5.6.3)) + create-jest: 29.7.0(@types/node@20.19.25)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.25)(typescript@5.6.3)) exit: 0.1.2 import-local: 3.2.0 - jest-config: 29.7.0(@types/node@20.19.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.24)(typescript@5.6.3)) + jest-config: 29.7.0(@types/node@20.19.25)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.25)(typescript@5.6.3)) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -47178,16 +47179,16 @@ snapshots: - supports-color - ts-node - jest-cli@29.7.0(@types/node@22.19.0)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.19.0)(typescript@3.9.10)): + jest-cli@29.7.0(@types/node@22.19.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.19.1)(typescript@3.9.10)): dependencies: - '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.19.0)(typescript@3.9.10)) + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.19.1)(typescript@3.9.10)) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@22.19.0)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.19.0)(typescript@3.9.10)) + create-jest: 29.7.0(@types/node@22.19.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.19.1)(typescript@3.9.10)) exit: 0.1.2 import-local: 3.2.0 - jest-config: 29.7.0(@types/node@22.19.0)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.19.0)(typescript@3.9.10)) + jest-config: 29.7.0(@types/node@22.19.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.19.1)(typescript@3.9.10)) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -47197,7 +47198,7 @@ snapshots: - supports-color - ts-node - jest-config@29.7.0(@types/node@20.19.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.24)(typescript@5.6.3)): + jest-config@29.7.0(@types/node@20.19.25)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.25)(typescript@5.6.3)): dependencies: '@babel/core': 7.28.5 '@jest/test-sequencer': 29.7.0 @@ -47222,13 +47223,13 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 20.19.24 - ts-node: 10.9.2(@types/node@20.19.24)(typescript@5.6.3) + '@types/node': 20.19.25 + ts-node: 10.9.2(@types/node@20.19.25)(typescript@5.6.3) transitivePeerDependencies: - babel-plugin-macros - supports-color - jest-config@29.7.0(@types/node@20.19.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.19.0)(typescript@3.9.10)): + jest-config@29.7.0(@types/node@20.19.25)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.19.1)(typescript@3.9.10)): dependencies: '@babel/core': 7.28.5 '@jest/test-sequencer': 29.7.0 @@ -47253,13 +47254,13 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 20.19.24 - ts-node: 10.9.2(@types/node@22.19.0)(typescript@3.9.10) + '@types/node': 20.19.25 + ts-node: 10.9.2(@types/node@22.19.1)(typescript@3.9.10) transitivePeerDependencies: - babel-plugin-macros - supports-color - jest-config@29.7.0(@types/node@22.19.0)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.19.0)(typescript@3.9.10)): + jest-config@29.7.0(@types/node@22.19.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.19.1)(typescript@3.9.10)): dependencies: '@babel/core': 7.28.5 '@jest/test-sequencer': 29.7.0 @@ -47284,8 +47285,8 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 22.19.0 - ts-node: 10.9.2(@types/node@22.19.0)(typescript@3.9.10) + '@types/node': 22.19.1 + ts-node: 10.9.2(@types/node@22.19.1)(typescript@3.9.10) transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -47321,7 +47322,7 @@ snapshots: '@jest/environment': 29.7.0 '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.19.24 + '@types/node': 20.19.25 jest-mock: 29.7.0 jest-util: 29.7.0 @@ -47333,7 +47334,7 @@ snapshots: dependencies: '@jest/types': 29.6.3 '@types/graceful-fs': 4.1.9 - '@types/node': 20.19.24 + '@types/node': 20.19.25 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -47379,7 +47380,7 @@ snapshots: jest-mock@29.7.0: dependencies: '@jest/types': 29.6.3 - '@types/node': 20.19.24 + '@types/node': 20.19.25 jest-util: 29.7.0 jest-pnp-resolver@1.2.3(jest-resolve@29.7.0): @@ -47414,7 +47415,7 @@ snapshots: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.19.24 + '@types/node': 20.19.25 chalk: 4.1.2 emittery: 0.13.1 graceful-fs: 4.2.11 @@ -47442,7 +47443,7 @@ snapshots: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.19.24 + '@types/node': 20.19.25 chalk: 4.1.2 cjs-module-lexer: 1.4.3 collect-v8-coverage: 1.0.3 @@ -47488,7 +47489,7 @@ snapshots: jest-util@29.7.0: dependencies: '@jest/types': 29.6.3 - '@types/node': 20.19.24 + '@types/node': 20.19.25 chalk: 4.1.2 ci-info: 3.9.0 graceful-fs: 4.2.11 @@ -47507,7 +47508,7 @@ snapshots: dependencies: '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.19.24 + '@types/node': 20.19.25 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -47516,29 +47517,29 @@ snapshots: jest-worker@29.7.0: dependencies: - '@types/node': 20.19.24 + '@types/node': 20.19.25 jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 - jest@29.7.0(@types/node@20.19.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.24)(typescript@5.6.3)): + jest@29.7.0(@types/node@20.19.25)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.25)(typescript@5.6.3)): dependencies: - '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.24)(typescript@5.6.3)) + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.25)(typescript@5.6.3)) '@jest/types': 29.6.3 import-local: 3.2.0 - jest-cli: 29.7.0(@types/node@20.19.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.24)(typescript@5.6.3)) + jest-cli: 29.7.0(@types/node@20.19.25)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.25)(typescript@5.6.3)) transitivePeerDependencies: - '@types/node' - babel-plugin-macros - supports-color - ts-node - jest@29.7.0(@types/node@22.19.0)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.19.0)(typescript@3.9.10)): + jest@29.7.0(@types/node@22.19.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.19.1)(typescript@3.9.10)): dependencies: - '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.19.0)(typescript@3.9.10)) + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.19.1)(typescript@3.9.10)) '@jest/types': 29.6.3 import-local: 3.2.0 - jest-cli: 29.7.0(@types/node@22.19.0)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.19.0)(typescript@3.9.10)) + jest-cli: 29.7.0(@types/node@22.19.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.19.1)(typescript@3.9.10)) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -47596,7 +47597,7 @@ snapshots: argparse: 1.0.10 esprima: 4.0.1 - js-yaml@4.1.0: + js-yaml@4.1.1: dependencies: argparse: 2.0.1 @@ -47946,9 +47947,9 @@ snapshots: dependencies: uc.micro: 2.1.0 - linkup-sdk@1.2.0(@types/node@20.19.24)(typescript@5.6.3): + linkup-sdk@1.2.0(@types/node@20.19.25)(typescript@5.6.3): dependencies: - '@commitlint/cli': 19.8.1(@types/node@20.19.24)(typescript@5.6.3) + '@commitlint/cli': 19.8.1(@types/node@20.19.25)(typescript@5.6.3) '@commitlint/config-conventional': 19.8.1 axios: 1.13.2(debug@3.2.7) semantic-release: 24.2.9(typescript@5.6.3) @@ -47960,9 +47961,9 @@ snapshots: - supports-color - typescript - linkup-sdk@1.2.0(@types/node@22.19.0)(typescript@5.9.3): + linkup-sdk@1.2.0(@types/node@22.19.1)(typescript@5.9.3): dependencies: - '@commitlint/cli': 19.8.1(@types/node@22.19.0)(typescript@5.9.3) + '@commitlint/cli': 19.8.1(@types/node@22.19.1)(typescript@5.9.3) '@commitlint/config-conventional': 19.8.1 axios: 1.13.2(debug@3.2.7) semantic-release: 24.2.9(typescript@5.9.3) @@ -49158,13 +49159,13 @@ snapshots: netlify-redirector@0.5.0: {} - netlify@23.10.0(@azure/storage-blob@12.29.1)(@types/express@4.17.25)(@types/node@22.19.0)(picomatch@4.0.3)(rollup@4.53.2): + netlify@23.10.0(@azure/storage-blob@12.29.1)(@types/express@4.17.25)(@types/node@22.19.1)(picomatch@4.0.3)(rollup@4.53.2): dependencies: '@fastify/static': 7.0.4 '@netlify/ai': 0.3.0(@netlify/api@14.0.9) '@netlify/api': 14.0.9 '@netlify/blobs': 10.1.0 - '@netlify/build': 35.3.1(@opentelemetry/api@1.8.0)(@types/node@22.19.0)(picomatch@4.0.3)(rollup@4.53.2) + '@netlify/build': 35.3.1(@opentelemetry/api@1.8.0)(@types/node@22.19.1)(picomatch@4.0.3)(rollup@4.53.2) '@netlify/build-info': 10.0.9 '@netlify/config': 24.0.8 '@netlify/dev-utils': 4.3.0 @@ -49215,8 +49216,8 @@ snapshots: http-proxy: 1.18.1(debug@4.4.3) http-proxy-middleware: 2.0.9(@types/express@4.17.25)(debug@4.4.3) https-proxy-agent: 7.0.6 - inquirer: 8.2.7(@types/node@22.19.0) - inquirer-autocomplete-prompt: 1.4.0(inquirer@8.2.7(@types/node@22.19.0)) + inquirer: 8.2.7(@types/node@22.19.1) + inquirer-autocomplete-prompt: 1.4.0(inquirer@8.2.7(@types/node@22.19.1)) ipx: 3.1.1(@azure/storage-blob@12.29.1)(@netlify/blobs@10.1.0) is-docker: 3.0.0 is-stream: 4.0.1 @@ -49531,7 +49532,7 @@ snapshots: oas-normalize@7.1.1: dependencies: '@readme/openapi-parser': 2.7.0(openapi-types@12.1.3) - js-yaml: 4.1.0 + js-yaml: 4.1.1 node-fetch: 2.7.0 openapi-types: 12.1.3 swagger2openapi: 7.0.8 @@ -49746,7 +49747,7 @@ snapshots: open@10.2.0: dependencies: - default-browser: 5.2.1 + default-browser: 5.3.0 define-lazy-prop: 3.0.0 is-inside-container: 1.0.0 wsl-utils: 0.1.0 @@ -50520,7 +50521,7 @@ snapshots: '@protobufjs/path': 1.1.2 '@protobufjs/pool': 1.1.0 '@protobufjs/utf8': 1.1.0 - '@types/node': 20.19.24 + '@types/node': 20.19.25 long: 5.3.2 protobufjs@7.5.4: @@ -50535,7 +50536,7 @@ snapshots: '@protobufjs/path': 1.1.2 '@protobufjs/pool': 1.1.0 '@protobufjs/utf8': 1.1.0 - '@types/node': 20.19.24 + '@types/node': 20.19.25 long: 5.3.2 proxy-addr@2.0.7: @@ -50673,7 +50674,7 @@ snapshots: putout@40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3): dependencies: - '@putout/babel': 4.5.0(rolldown@1.0.0-beta.9)(rollup@4.53.2) + '@putout/babel': 4.5.2(rolldown@1.0.0-beta.9)(rollup@4.53.2) '@putout/cli-cache': 6.0.0 '@putout/cli-choose-formatter': 5.0.1(putout@40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3)) '@putout/cli-keypress': 3.0.0 @@ -50773,7 +50774,7 @@ snapshots: '@putout/plugin-remove-duplicate-case': 3.0.0(putout@40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3)) '@putout/plugin-remove-duplicate-keys': 8.1.0(putout@40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3)) '@putout/plugin-remove-empty': 15.0.0(putout@40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3)) - '@putout/plugin-remove-iife': 5.0.0(putout@40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3)) + '@putout/plugin-remove-iife': 5.1.0(putout@40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3)) '@putout/plugin-remove-nested-blocks': 9.0.0(putout@40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3)) '@putout/plugin-remove-unreachable-code': 3.0.0(putout@40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3)) '@putout/plugin-remove-unreferenced-variables': 6.0.0(putout@40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3)) @@ -50782,7 +50783,7 @@ snapshots: '@putout/plugin-remove-unused-labels': 1.0.2(putout@40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3)) '@putout/plugin-remove-unused-private-fields': 4.0.0(putout@40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3)) '@putout/plugin-remove-unused-variables': 14.1.0(putout@40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3)) - '@putout/plugin-remove-useless-arguments': 12.1.0(putout@40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3)) + '@putout/plugin-remove-useless-arguments': 12.1.1(putout@40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3)) '@putout/plugin-remove-useless-array': 2.0.0(eslint@8.57.1)(putout@40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3))(rolldown@1.0.0-beta.9)(rollup@4.53.2) '@putout/plugin-remove-useless-array-constructor': 3.0.0(putout@40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3)) '@putout/plugin-remove-useless-array-entries': 2.0.0(eslint@8.57.1)(putout@40.13.0(eslint@8.57.1)(rolldown@1.0.0-beta.9)(rollup@4.53.2)(typescript@5.6.3))(rolldown@1.0.0-beta.9)(rollup@4.53.2) @@ -50849,7 +50850,7 @@ snapshots: q@1.5.1: {} - qified@0.5.1: + qified@0.5.2: dependencies: hookified: 1.13.0 @@ -52526,11 +52527,11 @@ snapshots: strip-outer@2.0.0: {} - stripe@18.5.0(@types/node@22.19.0): + stripe@18.5.0(@types/node@22.19.1): dependencies: qs: 6.14.0 optionalDependencies: - '@types/node': 22.19.0 + '@types/node': 22.19.1 strnum@1.1.2: {} @@ -52731,7 +52732,7 @@ snapshots: dependencies: commander: 6.2.1 globby: 11.1.0 - js-yaml: 4.1.0 + js-yaml: 4.1.1 multilang-extract-comments: 0.4.0 promise.any: 2.0.6 @@ -53078,12 +53079,12 @@ snapshots: ts-interface-checker@0.1.13: {} - ts-jest@29.4.5(@babel/core@7.28.5)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.28.5))(jest-util@29.7.0)(jest@29.7.0(@types/node@20.19.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.24)(typescript@5.6.3)))(typescript@5.6.3): + ts-jest@29.4.5(@babel/core@7.28.5)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.28.5))(jest-util@29.7.0)(jest@29.7.0(@types/node@20.19.25)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.25)(typescript@5.6.3)))(typescript@5.6.3): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 handlebars: 4.7.8 - jest: 29.7.0(@types/node@20.19.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.24)(typescript@5.6.3)) + jest: 29.7.0(@types/node@20.19.25)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.25)(typescript@5.6.3)) json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 @@ -53098,12 +53099,12 @@ snapshots: babel-jest: 29.7.0(@babel/core@7.28.5) jest-util: 29.7.0 - ts-jest@29.4.5(@babel/core@8.0.0-beta.3)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@8.0.0-beta.3))(jest-util@29.7.0)(jest@29.7.0(@types/node@20.19.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.24)(typescript@5.6.3)))(typescript@5.6.3): + ts-jest@29.4.5(@babel/core@8.0.0-beta.3)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@8.0.0-beta.3))(jest-util@29.7.0)(jest@29.7.0(@types/node@20.19.25)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.25)(typescript@5.6.3)))(typescript@5.6.3): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 handlebars: 4.7.8 - jest: 29.7.0(@types/node@20.19.24)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.24)(typescript@5.6.3)) + jest: 29.7.0(@types/node@20.19.25)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.19.25)(typescript@5.6.3)) json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 @@ -53118,14 +53119,14 @@ snapshots: babel-jest: 29.7.0(@babel/core@8.0.0-beta.3) jest-util: 29.7.0 - ts-node@10.9.2(@types/node@20.19.24)(typescript@5.6.3): + ts-node@10.9.2(@types/node@20.19.25)(typescript@5.6.3): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 20.19.24 + '@types/node': 20.19.25 acorn: 8.15.0 acorn-walk: 8.3.4 arg: 4.1.3 @@ -53137,14 +53138,14 @@ snapshots: yn: 3.1.1 optional: true - ts-node@10.9.2(@types/node@22.19.0)(typescript@3.9.10): + ts-node@10.9.2(@types/node@22.19.1)(typescript@3.9.10): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 22.19.0 + '@types/node': 22.19.1 acorn: 8.15.0 acorn-walk: 8.3.4 arg: 4.1.3 @@ -53156,14 +53157,14 @@ snapshots: yn: 3.1.1 optional: true - ts-node@10.9.2(@types/node@22.19.0)(typescript@5.6.3): + ts-node@10.9.2(@types/node@22.19.1)(typescript@5.6.3): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 22.19.0 + '@types/node': 22.19.1 acorn: 8.15.0 acorn-walk: 8.3.4 arg: 4.1.3 @@ -53263,7 +53264,7 @@ snapshots: tsutils: 2.29.0(typescript@5.9.3) typescript: 5.9.3 - tsup@8.5.0(@microsoft/api-extractor@7.54.0(@types/node@20.19.24))(jiti@2.6.1)(postcss@8.5.6)(tsx@4.20.6)(typescript@5.6.3)(yaml@2.8.1): + tsup@8.5.0(@microsoft/api-extractor@7.55.0(@types/node@20.19.25))(jiti@2.6.1)(postcss@8.5.6)(tsx@4.20.6)(typescript@5.6.3)(yaml@2.8.1): dependencies: bundle-require: 5.1.0(esbuild@0.25.12) cac: 6.7.14 @@ -53283,7 +53284,7 @@ snapshots: tinyglobby: 0.2.15 tree-kill: 1.2.2 optionalDependencies: - '@microsoft/api-extractor': 7.54.0(@types/node@20.19.24) + '@microsoft/api-extractor': 7.55.0(@types/node@20.19.25) postcss: 8.5.6 typescript: 5.6.3 transitivePeerDependencies: @@ -53292,7 +53293,7 @@ snapshots: - tsx - yaml - tsup@8.5.0(@microsoft/api-extractor@7.54.0(@types/node@22.19.0))(jiti@2.6.1)(postcss@8.5.6)(tsx@4.20.6)(typescript@5.6.3)(yaml@2.8.1): + tsup@8.5.0(@microsoft/api-extractor@7.55.0(@types/node@22.19.1))(jiti@2.6.1)(postcss@8.5.6)(tsx@4.20.6)(typescript@5.6.3)(yaml@2.8.1): dependencies: bundle-require: 5.1.0(esbuild@0.25.12) cac: 6.7.14 @@ -53312,7 +53313,7 @@ snapshots: tinyglobby: 0.2.15 tree-kill: 1.2.2 optionalDependencies: - '@microsoft/api-extractor': 7.54.0(@types/node@22.19.0) + '@microsoft/api-extractor': 7.55.0(@types/node@22.19.1) postcss: 8.5.6 typescript: 5.6.3 transitivePeerDependencies: @@ -53940,7 +53941,7 @@ snapshots: '@types/unist': 3.0.3 vfile-message: 4.0.3 - viem@2.38.6(typescript@5.9.3)(zod@4.1.12): + viem@2.39.0(typescript@5.9.3)(zod@4.1.12): dependencies: '@noble/curves': 1.9.1 '@noble/hashes': 1.8.0 @@ -53967,9 +53968,9 @@ snapshots: transitivePeerDependencies: - debug - vite-plugin-dts@4.5.4(@types/node@22.19.0)(rollup@4.53.2)(typescript@5.9.3)(vite@5.4.21(@types/node@22.19.0)): + vite-plugin-dts@4.5.4(@types/node@22.19.1)(rollup@4.53.2)(typescript@5.9.3)(vite@5.4.21(@types/node@22.19.1)): dependencies: - '@microsoft/api-extractor': 7.54.0(@types/node@22.19.0) + '@microsoft/api-extractor': 7.55.0(@types/node@22.19.1) '@rollup/pluginutils': 5.3.0(rollup@4.53.2) '@volar/typescript': 2.4.23 '@vue/language-core': 2.2.0(typescript@5.9.3) @@ -53980,19 +53981,19 @@ snapshots: magic-string: 0.30.21 typescript: 5.9.3 optionalDependencies: - vite: 5.4.21(@types/node@22.19.0) + vite: 5.4.21(@types/node@22.19.1) transitivePeerDependencies: - '@types/node' - rollup - supports-color - vite@5.4.21(@types/node@22.19.0): + vite@5.4.21(@types/node@22.19.1): dependencies: esbuild: 0.21.5 postcss: 8.5.6 rollup: 4.53.2 optionalDependencies: - '@types/node': 22.19.0 + '@types/node': 22.19.1 fsevents: 2.3.3 vscode-uri@3.1.0: {}