@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.
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
@@ -1899,6 +1899,7 @@ input UpdateTagSharingInput {
1899
1899
  _id: String!
1900
1900
  emailDomain: Boolean
1901
1901
  sharingTenants: [SharingTenantInput]
1902
+ sharingDomains: [SharingDomainInput]
1902
1903
  }`;
1903
1904
  // THE GRAPH QL DEFINITIONS
1904
1905
  exports.GraphQLTypes = `
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
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.2.26",
4
+ "version": "5.2.27",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",