@coast/core-api-types 1.2.239 → 1.2.241
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/models/billing/SubscriptionPlan.d.ts +1 -1
- package/dist/models/card/card-definition/CardDefinition.d.ts +1 -1
- package/dist/models/card/card-reminder/CardReminder.d.ts +1 -1
- package/dist/models/card/list-cards/ListCardsResult.d.ts +1 -1
- package/dist/models/card/summary-card/ListSummaryCardsResult.d.ts +1 -1
- package/dist/models/channel/Channel.d.ts +1 -1
- package/dist/models/messaging/ThreadMessageAttachment.d.ts +2 -2
- package/dist/models/user/ListUsersResult.d.ts +1 -1
- package/dist/models/user/User.d.ts +1 -1
- package/dist/models/view-template/ListViewTemplatesResult.d.ts +1 -1
- package/dist/models/workflow-automation/ListWorkflowTemplateAutomationsResult.d.ts +1 -1
- package/dist/models/workflow-template/components/date-range/DateRangeComponentData.d.ts +6 -0
- package/dist/models/workflow-template/components/date-range/DateRangeComponentData.js +3 -0
- package/dist/models/workflow-template/components/date-range/DateRangeComponentData.js.map +1 -0
- package/dist/models/workflow-template/components/scheduled-automation/ScheduledAutomationComponent.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { SubscriptionPlanProduct } from './SubscriptionPlanProduct';
|
|
2
2
|
import { SubscriptionPlanType } from './SubscriptionPlanType';
|
|
3
3
|
export interface SubscriptionPlan {
|
|
4
|
-
description
|
|
4
|
+
description?: string;
|
|
5
5
|
highlightPlan: boolean;
|
|
6
6
|
name: string;
|
|
7
7
|
products: SubscriptionPlanProduct[];
|
|
@@ -4,7 +4,7 @@ import { Card } from '../Card';
|
|
|
4
4
|
import { ReminderRelativeTo } from './ReminderRelativeTo';
|
|
5
5
|
export interface CardReminder extends Audit {
|
|
6
6
|
card: Card;
|
|
7
|
-
conditionalSelector
|
|
7
|
+
conditionalSelector?: Selector;
|
|
8
8
|
duration: string;
|
|
9
9
|
id: string;
|
|
10
10
|
recipientFieldName: string;
|
|
@@ -2,7 +2,7 @@ import { OffsetPaginatedResult } from '../../pagination/OffsetPaginatedResult';
|
|
|
2
2
|
import { PlanLimit } from '../../plan-limits/PlanLimit';
|
|
3
3
|
import { Card } from '../Card';
|
|
4
4
|
export interface ListCardsResult extends OffsetPaginatedResult {
|
|
5
|
-
cards
|
|
5
|
+
cards?: Card[];
|
|
6
6
|
planLimit?: PlanLimit;
|
|
7
7
|
totalResults: number;
|
|
8
8
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OffsetPaginatedResult } from '../pagination/OffsetPaginatedResult';
|
|
2
2
|
import { ViewTemplate } from './ViewTemplate';
|
|
3
3
|
export interface ListViewTemplatesResult extends OffsetPaginatedResult {
|
|
4
|
-
viewTemplates
|
|
4
|
+
viewTemplates?: ViewTemplate[];
|
|
5
5
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Automation } from '../automations/Automation';
|
|
2
2
|
import { OffsetPaginatedResult } from '../pagination/OffsetPaginatedResult';
|
|
3
3
|
export interface ListWorkflowTemplateAutomationsResult extends OffsetPaginatedResult {
|
|
4
|
-
automations
|
|
4
|
+
automations?: Automation[];
|
|
5
5
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DateRangeComponentData.js","sourceRoot":"","sources":["../../../../../src/models/workflow-template/components/date-range/DateRangeComponentData.ts"],"names":[],"mappings":""}
|
|
@@ -4,7 +4,7 @@ import { Defaultable } from '../Defaultable';
|
|
|
4
4
|
import { InputComponent } from '../InputComponent';
|
|
5
5
|
import { ScheduledAutomationDefault } from './ScheduledAutomationDefault';
|
|
6
6
|
export interface ScheduledAutomationComponent extends Defaultable<ScheduledAutomationDefault>, InputComponent<ComponentType.SCHEDULED_AUTOMATION> {
|
|
7
|
-
automationId
|
|
7
|
+
automationId?: AutomationId;
|
|
8
8
|
dateComponentId: string;
|
|
9
9
|
default?: ScheduledAutomationDefault;
|
|
10
10
|
scheduleImmediatelyIfInPast?: boolean;
|