@botpress/api 1.28.1 → 1.29.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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @botpress/api@1.28.1 openapi /home/runner/work/skynet/skynet/packages/public-api
2
+ > @botpress/api@1.29.0 openapi /home/runner/work/skynet/skynet/packages/public-api
3
3
  > es-node openapi/generator.ts && pnpm run build
4
4
 
5
5
  Generating openapi content
@@ -34,18 +34,18 @@ Saving openapi.json file
34
34
 
35
35
  info: Exit with code {"category":"system","code":0,"label":"Shutdown"}
36
36
 
37
- > @botpress/api@1.28.1 build /home/runner/work/skynet/skynet/packages/public-api
37
+ > @botpress/api@1.29.0 build /home/runner/work/skynet/skynet/packages/public-api
38
38
  > pnpm run build:type && pnpm run build:impl
39
39
 
40
40
 
41
- > @botpress/api@1.28.1 build:type /home/runner/work/skynet/skynet/packages/public-api
41
+ > @botpress/api@1.29.0 build:type /home/runner/work/skynet/skynet/packages/public-api
42
42
  > tsc -p tsconfig.package.json --emitDeclarationOnly
43
43
 
44
44
 
45
- > @botpress/api@1.28.1 build:impl /home/runner/work/skynet/skynet/packages/public-api
45
+ > @botpress/api@1.29.0 build:impl /home/runner/work/skynet/skynet/packages/public-api
46
46
  > esbuild --bundle --platform=node --outfile=dist/index.js src/index.ts
47
47
 
48
48
 
49
- dist/index.js 14.0mb ⚠️
49
+ dist/index.js 14.1mb ⚠️
50
50
 
51
- ⚡ Done in 899ms
51
+ ⚡ Done in 904ms
package/dist/index.js CHANGED
@@ -285326,7 +285326,7 @@ var state = {
285326
285326
  "title": "Botpress API",
285327
285327
  "description": "API for Botpress Cloud",
285328
285328
  "server": "https://api.botpress.cloud",
285329
- "version": "1.28.1",
285329
+ "version": "1.29.0",
285330
285330
  "prefix": "v1"
285331
285331
  },
285332
285332
  "errors": [
@@ -285807,6 +285807,10 @@ var state = {
285807
285807
  },
285808
285808
  "description": "A mapping of plugin aliases to their configuration"
285809
285809
  },
