Skip to content

Commit

Permalink
feat(interation): implements of jira api
Browse files Browse the repository at this point in the history
  • Loading branch information
LamaEats committed Sep 12, 2024
1 parent a15dddd commit 917c5e6
Show file tree
Hide file tree
Showing 10 changed files with 574 additions and 54 deletions.
22 changes: 22 additions & 0 deletions generated/kysely/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,26 @@ export type dependsOn = {
A: string;
B: string;
};
export type ExternalTask = {
id: Generated<string>;
title: string;
externalId: string;
externalKey: string;
project: string;
projectId: string;
type: string;
typeId: string;
typeIconUrl: string;
state: string;
stateId: string;
stateIconUrl: string;
stateColor: string | null;
ownerEmail: string;
ownerName: string;
ownerId: string;
createdAt: Generated<Timestamp>;
updatedAt: Generated<Timestamp>;
};
export type Filter = {
id: string;
mode: FilterMode;
Expand Down Expand Up @@ -141,6 +161,7 @@ export type GoalAchieveCriteria = {
activityId: string;
deleted: boolean | null;
criteriaGoalId: string | null;
externalTaskId: string | null;
createdAt: Generated<Timestamp>;
updatedAt: Generated<Timestamp>;
};
Expand Down Expand Up @@ -342,6 +363,7 @@ export type DB = {
Activity: Activity;
AppConfig: AppConfig;
Comment: Comment;
ExternalTask: ExternalTask;
Filter: Filter;
Flow: Flow;
Ghost: Ghost;
Expand Down
Loading

0 comments on commit 917c5e6

Please sign in to comment.