@bigfootai/bigfoot-types 4.9.11 → 4.9.12

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.
Files changed (3) hide show
  1. package/model.js +1 -0
  2. package/model.ts +2 -0
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -589,6 +589,7 @@ type ProviderApplication {
589
589
  linkSubscriptions: [String]
590
590
  recordTypeSubscriptions: [String]
591
591
  documentTypeSubscriptions: [String]
592
+ dashboardTypeSubscriptions: [String]
592
593
  dashboardTagSubscriptions: [DashboardTagSubscription]
593
594
  authentication: Boolean!
594
595
  }`;
package/model.ts CHANGED
@@ -859,6 +859,7 @@ type ProviderApplication {
859
859
  linkSubscriptions: [String]
860
860
  recordTypeSubscriptions: [String]
861
861
  documentTypeSubscriptions: [String]
862
+ dashboardTypeSubscriptions: [String]
862
863
  dashboardTagSubscriptions: [DashboardTagSubscription]
863
864
  authentication: Boolean!
864
865
  }`;
@@ -871,6 +872,7 @@ export interface ProviderApplication {
871
872
  linkSubscriptions?: string[];
872
873
  recordTypeSubscriptions?: string[];
873
874
  documentTypeSubscriptions?: string[];
875
+ dashboardTypeSubscriptions?: string[];
874
876
  dashboardTagSubscriptions?: DashboardTagSubscription[];
875
877
  authentication: boolean;
876
878
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.9.11",
4
+ "version": "4.9.12",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",