@bigfootai/bigfoot-types 5.2.26 → 5.2.27
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
@@ -3356,11 +3356,13 @@ input UpdateTagSharingInput {
|
|
3356
3356
|
_id: String!
|
3357
3357
|
emailDomain: Boolean
|
3358
3358
|
sharingTenants: [SharingTenantInput]
|
3359
|
+
sharingDomains: [SharingDomainInput]
|
3359
3360
|
}`;
|
3360
3361
|
export interface UpdateTagSharingInput {
|
3361
3362
|
_id: string;
|
3362
3363
|
emailDomain?: boolean;
|
3363
3364
|
sharingTenants?: SharingTenant[];
|
3365
|
+
sharingDomains?: SharingDomain[];
|
3364
3366
|
}
|
3365
3367
|
|
3366
3368
|
// THE GRAPH QL DEFINITIONS
|