79d293e178
* fix: preparing automation backend for use in FE * minor migration adjustment * modelId only * more CR fixes * improved validation * WIP model automation status (#1791) * additional run status insert validations * model card dialog * show view automation btn * story mock fixes * version card dialog --------- Co-authored-by: Gergő Jedlicska <gergo@jedlicska.com>
63 lines
2.9 KiB
YAML
63 lines
2.9 KiB
YAML
overwrite: true
|
|
schema:
|
|
- 'modules/schema.js'
|
|
documents: null
|
|
generates:
|
|
modules/core/graph/generated/graphql.ts:
|
|
plugins:
|
|
- 'typescript'
|
|
- 'typescript-resolvers'
|
|
config:
|
|
contextType: '@/modules/shared/helpers/typeHelper#GraphQLContext'
|
|
mappers:
|
|
Stream: '@/modules/core/helpers/graphTypes#StreamGraphQLReturn'
|
|
Commit: '@/modules/core/helpers/graphTypes#CommitGraphQLReturn'
|
|
Project: '@/modules/core/helpers/graphTypes#ProjectGraphQLReturn'
|
|
Version: '@/modules/core/helpers/graphTypes#VersionGraphQLReturn'
|
|
ServerInvite: '@/modules/core/helpers/graphTypes#ServerInviteGraphQLReturnType'
|
|
Model: '@/modules/core/helpers/graphTypes#ModelGraphQLReturn'
|
|
ModelsTreeItem: '@/modules/core/helpers/graphTypes#ModelsTreeItemGraphQLReturn'
|
|
StreamAccessRequest: '@/modules/accessrequests/helpers/graphTypes#StreamAccessRequestGraphQLReturn'
|
|
LimitedUser: '@/modules/core/helpers/graphTypes#LimitedUserGraphQLReturn'
|
|
ActiveUserMutations: '@/modules/core/helpers/graphTypes#MutationsObjectGraphQLReturn'
|
|
ProjectMutations: '@/modules/core/helpers/graphTypes#MutationsObjectGraphQLReturn'
|
|
ProjectInviteMutations: '@/modules/core/helpers/graphTypes#MutationsObjectGraphQLReturn'
|
|
ModelMutations: '@/modules/core/helpers/graphTypes#MutationsObjectGraphQLReturn'
|
|
VersionMutations: '@/modules/core/helpers/graphTypes#MutationsObjectGraphQLReturn'
|
|
CommentMutations: '@/modules/core/helpers/graphTypes#MutationsObjectGraphQLReturn'
|
|
AdminQueries: '@/modules/core/helpers/graphTypes#GraphQLEmptyReturn'
|
|
ServerStatistics: '@/modules/core/helpers/graphTypes#GraphQLEmptyReturn'
|
|
CommentReplyAuthorCollection: '@/modules/comments/helpers/graphTypes#CommentReplyAuthorCollectionGraphQLReturn'
|
|
Comment: '@/modules/comments/helpers/graphTypes#CommentGraphQLReturn'
|
|
PendingStreamCollaborator: '@/modules/serverinvites/helpers/graphTypes#PendingStreamCollaboratorGraphQLReturn'
|
|
FileUpload: '@/modules/fileuploads/helpers/types#FileUploadGraphQLReturn'
|
|
AutomationMutations: '@/modules/core/helpers/graphTypes#MutationsObjectGraphQLReturn'
|
|
AutomationFunctionRun: '@/modules/automations/helpers/graphTypes#AutomationFunctionRunGraphQLReturn'
|
|
modules/cross-server-sync/graph/generated/graphql.ts:
|
|
plugins:
|
|
- 'typescript'
|
|
- 'typescript-operations'
|
|
documents:
|
|
- 'modules/cross-server-sync/**/*.{js,ts}'
|
|
config:
|
|
scalars:
|
|
JSONObject: Record<string, unknown>
|
|
DateTime: string
|
|
test/graphql/generated/graphql.ts:
|
|
plugins:
|
|
- 'typescript'
|
|
- 'typescript-operations'
|
|
documents:
|
|
- 'test/graphql/*.{js,ts}'
|
|
config:
|
|
scalars:
|
|
JSONObject: Record<string, unknown>
|
|
DateTime: string
|
|
config:
|
|
scalars:
|
|
JSONObject: Record<string, unknown>
|
|
DateTime: Date
|
|
require:
|
|
- ts-node/register
|
|
- tsconfig-paths/register
|