@bigfootai/bigfoot-types 5.1.12 → 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.
@@ -23,6 +23,12 @@ exports.AccountOverview = {
23
23
  metadataType: 'organization',
24
24
  blockType: model_1.BlockType.Record,
25
25
  },
26
+ {
27
+ name: 'team',
28
+ title: 'Team',
29
+ description: 'A list of people associated with the account',
30
+ tagType: model_1.TagType.Person,
31
+ },
26
32
  {
27
33
  name: 'opportunities',
28
34
  title: 'Opportunities',
@@ -1,4 +1,4 @@
1
- import { BlockType, DashboardMetadata } from '../../model';
1
+ import { BlockType, DashboardMetadata, TagType } from '../../model';
2
2
 
3
3
  export const AccountOverview: DashboardMetadata = {
4
4
  _id: '',
@@ -24,6 +24,12 @@ export const AccountOverview: DashboardMetadata = {
24
24
  metadataType: 'organization',
25
25
  blockType: BlockType.Record,
26
26
  },
27
+ {
28
+ name: 'team',
29
+ title: 'Team',
30
+ description: 'A list of people associated with the account',
31
+ tagType: TagType.Person,
32
+ },
27
33
  {
28
34
  name: 'opportunities',
29
35
  title: '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}
@@ -1138,7 +1139,7 @@ type BlockDescription {
1138
1139
  title: String
1139
1140
  name: String!
1140
1141
  description: String!
1141
- blockType: String!
1142
+ blockType: String
1142
1143
  metadataType: String
1143
1144
  tagType: String
1144
1145
  }`;
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 = `
@@ -1963,7 +1965,7 @@ type BlockDescription {
1963
1965
  title: String
1964
1966
  name: String!
1965
1967
  description: String!
1966
- blockType: String!
1968
+ blockType: String
1967
1969
  metadataType: String
1968
1970
  tagType: String
1969
1971
  }`;
@@ -1971,7 +1973,7 @@ export interface BlockDescription {
1971
1973
  title?: string;
1972
1974
  name: string;
1973
1975
  description: string;
1974
- blockType: BlockType;
1976
+ blockType?: BlockType;
1975
1977
  metadataType?: string;
1976
1978
  tagType?: TagType;
1977
1979
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.1.12",
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",