-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* rm deprecated fields * upgrade dependencies --------- Co-authored-by: Aleks G <[email protected]>
- Loading branch information
Showing
15 changed files
with
443 additions
and
392 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,8 @@ | ||
// Fields externalId, iconUrl, createdAt, updatedAt will be deprecated. | ||
// Use unique_id, icon_url, created_at, updated_at instead. | ||
export type IntegrationCategory = { | ||
id: number; | ||
title: string; | ||
externalId?: string; | ||
unique_id: string; | ||
iconUrl?: string; | ||
icon_url?: string; | ||
createdAt?: string; | ||
created_at?: string; | ||
updatedAt?: string; | ||
updated_at?: string; | ||
}; |
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,23 +1,14 @@ | ||
// Fields shortDescription, websiteUrl, navigationUrl, imageUrl, accessCredentialsId, createdAt, updatedAt will be deprecated. | ||
// Use short_description, website_url, navigation_url, image_url, access_credentials_id, created_at, updated_at instead. | ||
export type Integration = { | ||
id: number; | ||
title: string; | ||
shortDescription?: string; | ||
short_description?: string; | ||
websiteUrl?: string; | ||
website_url?: string; | ||
navigationUrl?: string; | ||
navigation_url?: string; | ||
imageUrl?: string; | ||
image_url?: string; | ||
featured?: boolean; | ||
provider?: string; | ||
application?: string; | ||
accessCredentialsId?: number | null; | ||
access_credentials_id?: number | null; | ||
createdAt?: string; | ||
created_at?: string; | ||
updatedAt?: string; | ||
updated_at?: string; | ||
}; |
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,13 +1,7 @@ | ||
// Fields integrationId, categoryId, createdAt, updatedAt will be deprecated. | ||
// Use integration_id, category_id, created_at, updated_at instead. | ||
export type IntegrationToCategory = { | ||
id: number; | ||
integrationId?: number; | ||
integration_id?: number; | ||
categoryId?: number; | ||
category_id?: number; | ||
createdAt?: string; | ||
updatedAt?: string; | ||
created_at?: string; | ||
updated_at?: string; | ||
}; |
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
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
Oops, something went wrong.