@bigfootai/bigfoot-types 4.7.22 → 4.7.23

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,46 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AccountOverview = void 0;
4
+ const model_1 = require("../../model");
5
+ exports.AccountOverview = {
6
+ _id: '',
7
+ dateCreated: 0,
8
+ dateUpdated: 0,
9
+ label: 'Account Overview',
10
+ description: 'This template should be used to provide account overviews or account summaries.',
11
+ metadataType: 'account_overview',
12
+ blockDescriptions: [
13
+ {
14
+ name: 'summary',
15
+ title: 'Exec Summary',
16
+ description: 'A short summary about the account',
17
+ blockType: model_1.BlockType.Section,
18
+ },
19
+ {
20
+ name: 'people',
21
+ title: 'People',
22
+ description: 'A bulleted list of people associated with the account',
23
+ blockType: model_1.BlockType.Section,
24
+ },
25
+ {
26
+ name: 'projects',
27
+ title: 'Tasks',
28
+ description: 'A list of tasks associated with this account',
29
+ blockType: model_1.BlockType.Task,
30
+ },
31
+ {
32
+ name: 'opportunities',
33
+ title: 'Opportunities',
34
+ description: 'A list of opportunities associated with the account',
35
+ recordType: 'opportunity',
36
+ blockType: model_1.BlockType.Table,
37
+ },
38
+ ],
39
+ classifiers: [
40
+ 'account summary',
41
+ 'account overview',
42
+ 'account briefing',
43
+ 'account plan',
44
+ ],
45
+ threshold: 0.24,
46
+ };
@@ -0,0 +1,46 @@
1
+ import { BlockType, DocumentMetadata } from '../../model';
2
+
3
+ export const AccountOverview: DocumentMetadata = {
4
+ _id: '',
5
+ dateCreated: 0,
6
+ dateUpdated: 0,
7
+ label: 'Account Overview',
8
+ description:
9
+ 'This template should be used to provide account overviews or account summaries.',
10
+ metadataType: 'account_overview',
11
+ blockDescriptions: [
12
+ {
13
+ name: 'summary',
14
+ title: 'Exec Summary',
15
+ description: 'A short summary about the account',
16
+ blockType: BlockType.Section,
17
+ },
18
+ {
19
+ name: 'people',
20
+ title: 'People',
21
+ description:
22
+ 'A bulleted list of people associated with the account',
23
+ blockType: BlockType.Section,
24
+ },
25
+ {
26
+ name: 'projects',
27
+ title: 'Tasks',
28
+ description: 'A list of tasks associated with this account',
29
+ blockType: BlockType.Task,
30
+ },
31
+ {
32
+ name: 'opportunities',
33
+ title: 'Opportunities',
34
+ description: 'A list of opportunities associated with the account',
35
+ recordType: 'opportunity',
36
+ blockType: BlockType.Table,
37
+ },
38
+ ],
39
+ classifiers: [
40
+ 'account summary',
41
+ 'account overview',
42
+ 'account briefing',
43
+ 'account plan',
44
+ ],
45
+ threshold: 0.24,
46
+ };
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.HealthCheck = void 0;
4
+ const model_1 = require("../../model");
4
5
  exports.HealthCheck = {
5
6
  _id: '',
6
7
  dateCreated: 0,
@@ -13,21 +14,25 @@ exports.HealthCheck = {
13
14
  name: 'summary',
14
15
  title: 'Exec Summary',
15
16
  description: 'Outlines the key takeaways of the meeting',
17
+ blockType: model_1.BlockType.Section,
16
18
  },
17
19
  {
18
20
  name: 'issues',
19
21
  title: 'Issues',
20
22
  description: 'A bulleted list of issues the customer raised during the meeting',
23
+ blockType: model_1.BlockType.Section,
21
24
  },
22
25
  {
23
26
  name: 'projects',
24
27
  title: 'Projects/Milestones',
25
28
  description: 'A bulleted list of any projects and milestone dates that are critical to the customer',
29
+ blockType: model_1.BlockType.Section,
26
30
  },
27
31
  {
28
32
  name: 'opportunities',
29
33
  title: 'Opportunities',
30
34
  description: 'A bulleted list of any opportunities the customer discussed at the meeting',
35
+ blockType: model_1.BlockType.Section,
31
36
  },
32
37
  ],
33
38
  classifiers: [
@@ -1,4 +1,4 @@
1
- import { DocumentMetadata } from '../../model';
1
+ import { BlockType, DocumentMetadata } from '../../model';
2
2
 
3
3
  export const HealthCheck: DocumentMetadata = {
4
4
  _id: '',
@@ -13,24 +13,28 @@ export const HealthCheck: DocumentMetadata = {
13
13
  name: 'summary',
14
14
  title: 'Exec Summary',
15
15
  description: 'Outlines the key takeaways of the meeting',
16
+ blockType: BlockType.Section,
16
17
  },
17
18
  {
18
19
  name: 'issues',
19
20
  title: 'Issues',
20
21
  description:
21
22
  'A bulleted list of issues the customer raised during the meeting',
23
+ blockType: BlockType.Section,
22
24
  },
23
25
  {
24
26
  name: 'projects',
25
27
  title: 'Projects/Milestones',
26
28
  description:
27
29
  'A bulleted list of any projects and milestone dates that are critical to the customer',
30
+ blockType: BlockType.Section,
28
31
  },
29
32
  {
30
33
  name: 'opportunities',
31
34
  title: 'Opportunities',
32
35
  description:
33
36
  'A bulleted list of any opportunities the customer discussed at the meeting',
37
+ blockType: BlockType.Section,
34
38
  },
35
39
  ],
36
40
  classifiers: [
package/model.js CHANGED
@@ -1045,6 +1045,8 @@ type BlockDescription {
1045
1045
  title: String
1046
1046
  name: String!
1047
1047
  description: String!
1048
+ blockType: String!
1049
+ recordType: String
1048
1050
  }`;
1049
1051
  exports.DocumentMetadataQL = `
1050
1052
  type DocumentMetadata {${exports.MetadataFields}
package/model.ts CHANGED
@@ -891,6 +891,7 @@ export const TagFieldsWithoutSharing = `${PrimitiveFields}
891
891
  inviteStatus: String
892
892
  originNoteId: String
893
893
  tenantIdVerified: String
894
+ businessObjects: [BusinessObjectLink]
894
895
  archived: Boolean!
895
896
  favorite: Boolean!
896
897
  taskCount: Int`;
@@ -921,6 +922,7 @@ export class Tag extends Primitive {
921
922
  hasAutoShareTasksOn?: boolean; // This is really a virtualized property
922
923
  sharingLevel?: SharingLevel; // This is really a virtualized property
923
924
  taskCount?: number;
925
+ businessObjects?: BusinessObjectLink[]; // The business objects that should be used to enrich the card view
924
926
  _createdByAI: boolean;
925
927
  _orphan?: boolean;
926
928
  _savedSearchId?: string;
@@ -1850,11 +1852,15 @@ type BlockDescription {
1850
1852
  title: String
1851
1853
  name: String!
1852
1854
  description: String!
1855
+ blockType: String!
1856
+ recordType: String
1853
1857
  }`;
1854
1858
  export interface BlockDescription {
1855
1859
  title?: string;
1856
1860
  name: string;
1857
1861
  description: string;
1862
+ blockType: BlockType;
1863
+ recordType?: string;
1858
1864
  }
1859
1865
 
1860
1866
  export const DocumentMetadataQL = `
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.7.22",
4
+ "version": "4.7.23",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",