Skip to content

Commit

Permalink
chore: update
Browse files Browse the repository at this point in the history
  • Loading branch information
Sentio Bot committed Nov 4, 2024
1 parent c73e49f commit 11d9a6a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1834,7 +1834,7 @@
defs["common.Project.Type"] = {
"type" : "string",
"default" : "SENTIO",
"enum" : [ "SENTIO", "SUBGRAPH" ]
"enum" : [ "SENTIO", "SUBGRAPH", "ACTION" ]
};
defs["common.ProjectView"] = {
"type" : "object",
Expand Down
3 changes: 2 additions & 1 deletion openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -2468,7 +2468,8 @@
"type": "string",
"enum": [
"SENTIO",
"SUBGRAPH"
"SUBGRAPH",
"ACTION"
],
"default": "SENTIO"
},
Expand Down
3 changes: 2 additions & 1 deletion src/models/CommonProjectType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
*/
export const CommonProjectType = {
Sentio: 'SENTIO',
Subgraph: 'SUBGRAPH'
Subgraph: 'SUBGRAPH',
Action: 'ACTION'
} as const;
export type CommonProjectType = typeof CommonProjectType[keyof typeof CommonProjectType];

Expand Down

0 comments on commit 11d9a6a

Please sign in to comment.