@dotcms/ai 26.8.3-1 → 26.8.3-1-next.2478

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 +35 -17
  3. package/spec.esm.js +35 -17
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dotcms/ai",
3
- "version": "26.08.03-01",
3
+ "version": "26.8.3-1-next.2478",
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
  {
@@ -3254,11 +3254,11 @@ var paths = {
3254
3254
  description: "Column to sort by.",
3255
3255
  schema: {
3256
3256
  type: "string",
3257
- "default": "name",
3258
3257
  "enum": [
3259
3258
  "name",
3260
3259
  "mod_date"
3261
- ]
3260
+ ],
3261
+ "default": "name"
3262
3262
  }
3263
3263
  },
3264
3264
  {
@@ -3267,11 +3267,11 @@ var paths = {
3267
3267
  description: "Sort direction",
3268
3268
  schema: {
3269
3269
  type: "string",
3270
- "default": "ASC",
3271
3270
  "enum": [
3272
3271
  "ASC",
3273
3272
  "DESC"
3274
- ]
3273
+ ],
3274
+ "default": "ASC"
3275
3275
  }
3276
3276
  },
3277
3277
  {
@@ -9137,7 +9137,7 @@ var paths = {
9137
9137
  {
9138
9138
  name: "query",
9139
9139
  "in": "query",
9140
- description: "Filter users by full name or parts of it",
9140
+ description: "Filter users by user ID, first name, last name, email address, or full name -- or parts of any of them",
9141
9141
  schema: {
9142
9142
  type: "string"
9143
9143
  }
@@ -9211,6 +9211,17 @@ var paths = {
9211
9211
  type: "integer",
9212
9212
  format: "int32"
9213
9213
  }
9214
+ },
9215
+ {
9216
+ name: "roleKey",
9217
+ "in": "query",
9218
+ description: "Role key(s) to restrict results to users holding any of them; repeatable and/or comma-separated, e.g. roleKey=DOTCMS_BACK_END_USER",
9219
+ schema: {
9220
+ type: "array",
9221
+ items: {
9222
+ type: "string"
9223
+ }
9224
+ }
9214
9225
  }
9215
9226
  ],
9216
9227
  responses: {
@@ -9221,6 +9232,13 @@ var paths = {
9221
9232
  }
9222
9233
  }
9223
9234
  },
9235
+ "400": {
9236
+ description: "Bad request - a provided roleKey does not match any existing Role",
9237
+ content: {
9238
+ "application/json": {
9239
+ }
9240
+ }
9241
+ },
9224
9242
  "401": {
9225
9243
  description: "Unauthorized - authentication required",
9226
9244
  content: {
@@ -10980,11 +10998,11 @@ var paths = {
10980
10998
  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.",
10981
10999
  schema: {
10982
11000
  type: "string",
10983
- "default": "EDITING",
10984
11001
  "enum": [
10985
11002
  "EDITING",
10986
11003
  "LISTING"
10987
- ]
11004
+ ],
11005
+ "default": "EDITING"
10988
11006
  }
10989
11007
  }
10990
11008
  ],
