-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: send integration definitions in link get call
- Loading branch information
1 parent
0f959b0
commit 758dc8f
Showing
4 changed files
with
61 additions
and
23 deletions.
There are no files selected for viewing
40 changes: 19 additions & 21 deletions
40
engine-server/src/@@generated/integrationDefinition/entities/integrationDefinition.entity.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,22 @@ | ||
|
||
import {ReleaseStage,IntegrationType} from '@prisma/client' | ||
import {Workspace} from '../../workspace/entities/workspace.entity' | ||
import {IntegrationAccount} from '../../integrationAccount/entities/integrationAccount.entity' | ||
import {IntegrationOAuthApp} from '../../integrationOAuthApp/entities/integrationOAuthApp.entity' | ||
|
||
import { ReleaseStage, IntegrationType } from '@prisma/client'; | ||
import { Workspace } from '../../workspace/entities/workspace.entity'; | ||
import { IntegrationAccount } from '../../integrationAccount/entities/integrationAccount.entity'; | ||
import { IntegrationOAuthApp } from '../../integrationOAuthApp/entities/integrationOAuthApp.entity'; | ||
|
||
export class IntegrationDefinition { | ||
integrationDefinitionId: string ; | ||
name: string ; | ||
key: string ; | ||
icon: string | null; | ||
version: string ; | ||
releaseStage: ReleaseStage ; | ||
sourceUrl: string ; | ||
integrationType: IntegrationType ; | ||
workspace?: Workspace | null; | ||
workspaceId: string | null; | ||
IntegrationAccount?: IntegrationAccount[] ; | ||
IntegrationOAuthApp?: IntegrationOAuthApp[] ; | ||
deleted: Date | null; | ||
createdAt: Date ; | ||
updatedAt: Date ; | ||
integrationDefinitionId: string; | ||
name: string; | ||
key: string; | ||
icon: string | null; | ||
version: string; | ||
releaseStage: ReleaseStage; | ||
sourceUrl: string; | ||
integrationType: IntegrationType; | ||
workspace?: Workspace | null; | ||
workspaceId: string | null; | ||
IntegrationAccount?: IntegrationAccount[]; | ||
IntegrationOAuthApp?: IntegrationOAuthApp[]; | ||
deleted: Date | null; | ||
createdAt: Date; | ||
updatedAt: Date; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters