@bigfootai/bigfoot-types 5.4.33 → 5.4.34
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/dist/types.d.ts +2 -2
- package/dist/types.js +1 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
@@ -1215,10 +1215,10 @@ export interface FindTagExternalLinkStatusInput {
|
|
1215
1215
|
tagType: TagType;
|
1216
1216
|
tagSubType?: string;
|
1217
1217
|
}
|
1218
|
-
export declare const TagExternalLinkStatusQL = "\ntype TagExternalLinkStatus {\n connected: Boolean!\n\
|
1218
|
+
export declare const TagExternalLinkStatusQL = "\ntype TagExternalLinkStatus {\n connected: Boolean!\n\turi: String\n}";
|
1219
1219
|
export interface TagExternalLinkStatus {
|
1220
1220
|
connected: boolean;
|
1221
|
-
|
1221
|
+
uri?: string;
|
1222
1222
|
}
|
1223
1223
|
export declare const FindRecordInputQL = "\ninput FindRecordInput {\n _id: String\n uri: String\n archived: Boolean\n}";
|
1224
1224
|
export interface FindRecordInput {
|
package/dist/types.js
CHANGED
@@ -1802,7 +1802,7 @@ input FindTagExternalLinkStatusInput {
|
|
1802
1802
|
export const TagExternalLinkStatusQL = `
|
1803
1803
|
type TagExternalLinkStatus {
|
1804
1804
|
connected: Boolean!
|
1805
|
-
|
1805
|
+
uri: String
|
1806
1806
|
}`;
|
1807
1807
|
// API OBJECTS START
|
1808
1808
|
export const FindRecordInputQL = `
|
package/package.json
CHANGED