@coast/core-api-types 1.1.5 → 1.1.7

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.
Files changed (21) hide show
  1. package/dist/models/card/card-definition/CardDefinition.d.ts +1 -1
  2. package/dist/models/card/card-definition/CardFragmentTemplate.d.ts +1 -1
  3. package/dist/models/card/card-definition/CardUITemplate.d.ts +1 -1
  4. package/dist/models/card/card-definition/CreateCardDefinition.d.ts +1 -1
  5. package/dist/models/card/card-definition/CreateCardUITemplate.d.ts +1 -1
  6. package/dist/models/card/card-field-string-tag/CardFieldStringTag.d.ts +1 -1
  7. package/dist/models/card/card-field-string-tag/CreateCardFieldStringTag.d.ts +1 -1
  8. package/dist/models/card/card-field-string-tag/UpdateCardFieldStringTag.d.ts +1 -1
  9. package/dist/models/card/card-reminder/CardReminder.d.ts +1 -1
  10. package/dist/models/card/card-reminder/CreateCardReminder.d.ts +1 -1
  11. package/dist/models/integration/Integration.d.ts +1 -1
  12. package/dist/models/integration/UpdateIntegration.d.ts +1 -1
  13. package/dist/models/workflow-template/ContextualizedUITemplate.d.ts +1 -1
  14. package/dist/models/workflow-template/GeneratedCardBlock.d.ts +1 -1
  15. package/dist/models/workflow-template/behaviors/ViewTemplateSelector.d.ts +1 -1
  16. package/dist/models/workflow-template/components/InputComponent.d.ts +1 -1
  17. package/dist/models/workflow-template/components/person/PersonComponentDefault.d.ts +1 -1
  18. package/dist/models/workflow-template/components/scheduled-automation/ScheduledAutomationComponent.d.ts +1 -0
  19. package/dist/models/workflow-template/components/tag/CombinedTagsComponent.d.ts +1 -1
  20. package/dist/models/workflow-template/components/tag/TagComponentOption.d.ts +1 -1
  21. package/package.json +1 -1
@@ -1,4 +1,4 @@
1
- import { TagOptions } from '@coast-app/schemas';
1
+ import { TagOptions } from '@coast/schemas';
2
2
  import { Audit } from '../../application/Audit';
3
3
  import { WorkspaceFocus } from '../WorkspaceFocus';
4
4
  import { CardUITemplate } from './CardUITemplate';
@@ -1,4 +1,4 @@
1
- import { CardFragment } from '@coast-app/schemas';
1
+ import { CardFragment } from '@coast/schemas';
2
2
  import { Audit } from '../../application/Audit';
