@botpress/api 1.43.0 → 1.45.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2635,7 +2635,7 @@ export const state = {
2635
2635
  "title": "Botpress API",
2636
2636
  "description": "API for Botpress Cloud",
2637
2637
  "server": "https://api.botpress.cloud",
2638
- "version": "1.43.0",
2638
+ "version": "1.45.0",
2639
2639
  "prefix": "v1"
2640
2640
  },
2641
2641
  "errors": [
@@ -3063,6 +3063,14 @@ export const state = {
3063
3063
  "minLength": 28,
3064
3064
  "maxLength": 36
3065
3065
  },
3066
+ "integrationAlias": {
3067
+ "type": "string",
3068
+ "maxLength": 200
3069
+ },
3070
+ "integrationInterfaceAlias": {
3071
+ "type": "string",
3072
+ "maxLength": 200
3073
+ },
3066
3074
  "interfaceId": {
3067
3075
  "type": "string",
3068
3076
  "minLength": 28,
@@ -3071,12 +3079,36 @@ export const state = {
3071
3079
  },
3072
3080
  "required": [
3073
3081
  "integrationId",
3082
+ "integrationAlias",
3074
3083
  "interfaceId"
3075
3084
  ],
3076
3085
  "additionalProperties": false
3077
3086
  },
3078
3087
  "description": "A mapping of plugin interface aliases to their backing integrations"
3079
3088
  },
3089
+ "integrations": {
3090
+ "type": "object",
3091
+ "additionalProperties": {
3092
+ "type": "object",
3093
+ "properties": {
3094
+ "integrationId": {
3095
+ "type": "string",
3096
+ "minLength": 28,
3097
+ "maxLength": 36
3098
+ },
3099
+ "integrationAlias": {
3100
+ "type": "string",
3101
+ "maxLength": 200
3102
+ }
3103
+ },
3104
+ "required": [
3105
+ "integrationId",
3106
+ "integrationAlias"
3107
+ ],
3108
+ "additionalProperties": false
3109
+ },
3110
+ "description": "A mapping of plugin integration aliases to their backing integrations"
3111
+ },
3080
3112
  "id": {
3081
3113
  "type": "string",
3082
3114
  "minLength": 28,
package/src/gen/state.ts CHANGED
@@ -7621,6 +7621,14 @@ export const state = {
7621
7621
  "properties": {
7622
7622
  "integrationId": {
7623
7623
  "type": "string"
7624
+ },
7625
+ "integrationAlias": {
7626
+ "type": "string",
7627
+ "description": "When an alias is provided, the plugin will use the integration corresponding to this alias. If not provided, the first integration matching the integrationId will be used."
7628
+ },
7629
+ "integrationInterfaceAlias": {
7630
+ "type": "string",
7631
+ "description": "When an alias is provided, the plugin will use the integration interface corresponding to this alias."
7624
7632
  }
7625
7633
  },
7626
7634
  "required": [
@@ -7629,6 +7637,26 @@ export const state = {
7629
7637
  "additionalProperties": false
7630
7638
  },
7631
7639
  "description": "A mapping of plugin interface aliases to their backing integrations"
7640
+ },
7641
+ "integrations": {
7642
+ "type": "object",
7643
+ "additionalProperties": {
7644
+ "type": "object",
7645
+ "properties": {
7646
+ "integrationId": {
7647
+ "type": "string"
7648
+ },
7649
+ "integrationAlias": {
7650
+ "type": "string"
7651
+ }
7652
+ },
7653
+ "required": [
7654
+ "integrationId",
7655
+ "integrationAlias"
7656
+ ],
7657
+ "additionalProperties": false
7658
+ },
7659
+ "description": "A mapping of plugin integration aliases to their backing integrations"
7632
7660
  }
7633
7661
  },
7634
7662
  "required": [
@@ -19333,6 +19361,13 @@ export const state = {
19333
19361
  "maxLength": 1024,
19334
19362
  "description": "Search term to apply to the row search. When using this parameter, some rows which doesn't match the search term will be returned, use the similarity field to know how much the row matches the search term. "
19335
19363
  },
19364
+ "select": {
19365
+ "type": "array",
19366
+ "items": {
19367
+ "type": "string"
19368
+ },
19369
+ "description": "Specify which columns to return in the response. Supports both top-level columns (e.g., \"name\") and nested attributes using dot notation (e.g., \"attributes.price\"). System columns (id, createdAt, updatedAt, etc.) are always included. If omitted, all columns are returned."
19370
+ },
19336
19371
  "orderBy": {
19337
19372
  "default": "id",
19338
19373
  "type": "string",
@@ -19703,7 +19738,7 @@ export const state = {
19703
19738
  "title": "Botpress API",
19704
19739
  "description": "API for Botpress Cloud",
19705
19740
  "server": "https://api.botpress.cloud",
19706
- "version": "1.43.0",
19741
+ "version": "1.45.0",
19707
19742
  "prefix": "v1"
19708
19743
  },
19709
19744
  "errors": [
@@ -20321,6 +20356,14 @@ export const state = {
20321
20356
  "minLength": 28,
20322
20357
  "maxLength": 36
20323
20358
  },
20359
+ "integrationAlias": {
20360
+ "type": "string",
20361
+ "maxLength": 200
20362
+ },
20363
+ "integrationInterfaceAlias": {
20364
+ "type": "string",
20365
+ "maxLength": 200
20366
+ },
20324
20367
  "interfaceId": {
20325
20368
  "type": "string",
20326
20369
  "minLength": 28,
@@ -20329,12 +20372,36 @@ export const state = {
20329
20372
  },
20330
20373
  "required": [
20331
20374
  "integrationId",
20375
+ "integrationAlias",
20332
20376
  "interfaceId"
20333
20377
  ],
20334
20378
  "additionalProperties": false
20335
20379
  },
20336
20380
  "description": "A mapping of plugin interface aliases to their backing integrations"
20337
20381
  },
20382
+ "integrations": {
20383
+ "type": "object",
20384
+ "additionalProperties": {
20385
+ "type": "object",
20386
+ "properties": {
20387
+ "integrationId": {
20388
+ "type": "string",
20389
+ "minLength": 28,
20390
+ "maxLength": 36
20391
+ },
20392
+ "integrationAlias": {
20393
+ "type": "string",
20394
+ "maxLength": 200
20395
+ }
20396
+ },
20397
+ "required": [
20398
+ "integrationId",
20399
+ "integrationAlias"
20400
+ ],
20401
+ "additionalProperties": false
20402
+ },
20403
+ "description": "A mapping of plugin integration aliases to their backing integrations"
20404
+ },
20338
20405
  "id": {
20339
20406
  "type": "string",
20340
20407
  "minLength": 28,