@bigfootai/bigfoot-types 5.1.13 → 5.1.14

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.
@@ -24,11 +24,10 @@ exports.AccountOverview = {
24
24
  blockType: model_1.BlockType.Record,
25
25
  },
26
26
  {
27
- name: 'opportunities',
28
- title: 'Opportunities',
29
- description: 'A list of opportunities associated with the account',
27
+ name: 'team',
28
+ title: 'Team',
29
+ description: 'A list of people associated with the account',
30
30
  tagType: model_1.TagType.Person,
31
- blockType: model_1.BlockType.Table,
32
31
  },
33
32
  {
34
33
  name: 'opportunities',
@@ -25,11 +25,10 @@ export const AccountOverview: DashboardMetadata = {
25
25
  blockType: BlockType.Record,
26
26
  },
27
27
  {
28
- name: 'opportunities',
29
- title: 'Opportunities',
30
- description: 'A list of opportunities associated with the account',
28
+ name: 'team',
29
+ title: 'Team',
30
+ description: 'A list of people associated with the account',
31
31
  tagType: TagType.Person,
32
- blockType: BlockType.Table,
33
32
  },
34
33
  {
35
34
  name: 'opportunities',
package/model.js CHANGED
@@ -1087,11 +1087,12 @@ exports.Document = Document;
1087
1087
  exports.BlockDataQL = `
1088
1088
  type BlockData {
1089
1089
  name: String!
1090
- blockType: String!
1090
+ blockType: String
1091
1091
  title: String
1092
1092
  document: String
1093
1093
  htmlContent: String
1094
1094
  metadataType: String
1095
+ tagType: String
1095
1096
  }`;
1096
1097
  exports.DashboardQL = `
1097
1098
  type Dashboard {${exports.BusinessObjectFields}
package/model.ts CHANGED
@@ -1856,19 +1856,21 @@ export class Document extends BusinessObject {
1856
1856
  export const BlockDataQL = `
1857
1857
  type BlockData {
1858
1858
  name: String!
1859
- blockType: String!
1859
+ blockType: String
1860
1860
  title: String
1861
1861
  document: String
1862
1862
  htmlContent: String
1863
1863
  metadataType: String
1864
+ tagType: String
1864
1865
  }`;
1865
1866
  export interface BlockData {
1866
1867
  name: string;
1867
- blockType: BlockType;
1868
+ blockType?: BlockType;
1868
1869
  title?: string;
1869
1870
  document?: string;
1870
1871
  htmlContent?: string;
1871
1872
  metadataType?: string;
1873
+ tagType?: TagType;
1872
1874
  }
1873
1875
 
1874
1876
  export const DashboardQL = `
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.1.13",
4
+ "version": "5.1.14",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",