@n8n-as-code/skills 1.1.4 → 1.1.6-next.11

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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "generatedAt": "2026-03-17T20:01:49.138Z",
2
+ "generatedAt": "2026-03-24T17:22:03.311Z",
3
3
  "sourceFileCount": 653,
4
4
  "scanDirectories": [
5
5
  "/home/runner/work/n8n-as-code/n8n-as-code/.n8n-cache/packages/nodes-base/dist/nodes",
@@ -13035,7 +13035,8 @@
13035
13035
  "version": [
13036
13036
  1,
13037
13037
  2,
13038
- 2.1
13038
+ 2.1,
13039
+ 2.2
13039
13040
  ],
13040
13041
  "properties": [
13041
13042
  {
@@ -33939,8 +33940,27 @@
33939
33940
  "group": [
33940
33941
  "output"
33941
33942
  ],
33942
- "version": 1,
33943
+ "version": [
33944
+ 1,
33945
+ 1.1
33946
+ ],
33943
33947
  "properties": [
33948
+ {
33949
+ "displayName": "Authentication",
33950
+ "name": "authentication",
33951
+ "type": "options",
33952
+ "options": [
33953
+ {
33954
+ "name": "Username & Password",
33955
+ "value": "usernamePassword"
33956
+ },
33957
+ {
33958
+ "name": "Database Token",
33959
+ "value": "databaseToken"
33960
+ }
33961
+ ],
33962
+ "default": "usernamePassword"
33963
+ },
33944
33964
  {
33945
33965
  "displayName": "Resource",
33946
33966
  "name": "resource",
@@ -33967,6 +33987,24 @@
33967
33987
  }
33968
33988
  },
33969
33989
  "options": [
33990
+ {
33991
+ "name": "Batch Create",
33992
+ "value": "batchCreate",
33993
+ "description": "Create up to 200 rows in one request",
33994
+ "action": "Create multiple rows"
33995
+ },
33996
+ {
33997
+ "name": "Batch Delete",
33998
+ "value": "batchDelete",
33999
+ "description": "Delete up to 200 rows in one request",
34000
+ "action": "Delete multiple rows"
34001
+ },
34002
+ {
34003
+ "name": "Batch Update",
34004
+ "value": "batchUpdate",
34005
+ "description": "Update up to 200 rows in one request",
34006
+ "action": "Update multiple rows"
34007
+ },
33970
34008
  {
33971
34009
  "name": "Create",
33972
34010
  "value": "create",
@@ -34004,11 +34042,18 @@
34004
34042
  "displayName": "Database Name or ID",
34005
34043
  "name": "databaseId",
34006
34044
  "type": "options",
34007
- "default": "",
34045
+ "default": "0",
34008
34046
  "required": true,
34009
34047
  "description": "Database to operate on. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.",
34010
34048
  "typeOptions": {
34011
34049
  "loadOptionsMethod": "getDatabaseIds"
34050
+ },
34051
+ "displayOptions": {
34052
+ "hide": {
34053
+ "authentication": [
34054
+ "databaseToken"
34055
+ ]
34056
+ }
34012
34057
  }
34013
34058
  },
34014
34059
  {
@@ -34075,7 +34120,9 @@
34075
34120
  "show": {
34076
34121
  "operation": [
34077
34122
  "create",
34078
- "update"
34123
+ "update",
34124
+ "batchCreate",
34125
+ "batchUpdate"
34079
34126
  ]
34080
34127
  }
34081
34128
  },
@@ -34090,7 +34137,9 @@
34090
34137
  "show": {
34091
34138
  "operation": [
34092
34139
  "create",
34093
- "update"
34140
+ "update",
34141
+ "batchCreate",
34142
+ "batchUpdate"
34094
34143
  ],
34095
34144
  "dataToSend": [
34096
34145
  "autoMapInputData"
@@ -34150,6 +34199,113 @@
34150
34199
  }
34151
34200
  ]
34152
34201
  },
34202
+ {
34203
+ "displayName": "Rows",
34204
+ "name": "rowsUi",
34205
+ "type": "fixedCollection",
34206
+ "typeOptions": {
34207
+ "multipleValues": true
34208
+ },
34209
+ "placeholder": "Add Row",
34210
+ "displayOptions": {
34211
+ "show": {
34212
+ "operation": [
34213
+ "batchCreate",
34214
+ "batchUpdate"
34215
+ ],
34216
+ "dataToSend": [
34217
+ "defineBelow"
34218
+ ]
34219
+ }
34220
+ },
34221
+ "default": [],
34222
+ "options": [
34223
+ {
34224
+ "name": "rowValues",
34225
+ "displayName": "Row",
34226
+ "values": [
34227
+ {
34228
+ "displayName": "Row ID",
34229
+ "name": "id",
34230
+ "type": "string",
34231
+ "displayOptions": {
34232
+ "show": {
34233
+ "/operation": [
34234
+ "batchUpdate"
34235
+ ]
34236
+ }
34237
+ },
34238
+ "default": "",
34239
+ "required": true,
34240
+ "description": "Row ID to update (required for batch update)"
34241
+ },
34242
+ {
34243
+ "displayName": "Fields",
34244
+ "name": "fieldsUi",
34245
+ "type": "fixedCollection",
34246
+ "typeOptions": {
34247
+ "multipleValues": true,
34248
+ "multipleValueButtonText": "Add Field"
34249
+ },
34250
+ "default": {},
34251
+ "options": [
34252
+ {
34253
+ "name": "fieldValues",
34254
+ "displayName": "Field",
34255
+ "values": [
34256
+ {
34257
+ "displayName": "Field Name or ID",
34258
+ "name": "fieldId",
34259
+ "type": "options",
34260
+ "description": "Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>",
34261
+ "typeOptions": {
34262
+ "loadOptionsDependsOn": [
34263
+ "tableId"
34264
+ ],
34265
+ "loadOptionsMethod": "getTableFields"
34266
+ },
34267
+ "default": ""
34268
+ },
34269
+ {
34270
+ "displayName": "Field Value",
34271
+ "name": "fieldValue",
34272
+ "type": "string",
34273
+ "default": ""
34274
+ }
34275
+ ]
34276
+ }
34277
+ ]
34278
+ }
34279
+ ]
34280
+ }
34281
+ ]
34282
+ },
34283
+ {
34284
+ "displayName": "Data to Send",
34285
+ "name": "dataToSend",
34286
+ "type": "options",
34287
+ "options": [
34288
+ {
34289
+ "name": "Auto-Map Input Data",
34290
+ "value": "autoMapInputData",
34291
+ "description": "Collect row IDs from input items automatically"
34292
+ },
34293
+ {
34294
+ "name": "Define Below",
34295
+ "value": "defineBelow",
34296
+ "description": "Manually specify row IDs"
34297
+ }
34298
+ ],
34299
+ "displayOptions": {
34300
+ "show": {
34301
+ "operation": [
34302
+ "batchDelete"
34303
+ ]
34304
+ }
34305
+ },
34306
+ "default": "defineBelow",
34307
+ "description": "Choose whether to manually enter row IDs or map them from input data"
34308
+ },
34153
34309
  {
34154
34310
  "displayName": "Row ID",
34155
34311
  "name": "rowId",
@@ -34165,6 +34321,44 @@
34165
34321
  "required": true,
34166
34322
  "description": "ID of the row to delete"
34167
34323
  },
34324
+ {
34325
+ "displayName": "Row IDs",
34326
+ "name": "rowIds",
34327
+ "type": "string",
34328
+ "typeOptions": {
34329
+ "multipleValues": true
34330
+ },
34331
+ "default": [],
34332
+ "placeholder": "Add Row ID",
34333
+ "displayOptions": {
34334
+ "show": {
34335
+ "operation": [
34336
+ "batchDelete"
34337
+ ],
34338
+ "dataToSend": [
34339
+ "defineBelow"
34340
+ ]
34341
+ }
34342
+ },
34343
+ "description": "IDs of the rows to delete"
34344
+ },
34345
+ {
34346
+ "displayName": "Property Containing Row ID",
34347
+ "name": "rowIdProperty",
34348
+ "type": "string",
34349
+ "default": "id",
34350
+ "displayOptions": {
34351
+ "show": {
34352
+ "operation": [
34353
+ "batchDelete"
34354
+ ],
34355
+ "dataToSend": [
34356
+ "autoMapInputData"
34357
+ ]
34358
+ }
34359
+ },
34360
+ "description": "Name of the property in each input item that contains the row ID"
34361
+ },
34168
34362
  {
34169
34363
  "displayName": "Return All",
34170
34364
  "name": "returnAll",
@@ -34248,110 +34442,300 @@
34248
34442
  "description": "Operator to compare field and value with",
34249
34443
  "type": "options",
34250
34444
  "options": [
34445
+ {
34446
+ "name": "Equal",
34447
+ "value": "equal",
34448
+ "description": "Field value is exactly equal to the given value"
34449
+ },
34450
+ {
34451
+ "name": "Not Equal",
34452
+ "value": "not_equal",
34453
+ "description": "Field value is not equal to the given value"
34454
+ },
34251
34455
  {
34252
34456
  "name": "Contains",
34253
34457
  "value": "contains",
34254
- "description": "Field contains value"
34458
+ "description": "Field value contains the given substring (case-insensitive)"
34255
34459
  },
34256
34460
  {
34257
34461
  "name": "Contains Not",
34258
34462
  "value": "contains_not",
34259
- "description": "Field does not contain value"
34463
+ "description": "Field value does not contain the given substring (case-insensitive)"
34260
34464
  },
34261
34465
  {
34262
- "name": "Date After Date",
34263
- "value": "date_after",
34264
- "description": "Field after this date. Format: 'YYYY-MM-DD'."
34466
+ "name": "Contains Word",
34467
+ "value": "contains_word",
34468
+ "description": "Field contains the full word (case-insensitive match on word boundaries)"
34265
34469
  },
34266
34470
  {
34267
- "name": "Date Before Date",
34268
- "value": "date_before",
34269
- "description": "Field before this date. Format: 'YYYY-MM-DD'."
34471
+ "name": "Does Not Contain Word",
34472
+ "value": "doesnt_contain_word",
34473
+ "description": "Field does not contain the full word (case-insensitive)"
34270
34474
  },
34271
34475
  {
34272
- "name": "Date Equal",
34273
- "value": "date_equal",
34274
- "description": "Field is date. Format: 'YYYY-MM-DD'."
34476
+ "name": "Length Is Lower Than",
34477
+ "value": "length_is_lower_than",
34478
+ "description": "Field value length is shorter than the given number"
34275
34479
  },
34276
34480
  {
34277
- "name": "Date Equals Month",
34278
- "value": "date_equals_month",
34279
- "description": "Field in this month. Format: string."
34481
+ "name": "Higher Than",
34482
+ "value": "higher_than",
34483
+ "description": "Field value is greater than the given number"
34484
+ },
34485
+ {
34486
+ "name": "Higher Than or Equal",
34487
+ "value": "higher_than_or_equal",
34488
+ "description": "Field value is greater than or equal to the given number"
34489
+ },
34490
+ {
34491
+ "name": "Lower Than",
34492
+ "value": "lower_than",
34493
+ "description": "Field value is less than the given number"
34494
+ },
34495
+ {
34496
+ "name": "Lower Than or Equal",
34497
+ "value": "lower_than_or_equal",
34498
+ "description": "Field value is less than or equal to the given number"
34499
+ },
34500
+ {
34501
+ "name": "Is Even And Whole",
34502
+ "value": "is_even_and_whole",
34503
+ "description": "Field value is an even whole number (no decimals)"
34504
+ },
34505
+ {
34506
+ "name": "Date Is",
34507
+ "value": "date_is",
34508
+ "description": "Date matches the given day. Format: `Europe/Berlin??2024-09-17` (Timezone??YYYY-MM-DD)."
34509
+ },
34510
+ {
34511
+ "name": "Date Is Not",
34512
+ "value": "date_is_not",
34513
+ "description": "Date does not match the given day. Format: `UTC??2024-09-17`."
34514
+ },
34515
+ {
34516
+ "name": "Date Is Before",
34517
+ "value": "date_is_before",
34518
+ "description": "Date is strictly before the given day. Format: `UTC??2024-09-17`."
34519
+ },
34520
+ {
34521
+ "name": "Date Is On Or Before",
34522
+ "value": "date_is_on_or_before",
34523
+ "description": "Date is before or equal to the given day. Format: `UTC??2024-09-17`."
34524
+ },
34525
+ {
34526
+ "name": "Date Is After",
34527
+ "value": "date_is_after",
34528
+ "description": "Date is strictly after the given day. Format: `UTC??2024-09-17`."
34529
+ },
34530
+ {
34531
+ "name": "Date Is On Or After",
34532
+ "value": "date_is_on_or_after",
34533
+ "description": "Date is after or equal to the given day. Format: `UTC??2024-09-17`."
34534
+ },
34535
+ {
34536
+ "name": "Date Is Within",
34537
+ "value": "date_is_within",
34538
+ "description": "Date is within the next X days. Format: `UTC??30` (Timezone??NumberOfDays)."
34280
34539
  },
34281
34540
  {
34282
34541
  "name": "Date Equals Today",
34283
34542
  "value": "date_equals_today",
34284
- "description": "Field is today. Format: string."
34543
+ "description": "Date is today. Format: `UTC??today`. (Deprecated but kept for compatibility)."
34544
+ },
34545
+ {
34546
+ "name": "Date Equals Month",
34547
+ "value": "date_equals_month",
34548
+ "description": "Date is in the given month. Format: `UTC??2024-09`. (Deprecated but kept for compatibility)."
34285
34549
  },
34286
34550
  {
34287
34551
  "name": "Date Equals Year",
34288
34552
  "value": "date_equals_year",
34289
- "description": "Field in this year. Format: string."
34553
+ "description": "Date is in the given year. Format: `UTC??2024`. (Deprecated but kept for compatibility)."
34554
+ },
34555
+ {
34556
+ "name": "Date Equals Day Of Month",
34557
+ "value": "date_equals_day_of_month",
34558
+ "description": "Day of month matches the given number. Format: `UTC??15` (1-31)."
34290
34559
  },
34291
34560
  {
34292
- "name": "Date Not Equal",
34561
+ "name": "Date Equal (Deprecated)",
34562
+ "value": "date_equal",
34563
+ "description": "Field is date. Format: `UTC?YYYY-MM-DD`. Prefer using Date Is (date_is)."
34564
+ },
34565
+ {
34566
+ "name": "Date Not Equal (Deprecated)",
34293
34567
  "value": "date_not_equal",
34294
- "description": "Field is not date. Format: 'YYYY-MM-DD'."
34568
+ "description": "Field is not date. Format: `UTC?YYYY-MM-DD`. Prefer using Date Is Not (date_is_not)."
34295
34569
  },
34296
34570
  {
34297
- "name": "Equal",
34298
- "value": "equal",
34299
- "description": "Field is equal to value"
34571
+ "name": "Date Before (Deprecated)",
34572
+ "value": "date_before",
34573
+ "description": "Field before this date. Format: `UTC?YYYY-MM-DD`. Prefer using Date Is Before (date_is_before)."
34300
34574
  },
34301
34575
  {
34302
- "name": "Filename Contains",
34303
- "value": "filename_contains",
34304
- "description": "Field filename contains value"
34576
+ "name": "Date Before Or Equal (Deprecated)",
34577
+ "value": "date_before_or_equal",
34578
+ "description": "Field on or before this date. Format: `UTC?YYYY-MM-DD`. Prefer using Date Is On Or Before (date_is_on_or_before)."
34305
34579
  },
34306
34580
  {
34307
- "name": "Higher Than",
34308
- "value": "higher_than",
34309
- "description": "Field is higher than value"
34581
+ "name": "Date After (Deprecated)",
34582
+ "value": "date_after",
34583
+ "description": "Field after this date. Format: `UTC?YYYY-MM-DD`. Prefer using Date Is After (date_is_after)."
34310
34584
  },
34311
34585
  {
34312
- "name": "Is Empty",
34313
- "value": "empty",
34314
- "description": "Field is empty"
34586
+ "name": "Date After Or Equal (Deprecated)",
34587
+ "value": "date_after_or_equal",
34588
+ "description": "Field after or equal to this date. Format: `UTC?YYYY-MM-DD`. Prefer using Date Is On Or After (date_is_on_or_after)."
34315
34589
  },
34316
34590
  {
34317
- "name": "Is Not Empty",
34318
- "value": "not_empty",
34319
- "description": "Field is not empty"
34591
+ "name": "Date After Days Ago (Deprecated)",
34592
+ "value": "date_after_days_ago",
34593
+ "description": "Date is after X days ago. Format: `UTC?10`. Prefer using Date Is On Or After with NR_DAYS_AGO."
34320
34594
  },
34321
34595
  {
34322
- "name": "Is True",
34323
- "value": "boolean",
34324
- "description": "Boolean field is true"
34596
+ "name": "Date Within Days (Deprecated)",
34597
+ "value": "date_within_days",
34598
+ "description": "Date is within N days from today. Format: `UTC?30`. Prefer using Date Is Within (date_is_within)."
34325
34599
  },
34326
34600
  {
34327
- "name": "Link Row Does Not Have",
34328
- "value": "link_row_has_not",
34329
- "description": "Field does not have link ID"
34601
+ "name": "Date Within Weeks (Deprecated)",
34602
+ "value": "date_within_weeks",
34603
+ "description": "Date is within N weeks from today. Format: `UTC?4`. Prefer using Date Is Within."
34330
34604
  },
34331
34605
  {
34332
- "name": "Link Row Has",
34333
- "value": "link_row_has",
34334
- "description": "Field has link ID"
34606
+ "name": "Date Within Months (Deprecated)",
34607
+ "value": "date_within_months",
34608
+ "description": "Date is within N months from today. Format: `UTC?3`. Prefer using Date Is Within."
34335
34609
  },
34336
34610
  {
34337
- "name": "Lower Than",
34338
- "value": "lower_than",
34339
- "description": "Field is lower than value"
34611
+ "name": "Date Equals Days Ago (Deprecated)",
34612
+ "value": "date_equals_days_ago",
34613
+ "description": "Date is exactly N days ago. Format: `UTC?5`."
34340
34614
  },
34341
34615
  {
34342
- "name": "Not Equal",
34343
- "value": "not_equal",
34344
- "description": "Field is not equal to value"
34616
+ "name": "Date Equals Months Ago (Deprecated)",
34617
+ "value": "date_equals_months_ago",
34618
+ "description": "Date is exactly N months ago. Format: `UTC?2`."
34619
+ },
34620
+ {
34621
+ "name": "Date Equals Years Ago (Deprecated)",
34622
+ "value": "date_equals_years_ago",
34623
+ "description": "Date is exactly N years ago. Format: `UTC?1`."
34624
+ },
34625
+ {
34626
+ "name": "Date Before Today (Deprecated)",
34627
+ "value": "date_before_today",
34628
+ "description": "Date is before today. Format: `UTC`. Prefer using Date Is Before with operator TODAY."
34629
+ },
34630
+ {
34631
+ "name": "Date After Today (Deprecated)",
34632
+ "value": "date_after_today",
34633
+ "description": "Date is after today. Format: `UTC`. Prefer using Date Is After with operator TODAY."
34634
+ },
34635
+ {
34636
+ "name": "Date Equals Current Week (Deprecated)",
34637
+ "value": "date_equals_week",
34638
+ "description": "Date is within current week. Format: `UTC`. Prefer using Date Is with THIS_WEEK."
34639
+ },
34640
+ {
34641
+ "name": "Filename Contains",
34642
+ "value": "filename_contains",
34643
+ "description": "Filename contains the given substring"
34644
+ },
34645
+ {
34646
+ "name": "Has File Type",
34647
+ "value": "has_file_type",
34648
+ "description": "File type is \"image\" or \"document\""
34649
+ },
34650
+ {
34651
+ "name": "Files Lower Than",
34652
+ "value": "files_lower_than",
34653
+ "description": "Number of attached files is less than the given number"
34345
34654
  },
34346
34655
  {
34347
34656
  "name": "Single Select Equal",
34348
34657
  "value": "single_select_equal",
34349
- "description": "Field selected option is value"
34658
+ "description": "Single select option matches given option ID"
34350
34659
  },
34351
34660
  {
34352
34661
  "name": "Single Select Not Equal",
34353
34662
  "value": "single_select_not_equal",
34354
- "description": "Field selected option is not value"
34663
+ "description": "Single select option does not match given option ID"
34664
+ },
34665
+ {
34666
+ "name": "Single Select Is Any Of",
34667
+ "value": "single_select_is_any_of",
34668
+ "description": "Single select option is one of the given option IDs. Format: `1,2,3`."
34669
+ },
34670
+ {
34671
+ "name": "Single Select Is None Of",
34672
+ "value": "single_select_is_none_of",
34673
+ "description": "Single select option is none of the given option IDs. Format: `1,2,3`."
34674
+ },
34675
+ {
34676
+ "name": "Multiple Select Has",
34677
+ "value": "multiple_select_has",
34678
+ "description": "Multiple select has at least one of the given option IDs. Format: `1,2,3`."
34679
+ },
34680
+ {
34681
+ "name": "Multiple Select Has Not",
34682
+ "value": "multiple_select_has_not",
34683
+ "description": "Multiple select has none of the given option IDs. Format: `1,2,3`."
34684
+ },
34685
+ {
34686
+ "name": "Collaborators Has",
34687
+ "value": "multiple_collaborators_has",
34688
+ "description": "Field includes the given user ID"
34689
+ },
34690
+ {
34691
+ "name": "Collaborators Has Not",
34692
+ "value": "multiple_collaborators_has_not",
34693
+ "description": "Field excludes the given user ID"
34694
+ },
34695
+ {
34696
+ "name": "User Is",
34697
+ "value": "user_is",
34698
+ "description": "Row created by or last modified by the given user ID"
34699
+ },
34700
+ {
34701
+ "name": "User Is Not",
34702
+ "value": "user_is_not",
34703
+ "description": "Row was not created or modified by the given user ID"
34704
+ },
34705
+ {
34706
+ "name": "Link Row Has",
34707
+ "value": "link_row_has",
34708
+ "description": "Field links to the given row ID"
34709
+ },
34710
+ {
34711
+ "name": "Link Row Has Not",
34712
+ "value": "link_row_has_not",
34713
+ "description": "Field does not link to the given row ID"
34714
+ },
34715
+ {
34716
+ "name": "Link Row Contains",
34717
+ "value": "link_row_contains",
34718
+ "description": "Linked row value contains the given text (case-insensitive)"
34719
+ },
34720
+ {
34721
+ "name": "Link Row Not Contains",
34722
+ "value": "link_row_not_contains",
34723
+ "description": "Linked row value does not contain the given text"
34724
+ },
34725
+ {
34726
+ "name": "Is True",
34727
+ "value": "boolean",
34728
+ "description": "Boolean field is true (false if not set)"
34729
+ },
34730
+ {
34731
+ "name": "Is Empty",
34732
+ "value": "empty",
34733
+ "description": "Field is empty (null or blank)"
34734
+ },
34735
+ {
34736
+ "name": "Is Not Empty",
34737
+ "value": "not_empty",
34738
+ "description": "Field is not empty"
34355
34739
  }
34356
34740
  ],
34357
34741
  "default": "equal"
@@ -124346,7 +124730,7 @@
124346
124730
  "name": "startDate",
124347
124731
  "type": "dateTime",
124348
124732
  "required": true,
124349
- "default": "2026-03-09T00:00:00.000+00:00",
124733
+ "default": "2026-03-16T00:00:00.000+00:00",
124350
124734
  "displayOptions": {
124351
124735
  "show": {
124352
124736
  "resource": [
@@ -124369,7 +124753,7 @@
124369
124753
  "name": "endDate",
124370
124754
  "type": "dateTime",
124371
124755
  "required": true,
124372
- "default": "2026-03-16T00:00:00.000+00:00",
124756
+ "default": "2026-03-23T00:00:00.000+00:00",
124373
124757
  "displayOptions": {
124374
124758
  "show": {
124375
124759
  "resource": [
@@ -125716,7 +126100,7 @@
125716
126100
  "name": "startDate",
125717
126101
  "type": "dateTime",
125718
126102
  "required": true,
125719
- "default": "2026-03-09T00:00:00.000+00:00",
126103
+ "default": "2026-03-16T00:00:00.000+00:00",
125720
126104
  "displayOptions": {
125721
126105
  "show": {
125722
126106
  "resource": [
@@ -125739,7 +126123,7 @@
125739
126123
  "name": "endDate",
125740
126124
  "type": "dateTime",
125741
126125
  "required": true,
125742
- "default": "2026-03-16T00:00:00.000+00:00",
126126
+ "default": "2026-03-23T00:00:00.000+00:00",
125743
126127
  "displayOptions": {
125744
126128
  "show": {
125745
126129
  "resource": [
@@ -227551,7 +227935,7 @@
227551
227935
  "displayName": "Start",
227552
227936
  "name": "startDateTime",
227553
227937
  "type": "dateTime",
227554
- "default": "2026-03-17T20:01:45.175+00:00",
227938
+ "default": "2026-03-24T17:21:59.448+00:00",
227555
227939
  "required": true,
227556
227940
  "displayOptions": {
227557
227941
  "show": {
@@ -227569,7 +227953,7 @@
227569
227953
  "name": "endDateTime",
227570
227954
  "type": "dateTime",
227571
227955
  "required": true,
227572
- "default": "2026-03-17T20:31:45.175+00:00",
227956
+ "default": "2026-03-24T17:51:59.448+00:00",
227573
227957
  "displayOptions": {
227574
227958
  "show": {
227575
227959
  "resource": [
@@ -261884,14 +262268,14 @@
261884
262268
  {
261885
262269
  "type": "regex",
261886
262270
  "properties": {
261887
- "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9-]{2,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}).*",
262271
+ "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9_-]{2,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}).*",
261888
262272
  "errorMessage": "Not a valid Notion Block URL"
261889
262273
  }
261890
262274
  }
261891
262275
  ],
261892
262276
  "extractValue": {
261893
262277
  "type": "regex",
261894
- "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9-]{2,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12})"
262278
+ "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9_-]{2,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12})"
261895
262279
  }
261896
262280
  },
261897
262281
  {
@@ -261955,7 +262339,7 @@
261955
262339
  {
261956
262340
  "type": "regex",
261957
262341
  "properties": {
261958
- "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9-]{2,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}).*",
262342
+ "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9_-]{2,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}).*",
261959
262343
  "errorMessage": "Not a valid Notion Block URL"
261960
262344
  }
261961
262345
  }
@@ -265783,14 +266167,14 @@
265783
266167
  {
265784
266168
  "type": "regex",
265785
266169
  "properties": {
265786
- "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9-]{2,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}).*",
266170
+ "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9_-]{2,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}).*",
265787
266171
  "errorMessage": "Not a valid Notion Block URL"
265788
266172
  }
265789
266173
  }
265790
266174
  ],
265791
266175
  "extractValue": {
265792
266176
  "type": "regex",
265793
- "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9-]{2,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12})"
266177
+ "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9_-]{2,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12})"
265794
266178
  }
265795
266179
  },
265796
266180
  {
@@ -265854,7 +266238,7 @@
265854
266238
  {
265855
266239
  "type": "regex",
265856
266240
  "properties": {
265857
- "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9-]{2,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}).*",
266241
+ "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9_-]{2,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}).*",
265858
266242
  "errorMessage": "Not a valid Notion Block URL"
265859
266243
  }
265860
266244
  }
@@ -271176,14 +271560,14 @@
271176
271560
  {
271177
271561
  "type": "regex",
271178
271562
  "properties": {
271179
- "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}).*",
271563
+ "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9_-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}).*",
271180
271564
  "errorMessage": "Not a valid Notion Database Page URL"
271181
271565
  }
271182
271566
  }
271183
271567
  ],
271184
271568
  "extractValue": {
271185
271569
  "type": "regex",
271186
- "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12})"
271570
+ "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9_-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12})"
271187
271571
  }
271188
271572
  },
271189
271573
  {
@@ -272128,14 +272512,14 @@
272128
272512
  {
272129
272513
  "type": "regex",
272130
272514
  "properties": {
272131
- "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}).*",
272515
+ "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9_-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}).*",
272132
272516
  "errorMessage": "Not a valid Notion Database Page URL"
272133
272517
  }
272134
272518
  }
272135
272519
  ],
272136
272520
  "extractValue": {
272137
272521
  "type": "regex",
272138
- "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12})"
272522
+ "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9_-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12})"
272139
272523
  }
272140
272524
  },
272141
272525
  {
@@ -272227,14 +272611,14 @@
272227
272611
  {
272228
272612
  "type": "regex",
272229
272613
  "properties": {
272230
- "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}).*",
272614
+ "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9_-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}).*",
272231
272615
  "errorMessage": "Not a valid Notion Database Page URL"
272232
272616
  }
272233
272617
  }
272234
272618
  ],
272235
272619
  "extractValue": {
272236
272620
  "type": "regex",
272237
- "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12})"
272621
+ "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9_-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12})"
272238
272622
  }
272239
272623
  },
272240
272624
  {
@@ -278599,14 +278983,14 @@
278599
278983
  {
278600
278984
  "type": "regex",
278601
278985
  "properties": {
278602
- "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}).*",
278986
+ "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9_-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}).*",
278603
278987
  "errorMessage": "Not a valid Notion Database Page URL"
278604
278988
  }
278605
278989
  }
278606
278990
  ],
278607
278991
  "extractValue": {
278608
278992
  "type": "regex",
278609
- "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12})"
278993
+ "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9_-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12})"
278610
278994
  }
278611
278995
  },
278612
278996
  {
@@ -278688,14 +279072,14 @@
278688
279072
  {
278689
279073
  "type": "regex",
278690
279074
  "properties": {
278691
- "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}).*",
279075
+ "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9_-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}).*",
278692
279076
  "errorMessage": "Not a valid Notion Database Page URL"
278693
279077
  }
278694
279078
  }
278695
279079
  ],
278696
279080
  "extractValue": {
278697
279081
  "type": "regex",
278698
- "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12})"
279082
+ "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9_-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12})"
278699
279083
  }
278700
279084
  },
278701
279085
  {
@@ -454775,170 +455159,442 @@
454775
455159
  "description": "Whether or not binary images should be automatically passed through to the agent as image type messages"
454776
455160
  },
454777
455161
  {
454778
- "displayName": "Enable Streaming",
454779
- "name": "enableStreaming",
454780
- "type": "boolean",
454781
- "default": true,
454782
- "description": "Whether this agent will stream the response in real-time as it generates text"
454783
- },
454784
- {
454785
- "displayName": "Batch Processing",
454786
- "name": "batching",
454787
- "type": "collection",
454788
- "placeholder": "Add Batch Processing Option",
454789
- "description": "Batch processing options for rate limiting",
455162
+ "displayName": "Tracing Metadata",
455163
+ "name": "tracingMetadata",
455164
+ "type": "fixedCollection",
455165
+ "typeOptions": {
455166
+ "multipleValues": true
455167
+ },
454790
455168
  "default": {},
455169
+ "placeholder": "Add Metadata",
455170
+ "description": "Custom metadata added to tracing events",
454791
455171
  "options": [
454792
455172
  {
454793
- "displayName": "Batch Size",
454794
- "name": "batchSize",
454795
- "default": 1,
454796
- "type": "number",
454797
- "description": "How many items to process in parallel. This is useful for rate limiting, but might impact the log output ordering."
454798
- },
454799
- {
454800
- "displayName": "Delay Between Batches",
454801
- "name": "delayBetweenBatches",
454802
- "default": 0,
454803
- "type": "number",
454804
- "description": "Delay in milliseconds between batches. This is useful for rate limiting."
455173
+ "displayName": "Metadata",
455174
+ "name": "values",
455175
+ "values": [
455176
+ {
455177
+ "displayName": "Key",
455178
+ "name": "key",
455179
+ "type": "string",
455180
+ "default": ""
455181
+ },
455182
+ {
455183
+ "displayName": "Type",
455184
+ "name": "type",
455185
+ "type": "options",
455186
+ "description": "The field value type",
455187
+ "options": [
455188
+ {
455189
+ "name": "Array",
455190
+ "value": "arrayValue"
455191
+ },
455192
+ {
455193
+ "name": "Boolean",
455194
+ "value": "booleanValue"
455195
+ },
455196
+ {
455197
+ "name": "Number",
455198
+ "value": "numberValue"
455199
+ },
455200
+ {
455201
+ "name": "Object",
455202
+ "value": "objectValue"
455203
+ },
455204
+ {
455205
+ "name": "String",
455206
+ "value": "stringValue"
455207
+ }
455208
+ ],
455209
+ "default": "stringValue"
455210
+ },
455211
+ {
455212
+ "displayName": "Value",
455213
+ "name": "stringValue",
455214
+ "type": "string",
455215
+ "default": "",
455216
+ "displayOptions": {
455217
+ "show": {
455218
+ "type": [
455219
+ "stringValue"
455220
+ ]
455221
+ }
455222
+ }
455223
+ },
455224
+ {
455225
+ "displayName": "Value",
455226
+ "name": "numberValue",
455227
+ "type": "string",
455228
+ "default": "",
455229
+ "displayOptions": {
455230
+ "show": {
455231
+ "type": [
455232
+ "numberValue"
455233
+ ]
455234
+ }
455235
+ },
455236
+ "validateType": "number"
455237
+ },
455238
+ {
455239
+ "displayName": "Value",
455240
+ "name": "booleanValue",
455241
+ "type": "options",
455242
+ "default": "true",
455243
+ "options": [
455244
+ {
455245
+ "name": "True",
455246
+ "value": "true"
455247
+ },
455248
+ {
455249
+ "name": "False",
455250
+ "value": "false"
455251
+ }
455252
+ ],
455253
+ "displayOptions": {
455254
+ "show": {
455255
+ "type": [
455256
+ "booleanValue"
455257
+ ]
455258
+ }
455259
+ }
455260
+ },
455261
+ {
455262
+ "displayName": "Value",
455263
+ "name": "arrayValue",
455264
+ "type": "string",
455265
+ "default": "",
455266
+ "placeholder": "e.g. [ arrayItem1, arrayItem2, arrayItem3 ]",
455267
+ "displayOptions": {
455268
+ "show": {
455269
+ "type": [
455270
+ "arrayValue"
455271
+ ]
455272
+ }
455273
+ },
455274
+ "validateType": "array"
455275
+ },
455276
+ {
455277
+ "displayName": "Value",
455278
+ "name": "objectValue",
455279
+ "type": "json",
455280
+ "default": "={}",
455281
+ "typeOptions": {
455282
+ "rows": 2
455283
+ },
455284
+ "displayOptions": {
455285
+ "show": {
455286
+ "type": [
455287
+ "objectValue"
455288
+ ]
455289
+ }
455290
+ },
455291
+ "validateType": "object"
455292
+ }
455293
+ ]
455294
+ }
455295
+ ]
455296
+ },
455297
+ {
455298
+ "displayName": "Enable Streaming",
455299
+ "name": "enableStreaming",
455300
+ "type": "boolean",
455301
+ "default": true,
455302
+ "description": "Whether this agent will stream the response in real-time as it generates text"
455303
+ },
455304
+ {
455305
+ "displayName": "Batch Processing",
455306
+ "name": "batching",
455307
+ "type": "collection",
455308
+ "placeholder": "Add Batch Processing Option",
455309
+ "description": "Batch processing options for rate limiting",
455310
+ "default": {},
455311
+ "options": [
455312
+ {
455313
+ "displayName": "Batch Size",
455314
+ "name": "batchSize",
455315
+ "default": 1,
455316
+ "type": "number",
455317
+ "description": "How many items to process in parallel. This is useful for rate limiting, but might impact the log output ordering."
455318
+ },
455319
+ {
455320
+ "displayName": "Delay Between Batches",
455321
+ "name": "delayBetweenBatches",
455322
+ "default": 0,
455323
+ "type": "number",
455324
+ "description": "Delay in milliseconds between batches. This is useful for rate limiting."
455325
+ }
455326
+ ]
455327
+ },
455328
+ {
455329
+ "displayName": "Max Tokens To Read From Memory",
455330
+ "name": "maxTokensFromMemory",
455331
+ "type": "hidden",
455332
+ "default": 0,
455333
+ "description": "The maximum number of tokens to read from the chat memory history. Set to 0 to read all history."
455334
+ }
455335
+ ]
455336
+ }
455337
+ ],
455338
+ "sourcePath": "/.n8n-cache/packages/@n8n/nodes-langchain/dist/nodes/agents/Agent/Agent.node.js",
455339
+ "usableAsTool": false
455340
+ },
455341
+ {
455342
+ "name": "agentTool",
455343
+ "fullType": "@n8n/n8n-nodes-langchain.agentTool",
455344
+ "displayName": "AI Agent Tool",
455345
+ "description": "Generates an action plan and executes it. Can use external tools.",
455346
+ "icon": "fa:robot",
455347
+ "group": [
455348
+ "transform"
455349
+ ],
455350
+ "version": [
455351
+ 2.2,
455352
+ 3
455353
+ ],
455354
+ "properties": [
455355
+ {
455356
+ "displayName": "Description",
455357
+ "name": "toolDescription",
455358
+ "type": "string",
455359
+ "default": "AI Agent that can call other tools",
455360
+ "required": true,
455361
+ "typeOptions": {
455362
+ "rows": 2
455363
+ },
455364
+ "description": "Explain to the LLM what this tool does, a good, specific description would allow LLMs to produce expected results much more often"
455365
+ },
455366
+ {
455367
+ "displayName": "Prompt (User Message)",
455368
+ "name": "text",
455369
+ "type": "string",
455370
+ "required": true,
455371
+ "default": "",
455372
+ "placeholder": "e.g. Hello, how can you help me?",
455373
+ "typeOptions": {
455374
+ "rows": 2
455375
+ },
455376
+ "builderHint": {
455377
+ "placeholderSupported": false,
455378
+ "message": "Use expressions to include dynamic data from previous nodes (e.g., \"={{ $json.input }}\"). Static text prompts ignore incoming data."
455379
+ }
455380
+ },
455381
+ {
455382
+ "displayName": "Require Specific Output Format",
455383
+ "name": "hasOutputParser",
455384
+ "type": "boolean",
455385
+ "default": false,
455386
+ "noDataExpression": true
455387
+ },
455388
+ {
455389
+ "displayName": "Connect an <a data-action='openSelectiveNodeCreator' data-action-parameter-connectiontype='ai_outputParser'>output parser</a> on the canvas to specify the output format you require",
455390
+ "name": "notice",
455391
+ "type": "notice",
455392
+ "default": "",
455393
+ "displayOptions": {
455394
+ "show": {
455395
+ "hasOutputParser": [
455396
+ true
455397
+ ]
455398
+ }
455399
+ }
455400
+ },
455401
+ {
455402
+ "displayName": "Enable Fallback Model",
455403
+ "name": "needsFallback",
455404
+ "type": "boolean",
455405
+ "default": false,
455406
+ "noDataExpression": true
455407
+ },
455408
+ {
455409
+ "displayName": "Connect an additional language model on the canvas to use it as a fallback if the main model fails",
455410
+ "name": "fallbackNotice",
455411
+ "type": "notice",
455412
+ "default": "",
455413
+ "displayOptions": {
455414
+ "show": {
455415
+ "needsFallback": [
455416
+ true
455417
+ ]
455418
+ }
455419
+ }
455420
+ },
455421
+ {
455422
+ "displayName": "Options",
455423
+ "name": "options",
455424
+ "type": "collection",
455425
+ "default": {},
455426
+ "placeholder": "Add Option",
455427
+ "options": [
455428
+ {
455429
+ "displayName": "System Message",
455430
+ "name": "systemMessage",
455431
+ "type": "string",
455432
+ "default": "You are a helpful assistant",
455433
+ "description": "The message that will be sent to the agent before the conversation starts",
455434
+ "builderHint": {
455435
+ "message": "Must include: agent's purpose, exact names of connected tools, and response instructions"
455436
+ },
455437
+ "typeOptions": {
455438
+ "rows": 6
455439
+ }
455440
+ },
455441
+ {
455442
+ "displayName": "Max Iterations",
455443
+ "name": "maxIterations",
455444
+ "type": "number",
455445
+ "default": 10,
455446
+ "description": "The maximum number of iterations the agent will run before stopping"
455447
+ },
455448
+ {
455449
+ "displayName": "Return Intermediate Steps",
455450
+ "name": "returnIntermediateSteps",
455451
+ "type": "boolean",
455452
+ "default": false,
455453
+ "description": "Whether or not the output should include intermediate steps the agent took"
455454
+ },
455455
+ {
455456
+ "displayName": "Automatically Passthrough Binary Images",
455457
+ "name": "passthroughBinaryImages",
455458
+ "type": "boolean",
455459
+ "default": true,
455460
+ "description": "Whether or not binary images should be automatically passed through to the agent as image type messages"
455461
+ },
455462
+ {
455463
+ "displayName": "Tracing Metadata",
455464
+ "name": "tracingMetadata",
455465
+ "type": "fixedCollection",
455466
+ "typeOptions": {
455467
+ "multipleValues": true
455468
+ },
455469
+ "default": {},
455470
+ "placeholder": "Add Metadata",
455471
+ "description": "Custom metadata added to tracing events",
455472
+ "options": [
455473
+ {
455474
+ "displayName": "Metadata",
455475
+ "name": "values",
455476
+ "values": [
455477
+ {
455478
+ "displayName": "Key",
455479
+ "name": "key",
455480
+ "type": "string",
455481
+ "default": ""
455482
+ },
455483
+ {
455484
+ "displayName": "Type",
455485
+ "name": "type",
455486
+ "type": "options",
455487
+ "description": "The field value type",
455488
+ "options": [
455489
+ {
455490
+ "name": "Array",
455491
+ "value": "arrayValue"
455492
+ },
455493
+ {
455494
+ "name": "Boolean",
455495
+ "value": "booleanValue"
455496
+ },
455497
+ {
455498
+ "name": "Number",
455499
+ "value": "numberValue"
455500
+ },
455501
+ {
455502
+ "name": "Object",
455503
+ "value": "objectValue"
455504
+ },
455505
+ {
455506
+ "name": "String",
455507
+ "value": "stringValue"
455508
+ }
455509
+ ],
455510
+ "default": "stringValue"
455511
+ },
455512
+ {
455513
+ "displayName": "Value",
455514
+ "name": "stringValue",
455515
+ "type": "string",
455516
+ "default": "",
455517
+ "displayOptions": {
455518
+ "show": {
455519
+ "type": [
455520
+ "stringValue"
455521
+ ]
455522
+ }
455523
+ }
455524
+ },
455525
+ {
455526
+ "displayName": "Value",
455527
+ "name": "numberValue",
455528
+ "type": "string",
455529
+ "default": "",
455530
+ "displayOptions": {
455531
+ "show": {
455532
+ "type": [
455533
+ "numberValue"
455534
+ ]
455535
+ }
455536
+ },
455537
+ "validateType": "number"
455538
+ },
455539
+ {
455540
+ "displayName": "Value",
455541
+ "name": "booleanValue",
455542
+ "type": "options",
455543
+ "default": "true",
455544
+ "options": [
455545
+ {
455546
+ "name": "True",
455547
+ "value": "true"
455548
+ },
455549
+ {
455550
+ "name": "False",
455551
+ "value": "false"
455552
+ }
455553
+ ],
455554
+ "displayOptions": {
455555
+ "show": {
455556
+ "type": [
455557
+ "booleanValue"
455558
+ ]
455559
+ }
455560
+ }
455561
+ },
455562
+ {
455563
+ "displayName": "Value",
455564
+ "name": "arrayValue",
455565
+ "type": "string",
455566
+ "default": "",
455567
+ "placeholder": "e.g. [ arrayItem1, arrayItem2, arrayItem3 ]",
455568
+ "displayOptions": {
455569
+ "show": {
455570
+ "type": [
455571
+ "arrayValue"
455572
+ ]
455573
+ }
455574
+ },
455575
+ "validateType": "array"
455576
+ },
455577
+ {
455578
+ "displayName": "Value",
455579
+ "name": "objectValue",
455580
+ "type": "json",
455581
+ "default": "={}",
455582
+ "typeOptions": {
455583
+ "rows": 2
455584
+ },
455585
+ "displayOptions": {
455586
+ "show": {
455587
+ "type": [
455588
+ "objectValue"
455589
+ ]
455590
+ }
455591
+ },
455592
+ "validateType": "object"
455593
+ }
455594
+ ]
454805
455595
  }
454806
455596
  ]
454807
455597
  },
454808
- {
454809
- "displayName": "Max Tokens To Read From Memory",
454810
- "name": "maxTokensFromMemory",
454811
- "type": "hidden",
454812
- "default": 0,
454813
- "description": "The maximum number of tokens to read from the chat memory history. Set to 0 to read all history."
454814
- }
454815
- ]
454816
- }
454817
- ],
454818
- "sourcePath": "/.n8n-cache/packages/@n8n/nodes-langchain/dist/nodes/agents/Agent/Agent.node.js",
454819
- "usableAsTool": false
454820
- },
454821
- {
454822
- "name": "agentTool",
454823
- "fullType": "@n8n/n8n-nodes-langchain.agentTool",
454824
- "displayName": "AI Agent Tool",
454825
- "description": "Generates an action plan and executes it. Can use external tools.",
454826
- "icon": "fa:robot",
454827
- "group": [
454828
- "transform"
454829
- ],
454830
- "version": [
454831
- 2.2,
454832
- 3
454833
- ],
454834
- "properties": [
454835
- {
454836
- "displayName": "Description",
454837
- "name": "toolDescription",
454838
- "type": "string",
454839
- "default": "AI Agent that can call other tools",
454840
- "required": true,
454841
- "typeOptions": {
454842
- "rows": 2
454843
- },
454844
- "description": "Explain to the LLM what this tool does, a good, specific description would allow LLMs to produce expected results much more often"
454845
- },
454846
- {
454847
- "displayName": "Prompt (User Message)",
454848
- "name": "text",
454849
- "type": "string",
454850
- "required": true,
454851
- "default": "",
454852
- "placeholder": "e.g. Hello, how can you help me?",
454853
- "typeOptions": {
454854
- "rows": 2
454855
- },
454856
- "builderHint": {
454857
- "placeholderSupported": false,
454858
- "message": "Use expressions to include dynamic data from previous nodes (e.g., \"={{ $json.input }}\"). Static text prompts ignore incoming data."
454859
- }
454860
- },
454861
- {
454862
- "displayName": "Require Specific Output Format",
454863
- "name": "hasOutputParser",
454864
- "type": "boolean",
454865
- "default": false,
454866
- "noDataExpression": true
454867
- },
454868
- {
454869
- "displayName": "Connect an <a data-action='openSelectiveNodeCreator' data-action-parameter-connectiontype='ai_outputParser'>output parser</a> on the canvas to specify the output format you require",
454870
- "name": "notice",
454871
- "type": "notice",
454872
- "default": "",
454873
- "displayOptions": {
454874
- "show": {
454875
- "hasOutputParser": [
454876
- true
454877
- ]
454878
- }
454879
- }
454880
- },
454881
- {
454882
- "displayName": "Enable Fallback Model",
454883
- "name": "needsFallback",
454884
- "type": "boolean",
454885
- "default": false,
454886
- "noDataExpression": true
454887
- },
454888
- {
454889
- "displayName": "Connect an additional language model on the canvas to use it as a fallback if the main model fails",
454890
- "name": "fallbackNotice",
454891
- "type": "notice",
454892
- "default": "",
454893
- "displayOptions": {
454894
- "show": {
454895
- "needsFallback": [
454896
- true
454897
- ]
454898
- }
454899
- }
454900
- },
454901
- {
454902
- "displayName": "Options",
454903
- "name": "options",
454904
- "type": "collection",
454905
- "default": {},
454906
- "placeholder": "Add Option",
454907
- "options": [
454908
- {
454909
- "displayName": "System Message",
454910
- "name": "systemMessage",
454911
- "type": "string",
454912
- "default": "You are a helpful assistant",
454913
- "description": "The message that will be sent to the agent before the conversation starts",
454914
- "builderHint": {
454915
- "message": "Must include: agent's purpose, exact names of connected tools, and response instructions"
454916
- },
454917
- "typeOptions": {
454918
- "rows": 6
454919
- }
454920
- },
454921
- {
454922
- "displayName": "Max Iterations",
454923
- "name": "maxIterations",
454924
- "type": "number",
454925
- "default": 10,
454926
- "description": "The maximum number of iterations the agent will run before stopping"
454927
- },
454928
- {
454929
- "displayName": "Return Intermediate Steps",
454930
- "name": "returnIntermediateSteps",
454931
- "type": "boolean",
454932
- "default": false,
454933
- "description": "Whether or not the output should include intermediate steps the agent took"
454934
- },
454935
- {
454936
- "displayName": "Automatically Passthrough Binary Images",
454937
- "name": "passthroughBinaryImages",
454938
- "type": "boolean",
454939
- "default": true,
454940
- "description": "Whether or not binary images should be automatically passed through to the agent as image type messages"
454941
- },
454942
455598
  {
454943
455599
  "displayName": "Enable Streaming",
454944
455600
  "name": "enableStreaming",
@@ -470481,7 +471137,7 @@
470481
471137
  "description": "Internal-use vector store for ChatHub",
470482
471138
  "icon": {
470483
471139
  "light": "file:../VectorStorePinecone/pinecone.svg",
470484
- "dark": "file:pinecone.dark.svg"
471140
+ "dark": "file:../VectorStorePinecone/pinecone.dark.svg"
470485
471141
  },
470486
471142
  "group": [
470487
471143
  "transform"
@@ -470621,21 +471277,342 @@
470621
471277
  }
470622
471278
  }
470623
471279
  },
470624
- {
470625
- "displayName": "Options",
470626
- "name": "options",
470627
- "type": "collection",
470628
- "placeholder": "Add Option",
470629
- "default": {},
470630
- "options": [],
470631
- "displayOptions": {
470632
- "show": {
470633
- "mode": [
470634
- "insert"
470635
- ]
470636
- }
470637
- }
470638
- },
471280
+ {
471281
+ "displayName": "Options",
471282
+ "name": "options",
471283
+ "type": "collection",
471284
+ "placeholder": "Add Option",
471285
+ "default": {},
471286
+ "options": [],
471287
+ "displayOptions": {
471288
+ "show": {
471289
+ "mode": [
471290
+ "insert"
471291
+ ]
471292
+ }
471293
+ }
471294
+ },
471295
+ {
471296
+ "displayName": "Prompt",
471297
+ "name": "prompt",
471298
+ "type": "string",
471299
+ "default": "",
471300
+ "required": true,
471301
+ "description": "Search prompt to retrieve matching documents from the vector store using similarity-based ranking",
471302
+ "displayOptions": {
471303
+ "show": {
471304
+ "mode": [
471305
+ "load"
471306
+ ]
471307
+ }
471308
+ }
471309
+ },
471310
+ {
471311
+ "displayName": "Limit",
471312
+ "name": "topK",
471313
+ "type": "number",
471314
+ "default": 4,
471315
+ "description": "Number of top results to fetch from vector store",
471316
+ "displayOptions": {
471317
+ "show": {
471318
+ "mode": [
471319
+ "load",
471320
+ "retrieve-as-tool"
471321
+ ]
471322
+ }
471323
+ }
471324
+ },
471325
+ {
471326
+ "displayName": "Include Metadata",
471327
+ "name": "includeDocumentMetadata",
471328
+ "type": "boolean",
471329
+ "default": true,
471330
+ "description": "Whether or not to include document metadata",
471331
+ "displayOptions": {
471332
+ "show": {
471333
+ "mode": [
471334
+ "load",
471335
+ "retrieve-as-tool"
471336
+ ]
471337
+ }
471338
+ }
471339
+ },
471340
+ {
471341
+ "displayName": "Rerank Results",
471342
+ "name": "useReranker",
471343
+ "type": "boolean",
471344
+ "default": false,
471345
+ "description": "Whether or not to rerank results",
471346
+ "displayOptions": {
471347
+ "show": {
471348
+ "mode": [
471349
+ "load",
471350
+ "retrieve",
471351
+ "retrieve-as-tool"
471352
+ ]
471353
+ }
471354
+ }
471355
+ },
471356
+ {
471357
+ "displayName": "ID",
471358
+ "name": "id",
471359
+ "type": "string",
471360
+ "default": "",
471361
+ "required": true,
471362
+ "description": "ID of an embedding entry",
471363
+ "displayOptions": {
471364
+ "show": {
471365
+ "mode": [
471366
+ "update"
471367
+ ]
471368
+ }
471369
+ }
471370
+ },
471371
+ {
471372
+ "displayName": "Options",
471373
+ "name": "options",
471374
+ "type": "collection",
471375
+ "placeholder": "Add Option",
471376
+ "default": {},
471377
+ "options": [
471378
+ {
471379
+ "displayName": "Metadata Filter",
471380
+ "name": "metadata",
471381
+ "type": "fixedCollection",
471382
+ "description": "Metadata to filter the document by",
471383
+ "typeOptions": {
471384
+ "multipleValues": true
471385
+ },
471386
+ "default": {},
471387
+ "placeholder": "Add filter field",
471388
+ "options": [
471389
+ {
471390
+ "name": "metadataValues",
471391
+ "displayName": "Fields to Set",
471392
+ "values": [
471393
+ {
471394
+ "displayName": "Name",
471395
+ "name": "name",
471396
+ "type": "string",
471397
+ "default": "",
471398
+ "required": true
471399
+ },
471400
+ {
471401
+ "displayName": "Value",
471402
+ "name": "value",
471403
+ "type": "string",
471404
+ "default": ""
471405
+ }
471406
+ ]
471407
+ }
471408
+ ]
471409
+ }
471410
+ ],
471411
+ "displayOptions": {
471412
+ "show": {
471413
+ "mode": [
471414
+ "load",
471415
+ "retrieve-as-tool"
471416
+ ]
471417
+ }
471418
+ }
471419
+ },
471420
+ {
471421
+ "displayName": "Options",
471422
+ "name": "options",
471423
+ "type": "collection",
471424
+ "placeholder": "Add Option",
471425
+ "default": {},
471426
+ "options": [
471427
+ {
471428
+ "displayName": "Metadata Filter",
471429
+ "name": "metadata",
471430
+ "type": "fixedCollection",
471431
+ "description": "Metadata to filter the document by",
471432
+ "typeOptions": {
471433
+ "multipleValues": true
471434
+ },
471435
+ "default": {},
471436
+ "placeholder": "Add filter field",
471437
+ "options": [
471438
+ {
471439
+ "name": "metadataValues",
471440
+ "displayName": "Fields to Set",
471441
+ "values": [
471442
+ {
471443
+ "displayName": "Name",
471444
+ "name": "name",
471445
+ "type": "string",
471446
+ "default": "",
471447
+ "required": true
471448
+ },
471449
+ {
471450
+ "displayName": "Value",
471451
+ "name": "value",
471452
+ "type": "string",
471453
+ "default": ""
471454
+ }
471455
+ ]
471456
+ }
471457
+ ]
471458
+ }
471459
+ ],
471460
+ "displayOptions": {
471461
+ "show": {
471462
+ "mode": [
471463
+ "retrieve"
471464
+ ]
471465
+ }
471466
+ }
471467
+ }
471468
+ ],
471469
+ "sourcePath": "/.n8n-cache/packages/@n8n/nodes-langchain/dist/nodes/vector_store/ChatHubVectorStorePinecone/ChatHubVectorStorePinecone.node.js",
471470
+ "usableAsTool": false
471471
+ },
471472
+ {
471473
+ "name": "chatHubVectorStoreQdrant",
471474
+ "fullType": "@n8n/n8n-nodes-langchain.chatHubVectorStoreQdrant",
471475
+ "displayName": "ChatHub Qdrant Vector Store",
471476
+ "description": "Internal-use vector store for ChatHub",
471477
+ "icon": "file:../VectorStoreQdrant/qdrant.svg",
471478
+ "group": [
471479
+ "transform"
471480
+ ],
471481
+ "version": [
471482
+ 1,
471483
+ 1.1,
471484
+ 1.2,
471485
+ 1.3
471486
+ ],
471487
+ "properties": [
471488
+ {
471489
+ "displayName": "Tip: Get a feel for vector stores in n8n with our",
471490
+ "name": "ragStarterCallout",
471491
+ "type": "callout",
471492
+ "typeOptions": {
471493
+ "calloutAction": {
471494
+ "label": "RAG starter template",
471495
+ "type": "openSampleWorkflowTemplate",
471496
+ "templateId": "rag-starter-template"
471497
+ }
471498
+ },
471499
+ "default": ""
471500
+ },
471501
+ {
471502
+ "displayName": "Operation Mode",
471503
+ "name": "mode",
471504
+ "type": "options",
471505
+ "noDataExpression": true,
471506
+ "default": "retrieve",
471507
+ "options": [
471508
+ {
471509
+ "name": "Get Many",
471510
+ "value": "load",
471511
+ "description": "Get many ranked documents from vector store for query",
471512
+ "action": "Get ranked documents from vector store"
471513
+ },
471514
+ {
471515
+ "name": "Insert Documents",
471516
+ "value": "insert",
471517
+ "description": "Insert documents into vector store",
471518
+ "action": "Add documents to vector store"
471519
+ },
471520
+ {
471521
+ "name": "Retrieve Documents (As Vector Store for Chain/Tool)",
471522
+ "value": "retrieve",
471523
+ "description": "Retrieve documents from vector store to be used as vector store with AI nodes",
471524
+ "action": "Retrieve documents for Chain/Tool as Vector Store",
471525
+ "outputConnectionType": "ai_vectorStore"
471526
+ },
471527
+ {
471528
+ "name": "Retrieve Documents (As Tool for AI Agent)",
471529
+ "value": "retrieve-as-tool",
471530
+ "description": "Retrieve documents from vector store to be used as tool with AI nodes",
471531
+ "action": "Retrieve documents for AI Agent as Tool",
471532
+ "outputConnectionType": "ai_tool"
471533
+ }
471534
+ ]
471535
+ },
471536
+ {
471537
+ "displayName": "This node must be connected to a vector store retriever. <a data-action='openSelectiveNodeCreator' data-action-parameter-connectiontype='ai_retriever'>Insert one</a>",
471538
+ "name": "notice",
471539
+ "type": "notice",
471540
+ "default": "",
471541
+ "typeOptions": {
471542
+ "containerClass": "ndv-connection-hint-notice"
471543
+ },
471544
+ "displayOptions": {
471545
+ "show": {
471546
+ "mode": [
471547
+ "retrieve"
471548
+ ]
471549
+ }
471550
+ }
471551
+ },
471552
+ {
471553
+ "displayName": "Name",
471554
+ "name": "toolName",
471555
+ "type": "string",
471556
+ "default": "",
471557
+ "required": true,
471558
+ "description": "Name of the vector store",
471559
+ "placeholder": "e.g. company_knowledge_base",
471560
+ "validateType": "string-alphanumeric",
471561
+ "displayOptions": {
471562
+ "show": {
471563
+ "@version": [
471564
+ {
471565
+ "_cnd": {
471566
+ "lte": 1.2
471567
+ }
471568
+ }
471569
+ ],
471570
+ "mode": [
471571
+ "retrieve-as-tool"
471572
+ ]
471573
+ }
471574
+ }
471575
+ },
471576
+ {
471577
+ "displayName": "Description",
471578
+ "name": "toolDescription",
471579
+ "type": "string",
471580
+ "default": "",
471581
+ "required": true,
471582
+ "typeOptions": {
471583
+ "rows": 2
471584
+ },
471585
+ "description": "Explain to the LLM what this tool does, a good, specific description would allow LLMs to produce expected results much more often",
471586
+ "placeholder": "e.g. Internal-use vector store for ChatHub",
471587
+ "displayOptions": {
471588
+ "show": {
471589
+ "mode": [
471590
+ "retrieve-as-tool"
471591
+ ]
471592
+ }
471593
+ }
471594
+ },
471595
+ {
471596
+ "displayName": "Embedding Batch Size",
471597
+ "name": "embeddingBatchSize",
471598
+ "type": "number",
471599
+ "default": 200,
471600
+ "description": "Number of documents to embed in a single batch",
471601
+ "displayOptions": {
471602
+ "show": {
471603
+ "mode": [
471604
+ "insert"
471605
+ ],
471606
+ "@version": [
471607
+ {
471608
+ "_cnd": {
471609
+ "gte": 1.1
471610
+ }
471611
+ }
471612
+ ]
471613
+ }
471614
+ }
471615
+ },
470639
471616
  {
470640
471617
  "displayName": "Prompt",
470641
471618
  "name": "prompt",
@@ -470810,230 +471787,6 @@
470810
471787
  }
470811
471788
  }
470812
471789
  ],
470813
- "sourcePath": "/.n8n-cache/packages/@n8n/nodes-langchain/dist/nodes/vector_store/ChatHubVectorStorePinecone/ChatHubVectorStorePinecone.node.js",
470814
- "usableAsTool": false
470815
- },
470816
- {
470817
- "name": "chatHubVectorStoreQdrant",
470818
- "fullType": "@n8n/n8n-nodes-langchain.chatHubVectorStoreQdrant",
470819
- "displayName": "ChatHub Qdrant Vector Store",
470820
- "description": "Internal-use vector store for ChatHub",
470821
- "icon": "file:../VectorStoreQdrant/qdrant.svg",
470822
- "group": [
470823
- "transform"
470824
- ],
470825
- "version": [
470826
- 1,
470827
- 1.1,
470828
- 1.2,
470829
- 1.3
470830
- ],
470831
- "properties": [
470832
- {
470833
- "displayName": "Tip: Get a feel for vector stores in n8n with our",
470834
- "name": "ragStarterCallout",
470835
- "type": "callout",
470836
- "typeOptions": {
470837
- "calloutAction": {
470838
- "label": "RAG starter template",
470839
- "type": "openSampleWorkflowTemplate",
470840
- "templateId": "rag-starter-template"
470841
- }
470842
- },
470843
- "default": ""
470844
- },
470845
- {
470846
- "displayName": "Operation Mode",
470847
- "name": "mode",
470848
- "type": "options",
470849
- "noDataExpression": true,
470850
- "default": "retrieve",
470851
- "options": [
470852
- {
470853
- "name": "Get Many",
470854
- "value": "load",
470855
- "description": "Get many ranked documents from vector store for query",
470856
- "action": "Get ranked documents from vector store"
470857
- },
470858
- {
470859
- "name": "Insert Documents",
470860
- "value": "insert",
470861
- "description": "Insert documents into vector store",
470862
- "action": "Add documents to vector store"
470863
- },
470864
- {
470865
- "name": "Retrieve Documents (As Vector Store for Chain/Tool)",
470866
- "value": "retrieve",
470867
- "description": "Retrieve documents from vector store to be used as vector store with AI nodes",
470868
- "action": "Retrieve documents for Chain/Tool as Vector Store",
470869
- "outputConnectionType": "ai_vectorStore"
470870
- },
470871
- {
470872
- "name": "Retrieve Documents (As Tool for AI Agent)",
470873
- "value": "retrieve-as-tool",
470874
- "description": "Retrieve documents from vector store to be used as tool with AI nodes",
470875
- "action": "Retrieve documents for AI Agent as Tool",
470876
- "outputConnectionType": "ai_tool"
470877
- }
470878
- ]
470879
- },
470880
- {
470881
- "displayName": "This node must be connected to a vector store retriever. <a data-action='openSelectiveNodeCreator' data-action-parameter-connectiontype='ai_retriever'>Insert one</a>",
470882
- "name": "notice",
470883
- "type": "notice",
470884
- "default": "",
470885
- "typeOptions": {
470886
- "containerClass": "ndv-connection-hint-notice"
470887
- },
470888
- "displayOptions": {
470889
- "show": {
470890
- "mode": [
470891
- "retrieve"
470892
- ]
470893
- }
470894
- }
470895
- },
470896
- {
470897
- "displayName": "Name",
470898
- "name": "toolName",
470899
- "type": "string",
470900
- "default": "",
470901
- "required": true,
470902
- "description": "Name of the vector store",
470903
- "placeholder": "e.g. company_knowledge_base",
470904
- "validateType": "string-alphanumeric",
470905
- "displayOptions": {
470906
- "show": {
470907
- "@version": [
470908
- {
470909
- "_cnd": {
470910
- "lte": 1.2
470911
- }
470912
- }
470913
- ],
470914
- "mode": [
470915
- "retrieve-as-tool"
470916
- ]
470917
- }
470918
- }
470919
- },
470920
- {
470921
- "displayName": "Description",
470922
- "name": "toolDescription",
470923
- "type": "string",
470924
- "default": "",
470925
- "required": true,
470926
- "typeOptions": {
470927
- "rows": 2
470928
- },
470929
- "description": "Explain to the LLM what this tool does, a good, specific description would allow LLMs to produce expected results much more often",
470930
- "placeholder": "e.g. Internal-use vector store for ChatHub",
470931
- "displayOptions": {
470932
- "show": {
470933
- "mode": [
470934
- "retrieve-as-tool"
470935
- ]
470936
- }
470937
- }
470938
- },
470939
- {
470940
- "displayName": "Embedding Batch Size",
470941
- "name": "embeddingBatchSize",
470942
- "type": "number",
470943
- "default": 200,
470944
- "description": "Number of documents to embed in a single batch",
470945
- "displayOptions": {
470946
- "show": {
470947
- "mode": [
470948
- "insert"
470949
- ],
470950
- "@version": [
470951
- {
470952
- "_cnd": {
470953
- "gte": 1.1
470954
- }
470955
- }
470956
- ]
470957
- }
470958
- }
470959
- },
470960
- {
470961
- "displayName": "Prompt",
470962
- "name": "prompt",
470963
- "type": "string",
470964
- "default": "",
470965
- "required": true,
470966
- "description": "Search prompt to retrieve matching documents from the vector store using similarity-based ranking",
470967
- "displayOptions": {
470968
- "show": {
470969
- "mode": [
470970
- "load"
470971
- ]
470972
- }
470973
- }
470974
- },
470975
- {
470976
- "displayName": "Limit",
470977
- "name": "topK",
470978
- "type": "number",
470979
- "default": 4,
470980
- "description": "Number of top results to fetch from vector store",
470981
- "displayOptions": {
470982
- "show": {
470983
- "mode": [
470984
- "load",
470985
- "retrieve-as-tool"
470986
- ]
470987
- }
470988
- }
470989
- },
470990
- {
470991
- "displayName": "Include Metadata",
470992
- "name": "includeDocumentMetadata",
470993
- "type": "boolean",
470994
- "default": true,
470995
- "description": "Whether or not to include document metadata",
470996
- "displayOptions": {
470997
- "show": {
470998
- "mode": [
470999
- "load",
471000
- "retrieve-as-tool"
471001
- ]
471002
- }
471003
- }
471004
- },
471005
- {
471006
- "displayName": "Rerank Results",
471007
- "name": "useReranker",
471008
- "type": "boolean",
471009
- "default": false,
471010
- "description": "Whether or not to rerank results",
471011
- "displayOptions": {
471012
- "show": {
471013
- "mode": [
471014
- "load",
471015
- "retrieve",
471016
- "retrieve-as-tool"
471017
- ]
471018
- }
471019
- }
471020
- },
471021
- {
471022
- "displayName": "ID",
471023
- "name": "id",
471024
- "type": "string",
471025
- "default": "",
471026
- "required": true,
471027
- "description": "ID of an embedding entry",
471028
- "displayOptions": {
471029
- "show": {
471030
- "mode": [
471031
- "update"
471032
- ]
471033
- }
471034
- }
471035
- }
471036
- ],
471037
471790
  "sourcePath": "/.n8n-cache/packages/@n8n/nodes-langchain/dist/nodes/vector_store/ChatHubVectorStoreQdrant/ChatHubVectorStoreQdrant.node.js",
471038
471791
  "usableAsTool": false
471039
471792
  },
@@ -480290,7 +481043,8 @@
480290
481043
  "trigger"
480291
481044
  ],
480292
481045
  "version": [
480293
- 1
481046
+ 1,
481047
+ 1.1
480294
481048
  ],
480295
481049
  "properties": [
480296
481050
  {
@@ -494216,7 +494970,8 @@
494216
494970
  "version": [
494217
494971
  1,
494218
494972
  2,
494219
- 2.1
494973
+ 2.1,
494974
+ 2.2
494220
494975
  ],
494221
494976
  "properties": [
494222
494977
  {
@@ -508030,8 +508785,27 @@
508030
508785
  "group": [
508031
508786
  "output"
508032
508787
  ],
508033
- "version": 1,
508788
+ "version": [
508789
+ 1,
508790
+ 1.1
508791
+ ],
508034
508792
  "properties": [
508793
+ {
508794
+ "displayName": "Authentication",
508795
+ "name": "authentication",
508796
+ "type": "options",
508797
+ "options": [
508798
+ {
508799
+ "name": "Username & Password",
508800
+ "value": "usernamePassword"
508801
+ },
508802
+ {
508803
+ "name": "Database Token",
508804
+ "value": "databaseToken"
508805
+ }
508806
+ ],
508807
+ "default": "usernamePassword"
508808
+ },
508035
508809
  {
508036
508810
  "displayName": "Resource",
508037
508811
  "name": "resource",
@@ -508058,6 +508832,24 @@
508058
508832
  }
508059
508833
  },
508060
508834
  "options": [
508835
+ {
508836
+ "name": "Batch Create",
508837
+ "value": "batchCreate",
508838
+ "description": "Create up to 200 rows in one request",
508839
+ "action": "Create multiple rows"
508840
+ },
508841
+ {
508842
+ "name": "Batch Delete",
508843
+ "value": "batchDelete",
508844
+ "description": "Delete up to 200 rows in one request",
508845
+ "action": "Delete multiple rows"
508846
+ },
508847
+ {
508848
+ "name": "Batch Update",
508849
+ "value": "batchUpdate",
508850
+ "description": "Update up to 200 rows in one request",
508851
+ "action": "Update multiple rows"
508852
+ },
508061
508853
  {
508062
508854
  "name": "Create",
508063
508855
  "value": "create",
@@ -508095,11 +508887,18 @@
508095
508887
  "displayName": "Database Name or ID",
508096
508888
  "name": "databaseId",
508097
508889
  "type": "options",
508098
- "default": "",
508890
+ "default": "0",
508099
508891
  "required": true,
508100
508892
  "description": "Database to operate on. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.",
508101
508893
  "typeOptions": {
508102
508894
  "loadOptionsMethod": "getDatabaseIds"
508895
+ },
508896
+ "displayOptions": {
508897
+ "hide": {
508898
+ "authentication": [
508899
+ "databaseToken"
508900
+ ]
508901
+ }
508103
508902
  }
508104
508903
  },
508105
508904
  {
@@ -508166,7 +508965,9 @@
508166
508965
  "show": {
508167
508966
  "operation": [
508168
508967
  "create",
508169
- "update"
508968
+ "update",
508969
+ "batchCreate",
508970
+ "batchUpdate"
508170
508971
  ]
508171
508972
  }
508172
508973
  },
@@ -508181,7 +508982,9 @@
508181
508982
  "show": {
508182
508983
  "operation": [
508183
508984
  "create",
508184
- "update"
508985
+ "update",
508986
+ "batchCreate",
508987
+ "batchUpdate"
508185
508988
  ],
508186
508989
  "dataToSend": [
508187
508990
  "autoMapInputData"
@@ -508241,6 +509044,113 @@
508241
509044
  }
508242
509045
  ]
508243
509046
  },
509047
+ {
509048
+ "displayName": "Rows",
509049
+ "name": "rowsUi",
509050
+ "type": "fixedCollection",
509051
+ "typeOptions": {
509052
+ "multipleValues": true
509053
+ },
509054
+ "placeholder": "Add Row",
509055
+ "displayOptions": {
509056
+ "show": {
509057
+ "operation": [
509058
+ "batchCreate",
509059
+ "batchUpdate"
509060
+ ],
509061
+ "dataToSend": [
509062
+ "defineBelow"
509063
+ ]
509064
+ }
509065
+ },
509066
+ "default": [],
509067
+ "options": [
509068
+ {
509069
+ "name": "rowValues",
509070
+ "displayName": "Row",
509071
+ "values": [
509072
+ {
509073
+ "displayName": "Row ID",
509074
+ "name": "id",
509075
+ "type": "string",
509076
+ "displayOptions": {
509077
+ "show": {
509078
+ "/operation": [
509079
+ "batchUpdate"
509080
+ ]
509081
+ }
509082
+ },
509083
+ "default": "",
509084
+ "required": true,
509085
+ "description": "Row ID to update (required for batch update)"
509086
+ },
509087
+ {
509088
+ "displayName": "Fields",
509089
+ "name": "fieldsUi",
509090
+ "type": "fixedCollection",
509091
+ "typeOptions": {
509092
+ "multipleValues": true,
509093
+ "multipleValueButtonText": "Add Field"
509094
+ },
509095
+ "default": {},
509096
+ "options": [
509097
+ {
509098
+ "name": "fieldValues",
509099
+ "displayName": "Field",
509100
+ "values": [
509101
+ {
509102
+ "displayName": "Field Name or ID",
509103
+ "name": "fieldId",
509104
+ "type": "options",
509105
+ "description": "Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>",
509106
+ "typeOptions": {
509107
+ "loadOptionsDependsOn": [
509108
+ "tableId"
509109
+ ],
509110
+ "loadOptionsMethod": "getTableFields"
509111
+ },
509112
+ "default": ""
509113
+ },
509114
+ {
509115
+ "displayName": "Field Value",
509116
+ "name": "fieldValue",
509117
+ "type": "string",
509118
+ "default": ""
509119
+ }
509120
+ ]
509121
+ }
509122
+ ]
509123
+ }
509124
+ ]
509125
+ }
509126
+ ]
509127
+ },
509128
+ {
509129
+ "displayName": "Data to Send",
509130
+ "name": "dataToSend",
509131
+ "type": "options",
509132
+ "options": [
509133
+ {
509134
+ "name": "Auto-Map Input Data",
509135
+ "value": "autoMapInputData",
509136
+ "description": "Collect row IDs from input items automatically"
509137
+ },
509138
+ {
509139
+ "name": "Define Below",
509140
+ "value": "defineBelow",
509141
+ "description": "Manually specify row IDs"
509142
+ }
509143
+ ],
509144
+ "displayOptions": {
509145
+ "show": {
509146
+ "operation": [
509147
+ "batchDelete"
509148
+ ]
509149
+ }
509150
+ },
509151
+ "default": "defineBelow",
509152
+ "description": "Choose whether to manually enter row IDs or map them from input data"
509153
+ },
508244
509154
  {
508245
509155
  "displayName": "Row ID",
508246
509156
  "name": "rowId",
@@ -508256,6 +509166,44 @@
508256
509166
  "required": true,
508257
509167
  "description": "ID of the row to delete"
508258
509168
  },
509169
+ {
509170
+ "displayName": "Row IDs",
509171
+ "name": "rowIds",
509172
+ "type": "string",
509173
+ "typeOptions": {
509174
+ "multipleValues": true
509175
+ },
509176
+ "default": [],
509177
+ "placeholder": "Add Row ID",
509178
+ "displayOptions": {
509179
+ "show": {
509180
+ "operation": [
509181
+ "batchDelete"
509182
+ ],
509183
+ "dataToSend": [
509184
+ "defineBelow"
509185
+ ]
509186
+ }
509187
+ },
509188
+ "description": "IDs of the rows to delete"
509189
+ },
509190
+ {
509191
+ "displayName": "Property Containing Row ID",
509192
+ "name": "rowIdProperty",
509193
+ "type": "string",
509194
+ "default": "id",
509195
+ "displayOptions": {
509196
+ "show": {
509197
+ "operation": [
509198
+ "batchDelete"
509199
+ ],
509200
+ "dataToSend": [
509201
+ "autoMapInputData"
509202
+ ]
509203
+ }
509204
+ },
509205
+ "description": "Name of the property in each input item that contains the row ID"
509206
+ },
508259
509207
  {
508260
509208
  "displayName": "Return All",
508261
509209
  "name": "returnAll",
@@ -508339,110 +509287,300 @@
508339
509287
  "description": "Operator to compare field and value with",
508340
509288
  "type": "options",
508341
509289
  "options": [
509290
+ {
509291
+ "name": "Equal",
509292
+ "value": "equal",
509293
+ "description": "Field value is exactly equal to the given value"
509294
+ },
509295
+ {
509296
+ "name": "Not Equal",
509297
+ "value": "not_equal",
509298
+ "description": "Field value is not equal to the given value"
509299
+ },
508342
509300
  {
508343
509301
  "name": "Contains",
508344
509302
  "value": "contains",
508345
- "description": "Field contains value"
509303
+ "description": "Field value contains the given substring (case-insensitive)"
508346
509304
  },
508347
509305
  {
508348
509306
  "name": "Contains Not",
508349
509307
  "value": "contains_not",
508350
- "description": "Field does not contain value"
509308
+ "description": "Field value does not contain the given substring (case-insensitive)"
508351
509309
  },
508352
509310
  {
508353
- "name": "Date After Date",
508354
- "value": "date_after",
508355
- "description": "Field after this date. Format: 'YYYY-MM-DD'."
509311
+ "name": "Contains Word",
509312
+ "value": "contains_word",
509313
+ "description": "Field contains the full word (case-insensitive match on word boundaries)"
508356
509314
  },
508357
509315
  {
508358
- "name": "Date Before Date",
508359
- "value": "date_before",
508360
- "description": "Field before this date. Format: 'YYYY-MM-DD'."
509316
+ "name": "Does Not Contain Word",
509317
+ "value": "doesnt_contain_word",
509318
+ "description": "Field does not contain the full word (case-insensitive)"
508361
509319
  },
508362
509320
  {
508363
- "name": "Date Equal",
508364
- "value": "date_equal",
508365
- "description": "Field is date. Format: 'YYYY-MM-DD'."
509321
+ "name": "Length Is Lower Than",
509322
+ "value": "length_is_lower_than",
509323
+ "description": "Field value length is shorter than the given number"
508366
509324
  },
508367
509325
  {
508368
- "name": "Date Equals Month",
508369
- "value": "date_equals_month",
508370
- "description": "Field in this month. Format: string."
509326
+ "name": "Higher Than",
509327
+ "value": "higher_than",
509328
+ "description": "Field value is greater than the given number"
509329
+ },
509330
+ {
509331
+ "name": "Higher Than or Equal",
509332
+ "value": "higher_than_or_equal",
509333
+ "description": "Field value is greater than or equal to the given number"
509334
+ },
509335
+ {
509336
+ "name": "Lower Than",
509337
+ "value": "lower_than",
509338
+ "description": "Field value is less than the given number"
509339
+ },
509340
+ {
509341
+ "name": "Lower Than or Equal",
509342
+ "value": "lower_than_or_equal",
509343
+ "description": "Field value is less than or equal to the given number"
509344
+ },
509345
+ {
509346
+ "name": "Is Even And Whole",
509347
+ "value": "is_even_and_whole",
509348
+ "description": "Field value is an even whole number (no decimals)"
509349
+ },
509350
+ {
509351
+ "name": "Date Is",
509352
+ "value": "date_is",
509353
+ "description": "Date matches the given day. Format: `Europe/Berlin??2024-09-17` (Timezone??YYYY-MM-DD)."
509354
+ },
509355
+ {
509356
+ "name": "Date Is Not",
509357
+ "value": "date_is_not",
509358
+ "description": "Date does not match the given day. Format: `UTC??2024-09-17`."
509359
+ },
509360
+ {
509361
+ "name": "Date Is Before",
509362
+ "value": "date_is_before",
509363
+ "description": "Date is strictly before the given day. Format: `UTC??2024-09-17`."
509364
+ },
509365
+ {
509366
+ "name": "Date Is On Or Before",
509367
+ "value": "date_is_on_or_before",
509368
+ "description": "Date is before or equal to the given day. Format: `UTC??2024-09-17`."
509369
+ },
509370
+ {
509371
+ "name": "Date Is After",
509372
+ "value": "date_is_after",
509373
+ "description": "Date is strictly after the given day. Format: `UTC??2024-09-17`."
509374
+ },
509375
+ {
509376
+ "name": "Date Is On Or After",
509377
+ "value": "date_is_on_or_after",
509378
+ "description": "Date is after or equal to the given day. Format: `UTC??2024-09-17`."
509379
+ },
509380
+ {
509381
+ "name": "Date Is Within",
509382
+ "value": "date_is_within",
509383
+ "description": "Date is within the next X days. Format: `UTC??30` (Timezone??NumberOfDays)."
508371
509384
  },
508372
509385
  {
508373
509386
  "name": "Date Equals Today",
508374
509387
  "value": "date_equals_today",
508375
- "description": "Field is today. Format: string."
509388
+ "description": "Date is today. Format: `UTC??today`. (Deprecated but kept for compatibility)."
509389
+ },
509390
+ {
509391
+ "name": "Date Equals Month",
509392
+ "value": "date_equals_month",
509393
+ "description": "Date is in the given month. Format: `UTC??2024-09`. (Deprecated but kept for compatibility)."
508376
509394
  },
508377
509395
  {
508378
509396
  "name": "Date Equals Year",
508379
509397
  "value": "date_equals_year",
508380
- "description": "Field in this year. Format: string."
509398
+ "description": "Date is in the given year. Format: `UTC??2024`. (Deprecated but kept for compatibility)."
509399
+ },
509400
+ {
509401
+ "name": "Date Equals Day Of Month",
509402
+ "value": "date_equals_day_of_month",
509403
+ "description": "Day of month matches the given number. Format: `UTC??15` (1-31)."
508381
509404
  },
508382
509405
  {
508383
- "name": "Date Not Equal",
509406
+ "name": "Date Equal (Deprecated)",
509407
+ "value": "date_equal",
509408
+ "description": "Field is date. Format: `UTC?YYYY-MM-DD`. Prefer using Date Is (date_is)."
509409
+ },
509410
+ {
509411
+ "name": "Date Not Equal (Deprecated)",
508384
509412
  "value": "date_not_equal",
508385
- "description": "Field is not date. Format: 'YYYY-MM-DD'."
509413
+ "description": "Field is not date. Format: `UTC?YYYY-MM-DD`. Prefer using Date Is Not (date_is_not)."
508386
509414
  },
508387
509415
  {
508388
- "name": "Equal",
508389
- "value": "equal",
508390
- "description": "Field is equal to value"
509416
+ "name": "Date Before (Deprecated)",
509417
+ "value": "date_before",
509418
+ "description": "Field before this date. Format: `UTC?YYYY-MM-DD`. Prefer using Date Is Before (date_is_before)."
508391
509419
  },
508392
509420
  {
508393
- "name": "Filename Contains",
508394
- "value": "filename_contains",
508395
- "description": "Field filename contains value"
509421
+ "name": "Date Before Or Equal (Deprecated)",
509422
+ "value": "date_before_or_equal",
509423
+ "description": "Field on or before this date. Format: `UTC?YYYY-MM-DD`. Prefer using Date Is On Or Before (date_is_on_or_before)."
508396
509424
  },
508397
509425
  {
508398
- "name": "Higher Than",
508399
- "value": "higher_than",
508400
- "description": "Field is higher than value"
509426
+ "name": "Date After (Deprecated)",
509427
+ "value": "date_after",
509428
+ "description": "Field after this date. Format: `UTC?YYYY-MM-DD`. Prefer using Date Is After (date_is_after)."
508401
509429
  },
508402
509430
  {
508403
- "name": "Is Empty",
508404
- "value": "empty",
508405
- "description": "Field is empty"
509431
+ "name": "Date After Or Equal (Deprecated)",
509432
+ "value": "date_after_or_equal",
509433
+ "description": "Field after or equal to this date. Format: `UTC?YYYY-MM-DD`. Prefer using Date Is On Or After (date_is_on_or_after)."
508406
509434
  },
508407
509435
  {
508408
- "name": "Is Not Empty",
508409
- "value": "not_empty",
508410
- "description": "Field is not empty"
509436
+ "name": "Date After Days Ago (Deprecated)",
509437
+ "value": "date_after_days_ago",
509438
+ "description": "Date is after X days ago. Format: `UTC?10`. Prefer using Date Is On Or After with NR_DAYS_AGO."
508411
509439
  },
508412
509440
  {
508413
- "name": "Is True",
508414
- "value": "boolean",
508415
- "description": "Boolean field is true"
509441
+ "name": "Date Within Days (Deprecated)",
509442
+ "value": "date_within_days",
509443
+ "description": "Date is within N days from today. Format: `UTC?30`. Prefer using Date Is Within (date_is_within)."
508416
509444
  },
508417
509445
  {
508418
- "name": "Link Row Does Not Have",
508419
- "value": "link_row_has_not",
508420
- "description": "Field does not have link ID"
509446
+ "name": "Date Within Weeks (Deprecated)",
509447
+ "value": "date_within_weeks",
509448
+ "description": "Date is within N weeks from today. Format: `UTC?4`. Prefer using Date Is Within."
508421
509449
  },
508422
509450
  {
508423
- "name": "Link Row Has",
508424
- "value": "link_row_has",
508425
- "description": "Field has link ID"
509451
+ "name": "Date Within Months (Deprecated)",
509452
+ "value": "date_within_months",
509453
+ "description": "Date is within N months from today. Format: `UTC?3`. Prefer using Date Is Within."
508426
509454
  },
508427
509455
  {
508428
- "name": "Lower Than",
508429
- "value": "lower_than",
508430
- "description": "Field is lower than value"
509456
+ "name": "Date Equals Days Ago (Deprecated)",
509457
+ "value": "date_equals_days_ago",
509458
+ "description": "Date is exactly N days ago. Format: `UTC?5`."
508431
509459
  },
508432
509460
  {
508433
- "name": "Not Equal",
508434
- "value": "not_equal",
508435
- "description": "Field is not equal to value"
509461
+ "name": "Date Equals Months Ago (Deprecated)",
509462
+ "value": "date_equals_months_ago",
509463
+ "description": "Date is exactly N months ago. Format: `UTC?2`."
509464
+ },
509465
+ {
509466
+ "name": "Date Equals Years Ago (Deprecated)",
509467
+ "value": "date_equals_years_ago",
509468
+ "description": "Date is exactly N years ago. Format: `UTC?1`."
509469
+ },
509470
+ {
509471
+ "name": "Date Before Today (Deprecated)",
509472
+ "value": "date_before_today",
509473
+ "description": "Date is before today. Format: `UTC`. Prefer using Date Is Before with operator TODAY."
509474
+ },
509475
+ {
509476
+ "name": "Date After Today (Deprecated)",
509477
+ "value": "date_after_today",
509478
+ "description": "Date is after today. Format: `UTC`. Prefer using Date Is After with operator TODAY."
509479
+ },
509480
+ {
509481
+ "name": "Date Equals Current Week (Deprecated)",
509482
+ "value": "date_equals_week",
509483
+ "description": "Date is within current week. Format: `UTC`. Prefer using Date Is with THIS_WEEK."
509484
+ },
509485
+ {
509486
+ "name": "Filename Contains",
509487
+ "value": "filename_contains",
509488
+ "description": "Filename contains the given substring"
509489
+ },
509490
+ {
509491
+ "name": "Has File Type",
509492
+ "value": "has_file_type",
509493
+ "description": "File type is \"image\" or \"document\""
509494
+ },
509495
+ {
509496
+ "name": "Files Lower Than",
509497
+ "value": "files_lower_than",
509498
+ "description": "Number of attached files is less than the given number"
508436
509499
  },
508437
509500
  {
508438
509501
  "name": "Single Select Equal",
508439
509502
  "value": "single_select_equal",
508440
- "description": "Field selected option is value"
509503
+ "description": "Single select option matches given option ID"
508441
509504
  },
508442
509505
  {
508443
509506
  "name": "Single Select Not Equal",
508444
509507
  "value": "single_select_not_equal",
508445
- "description": "Field selected option is not value"
509508
+ "description": "Single select option does not match given option ID"
509509
+ },
509510
+ {
509511
+ "name": "Single Select Is Any Of",
509512
+ "value": "single_select_is_any_of",
509513
+ "description": "Single select option is one of the given option IDs. Format: `1,2,3`."
509514
+ },
509515
+ {
509516
+ "name": "Single Select Is None Of",
509517
+ "value": "single_select_is_none_of",
509518
+ "description": "Single select option is none of the given option IDs. Format: `1,2,3`."
509519
+ },
509520
+ {
509521
+ "name": "Multiple Select Has",
509522
+ "value": "multiple_select_has",
509523
+ "description": "Multiple select has at least one of the given option IDs. Format: `1,2,3`."
509524
+ },
509525
+ {
509526
+ "name": "Multiple Select Has Not",
509527
+ "value": "multiple_select_has_not",
509528
+ "description": "Multiple select has none of the given option IDs. Format: `1,2,3`."
509529
+ },
509530
+ {
509531
+ "name": "Collaborators Has",
509532
+ "value": "multiple_collaborators_has",
509533
+ "description": "Field includes the given user ID"
509534
+ },
509535
+ {
509536
+ "name": "Collaborators Has Not",
509537
+ "value": "multiple_collaborators_has_not",
509538
+ "description": "Field excludes the given user ID"
509539
+ },
509540
+ {
509541
+ "name": "User Is",
509542
+ "value": "user_is",
509543
+ "description": "Row created by or last modified by the given user ID"
509544
+ },
509545
+ {
509546
+ "name": "User Is Not",
509547
+ "value": "user_is_not",
509548
+ "description": "Row was not created or modified by the given user ID"
509549
+ },
509550
+ {
509551
+ "name": "Link Row Has",
509552
+ "value": "link_row_has",
509553
+ "description": "Field links to the given row ID"
509554
+ },
509555
+ {
509556
+ "name": "Link Row Has Not",
509557
+ "value": "link_row_has_not",
509558
+ "description": "Field does not link to the given row ID"
509559
+ },
509560
+ {
509561
+ "name": "Link Row Contains",
509562
+ "value": "link_row_contains",
509563
+ "description": "Linked row value contains the given text (case-insensitive)"
509564
+ },
509565
+ {
509566
+ "name": "Link Row Not Contains",
509567
+ "value": "link_row_not_contains",
509568
+ "description": "Linked row value does not contain the given text"
509569
+ },
509570
+ {
509571
+ "name": "Is True",
509572
+ "value": "boolean",
509573
+ "description": "Boolean field is true (false if not set)"
509574
+ },
509575
+ {
509576
+ "name": "Is Empty",
509577
+ "value": "empty",
509578
+ "description": "Field is empty (null or blank)"
509579
+ },
509580
+ {
509581
+ "name": "Is Not Empty",
509582
+ "value": "not_empty",
509583
+ "description": "Field is not empty"
508446
509584
  }
508447
509585
  ],
508448
509586
  "default": "equal"
@@ -581692,7 +582830,7 @@
581692
582830
  "name": "startDate",
581693
582831
  "type": "dateTime",
581694
582832
  "required": true,
581695
- "default": "2026-03-09T00:00:00.000+00:00",
582833
+ "default": "2026-03-16T00:00:00.000+00:00",
581696
582834
  "displayOptions": {
581697
582835
  "show": {
581698
582836
  "resource": [
@@ -581715,7 +582853,7 @@
581715
582853
  "name": "endDate",
581716
582854
  "type": "dateTime",
581717
582855
  "required": true,
581718
- "default": "2026-03-16T00:00:00.000+00:00",
582856
+ "default": "2026-03-23T00:00:00.000+00:00",
581719
582857
  "displayOptions": {
581720
582858
  "show": {
581721
582859
  "resource": [
@@ -583062,7 +584200,7 @@
583062
584200
  "name": "startDate",
583063
584201
  "type": "dateTime",
583064
584202
  "required": true,
583065
- "default": "2026-03-09T00:00:00.000+00:00",
584203
+ "default": "2026-03-16T00:00:00.000+00:00",
583066
584204
  "displayOptions": {
583067
584205
  "show": {
583068
584206
  "resource": [
@@ -583085,7 +584223,7 @@
583085
584223
  "name": "endDate",
583086
584224
  "type": "dateTime",
583087
584225
  "required": true,
583088
- "default": "2026-03-16T00:00:00.000+00:00",
584226
+ "default": "2026-03-23T00:00:00.000+00:00",
583089
584227
  "displayOptions": {
583090
584228
  "show": {
583091
584229
  "resource": [
@@ -678125,7 +679263,7 @@
678125
679263
  "displayName": "Start",
678126
679264
  "name": "startDateTime",
678127
679265
  "type": "dateTime",
678128
- "default": "2026-03-17T20:01:45.175+00:00",
679266
+ "default": "2026-03-24T17:21:59.448+00:00",
678129
679267
  "required": true,
678130
679268
  "displayOptions": {
678131
679269
  "show": {
@@ -678143,7 +679281,7 @@
678143
679281
  "name": "endDateTime",
678144
679282
  "type": "dateTime",
678145
679283
  "required": true,
678146
- "default": "2026-03-17T20:31:45.175+00:00",
679284
+ "default": "2026-03-24T17:51:59.448+00:00",
678147
679285
  "displayOptions": {
678148
679286
  "show": {
678149
679287
  "resource": [
@@ -707519,14 +708657,14 @@
707519
708657
  {
707520
708658
  "type": "regex",
707521
708659
  "properties": {
707522
- "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9-]{2,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}).*",
708660
+ "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9_-]{2,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}).*",
707523
708661
  "errorMessage": "Not a valid Notion Block URL"
707524
708662
  }
707525
708663
  }
707526
708664
  ],
707527
708665
  "extractValue": {
707528
708666
  "type": "regex",
707529
- "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9-]{2,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12})"
708667
+ "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9_-]{2,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12})"
707530
708668
  }
707531
708669
  },
707532
708670
  {
@@ -707590,7 +708728,7 @@
707590
708728
  {
707591
708729
  "type": "regex",
707592
708730
  "properties": {
707593
- "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9-]{2,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}).*",
708731
+ "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9_-]{2,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}).*",
707594
708732
  "errorMessage": "Not a valid Notion Block URL"
707595
708733
  }
707596
708734
  }
@@ -711418,14 +712556,14 @@
711418
712556
  {
711419
712557
  "type": "regex",
711420
712558
  "properties": {
711421
- "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9-]{2,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}).*",
712559
+ "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9_-]{2,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}).*",
711422
712560
  "errorMessage": "Not a valid Notion Block URL"
711423
712561
  }
711424
712562
  }
711425
712563
  ],
711426
712564
  "extractValue": {
711427
712565
  "type": "regex",
711428
- "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9-]{2,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12})"
712566
+ "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9_-]{2,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12})"
711429
712567
  }
711430
712568
  },
711431
712569
  {
@@ -711489,7 +712627,7 @@
711489
712627
  {
711490
712628
  "type": "regex",
711491
712629
  "properties": {
711492
- "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9-]{2,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}).*",
712630
+ "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9_-]{2,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}).*",
711493
712631
  "errorMessage": "Not a valid Notion Block URL"
711494
712632
  }
711495
712633
  }
@@ -716811,14 +717949,14 @@
716811
717949
  {
716812
717950
  "type": "regex",
716813
717951
  "properties": {
716814
- "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}).*",
717952
+ "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9_-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}).*",
716815
717953
  "errorMessage": "Not a valid Notion Database Page URL"
716816
717954
  }
716817
717955
  }
716818
717956
  ],
716819
717957
  "extractValue": {
716820
717958
  "type": "regex",
716821
- "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12})"
717959
+ "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9_-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12})"
716822
717960
  }
716823
717961
  },
716824
717962
  {
@@ -717763,14 +718901,14 @@
717763
718901
  {
717764
718902
  "type": "regex",
717765
718903
  "properties": {
717766
- "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}).*",
718904
+ "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9_-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}).*",
717767
718905
  "errorMessage": "Not a valid Notion Database Page URL"
717768
718906
  }
717769
718907
  }
717770
718908
  ],
717771
718909
  "extractValue": {
717772
718910
  "type": "regex",
717773
- "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12})"
718911
+ "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9_-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12})"
717774
718912
  }
717775
718913
  },
717776
718914
  {
@@ -717862,14 +719000,14 @@
717862
719000
  {
717863
719001
  "type": "regex",
717864
719002
  "properties": {
717865
- "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}).*",
719003
+ "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9_-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}).*",
717866
719004
  "errorMessage": "Not a valid Notion Database Page URL"
717867
719005
  }
717868
719006
  }
717869
719007
  ],
717870
719008
  "extractValue": {
717871
719009
  "type": "regex",
717872
- "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12})"
719010
+ "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9_-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12})"
717873
719011
  }
717874
719012
  },
717875
719013
  {
@@ -724234,14 +725372,14 @@
724234
725372
  {
724235
725373
  "type": "regex",
724236
725374
  "properties": {
724237
- "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}).*",
725375
+ "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9_-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}).*",
724238
725376
  "errorMessage": "Not a valid Notion Database Page URL"
724239
725377
  }
724240
725378
  }
724241
725379
  ],
724242
725380
  "extractValue": {
724243
725381
  "type": "regex",
724244
- "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12})"
725382
+ "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9_-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12})"
724245
725383
  }
724246
725384
  },
724247
725385
  {
@@ -724323,14 +725461,14 @@
724323
725461
  {
724324
725462
  "type": "regex",
724325
725463
  "properties": {
724326
- "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}).*",
725464
+ "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9_-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}).*",
724327
725465
  "errorMessage": "Not a valid Notion Database Page URL"
724328
725466
  }
724329
725467
  }
724330
725468
  ],
724331
725469
  "extractValue": {
724332
725470
  "type": "regex",
724333
- "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12})"
725471
+ "regex": "(?:https|http)://www\\.notion\\.so/(?:[a-z0-9-]{2,}/)?(?:[a-zA-Z0-9_-]{1,}-)?([0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12})"
724334
725472
  }
724335
725473
  },
724336
725474
  {