@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.
- package/model.js +1 -0
- package/model.ts +2 -0
- 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
|
}
|