@bigfootai/bigfoot-types 4.7.16 → 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 +39 -0
- package/metadata/documents/healthcheck.ts +42 -0
- package/model.js +4 -4
- package/model.ts +6 -6
- package/package.json +1 -1
@@ -0,0 +1,39 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.HealthCheck = void 0;
|
4
|
+
exports.HealthCheck = {
|
5
|
+
_id: '',
|
6
|
+
dateCreated: 0,
|
7
|
+
dateUpdated: 0,
|
8
|
+
label: 'Customer Health Check',
|
9
|
+
description: 'This template should be used for customer meetings where the person is checking the satisfaction of the customer with their product or service.',
|
10
|
+
metadataType: 'healthcheck',
|
11
|
+
blockDescriptions: [
|
12
|
+
{
|
13
|
+
name: 'summary',
|
14
|
+
title: 'Exec Summary',
|
15
|
+
description: 'Outlines the key takeaways of the meeting',
|
16
|
+
},
|
17
|
+
{
|
18
|
+
name: 'issues',
|
19
|
+
title: 'Issues',
|
20
|
+
description: 'A bulleted list of issues the customer raised during the meeting',
|
21
|
+
},
|
22
|
+
{
|
23
|
+
name: 'projects',
|
24
|
+
title: 'Projects/Milestones',
|
25
|
+
description: 'A bulleted list of any projects and milestone dates that are critical to the customer',
|
26
|
+
},
|
27
|
+
{
|
28
|
+
name: 'opportunities',
|
29
|
+
title: 'Opportunities',
|
30
|
+
description: 'A bulleted list of any opportunities the customer discussed at the meeting',
|
31
|
+
},
|
32
|
+
],
|
33
|
+
classifiers: [
|
34
|
+
'health check',
|
35
|
+
'customer check-in',
|
36
|
+
'customer status meeting',
|
37
|
+
'customer feedback session',
|
38
|
+
],
|
39
|
+
};
|
@@ -0,0 +1,42 @@
|
|
1
|
+
import { DocumentMetadata } from '../../model';
|
2
|
+
|
3
|
+
export const HealthCheck: DocumentMetadata = {
|
4
|
+
_id: '',
|
5
|
+
dateCreated: 0,
|
6
|
+
dateUpdated: 0,
|
7
|
+
label: 'Customer Health Check',
|
8
|
+
description:
|
9
|
+
'This template should be used for customer meetings where the person is checking the satisfaction of the customer with their product or service.',
|
10
|
+
metadataType: 'healthcheck',
|
11
|
+
blockDescriptions: [
|
12
|
+
{
|
13
|
+
name: 'summary',
|
14
|
+
title: 'Exec Summary',
|
15
|
+
description: 'Outlines the key takeaways of the meeting',
|
16
|
+
},
|
17
|
+
{
|
18
|
+
name: 'issues',
|
19
|
+
title: 'Issues',
|
20
|
+
description:
|
21
|
+
'A bulleted list of issues the customer raised during the meeting',
|
22
|
+
},
|
23
|
+
{
|
24
|
+
name: 'projects',
|
25
|
+
title: 'Projects/Milestones',
|
26
|
+
description:
|
27
|
+
'A bulleted list of any projects and milestone dates that are critical to the customer',
|
28
|
+
},
|
29
|
+
{
|
30
|
+
name: 'opportunities',
|
31
|
+
title: 'Opportunities',
|
32
|
+
description:
|
33
|
+
'A bulleted list of any opportunities the customer discussed at the meeting',
|
34
|
+
},
|
35
|
+
],
|
36
|
+
classifiers: [
|
37
|
+
'health check',
|
38
|
+
'customer check-in',
|
39
|
+
'customer status meeting',
|
40
|
+
'customer feedback session',
|
41
|
+
],
|
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 {
|
@@ -1041,12 +1041,12 @@ type BlockDescription {
|
|
1041
1041
|
}`;
|
1042
1042
|
exports.DocumentMetadataQL = `
|
1043
1043
|
type DocumentMetadata {${exports.MetadataFields}
|
1044
|
-
|
1044
|
+
blockDescriptions: [BlockDescription]!
|
1045
1045
|
}`;
|
1046
1046
|
class DocumentMetadata extends Metadata {
|
1047
|
-
constructor(label, description, metadataType,
|
1047
|
+
constructor(label, description, metadataType, blockDescriptions) {
|
1048
1048
|
super(label, description, metadataType);
|
1049
|
-
this.
|
1049
|
+
this.blockDescriptions = blockDescriptions;
|
1050
1050
|
}
|
1051
1051
|
}
|
1052
1052
|
exports.DocumentMetadata = DocumentMetadata;
|
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
|
|
@@ -1845,20 +1845,20 @@ export interface BlockDescription {
|
|
1845
1845
|
|
1846
1846
|
export const DocumentMetadataQL = `
|
1847
1847
|
type DocumentMetadata {${MetadataFields}
|
1848
|
-
|
1848
|
+
blockDescriptions: [BlockDescription]!
|
1849
1849
|
}`;
|
1850
1850
|
export class DocumentMetadata extends Metadata {
|
1851
|
-
|
1851
|
+
blockDescriptions: BlockDescription[];
|
1852
1852
|
|
1853
1853
|
constructor(
|
1854
1854
|
label: string,
|
1855
1855
|
description: string,
|
1856
1856
|
metadataType: string,
|
1857
|
-
|
1857
|
+
blockDescriptions: BlockDescription[]
|
1858
1858
|
) {
|
1859
1859
|
super(label, description, metadataType);
|
1860
1860
|
|
1861
|
-
this.
|
1861
|
+
this.blockDescriptions = blockDescriptions;
|
1862
1862
|
}
|
1863
1863
|
}
|
1864
1864
|
|