@bigfootai/bigfoot-types 3.5.15 → 3.5.16
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 +12 -1
- package/model.ts +12 -1
- package/package.json +1 -1
package/model.js
CHANGED
@@ -802,7 +802,18 @@ input SharingTenantInput {
|
|
802
802
|
sharingLevel: Int!
|
803
803
|
}`;
|
804
804
|
exports.UpsertTagInputQL = `
|
805
|
-
input UpsertTagInput {
|
805
|
+
input UpsertTagInput {
|
806
|
+
_id: ID
|
807
|
+
alias: String!
|
808
|
+
friendlyName: String
|
809
|
+
tagType: String!
|
810
|
+
url: String
|
811
|
+
favicon: String
|
812
|
+
dbpedia: String
|
813
|
+
email: String
|
814
|
+
avatar: String
|
815
|
+
inviteStatus: Int
|
816
|
+
originNoteId: String
|
806
817
|
sharingDomains: [SharingDomainInput]
|
807
818
|
sharingTenants: [SharingTenantInput]
|
808
819
|
}`;
|
package/model.ts
CHANGED
@@ -1485,7 +1485,18 @@ input SharingTenantInput {
|
|
1485
1485
|
sharingLevel: Int!
|
1486
1486
|
}`;
|
1487
1487
|
export const UpsertTagInputQL = `
|
1488
|
-
input UpsertTagInput {
|
1488
|
+
input UpsertTagInput {
|
1489
|
+
_id: ID
|
1490
|
+
alias: String!
|
1491
|
+
friendlyName: String
|
1492
|
+
tagType: String!
|
1493
|
+
url: String
|
1494
|
+
favicon: String
|
1495
|
+
dbpedia: String
|
1496
|
+
email: String
|
1497
|
+
avatar: String
|
1498
|
+
inviteStatus: Int
|
1499
|
+
originNoteId: String
|
1489
1500
|
sharingDomains: [SharingDomainInput]
|
1490
1501
|
sharingTenants: [SharingTenantInput]
|
1491
1502
|
}`;
|