@@ -14003,10 +14021,10 @@ var paths = {
14003
14021
  type: {
14004
14022
  type: "string"
14005
14023
  },
14006
- individualPermission: {
14024
+ bitPermission: {
14007
14025
  type: "boolean"
14008
14026
  },
14009
- bitPermission: {
14027
+ individualPermission: {
14010
14028
  type: "boolean"
14011
14029
  },
14012
14030
  roleId: {
@@ -14491,11 +14509,11 @@ var paths = {
14491
14509
  description: "Asset version to retrieve. Accepted values: working (default), live.",
14492
14510
  schema: {
14493
14511
  type: "string",
14494
- "default": "working",
14495
14512
  "enum": [
14496
14513
  "working",
14497
14514
  "live"
14498
- ]
14515
+ ],
14516
+ "default": "working"
14499
14517
  },
14500
14518
  example: "working"
14501
14519
  }
@@ -14573,11 +14591,11 @@ var paths = {
14573
14591
  description: "Asset version to retrieve. Accepted values: working (default), live.",
14574
14592
  schema: {
14575
14593
  type: "string",
14576
- "default": "working",
14577
14594
  "enum": [
14578
14595
  "working",
14579
14596
  "live"
14580
- ]
14597
+ ],
14598
+ "default": "working"
14581
14599
  },
14582
14600
  example: "working"
14583
14601
  }
@@ -15680,11 +15698,11 @@ var paths = {
15680
15698
  description: "Export format",
15681
15699
  schema: {
15682
15700
  type: "string",
15683
- "default": "csv",
15684
15701
  "enum": [
15685
15702
  "csv",
15686
15703
  "json"
15687
- ]
15704
+ ],
15705
+ "default": "csv"
15688
15706
  },
15689
15707
  example: "csv"
15690
15708
  },
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
  {
@@ -3252,11 +3252,11 @@ var paths = {
3252
3252
  description: "Column to sort by.",
3253
3253
  schema: {
3254
3254
  type: "string",
3255
- "default": "name",
3256
3255
  "enum": [
3257
3256
  "name",
3258
3257
  "mod_date"
3259
- ]
3258
+ ],
3259
+ "default": "name"
3260
3260
  }
3261
3261
  },
3262
3262
  {
@@ -3265,11 +3265,11 @@ var paths = {
3265
3265
  description: "Sort direction",
3266
3266
  schema: {
3267
3267
  type: "string",
3268
- "default": "ASC",
3269
3268
  "enum": [
3270
3269
  "ASC",
3271
3270
  "DESC"
3272
- ]
3271
+ ],
3272
+ "default": "ASC"
3273
3273
  }
3274
3274
  },
3275
3275
  {
@@ -9135,7 +9135,7 @@ var paths = {
9135
9135
  {
9136
9136
  name: "query",
9137
9137
  "in": "query",
9138
- description: "Filter users by full name or parts of it",
9138
+ description: "Filter users by user ID, first name, last name, email address, or full name -- or parts of any of them",
9139
9139
  schema: {
9140
9140
  type: "string"
9141
9141
  }
@@ -9209,6 +9209,17 @@ var paths = {
9209
9209
  type: "integer",
9210
9210
  format: "int32"
9211
9211
  }
9212
+ },
9213
+ {
9214
+ name: "roleKey",
9215
+ "in": "query",
9216
+ description: "Role key(s) to restrict results to users holding any of them; repeatable and/or comma-separated, e.g. roleKey=DOTCMS_BACK_END_USER",
9217
+ schema: {
9218
+ type: "array",
9219
+ items: {
9220
+ type: "string"
9221
+ }
9222
+ }
9212
9223
  }
9213
9224
  ],
9214
9225
  responses: {
@@ -9219,6 +9230,13 @@ var paths = {
9219
9230
  }
9220
9231
  }
9221
9232
  },
9233
+ "400": {
9234
+ description: "Bad request - a provided roleKey does not match any existing Role",
9235
+ content: {
9236
+ "application/json": {
9237
+ }
9238
+ }
9239
+ },
9222
9240
  "401": {
9223
9241
  description: "Unauthorized - authentication required",
9224
9242
  content: {
@@ -10978,11 +10996,11 @@ var paths = {
10978
10996
  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.",
10979
10997
  schema: {
10980
10998
  type: "string",
10981
- "default": "EDITING",
10982
10999
  "enum": [
10983
11000
  "EDITING",
10984
11001
  "LISTING"
10985
- ]
11002
+ ],
11003
+ "default": "EDITING"
10986
11004
  }
10987
11005
  }
10988
11006
  ],
@@ -14001,10 +14019,10 @@ var paths = {
14001
14019
  type: {
14002
14020
  type: "string"
14003
14021
  },
14004
- individualPermission: {
14022
+ bitPermission: {
14005
14023
  type: "boolean"
14006
14024
  },
14007
- bitPermission: {
14025
+ individualPermission: {
14008
14026
  type: "boolean"
14009
14027
  },
14010
14028
  roleId: {
@@ -14489,11 +14507,11 @@ var paths = {
14489
14507
  description: "Asset version to retrieve. Accepted values: working (default), live.",
14490
14508
  schema: {
14491
14509
  type: "string",
14492
- "default": "working",
14493
14510
  "enum": [
14494
14511
  "working",
14495
14512
  "live"
14496
- ]
14513
+ ],
14514
+ "default": "working"
14497
14515
  },
14498
14516
  example: "working"
14499
14517
  }
@@ -14571,11 +14589,11 @@ var paths = {
14571
14589
  description: "Asset version to retrieve. Accepted values: working (default), live.",
14572
14590
  schema: {
14573
14591
  type: "string",
14574
- "default": "working",
14575
14592
  "enum": [
14576
14593
  "working",
14577
14594
  "live"
14578
- ]
14595
+ ],
14596
+ "default": "working"
14579
14597
  },
14580
14598
  example: "working"
14581
14599
  }
@@ -15678,11 +15696,11 @@ var paths = {
15678
15696
  description: "Export format",
15679
15697
  schema: {
15680
15698
  type: "string",
15681
- "default": "csv",
15682
15699
  "enum": [
15683
15700
  "csv",
15684
15701
  "json"
15685
- ]
15702
+ ],
15703
+ "default": "csv"
15686
15704
  },
15687
15705
  example: "csv"
15688
15706
  },