-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(proactive-connect): adding doc blocks (#888)
- Loading branch information
Showing
22 changed files
with
727 additions
and
167 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,54 @@ | ||
/** | ||
* Enumeration representing different event types. | ||
*/ | ||
export enum EventTypes { | ||
ACTION_CALL_SUCCEEDED = 'action-call-succeeded', | ||
ACTION_CALL_FAILED = 'action-call-failed', | ||
ACTION_CALL_INFO = 'action-call-info', | ||
RECIPIENT_RESPONSE = 'recipient-response', | ||
RUN_ITEM_SKIPPED = 'run-item-skipped', | ||
RUN_ITEM_FAILED = 'run-item-failed', | ||
RUN_ITEM_SUBMITTED = 'run-item-submitted', | ||
RUN_ITEMS_TOTAL = 'run-items-total', | ||
RUN_ITEMS_READY = 'run-items-ready', | ||
RUN_ITEMS_EXCLUDED = 'run-items-excluded', | ||
/** | ||
* Event type: Action call succeeded. | ||
*/ | ||
ACTION_CALL_SUCCEEDED = 'action-call-succeeded', | ||
|
||
/** | ||
* Event type: Action call failed. | ||
*/ | ||
ACTION_CALL_FAILED = 'action-call-failed', | ||
|
||
/** | ||
* Event type: Action call info. | ||
*/ | ||
ACTION_CALL_INFO = 'action-call-info', | ||
|
||
/** | ||
* Event type: Recipient response. | ||
*/ | ||
RECIPIENT_RESPONSE = 'recipient-response', | ||
|
||
/** | ||
* Event type: Run item skipped. | ||
*/ | ||
RUN_ITEM_SKIPPED = 'run-item-skipped', | ||
|
||
/** | ||
* Event type: Run item failed. | ||
*/ | ||
RUN_ITEM_FAILED = 'run-item-failed', | ||
|
||
/** | ||
* Event type: Run item submitted. | ||
*/ | ||
RUN_ITEM_SUBMITTED = 'run-item-submitted', | ||
|
||
/** | ||
* Event type: Run items total. | ||
*/ | ||
RUN_ITEMS_TOTAL = 'run-items-total', | ||
|
||
/** | ||
* Event type: Run items ready. | ||
*/ | ||
RUN_ITEMS_READY = 'run-items-ready', | ||
|
||
/** | ||
* Event type: Run items excluded. | ||
*/ | ||
RUN_ITEMS_EXCLUDED = 'run-items-excluded', | ||
} |
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,9 +1,39 @@ | ||
/** | ||
* Enumeration representing synchronization status between the list content (items) and its data source. | ||
*/ | ||
export enum SyncStatus { | ||
CONFIGURED = 'configured', | ||
CLEARING = 'clearing', | ||
FETCHING = 'fetching', | ||
PAUSED = 'paused', | ||
CANCELLED = 'cancelled', | ||
COMPLETED = 'completed', | ||
FAILED = 'failed', | ||
/** | ||
* Configuration is complete. | ||
*/ | ||
CONFIGURED = 'configured', | ||
|
||
/** | ||
* Data is being cleared. | ||
*/ | ||
CLEARING = 'clearing', | ||
|
||
/** | ||
* Data is being fetched. | ||
*/ | ||
FETCHING = 'fetching', | ||
|
||
/** | ||
* Synchronization is paused. | ||
*/ | ||
PAUSED = 'paused', | ||
|
||
/** | ||
* Synchronization is cancelled. | ||
*/ | ||
CANCELLED = 'cancelled', | ||
|
||
/** | ||
* Synchronization is completed. | ||
*/ | ||
COMPLETED = 'completed', | ||
|
||
/** | ||
* Synchronization has failed. | ||
*/ | ||
FAILED = 'failed', | ||
} |
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,4 +1,14 @@ | ||
/** | ||
* Enumeration representing sorting order. | ||
*/ | ||
export enum SortOrder { | ||
ASC = 'asc', | ||
DESC = 'desc', | ||
/** | ||
* Ascending order. | ||
*/ | ||
ASC = 'asc', | ||
|
||
/** | ||
* Descending order. | ||
*/ | ||
DESC = 'desc', | ||
} |
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.