@bigfootai/bigfoot-types 5.2.11 → 5.2.13

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.
@@ -7,7 +7,7 @@ exports.Google = {
7
7
  dateCreated: 0,
8
8
  dateUpdated: 0,
9
9
  name: 'google',
10
- description: 'Something about what it does',
10
+ description: 'Automate your Google Workspace',
11
11
  instanceUrl: 'https://connect-google-dev.noded.so',
12
12
  applications: [
13
13
  {
@@ -58,5 +58,5 @@ exports.Google = {
58
58
  },
59
59
  ],
60
60
  label: 'Google Connect',
61
- iconUrl: 'https://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/Google_Workspace_Logo.svg/640px-Google_Workspace_Logo.svg.png',
61
+ iconUrl: 'https://static.vecteezy.com/system/resources/previews/022/484/503/non_2x/google-lens-icon-logo-symbol-free-png.png',
62
62
  };
@@ -5,7 +5,7 @@ export const Google: Provider = {
5
5
  dateCreated: 0,
6
6
  dateUpdated: 0,
7
7
  name: 'google',
8
- description: 'Something about what it does',
8
+ description: 'Automate your Google Workspace',
9
9
  instanceUrl: 'https://connect-google-dev.noded.so',
10
10
  applications: [
11
11
  {
@@ -61,5 +61,5 @@ export const Google: Provider = {
61
61
  ],
62
62
  label: 'Google Connect',
63
63
  iconUrl:
64
- 'https://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/Google_Workspace_Logo.svg/640px-Google_Workspace_Logo.svg.png',
64
+ 'https://static.vecteezy.com/system/resources/previews/022/484/503/non_2x/google-lens-icon-logo-symbol-free-png.png',
65
65
  };
@@ -7,7 +7,7 @@ exports.Salesforce = {
7
7
  dateCreated: 0,
8
8
  dateUpdated: 0,
9
9
  name: 'salesforce',
10
- description: 'Something about what it does',
10
+ description: 'Salesforce automation for Noded',
11
11
  instanceUrl: 'https://connect-salesforce-dev.noded.so',
12
12
  applications: [
13
13
  {
@@ -5,7 +5,7 @@ export const Salesforce: Provider = {
5
5
  dateCreated: 0,
6
6
  dateUpdated: 0,
7
7
  name: 'salesforce',
8
- description: 'Something about what it does',
8
+ description: 'Salesforce automation for Noded',
9
9
  instanceUrl: 'https://connect-salesforce-dev.noded.so',
10
10
  applications: [
11
11
  {
package/model.js CHANGED
@@ -252,6 +252,9 @@ var PubSubType;
252
252
  PubSubType["TaskCreated"] = "taskCreated";
253
253
  PubSubType["TaskUpdated"] = "taskUpdated";
254
254
  PubSubType["TaskArchived"] = "taskArchived";
255
+ PubSubType["RecommendationCreated"] = "recommendationCreated";
256
+ PubSubType["RecommendationUpdated"] = "recommendationUpdated";
257
+ PubSubType["RecommendationArchived"] = "recommendationArchived";
255
258
  PubSubType["ReactionAddedToBlock"] = "reactionAddedToBlock";
256
259
  PubSubType["ReactionRemovedFromBlock"] = "reactionRemovedFromBlock";
257
260
  PubSubType["MessageCreatedForBlock"] = "messageCreatedForBlock";
package/model.ts CHANGED
@@ -245,6 +245,9 @@ export enum PubSubType {
245
245
  TaskCreated = 'taskCreated',
246
246
  TaskUpdated = 'taskUpdated',
247
247
  TaskArchived = 'taskArchived',
248
+ RecommendationCreated = 'recommendationCreated',
249
+ RecommendationUpdated = 'recommendationUpdated',
250
+ RecommendationArchived = 'recommendationArchived',
248
251
  ReactionAddedToBlock = 'reactionAddedToBlock',
249
252
  ReactionRemovedFromBlock = 'reactionRemovedFromBlock',
250
253
  MessageCreatedForBlock = 'messageCreatedForBlock',
@@ -2056,6 +2059,7 @@ export interface BlockData {
2056
2059
  htmlContent?: string;
2057
2060
  metadataType?: string;
2058
2061
  tagType?: TagType;
2062
+ _dateUpdated?: number;
2059
2063
  }
2060
2064
 
2061
2065
  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.2.11",
4
+ "version": "5.2.13",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",