3
3
  export interface CardFragmentTemplate extends Audit {
4
4
  id: string;
@@ -1,4 +1,4 @@
1
- import { UITemplate } from '@coast-app/schemas';
1
+ import { UITemplate } from '@coast/schemas';
2
2
  import { Audit } from '../../application/Audit';
3
3
  import { CardDefinition } from './CardDefinition';
4
4
  import { CardUITemplateType } from './CardUITemplateType';
@@ -1,4 +1,4 @@
1
- import { TagOptions } from '@coast-app/schemas';
1
+ import { TagOptions } from '@coast/schemas';
2
2
  import { JSONSchema4 } from 'json-schema';
3
3
  import { DeepPartial } from '../../utils/DeepPartial';
4
4
  import { WorkspaceFocus } from '../WorkspaceFocus';
@@ -1,4 +1,4 @@
1
- import { UITemplate } from '@coast-app/schemas';
1
+ import { UITemplate } from '@coast/schemas';
2
2
  import { CardUITemplate } from './CardUITemplate';
3
3
  import { CardUITemplateType } from './CardUITemplateType';
4
4
  export interface CreateCardUITemplate extends Partial<CardUITemplate> {
@@ -1,4 +1,4 @@
1
- import { Color } from '@coast-app/schemas';
1
+ import { Color } from '@coast/schemas';
2
2
  import { Audit } from '../../application/Audit';
3
3
  export interface CardFieldStringTag extends Audit {
4
4
  id: string;
@@ -1,4 +1,4 @@
1
- import { Color } from '@coast-app/schemas';
1
+ import { Color } from '@coast/schemas';
2
2
  import { CardFieldStringTag } from './CardFieldStringTag';
3
3
  export interface CreateCardFieldStringTag extends Partial<CardFieldStringTag> {
4
4
  channelId: number;
@@ -1,4 +1,4 @@
1
- import { Color } from '@coast-app/schemas';
1
+ import { Color } from '@coast/schemas';
2
2
  import { CardFieldStringTag } from './CardFieldStringTag';
3
3
  export interface UpdateCardFieldStringTag extends Partial<CardFieldStringTag> {
4
4
  id: string;
@@ -1,4 +1,4 @@
1
- import { Selector } from '@coast-app/schemas';
1
+ import { Selector } from '@coast/schemas';
2
2
  import { Audit } from '../../application/Audit';
3
3
  import { Card } from '../Card';
4
4
  import { ReminderRelativeTo } from './ReminderRelativeTo';
@@ -1,4 +1,4 @@
1
- import { Selector } from '@coast-app/schemas';
1
+ import { Selector } from '@coast/schemas';
2
2
  import { CardReminder } from './CardReminder';
3
3
  import { ReminderRelativeTo } from './ReminderRelativeTo';
4
4
  export interface CreateCardReminder extends Partial<CardReminder> {
@@ -1,4 +1,4 @@
1
- import { CardDetailTemplate, CardFormTemplate } from '@coast-app/schemas';
1
+ import { CardDetailTemplate, CardFormTemplate } from '@coast/schemas';
2
2
  import { Audit } from '../application/Audit';
3
3
  import { App } from './App';
4
4
  import { IntegrationStatus } from './IntegrationStatus';
@@ -1,4 +1,4 @@
1
- import { CardDetailTemplate, CardFormTemplate } from '@coast-app/schemas';
1
+ import { CardDetailTemplate, CardFormTemplate } from '@coast/schemas';
2
2
  import { Integration } from './Integration';
3
3
  import { IntegrationStatus } from './IntegrationStatus';
4
4
  export interface UpdateIntegration extends Partial<Integration> {
@@ -1,2 +1,2 @@
1
- import { CardCollectionListTemplateV1, CardFragment, TagOptions, UITemplate } from '@coast-app/schemas';
1
+ import { CardCollectionListTemplateV1, CardFragment, TagOptions, UITemplate } from '@coast/schemas';
2
2
  export type ContextualizedUITemplate = Exclude<UITemplate, CardFragment | CardCollectionListTemplateV1 | TagOptions>;
@@ -1,2 +1,2 @@
1
- import { FieldBlock, InputBlock, TagsBlock } from '@coast-app/schemas';
1
+ import { FieldBlock, InputBlock, TagsBlock } from '@coast/schemas';
2
2
  export type GeneratedCardBlock = FieldBlock | InputBlock | TagsBlock;
@@ -1,4 +1,4 @@
1
- import { Selector } from '@coast-app/schemas';
1
+ import { Selector } from '@coast/schemas';
2
2
  export interface ViewTemplateSelector {
3
3
  viewTemplateId: string;
4
4
  selector?: Selector;
@@ -1,4 +1,4 @@
1
- import { Icon } from '@coast-app/schemas';
1
+ import { Icon } from '@coast/schemas';
2
2
  import { Component } from './Component';
3
3
  export interface InputComponent extends Component {
4
4
  required?: boolean;
@@ -1,4 +1,4 @@
1
- import { Token } from '@coast-app/schemas';
1
+ import { Token } from '@coast/schemas';
2
2
  export interface PersonComponentDefault {
3
3
  token?: Token;
4
4
  userIds?: number[];
@@ -5,4 +5,5 @@ export interface ScheduledAutomationComponent extends Defaultable<ScheduledAutom
5
5
  automationId: string;
6
6
  dateComponentId: string;
7
7
  default?: ScheduledAutomationDefault;
8
+ scheduleImmediatelyIfInPast?: boolean;
8
9
  }
@@ -1,4 +1,4 @@
1
- import { Icon } from '@coast-app/schemas';
1
+ import { Icon } from '@coast/schemas';
2
2
  import { Component } from '../Component';
3
3
  export interface CombinedTagsComponent extends Component {
4
4
  icon?: Icon;
@@ -1,4 +1,4 @@
1
- import { Color } from '@coast-app/schemas';
1
+ import { Color } from '@coast/schemas';
2
2
  export interface TagComponentOption {
3
3
  label: string;
4
4
  value: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coast/core-api-types",
3
- "version": "1.1.5",
3
+ "version": "1.1.7",
4
4
  "description": "core-api types package",
5
5
  "main": "./models",
6
6
  "types": "./models",