@bigfootai/bigfoot-types 4.0.0 → 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 +2 -1
- package/model.ts +4 -2
- package/package.json +1 -1
package/model.js
CHANGED
@@ -418,6 +418,7 @@ exports.ProviderApplicationQL = `
|
|
418
418
|
type ProviderApplication {
|
419
419
|
name: String!
|
420
420
|
sobjects: StandardObjects!
|
421
|
+
linkSubscriptions: [String]!
|
421
422
|
}`;
|
422
423
|
class ProviderApplication {
|
423
424
|
}
|
@@ -428,7 +429,7 @@ type Provider {${exports.PrimitiveFields}
|
|
428
429
|
name: String!
|
429
430
|
description: String!
|
430
431
|
instanceUrl: String!
|
431
|
-
applications:
|
432
|
+
applications: [ProviderApplication]!
|
432
433
|
}`;
|
433
434
|
class Provider extends Primitive {
|
434
435
|
constructor(provider, name, description, instanceUrl, applications) {
|
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 = `
|
@@ -625,14 +627,14 @@ type Provider {${PrimitiveFields}
|
|
625
627
|
name: String!
|
626
628
|
description: String!
|
627
629
|
instanceUrl: String!
|
628
|
-
applications:
|
630
|
+
applications: [ProviderApplication]!
|
629
631
|
}`;
|
630
632
|
export class Provider extends Primitive {
|
631
633
|
provider: string;
|
632
634
|
name: string;
|
633
635
|
description: string;
|
634
636
|
instanceUrl: string;
|
635
|
-
applications:
|
637
|
+
applications: ProviderApplication[];
|
636
638
|
|
637
639
|
constructor(
|
638
640
|
provider: string,
|