@bigfootai/bigfoot-types 5.2.25 → 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 +2 -0
- package/model.ts +3 -0
- 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 = `
|
@@ -1993,6 +1994,7 @@ ${exports.FindRecordInputQL}
|
|
1993
1994
|
${exports.FindRecordsInputQL}
|
1994
1995
|
${exports.UpsertRecordsInputQL}
|
1995
1996
|
${exports.FindTenantInputQL}
|
1997
|
+
${exports.FindTenantsInputQL}
|
1996
1998
|
${exports.FindDomainInputQL}
|
1997
1999
|
${exports.FindCalendarInputQL}
|
1998
2000
|
${exports.FindEventInputQL}
|
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
|
@@ -3456,6 +3458,7 @@ ${FindRecordInputQL}
|
|
3456
3458
|
${FindRecordsInputQL}
|
3457
3459
|
${UpsertRecordsInputQL}
|
3458
3460
|
${FindTenantInputQL}
|
3461
|
+
${FindTenantsInputQL}
|
3459
3462
|
${FindDomainInputQL}
|
3460
3463
|
${FindCalendarInputQL}
|
3461
3464
|
${FindEventInputQL}
|