@stonecrop/graphql-client 0.2.67 → 0.3.1
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/graphql-client.d.ts +25 -27
- package/dist/graphql-client.js.map +1 -1
- package/dist/graphql-client.umd.cjs.map +1 -1
- package/dist/src/index.d.ts +1 -1
- package/package.json +2 -2
- package/src/index.ts +1 -1
package/dist/graphql-client.d.ts
CHANGED
|
@@ -2,50 +2,48 @@
|
|
|
2
2
|
* @file This file contains all the types that are used in the application.
|
|
3
3
|
* @public
|
|
4
4
|
*/
|
|
5
|
-
|
|
6
5
|
/**
|
|
7
6
|
* The type of the response from the `getMeta` query.
|
|
8
7
|
* @public
|
|
9
8
|
*/
|
|
10
9
|
export declare type Meta = {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
}
|
|
10
|
+
variables: {
|
|
11
|
+
doctype: string;
|
|
12
|
+
};
|
|
13
|
+
response: {
|
|
14
|
+
getMeta: MetaResponse;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
19
17
|
|
|
20
18
|
/**
|
|
21
19
|
* The type of the response from the `getMeta` query.
|
|
22
20
|
* @public
|
|
23
21
|
*/
|
|
24
22
|
export declare type MetaParser = {
|
|
25
|
-
|
|
26
|
-
}
|
|
23
|
+
data: Meta['response'];
|
|
24
|
+
};
|
|
27
25
|
|
|
28
26
|
/**
|
|
29
27
|
* The type of the response from the `getRecords` query.
|
|
30
28
|
* @public
|
|
31
29
|
*/
|
|
32
30
|
export declare type MetaResponse = {
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
}
|
|
31
|
+
id: string;
|
|
32
|
+
name: string;
|
|
33
|
+
workflow: {
|
|
34
|
+
id: string;
|
|
35
|
+
name: string;
|
|
36
|
+
machineId?: string;
|
|
37
|
+
};
|
|
38
|
+
schema: {
|
|
39
|
+
id: string;
|
|
40
|
+
label: string;
|
|
41
|
+
}[];
|
|
42
|
+
actions: {
|
|
43
|
+
id: string;
|
|
44
|
+
eventName: string;
|
|
45
|
+
}[];
|
|
46
|
+
};
|
|
49
47
|
|
|
50
48
|
/**
|
|
51
49
|
* Get meta information for a doctype
|