-
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.
Merge branch 'master' into snyk-upgrade-0d5b4c37019094233a211b7b9ae260a7
- Loading branch information
Showing
28 changed files
with
1,503 additions
and
1,154 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,10 +1,21 @@ | ||
/** | ||
* Enum containing standard API response messages | ||
* @enum {string} | ||
* | ||
* @property {string} OPERATION_CANCELLED - Response when operation is cancelled | ||
* @property {string} RESOLVED_SUCCESSFULLY - Response for successful resolution | ||
* @property {string} ERROR_RESOLVING_CONFIG - Response when config file resolution fails | ||
* @property {string} NO_DATA_RESOLVING_DATA - Response when no data is available to resolve | ||
* @property {string} ERROR_RESOLVING_ANNOTATION - Response when annotation resolution fails | ||
* @property {string} ERROR_RESETTING_DATA - Response when data reset operation fails | ||
*/ | ||
enum ApiResponses { | ||
OPERATION_CANCELLED = 'Operation cancelled', | ||
RESOLVED_SUCCESSFULLY = 'Resolved successfully', | ||
RESOLVED_SUCCESSFULLY = 'Resolved successfully', | ||
ERROR_RESOLVING_CONFIG = 'Error while resolving config file', | ||
NO_DATA_RESOLVING_DATA = 'No data to resolve', | ||
ERROR_RESOLVING_ANNOTATION = 'Error while resolving annotation', | ||
ERROR_RESETTING_DATA = 'Error while resetting data' | ||
} | ||
|
||
export default ApiResponses | ||
export default ApiResponses |
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,6 +1,12 @@ | ||
/** | ||
* Enum representing the types of connectors in the system | ||
* @enum {string} | ||
* @property {string} Source - Represents a source connector that data flows from | ||
* @property {string} Destination - Represents a destination connector that data flows to | ||
*/ | ||
enum ConnectorType { | ||
Source = 'source', | ||
Destination = 'destination' | ||
} | ||
|
||
export default ConnectorType | ||
export default ConnectorType |
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.