@objectstack/service-automation 9.9.1 → 9.11.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.
- package/dist/index.d.cts +25 -2
- package/dist/index.d.ts +25 -2
- package/package.json +4 -4
package/dist/index.d.cts
CHANGED
|
@@ -1235,6 +1235,29 @@ declare const SysAutomationRun: Omit<{
|
|
|
1235
1235
|
titleField: string;
|
|
1236
1236
|
progressField?: string | undefined;
|
|
1237
1237
|
dependenciesField?: string | undefined;
|
|
1238
|
+
colorField?: string | undefined;
|
|
1239
|
+
parentField?: string | undefined;
|
|
1240
|
+
typeField?: string | undefined;
|
|
1241
|
+
baselineStartField?: string | undefined;
|
|
1242
|
+
baselineEndField?: string | undefined;
|
|
1243
|
+
groupByField?: string | undefined;
|
|
1244
|
+
resourceView?: boolean | undefined;
|
|
1245
|
+
assigneeField?: string | undefined;
|
|
1246
|
+
effortField?: string | undefined;
|
|
1247
|
+
capacity?: number | undefined;
|
|
1248
|
+
tooltipFields?: (string | {
|
|
1249
|
+
field: string;
|
|
1250
|
+
label?: string | undefined;
|
|
1251
|
+
})[] | undefined;
|
|
1252
|
+
quickFilters?: {
|
|
1253
|
+
field: string;
|
|
1254
|
+
label?: string | undefined;
|
|
1255
|
+
options?: (string | {
|
|
1256
|
+
value: string | number;
|
|
1257
|
+
label?: string | undefined;
|
|
1258
|
+
})[] | undefined;
|
|
1259
|
+
}[] | undefined;
|
|
1260
|
+
autoZoomToFilter?: boolean | undefined;
|
|
1238
1261
|
} | undefined;
|
|
1239
1262
|
gallery?: {
|
|
1240
1263
|
coverFit: "cover" | "contain";
|
|
@@ -1398,7 +1421,7 @@ declare const SysAutomationRun: Omit<{
|
|
|
1398
1421
|
clone: boolean;
|
|
1399
1422
|
apiMethods?: ("upsert" | "import" | "export" | "delete" | "update" | "create" | "search" | "list" | "get" | "bulk" | "aggregate" | "history" | "restore" | "purge")[] | undefined;
|
|
1400
1423
|
} | undefined;
|
|
1401
|
-
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
1424
|
+
sharingModel?: "full" | "read" | "private" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
1402
1425
|
publicSharing?: {
|
|
1403
1426
|
enabled: boolean;
|
|
1404
1427
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -1430,7 +1453,7 @@ declare const SysAutomationRun: Omit<{
|
|
|
1430
1453
|
} | {
|
|
1431
1454
|
language: "js";
|
|
1432
1455
|
source: string;
|
|
1433
|
-
capabilities: ("api.read" | "api.write" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
1456
|
+
capabilities: ("api.read" | "api.write" | "api.transaction" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
1434
1457
|
timeoutMs?: number | undefined;
|
|
1435
1458
|
memoryMb?: number | undefined;
|
|
1436
1459
|
} | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -1235,6 +1235,29 @@ declare const SysAutomationRun: Omit<{
|
|
|
1235
1235
|
titleField: string;
|
|
1236
1236
|
progressField?: string | undefined;
|
|
1237
1237
|
dependenciesField?: string | undefined;
|
|
1238
|
+
colorField?: string | undefined;
|
|
1239
|
+
parentField?: string | undefined;
|
|
1240
|
+
typeField?: string | undefined;
|
|
1241
|
+
baselineStartField?: string | undefined;
|
|
1242
|
+
baselineEndField?: string | undefined;
|
|
1243
|
+
groupByField?: string | undefined;
|
|
1244
|
+
resourceView?: boolean | undefined;
|
|
1245
|
+
assigneeField?: string | undefined;
|
|
1246
|
+
effortField?: string | undefined;
|
|
1247
|
+
capacity?: number | undefined;
|
|
1248
|
+
tooltipFields?: (string | {
|
|
1249
|
+
field: string;
|
|
1250
|
+
label?: string | undefined;
|
|
1251
|
+
})[] | undefined;
|
|
1252
|
+
quickFilters?: {
|
|
1253
|
+
field: string;
|
|
1254
|
+
label?: string | undefined;
|
|
1255
|
+
options?: (string | {
|
|
1256
|
+
value: string | number;
|
|
1257
|
+
label?: string | undefined;
|
|
1258
|
+
})[] | undefined;
|
|
1259
|
+
}[] | undefined;
|
|
1260
|
+
autoZoomToFilter?: boolean | undefined;
|
|
1238
1261
|
} | undefined;
|
|
1239
1262
|
gallery?: {
|
|
1240
1263
|
coverFit: "cover" | "contain";
|
|
@@ -1398,7 +1421,7 @@ declare const SysAutomationRun: Omit<{
|
|
|
1398
1421
|
clone: boolean;
|
|
1399
1422
|
apiMethods?: ("upsert" | "import" | "export" | "delete" | "update" | "create" | "search" | "list" | "get" | "bulk" | "aggregate" | "history" | "restore" | "purge")[] | undefined;
|
|
1400
1423
|
} | undefined;
|
|
1401
|
-
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
1424
|
+
sharingModel?: "full" | "read" | "private" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
1402
1425
|
publicSharing?: {
|
|
1403
1426
|
enabled: boolean;
|
|
1404
1427
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -1430,7 +1453,7 @@ declare const SysAutomationRun: Omit<{
|
|
|
1430
1453
|
} | {
|
|
1431
1454
|
language: "js";
|
|
1432
1455
|
source: string;
|
|
1433
|
-
capabilities: ("api.read" | "api.write" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
1456
|
+
capabilities: ("api.read" | "api.write" | "api.transaction" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
1434
1457
|
timeoutMs?: number | undefined;
|
|
1435
1458
|
memoryMb?: number | undefined;
|
|
1436
1459
|
} | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@objectstack/service-automation",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.11.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Automation Service for ObjectStack — implements IAutomationService with plugin-based DAG flow execution engine",
|
|
6
6
|
"type": "module",
|
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
}
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@objectstack/core": "9.
|
|
18
|
-
"@objectstack/formula": "9.
|
|
19
|
-
"@objectstack/spec": "9.
|
|
17
|
+
"@objectstack/core": "9.11.0",
|
|
18
|
+
"@objectstack/formula": "9.11.0",
|
|
19
|
+
"@objectstack/spec": "9.11.0"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@types/node": "^25.9.3",
|