@@ -6,7 +6,7 @@ export const componentIdFields = gql`
66 version
77 scope
88 }
9- ` ;
9+ ` as any ;
1010
1111export const componentOverviewFields = gql `
1212 fragment componentOverviewFields on Component {
@@ -56,7 +56,7 @@ export const componentOverviewFields = gql`
5656 }
5757 }
5858 ${ componentIdFields }
59- ` ;
59+ ` as any ;
6060
6161export const componentFields = gql `
6262 fragment componentFields on Component {
@@ -72,7 +72,7 @@ export const componentFields = gql`
7272 }
7373 }
7474 ${ componentOverviewFields }
75- ` ;
75+ ` as any ;
7676
7777export const componentFieldsWithLogs = gql `
7878 fragment componentFieldWithLogs on Component {
@@ -100,7 +100,7 @@ export const componentFieldsWithLogs = gql`
100100 }
101101 }
102102 ${ componentIdFields }
103- ` ;
103+ ` as any ;
104104
105105export const COMPONENT_QUERY_LOG_FIELDS = `
106106 $logOffset: Int
@@ -109,7 +109,7 @@ export const COMPONENT_QUERY_LOG_FIELDS = `
109109 $logHead: String
110110 $logSort: String
111111 $logTakeHeadFromComponent: Boolean
112- ` ;
112+ ` as any ;
113113
114114export const GET_COMPONENT = gql `
115115 query Component($extensionId: String!, $id: String!) {
@@ -121,7 +121,7 @@ export const GET_COMPONENT = gql`
121121 }
122122 }
123123 ${ componentFields }
124- ` ;
124+ ` as any ;
125125
126126export const GET_COMPONENT_WITH_LOGS = gql `
127127 query Component(
@@ -137,7 +137,7 @@ export const GET_COMPONENT_WITH_LOGS = gql`
137137 }
138138 }
139139 ${ componentFieldsWithLogs }
140- ` ;
140+ ` as any ;
141141
142142export const SUB_SUBSCRIPTION_ADDED = gql `
143143 subscription OnComponentAdded {
@@ -148,7 +148,7 @@ export const SUB_SUBSCRIPTION_ADDED = gql`
148148 }
149149 }
150150 ${ componentFields }
151- ` ;
151+ ` as any ;
152152
153153export const SUB_COMPONENT_CHANGED = gql `
154154 subscription OnComponentChanged {
@@ -159,7 +159,7 @@ export const SUB_COMPONENT_CHANGED = gql`
159159 }
160160 }
161161 ${ componentFields }
162- ` ;
162+ ` as any ;
163163
164164export const SUB_COMPONENT_REMOVED = gql `
165165 subscription OnComponentRemoved {
@@ -170,4 +170,4 @@ export const SUB_COMPONENT_REMOVED = gql`
170170 }
171171 }
172172 ${ componentIdFields }
173- ` ;
173+ ` as any ;
0 commit comments