Skip to content

Commit 11d9a6a

Browse files
author
Sentio Bot
committed
chore: update
1 parent c73e49f commit 11d9a6a

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

doc/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1834,7 +1834,7 @@
18341834
defs["common.Project.Type"] = {
18351835
"type" : "string",
18361836
"default" : "SENTIO",
1837-
"enum" : [ "SENTIO", "SUBGRAPH" ]
1837+
"enum" : [ "SENTIO", "SUBGRAPH", "ACTION" ]
18381838
};
18391839
defs["common.ProjectView"] = {
18401840
"type" : "object",

openapi.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2468,7 +2468,8 @@
24682468
"type": "string",
24692469
"enum": [
24702470
"SENTIO",
2471-
"SUBGRAPH"
2471+
"SUBGRAPH",
2472+
"ACTION"
24722473
],
24732474
"default": "SENTIO"
24742475
},

src/models/CommonProjectType.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
*/
2020
export const CommonProjectType = {
2121
Sentio: 'SENTIO',
22-
Subgraph: 'SUBGRAPH'
22+
Subgraph: 'SUBGRAPH',
23+
Action: 'ACTION'
2324
} as const;
2425
export type CommonProjectType = typeof CommonProjectType[keyof typeof CommonProjectType];
2526

0 commit comments

Comments
 (0)