@n8n/i18n 1.10.2 → 1.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +50 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +48 -0
- package/dist/index.d.ts +48 -0
- package/dist/index.js +50 -2
- package/dist/index.js.map +1 -1
- package/dist/types.d.cts +50 -2
- package/dist/types.d.ts +50 -2
- package/package.json +3 -3
package/dist/types.d.cts
CHANGED
|
@@ -111,6 +111,7 @@ var englishBaseText = {
|
|
|
111
111
|
"generic.rename": "Rename",
|
|
112
112
|
"generic.missing.permissions": "Missing permissions to perform this action",
|
|
113
113
|
"generic.shortcutHint": "Or press",
|
|
114
|
+
"generic.unknownError": "An unknown error occurred",
|
|
114
115
|
"generic.upgradeToEnterprise": "Upgrade to Enterprise",
|
|
115
116
|
"generic.never": "Never",
|
|
116
117
|
"about.aboutN8n": "About n8n",
|
|
@@ -1166,6 +1167,8 @@ var englishBaseText = {
|
|
|
1166
1167
|
"ndv.input.noOutputData.hint.tooltip": "From the earliest node which is unexecuted, or is executed but has since been changed",
|
|
1167
1168
|
"ndv.input.noOutputData.schemaPreviewHint": "switch to {schema} to use the schema preview",
|
|
1168
1169
|
"ndv.input.noOutputData.or": "or",
|
|
1170
|
+
"ndv.input.noOutputData.embeddedNdv.link": "Execute previous nodes",
|
|
1171
|
+
"ndv.input.noOutputData.embeddedNdv.description": "{link} to use their data here",
|
|
1169
1172
|
"ndv.input.executingPrevious": "Executing previous nodes...",
|
|
1170
1173
|
"ndv.input.notConnected.title": "Wire me up",
|
|
1171
1174
|
"ndv.input.notConnected.v2.title": "No input connected",
|
|
@@ -1401,6 +1404,8 @@ var englishBaseText = {
|
|
|
1401
1404
|
"nodeCreator.nodeItem.triggerIconTitle": "Trigger Node",
|
|
1402
1405
|
"nodeCreator.nodeItem.aiIconTitle": "LangChain AI Node",
|
|
1403
1406
|
"nodeCreator.nodeItem.deprecated": "Deprecated",
|
|
1407
|
+
"nodeCreator.preBuiltAgents.title": "Pre-built agents",
|
|
1408
|
+
"nodeCreator.preBuiltAgents.description": "Get started faster with ready to go agents",
|
|
1404
1409
|
"nodeCredentials.createNew": "Create new credential",
|
|
1405
1410
|
"nodeCredentials.credentialFor": "Credential for {credentialType}",
|
|
1406
1411
|
"nodeCredentials.credentialsLabel": "Credential to connect with",
|
|
@@ -2498,6 +2503,18 @@ var englishBaseText = {
|
|
|
2498
2503
|
"workflowDetails.active": "Active",
|
|
2499
2504
|
"workflowDetails.addTag": "Add tag",
|
|
2500
2505
|
"workflowDetails.chooseOrCreateATag": "Choose or create a tag",
|
|
2506
|
+
"workflowProductionChecklist.title": "Production Checklist",
|
|
2507
|
+
"workflowProductionChecklist.readOnlyNotice": "Read-only environment. Update these items in development and push changes.",
|
|
2508
|
+
"workflowProductionChecklist.ignoreAllConfirmation.title": "Ignore suggested actions globally",
|
|
2509
|
+
"workflowProductionChecklist.ignoreAllConfirmation.description": "Turning this off dismisses these suggestions from every workflow",
|
|
2510
|
+
"workflowProductionChecklist.ignoreAllConfirmation.confirm": "Ignore for all workflows",
|
|
2511
|
+
"workflowProductionChecklist.turnOffWorkflowSuggestions": "Ignore for all workflows",
|
|
2512
|
+
"workflowProductionChecklist.evaluations.title": "Test reliability of AI steps",
|
|
2513
|
+
"workflowProductionChecklist.evaluations.description": "Use evaluations to check performance on a range of inputs.",
|
|
2514
|
+
"workflowProductionChecklist.errorWorkflow.title": "Set up error notifications",
|
|
2515
|
+
"workflowProductionChecklist.errorWorkflow.description": "Customize exactly how you’re notified by setting up an error workflow",
|
|
2516
|
+
"workflowProductionChecklist.timeSaved.title": "Track time saved",
|
|
2517
|
+
"workflowProductionChecklist.timeSaved.description": "Configure the time saved on each run to track the manual work it saves.",
|
|
2501
2518
|
"workflowExtraction.error.failure": "Sub-workflow conversion failed",
|
|
2502
2519
|
"workflowExtraction.error.selectionGraph.inputEdgeToNonRoot": "Non-input node '{node}' has a connection from a node outside the current selection.",
|
|
2503
2520
|
"workflowExtraction.error.selectionGraph.outputEdgeFromNonLeaf": "Non-output node '{node}' has a connection to a node outside the current selection.",
|
|
@@ -2552,7 +2569,7 @@ var englishBaseText = {
|
|
|
2552
2569
|
"workflowSettings.callerPolicy.options.none": "No other workflows",
|
|
2553
2570
|
"workflowSettings.defaultTimezone": "Default - {defaultTimezoneValue}",
|
|
2554
2571
|
"workflowSettings.defaultTimezoneNotValid": "Default Timezone not valid",
|
|
2555
|
-
"workflowSettings.errorWorkflow": "Error Workflow",
|
|
2572
|
+
"workflowSettings.errorWorkflow": "Error Workflow (to notify when this one errors)",
|
|
2556
2573
|
"workflowSettings.executionOrder": "Execution Order",
|
|
2557
2574
|
"workflowSettings.helpTexts.errorWorkflow": "A second workflow to run if the current one fails.<br />The second workflow should have an 'Error Trigger' node.",
|
|
2558
2575
|
"workflowSettings.helpTexts.executionTimeout": "How long the workflow should wait before timing out",
|
|
@@ -2651,6 +2668,14 @@ var englishBaseText = {
|
|
|
2651
2668
|
"workflows.item.readonly": "Read only",
|
|
2652
2669
|
"workflows.item.archived": "Archived",
|
|
2653
2670
|
"workflows.itemSuggestion.try": "Try template",
|
|
2671
|
+
"workflows.templateRecoV2.starterTemplates": "Starter templates",
|
|
2672
|
+
"workflows.templateRecoV2.seeMoreStarterTemplates": "See more starter templates",
|
|
2673
|
+
"workflows.templateRecoV2.popularTemplates": "Popular templates",
|
|
2674
|
+
"workflows.templateRecoV2.seeMorePopularTemplates": "See more popular templates",
|
|
2675
|
+
"workflows.templateRecoV2.tutorials": "Tutorials",
|
|
2676
|
+
"workflows.templateRecoV2.loadingTemplates": "Loading templates...",
|
|
2677
|
+
"workflows.templateRecoV2.useTemplate": "Use template",
|
|
2678
|
+
"workflows.templateRecoV2.exploreTemplates": "Or explore templates to get inspired and learn fast:",
|
|
2654
2679
|
"workflows.search.placeholder": "Search",
|
|
2655
2680
|
"workflows.filters": "Filters",
|
|
2656
2681
|
"workflows.filters.tags": "Tags",
|
|
@@ -2729,6 +2754,8 @@ var englishBaseText = {
|
|
|
2729
2754
|
"workflows.readyToRunWorkflows.cta": "Run a workflow",
|
|
2730
2755
|
"workflows.readyToRunWorkflows.folder.name": "🚀 Ready-to-run workflows",
|
|
2731
2756
|
"workflows.readyToRunWorkflows.error": "Error loading n8n collection. Please try again later.",
|
|
2757
|
+
"workflows.archivedOnly.hint": "Archived workflows are hidden in this view. {link}",
|
|
2758
|
+
"workflows.archivedOnly.hint.link": "Update filters",
|
|
2732
2759
|
"workflowSelectorParameterInput.createNewSubworkflow.name": "My Sub-Workflow",
|
|
2733
2760
|
"importCurlModal.title": "Import cURL command",
|
|
2734
2761
|
"importCurlModal.input.label": "cURL Command",
|
|
@@ -2821,6 +2848,16 @@ var englishBaseText = {
|
|
|
2821
2848
|
"dataStore.sort.nameDesc": "Sort by name (Z-A)",
|
|
2822
2849
|
"dataStore.search.placeholder": "Search",
|
|
2823
2850
|
"dataStore.error.fetching": "Error loading data stores",
|
|
2851
|
+
"dataStore.add.title": "Create data store",
|
|
2852
|
+
"dataStore.add.description": "Set up a new data store to organize and manage your data.",
|
|
2853
|
+
"dataStore.add.button.label": "Create Data Store",
|
|
2854
|
+
"dataStore.add.input.name.label": "Data Store Name",
|
|
2855
|
+
"dataStore.add.input.name.placeholder": "Enter data store name",
|
|
2856
|
+
"dataStore.add.error": "Error creating data store",
|
|
2857
|
+
"dataStore.delete.confirm.title": "Delete data store",
|
|
2858
|
+
"dataStore.delete.confirm.message": "Are you sure you want to delete the data store \"{name}\"? This action cannot be undone.",
|
|
2859
|
+
"dataStore.delete.error": "Error deleting data store",
|
|
2860
|
+
"dataStore.rename.error": "Error renaming data store",
|
|
2824
2861
|
"settings.ldap": "LDAP",
|
|
2825
2862
|
"settings.ldap.note": "LDAP allows users to authenticate with their centralized account. It's compatible with services that provide an LDAP interface like Active Directory, Okta and Jumpcloud.",
|
|
2826
2863
|
"settings.ldap.infoTip": "Learn more about <a href='https://docs.n8n.io/user-management/ldap/' target='_blank'>LDAP in the Docs</a>",
|
|
@@ -3275,6 +3312,7 @@ var englishBaseText = {
|
|
|
3275
3312
|
"evaluation.executions.toast.addedTo.title": "Execution added to test ",
|
|
3276
3313
|
"evaluation.executions.toast.closeTab": "Close this tab",
|
|
3277
3314
|
"evaluation.executions.toast.removedFrom.title": "Execution removed from test ",
|
|
3315
|
+
"evaluations.readOnlyNotice": "Evaluations can't be built in read-only mode. Build your evaluation on your development environment.",
|
|
3278
3316
|
"evaluations.paywall.title": "Register to enable evaluation",
|
|
3279
3317
|
"evaluations.paywall.description": "Register your Community instance to unlock the evaluation feature",
|
|
3280
3318
|
"evaluations.paywall.cta": "Register instance",
|
|
@@ -3361,7 +3399,17 @@ var englishBaseText = {
|
|
|
3361
3399
|
"whatsNew.versionsBehind": "{count} version behind | {count} versions behind",
|
|
3362
3400
|
"whatsNew.update": "Update",
|
|
3363
3401
|
"whatsNew.updateAvailable": "You're currently on version {currentVersion}. Update to {latestVersion} to get {count} versions worth of new features, improvements, and fixes. See what changed",
|
|
3364
|
-
"whatsNew.updateAvailable.changelogLink": "in the full changelog"
|
|
3402
|
+
"whatsNew.updateAvailable.changelogLink": "in the full changelog",
|
|
3403
|
+
"workflowDiff.changes": "Changes",
|
|
3404
|
+
"workflowDiff.nodes": "Nodes",
|
|
3405
|
+
"workflowDiff.connectors": "Connectors",
|
|
3406
|
+
"workflowDiff.settings": "Settings",
|
|
3407
|
+
"workflowDiff.local": "Local",
|
|
3408
|
+
"workflowDiff.remote": "Remote ({branchName})",
|
|
3409
|
+
"workflowDiff.noChanges": "No changes",
|
|
3410
|
+
"workflowDiff.deletedWorkflow": "Deleted workflow",
|
|
3411
|
+
"workflowDiff.deletedWorkflow.database": "The workflow was deleted on the database",
|
|
3412
|
+
"workflowDiff.deletedWorkflow.remote": "The workflow was deleted on remote"
|
|
3365
3413
|
};
|
|
3366
3414
|
|
|
3367
3415
|
type GetBaseTextKey<T> = T extends `_${string}` ? never : T;
|
package/dist/types.d.ts
CHANGED
|
@@ -111,6 +111,7 @@ var englishBaseText = {
|
|
|
111
111
|
"generic.rename": "Rename",
|
|
112
112
|
"generic.missing.permissions": "Missing permissions to perform this action",
|
|
113
113
|
"generic.shortcutHint": "Or press",
|
|
114
|
+
"generic.unknownError": "An unknown error occurred",
|
|
114
115
|
"generic.upgradeToEnterprise": "Upgrade to Enterprise",
|
|
115
116
|
"generic.never": "Never",
|
|
116
117
|
"about.aboutN8n": "About n8n",
|
|
@@ -1166,6 +1167,8 @@ var englishBaseText = {
|
|
|
1166
1167
|
"ndv.input.noOutputData.hint.tooltip": "From the earliest node which is unexecuted, or is executed but has since been changed",
|
|
1167
1168
|
"ndv.input.noOutputData.schemaPreviewHint": "switch to {schema} to use the schema preview",
|
|
1168
1169
|
"ndv.input.noOutputData.or": "or",
|
|
1170
|
+
"ndv.input.noOutputData.embeddedNdv.link": "Execute previous nodes",
|
|
1171
|
+
"ndv.input.noOutputData.embeddedNdv.description": "{link} to use their data here",
|
|
1169
1172
|
"ndv.input.executingPrevious": "Executing previous nodes...",
|
|
1170
1173
|
"ndv.input.notConnected.title": "Wire me up",
|
|
1171
1174
|
"ndv.input.notConnected.v2.title": "No input connected",
|
|
@@ -1401,6 +1404,8 @@ var englishBaseText = {
|
|
|
1401
1404
|
"nodeCreator.nodeItem.triggerIconTitle": "Trigger Node",
|
|
1402
1405
|
"nodeCreator.nodeItem.aiIconTitle": "LangChain AI Node",
|
|
1403
1406
|
"nodeCreator.nodeItem.deprecated": "Deprecated",
|
|
1407
|
+
"nodeCreator.preBuiltAgents.title": "Pre-built agents",
|
|
1408
|
+
"nodeCreator.preBuiltAgents.description": "Get started faster with ready to go agents",
|
|
1404
1409
|
"nodeCredentials.createNew": "Create new credential",
|
|
1405
1410
|
"nodeCredentials.credentialFor": "Credential for {credentialType}",
|
|
1406
1411
|
"nodeCredentials.credentialsLabel": "Credential to connect with",
|
|
@@ -2498,6 +2503,18 @@ var englishBaseText = {
|
|
|
2498
2503
|
"workflowDetails.active": "Active",
|
|
2499
2504
|
"workflowDetails.addTag": "Add tag",
|
|
2500
2505
|
"workflowDetails.chooseOrCreateATag": "Choose or create a tag",
|
|
2506
|
+
"workflowProductionChecklist.title": "Production Checklist",
|
|
2507
|
+
"workflowProductionChecklist.readOnlyNotice": "Read-only environment. Update these items in development and push changes.",
|
|
2508
|
+
"workflowProductionChecklist.ignoreAllConfirmation.title": "Ignore suggested actions globally",
|
|
2509
|
+
"workflowProductionChecklist.ignoreAllConfirmation.description": "Turning this off dismisses these suggestions from every workflow",
|
|
2510
|
+
"workflowProductionChecklist.ignoreAllConfirmation.confirm": "Ignore for all workflows",
|
|
2511
|
+
"workflowProductionChecklist.turnOffWorkflowSuggestions": "Ignore for all workflows",
|
|
2512
|
+
"workflowProductionChecklist.evaluations.title": "Test reliability of AI steps",
|
|
2513
|
+
"workflowProductionChecklist.evaluations.description": "Use evaluations to check performance on a range of inputs.",
|
|
2514
|
+
"workflowProductionChecklist.errorWorkflow.title": "Set up error notifications",
|
|
2515
|
+
"workflowProductionChecklist.errorWorkflow.description": "Customize exactly how you’re notified by setting up an error workflow",
|
|
2516
|
+
"workflowProductionChecklist.timeSaved.title": "Track time saved",
|
|
2517
|
+
"workflowProductionChecklist.timeSaved.description": "Configure the time saved on each run to track the manual work it saves.",
|
|
2501
2518
|
"workflowExtraction.error.failure": "Sub-workflow conversion failed",
|
|
2502
2519
|
"workflowExtraction.error.selectionGraph.inputEdgeToNonRoot": "Non-input node '{node}' has a connection from a node outside the current selection.",
|
|
2503
2520
|
"workflowExtraction.error.selectionGraph.outputEdgeFromNonLeaf": "Non-output node '{node}' has a connection to a node outside the current selection.",
|
|
@@ -2552,7 +2569,7 @@ var englishBaseText = {
|
|
|
2552
2569
|
"workflowSettings.callerPolicy.options.none": "No other workflows",
|
|
2553
2570
|
"workflowSettings.defaultTimezone": "Default - {defaultTimezoneValue}",
|
|
2554
2571
|
"workflowSettings.defaultTimezoneNotValid": "Default Timezone not valid",
|
|
2555
|
-
"workflowSettings.errorWorkflow": "Error Workflow",
|
|
2572
|
+
"workflowSettings.errorWorkflow": "Error Workflow (to notify when this one errors)",
|
|
2556
2573
|
"workflowSettings.executionOrder": "Execution Order",
|
|
2557
2574
|
"workflowSettings.helpTexts.errorWorkflow": "A second workflow to run if the current one fails.<br />The second workflow should have an 'Error Trigger' node.",
|
|
2558
2575
|
"workflowSettings.helpTexts.executionTimeout": "How long the workflow should wait before timing out",
|
|
@@ -2651,6 +2668,14 @@ var englishBaseText = {
|
|
|
2651
2668
|
"workflows.item.readonly": "Read only",
|
|
2652
2669
|
"workflows.item.archived": "Archived",
|
|
2653
2670
|
"workflows.itemSuggestion.try": "Try template",
|
|
2671
|
+
"workflows.templateRecoV2.starterTemplates": "Starter templates",
|
|
2672
|
+
"workflows.templateRecoV2.seeMoreStarterTemplates": "See more starter templates",
|
|
2673
|
+
"workflows.templateRecoV2.popularTemplates": "Popular templates",
|
|
2674
|
+
"workflows.templateRecoV2.seeMorePopularTemplates": "See more popular templates",
|
|
2675
|
+
"workflows.templateRecoV2.tutorials": "Tutorials",
|
|
2676
|
+
"workflows.templateRecoV2.loadingTemplates": "Loading templates...",
|
|
2677
|
+
"workflows.templateRecoV2.useTemplate": "Use template",
|
|
2678
|
+
"workflows.templateRecoV2.exploreTemplates": "Or explore templates to get inspired and learn fast:",
|
|
2654
2679
|
"workflows.search.placeholder": "Search",
|
|
2655
2680
|
"workflows.filters": "Filters",
|
|
2656
2681
|
"workflows.filters.tags": "Tags",
|
|
@@ -2729,6 +2754,8 @@ var englishBaseText = {
|
|
|
2729
2754
|
"workflows.readyToRunWorkflows.cta": "Run a workflow",
|
|
2730
2755
|
"workflows.readyToRunWorkflows.folder.name": "🚀 Ready-to-run workflows",
|
|
2731
2756
|
"workflows.readyToRunWorkflows.error": "Error loading n8n collection. Please try again later.",
|
|
2757
|
+
"workflows.archivedOnly.hint": "Archived workflows are hidden in this view. {link}",
|
|
2758
|
+
"workflows.archivedOnly.hint.link": "Update filters",
|
|
2732
2759
|
"workflowSelectorParameterInput.createNewSubworkflow.name": "My Sub-Workflow",
|
|
2733
2760
|
"importCurlModal.title": "Import cURL command",
|
|
2734
2761
|
"importCurlModal.input.label": "cURL Command",
|
|
@@ -2821,6 +2848,16 @@ var englishBaseText = {
|
|
|
2821
2848
|
"dataStore.sort.nameDesc": "Sort by name (Z-A)",
|
|
2822
2849
|
"dataStore.search.placeholder": "Search",
|
|
2823
2850
|
"dataStore.error.fetching": "Error loading data stores",
|
|
2851
|
+
"dataStore.add.title": "Create data store",
|
|
2852
|
+
"dataStore.add.description": "Set up a new data store to organize and manage your data.",
|
|
2853
|
+
"dataStore.add.button.label": "Create Data Store",
|
|
2854
|
+
"dataStore.add.input.name.label": "Data Store Name",
|
|
2855
|
+
"dataStore.add.input.name.placeholder": "Enter data store name",
|
|
2856
|
+
"dataStore.add.error": "Error creating data store",
|
|
2857
|
+
"dataStore.delete.confirm.title": "Delete data store",
|
|
2858
|
+
"dataStore.delete.confirm.message": "Are you sure you want to delete the data store \"{name}\"? This action cannot be undone.",
|
|
2859
|
+
"dataStore.delete.error": "Error deleting data store",
|
|
2860
|
+
"dataStore.rename.error": "Error renaming data store",
|
|
2824
2861
|
"settings.ldap": "LDAP",
|
|
2825
2862
|
"settings.ldap.note": "LDAP allows users to authenticate with their centralized account. It's compatible with services that provide an LDAP interface like Active Directory, Okta and Jumpcloud.",
|
|
2826
2863
|
"settings.ldap.infoTip": "Learn more about <a href='https://docs.n8n.io/user-management/ldap/' target='_blank'>LDAP in the Docs</a>",
|
|
@@ -3275,6 +3312,7 @@ var englishBaseText = {
|
|
|
3275
3312
|
"evaluation.executions.toast.addedTo.title": "Execution added to test ",
|
|
3276
3313
|
"evaluation.executions.toast.closeTab": "Close this tab",
|
|
3277
3314
|
"evaluation.executions.toast.removedFrom.title": "Execution removed from test ",
|
|
3315
|
+
"evaluations.readOnlyNotice": "Evaluations can't be built in read-only mode. Build your evaluation on your development environment.",
|
|
3278
3316
|
"evaluations.paywall.title": "Register to enable evaluation",
|
|
3279
3317
|
"evaluations.paywall.description": "Register your Community instance to unlock the evaluation feature",
|
|
3280
3318
|
"evaluations.paywall.cta": "Register instance",
|
|
@@ -3361,7 +3399,17 @@ var englishBaseText = {
|
|
|
3361
3399
|
"whatsNew.versionsBehind": "{count} version behind | {count} versions behind",
|
|
3362
3400
|
"whatsNew.update": "Update",
|
|
3363
3401
|
"whatsNew.updateAvailable": "You're currently on version {currentVersion}. Update to {latestVersion} to get {count} versions worth of new features, improvements, and fixes. See what changed",
|
|
3364
|
-
"whatsNew.updateAvailable.changelogLink": "in the full changelog"
|
|
3402
|
+
"whatsNew.updateAvailable.changelogLink": "in the full changelog",
|
|
3403
|
+
"workflowDiff.changes": "Changes",
|
|
3404
|
+
"workflowDiff.nodes": "Nodes",
|
|
3405
|
+
"workflowDiff.connectors": "Connectors",
|
|
3406
|
+
"workflowDiff.settings": "Settings",
|
|
3407
|
+
"workflowDiff.local": "Local",
|
|
3408
|
+
"workflowDiff.remote": "Remote ({branchName})",
|
|
3409
|
+
"workflowDiff.noChanges": "No changes",
|
|
3410
|
+
"workflowDiff.deletedWorkflow": "Deleted workflow",
|
|
3411
|
+
"workflowDiff.deletedWorkflow.database": "The workflow was deleted on the database",
|
|
3412
|
+
"workflowDiff.deletedWorkflow.remote": "The workflow was deleted on remote"
|
|
3365
3413
|
};
|
|
3366
3414
|
|
|
3367
3415
|
type GetBaseTextKey<T> = T extends `_${string}` ? never : T;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@n8n/i18n",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.11.0",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
7
7
|
"LICENSE.md",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"vue-i18n": "^11.1.2",
|
|
27
|
-
"n8n-workflow": "1.
|
|
27
|
+
"n8n-workflow": "1.104.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@testing-library/jest-dom": "^6.6.3",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"@vueuse/core": "^10.11.0",
|
|
36
36
|
"vue": "^3.5.13",
|
|
37
37
|
"tsup": "^8.5.0",
|
|
38
|
-
"typescript": "5.
|
|
38
|
+
"typescript": "5.9.2",
|
|
39
39
|
"vite": "^6.3.5",
|
|
40
40
|
"vitest": "^3.1.3",
|
|
41
41
|
"vue-tsc": "^2.2.8",
|