@coast/core-api-types 1.2.291 → 1.2.292

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,15 @@
1
+ import { BundleId } from '@coast/core-types/workflow-app/bundle/BundleId';
2
+ import { BundleListingId } from '@coast/core-types/workflow-library/BundleListingId';
3
+ import { Audit } from '../application/Audit';
4
+ import { Bundle } from '../workflow-app/bundle/Bundle';
5
+ import { BundleListingTagAssociation } from './BundleListingTagAssociation';
6
+ export interface BundleListing extends Audit {
7
+ id: BundleListingId;
8
+ name: string;
9
+ bundleId: BundleId;
10
+ bundle?: Bundle;
11
+ description: string;
12
+ defaultDisplayOrder?: number;
13
+ tagAssociations: BundleListingTagAssociation[];
14
+ deletedAt?: Date;
15
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=BundleListing.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BundleListing.js","sourceRoot":"","sources":["../../../src/models/workflow-library/BundleListing.ts"],"names":[],"mappings":""}
@@ -0,0 +1,7 @@
1
+ import { BundleListing } from './BundleListing';
2
+ export interface BundleListingTagAssociation {
3
+ id: string;
4
+ bundleListing?: BundleListing;
5
+ tagType: string;
6
+ tagValue: string;
7
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=BundleListingTagAssociation.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BundleListingTagAssociation.js","sourceRoot":"","sources":["../../../src/models/workflow-library/BundleListingTagAssociation.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 { TagOption } from './TagOption';
4
+ export interface PublicBundleListing {
5
+ id: BundleListingId;
6
+ name: string;
7
+ bundle: PublicBundle;
8
+ description: string;
9
+ defaultDisplayOrder?: number;
10
+ tags: TagOption[];
11
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=PublicBundleListing.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PublicBundleListing.js","sourceRoot":"","sources":["../../../src/models/workflow-library/PublicBundleListing.ts"],"names":[],"mappings":""}
@@ -0,0 +1,6 @@
1
+ import type { Icon } from '@coast/schemas';
2
+ export interface TagOption {
3
+ value: string;
4
+ label: string;
5
+ iconName?: Icon;
6
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=TagOption.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TagOption.js","sourceRoot":"","sources":["../../../src/models/workflow-library/TagOption.ts"],"names":[],"mappings":""}
@@ -0,0 +1,6 @@
1
+ import { TagType } from '@coast/core-types/workflow-library/TagType';
2
+ import { TagOption } from './TagOption';
3
+ export interface TagOptions {
4
+ readonly OPTIONS: Record<TagType, TagOption[]>;
5
+ readonly VALID_VALUES: Record<TagType, string[]>;
6
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=TagOptions.js.map
@@ -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.291",
3
+ "version": "1.2.292",
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.33",
26
+ "@coast/core-types": "0.0.35",
27
27
  "@coast/core-utils": "0.0.13",
28
28
  "@coast/schemas": "^4.0.0",
29
29
  "@coast/service-common": "^2.0.69",