-
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.
- Loading branch information
Showing
35 changed files
with
879 additions
and
46 deletions.
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
docs/models/components/activitynotificationexecutiondetailresponsedto.md
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# ActivityNotificationExecutionDetailResponseDto | ||
|
||
## Example Usage | ||
|
||
```typescript | ||
import { ActivityNotificationExecutionDetailResponseDto } from "@novu/api/models/components"; | ||
|
||
let value: ActivityNotificationExecutionDetailResponseDto = { | ||
id: "<id>", | ||
jobId: "<id>", | ||
status: "Pending", | ||
detail: "<value>", | ||
isRetry: false, | ||
isTest: false, | ||
providerId: 7392.64, | ||
source: "Credentials", | ||
}; | ||
``` | ||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | | ||
| -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | | ||
| `id` | *string* | :heavy_check_mark: | Unique identifier of the execution detail | | ||
| `jobId` | *string* | :heavy_check_mark: | Unique identifier of the job | | ||
| `status` | [components.ActivityNotificationExecutionDetailResponseDtoStatus](../../models/components/activitynotificationexecutiondetailresponsedtostatus.md) | :heavy_check_mark: | Status of the execution detail | | ||
| `detail` | *string* | :heavy_check_mark: | Detailed information about the execution | | ||
| `isRetry` | *boolean* | :heavy_check_mark: | Whether the execution is a retry or not | | ||
| `isTest` | *boolean* | :heavy_check_mark: | Whether the execution is a test or not | | ||
| `providerId` | *number* | :heavy_check_mark: | Provider ID of the job | | ||
| `raw` | *string* | :heavy_minus_sign: | Raw data of the execution | | ||
| `source` | [components.Source](../../models/components/source.md) | :heavy_check_mark: | Source of the execution detail | |
17 changes: 17 additions & 0 deletions
17
docs/models/components/activitynotificationexecutiondetailresponsedtostatus.md
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# ActivityNotificationExecutionDetailResponseDtoStatus | ||
|
||
Status of the execution detail | ||
|
||
## Example Usage | ||
|
||
```typescript | ||
import { ActivityNotificationExecutionDetailResponseDtoStatus } from "@novu/api/models/components"; | ||
|
||
let value: ActivityNotificationExecutionDetailResponseDtoStatus = "Failed"; | ||
``` | ||
|
||
## Values | ||
|
||
```typescript | ||
"Success" | "Warning" | "Failed" | "Pending" | "Queued" | "ReadConfirmation" | ||
``` |
44 changes: 44 additions & 0 deletions
44
docs/models/components/activitynotificationjobresponsedto.md
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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# ActivityNotificationJobResponseDto | ||
|
||
## Example Usage | ||
|
||
```typescript | ||
import { ActivityNotificationJobResponseDto } from "@novu/api/models/components"; | ||
|
||
let value: ActivityNotificationJobResponseDto = { | ||
id: "<id>", | ||
type: "<value>", | ||
executionDetails: [ | ||
{ | ||
id: "<id>", | ||
jobId: "<id>", | ||
status: "Success", | ||
detail: "<value>", | ||
isRetry: false, | ||
isTest: false, | ||
providerId: 8379.45, | ||
source: "Credentials", | ||
}, | ||
], | ||
step: { | ||
id: "<id>", | ||
active: false, | ||
filters: {}, | ||
}, | ||
providerId: 9764.59, | ||
status: "<value>", | ||
}; | ||
``` | ||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | | ||
| ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | | ||
| `id` | *string* | :heavy_check_mark: | Unique identifier of the job | | ||
| `type` | *string* | :heavy_check_mark: | Type of the job | | ||
| `digest` | [components.Digest](../../models/components/digest.md) | :heavy_minus_sign: | Optional digest for the job | | ||
| `executionDetails` | [components.ActivityNotificationExecutionDetailResponseDto](../../models/components/activitynotificationexecutiondetailresponsedto.md)[] | :heavy_check_mark: | Execution details of the job | | ||
| `step` | [components.ActivityNotificationStepResponseDto](../../models/components/activitynotificationstepresponsedto.md) | :heavy_check_mark: | Step details of the job | | ||
| `payload` | [components.Payload](../../models/components/payload.md) | :heavy_minus_sign: | Optional payload for the job | | ||
| `providerId` | *number* | :heavy_check_mark: | Provider ID of the job | | ||
| `status` | *string* | :heavy_check_mark: | Status of the job | |
22 changes: 22 additions & 0 deletions
22
docs/models/components/activitynotificationstepresponsedto.md
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# ActivityNotificationStepResponseDto | ||
|
||
## Example Usage | ||
|
||
```typescript | ||
import { ActivityNotificationStepResponseDto } from "@novu/api/models/components"; | ||
|
||
let value: ActivityNotificationStepResponseDto = { | ||
id: "<id>", | ||
active: false, | ||
filters: {}, | ||
}; | ||
``` | ||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | | ||
| ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | | ||
| `id` | *string* | :heavy_check_mark: | Unique identifier of the step | | ||
| `active` | *boolean* | :heavy_check_mark: | Whether the step is active or not | | ||
| `filters` | [components.StepFilter](../../models/components/stepfilter.md) | :heavy_check_mark: | Filter criteria for the step | | ||
| `template` | [components.MessageTemplateDto](../../models/components/messagetemplatedto.md) | :heavy_minus_sign: | Optional template for the step | |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# ChannelPreferenceType | ||
|
||
The type of channel that is enabled or not | ||
|
||
## Example Usage | ||
|
||
```typescript | ||
import { ChannelPreferenceType } from "@novu/api/models/components"; | ||
|
||
let value: ChannelPreferenceType = "push"; | ||
``` | ||
|
||
## Values | ||
|
||
```typescript | ||
"in_app" | "email" | "sms" | "chat" | "push" | ||
``` |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Digest | ||
|
||
Optional digest for the job | ||
|
||
## Example Usage | ||
|
||
```typescript | ||
import { Digest } from "@novu/api/models/components"; | ||
|
||
let value: Digest = {}; | ||
``` | ||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | | ||
| ----------- | ----------- | ----------- | ----------- | |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# MessageActionResultPayload | ||
|
||
## Example Usage | ||
|
||
```typescript | ||
import { MessageActionResultPayload } from "@novu/api/models/components"; | ||
|
||
let value: MessageActionResultPayload = {}; | ||
``` | ||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | | ||
| ----------- | ----------- | ----------- | ----------- | |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# MessageTemplateDto | ||
|
||
## Example Usage | ||
|
||
```typescript | ||
import { MessageTemplateDto } from "@novu/api/models/components"; | ||
|
||
let value: MessageTemplateDto = {}; | ||
``` | ||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | | ||
| ----------- | ----------- | ----------- | ----------- | |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Source | ||
|
||
Source of the execution detail | ||
|
||
## Example Usage | ||
|
||
```typescript | ||
import { Source } from "@novu/api/models/components"; | ||
|
||
let value: Source = "Webhook"; | ||
``` | ||
|
||
## Values | ||
|
||
```typescript | ||
"Credentials" | "Internal" | "Payload" | "Webhook" | ||
``` |
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
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.