@bigfootai/bigfoot-types 4.0.1 → 4.0.2
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
package/model.ts
CHANGED
@@ -613,10 +613,12 @@ export const ProviderApplicationQL = `
|
|
613
613
|
type ProviderApplication {
|
614
614
|
name: String!
|
615
615
|
sobjects: StandardObjects!
|
616
|
+
linkSubscriptions: [String]!
|
616
617
|
}`;
|
617
618
|
export class ProviderApplication {
|
618
619
|
name: string;
|
619
620
|
sobjects: StandardObjects;
|
621
|
+
linkSubscriptions: string[];
|
620
622
|
}
|
621
623
|
|
622
624
|
export const ProviderQL = `
|