@bigfootai/bigfoot-types 4.7.17 → 4.7.18
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 +1 -1
- package/model.ts +2 -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 {
|
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
|
|