@coast/core-api-types 1.2.291 → 1.2.293
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/workflow-library/BundleListing.d.ts +13 -0
- package/dist/models/workflow-library/BundleListing.js +3 -0
- package/dist/models/workflow-library/BundleListing.js.map +1 -0
- package/dist/models/workflow-library/BundleListingTagAssociation.d.ts +9 -0
- package/dist/models/workflow-library/BundleListingTagAssociation.js +3 -0
- package/dist/models/workflow-library/BundleListingTagAssociation.js.map +1 -0
- package/dist/models/workflow-library/CreateBundleListing.d.ts +13 -0
- package/dist/models/workflow-library/CreateBundleListing.js +3 -0
- package/dist/models/workflow-library/CreateBundleListing.js.map +1 -0
- package/dist/models/workflow-library/PublicBundleListing.d.ts +11 -0
- package/dist/models/workflow-library/PublicBundleListing.js +3 -0
- package/dist/models/workflow-library/PublicBundleListing.js.map +1 -0
- package/dist/models/workflow-library/TagOption.d.ts +6 -0
- package/dist/models/workflow-library/TagOption.js +3 -0
- package/dist/models/workflow-library/TagOption.js.map +1 -0
- package/dist/models/workflow-library/TagOptions.d.ts +6 -0
- package/dist/models/workflow-library/TagOptions.js +3 -0
- package/dist/models/workflow-library/TagOptions.js.map +1 -0
- package/package.json +3 -3
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { BundleListingId } from '@coast/core-types/workflow-library/BundleListingId';
|
|
2
|
+
import { Audit } from '../application/Audit';
|
|
3
|
+
import { Bundle } from '../workflow-app/bundle/Bundle';
|
|
4
|
+
import { BundleListingTagAssociation } from './BundleListingTagAssociation';
|
|
5
|
+
export interface BundleListing extends Audit {
|
|
6
|
+
id: BundleListingId;
|
|
7
|
+
name: string;
|
|
8
|
+
bundle: Bundle;
|
|
9
|
+
description: string;
|
|
10
|
+
defaultDisplayOrder?: number;
|
|
11
|
+
tags: BundleListingTagAssociation[];
|
|
12
|
+
deletedAt?: Date;
|
|
13
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BundleListing.js","sourceRoot":"","sources":["../../../src/models/workflow-library/BundleListing.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { TagValue } from '@coast/core-types/workflow-library/TagValue';
|
|
2
|
+
import { TagType } from '@coast/core-types/workflow-library/TagType';
|
|
3
|
+
import { BundleListing } from './BundleListing';
|
|
4
|
+
export interface BundleListingTagAssociation {
|
|
5
|
+
id: string;
|
|
6
|
+
bundleListing?: BundleListing;
|
|
7
|
+
tagType: TagType;
|
|
8
|
+
tagValue: TagValue;
|
|
9
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BundleListingTagAssociation.js","sourceRoot":"","sources":["../../../src/models/workflow-library/BundleListingTagAssociation.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { BundleId } from '@coast/core-types/workflow-app/bundle/BundleId';
|
|
2
|
+
import { Category } from '@coast/core-types/workflow-library/Category';
|
|
3
|
+
import { Industry } from '@coast/core-types/workflow-library/Industry';
|
|
4
|
+
import { PackageType } from '@coast/core-types/workflow-library/PackageType';
|
|
5
|
+
export interface CreateBundleListing {
|
|
6
|
+
bundleId: BundleId;
|
|
7
|
+
name: string;
|
|
8
|
+
description: string;
|
|
9
|
+
defaultDisplayOrder?: number;
|
|
10
|
+
categories?: Category[];
|
|
11
|
+
industries?: Industry[];
|
|
12
|
+
packageTypes?: PackageType[];
|
|
13
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CreateBundleListing.js","sourceRoot":"","sources":["../../../src/models/workflow-library/CreateBundleListing.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { BundleListingId } from '@coast/core-types/workflow-library/BundleListingId';
|
|
2
|
+
import { PublicBundle } from '../workflow-app/bundle/public-bundle/PublicBundle';
|
|
3
|
+
import { BundleListingTagAssociation } from './BundleListingTagAssociation';
|
|
4
|
+
export interface PublicBundleListing {
|
|
5
|
+
id: BundleListingId;
|
|
6
|
+
name: string;
|
|
7
|
+
bundle: PublicBundle;
|
|
8
|
+
description: string;
|
|
9
|
+
defaultDisplayOrder?: number;
|
|
10
|
+
tags: BundleListingTagAssociation[];
|
|
11
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PublicBundleListing.js","sourceRoot":"","sources":["../../../src/models/workflow-library/PublicBundleListing.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TagOption.js","sourceRoot":"","sources":["../../../src/models/workflow-library/TagOption.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TagOptions.js","sourceRoot":"","sources":["../../../src/models/workflow-library/TagOptions.ts"],"names":[],"mappings":""}
|
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.293",
|
|
4
4
|
"description": "Facilitates the generation of core-api-types npm package",
|
|
5
5
|
"exports": {
|
|
6
6
|
"./*": {
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"author": "Coast Engineering",
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@coast/core-types": "0.0.
|
|
27
|
-
"@coast/core-utils": "0.0.
|
|
26
|
+
"@coast/core-types": "0.0.36",
|
|
27
|
+
"@coast/core-utils": "0.0.14",
|
|
28
28
|
"@coast/schemas": "^4.0.0",
|
|
29
29
|
"@coast/service-common": "^2.0.69",
|
|
30
30
|
"@paradoxical-io/types": "^2.1.0",
|