@coast/core-api-types 1.2.308 → 1.2.310
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/bookmark/api/Bookmark.d.ts +9 -0
- package/dist/models/bookmark/api/Bookmark.js +3 -0
- package/dist/models/bookmark/api/Bookmark.js.map +1 -0
- package/dist/models/bookmark/api/CreateBookmark.d.ts +3 -0
- package/dist/models/bookmark/api/CreateBookmark.js +3 -0
- package/dist/models/bookmark/api/CreateBookmark.js.map +1 -0
- package/dist/models/bookmark/api/ListBookmarksInput.d.ts +5 -0
- package/dist/models/bookmark/api/ListBookmarksInput.js +3 -0
- package/dist/models/bookmark/api/ListBookmarksInput.js.map +1 -0
- package/dist/models/bookmark/api/ListBookmarksResult.d.ts +5 -0
- package/dist/models/bookmark/api/ListBookmarksResult.js +3 -0
- package/dist/models/bookmark/api/ListBookmarksResult.js.map +1 -0
- package/dist/models/bookmark/api/UpdateBookmark.d.ts +8 -0
- package/dist/models/bookmark/api/UpdateBookmark.js +3 -0
- package/dist/models/bookmark/api/UpdateBookmark.js.map +1 -0
- package/dist/models/bookmark/persistence/BookmarkEntity.d.ts +10 -0
- package/dist/models/bookmark/persistence/BookmarkEntity.js +3 -0
- package/dist/models/bookmark/persistence/BookmarkEntity.js.map +1 -0
- package/dist/models/workflow-template/WorkflowTemplate.d.ts +1 -1
- package/dist/models/workflow-template/components/AnyComponentDataValue.d.ts +2 -1
- package/package.json +2 -2
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { BookmarkId } from '@coast/core-types/bookmark/BookmarkId';
|
|
2
|
+
import { BusinessId } from '@coast/core-types/business/BusinessId';
|
|
3
|
+
import { Audit } from '../../application/Audit';
|
|
4
|
+
export interface Bookmark extends Audit {
|
|
5
|
+
id: BookmarkId;
|
|
6
|
+
businessId: BusinessId;
|
|
7
|
+
name: string;
|
|
8
|
+
url: string;
|
|
9
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Bookmark.js","sourceRoot":"","sources":["../../../../src/models/bookmark/api/Bookmark.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CreateBookmark.js","sourceRoot":"","sources":["../../../../src/models/bookmark/api/CreateBookmark.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ListBookmarksInput.js","sourceRoot":"","sources":["../../../../src/models/bookmark/api/ListBookmarksInput.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ListBookmarksResult.js","sourceRoot":"","sources":["../../../../src/models/bookmark/api/ListBookmarksResult.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { BookmarkId } from '@coast/core-types/bookmark/BookmarkId';
|
|
2
|
+
import { DeepPartial } from '@coast/core-utils/DeepPartial';
|
|
3
|
+
import { Bookmark } from './Bookmark';
|
|
4
|
+
export interface UpdateBookmark extends DeepPartial<Bookmark> {
|
|
5
|
+
id: BookmarkId;
|
|
6
|
+
name?: string;
|
|
7
|
+
url?: string;
|
|
8
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UpdateBookmark.js","sourceRoot":"","sources":["../../../../src/models/bookmark/api/UpdateBookmark.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BookmarkId } from '@coast/core-types/bookmark/BookmarkId';
|
|
2
|
+
import { BusinessId } from '@coast/core-types/business/BusinessId';
|
|
3
|
+
import { Audit } from '../../application/Audit';
|
|
4
|
+
export interface BookmarkEntity extends Audit {
|
|
5
|
+
id: BookmarkId;
|
|
6
|
+
businessId: BusinessId;
|
|
7
|
+
name: string;
|
|
8
|
+
url: string;
|
|
9
|
+
deletedAt?: Date | null;
|
|
10
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BookmarkEntity.js","sourceRoot":"","sources":["../../../../src/models/bookmark/persistence/BookmarkEntity.ts"],"names":[],"mappings":""}
|
|
@@ -11,7 +11,7 @@ import { Component } from './components/Component';
|
|
|
11
11
|
export interface WorkflowTemplate extends DataEntity, Audit {
|
|
12
12
|
archivedComponents?: Component[];
|
|
13
13
|
behavior?: WorkflowTemplateBehavior;
|
|
14
|
-
businessId
|
|
14
|
+
businessId: BusinessId;
|
|
15
15
|
cardDefinition?: CardDefinition;
|
|
16
16
|
channelDefaultConfiguration?: ChannelDefaultConfiguration;
|
|
17
17
|
components: Component[];
|
|
@@ -4,6 +4,7 @@ import { AuditTagComponentData } from './audit-tag/AuditTagComponentData';
|
|
|
4
4
|
import { AuditTextComponentData } from './audit-text/AuditTextComponentData';
|
|
5
5
|
import { DateComponentData } from './date/DateComponentData';
|
|
6
6
|
import { EmailComponentData } from './email/EmailComponentData';
|
|
7
|
+
import { EntityBatchComponentData } from './enitty-batch/EntityBatchComponentData';
|
|
7
8
|
import { FileComponentData } from './file/FileComponentData';
|
|
8
9
|
import { GeolocationComponentData } from './geo-location/GeolocationComponentData';
|
|
9
10
|
import { NumberComponentData } from './number/NumberComponentData';
|
|
@@ -17,4 +18,4 @@ import { TextComponentData } from './text/TextComponentData';
|
|
|
17
18
|
import { TimeTrackerComponentData } from './time-tracker/TimeTrackerComponentData';
|
|
18
19
|
import { TodoComponentData } from './todo/TodoComponentData';
|
|
19
20
|
import { UrlComponentData } from './url/UrlComponentData';
|
|
20
|
-
export type AnyComponentDataValue = AddressComponentData['addressComponentDataValue'] | AuditCheckboxComponentData['auditCheckboxComponentDataValue'] | AuditTagComponentData['auditTagComponentDataValue'] | AuditTextComponentData['auditTextComponentDataValue'] | DateComponentData['dateComponentDataValue'] | EmailComponentData['emailComponentDataValue'] | FileComponentData['fileComponentDataValue'] | GeolocationComponentData['geolocationComponentDataValue'] | NumberComponentData['numberComponentDataValue'] | PersonComponentData['personComponentDataValue'] | RelatedCardComponentData['relatedCardComponentDataValue'] | ScheduledAutomationComponentData['scheduledAutomationComponentDataValue'] | SignatureComponentData['signatureComponentDataValue'] | SubformComponentData['subformComponentDataValue'] | TagComponentData['tagComponentDataValue'] | TextComponentData['textComponentDataValue'] | TimeTrackerComponentData['timeTrackerComponentDataValue'] | TodoComponentData['todoComponentDataValue'] | UrlComponentData['urlComponentDataValue'];
|
|
21
|
+
export type AnyComponentDataValue = AddressComponentData['addressComponentDataValue'] | AuditCheckboxComponentData['auditCheckboxComponentDataValue'] | AuditTagComponentData['auditTagComponentDataValue'] | AuditTextComponentData['auditTextComponentDataValue'] | DateComponentData['dateComponentDataValue'] | EmailComponentData['emailComponentDataValue'] | EntityBatchComponentData['entityBatchId'] | FileComponentData['fileComponentDataValue'] | GeolocationComponentData['geolocationComponentDataValue'] | NumberComponentData['numberComponentDataValue'] | PersonComponentData['personComponentDataValue'] | RelatedCardComponentData['relatedCardComponentDataValue'] | ScheduledAutomationComponentData['scheduledAutomationComponentDataValue'] | SignatureComponentData['signatureComponentDataValue'] | SubformComponentData['subformComponentDataValue'] | TagComponentData['tagComponentDataValue'] | TextComponentData['textComponentDataValue'] | TimeTrackerComponentData['timeTrackerComponentDataValue'] | TodoComponentData['todoComponentDataValue'] | UrlComponentData['urlComponentDataValue'];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coast/core-api-types",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.310",
|
|
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.
|
|
26
|
+
"@coast/core-types": "0.0.43",
|
|
27
27
|
"@coast/core-utils": "0.0.16",
|
|
28
28
|
"@coast/schemas": "^4.0.2",
|
|
29
29
|
"@coast/service-common": "^2.0.70",
|