@bigfootai/bigfoot-types 4.7.17 → 4.7.19
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/metadata/documents/healthcheck.js +6 -0
- package/metadata/documents/healthcheck.ts +6 -0
- package/model.js +2 -1
- package/model.ts +4 -2
- package/package.json +1 -1
@@ -30,4 +30,10 @@ exports.HealthCheck = {
|
|
30
30
|
description: 'A bulleted list of any opportunities the customer discussed at the meeting',
|
31
31
|
},
|
32
32
|
],
|
33
|
+
classifiers: [
|
34
|
+
'health check',
|
35
|
+
'customer check-in',
|
36
|
+
'customer status meeting',
|
37
|
+
'customer feedback session',
|
38
|
+
],
|
33
39
|
};
|
@@ -33,4 +33,10 @@ export const HealthCheck: DocumentMetadata = {
|
|
33
33
|
'A bulleted list of any opportunities the customer discussed at the meeting',
|
34
34
|
},
|
35
35
|
],
|
36
|
+
classifiers: [
|
37
|
+
'health check',
|
38
|
+
'customer check-in',
|
39
|
+
'customer status meeting',
|
40
|
+
'customer feedback session',
|
41
|
+
],
|
36
42
|
};
|
package/model.js
CHANGED
@@ -465,7 +465,7 @@ exports.MetadataFields = `${exports.PrimitiveFields}
|
|
465
465
|
description: String!
|
466
466
|
metadataType: String!
|
467
467
|
references: [String]
|
468
|
-
classifiers: [String]
|
468
|
+
classifiers: [String]!
|
469
469
|
provider: String
|
470
470
|
application: String`;
|
471
471
|
class Metadata extends Primitive {
|
@@ -1007,6 +1007,7 @@ type Document {${exports.BusinessObjectFields}
|
|
1007
1007
|
description: String
|
1008
1008
|
previewImage: String
|
1009
1009
|
htmlContent: String
|
1010
|
+
metadata: DocumentMetadata
|
1010
1011
|
}`;
|
1011
1012
|
class Document extends BusinessObject {
|
1012
1013
|
constructor(tenantIdCreated, editors, sharingTags, version, provider, application, uri, externalId) {
|
package/model.ts
CHANGED
@@ -668,7 +668,7 @@ export const MetadataFields = `${PrimitiveFields}
|
|
668
668
|
description: String!
|
669
669
|
metadataType: String!
|
670
670
|
references: [String]
|
671
|
-
classifiers: [String]
|
671
|
+
classifiers: [String]!
|
672
672
|
provider: String
|
673
673
|
application: String`;
|
674
674
|
export class Metadata extends Primitive {
|
@@ -676,7 +676,7 @@ export class Metadata extends Primitive {
|
|
676
676
|
description: string;
|
677
677
|
metadataType: string;
|
678
678
|
references?: string[];
|
679
|
-
classifiers
|
679
|
+
classifiers: string[];
|
680
680
|
provider?: string;
|
681
681
|
application?: string;
|
682
682
|
|
@@ -1755,12 +1755,14 @@ type Document {${BusinessObjectFields}
|
|
1755
1755
|
description: String
|
1756
1756
|
previewImage: String
|
1757
1757
|
htmlContent: String
|
1758
|
+
metadata: DocumentMetadata
|
1758
1759
|
}`;
|
1759
1760
|
export class Document extends BusinessObject {
|
1760
1761
|
title?: string;
|
1761
1762
|
description?: string;
|
1762
1763
|
previewImage?: string;
|
1763
1764
|
htmlContent?: string;
|
1765
|
+
metadata?: DocumentMetadata;
|
1764
1766
|
|
1765
1767
|
constructor(
|
1766
1768
|
tenantIdCreated: string,
|