@bigfootai/bigfoot-types 4.5.15 → 4.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 +1 -0
- package/model.ts +2 -0
- package/package.json +1 -1
package/model.js
CHANGED
package/model.ts
CHANGED
@@ -2173,6 +2173,7 @@ export const UpsertFolderInputQL = `
|
|
2173
2173
|
input UpsertFolderInput {
|
2174
2174
|
_id: String
|
2175
2175
|
sharingTags: [SharingTagInput]
|
2176
|
+
icon: String
|
2176
2177
|
label: String!
|
2177
2178
|
description: String
|
2178
2179
|
searchIds: [String]
|
@@ -2180,6 +2181,7 @@ input UpsertFolderInput {
|
|
2180
2181
|
export interface UpsertFolderInput {
|
2181
2182
|
_id?: string;
|
2182
2183
|
sharingTags?: SharingTag[];
|
2184
|
+
icon?: string;
|
2183
2185
|
label: string;
|
2184
2186
|
description?: string;
|
2185
2187
|
searchIds?: string[];
|