@dotcms/ai 1.5.5-next.2270 → 1.5.5-next.2290

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.
Files changed (3) hide show
  1. package/package.json +1 -1
  2. package/spec.cjs.js +30 -30
  3. package/spec.esm.js +30 -30
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dotcms/ai",
3
- "version": "1.5.5-next.2270",
3
+ "version": "1.5.5-next.2290",
4
4
  "description": "The dotCMS agentic runtime — run model-written or human-written code safely against a dotCMS instance, with auth and policy owned in one place.",
5
5
  "repository": {
6
6
  "type": "git",
package/spec.cjs.js CHANGED
@@ -1747,11 +1747,11 @@ var paths = {
1747
1747
  description: "Sort direction: choose between ascending or descending.",
1748
1748
  schema: {
1749
1749
  type: "string",
1750
- "default": "ASC",
1751
1750
  "enum": [
1752
1751
  "ASC",
1753
1752
  "DESC"
1754
- ]
1753
+ ],
1754
+ "default": "ASC"
1755
1755
  }
1756
1756
  },
1757
1757
  {
@@ -10919,11 +10919,11 @@ var paths = {
10919
10919
  description: "*Optional.* Case-insensitive parameter indicating how results are to be displayed.\n\nIn listing mode, all associated actions are returned; in editing mode (the default), it returns only the actions accessible to the contentlet's current workflow step.",
10920
10920
  schema: {
10921
10921
  type: "string",
10922
- "default": "EDITING",
10923
10922
  "enum": [
10924
10923
  "EDITING",
10925
10924
  "LISTING"
10926
- ]
10925
+ ],
10926
+ "default": "EDITING"
10927
10927
  }
10928
10928
  }
10929
10929
  ],
@@ -13597,6 +13597,15 @@ var paths = {
13597
13597
  hasOnlyBatchActionlet: {
13598
13598
  type: "boolean"
13599
13599
  },
13600
+ hasSaveActionlet: {
13601
+ type: "boolean"
13602
+ },
13603
+ hasDeleteActionlet: {
13604
+ type: "boolean"
13605
+ },
13606
+ hasResetActionlet: {
13607
+ type: "boolean"
13608
+ },
13600
13609
  hasPublishActionlet: {
13601
13610
  type: "boolean"
13602
13611
  },
@@ -13623,15 +13632,6 @@ var paths = {
13623
13632
  },
13624
13633
  hasMoveActionletActionlet: {
13625
13634
  type: "boolean"
13626
- },
13627
- hasSaveActionlet: {
13628
- type: "boolean"
13629
- },
13630
- hasDeleteActionlet: {
13631
- type: "boolean"
13632
- },
13633
- hasResetActionlet: {
13634
- type: "boolean"
13635
13635
  }
13636
13636
  }
13637
13637
  }
@@ -13871,6 +13871,15 @@ var paths = {
13871
13871
  hasOnlyBatchActionlet: {
13872
13872
  type: "boolean"
13873
13873
  },
13874
+ hasSaveActionlet: {
13875
+ type: "boolean"
13876
+ },
13877
+ hasDeleteActionlet: {
13878
+ type: "boolean"
13879
+ },
13880
+ hasResetActionlet: {
13881
+ type: "boolean"
13882
+ },
13874
13883
  hasPublishActionlet: {
13875
13884
  type: "boolean"
13876
13885
  },
@@ -13897,15 +13906,6 @@ var paths = {
13897
13906
  },
13898
13907
  hasMoveActionletActionlet: {
13899
13908
  type: "boolean"
13900
- },
13901
- hasSaveActionlet: {
13902
- type: "boolean"
13903
- },
13904
- hasDeleteActionlet: {
13905
- type: "boolean"
13906
- },
13907
- hasResetActionlet: {
13908
- type: "boolean"
13909
13909
  }
13910
13910
  }
13911
13911
  },
@@ -13942,10 +13942,10 @@ var paths = {
13942
13942
  type: {
13943
13943
  type: "string"
13944
13944
  },
13945
- individualPermission: {
13945
+ bitPermission: {
13946
13946
  type: "boolean"
13947
13947
  },
13948
- bitPermission: {
13948
+ individualPermission: {
13949
13949
  type: "boolean"
13950
13950
  },
13951
13951
  roleId: {
@@ -14430,11 +14430,11 @@ var paths = {
14430
14430
  description: "Asset version to retrieve. Accepted values: working (default), live.",
14431
14431
  schema: {
14432
14432
  type: "string",
14433
- "default": "working",
14434
14433
  "enum": [
14435
14434
  "working",
14436
14435
  "live"
14437
- ]
14436
+ ],
14437
+ "default": "working"
14438
14438
  },
14439
14439
  example: "working"
14440
14440
  }
@@ -14512,11 +14512,11 @@ var paths = {
14512
14512
  description: "Asset version to retrieve. Accepted values: working (default), live.",
14513
14513
  schema: {
14514
14514
  type: "string",
14515
- "default": "working",
14516
14515
  "enum": [
14517
14516
  "working",
14518
14517
  "live"
14519
- ]
14518
+ ],
14519
+ "default": "working"
14520
14520
  },
14521
14521
  example: "working"
14522
14522
  }
@@ -15619,11 +15619,11 @@ var paths = {
15619
15619
  description: "Export format",
15620
15620
  schema: {
15621
15621
  type: "string",
15622
- "default": "csv",
15623
15622
  "enum": [
15624
15623
  "csv",
15625
15624
  "json"
15626
- ]
15625
+ ],
15626
+ "default": "csv"
15627
15627
  },
15628
15628
  example: "csv"
15629
15629
  },
package/spec.esm.js CHANGED
@@ -1745,11 +1745,11 @@ var paths = {
1745
1745
  description: "Sort direction: choose between ascending or descending.",
1746
1746
  schema: {
1747
1747
  type: "string",
1748
- "default": "ASC",
1749
1748
  "enum": [
1750
1749
  "ASC",
1751
1750
  "DESC"
1752
- ]
1751
+ ],
1752
+ "default": "ASC"
1753
1753
  }
1754
1754
  },
