@forge/manifest 11.0.0-next.1 → 11.0.0-next.3
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.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 11.0.0-next.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 78efec7: Update manifest definitions
|
|
8
|
+
|
|
9
|
+
## 11.0.0-next.2
|
|
10
|
+
|
|
11
|
+
### Major Changes
|
|
12
|
+
|
|
13
|
+
- 260eb24: Adding support for new module fifoConsumer
|
|
14
|
+
|
|
3
15
|
## 11.0.0-next.1
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
|
@@ -668,7 +668,8 @@
|
|
|
668
668
|
"maxLength": 100,
|
|
669
669
|
"pattern": "^[-.:_a-zA-Z0-9]{1,93}:custom$"
|
|
670
670
|
},
|
|
671
|
-
"minItems": 1
|
|
671
|
+
"minItems": 1,
|
|
672
|
+
"maxItems": 20
|
|
672
673
|
},
|
|
673
674
|
"key": {
|
|
674
675
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
@@ -896,6 +897,37 @@
|
|
|
896
897
|
},
|
|
897
898
|
"minItems": 1
|
|
898
899
|
},
|
|
900
|
+
"fifoConsumer": {
|
|
901
|
+
"type": "array",
|
|
902
|
+
"items": {
|
|
903
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
904
|
+
"type": "object",
|
|
905
|
+
"additionalProperties": false,
|
|
906
|
+
"properties": {
|
|
907
|
+
"queue": {
|
|
908
|
+
"$ref": "#/definitions/ConsumerQueue"
|
|
909
|
+
},
|
|
910
|
+
"function": {
|
|
911
|
+
"$ref": "#/definitions/ExtensionKey",
|
|
912
|
+
"description": "The key of the function that should be invoked when consuming events."
|
|
913
|
+
},
|
|
914
|
+
"key": {
|
|
915
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
916
|
+
}
|
|
917
|
+
},
|
|
918
|
+
"required": [
|
|
919
|
+
"queue",
|
|
920
|
+
"function",
|
|
921
|
+
"key"
|
|
922
|
+
],
|
|
923
|
+
"not": {
|
|
924
|
+
"required": [
|
|
925
|
+
"unlicensedAccess"
|
|
926
|
+
]
|
|
927
|
+
}
|
|
928
|
+
},
|
|
929
|
+
"minItems": 1
|
|
930
|
+
},
|
|
899
931
|
"function": {
|
|
900
932
|
"type": "array",
|
|
901
933
|
"items": {
|
|
@@ -29350,7 +29382,7 @@
|
|
|
29350
29382
|
"ConsumerQueue": {
|
|
29351
29383
|
"type": "string",
|
|
29352
29384
|
"minLength": 1,
|
|
29353
|
-
"maxLength":
|
|
29385
|
+
"maxLength": 36,
|
|
29354
29386
|
"pattern": "^[a-zA-Z0-9-_]+$",
|
|
29355
29387
|
"description": "The name of the queue that this consumer listens to.",
|
|
29356
29388
|
"title": "queue"
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -194,6 +194,10 @@ export type ExtensionKey5 = string;
|
|
|
194
194
|
* The interval at which to trigger function invocation.
|
|
195
195
|
*/
|
|
196
196
|
export type Interval1 = 'fiveMinute' | 'hour' | 'day' | 'week';
|
|
197
|
+
/**
|
|
198
|
+
* The key for an extension in CaaS. That means that this is a reference to another extension in your descriptor / manifest.
|
|
199
|
+
*/
|
|
200
|
+
export type ExtensionKey6 = string;
|
|
197
201
|
/**
|
|
198
202
|
* The method, within the index.js function, that will be called to invoke the function.
|
|
199
203
|
*/
|
|
@@ -213,20 +217,20 @@ export type MemoryMB1 = number;
|
|
|
213
217
|
/**
|
|
214
218
|
* The key for an extension in CaaS. That means that this is a reference to another extension in your descriptor / manifest.
|
|
215
219
|
*/
|
|
216
|
-
export type
|
|
220
|
+
export type ExtensionKey7 = string;
|
|
217
221
|
/**
|
|
218
222
|
* The key for an extension in CaaS. That means that this is a reference to another extension in your descriptor / manifest.
|
|
219
223
|
*/
|
|
220
|
-
export type
|
|
224
|
+
export type ExtensionKey8 = string;
|
|
221
225
|
export type CoreActionIOType = 'boolean' | 'integer' | 'number' | 'string';
|
|
222
226
|
/**
|
|
223
227
|
* The key for an extension in CaaS. That means that this is a reference to another extension in your descriptor / manifest.
|
|
224
228
|
*/
|
|
225
|
-
export type
|
|
229
|
+
export type ExtensionKey9 = string;
|
|
226
230
|
/**
|
|
227
231
|
* The key for an extension in CaaS. That means that this is a reference to another extension in your descriptor / manifest.
|
|
228
232
|
*/
|
|
229
|
-
export type
|
|
233
|
+
export type ExtensionKey10 = string;
|
|
230
234
|
/**
|
|
231
235
|
* Data residency migration hook path
|
|
232
236
|
*/
|
|
@@ -675,7 +679,7 @@ export type Patterns =
|
|
|
675
679
|
/**
|
|
676
680
|
* The key for an extension in CaaS. That means that this is a reference to another extension in your descriptor / manifest.
|
|
677
681
|
*/
|
|
678
|
-
export type
|
|
682
|
+
export type ExtensionKey11 = string;
|
|
679
683
|
/**
|
|
680
684
|
* A key referencing authentication provider. This will be utilised to authenticate end-users and match with external users.
|
|
681
685
|
*/
|
|
@@ -697,11 +701,11 @@ export type Instructions =
|
|
|
697
701
|
/**
|
|
698
702
|
* The key for an extension in CaaS. That means that this is a reference to another extension in your descriptor / manifest.
|
|
699
703
|
*/
|
|
700
|
-
export type
|
|
704
|
+
export type ExtensionKey12 = string;
|
|
701
705
|
/**
|
|
702
706
|
* The key for an extension in CaaS. That means that this is a reference to another extension in your descriptor / manifest.
|
|
703
707
|
*/
|
|
704
|
-
export type
|
|
708
|
+
export type ExtensionKey13 = string;
|
|
705
709
|
/**
|
|
706
710
|
* App permissions enforcement method
|
|
707
711
|
*/
|
|
@@ -1096,7 +1100,153 @@ export interface Modules {
|
|
|
1096
1100
|
/**
|
|
1097
1101
|
* List of scopes required to access this API route
|
|
1098
1102
|
*/
|
|
1099
|
-
scopes?:
|
|
1103
|
+
scopes?:
|
|
1104
|
+
| [string]
|
|
1105
|
+
| [string, string]
|
|
1106
|
+
| [string, string, string]
|
|
1107
|
+
| [string, string, string, string]
|
|
1108
|
+
| [string, string, string, string, string]
|
|
1109
|
+
| [string, string, string, string, string, string]
|
|
1110
|
+
| [string, string, string, string, string, string, string]
|
|
1111
|
+
| [string, string, string, string, string, string, string, string]
|
|
1112
|
+
| [string, string, string, string, string, string, string, string, string]
|
|
1113
|
+
| [string, string, string, string, string, string, string, string, string, string]
|
|
1114
|
+
| [string, string, string, string, string, string, string, string, string, string, string]
|
|
1115
|
+
| [string, string, string, string, string, string, string, string, string, string, string, string]
|
|
1116
|
+
| [string, string, string, string, string, string, string, string, string, string, string, string, string]
|
|
1117
|
+
| [
|
|
1118
|
+
string,
|
|
1119
|
+
string,
|
|
1120
|
+
string,
|
|
1121
|
+
string,
|
|
1122
|
+
string,
|
|
1123
|
+
string,
|
|
1124
|
+
string,
|
|
1125
|
+
string,
|
|
1126
|
+
string,
|
|
1127
|
+
string,
|
|
1128
|
+
string,
|
|
1129
|
+
string,
|
|
1130
|
+
string,
|
|
1131
|
+
string
|
|
1132
|
+
]
|
|
1133
|
+
| [
|
|
1134
|
+
string,
|
|
1135
|
+
string,
|
|
1136
|
+
string,
|
|
1137
|
+
string,
|
|
1138
|
+
string,
|
|
1139
|
+
string,
|
|
1140
|
+
string,
|
|
1141
|
+
string,
|
|
1142
|
+
string,
|
|
1143
|
+
string,
|
|
1144
|
+
string,
|
|
1145
|
+
string,
|
|
1146
|
+
string,
|
|
1147
|
+
string,
|
|
1148
|
+
string
|
|
1149
|
+
]
|
|
1150
|
+
| [
|
|
1151
|
+
string,
|
|
1152
|
+
string,
|
|
1153
|
+
string,
|
|
1154
|
+
string,
|
|
1155
|
+
string,
|
|
1156
|
+
string,
|
|
1157
|
+
string,
|
|
1158
|
+
string,
|
|
1159
|
+
string,
|
|
1160
|
+
string,
|
|
1161
|
+
string,
|
|
1162
|
+
string,
|
|
1163
|
+
string,
|
|
1164
|
+
string,
|
|
1165
|
+
string,
|
|
1166
|
+
string
|
|
1167
|
+
]
|
|
1168
|
+
| [
|
|
1169
|
+
string,
|
|
1170
|
+
string,
|
|
1171
|
+
string,
|
|
1172
|
+
string,
|
|
1173
|
+
string,
|
|
1174
|
+
string,
|
|
1175
|
+
string,
|
|
1176
|
+
string,
|
|
1177
|
+
string,
|
|
1178
|
+
string,
|
|
1179
|
+
string,
|
|
1180
|
+
string,
|
|
1181
|
+
string,
|
|
1182
|
+
string,
|
|
1183
|
+
string,
|
|
1184
|
+
string,
|
|
1185
|
+
string
|
|
1186
|
+
]
|
|
1187
|
+
| [
|
|
1188
|
+
string,
|
|
1189
|
+
string,
|
|
1190
|
+
string,
|
|
1191
|
+
string,
|
|
1192
|
+
string,
|
|
1193
|
+
string,
|
|
1194
|
+
string,
|
|
1195
|
+
string,
|
|
1196
|
+
string,
|
|
1197
|
+
string,
|
|
1198
|
+
string,
|
|
1199
|
+
string,
|
|
1200
|
+
string,
|
|
1201
|
+
string,
|
|
1202
|
+
string,
|
|
1203
|
+
string,
|
|
1204
|
+
string,
|
|
1205
|
+
string
|
|
1206
|
+
]
|
|
1207
|
+
| [
|
|
1208
|
+
string,
|
|
1209
|
+
string,
|
|
1210
|
+
string,
|
|
1211
|
+
string,
|
|
1212
|
+
string,
|
|
1213
|
+
string,
|
|
1214
|
+
string,
|
|
1215
|
+
string,
|
|
1216
|
+
string,
|
|
1217
|
+
string,
|
|
1218
|
+
string,
|
|
1219
|
+
string,
|
|
1220
|
+
string,
|
|
1221
|
+
string,
|
|
1222
|
+
string,
|
|
1223
|
+
string,
|
|
1224
|
+
string,
|
|
1225
|
+
string,
|
|
1226
|
+
string
|
|
1227
|
+
]
|
|
1228
|
+
| [
|
|
1229
|
+
string,
|
|
1230
|
+
string,
|
|
1231
|
+
string,
|
|
1232
|
+
string,
|
|
1233
|
+
string,
|
|
1234
|
+
string,
|
|
1235
|
+
string,
|
|
1236
|
+
string,
|
|
1237
|
+
string,
|
|
1238
|
+
string,
|
|
1239
|
+
string,
|
|
1240
|
+
string,
|
|
1241
|
+
string,
|
|
1242
|
+
string,
|
|
1243
|
+
string,
|
|
1244
|
+
string,
|
|
1245
|
+
string,
|
|
1246
|
+
string,
|
|
1247
|
+
string,
|
|
1248
|
+
string
|
|
1249
|
+
];
|
|
1100
1250
|
key: ModuleKeySchema;
|
|
1101
1251
|
},
|
|
1102
1252
|
...{
|
|
@@ -1116,7 +1266,153 @@ export interface Modules {
|
|
|
1116
1266
|
/**
|
|
1117
1267
|
* List of scopes required to access this API route
|
|
1118
1268
|
*/
|
|
1119
|
-
scopes?:
|
|
1269
|
+
scopes?:
|
|
1270
|
+
| [string]
|
|
1271
|
+
| [string, string]
|
|
1272
|
+
| [string, string, string]
|
|
1273
|
+
| [string, string, string, string]
|
|
1274
|
+
| [string, string, string, string, string]
|
|
1275
|
+
| [string, string, string, string, string, string]
|
|
1276
|
+
| [string, string, string, string, string, string, string]
|
|
1277
|
+
| [string, string, string, string, string, string, string, string]
|
|
1278
|
+
| [string, string, string, string, string, string, string, string, string]
|
|
1279
|
+
| [string, string, string, string, string, string, string, string, string, string]
|
|
1280
|
+
| [string, string, string, string, string, string, string, string, string, string, string]
|
|
1281
|
+
| [string, string, string, string, string, string, string, string, string, string, string, string]
|
|
1282
|
+
| [string, string, string, string, string, string, string, string, string, string, string, string, string]
|
|
1283
|
+
| [
|
|
1284
|
+
string,
|
|
1285
|
+
string,
|
|
1286
|
+
string,
|
|
1287
|
+
string,
|
|
1288
|
+
string,
|
|
1289
|
+
string,
|
|
1290
|
+
string,
|
|
1291
|
+
string,
|
|
1292
|
+
string,
|
|
1293
|
+
string,
|
|
1294
|
+
string,
|
|
1295
|
+
string,
|
|
1296
|
+
string,
|
|
1297
|
+
string
|
|
1298
|
+
]
|
|
1299
|
+
| [
|
|
1300
|
+
string,
|
|
1301
|
+
string,
|
|
1302
|
+
string,
|
|
1303
|
+
string,
|
|
1304
|
+
string,
|
|
1305
|
+
string,
|
|
1306
|
+
string,
|
|
1307
|
+
string,
|
|
1308
|
+
string,
|
|
1309
|
+
string,
|
|
1310
|
+
string,
|
|
1311
|
+
string,
|
|
1312
|
+
string,
|
|
1313
|
+
string,
|
|
1314
|
+
string
|
|
1315
|
+
]
|
|
1316
|
+
| [
|
|
1317
|
+
string,
|
|
1318
|
+
string,
|
|
1319
|
+
string,
|
|
1320
|
+
string,
|
|
1321
|
+
string,
|
|
1322
|
+
string,
|
|
1323
|
+
string,
|
|
1324
|
+
string,
|
|
1325
|
+
string,
|
|
1326
|
+
string,
|
|
1327
|
+
string,
|
|
1328
|
+
string,
|
|
1329
|
+
string,
|
|
1330
|
+
string,
|
|
1331
|
+
string,
|
|
1332
|
+
string
|
|
1333
|
+
]
|
|
1334
|
+
| [
|
|
1335
|
+
string,
|
|
1336
|
+
string,
|
|
1337
|
+
string,
|
|
1338
|
+
string,
|
|
1339
|
+
string,
|
|
1340
|
+
string,
|
|
1341
|
+
string,
|
|
1342
|
+
string,
|
|
1343
|
+
string,
|
|
1344
|
+
string,
|
|
1345
|
+
string,
|
|
1346
|
+
string,
|
|
1347
|
+
string,
|
|
1348
|
+
string,
|
|
1349
|
+
string,
|
|
1350
|
+
string,
|
|
1351
|
+
string
|
|
1352
|
+
]
|
|
1353
|
+
| [
|
|
1354
|
+
string,
|
|
1355
|
+
string,
|
|
1356
|
+
string,
|
|
1357
|
+
string,
|
|
1358
|
+
string,
|
|
1359
|
+
string,
|
|
1360
|
+
string,
|
|
1361
|
+
string,
|
|
1362
|
+
string,
|
|
1363
|
+
string,
|
|
1364
|
+
string,
|
|
1365
|
+
string,
|
|
1366
|
+
string,
|
|
1367
|
+
string,
|
|
1368
|
+
string,
|
|
1369
|
+
string,
|
|
1370
|
+
string,
|
|
1371
|
+
string
|
|
1372
|
+
]
|
|
1373
|
+
| [
|
|
1374
|
+
string,
|
|
1375
|
+
string,
|
|
1376
|
+
string,
|
|
1377
|
+
string,
|
|
1378
|
+
string,
|
|
1379
|
+
string,
|
|
1380
|
+
string,
|
|
1381
|
+
string,
|
|
1382
|
+
string,
|
|
1383
|
+
string,
|
|
1384
|
+
string,
|
|
1385
|
+
string,
|
|
1386
|
+
string,
|
|
1387
|
+
string,
|
|
1388
|
+
string,
|
|
1389
|
+
string,
|
|
1390
|
+
string,
|
|
1391
|
+
string,
|
|
1392
|
+
string
|
|
1393
|
+
]
|
|
1394
|
+
| [
|
|
1395
|
+
string,
|
|
1396
|
+
string,
|
|
1397
|
+
string,
|
|
1398
|
+
string,
|
|
1399
|
+
string,
|
|
1400
|
+
string,
|
|
1401
|
+
string,
|
|
1402
|
+
string,
|
|
1403
|
+
string,
|
|
1404
|
+
string,
|
|
1405
|
+
string,
|
|
1406
|
+
string,
|
|
1407
|
+
string,
|
|
1408
|
+
string,
|
|
1409
|
+
string,
|
|
1410
|
+
string,
|
|
1411
|
+
string,
|
|
1412
|
+
string,
|
|
1413
|
+
string,
|
|
1414
|
+
string
|
|
1415
|
+
];
|
|
1120
1416
|
key: ModuleKeySchema;
|
|
1121
1417
|
}[]
|
|
1122
1418
|
];
|
|
@@ -1208,6 +1504,18 @@ export interface Modules {
|
|
|
1208
1504
|
}
|
|
1209
1505
|
)[]
|
|
1210
1506
|
];
|
|
1507
|
+
fifoConsumer?: [
|
|
1508
|
+
{
|
|
1509
|
+
queue: Queue;
|
|
1510
|
+
function: ExtensionKey6;
|
|
1511
|
+
key: ModuleKeySchema;
|
|
1512
|
+
},
|
|
1513
|
+
...{
|
|
1514
|
+
queue: Queue;
|
|
1515
|
+
function: ExtensionKey6;
|
|
1516
|
+
key: ModuleKeySchema;
|
|
1517
|
+
}[]
|
|
1518
|
+
];
|
|
1211
1519
|
function?: [
|
|
1212
1520
|
{
|
|
1213
1521
|
handler: Handler;
|
|
@@ -1446,7 +1754,7 @@ export interface Modules {
|
|
|
1446
1754
|
* swapped depending on what integrations a tenant might have.
|
|
1447
1755
|
*/
|
|
1448
1756
|
actionType: string;
|
|
1449
|
-
function:
|
|
1757
|
+
function: ExtensionKey7;
|
|
1450
1758
|
/**
|
|
1451
1759
|
* The name of the action
|
|
1452
1760
|
*/
|
|
@@ -1474,7 +1782,7 @@ export interface Modules {
|
|
|
1474
1782
|
* The description that the Rovo agent will use to decide when to invoke this action.
|
|
1475
1783
|
*/
|
|
1476
1784
|
description: string;
|
|
1477
|
-
function:
|
|
1785
|
+
function: ExtensionKey8;
|
|
1478
1786
|
/**
|
|
1479
1787
|
* The name of the action
|
|
1480
1788
|
*/
|
|
@@ -1531,7 +1839,7 @@ export interface Modules {
|
|
|
1531
1839
|
| {
|
|
1532
1840
|
endpoint: string;
|
|
1533
1841
|
};
|
|
1534
|
-
endpoint:
|
|
1842
|
+
endpoint: ExtensionKey9;
|
|
1535
1843
|
/**
|
|
1536
1844
|
* The operation that will be performed as a result of calling this action
|
|
1537
1845
|
*/
|
|
@@ -1568,7 +1876,7 @@ export interface Modules {
|
|
|
1568
1876
|
* swapped depending on what integrations a tenant might have.
|
|
1569
1877
|
*/
|
|
1570
1878
|
actionType: string;
|
|
1571
|
-
endpoint:
|
|
1879
|
+
endpoint: ExtensionKey10;
|
|
1572
1880
|
/**
|
|
1573
1881
|
* The name of the action
|
|
1574
1882
|
*/
|
|
@@ -1594,7 +1902,7 @@ export interface Modules {
|
|
|
1594
1902
|
* swapped depending on what integrations a tenant might have.
|
|
1595
1903
|
*/
|
|
1596
1904
|
actionType: string;
|
|
1597
|
-
function:
|
|
1905
|
+
function: ExtensionKey7;
|
|
1598
1906
|
/**
|
|
1599
1907
|
* The name of the action
|
|
1600
1908
|
*/
|
|
@@ -1622,7 +1930,7 @@ export interface Modules {
|
|
|
1622
1930
|
* The description that the Rovo agent will use to decide when to invoke this action.
|
|
1623
1931
|
*/
|
|
1624
1932
|
description: string;
|
|
1625
|
-
function:
|
|
1933
|
+
function: ExtensionKey8;
|
|
1626
1934
|
/**
|
|
1627
1935
|
* The name of the action
|
|
1628
1936
|
*/
|
|
@@ -1679,7 +1987,7 @@ export interface Modules {
|
|
|
1679
1987
|
| {
|
|
1680
1988
|
endpoint: string;
|
|
1681
1989
|
};
|
|
1682
|
-
endpoint:
|
|
1990
|
+
endpoint: ExtensionKey9;
|
|
1683
1991
|
/**
|
|
1684
1992
|
* The operation that will be performed as a result of calling this action
|
|
1685
1993
|
*/
|
|
@@ -1716,7 +2024,7 @@ export interface Modules {
|
|
|
1716
2024
|
* swapped depending on what integrations a tenant might have.
|
|
1717
2025
|
*/
|
|
1718
2026
|
actionType: string;
|
|
1719
|
-
endpoint:
|
|
2027
|
+
endpoint: ExtensionKey10;
|
|
1720
2028
|
/**
|
|
1721
2029
|
* The name of the action
|
|
1722
2030
|
*/
|
|
@@ -23512,7 +23820,7 @@ export interface Modules {
|
|
|
23512
23820
|
];
|
|
23513
23821
|
orchestration?: {
|
|
23514
23822
|
taskRunner: {
|
|
23515
|
-
function:
|
|
23823
|
+
function: ExtensionKey11;
|
|
23516
23824
|
};
|
|
23517
23825
|
};
|
|
23518
23826
|
auth?: {
|
|
@@ -23531,12 +23839,12 @@ export interface Modules {
|
|
|
23531
23839
|
| [FormSection, FormSection, FormSection, FormSection, FormSection];
|
|
23532
23840
|
instructions?: Instructions;
|
|
23533
23841
|
validateConnection: {
|
|
23534
|
-
function:
|
|
23842
|
+
function: ExtensionKey12;
|
|
23535
23843
|
[k: string]: unknown;
|
|
23536
23844
|
};
|
|
23537
23845
|
};
|
|
23538
23846
|
onConnectionChange: {
|
|
23539
|
-
function:
|
|
23847
|
+
function: ExtensionKey13;
|
|
23540
23848
|
[k: string]: unknown;
|
|
23541
23849
|
};
|
|
23542
23850
|
};
|
|
@@ -23619,7 +23927,7 @@ export interface Modules {
|
|
|
23619
23927
|
];
|
|
23620
23928
|
orchestration?: {
|
|
23621
23929
|
taskRunner: {
|
|
23622
|
-
function:
|
|
23930
|
+
function: ExtensionKey11;
|
|
23623
23931
|
};
|
|
23624
23932
|
};
|
|
23625
23933
|
auth?: {
|
|
@@ -23638,12 +23946,12 @@ export interface Modules {
|
|
|
23638
23946
|
| [FormSection, FormSection, FormSection, FormSection, FormSection];
|
|
23639
23947
|
instructions?: Instructions;
|
|
23640
23948
|
validateConnection: {
|
|
23641
|
-
function:
|
|
23949
|
+
function: ExtensionKey12;
|
|
23642
23950
|
[k: string]: unknown;
|
|
23643
23951
|
};
|
|
23644
23952
|
};
|
|
23645
23953
|
onConnectionChange: {
|
|
23646
|
-
function:
|
|
23954
|
+
function: ExtensionKey13;
|
|
23647
23955
|
[k: string]: unknown;
|
|
23648
23956
|
};
|
|
23649
23957
|
};
|
|
@@ -6,6 +6,7 @@ export declare enum AllModuleTypes {
|
|
|
6
6
|
CoreAPIRoute = "core:apiRoute",
|
|
7
7
|
CoreEvent = "core:event",
|
|
8
8
|
CoreConsumer = "core:consumer",
|
|
9
|
+
CoreFifoConsumer = "core:fifoConsumer",
|
|
9
10
|
CoreScheduledTrigger = "core:scheduledTrigger",
|
|
10
11
|
CoreEndpoint = "core:endpoint",
|
|
11
12
|
CoreMigration = "core:migration",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"module-types.d.ts","sourceRoot":"","sources":["../../src/types/module-types.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"module-types.d.ts","sourceRoot":"","sources":["../../src/types/module-types.ts"],"names":[],"mappings":"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"}
|
|
@@ -10,6 +10,7 @@ var AllModuleTypes;
|
|
|
10
10
|
AllModuleTypes["CoreAPIRoute"] = "core:apiRoute";
|
|
11
11
|
AllModuleTypes["CoreEvent"] = "core:event";
|
|
12
12
|
AllModuleTypes["CoreConsumer"] = "core:consumer";
|
|
13
|
+
AllModuleTypes["CoreFifoConsumer"] = "core:fifoConsumer";
|
|
13
14
|
AllModuleTypes["CoreScheduledTrigger"] = "core:scheduledTrigger";
|
|
14
15
|
AllModuleTypes["CoreEndpoint"] = "core:endpoint";
|
|
15
16
|
AllModuleTypes["CoreMigration"] = "core:migration";
|