@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.
@@ -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
- variables: {
12
- doctype: string
13
- }
14
-
15
- response: {
16
- getMeta: MetaResponse
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
- data: Meta['response']
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
- id: string
34
- name: string
35
- workflow: {
36
- id: string
37
- name: string
38
- machineId?: string
39
- }
40
- schema: {
41
- id: string
42
- label: string
43
- }[]
44
- actions: {
45
- id: string
46
- eventName: string
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