1755
1755
  {
@@ -10917,11 +10917,11 @@ var paths = {
10917
10917
  description: "*Optional.* Case-insensitive parameter indicating how results are to be displayed.\n\nIn listing mode, all associated actions are returned; in editing mode (the default), it returns only the actions accessible to the contentlet's current workflow step.",
10918
10918
  schema: {
10919
10919
  type: "string",
10920
- "default": "EDITING",
10921
10920
  "enum": [
10922
10921
  "EDITING",
10923
10922
  "LISTING"
10924
- ]
10923
+ ],
10924
+ "default": "EDITING"
10925
10925
  }
10926
10926
  }
10927
10927
  ],
@@ -13595,6 +13595,15 @@ var paths = {
13595
13595
  hasOnlyBatchActionlet: {
13596
13596
  type: "boolean"
13597
13597
  },
13598
+ hasSaveActionlet: {
13599
+ type: "boolean"
13600
+ },
13601
+ hasDeleteActionlet: {
13602
+ type: "boolean"
13603
+ },
13604
+ hasResetActionlet: {
13605
+ type: "boolean"
13606
+ },
13598
13607
  hasPublishActionlet: {
13599
13608
  type: "boolean"
13600
13609
  },
@@ -13621,15 +13630,6 @@ var paths = {
13621
13630
  },
13622
13631
  hasMoveActionletActionlet: {
13623
13632
  type: "boolean"
13624
- },
13625
- hasSaveActionlet: {
13626
- type: "boolean"
13627
- },
13628
- hasDeleteActionlet: {
13629
- type: "boolean"
13630
- },
13631
- hasResetActionlet: {
13632
- type: "boolean"
13633
13633
  }
13634
13634
  }
13635
13635
  }
@@ -13869,6 +13869,15 @@ var paths = {
13869
13869
  hasOnlyBatchActionlet: {
13870
13870
  type: "boolean"
13871
13871
  },
13872
+ hasSaveActionlet: {
13873
+ type: "boolean"
13874
+ },
13875
+ hasDeleteActionlet: {
13876
+ type: "boolean"
13877
+ },
13878
+ hasResetActionlet: {
13879
+ type: "boolean"
13880
+ },
13872
13881
  hasPublishActionlet: {
13873
13882
  type: "boolean"
13874
13883
  },
@@ -13895,15 +13904,6 @@ var paths = {
13895
13904
  },
13896
13905
  hasMoveActionletActionlet: {
13897
13906
  type: "boolean"
13898
- },
13899
- hasSaveActionlet: {
13900
- type: "boolean"
13901
- },
13902
- hasDeleteActionlet: {
13903
- type: "boolean"
13904
- },
13905
- hasResetActionlet: {
13906
- type: "boolean"
13907
13907
  }
13908
13908
  }
13909
13909
  },
@@ -13940,10 +13940,10 @@ var paths = {
13940
13940
  type: {
13941
13941
  type: "string"
13942
13942
  },
13943
- individualPermission: {
13943
+ bitPermission: {
13944
13944
  type: "boolean"
13945
13945
  },
13946
- bitPermission: {
13946
+ individualPermission: {
13947
13947
  type: "boolean"
13948
13948
  },
13949
13949
  roleId: {
@@ -14428,11 +14428,11 @@ var paths = {
14428
14428
  description: "Asset version to retrieve. Accepted values: working (default), live.",
14429
14429
  schema: {
14430
14430
  type: "string",
14431
- "default": "working",
14432
14431
  "enum": [
14433
14432
  "working",
14434
14433
  "live"
14435
- ]
14434
+ ],
14435
+ "default": "working"
14436
14436
  },
14437
14437
  example: "working"
14438
14438
  }
@@ -14510,11 +14510,11 @@ var paths = {
14510
14510
  description: "Asset version to retrieve. Accepted values: working (default), live.",
14511
14511
  schema: {
14512
14512
  type: "string",
14513
- "default": "working",
14514
14513
  "enum": [
14515
14514
  "working",
14516
14515
  "live"
14517
- ]
14516
+ ],
14517
+ "default": "working"
14518
14518
  },
14519
14519
  example: "working"
14520
14520
  }
@@ -15617,11 +15617,11 @@ var paths = {
15617
15617
  description: "Export format",
15618
15618
  schema: {
15619
15619
  type: "string",
15620
- "default": "csv",
15621
15620
  "enum": [
15622
15621
  "csv",
15623
15622
  "json"
15624
- ]
15623
+ ],
15624
+ "default": "csv"
15625
15625
  },
15626
15626
  example: "csv"
15627
15627
  },