@trackunit/custom-field-api 0.0.21 → 0.0.23
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/package.json
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { TypedDocumentNode as DocumentNode } from "@graphql-typed-document-node/core";
|
|
2
|
+
import type { PublicIrisAppManifest } from "@trackunit/iris-app-api";
|
|
2
3
|
export type Maybe<T> = T | null;
|
|
3
4
|
export type InputMaybe<T> = Maybe<T>;
|
|
4
5
|
export type Exact<T extends {
|
|
@@ -52,6 +53,11 @@ export type Scalars = {
|
|
|
52
53
|
input: any;
|
|
53
54
|
output: any;
|
|
54
55
|
};
|
|
56
|
+
/** The `PublicIrisAppManifest` scalar type represents an Iris App Manifest as JSON */
|
|
57
|
+
PublicIrisAppManifest: {
|
|
58
|
+
input: PublicIrisAppManifest;
|
|
59
|
+
output: PublicIrisAppManifest;
|
|
60
|
+
};
|
|
55
61
|
/** The `Upload` scalar type represents a file upload. */
|
|
56
62
|
Upload: {
|
|
57
63
|
input: any;
|