285810
+ "maxExecutionTime": {
285811
+ "type": "number",
285812
+ "description": "Maximum execution time of the bot (in seconds)."
285813
+ },
285810
285814
  "user": {
285811
285815
  "type": "object",
285812
285816
  "properties": {
@@ -286258,6 +286262,10 @@ var state = {
286258
286262
  },
286259
286263
  "additionalProperties": false
286260
286264
  },
286265
+ "maxExecutionTime": {
286266
+ "type": "number",
286267
+ "description": "Maximum execution time of the integration (in seconds)."
286268
+ },
286261
286269
  "url": {
286262
286270
  "type": "string",
286263
286271
  "maxLength": 2e3,
@@ -289984,6 +289992,10 @@ var state2 = {
289984
289992
  },
289985
289993
  "additionalProperties": false
289986
289994
  },
289995
+ "maxExecutionTime": {
289996
+ "type": "number",
289997
+ "description": "Maximum execution time of the integration (in seconds)."
289998
+ },
289987
289999
  "url": {
289988
290000
  "type": "string",
289989
290001
  "maxLength": 2e3,
@@ -290725,6 +290737,10 @@ var state2 = {
290725
290737
  },
290726
290738
  "additionalProperties": false
290727
290739
  },
290740
+ "maxExecutionTime": {
290741
+ "type": "number",
290742
+ "description": "Maximum execution time of the integration (in seconds)."
290743
+ },
290728
290744
  "url": {
290729
290745
  "type": "string",
290730
290746
  "maxLength": 2e3,
@@ -293876,6 +293892,10 @@ var state2 = {
293876
293892
  "blocked": {
293877
293893
  "type": "boolean"
293878
293894
  },
293895
+ "maxExecutionTime": {
293896
+ "type": "integer",
293897
+ "description": "Maximum execution time (in seconds)."
293898
+ },
293879
293899
  "alwaysAlive": {
293880
293900
  "type": "boolean",
293881
293901
  "description": "Indicates if the [Bot](#schema_bot) should be in always alive mode"
@@ -297359,6 +297379,72 @@ var state2 = {
297359
297379
  }
297360
297380
  }
297361
297381
  },
297382
+ "setWorkspacePreference": {
297383
+ "name": "setWorkspacePreference",
297384
+ "description": "Set a preference for the workspace",
297385
+ "method": "post",
297386
+ "path": "/v1/admin/workspaces/preferences/{key}",
297387
+ "section": "workspace",
297388
+ "disableDefaultParameters": {
297389
+ "x-workspace-id": true
297390
+ },
297391
+ "parameters": {
297392
+ "key": {
297393
+ "type": "string",
297394
+ "description": "Preference key",
297395
+ "in": "path"
297396
+ }
297397
+ },
297398
+ "requestBody": {
297399
+ "description": "Preference value",
297400
+ "schema": {
297401
+ "type": "object",
297402
+ "properties": {
297403
+ "value": {}
297404
+ },
297405
+ "title": "setWorkspacePreferenceBody",
297406
+ "additionalProperties": false
297407
+ }
297408
+ },
297409
+ "response": {
297410
+ "description": "Success",
297411
+ "schema": {
297412
+ "type": "object",
297413
+ "title": "setWorkspacePreferenceResponse",
297414
+ "additionalProperties": false
297415
+ }
297416
+ }
297417
+ },
297418
+ "getWorkspacePreference": {
297419
+ "name": "getWorkspacePreference",
297420
+ "description": "Get a preference of the workspace",
297421
+ "method": "get",
297422
+ "path": "/v1/admin/workspaces/preferences/{key}",
297423
+ "section": "workspace",
297424
+ "disableDefaultParameters": {
297425
+ "x-workspace-id": true
297426
+ },
297427
+ "parameters": {
297428
+ "key": {
297429
+ "type": "string",
297430
+ "description": "Preference key",
297431
+ "in": "path"
297432
+ }
297433
+ },
297434
+ "response": {
297435
+ "description": "Success",
297436
+ "schema": {
297437
+ "type": "object",
297438
+ "properties": {
297439
+ "value": {
297440
+ "nullable": true
297441
+ }
297442
+ },
297443
+ "title": "getWorkspacePreferenceResponse",
297444
+ "additionalProperties": false
297445
+ }
297446
+ }
297447
+ },
297362
297448
  "listWorkspaceMembers": {
297363
297449
  "name": "listWorkspaceMembers",
297364
297450
  "description": "Lists all the members in a workspace",
@@ -298328,9 +298414,21 @@ var state2 = {
298328
298414
  "additionalProperties": false
298329
298415
  }
298330
298416
  },
298331
- "messageStatusChangeNotificationsEnabled": {
298332
- "type": "boolean",
298333
- "description": "**EXPERIMENTAL** Whether the integration should be notified when the message status changes"
298417
+ "extraOperations": {
298418
+ "type": "object",
298419
+ "additionalProperties": {
298420
+ "type": "object",
298421
+ "properties": {
298422
+ "enabled": {
298423
+ "type": "boolean"
298424
+ }
298425
+ },
298426
+ "required": [
298427
+ "enabled"
298428
+ ],
298429
+ "additionalProperties": false
298430
+ },
298431
+ "description": "**EXPERIMENTAL** Extra integration operations that should be sent or not to the integration instances. The key is the operation name."
298334
298432
  },
298335
298433
  "secrets": {
298336
298434
  "type": "object",
@@ -298922,9 +299020,21 @@ var state2 = {
298922
299020
  "additionalProperties": false
298923
299021
  }
298924
299022
  },
298925
- "messageStatusChangeNotificationsEnabled": {
298926
- "type": "boolean",
298927
- "description": "**EXPERIMENTAL** Whether the integration should be notified when the message status changes"
299023
+ "extraOperations": {
299024
+ "type": "object",
299025
+ "additionalProperties": {
299026
+ "type": "object",
299027
+ "properties": {
299028
+ "enabled": {
299029
+ "type": "boolean"
299030
+ }
299031
+ },
299032
+ "required": [
299033
+ "enabled"
299034
+ ],
299035
+ "additionalProperties": false
299036
+ },
299037
+ "description": "**EXPERIMENTAL** Extra integration operations that should be sent or not to the integration instances. The key is the operation name."
298928
299038
  },
298929
299039
  "secrets": {
298930
299040
  "type": "object",
@@ -299089,9 +299199,21 @@ var state2 = {
299089
299199
  },
299090
299200
  "description": "Additional configuration definitions of the integration"
299091
299201
  },
299092
- "messageStatusChangeNotificationsEnabled": {
299093
- "type": "boolean",
299094
- "description": "**EXPERIMENTAL** Whether the integration should be notified when the message status changes"
299202
+ "extraOperations": {
299203
+ "type": "object",
299204
+ "additionalProperties": {
299205
+ "type": "object",
299206
+ "properties": {
299207
+ "enabled": {
299208
+ "type": "boolean"
299209
+ }
299210
+ },
299211
+ "required": [
299212
+ "enabled"
299213
+ ],
299214
+ "additionalProperties": false
299215
+ },
299216
+ "description": "**EXPERIMENTAL** Extra integration operations that should be sent or not to the integration instances. The key is the operation name."
299095
299217
  },
299096
299218
  "channels": {
299097
299219
  "type": "object",
@@ -299207,6 +299329,10 @@ var state2 = {
299207
299329
  "additionalProperties": false
299208
299330
  }
299209
299331
  },
299332
+ "maxExecutionTime": {
299333
+ "type": "integer",
299334
+ "description": "Maximum execution time of the integration (in seconds)."
299335
+ },
299210
299336
  "identifier": {
299211
299337
  "type": "object",
299212
299338
  "properties": {
@@ -299685,9 +299811,21 @@ var state2 = {
299685
299811
  },
299686
299812
  "description": "Additional configuration definitions of the integration"
299687
299813
  },
299688
- "messageStatusChangeNotificationsEnabled": {
299689
- "type": "boolean",
299690
- "description": "**EXPERIMENTAL** Whether the integration should be notified when the message status changes"
299814
+ "extraOperations": {
299815
+ "type": "object",
299816
+ "additionalProperties": {
299817
+ "type": "object",
299818
+ "properties": {
299819
+ "enabled": {
299820
+ "type": "boolean"
299821
+ }
299822
+ },
299823
+ "required": [
299824
+ "enabled"
299825
+ ],
299826
+ "additionalProperties": false
299827
+ },
299828
+ "description": "**EXPERIMENTAL** Extra integration operations that should be sent or not to the integration instances. The key is the operation name."
299691
299829
  },
299692
299830
  "channels": {
299693
299831
  "type": "object",
@@ -299803,6 +299941,10 @@ var state2 = {
299803
299941
  "additionalProperties": false
299804
299942
  }
299805
299943
  },
299944
+ "maxExecutionTime": {
299945
+ "type": "integer",
299946
+ "description": "Maximum execution time of the integration (in seconds)."
299947
+ },
299806
299948
  "identifier": {
299807
299949
  "type": "object",
299808
299950
  "properties": {
@@ -302887,7 +303029,7 @@ var state2 = {
302887
303029
  "title": "Botpress API",
302888
303030
  "description": "API for Botpress Cloud",
302889
303031
  "server": "https://api.botpress.cloud",
302890
- "version": "1.28.1",
303032
+ "version": "1.29.0",
302891
303033
  "prefix": "v1"
302892
303034
  },
302893
303035
  "errors": [
@@ -303032,6 +303174,7 @@ var state2 = {
303032
303174
  "createWorkspaceBody": true,
303033
303175
  "updateWorkspaceBody": true,
303034
303176
  "checkHandleAvailabilityBody": true,
303177
+ "setWorkspacePreferenceBody": true,
303035
303178
  "createWorkspaceMemberBody": true,
303036
303179
  "updateWorkspaceMemberBody": true,
303037
303180
  "createIntegrationApiKeyBody": true,
@@ -303112,6 +303255,8 @@ var state2 = {
303112
303255
  "listPublicWorkspacesResponse": true,
303113
303256
  "deleteWorkspaceResponse": true,
303114
303257
  "getAuditRecordsResponse": true,
303258
+ "setWorkspacePreferenceResponse": true,
303259
+ "getWorkspacePreferenceResponse": true,
303115
303260
  "listWorkspaceMembersResponse": true,
303116
303261
  "getWorkspaceMemberResponse": true,
303117
303262
  "deleteWorkspaceMemberResponse": true,
@@ -303435,6 +303580,10 @@ var state2 = {
303435
303580
  },
303436
303581
  "description": "A mapping of plugin aliases to their configuration"
303437
303582
  },
303583
+ "maxExecutionTime": {
303584
+ "type": "number",
303585
+ "description": "Maximum execution time of the bot (in seconds)."
303586
+ },
303438
303587
  "user": {
303439
303588
  "type": "object",
303440
303589
  "properties": {
@@ -303886,6 +304035,10 @@ var state2 = {
303886
304035
  },
303887
304036
  "additionalProperties": false
303888
304037
  },
304038
+ "maxExecutionTime": {
304039
+ "type": "number",
304040
+ "description": "Maximum execution time of the integration (in seconds)."
304041
+ },
303889
304042
  "url": {
303890
304043
  "type": "string",
303891
304044
  "maxLength": 2e3,
@@ -306835,7 +306988,9 @@ var state2 = {
306835
306988
  "listWorkspaces",
306836
306989
  "listPublicWorkspaces",
306837
306990
  "deleteWorkspace",
306838
- "getAuditRecords"
306991
+ "getAuditRecords",
306992
+ "setWorkspacePreference",
306993
+ "getWorkspacePreference"
306839
306994
  ],
306840
306995
  "schema": "Workspace"
306841
306996
  },
@@ -308704,7 +308859,7 @@ var state3 = {
308704
308859
  "title": "Botpress API",
308705
308860
  "description": "API for Botpress Cloud",
308706
308861
  "server": "https://api.botpress.cloud",
308707
- "version": "1.28.1",
308862
+ "version": "1.29.0",
308708
308863
  "prefix": "v1"
308709
308864
  },
308710
308865
  "errors": [
@@ -309138,6 +309293,10 @@ var state3 = {
309138
309293
  },
309139
309294
  "description": "A mapping of plugin aliases to their configuration"
309140
309295
  },
309296
+ "maxExecutionTime": {
309297
+ "type": "number",
309298
+ "description": "Maximum execution time of the bot (in seconds)."
309299
+ },
309141
309300
  "user": {
309142
309301
  "type": "object",
309143
309302
  "properties": {
@@ -309589,6 +309748,10 @@ var state3 = {
309589
309748
  },
309590
309749
  "additionalProperties": false
309591
309750
  },
309751
+ "maxExecutionTime": {
309752
+ "type": "number",
309753
+ "description": "Maximum execution time of the integration (in seconds)."
309754
+ },
309592
309755
  "url": {
309593
309756
  "type": "string",
309594
309757
  "maxLength": 2e3,
@@ -313750,7 +313913,7 @@ var state4 = {
313750
313913
  "title": "Botpress API",
313751
313914
  "description": "API for Botpress Cloud",
313752
313915
  "server": "https://api.botpress.cloud",
313753
- "version": "1.28.1",
313916
+ "version": "1.29.0",
313754
313917
  "prefix": "v1"
313755
313918
  },
313756
313919
  "errors": [
@@ -314191,6 +314354,10 @@ var state4 = {
314191
314354
  },
314192
314355
  "description": "A mapping of plugin aliases to their configuration"
314193
314356
  },
314357
+ "maxExecutionTime": {
314358
+ "type": "number",
314359
+ "description": "Maximum execution time of the bot (in seconds)."
314360
+ },
314194
314361
  "user": {
314195
314362
  "type": "object",
314196
314363
  "properties": {
@@ -314642,6 +314809,10 @@ var state4 = {
314642
314809
  },
314643
314810
  "additionalProperties": false
314644
314811
  },
314812
+ "maxExecutionTime": {
314813
+ "type": "number",
314814
+ "description": "Maximum execution time of the integration (in seconds)."
314815
+ },
314645
314816
  "url": {
314646
314817
  "type": "string",
314647
314818
  "maxLength": 2e3,
@@ -320924,6 +321095,10 @@ var state5 = {
320924
321095
  },
320925
321096
  "additionalProperties": false
320926
321097
  },
321098
+ "maxExecutionTime": {
321099
+ "type": "number",
321100
+ "description": "Maximum execution time of the integration (in seconds)."
321101
+ },
320927
321102
  "url": {
320928
321103
  "type": "string",
320929
321104
  "maxLength": 2e3,
@@ -321665,6 +321840,10 @@ var state5 = {
321665
321840
  },
321666
321841
  "additionalProperties": false
321667
321842
  },
321843
+ "maxExecutionTime": {
321844
+ "type": "number",
321845
+ "description": "Maximum execution time of the integration (in seconds)."
321846
+ },
321668
321847
  "url": {
321669
321848
  "type": "string",
321670
321849
  "maxLength": 2e3,
@@ -324816,6 +324995,10 @@ var state5 = {
324816
324995
  "blocked": {
324817
324996
  "type": "boolean"
324818
324997
  },
324998
+ "maxExecutionTime": {
324999
+ "type": "integer",
325000
+ "description": "Maximum execution time (in seconds)."
325001
+ },
324819
325002
  "alwaysAlive": {
324820
325003
  "type": "boolean",
324821
325004
  "description": "Indicates if the [Bot](#schema_bot) should be in always alive mode"
@@ -328299,6 +328482,72 @@ var state5 = {
328299
328482
  }
328300
328483
  }
328301
328484
  },
328485
+ "setWorkspacePreference": {
328486
+ "name": "setWorkspacePreference",
328487
+ "description": "Set a preference for the workspace",
328488
+ "method": "post",
328489
+ "path": "/v1/admin/workspaces/preferences/{key}",
328490
+ "section": "workspace",
328491
+ "disableDefaultParameters": {
328492
+ "x-workspace-id": true
328493
+ },
328494
+ "parameters": {
328495
+ "key": {
328496
+ "type": "string",
328497
+ "description": "Preference key",
328498
+ "in": "path"
328499
+ }
328500
+ },
328501
+ "requestBody": {
328502
+ "description": "Preference value",
328503
+ "schema": {
328504
+ "type": "object",
328505
+ "properties": {
328506
+ "value": {}
328507
+ },
328508
+ "title": "setWorkspacePreferenceBody",
328509
+ "additionalProperties": false
328510
+ }
328511
+ },
328512
+ "response": {
328513
+ "description": "Success",
328514
+ "schema": {
328515
+ "type": "object",
328516
+ "title": "setWorkspacePreferenceResponse",
328517
+ "additionalProperties": false
328518
+ }
328519
+ }
328520
+ },
328521
+ "getWorkspacePreference": {
328522
+ "name": "getWorkspacePreference",
328523
+ "description": "Get a preference of the workspace",
328524
+ "method": "get",
328525
+ "path": "/v1/admin/workspaces/preferences/{key}",
328526
+ "section": "workspace",
328527
+ "disableDefaultParameters": {
328528
+ "x-workspace-id": true
328529
+ },
328530
+ "parameters": {
328531
+ "key": {
328532
+ "type": "string",
328533
+ "description": "Preference key",
328534
+ "in": "path"
328535
+ }
328536
+ },
328537
+ "response": {
328538
+ "description": "Success",
328539
+ "schema": {
328540
+ "type": "object",
328541
+ "properties": {
328542
+ "value": {
328543
+ "nullable": true
328544
+ }
328545
+ },
328546
+ "title": "getWorkspacePreferenceResponse",
328547
+ "additionalProperties": false
328548
+ }
328549
+ }
328550
+ },
328302
328551
  "listWorkspaceMembers": {
328303
328552
  "name": "listWorkspaceMembers",
328304
328553
  "description": "Lists all the members in a workspace",
@@ -329269,9 +329518,21 @@ var state5 = {
329269
329518
  "additionalProperties": false
329270
329519
  }
329271
329520
  },
329272
- "messageStatusChangeNotificationsEnabled": {
329273
- "type": "boolean",
329274
- "description": "**EXPERIMENTAL** Whether the integration should be notified when the message status changes"
329521
+ "extraOperations": {
329522
+ "type": "object",
329523
+ "additionalProperties": {
329524
+ "type": "object",
329525
+ "properties": {
329526
+ "enabled": {
329527
+ "type": "boolean"
329528
+ }
329529
+ },
329530
+ "required": [
329531
+ "enabled"
329532
+ ],
329533
+ "additionalProperties": false
329534
+ },
329535
+ "description": "**EXPERIMENTAL** Extra integration operations that should be sent or not to the integration instances. The key is the operation name."
329275
329536
  },
329276
329537
  "secrets": {
329277
329538
  "type": "object",
@@ -329863,9 +330124,21 @@ var state5 = {
329863
330124
  "additionalProperties": false
329864
330125
  }
329865
330126
  },
329866
- "messageStatusChangeNotificationsEnabled": {
329867
- "type": "boolean",
329868
- "description": "**EXPERIMENTAL** Whether the integration should be notified when the message status changes"
330127
+ "extraOperations": {
330128
+ "type": "object",
330129
+ "additionalProperties": {
330130
+ "type": "object",
330131
+ "properties": {
330132
+ "enabled": {
330133
+ "type": "boolean"
330134
+ }
330135
+ },
330136
+ "required": [
330137
+ "enabled"
330138
+ ],
330139
+ "additionalProperties": false
330140
+ },
330141
+ "description": "**EXPERIMENTAL** Extra integration operations that should be sent or not to the integration instances. The key is the operation name."
329869
330142
  },
329870
330143
  "secrets": {
329871
330144
  "type": "object",
@@ -330030,9 +330303,21 @@ var state5 = {
330030
330303
  },
330031
330304
  "description": "Additional configuration definitions of the integration"
330032
330305
  },
330033
- "messageStatusChangeNotificationsEnabled": {
330034
- "type": "boolean",
330035
- "description": "**EXPERIMENTAL** Whether the integration should be notified when the message status changes"
330306
+ "extraOperations": {
330307
+ "type": "object",
330308
+ "additionalProperties": {
330309
+ "type": "object",
330310
+ "properties": {
330311
+ "enabled": {
330312
+ "type": "boolean"
330313
+ }
330314
+ },
330315
+ "required": [
330316
+ "enabled"
330317
+ ],
330318
+ "additionalProperties": false
330319
+ },
330320
+ "description": "**EXPERIMENTAL** Extra integration operations that should be sent or not to the integration instances. The key is the operation name."
330036
330321
  },
330037
330322
  "channels": {
330038
330323
  "type": "object",
@@ -330148,6 +330433,10 @@ var state5 = {
330148
330433
  "additionalProperties": false
330149
330434
  }
330150
330435
  },
330436
+ "maxExecutionTime": {
330437
+ "type": "integer",
330438
+ "description": "Maximum execution time of the integration (in seconds)."
330439
+ },
330151
330440
  "identifier": {
330152
330441
  "type": "object",
330153
330442
  "properties": {
@@ -330626,9 +330915,21 @@ var state5 = {
330626
330915
  },
330627
330916
  "description": "Additional configuration definitions of the integration"
330628
330917
  },
330629
- "messageStatusChangeNotificationsEnabled": {
330630
- "type": "boolean",
330631
- "description": "**EXPERIMENTAL** Whether the integration should be notified when the message status changes"
330918
+ "extraOperations": {
330919
+ "type": "object",
330920
+ "additionalProperties": {
330921
+ "type": "object",
330922
+ "properties": {
330923
+ "enabled": {
330924
+ "type": "boolean"
330925
+ }
330926
+ },
330927
+ "required": [
330928
+ "enabled"
330929
+ ],
330930
+ "additionalProperties": false
330931
+ },
330932
+ "description": "**EXPERIMENTAL** Extra integration operations that should be sent or not to the integration instances. The key is the operation name."
330632
330933
  },
330633
330934
  "channels": {
330634
330935
  "type": "object",
@@ -330744,6 +331045,10 @@ var state5 = {
330744
331045
  "additionalProperties": false
330745
331046
  }
330746
331047
  },
331048
+ "maxExecutionTime": {
331049
+ "type": "integer",
331050
+ "description": "Maximum execution time of the integration (in seconds)."
331051
+ },
330747
331052
  "identifier": {
330748
331053
  "type": "object",
330749
331054
  "properties": {
@@ -336802,7 +337107,7 @@ var state5 = {
336802
337107
  "title": "Botpress API",
336803
337108
  "description": "API for Botpress Cloud",
336804
337109
  "server": "https://api.botpress.cloud",
336805
- "version": "1.28.1",
337110
+ "version": "1.29.0",
336806
337111
  "prefix": "v1"
336807
337112
  },
336808
337113
  "errors": [
@@ -336970,6 +337275,7 @@ var state5 = {
336970
337275
  "createWorkspaceBody": true,
336971
337276
  "updateWorkspaceBody": true,
336972
337277
  "checkHandleAvailabilityBody": true,
337278
+ "setWorkspacePreferenceBody": true,
336973
337279
  "createWorkspaceMemberBody": true,
336974
337280
  "updateWorkspaceMemberBody": true,
336975
337281
  "createIntegrationApiKeyBody": true,
@@ -337112,6 +337418,8 @@ var state5 = {
337112
337418
  "listPublicWorkspacesResponse": true,
337113
337419
  "deleteWorkspaceResponse": true,
337114
337420
  "getAuditRecordsResponse": true,
337421
+ "setWorkspacePreferenceResponse": true,
337422
+ "getWorkspacePreferenceResponse": true,
337115
337423
  "listWorkspaceMembersResponse": true,
337116
337424
  "getWorkspaceMemberResponse": true,
337117
337425
  "deleteWorkspaceMemberResponse": true,
@@ -337467,6 +337775,10 @@ var state5 = {
337467
337775
  },
337468
337776
  "description": "A mapping of plugin aliases to their configuration"
337469
337777
  },
337778
+ "maxExecutionTime": {
337779
+ "type": "number",
337780
+ "description": "Maximum execution time of the bot (in seconds)."
337781
+ },
337470
337782
  "user": {
337471
337783
  "type": "object",
337472
337784
  "properties": {
@@ -337918,6 +338230,10 @@ var state5 = {
337918
338230
  },
337919
338231
  "additionalProperties": false
337920
338232
  },
338233
+ "maxExecutionTime": {
338234
+ "type": "number",
338235
+ "description": "Maximum execution time of the integration (in seconds)."
338236
+ },
337921
338237
  "url": {
337922
338238
  "type": "string",
337923
338239
  "maxLength": 2e3,
@@ -340921,7 +341237,9 @@ var state5 = {
340921
341237
  "listWorkspaces",
340922
341238
  "listPublicWorkspaces",
340923
341239
  "deleteWorkspace",
340924
- "getAuditRecords"
341240
+ "getAuditRecords",
341241
+ "setWorkspacePreference",
341242
+ "getWorkspacePreference"
340925
341243
  ],
340926
341244
  "schema": "Workspace"
340927
341245
  },