@bigfootai/bigfoot-types 4.5.5 → 4.5.6

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 +3 -3
  2. package/model.ts +4 -4
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -1194,9 +1194,9 @@ exports.UpsertFolderInputQL = `
1194
1194
  input UpsertFolderInput {
1195
1195
  _id: String
1196
1196
  sharingTags: [SharingTagInput]
1197
- label: string;
1198
- description?: string;
1199
- searchIds?: string[];
1197
+ label: String!
1198
+ description: String
1199
+ searchIds: [String]
1200
1200
  }`;
1201
1201
  exports.FindFolderInputQL = `
1202
1202
  input FindFolderInput {
package/model.ts CHANGED
@@ -653,7 +653,7 @@ export class Folder extends SharedPrimitive {
653
653
  description?: string;
654
654
  searchIds?: string[];
655
655
  archived: boolean;
656
- _tagType: string;
656
+ _tagType: TagType;
657
657
 
658
658
  constructor(tenantIdCreated: string, sharingTags: SharingTag[]) {
659
659
  super(sharingTags);
@@ -2159,9 +2159,9 @@ export const UpsertFolderInputQL = `
2159
2159
  input UpsertFolderInput {
2160
2160
  _id: String
2161
2161
  sharingTags: [SharingTagInput]
2162
- label: string;
2163
- description?: string;
2164
- searchIds?: string[];
2162
+ label: String!
2163
+ description: String
2164
+ searchIds: [String]
2165
2165
  }`;
2166
2166
  export interface UpsertFolderInput {
2167
2167
  _id: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.5.5",
4
+ "version": "4.5.6",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",