@coast/core-api-types 1.2.271 → 1.2.272

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.
@@ -0,0 +1,5 @@
1
+ import { CreateChannelChannelMembership } from '../channel/CreateChannelChannelMembership';
2
+ export interface DuplicateInput {
3
+ includeCardData?: boolean;
4
+ channelMemberships?: CreateChannelChannelMembership[];
5
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=DuplicateInput.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DuplicateInput.js","sourceRoot":"","sources":["../../../src/models/workflow-app/DuplicateInput.ts"],"names":[],"mappings":""}
@@ -0,0 +1,6 @@
1
+ import { WorkspaceId } from '@coast/core-types/channel/WorkspaceId';
2
+ import { DuplicateInput } from './DuplicateInput';
3
+ export interface DuplicateWorkspace extends DuplicateInput {
4
+ id: WorkspaceId;
5
+ name?: string;
6
+ }
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DuplicateWorkspace.js","sourceRoot":"","sources":["../../../src/models/workflow-app/DuplicateWorkspace.ts"],"names":[],"mappings":""}
@@ -0,0 +1,6 @@
1
+ import { WorkspaceSectionId } from '@coast/core-types/workspace-section/WorkspaceSectionId';
2
+ import { DuplicateInput } from './DuplicateInput';
3
+ export interface DuplicateWorkspaceSection extends DuplicateInput {
4
+ id: WorkspaceSectionId;
5
+ title?: string;
6
+ }
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DuplicateWorkspaceSection.js","sourceRoot":"","sources":["../../../src/models/workflow-app/DuplicateWorkspaceSection.ts"],"names":[],"mappings":""}
@@ -1,7 +1,6 @@
1
1
  import { BundleId } from '@coast/core-types/workflow-app/bundle/BundleId';
2
- import { CreateChannelChannelMembership } from '../channel/CreateChannelChannelMembership';
3
- export interface InstallBundle {
2
+ import { DuplicateInput } from './DuplicateInput';
3
+ export interface InstallBundle extends DuplicateInput {
4
4
  bundleId: BundleId;
5
5
  name?: string;
6
- channelMemberships?: CreateChannelChannelMembership[];
7
6
  }
@@ -5,4 +5,5 @@ export interface Bundle extends Audit {
5
5
  id: BundleId;
6
6
  businessId: BusinessId;
7
7
  enabled: boolean;
8
+ includeCardData: boolean;
8
9
  }
@@ -1,3 +1,4 @@
1
1
  export interface UpdateBundleInput {
2
2
  enabled: boolean;
3
+ includeCardData?: boolean;
3
4
  }
@@ -4,6 +4,7 @@ export interface PublicBundle {
4
4
  type: BundleType;
5
5
  id: BundleId;
6
6
  enabled: boolean;
7
+ includeCardData: boolean;
7
8
  name: string;
8
9
  description?: string;
9
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coast/core-api-types",
3
- "version": "1.2.271",
3
+ "version": "1.2.272",
4
4
  "description": "Facilitates the generation of core-api-types npm package",
5
5
  "exports": {
6
6
  "./*": {
@@ -23,7 +23,7 @@
23
23
  "author": "Coast Engineering",
24
24
  "license": "MIT",
25
25
  "dependencies": {
26
- "@coast/core-types": "0.0.17",
26
+ "@coast/core-types": "0.0.19",
27
27
  "@coast/core-utils": "0.0.6",
28
28
  "@coast/schemas": "^4.0.0",
29
29
  "@paradoxical-io/types": "^2.1.0",
@@ -1,7 +0,0 @@
1
- import { WorkspaceId } from '@coast/core-types/channel/WorkspaceId';
2
- import { CreateChannelChannelMembership } from './CreateChannelChannelMembership';
3
- export interface DuplicateWorkspace {
4
- id: WorkspaceId;
5
- name?: string;
6
- channelMemberships?: CreateChannelChannelMembership[];
7
- }
@@ -1 +0,0 @@
1
- {"version":3,"file":"DuplicateWorkspace.js","sourceRoot":"","sources":["../../../src/models/channel/DuplicateWorkspace.ts"],"names":[],"mappings":""}
@@ -1,7 +0,0 @@
1
- import { WorkspaceSectionId } from '@coast/core-types/workspace-section/WorkspaceSectionId';
2
- import { CreateChannelChannelMembership } from '../channel/CreateChannelChannelMembership';
3
- export interface DuplicateWorkspaceSection {
4
- id: WorkspaceSectionId;
5
- title?: string;
6
- channelMemberships?: CreateChannelChannelMembership[];
7
- }
@@ -1 +0,0 @@
1
- {"version":3,"file":"DuplicateWorkspaceSection.js","sourceRoot":"","sources":["../../../src/models/workspace-section/DuplicateWorkspaceSection.ts"],"names":[],"mappings":""}