@databrainhq/plugin 0.11.38 → 0.12.0
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/components/ExternalMetricForm/index.d.ts +2 -2
- package/dist/components/MetricCreation/MetricCreation.d.ts +1 -1
- package/dist/components/MetricList/MetricList.d.ts +1 -2
- package/dist/components/MetricList/components/DownloadRawCsvModal/index.d.ts +1 -1
- package/dist/components/MetricList/components/FullScreenView/index.d.ts +1 -1
- package/dist/components/MetricList/components/MetricCards/MetricCard.d.ts +1 -1
- package/dist/components/MetricList/components/index.d.ts +0 -1
- package/dist/components/Table/index.d.ts +2 -1
- package/dist/consts/api.d.ts +37 -0
- package/dist/hooks/index.d.ts +0 -2
- package/dist/hooks/useApplyAdminTheme.d.ts +1 -2
- package/dist/hooks/useDashboardContext.d.ts +4 -4
- package/dist/hooks/useDownloadRawCsv.d.ts +6 -44
- package/dist/hooks/useEmbeddedMetric.d.ts +2 -3
- package/dist/hooks/useExternalMetric.d.ts +14 -3
- package/dist/hooks/useGenerateDatasetMetrics.d.ts +9 -11
- package/dist/hooks/useMetricCard.d.ts +1 -2
- package/dist/hooks/useNewEmbeddedDashboard.d.ts +4 -4
- package/dist/hooks/useScheduleEmail.d.ts +2 -11
- package/dist/queries/externalDashboard.mutation.d.ts +43 -0
- package/dist/queries/externalDashboard.query.d.ts +13 -0
- package/dist/queries/metric.mutation.d.ts +13 -0
- package/dist/queries/metric.query.d.ts +7 -0
- package/dist/types/app.d.ts +5 -0
- package/dist/types/metricCreate.d.ts +1 -1
- package/dist/types/queryTypes.d.ts +239 -0
- package/dist/utils/fetcher.d.ts +10 -1
- package/dist/utils/getChartAttributes.d.ts +2 -1
- package/dist/webcomponents.es.js +32083 -32473
- package/dist/webcomponents.umd.js +241 -575
- package/package.json +1 -2
- package/dist/components/MetricList/components/MetricCards/SingleValueCard.d.ts +0 -3
- package/dist/helpers/timesAgo.d.ts +0 -2
- package/dist/hooks/useEmbeddedDashboard.d.ts +0 -67
- package/dist/hooks/useGenerateEmbeddedMetric.d.ts +0 -15
- package/dist/utils/generated/graphql.d.ts +0 -4514
|
@@ -1,4514 +0,0 @@
|
|
|
1
|
-
import { UseQueryOptions, UseMutationOptions } from 'react-query';
|
|
2
|
-
export type Maybe<T> = T | null;
|
|
3
|
-
export type InputMaybe<T> = Maybe<T>;
|
|
4
|
-
export type Exact<T extends {
|
|
5
|
-
[key: string]: unknown;
|
|
6
|
-
}> = {
|
|
7
|
-
[K in keyof T]: T[K];
|
|
8
|
-
};
|
|
9
|
-
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
|
|
10
|
-
[SubKey in K]?: Maybe<T[SubKey]>;
|
|
11
|
-
};
|
|
12
|
-
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
|
|
13
|
-
[SubKey in K]: Maybe<T[SubKey]>;
|
|
14
|
-
};
|
|
15
|
-
/** All built-in and custom scalars, mapped to their actual values */
|
|
16
|
-
export type Scalars = {
|
|
17
|
-
ID: string;
|
|
18
|
-
String: string;
|
|
19
|
-
Boolean: boolean;
|
|
20
|
-
Int: number;
|
|
21
|
-
Float: number;
|
|
22
|
-
json: any;
|
|
23
|
-
jsonb: any;
|
|
24
|
-
timestamptz: any;
|
|
25
|
-
uuid: any;
|
|
26
|
-
};
|
|
27
|
-
/** Boolean expression to compare columns of type "Boolean". All fields are combined with logical 'AND'. */
|
|
28
|
-
export type Boolean_Comparison_Exp = {
|
|
29
|
-
_eq?: InputMaybe<Scalars['Boolean']>;
|
|
30
|
-
_gt?: InputMaybe<Scalars['Boolean']>;
|
|
31
|
-
_gte?: InputMaybe<Scalars['Boolean']>;
|
|
32
|
-
_in?: InputMaybe<Array<Scalars['Boolean']>>;
|
|
33
|
-
_is_null?: InputMaybe<Scalars['Boolean']>;
|
|
34
|
-
_lt?: InputMaybe<Scalars['Boolean']>;
|
|
35
|
-
_lte?: InputMaybe<Scalars['Boolean']>;
|
|
36
|
-
_neq?: InputMaybe<Scalars['Boolean']>;
|
|
37
|
-
_nin?: InputMaybe<Array<Scalars['Boolean']>>;
|
|
38
|
-
};
|
|
39
|
-
export type ColumnData = {
|
|
40
|
-
__typename?: 'ColumnData';
|
|
41
|
-
label: Scalars['String'];
|
|
42
|
-
value: Scalars['String'];
|
|
43
|
-
};
|
|
44
|
-
export type ColumnDataError = {
|
|
45
|
-
__typename?: 'ColumnDataError';
|
|
46
|
-
message: Scalars['String'];
|
|
47
|
-
};
|
|
48
|
-
export type EmbeddedDashboardDataInput = {
|
|
49
|
-
dashboardId?: InputMaybe<Scalars['String']>;
|
|
50
|
-
token: Scalars['String'];
|
|
51
|
-
};
|
|
52
|
-
export type EmbeddedDashboardDataOutput = {
|
|
53
|
-
__typename?: 'EmbeddedDashboardDataOutput';
|
|
54
|
-
adminTheme?: Maybe<Scalars['json']>;
|
|
55
|
-
appFilters?: Maybe<Scalars['json']>;
|
|
56
|
-
clientId?: Maybe<Scalars['String']>;
|
|
57
|
-
companyId?: Maybe<Scalars['String']>;
|
|
58
|
-
companyTenancyType?: Maybe<Scalars['String']>;
|
|
59
|
-
error?: Maybe<Error>;
|
|
60
|
-
externalDashboard?: Maybe<Scalars['json']>;
|
|
61
|
-
externalMetrics?: Maybe<Array<Maybe<Scalars['json']>>>;
|
|
62
|
-
guestToken?: Maybe<Scalars['String']>;
|
|
63
|
-
isAllowedToChangeLayout?: Maybe<Scalars['Boolean']>;
|
|
64
|
-
isAllowedToCreateMetrics?: Maybe<Scalars['Boolean']>;
|
|
65
|
-
isAllowedToDeleteMetrics?: Maybe<Scalars['Boolean']>;
|
|
66
|
-
isAllowedToUpdateMetrics?: Maybe<Scalars['Boolean']>;
|
|
67
|
-
rlsSettings?: Maybe<Scalars['json']>;
|
|
68
|
-
sharingSettingsId?: Maybe<Scalars['String']>;
|
|
69
|
-
workspace?: Maybe<Scalars['json']>;
|
|
70
|
-
};
|
|
71
|
-
export type EmbeddedMetricDataInput = {
|
|
72
|
-
guestToken: Scalars['String'];
|
|
73
|
-
metricId: Scalars['String'];
|
|
74
|
-
};
|
|
75
|
-
export type EmbeddedMetricDataOutput = {
|
|
76
|
-
__typename?: 'EmbeddedMetricDataOutput';
|
|
77
|
-
adminTheme?: Maybe<Scalars['json']>;
|
|
78
|
-
clientId?: Maybe<Scalars['String']>;
|
|
79
|
-
companyId?: Maybe<Scalars['String']>;
|
|
80
|
-
error?: Maybe<Error>;
|
|
81
|
-
externalMetric?: Maybe<Scalars['json']>;
|
|
82
|
-
params?: Maybe<Scalars['json']>;
|
|
83
|
-
sharingSettingsId?: Maybe<Scalars['String']>;
|
|
84
|
-
token?: Maybe<Scalars['String']>;
|
|
85
|
-
};
|
|
86
|
-
export type Error = {
|
|
87
|
-
__typename?: 'Error';
|
|
88
|
-
message: Scalars['String'];
|
|
89
|
-
};
|
|
90
|
-
export type ExternalMetricQueryInput = {
|
|
91
|
-
clientId?: InputMaybe<Scalars['String']>;
|
|
92
|
-
drillFilters?: InputMaybe<Scalars['json']>;
|
|
93
|
-
externalMetricId: Scalars['String'];
|
|
94
|
-
filterValues?: InputMaybe<Scalars['json']>;
|
|
95
|
-
globalFilters?: InputMaybe<Scalars['json']>;
|
|
96
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
97
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
98
|
-
rlsConditions?: InputMaybe<Scalars['json']>;
|
|
99
|
-
tenancyLevel?: InputMaybe<Scalars['String']>;
|
|
100
|
-
};
|
|
101
|
-
export type ExternalMetricQueryOutput = {
|
|
102
|
-
__typename?: 'ExternalMetricQueryOutput';
|
|
103
|
-
comparisonValue?: Maybe<Scalars['json']>;
|
|
104
|
-
data?: Maybe<Scalars['json']>;
|
|
105
|
-
metaData?: Maybe<Scalars['json']>;
|
|
106
|
-
timeTaken?: Maybe<Scalars['Float']>;
|
|
107
|
-
totalRecords?: Maybe<Scalars['Int']>;
|
|
108
|
-
};
|
|
109
|
-
export type FetchColumnDataInput = {
|
|
110
|
-
columnName: Scalars['String'];
|
|
111
|
-
filter?: InputMaybe<Scalars['json']>;
|
|
112
|
-
integrationId?: InputMaybe<Scalars['String']>;
|
|
113
|
-
integrationName?: InputMaybe<Scalars['String']>;
|
|
114
|
-
tableName: Scalars['String'];
|
|
115
|
-
wId?: InputMaybe<Scalars['String']>;
|
|
116
|
-
};
|
|
117
|
-
export type FetchColumnDataOutput = {
|
|
118
|
-
__typename?: 'FetchColumnDataOutput';
|
|
119
|
-
data?: Maybe<Array<Maybe<ColumnData>>>;
|
|
120
|
-
error?: Maybe<ColumnDataError>;
|
|
121
|
-
};
|
|
122
|
-
export type GenerateDatasetMetricsInput = {
|
|
123
|
-
integrationId: Scalars['String'];
|
|
124
|
-
integrationName: Scalars['String'];
|
|
125
|
-
userInputs: Scalars['json'];
|
|
126
|
-
};
|
|
127
|
-
export type GenerateDatasetMetricsOutput = {
|
|
128
|
-
__typename?: 'GenerateDatasetMetricsOutput';
|
|
129
|
-
error?: Maybe<Scalars['json']>;
|
|
130
|
-
metaData?: Maybe<Scalars['json']>;
|
|
131
|
-
query?: Maybe<Scalars['String']>;
|
|
132
|
-
result?: Maybe<Scalars['json']>;
|
|
133
|
-
timeTaken?: Maybe<Scalars['Float']>;
|
|
134
|
-
};
|
|
135
|
-
export type GenerateEmbeddedMeticInput = {
|
|
136
|
-
clientId: Scalars['String'];
|
|
137
|
-
companyId: Scalars['String'];
|
|
138
|
-
queryPrompt: Scalars['String'];
|
|
139
|
-
timeGrain?: InputMaybe<Scalars['String']>;
|
|
140
|
-
};
|
|
141
|
-
export type GenerateEmbeddedMeticOutput = {
|
|
142
|
-
__typename?: 'GenerateEmbeddedMeticOutput';
|
|
143
|
-
error?: Maybe<Error>;
|
|
144
|
-
query?: Maybe<Scalars['String']>;
|
|
145
|
-
result?: Maybe<Scalars['json']>;
|
|
146
|
-
};
|
|
147
|
-
export type GenerateExternalMetricQueryInput = {
|
|
148
|
-
inputData: Scalars['json'];
|
|
149
|
-
};
|
|
150
|
-
export type GenerateExternalMetricQueryOutput = {
|
|
151
|
-
__typename?: 'GenerateExternalMetricQueryOutput';
|
|
152
|
-
query: Scalars['String'];
|
|
153
|
-
};
|
|
154
|
-
export type GetUnderlyingDataInput = {
|
|
155
|
-
columnName?: InputMaybe<Scalars['String']>;
|
|
156
|
-
companyId: Scalars['String'];
|
|
157
|
-
metricId?: InputMaybe<Scalars['String']>;
|
|
158
|
-
query: Scalars['String'];
|
|
159
|
-
value?: InputMaybe<Scalars['json']>;
|
|
160
|
-
workspaceId: Scalars['String'];
|
|
161
|
-
};
|
|
162
|
-
export type GetUnderlyingDataOutput = {
|
|
163
|
-
__typename?: 'GetUnderlyingDataOutput';
|
|
164
|
-
data: Array<Maybe<Scalars['json']>>;
|
|
165
|
-
timeTaken: Scalars['Int'];
|
|
166
|
-
};
|
|
167
|
-
export type GetUnderlyingSqlQueryInput = {
|
|
168
|
-
columnName: Scalars['String'];
|
|
169
|
-
sqlQuery: Scalars['String'];
|
|
170
|
-
value: Scalars['json'];
|
|
171
|
-
};
|
|
172
|
-
export type GetUnderlyingSqlQueryOutput = {
|
|
173
|
-
__typename?: 'GetUnderlyingSqlQueryOutput';
|
|
174
|
-
query: Scalars['String'];
|
|
175
|
-
};
|
|
176
|
-
export type GroupbyColumnListInput = {
|
|
177
|
-
databaseName: Scalars['String'];
|
|
178
|
-
query: Scalars['String'];
|
|
179
|
-
};
|
|
180
|
-
export type GroupbyColumnListOutput = {
|
|
181
|
-
__typename?: 'GroupbyColumnListOutput';
|
|
182
|
-
groupbyColumnList?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
183
|
-
};
|
|
184
|
-
/** Boolean expression to compare columns of type "Int". All fields are combined with logical 'AND'. */
|
|
185
|
-
export type Int_Comparison_Exp = {
|
|
186
|
-
_eq?: InputMaybe<Scalars['Int']>;
|
|
187
|
-
_gt?: InputMaybe<Scalars['Int']>;
|
|
188
|
-
_gte?: InputMaybe<Scalars['Int']>;
|
|
189
|
-
_in?: InputMaybe<Array<Scalars['Int']>>;
|
|
190
|
-
_is_null?: InputMaybe<Scalars['Boolean']>;
|
|
191
|
-
_lt?: InputMaybe<Scalars['Int']>;
|
|
192
|
-
_lte?: InputMaybe<Scalars['Int']>;
|
|
193
|
-
_neq?: InputMaybe<Scalars['Int']>;
|
|
194
|
-
_nin?: InputMaybe<Array<Scalars['Int']>>;
|
|
195
|
-
};
|
|
196
|
-
export type InvokeSaveRawCsvDetailsInput = {
|
|
197
|
-
configurations: Scalars['json'];
|
|
198
|
-
expireCsvFileAt: Scalars['String'];
|
|
199
|
-
expireUrlIn: Scalars['Int'];
|
|
200
|
-
externalMetricId: Scalars['String'];
|
|
201
|
-
integrationId: Scalars['String'];
|
|
202
|
-
integrationName: Scalars['String'];
|
|
203
|
-
query: Scalars['String'];
|
|
204
|
-
};
|
|
205
|
-
export type InvokeSaveRawCsvDetailsOutput = {
|
|
206
|
-
__typename?: 'InvokeSaveRawCsvDetailsOutput';
|
|
207
|
-
error?: Maybe<Scalars['String']>;
|
|
208
|
-
statusCode?: Maybe<Scalars['Int']>;
|
|
209
|
-
};
|
|
210
|
-
export type InvokeSendCsvUrlInput = {
|
|
211
|
-
configurations: Scalars['json'];
|
|
212
|
-
emails: Array<InputMaybe<Scalars['String']>>;
|
|
213
|
-
expireCsvFileAt: Scalars['String'];
|
|
214
|
-
expireUrlIn: Scalars['Int'];
|
|
215
|
-
externalMetricId: Scalars['String'];
|
|
216
|
-
integrationId: Scalars['String'];
|
|
217
|
-
integrationName: Scalars['String'];
|
|
218
|
-
query: Scalars['String'];
|
|
219
|
-
sharingSettingsId: Scalars['String'];
|
|
220
|
-
subject: Scalars['String'];
|
|
221
|
-
};
|
|
222
|
-
export type PreviewTableData = {
|
|
223
|
-
__typename?: 'PreviewTableData';
|
|
224
|
-
data?: Maybe<Scalars['json']>;
|
|
225
|
-
isError: Scalars['Boolean'];
|
|
226
|
-
name: Scalars['String'];
|
|
227
|
-
};
|
|
228
|
-
export type PreviewTableError = {
|
|
229
|
-
__typename?: 'PreviewTableError';
|
|
230
|
-
message: Scalars['String'];
|
|
231
|
-
};
|
|
232
|
-
export type PreviewTableInput = {
|
|
233
|
-
integrationId: Scalars['String'];
|
|
234
|
-
integrationName: Scalars['String'];
|
|
235
|
-
limit: Scalars['Int'];
|
|
236
|
-
tableName: Scalars['String'];
|
|
237
|
-
};
|
|
238
|
-
export type PreviewTableOutput = {
|
|
239
|
-
__typename?: 'PreviewTableOutput';
|
|
240
|
-
data?: Maybe<PreviewTableData>;
|
|
241
|
-
error?: Maybe<PreviewTableError>;
|
|
242
|
-
};
|
|
243
|
-
export type SendRawCsvInput = {
|
|
244
|
-
companyId: Scalars['String'];
|
|
245
|
-
metricName?: InputMaybe<Scalars['String']>;
|
|
246
|
-
recipientAddress: Scalars['String'];
|
|
247
|
-
sqlQuery: Scalars['String'];
|
|
248
|
-
workspaceId?: InputMaybe<Scalars['String']>;
|
|
249
|
-
};
|
|
250
|
-
export type SendRawCsvOutput = {
|
|
251
|
-
__typename?: 'SendRawCsvOutput';
|
|
252
|
-
error?: Maybe<Error>;
|
|
253
|
-
status?: Maybe<Scalars['String']>;
|
|
254
|
-
};
|
|
255
|
-
/** Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'. */
|
|
256
|
-
export type String_Comparison_Exp = {
|
|
257
|
-
_eq?: InputMaybe<Scalars['String']>;
|
|
258
|
-
_gt?: InputMaybe<Scalars['String']>;
|
|
259
|
-
_gte?: InputMaybe<Scalars['String']>;
|
|
260
|
-
/** does the column match the given case-insensitive pattern */
|
|
261
|
-
_ilike?: InputMaybe<Scalars['String']>;
|
|
262
|
-
_in?: InputMaybe<Array<Scalars['String']>>;
|
|
263
|
-
/** does the column match the given POSIX regular expression, case insensitive */
|
|
264
|
-
_iregex?: InputMaybe<Scalars['String']>;
|
|
265
|
-
_is_null?: InputMaybe<Scalars['Boolean']>;
|
|
266
|
-
/** does the column match the given pattern */
|
|
267
|
-
_like?: InputMaybe<Scalars['String']>;
|
|
268
|
-
_lt?: InputMaybe<Scalars['String']>;
|
|
269
|
-
_lte?: InputMaybe<Scalars['String']>;
|
|
270
|
-
_neq?: InputMaybe<Scalars['String']>;
|
|
271
|
-
/** does the column NOT match the given case-insensitive pattern */
|
|
272
|
-
_nilike?: InputMaybe<Scalars['String']>;
|
|
273
|
-
_nin?: InputMaybe<Array<Scalars['String']>>;
|
|
274
|
-
/** does the column NOT match the given POSIX regular expression, case insensitive */
|
|
275
|
-
_niregex?: InputMaybe<Scalars['String']>;
|
|
276
|
-
/** does the column NOT match the given pattern */
|
|
277
|
-
_nlike?: InputMaybe<Scalars['String']>;
|
|
278
|
-
/** does the column NOT match the given POSIX regular expression, case sensitive */
|
|
279
|
-
_nregex?: InputMaybe<Scalars['String']>;
|
|
280
|
-
/** does the column NOT match the given SQL regular expression */
|
|
281
|
-
_nsimilar?: InputMaybe<Scalars['String']>;
|
|
282
|
-
/** does the column match the given POSIX regular expression, case sensitive */
|
|
283
|
-
_regex?: InputMaybe<Scalars['String']>;
|
|
284
|
-
/** does the column match the given SQL regular expression */
|
|
285
|
-
_similar?: InputMaybe<Scalars['String']>;
|
|
286
|
-
};
|
|
287
|
-
export type SubsetColumns = {
|
|
288
|
-
__typename?: 'SubsetColumns';
|
|
289
|
-
as: Scalars['String'];
|
|
290
|
-
datatype: Scalars['String'];
|
|
291
|
-
name: Scalars['String'];
|
|
292
|
-
};
|
|
293
|
-
export type TableList = {
|
|
294
|
-
__typename?: 'TableList';
|
|
295
|
-
clientColumn?: Maybe<Scalars['String']>;
|
|
296
|
-
columns?: Maybe<Array<Maybe<SubsetColumns>>>;
|
|
297
|
-
tableName: Scalars['String'];
|
|
298
|
-
};
|
|
299
|
-
/** Metric resize attributes of client dashboard. */
|
|
300
|
-
export type ClientDashboardLayout = {
|
|
301
|
-
__typename?: 'clientDashboardLayout';
|
|
302
|
-
clientId: Scalars['String'];
|
|
303
|
-
/** An object relationship */
|
|
304
|
-
externalDashboard: ExternalDashboards;
|
|
305
|
-
externalDashboardId: Scalars['uuid'];
|
|
306
|
-
isLocked: Scalars['Boolean'];
|
|
307
|
-
layout: Scalars['jsonb'];
|
|
308
|
-
};
|
|
309
|
-
/** Metric resize attributes of client dashboard. */
|
|
310
|
-
export type ClientDashboardLayoutLayoutArgs = {
|
|
311
|
-
path?: InputMaybe<Scalars['String']>;
|
|
312
|
-
};
|
|
313
|
-
/** order by aggregate values of table "clientDashboardLayout" */
|
|
314
|
-
export type ClientDashboardLayout_Aggregate_Order_By = {
|
|
315
|
-
count?: InputMaybe<Order_By>;
|
|
316
|
-
max?: InputMaybe<ClientDashboardLayout_Max_Order_By>;
|
|
317
|
-
min?: InputMaybe<ClientDashboardLayout_Min_Order_By>;
|
|
318
|
-
};
|
|
319
|
-
/** append existing jsonb value of filtered columns with new jsonb value */
|
|
320
|
-
export type ClientDashboardLayout_Append_Input = {
|
|
321
|
-
layout?: InputMaybe<Scalars['jsonb']>;
|
|
322
|
-
};
|
|
323
|
-
/** Boolean expression to filter rows from the table "clientDashboardLayout". All fields are combined with a logical 'AND'. */
|
|
324
|
-
export type ClientDashboardLayout_Bool_Exp = {
|
|
325
|
-
_and?: InputMaybe<Array<ClientDashboardLayout_Bool_Exp>>;
|
|
326
|
-
_not?: InputMaybe<ClientDashboardLayout_Bool_Exp>;
|
|
327
|
-
_or?: InputMaybe<Array<ClientDashboardLayout_Bool_Exp>>;
|
|
328
|
-
clientId?: InputMaybe<String_Comparison_Exp>;
|
|
329
|
-
externalDashboard?: InputMaybe<ExternalDashboards_Bool_Exp>;
|
|
330
|
-
externalDashboardId?: InputMaybe<Uuid_Comparison_Exp>;
|
|
331
|
-
isLocked?: InputMaybe<Boolean_Comparison_Exp>;
|
|
332
|
-
layout?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
333
|
-
};
|
|
334
|
-
/** unique or primary key constraints on table "clientDashboardLayout" */
|
|
335
|
-
export declare enum ClientDashboardLayout_Constraint {
|
|
336
|
-
/** unique or primary key constraint on columns "clientId", "externalDashboardId" */
|
|
337
|
-
ClientDashboardLayoutPkey = "clientDashboardLayout_pkey"
|
|
338
|
-
}
|
|
339
|
-
/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
|
|
340
|
-
export type ClientDashboardLayout_Delete_At_Path_Input = {
|
|
341
|
-
layout?: InputMaybe<Array<Scalars['String']>>;
|
|
342
|
-
};
|
|
343
|
-
/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */
|
|
344
|
-
export type ClientDashboardLayout_Delete_Elem_Input = {
|
|
345
|
-
layout?: InputMaybe<Scalars['Int']>;
|
|
346
|
-
};
|
|
347
|
-
/** delete key/value pair or string element. key/value pairs are matched based on their key value */
|
|
348
|
-
export type ClientDashboardLayout_Delete_Key_Input = {
|
|
349
|
-
layout?: InputMaybe<Scalars['String']>;
|
|
350
|
-
};
|
|
351
|
-
/** input type for inserting data into table "clientDashboardLayout" */
|
|
352
|
-
export type ClientDashboardLayout_Insert_Input = {
|
|
353
|
-
clientId?: InputMaybe<Scalars['String']>;
|
|
354
|
-
externalDashboardId?: InputMaybe<Scalars['uuid']>;
|
|
355
|
-
isLocked?: InputMaybe<Scalars['Boolean']>;
|
|
356
|
-
layout?: InputMaybe<Scalars['jsonb']>;
|
|
357
|
-
};
|
|
358
|
-
/** order by max() on columns of table "clientDashboardLayout" */
|
|
359
|
-
export type ClientDashboardLayout_Max_Order_By = {
|
|
360
|
-
clientId?: InputMaybe<Order_By>;
|
|
361
|
-
externalDashboardId?: InputMaybe<Order_By>;
|
|
362
|
-
};
|
|
363
|
-
/** order by min() on columns of table "clientDashboardLayout" */
|
|
364
|
-
export type ClientDashboardLayout_Min_Order_By = {
|
|
365
|
-
clientId?: InputMaybe<Order_By>;
|
|
366
|
-
externalDashboardId?: InputMaybe<Order_By>;
|
|
367
|
-
};
|
|
368
|
-
/** response of any mutation on the table "clientDashboardLayout" */
|
|
369
|
-
export type ClientDashboardLayout_Mutation_Response = {
|
|
370
|
-
__typename?: 'clientDashboardLayout_mutation_response';
|
|
371
|
-
/** number of rows affected by the mutation */
|
|
372
|
-
affected_rows: Scalars['Int'];
|
|
373
|
-
/** data from the rows affected by the mutation */
|
|
374
|
-
returning: Array<ClientDashboardLayout>;
|
|
375
|
-
};
|
|
376
|
-
/** on_conflict condition type for table "clientDashboardLayout" */
|
|
377
|
-
export type ClientDashboardLayout_On_Conflict = {
|
|
378
|
-
constraint: ClientDashboardLayout_Constraint;
|
|
379
|
-
update_columns?: Array<ClientDashboardLayout_Update_Column>;
|
|
380
|
-
where?: InputMaybe<ClientDashboardLayout_Bool_Exp>;
|
|
381
|
-
};
|
|
382
|
-
/** Ordering options when selecting data from "clientDashboardLayout". */
|
|
383
|
-
export type ClientDashboardLayout_Order_By = {
|
|
384
|
-
clientId?: InputMaybe<Order_By>;
|
|
385
|
-
externalDashboard?: InputMaybe<ExternalDashboards_Order_By>;
|
|
386
|
-
externalDashboardId?: InputMaybe<Order_By>;
|
|
387
|
-
isLocked?: InputMaybe<Order_By>;
|
|
388
|
-
layout?: InputMaybe<Order_By>;
|
|
389
|
-
};
|
|
390
|
-
/** primary key columns input for table: clientDashboardLayout */
|
|
391
|
-
export type ClientDashboardLayout_Pk_Columns_Input = {
|
|
392
|
-
clientId: Scalars['String'];
|
|
393
|
-
externalDashboardId: Scalars['uuid'];
|
|
394
|
-
};
|
|
395
|
-
/** prepend existing jsonb value of filtered columns with new jsonb value */
|
|
396
|
-
export type ClientDashboardLayout_Prepend_Input = {
|
|
397
|
-
layout?: InputMaybe<Scalars['jsonb']>;
|
|
398
|
-
};
|
|
399
|
-
/** select columns of table "clientDashboardLayout" */
|
|
400
|
-
export declare enum ClientDashboardLayout_Select_Column {
|
|
401
|
-
/** column name */
|
|
402
|
-
ClientId = "clientId",
|
|
403
|
-
/** column name */
|
|
404
|
-
ExternalDashboardId = "externalDashboardId",
|
|
405
|
-
/** column name */
|
|
406
|
-
IsLocked = "isLocked",
|
|
407
|
-
/** column name */
|
|
408
|
-
Layout = "layout"
|
|
409
|
-
}
|
|
410
|
-
/** input type for updating data in table "clientDashboardLayout" */
|
|
411
|
-
export type ClientDashboardLayout_Set_Input = {
|
|
412
|
-
clientId?: InputMaybe<Scalars['String']>;
|
|
413
|
-
externalDashboardId?: InputMaybe<Scalars['uuid']>;
|
|
414
|
-
isLocked?: InputMaybe<Scalars['Boolean']>;
|
|
415
|
-
layout?: InputMaybe<Scalars['jsonb']>;
|
|
416
|
-
};
|
|
417
|
-
/** update columns of table "clientDashboardLayout" */
|
|
418
|
-
export declare enum ClientDashboardLayout_Update_Column {
|
|
419
|
-
/** column name */
|
|
420
|
-
ClientId = "clientId",
|
|
421
|
-
/** column name */
|
|
422
|
-
ExternalDashboardId = "externalDashboardId",
|
|
423
|
-
/** column name */
|
|
424
|
-
IsLocked = "isLocked",
|
|
425
|
-
/** column name */
|
|
426
|
-
Layout = "layout"
|
|
427
|
-
}
|
|
428
|
-
/** Client's dashboard metrics layout tracker. */
|
|
429
|
-
export type ClientDashboardMetrics = {
|
|
430
|
-
__typename?: 'clientDashboardMetrics';
|
|
431
|
-
clientId: Scalars['String'];
|
|
432
|
-
/** An object relationship */
|
|
433
|
-
externalDashboard: ExternalDashboards;
|
|
434
|
-
externalDashboardId: Scalars['uuid'];
|
|
435
|
-
};
|
|
436
|
-
/** order by aggregate values of table "clientDashboardMetrics" */
|
|
437
|
-
export type ClientDashboardMetrics_Aggregate_Order_By = {
|
|
438
|
-
count?: InputMaybe<Order_By>;
|
|
439
|
-
max?: InputMaybe<ClientDashboardMetrics_Max_Order_By>;
|
|
440
|
-
min?: InputMaybe<ClientDashboardMetrics_Min_Order_By>;
|
|
441
|
-
};
|
|
442
|
-
/** Boolean expression to filter rows from the table "clientDashboardMetrics". All fields are combined with a logical 'AND'. */
|
|
443
|
-
export type ClientDashboardMetrics_Bool_Exp = {
|
|
444
|
-
_and?: InputMaybe<Array<ClientDashboardMetrics_Bool_Exp>>;
|
|
445
|
-
_not?: InputMaybe<ClientDashboardMetrics_Bool_Exp>;
|
|
446
|
-
_or?: InputMaybe<Array<ClientDashboardMetrics_Bool_Exp>>;
|
|
447
|
-
clientId?: InputMaybe<String_Comparison_Exp>;
|
|
448
|
-
externalDashboard?: InputMaybe<ExternalDashboards_Bool_Exp>;
|
|
449
|
-
externalDashboardId?: InputMaybe<Uuid_Comparison_Exp>;
|
|
450
|
-
};
|
|
451
|
-
/** unique or primary key constraints on table "clientDashboardMetrics" */
|
|
452
|
-
export declare enum ClientDashboardMetrics_Constraint {
|
|
453
|
-
/** unique or primary key constraint on columns "clientId", "externalDashboardId" */
|
|
454
|
-
ClientDashboardMetricsClientIdExternalDashboardIdKey = "clientDashboardMetrics_clientId_externalDashboardId_key",
|
|
455
|
-
/** unique or primary key constraint on columns "clientId", "externalDashboardId" */
|
|
456
|
-
ClientDashboardMetricsPkey = "clientDashboardMetrics_pkey"
|
|
457
|
-
}
|
|
458
|
-
/** input type for inserting data into table "clientDashboardMetrics" */
|
|
459
|
-
export type ClientDashboardMetrics_Insert_Input = {
|
|
460
|
-
clientId?: InputMaybe<Scalars['String']>;
|
|
461
|
-
externalDashboardId?: InputMaybe<Scalars['uuid']>;
|
|
462
|
-
};
|
|
463
|
-
/** order by max() on columns of table "clientDashboardMetrics" */
|
|
464
|
-
export type ClientDashboardMetrics_Max_Order_By = {
|
|
465
|
-
clientId?: InputMaybe<Order_By>;
|
|
466
|
-
externalDashboardId?: InputMaybe<Order_By>;
|
|
467
|
-
};
|
|
468
|
-
/** order by min() on columns of table "clientDashboardMetrics" */
|
|
469
|
-
export type ClientDashboardMetrics_Min_Order_By = {
|
|
470
|
-
clientId?: InputMaybe<Order_By>;
|
|
471
|
-
externalDashboardId?: InputMaybe<Order_By>;
|
|
472
|
-
};
|
|
473
|
-
/** response of any mutation on the table "clientDashboardMetrics" */
|
|
474
|
-
export type ClientDashboardMetrics_Mutation_Response = {
|
|
475
|
-
__typename?: 'clientDashboardMetrics_mutation_response';
|
|
476
|
-
/** number of rows affected by the mutation */
|
|
477
|
-
affected_rows: Scalars['Int'];
|
|
478
|
-
/** data from the rows affected by the mutation */
|
|
479
|
-
returning: Array<ClientDashboardMetrics>;
|
|
480
|
-
};
|
|
481
|
-
/** on_conflict condition type for table "clientDashboardMetrics" */
|
|
482
|
-
export type ClientDashboardMetrics_On_Conflict = {
|
|
483
|
-
constraint: ClientDashboardMetrics_Constraint;
|
|
484
|
-
update_columns?: Array<ClientDashboardMetrics_Update_Column>;
|
|
485
|
-
where?: InputMaybe<ClientDashboardMetrics_Bool_Exp>;
|
|
486
|
-
};
|
|
487
|
-
/** Ordering options when selecting data from "clientDashboardMetrics". */
|
|
488
|
-
export type ClientDashboardMetrics_Order_By = {
|
|
489
|
-
clientId?: InputMaybe<Order_By>;
|
|
490
|
-
externalDashboard?: InputMaybe<ExternalDashboards_Order_By>;
|
|
491
|
-
externalDashboardId?: InputMaybe<Order_By>;
|
|
492
|
-
};
|
|
493
|
-
/** select columns of table "clientDashboardMetrics" */
|
|
494
|
-
export declare enum ClientDashboardMetrics_Select_Column {
|
|
495
|
-
/** column name */
|
|
496
|
-
ClientId = "clientId",
|
|
497
|
-
/** column name */
|
|
498
|
-
ExternalDashboardId = "externalDashboardId"
|
|
499
|
-
}
|
|
500
|
-
/** placeholder for update columns of table "clientDashboardMetrics" (current role has no relevant permissions) */
|
|
501
|
-
export declare enum ClientDashboardMetrics_Update_Column {
|
|
502
|
-
/** placeholder (do not use) */
|
|
503
|
-
Placeholder = "_PLACEHOLDER"
|
|
504
|
-
}
|
|
505
|
-
/** Track metrics deleted by the end users. */
|
|
506
|
-
export type ClientDeletedMetrics = {
|
|
507
|
-
__typename?: 'clientDeletedMetrics';
|
|
508
|
-
clientId: Scalars['String'];
|
|
509
|
-
/** An object relationship */
|
|
510
|
-
externalMetric: ExternalMetrics;
|
|
511
|
-
externalMetricId: Scalars['uuid'];
|
|
512
|
-
};
|
|
513
|
-
/** order by aggregate values of table "clientDeletedMetrics" */
|
|
514
|
-
export type ClientDeletedMetrics_Aggregate_Order_By = {
|
|
515
|
-
count?: InputMaybe<Order_By>;
|
|
516
|
-
max?: InputMaybe<ClientDeletedMetrics_Max_Order_By>;
|
|
517
|
-
min?: InputMaybe<ClientDeletedMetrics_Min_Order_By>;
|
|
518
|
-
};
|
|
519
|
-
/** input type for inserting array relation for remote table "clientDeletedMetrics" */
|
|
520
|
-
export type ClientDeletedMetrics_Arr_Rel_Insert_Input = {
|
|
521
|
-
data: Array<ClientDeletedMetrics_Insert_Input>;
|
|
522
|
-
/** upsert condition */
|
|
523
|
-
on_conflict?: InputMaybe<ClientDeletedMetrics_On_Conflict>;
|
|
524
|
-
};
|
|
525
|
-
/** Boolean expression to filter rows from the table "clientDeletedMetrics". All fields are combined with a logical 'AND'. */
|
|
526
|
-
export type ClientDeletedMetrics_Bool_Exp = {
|
|
527
|
-
_and?: InputMaybe<Array<ClientDeletedMetrics_Bool_Exp>>;
|
|
528
|
-
_not?: InputMaybe<ClientDeletedMetrics_Bool_Exp>;
|
|
529
|
-
_or?: InputMaybe<Array<ClientDeletedMetrics_Bool_Exp>>;
|
|
530
|
-
clientId?: InputMaybe<String_Comparison_Exp>;
|
|
531
|
-
externalMetric?: InputMaybe<ExternalMetrics_Bool_Exp>;
|
|
532
|
-
externalMetricId?: InputMaybe<Uuid_Comparison_Exp>;
|
|
533
|
-
};
|
|
534
|
-
/** unique or primary key constraints on table "clientDeletedMetrics" */
|
|
535
|
-
export declare enum ClientDeletedMetrics_Constraint {
|
|
536
|
-
/** unique or primary key constraint on columns "clientId", "externalMetricId" */
|
|
537
|
-
ClientDeletedMetricsPkey = "clientDeletedMetrics_pkey"
|
|
538
|
-
}
|
|
539
|
-
/** input type for inserting data into table "clientDeletedMetrics" */
|
|
540
|
-
export type ClientDeletedMetrics_Insert_Input = {
|
|
541
|
-
clientId?: InputMaybe<Scalars['String']>;
|
|
542
|
-
externalMetric?: InputMaybe<ExternalMetrics_Obj_Rel_Insert_Input>;
|
|
543
|
-
externalMetricId?: InputMaybe<Scalars['uuid']>;
|
|
544
|
-
};
|
|
545
|
-
/** order by max() on columns of table "clientDeletedMetrics" */
|
|
546
|
-
export type ClientDeletedMetrics_Max_Order_By = {
|
|
547
|
-
clientId?: InputMaybe<Order_By>;
|
|
548
|
-
externalMetricId?: InputMaybe<Order_By>;
|
|
549
|
-
};
|
|
550
|
-
/** order by min() on columns of table "clientDeletedMetrics" */
|
|
551
|
-
export type ClientDeletedMetrics_Min_Order_By = {
|
|
552
|
-
clientId?: InputMaybe<Order_By>;
|
|
553
|
-
externalMetricId?: InputMaybe<Order_By>;
|
|
554
|
-
};
|
|
555
|
-
/** response of any mutation on the table "clientDeletedMetrics" */
|
|
556
|
-
export type ClientDeletedMetrics_Mutation_Response = {
|
|
557
|
-
__typename?: 'clientDeletedMetrics_mutation_response';
|
|
558
|
-
/** number of rows affected by the mutation */
|
|
559
|
-
affected_rows: Scalars['Int'];
|
|
560
|
-
/** data from the rows affected by the mutation */
|
|
561
|
-
returning: Array<ClientDeletedMetrics>;
|
|
562
|
-
};
|
|
563
|
-
/** on_conflict condition type for table "clientDeletedMetrics" */
|
|
564
|
-
export type ClientDeletedMetrics_On_Conflict = {
|
|
565
|
-
constraint: ClientDeletedMetrics_Constraint;
|
|
566
|
-
update_columns?: Array<ClientDeletedMetrics_Update_Column>;
|
|
567
|
-
where?: InputMaybe<ClientDeletedMetrics_Bool_Exp>;
|
|
568
|
-
};
|
|
569
|
-
/** Ordering options when selecting data from "clientDeletedMetrics". */
|
|
570
|
-
export type ClientDeletedMetrics_Order_By = {
|
|
571
|
-
clientId?: InputMaybe<Order_By>;
|
|
572
|
-
externalMetric?: InputMaybe<ExternalMetrics_Order_By>;
|
|
573
|
-
externalMetricId?: InputMaybe<Order_By>;
|
|
574
|
-
};
|
|
575
|
-
/** select columns of table "clientDeletedMetrics" */
|
|
576
|
-
export declare enum ClientDeletedMetrics_Select_Column {
|
|
577
|
-
/** column name */
|
|
578
|
-
ClientId = "clientId",
|
|
579
|
-
/** column name */
|
|
580
|
-
ExternalMetricId = "externalMetricId"
|
|
581
|
-
}
|
|
582
|
-
/** placeholder for update columns of table "clientDeletedMetrics" (current role has no relevant permissions) */
|
|
583
|
-
export declare enum ClientDeletedMetrics_Update_Column {
|
|
584
|
-
/** placeholder (do not use) */
|
|
585
|
-
Placeholder = "_PLACEHOLDER"
|
|
586
|
-
}
|
|
587
|
-
/** columns and relationships of "companyIntegrations" */
|
|
588
|
-
export type CompanyIntegrations = {
|
|
589
|
-
__typename?: 'companyIntegrations';
|
|
590
|
-
companyId: Scalars['uuid'];
|
|
591
|
-
/** An object relationship */
|
|
592
|
-
companyWorkspace: CompanyWorkspaces;
|
|
593
|
-
/** An array relationship */
|
|
594
|
-
customSqlColumns: Array<CustomSqlColumns>;
|
|
595
|
-
/** An array relationship */
|
|
596
|
-
externalMetrics: Array<ExternalMetrics>;
|
|
597
|
-
id: Scalars['uuid'];
|
|
598
|
-
/** connected source or destination id */
|
|
599
|
-
integrationId: Scalars['uuid'];
|
|
600
|
-
name: Scalars['String'];
|
|
601
|
-
workspaceId: Scalars['uuid'];
|
|
602
|
-
};
|
|
603
|
-
/** columns and relationships of "companyIntegrations" */
|
|
604
|
-
export type CompanyIntegrationsCustomSqlColumnsArgs = {
|
|
605
|
-
distinct_on?: InputMaybe<Array<CustomSqlColumns_Select_Column>>;
|
|
606
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
607
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
608
|
-
order_by?: InputMaybe<Array<CustomSqlColumns_Order_By>>;
|
|
609
|
-
where?: InputMaybe<CustomSqlColumns_Bool_Exp>;
|
|
610
|
-
};
|
|
611
|
-
/** columns and relationships of "companyIntegrations" */
|
|
612
|
-
export type CompanyIntegrationsExternalMetricsArgs = {
|
|
613
|
-
distinct_on?: InputMaybe<Array<ExternalMetrics_Select_Column>>;
|
|
614
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
615
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
616
|
-
order_by?: InputMaybe<Array<ExternalMetrics_Order_By>>;
|
|
617
|
-
where?: InputMaybe<ExternalMetrics_Bool_Exp>;
|
|
618
|
-
};
|
|
619
|
-
/** order by aggregate values of table "companyIntegrations" */
|
|
620
|
-
export type CompanyIntegrations_Aggregate_Order_By = {
|
|
621
|
-
count?: InputMaybe<Order_By>;
|
|
622
|
-
max?: InputMaybe<CompanyIntegrations_Max_Order_By>;
|
|
623
|
-
min?: InputMaybe<CompanyIntegrations_Min_Order_By>;
|
|
624
|
-
};
|
|
625
|
-
/** Boolean expression to filter rows from the table "companyIntegrations". All fields are combined with a logical 'AND'. */
|
|
626
|
-
export type CompanyIntegrations_Bool_Exp = {
|
|
627
|
-
_and?: InputMaybe<Array<CompanyIntegrations_Bool_Exp>>;
|
|
628
|
-
_not?: InputMaybe<CompanyIntegrations_Bool_Exp>;
|
|
629
|
-
_or?: InputMaybe<Array<CompanyIntegrations_Bool_Exp>>;
|
|
630
|
-
companyId?: InputMaybe<Uuid_Comparison_Exp>;
|
|
631
|
-
companyWorkspace?: InputMaybe<CompanyWorkspaces_Bool_Exp>;
|
|
632
|
-
customSqlColumns?: InputMaybe<CustomSqlColumns_Bool_Exp>;
|
|
633
|
-
externalMetrics?: InputMaybe<ExternalMetrics_Bool_Exp>;
|
|
634
|
-
id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
635
|
-
integrationId?: InputMaybe<Uuid_Comparison_Exp>;
|
|
636
|
-
name?: InputMaybe<String_Comparison_Exp>;
|
|
637
|
-
workspaceId?: InputMaybe<Uuid_Comparison_Exp>;
|
|
638
|
-
};
|
|
639
|
-
/** order by max() on columns of table "companyIntegrations" */
|
|
640
|
-
export type CompanyIntegrations_Max_Order_By = {
|
|
641
|
-
companyId?: InputMaybe<Order_By>;
|
|
642
|
-
id?: InputMaybe<Order_By>;
|
|
643
|
-
/** connected source or destination id */
|
|
644
|
-
integrationId?: InputMaybe<Order_By>;
|
|
645
|
-
name?: InputMaybe<Order_By>;
|
|
646
|
-
workspaceId?: InputMaybe<Order_By>;
|
|
647
|
-
};
|
|
648
|
-
/** order by min() on columns of table "companyIntegrations" */
|
|
649
|
-
export type CompanyIntegrations_Min_Order_By = {
|
|
650
|
-
companyId?: InputMaybe<Order_By>;
|
|
651
|
-
id?: InputMaybe<Order_By>;
|
|
652
|
-
/** connected source or destination id */
|
|
653
|
-
integrationId?: InputMaybe<Order_By>;
|
|
654
|
-
name?: InputMaybe<Order_By>;
|
|
655
|
-
workspaceId?: InputMaybe<Order_By>;
|
|
656
|
-
};
|
|
657
|
-
/** Ordering options when selecting data from "companyIntegrations". */
|
|
658
|
-
export type CompanyIntegrations_Order_By = {
|
|
659
|
-
companyId?: InputMaybe<Order_By>;
|
|
660
|
-
companyWorkspace?: InputMaybe<CompanyWorkspaces_Order_By>;
|
|
661
|
-
customSqlColumns_aggregate?: InputMaybe<CustomSqlColumns_Aggregate_Order_By>;
|
|
662
|
-
externalMetrics_aggregate?: InputMaybe<ExternalMetrics_Aggregate_Order_By>;
|
|
663
|
-
id?: InputMaybe<Order_By>;
|
|
664
|
-
integrationId?: InputMaybe<Order_By>;
|
|
665
|
-
name?: InputMaybe<Order_By>;
|
|
666
|
-
workspaceId?: InputMaybe<Order_By>;
|
|
667
|
-
};
|
|
668
|
-
/** select columns of table "companyIntegrations" */
|
|
669
|
-
export declare enum CompanyIntegrations_Select_Column {
|
|
670
|
-
/** column name */
|
|
671
|
-
CompanyId = "companyId",
|
|
672
|
-
/** column name */
|
|
673
|
-
Id = "id",
|
|
674
|
-
/** column name */
|
|
675
|
-
IntegrationId = "integrationId",
|
|
676
|
-
/** column name */
|
|
677
|
-
Name = "name",
|
|
678
|
-
/** column name */
|
|
679
|
-
WorkspaceId = "workspaceId"
|
|
680
|
-
}
|
|
681
|
-
export type CompanySubsetTableDataError = {
|
|
682
|
-
__typename?: 'companySubsetTableDataError';
|
|
683
|
-
message: Scalars['String'];
|
|
684
|
-
};
|
|
685
|
-
export type CompanySubsetTableDataInput = {
|
|
686
|
-
clientId: Scalars['String'];
|
|
687
|
-
companyId: Scalars['String'];
|
|
688
|
-
workspaceId: Scalars['String'];
|
|
689
|
-
};
|
|
690
|
-
export type CompanySubsetTableDataOutput = {
|
|
691
|
-
__typename?: 'companySubsetTableDataOutput';
|
|
692
|
-
companyIntegrationId?: Maybe<Scalars['String']>;
|
|
693
|
-
dbName?: Maybe<Scalars['String']>;
|
|
694
|
-
error?: Maybe<CompanySubsetTableDataError>;
|
|
695
|
-
tableList?: Maybe<Array<Maybe<TableList>>>;
|
|
696
|
-
};
|
|
697
|
-
/** subset of tables of user database */
|
|
698
|
-
export type CompanySubsetTables = {
|
|
699
|
-
__typename?: 'companySubsetTables';
|
|
700
|
-
companyId: Scalars['uuid'];
|
|
701
|
-
/** An object relationship */
|
|
702
|
-
companyWorkspace: CompanyWorkspaces;
|
|
703
|
-
isAllowChangeLayout: Scalars['Boolean'];
|
|
704
|
-
isAllowMetricCreation: Scalars['Boolean'];
|
|
705
|
-
isAllowMetricDeletion: Scalars['Boolean'];
|
|
706
|
-
isAllowMetricUpdation: Scalars['Boolean'];
|
|
707
|
-
tableList: Scalars['jsonb'];
|
|
708
|
-
workspaceId: Scalars['uuid'];
|
|
709
|
-
};
|
|
710
|
-
/** subset of tables of user database */
|
|
711
|
-
export type CompanySubsetTablesTableListArgs = {
|
|
712
|
-
path?: InputMaybe<Scalars['String']>;
|
|
713
|
-
};
|
|
714
|
-
/** Boolean expression to filter rows from the table "companySubsetTables". All fields are combined with a logical 'AND'. */
|
|
715
|
-
export type CompanySubsetTables_Bool_Exp = {
|
|
716
|
-
_and?: InputMaybe<Array<CompanySubsetTables_Bool_Exp>>;
|
|
717
|
-
_not?: InputMaybe<CompanySubsetTables_Bool_Exp>;
|
|
718
|
-
_or?: InputMaybe<Array<CompanySubsetTables_Bool_Exp>>;
|
|
719
|
-
companyId?: InputMaybe<Uuid_Comparison_Exp>;
|
|
720
|
-
companyWorkspace?: InputMaybe<CompanyWorkspaces_Bool_Exp>;
|
|
721
|
-
isAllowChangeLayout?: InputMaybe<Boolean_Comparison_Exp>;
|
|
722
|
-
isAllowMetricCreation?: InputMaybe<Boolean_Comparison_Exp>;
|
|
723
|
-
isAllowMetricDeletion?: InputMaybe<Boolean_Comparison_Exp>;
|
|
724
|
-
isAllowMetricUpdation?: InputMaybe<Boolean_Comparison_Exp>;
|
|
725
|
-
tableList?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
726
|
-
workspaceId?: InputMaybe<Uuid_Comparison_Exp>;
|
|
727
|
-
};
|
|
728
|
-
/** Ordering options when selecting data from "companySubsetTables". */
|
|
729
|
-
export type CompanySubsetTables_Order_By = {
|
|
730
|
-
companyId?: InputMaybe<Order_By>;
|
|
731
|
-
companyWorkspace?: InputMaybe<CompanyWorkspaces_Order_By>;
|
|
732
|
-
isAllowChangeLayout?: InputMaybe<Order_By>;
|
|
733
|
-
isAllowMetricCreation?: InputMaybe<Order_By>;
|
|
734
|
-
isAllowMetricDeletion?: InputMaybe<Order_By>;
|
|
735
|
-
isAllowMetricUpdation?: InputMaybe<Order_By>;
|
|
736
|
-
tableList?: InputMaybe<Order_By>;
|
|
737
|
-
workspaceId?: InputMaybe<Order_By>;
|
|
738
|
-
};
|
|
739
|
-
/** select columns of table "companySubsetTables" */
|
|
740
|
-
export declare enum CompanySubsetTables_Select_Column {
|
|
741
|
-
/** column name */
|
|
742
|
-
CompanyId = "companyId",
|
|
743
|
-
/** column name */
|
|
744
|
-
IsAllowChangeLayout = "isAllowChangeLayout",
|
|
745
|
-
/** column name */
|
|
746
|
-
IsAllowMetricCreation = "isAllowMetricCreation",
|
|
747
|
-
/** column name */
|
|
748
|
-
IsAllowMetricDeletion = "isAllowMetricDeletion",
|
|
749
|
-
/** column name */
|
|
750
|
-
IsAllowMetricUpdation = "isAllowMetricUpdation",
|
|
751
|
-
/** column name */
|
|
752
|
-
TableList = "tableList",
|
|
753
|
-
/** column name */
|
|
754
|
-
WorkspaceId = "workspaceId"
|
|
755
|
-
}
|
|
756
|
-
/** columns and relationships of "companyWorkspaces" */
|
|
757
|
-
export type CompanyWorkspaces = {
|
|
758
|
-
__typename?: 'companyWorkspaces';
|
|
759
|
-
/** An array relationship */
|
|
760
|
-
companyIntegrations: Array<CompanyIntegrations>;
|
|
761
|
-
/** An object relationship */
|
|
762
|
-
companySubsetTable?: Maybe<CompanySubsetTables>;
|
|
763
|
-
/** An array relationship */
|
|
764
|
-
externalDashboards: Array<ExternalDashboards>;
|
|
765
|
-
id: Scalars['uuid'];
|
|
766
|
-
rawCsvSettings: Scalars['jsonb'];
|
|
767
|
-
};
|
|
768
|
-
/** columns and relationships of "companyWorkspaces" */
|
|
769
|
-
export type CompanyWorkspacesCompanyIntegrationsArgs = {
|
|
770
|
-
distinct_on?: InputMaybe<Array<CompanyIntegrations_Select_Column>>;
|
|
771
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
772
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
773
|
-
order_by?: InputMaybe<Array<CompanyIntegrations_Order_By>>;
|
|
774
|
-
where?: InputMaybe<CompanyIntegrations_Bool_Exp>;
|
|
775
|
-
};
|
|
776
|
-
/** columns and relationships of "companyWorkspaces" */
|
|
777
|
-
export type CompanyWorkspacesExternalDashboardsArgs = {
|
|
778
|
-
distinct_on?: InputMaybe<Array<ExternalDashboards_Select_Column>>;
|
|
779
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
780
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
781
|
-
order_by?: InputMaybe<Array<ExternalDashboards_Order_By>>;
|
|
782
|
-
where?: InputMaybe<ExternalDashboards_Bool_Exp>;
|
|
783
|
-
};
|
|
784
|
-
/** columns and relationships of "companyWorkspaces" */
|
|
785
|
-
export type CompanyWorkspacesRawCsvSettingsArgs = {
|
|
786
|
-
path?: InputMaybe<Scalars['String']>;
|
|
787
|
-
};
|
|
788
|
-
/** Boolean expression to filter rows from the table "companyWorkspaces". All fields are combined with a logical 'AND'. */
|
|
789
|
-
export type CompanyWorkspaces_Bool_Exp = {
|
|
790
|
-
_and?: InputMaybe<Array<CompanyWorkspaces_Bool_Exp>>;
|
|
791
|
-
_not?: InputMaybe<CompanyWorkspaces_Bool_Exp>;
|
|
792
|
-
_or?: InputMaybe<Array<CompanyWorkspaces_Bool_Exp>>;
|
|
793
|
-
companyIntegrations?: InputMaybe<CompanyIntegrations_Bool_Exp>;
|
|
794
|
-
companySubsetTable?: InputMaybe<CompanySubsetTables_Bool_Exp>;
|
|
795
|
-
externalDashboards?: InputMaybe<ExternalDashboards_Bool_Exp>;
|
|
796
|
-
id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
797
|
-
rawCsvSettings?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
798
|
-
};
|
|
799
|
-
/** Ordering options when selecting data from "companyWorkspaces". */
|
|
800
|
-
export type CompanyWorkspaces_Order_By = {
|
|
801
|
-
companyIntegrations_aggregate?: InputMaybe<CompanyIntegrations_Aggregate_Order_By>;
|
|
802
|
-
companySubsetTable?: InputMaybe<CompanySubsetTables_Order_By>;
|
|
803
|
-
externalDashboards_aggregate?: InputMaybe<ExternalDashboards_Aggregate_Order_By>;
|
|
804
|
-
id?: InputMaybe<Order_By>;
|
|
805
|
-
rawCsvSettings?: InputMaybe<Order_By>;
|
|
806
|
-
};
|
|
807
|
-
/** select columns of table "companyWorkspaces" */
|
|
808
|
-
export declare enum CompanyWorkspaces_Select_Column {
|
|
809
|
-
/** column name */
|
|
810
|
-
Id = "id",
|
|
811
|
-
/** column name */
|
|
812
|
-
RawCsvSettings = "rawCsvSettings"
|
|
813
|
-
}
|
|
814
|
-
/** columns and relationships of "customSqlColumns" */
|
|
815
|
-
export type CustomSqlColumns = {
|
|
816
|
-
__typename?: 'customSqlColumns';
|
|
817
|
-
/** An object relationship */
|
|
818
|
-
companyIntegration: CompanyIntegrations;
|
|
819
|
-
companyIntegrationId: Scalars['uuid'];
|
|
820
|
-
id: Scalars['uuid'];
|
|
821
|
-
sqlColumns: Scalars['jsonb'];
|
|
822
|
-
tableName: Scalars['String'];
|
|
823
|
-
};
|
|
824
|
-
/** columns and relationships of "customSqlColumns" */
|
|
825
|
-
export type CustomSqlColumnsSqlColumnsArgs = {
|
|
826
|
-
path?: InputMaybe<Scalars['String']>;
|
|
827
|
-
};
|
|
828
|
-
/** order by aggregate values of table "customSqlColumns" */
|
|
829
|
-
export type CustomSqlColumns_Aggregate_Order_By = {
|
|
830
|
-
count?: InputMaybe<Order_By>;
|
|
831
|
-
max?: InputMaybe<CustomSqlColumns_Max_Order_By>;
|
|
832
|
-
min?: InputMaybe<CustomSqlColumns_Min_Order_By>;
|
|
833
|
-
};
|
|
834
|
-
/** append existing jsonb value of filtered columns with new jsonb value */
|
|
835
|
-
export type CustomSqlColumns_Append_Input = {
|
|
836
|
-
sqlColumns?: InputMaybe<Scalars['jsonb']>;
|
|
837
|
-
};
|
|
838
|
-
/** Boolean expression to filter rows from the table "customSqlColumns". All fields are combined with a logical 'AND'. */
|
|
839
|
-
export type CustomSqlColumns_Bool_Exp = {
|
|
840
|
-
_and?: InputMaybe<Array<CustomSqlColumns_Bool_Exp>>;
|
|
841
|
-
_not?: InputMaybe<CustomSqlColumns_Bool_Exp>;
|
|
842
|
-
_or?: InputMaybe<Array<CustomSqlColumns_Bool_Exp>>;
|
|
843
|
-
companyIntegration?: InputMaybe<CompanyIntegrations_Bool_Exp>;
|
|
844
|
-
companyIntegrationId?: InputMaybe<Uuid_Comparison_Exp>;
|
|
845
|
-
id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
846
|
-
sqlColumns?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
847
|
-
tableName?: InputMaybe<String_Comparison_Exp>;
|
|
848
|
-
};
|
|
849
|
-
/** unique or primary key constraints on table "customSqlColumns" */
|
|
850
|
-
export declare enum CustomSqlColumns_Constraint {
|
|
851
|
-
/** unique or primary key constraint on columns "companyIntegrationId", "tableName" */
|
|
852
|
-
CustomSqlColumnsCompanyIntegrationIdTableNameKey = "customSqlColumns_companyIntegrationId_tableName_key",
|
|
853
|
-
/** unique or primary key constraint on columns "id" */
|
|
854
|
-
CustomSqlColumnsPkey = "customSqlColumns_pkey"
|
|
855
|
-
}
|
|
856
|
-
/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
|
|
857
|
-
export type CustomSqlColumns_Delete_At_Path_Input = {
|
|
858
|
-
sqlColumns?: InputMaybe<Array<Scalars['String']>>;
|
|
859
|
-
};
|
|
860
|
-
/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */
|
|
861
|
-
export type CustomSqlColumns_Delete_Elem_Input = {
|
|
862
|
-
sqlColumns?: InputMaybe<Scalars['Int']>;
|
|
863
|
-
};
|
|
864
|
-
/** delete key/value pair or string element. key/value pairs are matched based on their key value */
|
|
865
|
-
export type CustomSqlColumns_Delete_Key_Input = {
|
|
866
|
-
sqlColumns?: InputMaybe<Scalars['String']>;
|
|
867
|
-
};
|
|
868
|
-
/** input type for inserting data into table "customSqlColumns" */
|
|
869
|
-
export type CustomSqlColumns_Insert_Input = {
|
|
870
|
-
companyIntegrationId?: InputMaybe<Scalars['uuid']>;
|
|
871
|
-
id?: InputMaybe<Scalars['uuid']>;
|
|
872
|
-
sqlColumns?: InputMaybe<Scalars['jsonb']>;
|
|
873
|
-
tableName?: InputMaybe<Scalars['String']>;
|
|
874
|
-
};
|
|
875
|
-
/** order by max() on columns of table "customSqlColumns" */
|
|
876
|
-
export type CustomSqlColumns_Max_Order_By = {
|
|
877
|
-
companyIntegrationId?: InputMaybe<Order_By>;
|
|
878
|
-
id?: InputMaybe<Order_By>;
|
|
879
|
-
tableName?: InputMaybe<Order_By>;
|
|
880
|
-
};
|
|
881
|
-
/** order by min() on columns of table "customSqlColumns" */
|
|
882
|
-
export type CustomSqlColumns_Min_Order_By = {
|
|
883
|
-
companyIntegrationId?: InputMaybe<Order_By>;
|
|
884
|
-
id?: InputMaybe<Order_By>;
|
|
885
|
-
tableName?: InputMaybe<Order_By>;
|
|
886
|
-
};
|
|
887
|
-
/** response of any mutation on the table "customSqlColumns" */
|
|
888
|
-
export type CustomSqlColumns_Mutation_Response = {
|
|
889
|
-
__typename?: 'customSqlColumns_mutation_response';
|
|
890
|
-
/** number of rows affected by the mutation */
|
|
891
|
-
affected_rows: Scalars['Int'];
|
|
892
|
-
/** data from the rows affected by the mutation */
|
|
893
|
-
returning: Array<CustomSqlColumns>;
|
|
894
|
-
};
|
|
895
|
-
/** on_conflict condition type for table "customSqlColumns" */
|
|
896
|
-
export type CustomSqlColumns_On_Conflict = {
|
|
897
|
-
constraint: CustomSqlColumns_Constraint;
|
|
898
|
-
update_columns?: Array<CustomSqlColumns_Update_Column>;
|
|
899
|
-
where?: InputMaybe<CustomSqlColumns_Bool_Exp>;
|
|
900
|
-
};
|
|
901
|
-
/** Ordering options when selecting data from "customSqlColumns". */
|
|
902
|
-
export type CustomSqlColumns_Order_By = {
|
|
903
|
-
companyIntegration?: InputMaybe<CompanyIntegrations_Order_By>;
|
|
904
|
-
companyIntegrationId?: InputMaybe<Order_By>;
|
|
905
|
-
id?: InputMaybe<Order_By>;
|
|
906
|
-
sqlColumns?: InputMaybe<Order_By>;
|
|
907
|
-
tableName?: InputMaybe<Order_By>;
|
|
908
|
-
};
|
|
909
|
-
/** primary key columns input for table: customSqlColumns */
|
|
910
|
-
export type CustomSqlColumns_Pk_Columns_Input = {
|
|
911
|
-
id: Scalars['uuid'];
|
|
912
|
-
};
|
|
913
|
-
/** prepend existing jsonb value of filtered columns with new jsonb value */
|
|
914
|
-
export type CustomSqlColumns_Prepend_Input = {
|
|
915
|
-
sqlColumns?: InputMaybe<Scalars['jsonb']>;
|
|
916
|
-
};
|
|
917
|
-
/** select columns of table "customSqlColumns" */
|
|
918
|
-
export declare enum CustomSqlColumns_Select_Column {
|
|
919
|
-
/** column name */
|
|
920
|
-
CompanyIntegrationId = "companyIntegrationId",
|
|
921
|
-
/** column name */
|
|
922
|
-
Id = "id",
|
|
923
|
-
/** column name */
|
|
924
|
-
SqlColumns = "sqlColumns",
|
|
925
|
-
/** column name */
|
|
926
|
-
TableName = "tableName"
|
|
927
|
-
}
|
|
928
|
-
/** input type for updating data in table "customSqlColumns" */
|
|
929
|
-
export type CustomSqlColumns_Set_Input = {
|
|
930
|
-
sqlColumns?: InputMaybe<Scalars['jsonb']>;
|
|
931
|
-
};
|
|
932
|
-
/** update columns of table "customSqlColumns" */
|
|
933
|
-
export declare enum CustomSqlColumns_Update_Column {
|
|
934
|
-
/** column name */
|
|
935
|
-
SqlColumns = "sqlColumns"
|
|
936
|
-
}
|
|
937
|
-
/** Demo app theme customization */
|
|
938
|
-
export type DemoTheme = {
|
|
939
|
-
__typename?: 'demoTheme';
|
|
940
|
-
dashboardTitle?: Maybe<Scalars['String']>;
|
|
941
|
-
highlightColor?: Maybe<Scalars['String']>;
|
|
942
|
-
id: Scalars['uuid'];
|
|
943
|
-
logoUrl?: Maybe<Scalars['String']>;
|
|
944
|
-
navbarColor?: Maybe<Scalars['String']>;
|
|
945
|
-
primaryColor?: Maybe<Scalars['String']>;
|
|
946
|
-
textColor?: Maybe<Scalars['String']>;
|
|
947
|
-
};
|
|
948
|
-
/** Boolean expression to filter rows from the table "demoTheme". All fields are combined with a logical 'AND'. */
|
|
949
|
-
export type DemoTheme_Bool_Exp = {
|
|
950
|
-
_and?: InputMaybe<Array<DemoTheme_Bool_Exp>>;
|
|
951
|
-
_not?: InputMaybe<DemoTheme_Bool_Exp>;
|
|
952
|
-
_or?: InputMaybe<Array<DemoTheme_Bool_Exp>>;
|
|
953
|
-
dashboardTitle?: InputMaybe<String_Comparison_Exp>;
|
|
954
|
-
highlightColor?: InputMaybe<String_Comparison_Exp>;
|
|
955
|
-
id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
956
|
-
logoUrl?: InputMaybe<String_Comparison_Exp>;
|
|
957
|
-
navbarColor?: InputMaybe<String_Comparison_Exp>;
|
|
958
|
-
primaryColor?: InputMaybe<String_Comparison_Exp>;
|
|
959
|
-
textColor?: InputMaybe<String_Comparison_Exp>;
|
|
960
|
-
};
|
|
961
|
-
/** Ordering options when selecting data from "demoTheme". */
|
|
962
|
-
export type DemoTheme_Order_By = {
|
|
963
|
-
dashboardTitle?: InputMaybe<Order_By>;
|
|
964
|
-
highlightColor?: InputMaybe<Order_By>;
|
|
965
|
-
id?: InputMaybe<Order_By>;
|
|
966
|
-
logoUrl?: InputMaybe<Order_By>;
|
|
967
|
-
navbarColor?: InputMaybe<Order_By>;
|
|
968
|
-
primaryColor?: InputMaybe<Order_By>;
|
|
969
|
-
textColor?: InputMaybe<Order_By>;
|
|
970
|
-
};
|
|
971
|
-
/** select columns of table "demoTheme" */
|
|
972
|
-
export declare enum DemoTheme_Select_Column {
|
|
973
|
-
/** column name */
|
|
974
|
-
DashboardTitle = "dashboardTitle",
|
|
975
|
-
/** column name */
|
|
976
|
-
HighlightColor = "highlightColor",
|
|
977
|
-
/** column name */
|
|
978
|
-
Id = "id",
|
|
979
|
-
/** column name */
|
|
980
|
-
LogoUrl = "logoUrl",
|
|
981
|
-
/** column name */
|
|
982
|
-
NavbarColor = "navbarColor",
|
|
983
|
-
/** column name */
|
|
984
|
-
PrimaryColor = "primaryColor",
|
|
985
|
-
/** column name */
|
|
986
|
-
TextColor = "textColor"
|
|
987
|
-
}
|
|
988
|
-
/** columns and relationships of "externalDashboardMetrics" */
|
|
989
|
-
export type ExternalDashboardMetrics = {
|
|
990
|
-
__typename?: 'externalDashboardMetrics';
|
|
991
|
-
/** An object relationship */
|
|
992
|
-
externalDashboard: ExternalDashboards;
|
|
993
|
-
externalDashboardId: Scalars['uuid'];
|
|
994
|
-
/** An object relationship */
|
|
995
|
-
externalMetric: ExternalMetrics;
|
|
996
|
-
externalMetricId: Scalars['uuid'];
|
|
997
|
-
};
|
|
998
|
-
/** order by aggregate values of table "externalDashboardMetrics" */
|
|
999
|
-
export type ExternalDashboardMetrics_Aggregate_Order_By = {
|
|
1000
|
-
count?: InputMaybe<Order_By>;
|
|
1001
|
-
max?: InputMaybe<ExternalDashboardMetrics_Max_Order_By>;
|
|
1002
|
-
min?: InputMaybe<ExternalDashboardMetrics_Min_Order_By>;
|
|
1003
|
-
};
|
|
1004
|
-
/** input type for inserting array relation for remote table "externalDashboardMetrics" */
|
|
1005
|
-
export type ExternalDashboardMetrics_Arr_Rel_Insert_Input = {
|
|
1006
|
-
data: Array<ExternalDashboardMetrics_Insert_Input>;
|
|
1007
|
-
/** upsert condition */
|
|
1008
|
-
on_conflict?: InputMaybe<ExternalDashboardMetrics_On_Conflict>;
|
|
1009
|
-
};
|
|
1010
|
-
/** Boolean expression to filter rows from the table "externalDashboardMetrics". All fields are combined with a logical 'AND'. */
|
|
1011
|
-
export type ExternalDashboardMetrics_Bool_Exp = {
|
|
1012
|
-
_and?: InputMaybe<Array<ExternalDashboardMetrics_Bool_Exp>>;
|
|
1013
|
-
_not?: InputMaybe<ExternalDashboardMetrics_Bool_Exp>;
|
|
1014
|
-
_or?: InputMaybe<Array<ExternalDashboardMetrics_Bool_Exp>>;
|
|
1015
|
-
externalDashboard?: InputMaybe<ExternalDashboards_Bool_Exp>;
|
|
1016
|
-
externalDashboardId?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1017
|
-
externalMetric?: InputMaybe<ExternalMetrics_Bool_Exp>;
|
|
1018
|
-
externalMetricId?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1019
|
-
};
|
|
1020
|
-
/** unique or primary key constraints on table "externalDashboardMetrics" */
|
|
1021
|
-
export declare enum ExternalDashboardMetrics_Constraint {
|
|
1022
|
-
/** unique or primary key constraint on columns "externalMetricId", "externalDashboardId" */
|
|
1023
|
-
ExternalDashboardMetricsPkey = "externalDashboardMetrics_pkey"
|
|
1024
|
-
}
|
|
1025
|
-
/** input type for inserting data into table "externalDashboardMetrics" */
|
|
1026
|
-
export type ExternalDashboardMetrics_Insert_Input = {
|
|
1027
|
-
externalDashboardId?: InputMaybe<Scalars['uuid']>;
|
|
1028
|
-
externalMetric?: InputMaybe<ExternalMetrics_Obj_Rel_Insert_Input>;
|
|
1029
|
-
externalMetricId?: InputMaybe<Scalars['uuid']>;
|
|
1030
|
-
};
|
|
1031
|
-
/** order by max() on columns of table "externalDashboardMetrics" */
|
|
1032
|
-
export type ExternalDashboardMetrics_Max_Order_By = {
|
|
1033
|
-
externalDashboardId?: InputMaybe<Order_By>;
|
|
1034
|
-
externalMetricId?: InputMaybe<Order_By>;
|
|
1035
|
-
};
|
|
1036
|
-
/** order by min() on columns of table "externalDashboardMetrics" */
|
|
1037
|
-
export type ExternalDashboardMetrics_Min_Order_By = {
|
|
1038
|
-
externalDashboardId?: InputMaybe<Order_By>;
|
|
1039
|
-
externalMetricId?: InputMaybe<Order_By>;
|
|
1040
|
-
};
|
|
1041
|
-
/** response of any mutation on the table "externalDashboardMetrics" */
|
|
1042
|
-
export type ExternalDashboardMetrics_Mutation_Response = {
|
|
1043
|
-
__typename?: 'externalDashboardMetrics_mutation_response';
|
|
1044
|
-
/** number of rows affected by the mutation */
|
|
1045
|
-
affected_rows: Scalars['Int'];
|
|
1046
|
-
/** data from the rows affected by the mutation */
|
|
1047
|
-
returning: Array<ExternalDashboardMetrics>;
|
|
1048
|
-
};
|
|
1049
|
-
/** on_conflict condition type for table "externalDashboardMetrics" */
|
|
1050
|
-
export type ExternalDashboardMetrics_On_Conflict = {
|
|
1051
|
-
constraint: ExternalDashboardMetrics_Constraint;
|
|
1052
|
-
update_columns?: Array<ExternalDashboardMetrics_Update_Column>;
|
|
1053
|
-
where?: InputMaybe<ExternalDashboardMetrics_Bool_Exp>;
|
|
1054
|
-
};
|
|
1055
|
-
/** Ordering options when selecting data from "externalDashboardMetrics". */
|
|
1056
|
-
export type ExternalDashboardMetrics_Order_By = {
|
|
1057
|
-
externalDashboard?: InputMaybe<ExternalDashboards_Order_By>;
|
|
1058
|
-
externalDashboardId?: InputMaybe<Order_By>;
|
|
1059
|
-
externalMetric?: InputMaybe<ExternalMetrics_Order_By>;
|
|
1060
|
-
externalMetricId?: InputMaybe<Order_By>;
|
|
1061
|
-
};
|
|
1062
|
-
/** select columns of table "externalDashboardMetrics" */
|
|
1063
|
-
export declare enum ExternalDashboardMetrics_Select_Column {
|
|
1064
|
-
/** column name */
|
|
1065
|
-
ExternalDashboardId = "externalDashboardId",
|
|
1066
|
-
/** column name */
|
|
1067
|
-
ExternalMetricId = "externalMetricId"
|
|
1068
|
-
}
|
|
1069
|
-
/** placeholder for update columns of table "externalDashboardMetrics" (current role has no relevant permissions) */
|
|
1070
|
-
export declare enum ExternalDashboardMetrics_Update_Column {
|
|
1071
|
-
/** placeholder (do not use) */
|
|
1072
|
-
Placeholder = "_PLACEHOLDER"
|
|
1073
|
-
}
|
|
1074
|
-
/** External dashboard theme for a particular client. */
|
|
1075
|
-
export type ExternalDashboardThemeClients = {
|
|
1076
|
-
__typename?: 'externalDashboardThemeClients';
|
|
1077
|
-
clientId: Scalars['String'];
|
|
1078
|
-
clientName: Scalars['String'];
|
|
1079
|
-
/** An object relationship */
|
|
1080
|
-
externalDashboardTheme: ExternalDashboardThemes;
|
|
1081
|
-
id: Scalars['uuid'];
|
|
1082
|
-
themeId: Scalars['uuid'];
|
|
1083
|
-
};
|
|
1084
|
-
/** order by aggregate values of table "externalDashboardThemeClients" */
|
|
1085
|
-
export type ExternalDashboardThemeClients_Aggregate_Order_By = {
|
|
1086
|
-
count?: InputMaybe<Order_By>;
|
|
1087
|
-
max?: InputMaybe<ExternalDashboardThemeClients_Max_Order_By>;
|
|
1088
|
-
min?: InputMaybe<ExternalDashboardThemeClients_Min_Order_By>;
|
|
1089
|
-
};
|
|
1090
|
-
/** Boolean expression to filter rows from the table "externalDashboardThemeClients". All fields are combined with a logical 'AND'. */
|
|
1091
|
-
export type ExternalDashboardThemeClients_Bool_Exp = {
|
|
1092
|
-
_and?: InputMaybe<Array<ExternalDashboardThemeClients_Bool_Exp>>;
|
|
1093
|
-
_not?: InputMaybe<ExternalDashboardThemeClients_Bool_Exp>;
|
|
1094
|
-
_or?: InputMaybe<Array<ExternalDashboardThemeClients_Bool_Exp>>;
|
|
1095
|
-
clientId?: InputMaybe<String_Comparison_Exp>;
|
|
1096
|
-
clientName?: InputMaybe<String_Comparison_Exp>;
|
|
1097
|
-
externalDashboardTheme?: InputMaybe<ExternalDashboardThemes_Bool_Exp>;
|
|
1098
|
-
id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1099
|
-
themeId?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1100
|
-
};
|
|
1101
|
-
/** order by max() on columns of table "externalDashboardThemeClients" */
|
|
1102
|
-
export type ExternalDashboardThemeClients_Max_Order_By = {
|
|
1103
|
-
clientId?: InputMaybe<Order_By>;
|
|
1104
|
-
clientName?: InputMaybe<Order_By>;
|
|
1105
|
-
id?: InputMaybe<Order_By>;
|
|
1106
|
-
themeId?: InputMaybe<Order_By>;
|
|
1107
|
-
};
|
|
1108
|
-
/** order by min() on columns of table "externalDashboardThemeClients" */
|
|
1109
|
-
export type ExternalDashboardThemeClients_Min_Order_By = {
|
|
1110
|
-
clientId?: InputMaybe<Order_By>;
|
|
1111
|
-
clientName?: InputMaybe<Order_By>;
|
|
1112
|
-
id?: InputMaybe<Order_By>;
|
|
1113
|
-
themeId?: InputMaybe<Order_By>;
|
|
1114
|
-
};
|
|
1115
|
-
/** Ordering options when selecting data from "externalDashboardThemeClients". */
|
|
1116
|
-
export type ExternalDashboardThemeClients_Order_By = {
|
|
1117
|
-
clientId?: InputMaybe<Order_By>;
|
|
1118
|
-
clientName?: InputMaybe<Order_By>;
|
|
1119
|
-
externalDashboardTheme?: InputMaybe<ExternalDashboardThemes_Order_By>;
|
|
1120
|
-
id?: InputMaybe<Order_By>;
|
|
1121
|
-
themeId?: InputMaybe<Order_By>;
|
|
1122
|
-
};
|
|
1123
|
-
/** select columns of table "externalDashboardThemeClients" */
|
|
1124
|
-
export declare enum ExternalDashboardThemeClients_Select_Column {
|
|
1125
|
-
/** column name */
|
|
1126
|
-
ClientId = "clientId",
|
|
1127
|
-
/** column name */
|
|
1128
|
-
ClientName = "clientName",
|
|
1129
|
-
/** column name */
|
|
1130
|
-
Id = "id",
|
|
1131
|
-
/** column name */
|
|
1132
|
-
ThemeId = "themeId"
|
|
1133
|
-
}
|
|
1134
|
-
/** Themes for external dashboard. */
|
|
1135
|
-
export type ExternalDashboardThemes = {
|
|
1136
|
-
__typename?: 'externalDashboardThemes';
|
|
1137
|
-
colors: Scalars['jsonb'];
|
|
1138
|
-
companyId: Scalars['uuid'];
|
|
1139
|
-
createdAt: Scalars['timestamptz'];
|
|
1140
|
-
/** An array relationship */
|
|
1141
|
-
externalDashboardThemeClients: Array<ExternalDashboardThemeClients>;
|
|
1142
|
-
id: Scalars['uuid'];
|
|
1143
|
-
name: Scalars['String'];
|
|
1144
|
-
};
|
|
1145
|
-
/** Themes for external dashboard. */
|
|
1146
|
-
export type ExternalDashboardThemesColorsArgs = {
|
|
1147
|
-
path?: InputMaybe<Scalars['String']>;
|
|
1148
|
-
};
|
|
1149
|
-
/** Themes for external dashboard. */
|
|
1150
|
-
export type ExternalDashboardThemesExternalDashboardThemeClientsArgs = {
|
|
1151
|
-
distinct_on?: InputMaybe<Array<ExternalDashboardThemeClients_Select_Column>>;
|
|
1152
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
1153
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
1154
|
-
order_by?: InputMaybe<Array<ExternalDashboardThemeClients_Order_By>>;
|
|
1155
|
-
where?: InputMaybe<ExternalDashboardThemeClients_Bool_Exp>;
|
|
1156
|
-
};
|
|
1157
|
-
/** Boolean expression to filter rows from the table "externalDashboardThemes". All fields are combined with a logical 'AND'. */
|
|
1158
|
-
export type ExternalDashboardThemes_Bool_Exp = {
|
|
1159
|
-
_and?: InputMaybe<Array<ExternalDashboardThemes_Bool_Exp>>;
|
|
1160
|
-
_not?: InputMaybe<ExternalDashboardThemes_Bool_Exp>;
|
|
1161
|
-
_or?: InputMaybe<Array<ExternalDashboardThemes_Bool_Exp>>;
|
|
1162
|
-
colors?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
1163
|
-
companyId?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1164
|
-
createdAt?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
1165
|
-
externalDashboardThemeClients?: InputMaybe<ExternalDashboardThemeClients_Bool_Exp>;
|
|
1166
|
-
id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1167
|
-
name?: InputMaybe<String_Comparison_Exp>;
|
|
1168
|
-
};
|
|
1169
|
-
/** Ordering options when selecting data from "externalDashboardThemes". */
|
|
1170
|
-
export type ExternalDashboardThemes_Order_By = {
|
|
1171
|
-
colors?: InputMaybe<Order_By>;
|
|
1172
|
-
companyId?: InputMaybe<Order_By>;
|
|
1173
|
-
createdAt?: InputMaybe<Order_By>;
|
|
1174
|
-
externalDashboardThemeClients_aggregate?: InputMaybe<ExternalDashboardThemeClients_Aggregate_Order_By>;
|
|
1175
|
-
id?: InputMaybe<Order_By>;
|
|
1176
|
-
name?: InputMaybe<Order_By>;
|
|
1177
|
-
};
|
|
1178
|
-
/** select columns of table "externalDashboardThemes" */
|
|
1179
|
-
export declare enum ExternalDashboardThemes_Select_Column {
|
|
1180
|
-
/** column name */
|
|
1181
|
-
Colors = "colors",
|
|
1182
|
-
/** column name */
|
|
1183
|
-
CompanyId = "companyId",
|
|
1184
|
-
/** column name */
|
|
1185
|
-
CreatedAt = "createdAt",
|
|
1186
|
-
/** column name */
|
|
1187
|
-
Id = "id",
|
|
1188
|
-
/** column name */
|
|
1189
|
-
Name = "name"
|
|
1190
|
-
}
|
|
1191
|
-
/** columns and relationships of "externalDashboards" */
|
|
1192
|
-
export type ExternalDashboards = {
|
|
1193
|
-
__typename?: 'externalDashboards';
|
|
1194
|
-
/** An array relationship */
|
|
1195
|
-
clientDashboardLayouts: Array<ClientDashboardLayout>;
|
|
1196
|
-
/** An array relationship */
|
|
1197
|
-
clientDashboardMetrics: Array<ClientDashboardMetrics>;
|
|
1198
|
-
companyId: Scalars['uuid'];
|
|
1199
|
-
/** An object relationship */
|
|
1200
|
-
companyWorkspace: CompanyWorkspaces;
|
|
1201
|
-
externalDashboardId: Scalars['String'];
|
|
1202
|
-
/** An array relationship */
|
|
1203
|
-
externalDashboardMetrics: Array<ExternalDashboardMetrics>;
|
|
1204
|
-
filters: Scalars['jsonb'];
|
|
1205
|
-
id: Scalars['uuid'];
|
|
1206
|
-
layout: Scalars['jsonb'];
|
|
1207
|
-
name: Scalars['String'];
|
|
1208
|
-
/** An array relationship */
|
|
1209
|
-
scheduleEmailReports: Array<ScheduleEmailReports>;
|
|
1210
|
-
};
|
|
1211
|
-
/** columns and relationships of "externalDashboards" */
|
|
1212
|
-
export type ExternalDashboardsClientDashboardLayoutsArgs = {
|
|
1213
|
-
distinct_on?: InputMaybe<Array<ClientDashboardLayout_Select_Column>>;
|
|
1214
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
1215
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
1216
|
-
order_by?: InputMaybe<Array<ClientDashboardLayout_Order_By>>;
|
|
1217
|
-
where?: InputMaybe<ClientDashboardLayout_Bool_Exp>;
|
|
1218
|
-
};
|
|
1219
|
-
/** columns and relationships of "externalDashboards" */
|
|
1220
|
-
export type ExternalDashboardsClientDashboardMetricsArgs = {
|
|
1221
|
-
distinct_on?: InputMaybe<Array<ClientDashboardMetrics_Select_Column>>;
|
|
1222
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
1223
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
1224
|
-
order_by?: InputMaybe<Array<ClientDashboardMetrics_Order_By>>;
|
|
1225
|
-
where?: InputMaybe<ClientDashboardMetrics_Bool_Exp>;
|
|
1226
|
-
};
|
|
1227
|
-
/** columns and relationships of "externalDashboards" */
|
|
1228
|
-
export type ExternalDashboardsExternalDashboardMetricsArgs = {
|
|
1229
|
-
distinct_on?: InputMaybe<Array<ExternalDashboardMetrics_Select_Column>>;
|
|
1230
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
1231
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
1232
|
-
order_by?: InputMaybe<Array<ExternalDashboardMetrics_Order_By>>;
|
|
1233
|
-
where?: InputMaybe<ExternalDashboardMetrics_Bool_Exp>;
|
|
1234
|
-
};
|
|
1235
|
-
/** columns and relationships of "externalDashboards" */
|
|
1236
|
-
export type ExternalDashboardsFiltersArgs = {
|
|
1237
|
-
path?: InputMaybe<Scalars['String']>;
|
|
1238
|
-
};
|
|
1239
|
-
/** columns and relationships of "externalDashboards" */
|
|
1240
|
-
export type ExternalDashboardsLayoutArgs = {
|
|
1241
|
-
path?: InputMaybe<Scalars['String']>;
|
|
1242
|
-
};
|
|
1243
|
-
/** columns and relationships of "externalDashboards" */
|
|
1244
|
-
export type ExternalDashboardsScheduleEmailReportsArgs = {
|
|
1245
|
-
distinct_on?: InputMaybe<Array<ScheduleEmailReports_Select_Column>>;
|
|
1246
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
1247
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
1248
|
-
order_by?: InputMaybe<Array<ScheduleEmailReports_Order_By>>;
|
|
1249
|
-
where?: InputMaybe<ScheduleEmailReports_Bool_Exp>;
|
|
1250
|
-
};
|
|
1251
|
-
/** order by aggregate values of table "externalDashboards" */
|
|
1252
|
-
export type ExternalDashboards_Aggregate_Order_By = {
|
|
1253
|
-
count?: InputMaybe<Order_By>;
|
|
1254
|
-
max?: InputMaybe<ExternalDashboards_Max_Order_By>;
|
|
1255
|
-
min?: InputMaybe<ExternalDashboards_Min_Order_By>;
|
|
1256
|
-
};
|
|
1257
|
-
/** Boolean expression to filter rows from the table "externalDashboards". All fields are combined with a logical 'AND'. */
|
|
1258
|
-
export type ExternalDashboards_Bool_Exp = {
|
|
1259
|
-
_and?: InputMaybe<Array<ExternalDashboards_Bool_Exp>>;
|
|
1260
|
-
_not?: InputMaybe<ExternalDashboards_Bool_Exp>;
|
|
1261
|
-
_or?: InputMaybe<Array<ExternalDashboards_Bool_Exp>>;
|
|
1262
|
-
clientDashboardLayouts?: InputMaybe<ClientDashboardLayout_Bool_Exp>;
|
|
1263
|
-
clientDashboardMetrics?: InputMaybe<ClientDashboardMetrics_Bool_Exp>;
|
|
1264
|
-
companyId?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1265
|
-
companyWorkspace?: InputMaybe<CompanyWorkspaces_Bool_Exp>;
|
|
1266
|
-
externalDashboardId?: InputMaybe<String_Comparison_Exp>;
|
|
1267
|
-
externalDashboardMetrics?: InputMaybe<ExternalDashboardMetrics_Bool_Exp>;
|
|
1268
|
-
filters?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
1269
|
-
id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1270
|
-
layout?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
1271
|
-
name?: InputMaybe<String_Comparison_Exp>;
|
|
1272
|
-
scheduleEmailReports?: InputMaybe<ScheduleEmailReports_Bool_Exp>;
|
|
1273
|
-
};
|
|
1274
|
-
/** order by max() on columns of table "externalDashboards" */
|
|
1275
|
-
export type ExternalDashboards_Max_Order_By = {
|
|
1276
|
-
companyId?: InputMaybe<Order_By>;
|
|
1277
|
-
externalDashboardId?: InputMaybe<Order_By>;
|
|
1278
|
-
id?: InputMaybe<Order_By>;
|
|
1279
|
-
name?: InputMaybe<Order_By>;
|
|
1280
|
-
};
|
|
1281
|
-
/** order by min() on columns of table "externalDashboards" */
|
|
1282
|
-
export type ExternalDashboards_Min_Order_By = {
|
|
1283
|
-
companyId?: InputMaybe<Order_By>;
|
|
1284
|
-
externalDashboardId?: InputMaybe<Order_By>;
|
|
1285
|
-
id?: InputMaybe<Order_By>;
|
|
1286
|
-
name?: InputMaybe<Order_By>;
|
|
1287
|
-
};
|
|
1288
|
-
/** Ordering options when selecting data from "externalDashboards". */
|
|
1289
|
-
export type ExternalDashboards_Order_By = {
|
|
1290
|
-
clientDashboardLayouts_aggregate?: InputMaybe<ClientDashboardLayout_Aggregate_Order_By>;
|
|
1291
|
-
clientDashboardMetrics_aggregate?: InputMaybe<ClientDashboardMetrics_Aggregate_Order_By>;
|
|
1292
|
-
companyId?: InputMaybe<Order_By>;
|
|
1293
|
-
companyWorkspace?: InputMaybe<CompanyWorkspaces_Order_By>;
|
|
1294
|
-
externalDashboardId?: InputMaybe<Order_By>;
|
|
1295
|
-
externalDashboardMetrics_aggregate?: InputMaybe<ExternalDashboardMetrics_Aggregate_Order_By>;
|
|
1296
|
-
filters?: InputMaybe<Order_By>;
|
|
1297
|
-
id?: InputMaybe<Order_By>;
|
|
1298
|
-
layout?: InputMaybe<Order_By>;
|
|
1299
|
-
name?: InputMaybe<Order_By>;
|
|
1300
|
-
scheduleEmailReports_aggregate?: InputMaybe<ScheduleEmailReports_Aggregate_Order_By>;
|
|
1301
|
-
};
|
|
1302
|
-
/** select columns of table "externalDashboards" */
|
|
1303
|
-
export declare enum ExternalDashboards_Select_Column {
|
|
1304
|
-
/** column name */
|
|
1305
|
-
CompanyId = "companyId",
|
|
1306
|
-
/** column name */
|
|
1307
|
-
ExternalDashboardId = "externalDashboardId",
|
|
1308
|
-
/** column name */
|
|
1309
|
-
Filters = "filters",
|
|
1310
|
-
/** column name */
|
|
1311
|
-
Id = "id",
|
|
1312
|
-
/** column name */
|
|
1313
|
-
Layout = "layout",
|
|
1314
|
-
/** column name */
|
|
1315
|
-
Name = "name"
|
|
1316
|
-
}
|
|
1317
|
-
/** columns and relationships of "externalMetricRawCsvUrls" */
|
|
1318
|
-
export type ExternalMetricRawCsvUrls = {
|
|
1319
|
-
__typename?: 'externalMetricRawCsvUrls';
|
|
1320
|
-
configurations: Scalars['jsonb'];
|
|
1321
|
-
error?: Maybe<Scalars['String']>;
|
|
1322
|
-
expireUrlIn: Scalars['Int'];
|
|
1323
|
-
/** An object relationship */
|
|
1324
|
-
externalMetric: ExternalMetrics;
|
|
1325
|
-
externalMetricId: Scalars['uuid'];
|
|
1326
|
-
id: Scalars['uuid'];
|
|
1327
|
-
lastUpdatedAt: Scalars['timestamptz'];
|
|
1328
|
-
requestStatus: Scalars['String'];
|
|
1329
|
-
urls: Scalars['jsonb'];
|
|
1330
|
-
};
|
|
1331
|
-
/** columns and relationships of "externalMetricRawCsvUrls" */
|
|
1332
|
-
export type ExternalMetricRawCsvUrlsConfigurationsArgs = {
|
|
1333
|
-
path?: InputMaybe<Scalars['String']>;
|
|
1334
|
-
};
|
|
1335
|
-
/** columns and relationships of "externalMetricRawCsvUrls" */
|
|
1336
|
-
export type ExternalMetricRawCsvUrlsUrlsArgs = {
|
|
1337
|
-
path?: InputMaybe<Scalars['String']>;
|
|
1338
|
-
};
|
|
1339
|
-
/** append existing jsonb value of filtered columns with new jsonb value */
|
|
1340
|
-
export type ExternalMetricRawCsvUrls_Append_Input = {
|
|
1341
|
-
configurations?: InputMaybe<Scalars['jsonb']>;
|
|
1342
|
-
urls?: InputMaybe<Scalars['jsonb']>;
|
|
1343
|
-
};
|
|
1344
|
-
/** Boolean expression to filter rows from the table "externalMetricRawCsvUrls". All fields are combined with a logical 'AND'. */
|
|
1345
|
-
export type ExternalMetricRawCsvUrls_Bool_Exp = {
|
|
1346
|
-
_and?: InputMaybe<Array<ExternalMetricRawCsvUrls_Bool_Exp>>;
|
|
1347
|
-
_not?: InputMaybe<ExternalMetricRawCsvUrls_Bool_Exp>;
|
|
1348
|
-
_or?: InputMaybe<Array<ExternalMetricRawCsvUrls_Bool_Exp>>;
|
|
1349
|
-
configurations?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
1350
|
-
error?: InputMaybe<String_Comparison_Exp>;
|
|
1351
|
-
expireUrlIn?: InputMaybe<Int_Comparison_Exp>;
|
|
1352
|
-
externalMetric?: InputMaybe<ExternalMetrics_Bool_Exp>;
|
|
1353
|
-
externalMetricId?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1354
|
-
id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1355
|
-
lastUpdatedAt?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
1356
|
-
requestStatus?: InputMaybe<String_Comparison_Exp>;
|
|
1357
|
-
urls?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
1358
|
-
};
|
|
1359
|
-
/** unique or primary key constraints on table "externalMetricRawCsvUrls" */
|
|
1360
|
-
export declare enum ExternalMetricRawCsvUrls_Constraint {
|
|
1361
|
-
/** unique or primary key constraint on columns "externalMetricId" */
|
|
1362
|
-
ExternalMetricRawCsvUrlsExternalMetricIdKey = "externalMetricRawCsvUrls_externalMetricId_key",
|
|
1363
|
-
/** unique or primary key constraint on columns "id" */
|
|
1364
|
-
ExternalMetricRawCsvUrlsPkey = "externalMetricRawCsvUrls_pkey"
|
|
1365
|
-
}
|
|
1366
|
-
/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
|
|
1367
|
-
export type ExternalMetricRawCsvUrls_Delete_At_Path_Input = {
|
|
1368
|
-
configurations?: InputMaybe<Array<Scalars['String']>>;
|
|
1369
|
-
urls?: InputMaybe<Array<Scalars['String']>>;
|
|
1370
|
-
};
|
|
1371
|
-
/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */
|
|
1372
|
-
export type ExternalMetricRawCsvUrls_Delete_Elem_Input = {
|
|
1373
|
-
configurations?: InputMaybe<Scalars['Int']>;
|
|
1374
|
-
urls?: InputMaybe<Scalars['Int']>;
|
|
1375
|
-
};
|
|
1376
|
-
/** delete key/value pair or string element. key/value pairs are matched based on their key value */
|
|
1377
|
-
export type ExternalMetricRawCsvUrls_Delete_Key_Input = {
|
|
1378
|
-
configurations?: InputMaybe<Scalars['String']>;
|
|
1379
|
-
urls?: InputMaybe<Scalars['String']>;
|
|
1380
|
-
};
|
|
1381
|
-
/** input type for incrementing numeric columns in table "externalMetricRawCsvUrls" */
|
|
1382
|
-
export type ExternalMetricRawCsvUrls_Inc_Input = {
|
|
1383
|
-
expireUrlIn?: InputMaybe<Scalars['Int']>;
|
|
1384
|
-
};
|
|
1385
|
-
/** input type for inserting data into table "externalMetricRawCsvUrls" */
|
|
1386
|
-
export type ExternalMetricRawCsvUrls_Insert_Input = {
|
|
1387
|
-
configurations?: InputMaybe<Scalars['jsonb']>;
|
|
1388
|
-
error?: InputMaybe<Scalars['String']>;
|
|
1389
|
-
expireUrlIn?: InputMaybe<Scalars['Int']>;
|
|
1390
|
-
externalMetric?: InputMaybe<ExternalMetrics_Obj_Rel_Insert_Input>;
|
|
1391
|
-
externalMetricId?: InputMaybe<Scalars['uuid']>;
|
|
1392
|
-
id?: InputMaybe<Scalars['uuid']>;
|
|
1393
|
-
lastUpdatedAt?: InputMaybe<Scalars['timestamptz']>;
|
|
1394
|
-
requestStatus?: InputMaybe<Scalars['String']>;
|
|
1395
|
-
urls?: InputMaybe<Scalars['jsonb']>;
|
|
1396
|
-
};
|
|
1397
|
-
/** response of any mutation on the table "externalMetricRawCsvUrls" */
|
|
1398
|
-
export type ExternalMetricRawCsvUrls_Mutation_Response = {
|
|
1399
|
-
__typename?: 'externalMetricRawCsvUrls_mutation_response';
|
|
1400
|
-
/** number of rows affected by the mutation */
|
|
1401
|
-
affected_rows: Scalars['Int'];
|
|
1402
|
-
/** data from the rows affected by the mutation */
|
|
1403
|
-
returning: Array<ExternalMetricRawCsvUrls>;
|
|
1404
|
-
};
|
|
1405
|
-
/** input type for inserting object relation for remote table "externalMetricRawCsvUrls" */
|
|
1406
|
-
export type ExternalMetricRawCsvUrls_Obj_Rel_Insert_Input = {
|
|
1407
|
-
data: ExternalMetricRawCsvUrls_Insert_Input;
|
|
1408
|
-
/** upsert condition */
|
|
1409
|
-
on_conflict?: InputMaybe<ExternalMetricRawCsvUrls_On_Conflict>;
|
|
1410
|
-
};
|
|
1411
|
-
/** on_conflict condition type for table "externalMetricRawCsvUrls" */
|
|
1412
|
-
export type ExternalMetricRawCsvUrls_On_Conflict = {
|
|
1413
|
-
constraint: ExternalMetricRawCsvUrls_Constraint;
|
|
1414
|
-
update_columns?: Array<ExternalMetricRawCsvUrls_Update_Column>;
|
|
1415
|
-
where?: InputMaybe<ExternalMetricRawCsvUrls_Bool_Exp>;
|
|
1416
|
-
};
|
|
1417
|
-
/** Ordering options when selecting data from "externalMetricRawCsvUrls". */
|
|
1418
|
-
export type ExternalMetricRawCsvUrls_Order_By = {
|
|
1419
|
-
configurations?: InputMaybe<Order_By>;
|
|
1420
|
-
error?: InputMaybe<Order_By>;
|
|
1421
|
-
expireUrlIn?: InputMaybe<Order_By>;
|
|
1422
|
-
externalMetric?: InputMaybe<ExternalMetrics_Order_By>;
|
|
1423
|
-
externalMetricId?: InputMaybe<Order_By>;
|
|
1424
|
-
id?: InputMaybe<Order_By>;
|
|
1425
|
-
lastUpdatedAt?: InputMaybe<Order_By>;
|
|
1426
|
-
requestStatus?: InputMaybe<Order_By>;
|
|
1427
|
-
urls?: InputMaybe<Order_By>;
|
|
1428
|
-
};
|
|
1429
|
-
/** primary key columns input for table: externalMetricRawCsvUrls */
|
|
1430
|
-
export type ExternalMetricRawCsvUrls_Pk_Columns_Input = {
|
|
1431
|
-
id: Scalars['uuid'];
|
|
1432
|
-
};
|
|
1433
|
-
/** prepend existing jsonb value of filtered columns with new jsonb value */
|
|
1434
|
-
export type ExternalMetricRawCsvUrls_Prepend_Input = {
|
|
1435
|
-
configurations?: InputMaybe<Scalars['jsonb']>;
|
|
1436
|
-
urls?: InputMaybe<Scalars['jsonb']>;
|
|
1437
|
-
};
|
|
1438
|
-
/** select columns of table "externalMetricRawCsvUrls" */
|
|
1439
|
-
export declare enum ExternalMetricRawCsvUrls_Select_Column {
|
|
1440
|
-
/** column name */
|
|
1441
|
-
Configurations = "configurations",
|
|
1442
|
-
/** column name */
|
|
1443
|
-
Error = "error",
|
|
1444
|
-
/** column name */
|
|
1445
|
-
ExpireUrlIn = "expireUrlIn",
|
|
1446
|
-
/** column name */
|
|
1447
|
-
ExternalMetricId = "externalMetricId",
|
|
1448
|
-
/** column name */
|
|
1449
|
-
Id = "id",
|
|
1450
|
-
/** column name */
|
|
1451
|
-
LastUpdatedAt = "lastUpdatedAt",
|
|
1452
|
-
/** column name */
|
|
1453
|
-
RequestStatus = "requestStatus",
|
|
1454
|
-
/** column name */
|
|
1455
|
-
Urls = "urls"
|
|
1456
|
-
}
|
|
1457
|
-
/** input type for updating data in table "externalMetricRawCsvUrls" */
|
|
1458
|
-
export type ExternalMetricRawCsvUrls_Set_Input = {
|
|
1459
|
-
configurations?: InputMaybe<Scalars['jsonb']>;
|
|
1460
|
-
error?: InputMaybe<Scalars['String']>;
|
|
1461
|
-
expireUrlIn?: InputMaybe<Scalars['Int']>;
|
|
1462
|
-
externalMetricId?: InputMaybe<Scalars['uuid']>;
|
|
1463
|
-
id?: InputMaybe<Scalars['uuid']>;
|
|
1464
|
-
lastUpdatedAt?: InputMaybe<Scalars['timestamptz']>;
|
|
1465
|
-
requestStatus?: InputMaybe<Scalars['String']>;
|
|
1466
|
-
urls?: InputMaybe<Scalars['jsonb']>;
|
|
1467
|
-
};
|
|
1468
|
-
/** update columns of table "externalMetricRawCsvUrls" */
|
|
1469
|
-
export declare enum ExternalMetricRawCsvUrls_Update_Column {
|
|
1470
|
-
/** column name */
|
|
1471
|
-
Configurations = "configurations",
|
|
1472
|
-
/** column name */
|
|
1473
|
-
Error = "error",
|
|
1474
|
-
/** column name */
|
|
1475
|
-
ExpireUrlIn = "expireUrlIn",
|
|
1476
|
-
/** column name */
|
|
1477
|
-
ExternalMetricId = "externalMetricId",
|
|
1478
|
-
/** column name */
|
|
1479
|
-
Id = "id",
|
|
1480
|
-
/** column name */
|
|
1481
|
-
LastUpdatedAt = "lastUpdatedAt",
|
|
1482
|
-
/** column name */
|
|
1483
|
-
RequestStatus = "requestStatus",
|
|
1484
|
-
/** column name */
|
|
1485
|
-
Urls = "urls"
|
|
1486
|
-
}
|
|
1487
|
-
/** extrnal metrics table for users client-based query */
|
|
1488
|
-
export type ExternalMetrics = {
|
|
1489
|
-
__typename?: 'externalMetrics';
|
|
1490
|
-
chartOptions: Scalars['jsonb'];
|
|
1491
|
-
clickActions: Scalars['json'];
|
|
1492
|
-
/** An array relationship */
|
|
1493
|
-
clientDeletedMetrics: Array<ClientDeletedMetrics>;
|
|
1494
|
-
clientId?: Maybe<Scalars['String']>;
|
|
1495
|
-
companyId: Scalars['uuid'];
|
|
1496
|
-
/** An object relationship */
|
|
1497
|
-
companyIntegration: CompanyIntegrations;
|
|
1498
|
-
companyIntegrationId: Scalars['uuid'];
|
|
1499
|
-
createdAt: Scalars['timestamptz'];
|
|
1500
|
-
createdBy?: Maybe<Scalars['String']>;
|
|
1501
|
-
datasetMetricSettings?: Maybe<Scalars['jsonb']>;
|
|
1502
|
-
description: Scalars['String'];
|
|
1503
|
-
drillDownSettings?: Maybe<Scalars['jsonb']>;
|
|
1504
|
-
/** An array relationship */
|
|
1505
|
-
externalDashboardMetrics: Array<ExternalDashboardMetrics>;
|
|
1506
|
-
/** An object relationship */
|
|
1507
|
-
externalMetricRawCsvUrl?: Maybe<ExternalMetricRawCsvUrls>;
|
|
1508
|
-
/** An array relationship */
|
|
1509
|
-
externalMetricsRlsFilters: Array<ExternalMetricsRlsFilters>;
|
|
1510
|
-
groupBy: Scalars['jsonb'];
|
|
1511
|
-
id: Scalars['uuid'];
|
|
1512
|
-
inputFields?: Maybe<Scalars['jsonb']>;
|
|
1513
|
-
integrationName: Scalars['String'];
|
|
1514
|
-
isArchived: Scalars['Boolean'];
|
|
1515
|
-
isCreatedByClient: Scalars['Boolean'];
|
|
1516
|
-
isEnableGroupBy: Scalars['Boolean'];
|
|
1517
|
-
isLive: Scalars['Boolean'];
|
|
1518
|
-
isMarkedDeleted: Scalars['Boolean'];
|
|
1519
|
-
metricId: Scalars['String'];
|
|
1520
|
-
metricQuery?: Maybe<Scalars['String']>;
|
|
1521
|
-
name: Scalars['String'];
|
|
1522
|
-
outputColumns?: Maybe<Scalars['String']>;
|
|
1523
|
-
query: Scalars['String'];
|
|
1524
|
-
resizeAttributes: Scalars['jsonb'];
|
|
1525
|
-
rlsConditions: Scalars['jsonb'];
|
|
1526
|
-
/** An array relationship */
|
|
1527
|
-
scheduleEmailReportCharts: Array<ScheduleEmailReportCharts>;
|
|
1528
|
-
selectedGroupBy: Scalars['jsonb'];
|
|
1529
|
-
timeGrain?: Maybe<Scalars['String']>;
|
|
1530
|
-
updatedAt: Scalars['timestamptz'];
|
|
1531
|
-
};
|
|
1532
|
-
/** extrnal metrics table for users client-based query */
|
|
1533
|
-
export type ExternalMetricsChartOptionsArgs = {
|
|
1534
|
-
path?: InputMaybe<Scalars['String']>;
|
|
1535
|
-
};
|
|
1536
|
-
/** extrnal metrics table for users client-based query */
|
|
1537
|
-
export type ExternalMetricsClickActionsArgs = {
|
|
1538
|
-
path?: InputMaybe<Scalars['String']>;
|
|
1539
|
-
};
|
|
1540
|
-
/** extrnal metrics table for users client-based query */
|
|
1541
|
-
export type ExternalMetricsClientDeletedMetricsArgs = {
|
|
1542
|
-
distinct_on?: InputMaybe<Array<ClientDeletedMetrics_Select_Column>>;
|
|
1543
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
1544
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
1545
|
-
order_by?: InputMaybe<Array<ClientDeletedMetrics_Order_By>>;
|
|
1546
|
-
where?: InputMaybe<ClientDeletedMetrics_Bool_Exp>;
|
|
1547
|
-
};
|
|
1548
|
-
/** extrnal metrics table for users client-based query */
|
|
1549
|
-
export type ExternalMetricsDatasetMetricSettingsArgs = {
|
|
1550
|
-
path?: InputMaybe<Scalars['String']>;
|
|
1551
|
-
};
|
|
1552
|
-
/** extrnal metrics table for users client-based query */
|
|
1553
|
-
export type ExternalMetricsDrillDownSettingsArgs = {
|
|
1554
|
-
path?: InputMaybe<Scalars['String']>;
|
|
1555
|
-
};
|
|
1556
|
-
/** extrnal metrics table for users client-based query */
|
|
1557
|
-
export type ExternalMetricsExternalDashboardMetricsArgs = {
|
|
1558
|
-
distinct_on?: InputMaybe<Array<ExternalDashboardMetrics_Select_Column>>;
|
|
1559
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
1560
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
1561
|
-
order_by?: InputMaybe<Array<ExternalDashboardMetrics_Order_By>>;
|
|
1562
|
-
where?: InputMaybe<ExternalDashboardMetrics_Bool_Exp>;
|
|
1563
|
-
};
|
|
1564
|
-
/** extrnal metrics table for users client-based query */
|
|
1565
|
-
export type ExternalMetricsExternalMetricsRlsFiltersArgs = {
|
|
1566
|
-
distinct_on?: InputMaybe<Array<ExternalMetricsRlsFilters_Select_Column>>;
|
|
1567
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
1568
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
1569
|
-
order_by?: InputMaybe<Array<ExternalMetricsRlsFilters_Order_By>>;
|
|
1570
|
-
where?: InputMaybe<ExternalMetricsRlsFilters_Bool_Exp>;
|
|
1571
|
-
};
|
|
1572
|
-
/** extrnal metrics table for users client-based query */
|
|
1573
|
-
export type ExternalMetricsGroupByArgs = {
|
|
1574
|
-
path?: InputMaybe<Scalars['String']>;
|
|
1575
|
-
};
|
|
1576
|
-
/** extrnal metrics table for users client-based query */
|
|
1577
|
-
export type ExternalMetricsInputFieldsArgs = {
|
|
1578
|
-
path?: InputMaybe<Scalars['String']>;
|
|
1579
|
-
};
|
|
1580
|
-
/** extrnal metrics table for users client-based query */
|
|
1581
|
-
export type ExternalMetricsResizeAttributesArgs = {
|
|
1582
|
-
path?: InputMaybe<Scalars['String']>;
|
|
1583
|
-
};
|
|
1584
|
-
/** extrnal metrics table for users client-based query */
|
|
1585
|
-
export type ExternalMetricsRlsConditionsArgs = {
|
|
1586
|
-
path?: InputMaybe<Scalars['String']>;
|
|
1587
|
-
};
|
|
1588
|
-
/** extrnal metrics table for users client-based query */
|
|
1589
|
-
export type ExternalMetricsScheduleEmailReportChartsArgs = {
|
|
1590
|
-
distinct_on?: InputMaybe<Array<ScheduleEmailReportCharts_Select_Column>>;
|
|
1591
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
1592
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
1593
|
-
order_by?: InputMaybe<Array<ScheduleEmailReportCharts_Order_By>>;
|
|
1594
|
-
where?: InputMaybe<ScheduleEmailReportCharts_Bool_Exp>;
|
|
1595
|
-
};
|
|
1596
|
-
/** extrnal metrics table for users client-based query */
|
|
1597
|
-
export type ExternalMetricsSelectedGroupByArgs = {
|
|
1598
|
-
path?: InputMaybe<Scalars['String']>;
|
|
1599
|
-
};
|
|
1600
|
-
/** columns and relationships of "externalMetricsRlsFilters" */
|
|
1601
|
-
export type ExternalMetricsRlsFilters = {
|
|
1602
|
-
__typename?: 'externalMetricsRlsFilters';
|
|
1603
|
-
companyRlsFilterId: Scalars['uuid'];
|
|
1604
|
-
/** An object relationship */
|
|
1605
|
-
externalMetric: ExternalMetrics;
|
|
1606
|
-
externalMetricId: Scalars['uuid'];
|
|
1607
|
-
id: Scalars['uuid'];
|
|
1608
|
-
};
|
|
1609
|
-
/** order by aggregate values of table "externalMetricsRlsFilters" */
|
|
1610
|
-
export type ExternalMetricsRlsFilters_Aggregate_Order_By = {
|
|
1611
|
-
count?: InputMaybe<Order_By>;
|
|
1612
|
-
max?: InputMaybe<ExternalMetricsRlsFilters_Max_Order_By>;
|
|
1613
|
-
min?: InputMaybe<ExternalMetricsRlsFilters_Min_Order_By>;
|
|
1614
|
-
};
|
|
1615
|
-
/** input type for inserting array relation for remote table "externalMetricsRlsFilters" */
|
|
1616
|
-
export type ExternalMetricsRlsFilters_Arr_Rel_Insert_Input = {
|
|
1617
|
-
data: Array<ExternalMetricsRlsFilters_Insert_Input>;
|
|
1618
|
-
/** upsert condition */
|
|
1619
|
-
on_conflict?: InputMaybe<ExternalMetricsRlsFilters_On_Conflict>;
|
|
1620
|
-
};
|
|
1621
|
-
/** Boolean expression to filter rows from the table "externalMetricsRlsFilters". All fields are combined with a logical 'AND'. */
|
|
1622
|
-
export type ExternalMetricsRlsFilters_Bool_Exp = {
|
|
1623
|
-
_and?: InputMaybe<Array<ExternalMetricsRlsFilters_Bool_Exp>>;
|
|
1624
|
-
_not?: InputMaybe<ExternalMetricsRlsFilters_Bool_Exp>;
|
|
1625
|
-
_or?: InputMaybe<Array<ExternalMetricsRlsFilters_Bool_Exp>>;
|
|
1626
|
-
companyRlsFilterId?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1627
|
-
externalMetric?: InputMaybe<ExternalMetrics_Bool_Exp>;
|
|
1628
|
-
externalMetricId?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1629
|
-
id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1630
|
-
};
|
|
1631
|
-
/** unique or primary key constraints on table "externalMetricsRlsFilters" */
|
|
1632
|
-
export declare enum ExternalMetricsRlsFilters_Constraint {
|
|
1633
|
-
/** unique or primary key constraint on columns "id" */
|
|
1634
|
-
ExternalMetricsRlsFiltersPkey = "externalMetricsRlsFilters_pkey"
|
|
1635
|
-
}
|
|
1636
|
-
/** input type for inserting data into table "externalMetricsRlsFilters" */
|
|
1637
|
-
export type ExternalMetricsRlsFilters_Insert_Input = {
|
|
1638
|
-
companyRlsFilterId?: InputMaybe<Scalars['uuid']>;
|
|
1639
|
-
externalMetric?: InputMaybe<ExternalMetrics_Obj_Rel_Insert_Input>;
|
|
1640
|
-
externalMetricId?: InputMaybe<Scalars['uuid']>;
|
|
1641
|
-
};
|
|
1642
|
-
/** order by max() on columns of table "externalMetricsRlsFilters" */
|
|
1643
|
-
export type ExternalMetricsRlsFilters_Max_Order_By = {
|
|
1644
|
-
companyRlsFilterId?: InputMaybe<Order_By>;
|
|
1645
|
-
externalMetricId?: InputMaybe<Order_By>;
|
|
1646
|
-
id?: InputMaybe<Order_By>;
|
|
1647
|
-
};
|
|
1648
|
-
/** order by min() on columns of table "externalMetricsRlsFilters" */
|
|
1649
|
-
export type ExternalMetricsRlsFilters_Min_Order_By = {
|
|
1650
|
-
companyRlsFilterId?: InputMaybe<Order_By>;
|
|
1651
|
-
externalMetricId?: InputMaybe<Order_By>;
|
|
1652
|
-
id?: InputMaybe<Order_By>;
|
|
1653
|
-
};
|
|
1654
|
-
/** response of any mutation on the table "externalMetricsRlsFilters" */
|
|
1655
|
-
export type ExternalMetricsRlsFilters_Mutation_Response = {
|
|
1656
|
-
__typename?: 'externalMetricsRlsFilters_mutation_response';
|
|
1657
|
-
/** number of rows affected by the mutation */
|
|
1658
|
-
affected_rows: Scalars['Int'];
|
|
1659
|
-
/** data from the rows affected by the mutation */
|
|
1660
|
-
returning: Array<ExternalMetricsRlsFilters>;
|
|
1661
|
-
};
|
|
1662
|
-
/** on_conflict condition type for table "externalMetricsRlsFilters" */
|
|
1663
|
-
export type ExternalMetricsRlsFilters_On_Conflict = {
|
|
1664
|
-
constraint: ExternalMetricsRlsFilters_Constraint;
|
|
1665
|
-
update_columns?: Array<ExternalMetricsRlsFilters_Update_Column>;
|
|
1666
|
-
where?: InputMaybe<ExternalMetricsRlsFilters_Bool_Exp>;
|
|
1667
|
-
};
|
|
1668
|
-
/** Ordering options when selecting data from "externalMetricsRlsFilters". */
|
|
1669
|
-
export type ExternalMetricsRlsFilters_Order_By = {
|
|
1670
|
-
companyRlsFilterId?: InputMaybe<Order_By>;
|
|
1671
|
-
externalMetric?: InputMaybe<ExternalMetrics_Order_By>;
|
|
1672
|
-
externalMetricId?: InputMaybe<Order_By>;
|
|
1673
|
-
id?: InputMaybe<Order_By>;
|
|
1674
|
-
};
|
|
1675
|
-
/** select columns of table "externalMetricsRlsFilters" */
|
|
1676
|
-
export declare enum ExternalMetricsRlsFilters_Select_Column {
|
|
1677
|
-
/** column name */
|
|
1678
|
-
CompanyRlsFilterId = "companyRlsFilterId",
|
|
1679
|
-
/** column name */
|
|
1680
|
-
ExternalMetricId = "externalMetricId",
|
|
1681
|
-
/** column name */
|
|
1682
|
-
Id = "id"
|
|
1683
|
-
}
|
|
1684
|
-
/** placeholder for update columns of table "externalMetricsRlsFilters" (current role has no relevant permissions) */
|
|
1685
|
-
export declare enum ExternalMetricsRlsFilters_Update_Column {
|
|
1686
|
-
/** placeholder (do not use) */
|
|
1687
|
-
Placeholder = "_PLACEHOLDER"
|
|
1688
|
-
}
|
|
1689
|
-
/** order by aggregate values of table "externalMetrics" */
|
|
1690
|
-
export type ExternalMetrics_Aggregate_Order_By = {
|
|
1691
|
-
count?: InputMaybe<Order_By>;
|
|
1692
|
-
max?: InputMaybe<ExternalMetrics_Max_Order_By>;
|
|
1693
|
-
min?: InputMaybe<ExternalMetrics_Min_Order_By>;
|
|
1694
|
-
};
|
|
1695
|
-
/** append existing jsonb value of filtered columns with new jsonb value */
|
|
1696
|
-
export type ExternalMetrics_Append_Input = {
|
|
1697
|
-
chartOptions?: InputMaybe<Scalars['jsonb']>;
|
|
1698
|
-
resizeAttributes?: InputMaybe<Scalars['jsonb']>;
|
|
1699
|
-
};
|
|
1700
|
-
/** Boolean expression to filter rows from the table "externalMetrics". All fields are combined with a logical 'AND'. */
|
|
1701
|
-
export type ExternalMetrics_Bool_Exp = {
|
|
1702
|
-
_and?: InputMaybe<Array<ExternalMetrics_Bool_Exp>>;
|
|
1703
|
-
_not?: InputMaybe<ExternalMetrics_Bool_Exp>;
|
|
1704
|
-
_or?: InputMaybe<Array<ExternalMetrics_Bool_Exp>>;
|
|
1705
|
-
chartOptions?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
1706
|
-
clickActions?: InputMaybe<Json_Comparison_Exp>;
|
|
1707
|
-
clientDeletedMetrics?: InputMaybe<ClientDeletedMetrics_Bool_Exp>;
|
|
1708
|
-
clientId?: InputMaybe<String_Comparison_Exp>;
|
|
1709
|
-
companyId?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1710
|
-
companyIntegration?: InputMaybe<CompanyIntegrations_Bool_Exp>;
|
|
1711
|
-
companyIntegrationId?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1712
|
-
createdAt?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
1713
|
-
createdBy?: InputMaybe<String_Comparison_Exp>;
|
|
1714
|
-
datasetMetricSettings?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
1715
|
-
description?: InputMaybe<String_Comparison_Exp>;
|
|
1716
|
-
drillDownSettings?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
1717
|
-
externalDashboardMetrics?: InputMaybe<ExternalDashboardMetrics_Bool_Exp>;
|
|
1718
|
-
externalMetricRawCsvUrl?: InputMaybe<ExternalMetricRawCsvUrls_Bool_Exp>;
|
|
1719
|
-
externalMetricsRlsFilters?: InputMaybe<ExternalMetricsRlsFilters_Bool_Exp>;
|
|
1720
|
-
groupBy?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
1721
|
-
id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1722
|
-
inputFields?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
1723
|
-
integrationName?: InputMaybe<String_Comparison_Exp>;
|
|
1724
|
-
isArchived?: InputMaybe<Boolean_Comparison_Exp>;
|
|
1725
|
-
isCreatedByClient?: InputMaybe<Boolean_Comparison_Exp>;
|
|
1726
|
-
isEnableGroupBy?: InputMaybe<Boolean_Comparison_Exp>;
|
|
1727
|
-
isLive?: InputMaybe<Boolean_Comparison_Exp>;
|
|
1728
|
-
isMarkedDeleted?: InputMaybe<Boolean_Comparison_Exp>;
|
|
1729
|
-
metricId?: InputMaybe<String_Comparison_Exp>;
|
|
1730
|
-
metricQuery?: InputMaybe<String_Comparison_Exp>;
|
|
1731
|
-
name?: InputMaybe<String_Comparison_Exp>;
|
|
1732
|
-
outputColumns?: InputMaybe<String_Comparison_Exp>;
|
|
1733
|
-
query?: InputMaybe<String_Comparison_Exp>;
|
|
1734
|
-
resizeAttributes?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
1735
|
-
rlsConditions?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
1736
|
-
scheduleEmailReportCharts?: InputMaybe<ScheduleEmailReportCharts_Bool_Exp>;
|
|
1737
|
-
selectedGroupBy?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
1738
|
-
timeGrain?: InputMaybe<String_Comparison_Exp>;
|
|
1739
|
-
updatedAt?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
1740
|
-
};
|
|
1741
|
-
/** unique or primary key constraints on table "externalMetrics" */
|
|
1742
|
-
export declare enum ExternalMetrics_Constraint {
|
|
1743
|
-
/** unique or primary key constraint on columns "metricId" */
|
|
1744
|
-
ExternalMetricsMetricIdKey = "externalMetrics_metricId_key",
|
|
1745
|
-
/** unique or primary key constraint on columns "id" */
|
|
1746
|
-
ExternalMetricsPkey = "externalMetrics_pkey"
|
|
1747
|
-
}
|
|
1748
|
-
/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
|
|
1749
|
-
export type ExternalMetrics_Delete_At_Path_Input = {
|
|
1750
|
-
chartOptions?: InputMaybe<Array<Scalars['String']>>;
|
|
1751
|
-
resizeAttributes?: InputMaybe<Array<Scalars['String']>>;
|
|
1752
|
-
};
|
|
1753
|
-
/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */
|
|
1754
|
-
export type ExternalMetrics_Delete_Elem_Input = {
|
|
1755
|
-
chartOptions?: InputMaybe<Scalars['Int']>;
|
|
1756
|
-
resizeAttributes?: InputMaybe<Scalars['Int']>;
|
|
1757
|
-
};
|
|
1758
|
-
/** delete key/value pair or string element. key/value pairs are matched based on their key value */
|
|
1759
|
-
export type ExternalMetrics_Delete_Key_Input = {
|
|
1760
|
-
chartOptions?: InputMaybe<Scalars['String']>;
|
|
1761
|
-
resizeAttributes?: InputMaybe<Scalars['String']>;
|
|
1762
|
-
};
|
|
1763
|
-
/** input type for inserting data into table "externalMetrics" */
|
|
1764
|
-
export type ExternalMetrics_Insert_Input = {
|
|
1765
|
-
chartOptions?: InputMaybe<Scalars['jsonb']>;
|
|
1766
|
-
clientDeletedMetrics?: InputMaybe<ClientDeletedMetrics_Arr_Rel_Insert_Input>;
|
|
1767
|
-
clientId?: InputMaybe<Scalars['String']>;
|
|
1768
|
-
companyId?: InputMaybe<Scalars['uuid']>;
|
|
1769
|
-
companyIntegrationId?: InputMaybe<Scalars['uuid']>;
|
|
1770
|
-
createdAt?: InputMaybe<Scalars['timestamptz']>;
|
|
1771
|
-
createdBy?: InputMaybe<Scalars['String']>;
|
|
1772
|
-
datasetMetricSettings?: InputMaybe<Scalars['jsonb']>;
|
|
1773
|
-
description?: InputMaybe<Scalars['String']>;
|
|
1774
|
-
drillDownSettings?: InputMaybe<Scalars['jsonb']>;
|
|
1775
|
-
externalDashboardMetrics?: InputMaybe<ExternalDashboardMetrics_Arr_Rel_Insert_Input>;
|
|
1776
|
-
externalMetricRawCsvUrl?: InputMaybe<ExternalMetricRawCsvUrls_Obj_Rel_Insert_Input>;
|
|
1777
|
-
externalMetricsRlsFilters?: InputMaybe<ExternalMetricsRlsFilters_Arr_Rel_Insert_Input>;
|
|
1778
|
-
groupBy?: InputMaybe<Scalars['jsonb']>;
|
|
1779
|
-
inputFields?: InputMaybe<Scalars['jsonb']>;
|
|
1780
|
-
integrationName?: InputMaybe<Scalars['String']>;
|
|
1781
|
-
isCreatedByClient?: InputMaybe<Scalars['Boolean']>;
|
|
1782
|
-
isEnableGroupBy?: InputMaybe<Scalars['Boolean']>;
|
|
1783
|
-
isLive?: InputMaybe<Scalars['Boolean']>;
|
|
1784
|
-
metricId?: InputMaybe<Scalars['String']>;
|
|
1785
|
-
metricQuery?: InputMaybe<Scalars['String']>;
|
|
1786
|
-
name?: InputMaybe<Scalars['String']>;
|
|
1787
|
-
outputColumns?: InputMaybe<Scalars['String']>;
|
|
1788
|
-
query?: InputMaybe<Scalars['String']>;
|
|
1789
|
-
resizeAttributes?: InputMaybe<Scalars['jsonb']>;
|
|
1790
|
-
scheduleEmailReportCharts?: InputMaybe<ScheduleEmailReportCharts_Arr_Rel_Insert_Input>;
|
|
1791
|
-
selectedGroupBy?: InputMaybe<Scalars['jsonb']>;
|
|
1792
|
-
timeGrain?: InputMaybe<Scalars['String']>;
|
|
1793
|
-
updatedAt?: InputMaybe<Scalars['timestamptz']>;
|
|
1794
|
-
};
|
|
1795
|
-
/** order by max() on columns of table "externalMetrics" */
|
|
1796
|
-
export type ExternalMetrics_Max_Order_By = {
|
|
1797
|
-
clientId?: InputMaybe<Order_By>;
|
|
1798
|
-
companyId?: InputMaybe<Order_By>;
|
|
1799
|
-
companyIntegrationId?: InputMaybe<Order_By>;
|
|
1800
|
-
createdAt?: InputMaybe<Order_By>;
|
|
1801
|
-
createdBy?: InputMaybe<Order_By>;
|
|
1802
|
-
description?: InputMaybe<Order_By>;
|
|
1803
|
-
id?: InputMaybe<Order_By>;
|
|
1804
|
-
integrationName?: InputMaybe<Order_By>;
|
|
1805
|
-
metricId?: InputMaybe<Order_By>;
|
|
1806
|
-
metricQuery?: InputMaybe<Order_By>;
|
|
1807
|
-
name?: InputMaybe<Order_By>;
|
|
1808
|
-
outputColumns?: InputMaybe<Order_By>;
|
|
1809
|
-
query?: InputMaybe<Order_By>;
|
|
1810
|
-
timeGrain?: InputMaybe<Order_By>;
|
|
1811
|
-
updatedAt?: InputMaybe<Order_By>;
|
|
1812
|
-
};
|
|
1813
|
-
/** order by min() on columns of table "externalMetrics" */
|
|
1814
|
-
export type ExternalMetrics_Min_Order_By = {
|
|
1815
|
-
clientId?: InputMaybe<Order_By>;
|
|
1816
|
-
companyId?: InputMaybe<Order_By>;
|
|
1817
|
-
companyIntegrationId?: InputMaybe<Order_By>;
|
|
1818
|
-
createdAt?: InputMaybe<Order_By>;
|
|
1819
|
-
createdBy?: InputMaybe<Order_By>;
|
|
1820
|
-
description?: InputMaybe<Order_By>;
|
|
1821
|
-
id?: InputMaybe<Order_By>;
|
|
1822
|
-
integrationName?: InputMaybe<Order_By>;
|
|
1823
|
-
metricId?: InputMaybe<Order_By>;
|
|
1824
|
-
metricQuery?: InputMaybe<Order_By>;
|
|
1825
|
-
name?: InputMaybe<Order_By>;
|
|
1826
|
-
outputColumns?: InputMaybe<Order_By>;
|
|
1827
|
-
query?: InputMaybe<Order_By>;
|
|
1828
|
-
timeGrain?: InputMaybe<Order_By>;
|
|
1829
|
-
updatedAt?: InputMaybe<Order_By>;
|
|
1830
|
-
};
|
|
1831
|
-
/** response of any mutation on the table "externalMetrics" */
|
|
1832
|
-
export type ExternalMetrics_Mutation_Response = {
|
|
1833
|
-
__typename?: 'externalMetrics_mutation_response';
|
|
1834
|
-
/** number of rows affected by the mutation */
|
|
1835
|
-
affected_rows: Scalars['Int'];
|
|
1836
|
-
/** data from the rows affected by the mutation */
|
|
1837
|
-
returning: Array<ExternalMetrics>;
|
|
1838
|
-
};
|
|
1839
|
-
/** input type for inserting object relation for remote table "externalMetrics" */
|
|
1840
|
-
export type ExternalMetrics_Obj_Rel_Insert_Input = {
|
|
1841
|
-
data: ExternalMetrics_Insert_Input;
|
|
1842
|
-
/** upsert condition */
|
|
1843
|
-
on_conflict?: InputMaybe<ExternalMetrics_On_Conflict>;
|
|
1844
|
-
};
|
|
1845
|
-
/** on_conflict condition type for table "externalMetrics" */
|
|
1846
|
-
export type ExternalMetrics_On_Conflict = {
|
|
1847
|
-
constraint: ExternalMetrics_Constraint;
|
|
1848
|
-
update_columns?: Array<ExternalMetrics_Update_Column>;
|
|
1849
|
-
where?: InputMaybe<ExternalMetrics_Bool_Exp>;
|
|
1850
|
-
};
|
|
1851
|
-
/** Ordering options when selecting data from "externalMetrics". */
|
|
1852
|
-
export type ExternalMetrics_Order_By = {
|
|
1853
|
-
chartOptions?: InputMaybe<Order_By>;
|
|
1854
|
-
clickActions?: InputMaybe<Order_By>;
|
|
1855
|
-
clientDeletedMetrics_aggregate?: InputMaybe<ClientDeletedMetrics_Aggregate_Order_By>;
|
|
1856
|
-
clientId?: InputMaybe<Order_By>;
|
|
1857
|
-
companyId?: InputMaybe<Order_By>;
|
|
1858
|
-
companyIntegration?: InputMaybe<CompanyIntegrations_Order_By>;
|
|
1859
|
-
companyIntegrationId?: InputMaybe<Order_By>;
|
|
1860
|
-
createdAt?: InputMaybe<Order_By>;
|
|
1861
|
-
createdBy?: InputMaybe<Order_By>;
|
|
1862
|
-
datasetMetricSettings?: InputMaybe<Order_By>;
|
|
1863
|
-
description?: InputMaybe<Order_By>;
|
|
1864
|
-
drillDownSettings?: InputMaybe<Order_By>;
|
|
1865
|
-
externalDashboardMetrics_aggregate?: InputMaybe<ExternalDashboardMetrics_Aggregate_Order_By>;
|
|
1866
|
-
externalMetricRawCsvUrl?: InputMaybe<ExternalMetricRawCsvUrls_Order_By>;
|
|
1867
|
-
externalMetricsRlsFilters_aggregate?: InputMaybe<ExternalMetricsRlsFilters_Aggregate_Order_By>;
|
|
1868
|
-
groupBy?: InputMaybe<Order_By>;
|
|
1869
|
-
id?: InputMaybe<Order_By>;
|
|
1870
|
-
inputFields?: InputMaybe<Order_By>;
|
|
1871
|
-
integrationName?: InputMaybe<Order_By>;
|
|
1872
|
-
isArchived?: InputMaybe<Order_By>;
|
|
1873
|
-
isCreatedByClient?: InputMaybe<Order_By>;
|
|
1874
|
-
isEnableGroupBy?: InputMaybe<Order_By>;
|
|
1875
|
-
isLive?: InputMaybe<Order_By>;
|
|
1876
|
-
isMarkedDeleted?: InputMaybe<Order_By>;
|
|
1877
|
-
metricId?: InputMaybe<Order_By>;
|
|
1878
|
-
metricQuery?: InputMaybe<Order_By>;
|
|
1879
|
-
name?: InputMaybe<Order_By>;
|
|
1880
|
-
outputColumns?: InputMaybe<Order_By>;
|
|
1881
|
-
query?: InputMaybe<Order_By>;
|
|
1882
|
-
resizeAttributes?: InputMaybe<Order_By>;
|
|
1883
|
-
rlsConditions?: InputMaybe<Order_By>;
|
|
1884
|
-
scheduleEmailReportCharts_aggregate?: InputMaybe<ScheduleEmailReportCharts_Aggregate_Order_By>;
|
|
1885
|
-
selectedGroupBy?: InputMaybe<Order_By>;
|
|
1886
|
-
timeGrain?: InputMaybe<Order_By>;
|
|
1887
|
-
updatedAt?: InputMaybe<Order_By>;
|
|
1888
|
-
};
|
|
1889
|
-
/** primary key columns input for table: externalMetrics */
|
|
1890
|
-
export type ExternalMetrics_Pk_Columns_Input = {
|
|
1891
|
-
id: Scalars['uuid'];
|
|
1892
|
-
};
|
|
1893
|
-
/** prepend existing jsonb value of filtered columns with new jsonb value */
|
|
1894
|
-
export type ExternalMetrics_Prepend_Input = {
|
|
1895
|
-
chartOptions?: InputMaybe<Scalars['jsonb']>;
|
|
1896
|
-
resizeAttributes?: InputMaybe<Scalars['jsonb']>;
|
|
1897
|
-
};
|
|
1898
|
-
/** select columns of table "externalMetrics" */
|
|
1899
|
-
export declare enum ExternalMetrics_Select_Column {
|
|
1900
|
-
/** column name */
|
|
1901
|
-
ChartOptions = "chartOptions",
|
|
1902
|
-
/** column name */
|
|
1903
|
-
ClickActions = "clickActions",
|
|
1904
|
-
/** column name */
|
|
1905
|
-
ClientId = "clientId",
|
|
1906
|
-
/** column name */
|
|
1907
|
-
CompanyId = "companyId",
|
|
1908
|
-
/** column name */
|
|
1909
|
-
CompanyIntegrationId = "companyIntegrationId",
|
|
1910
|
-
/** column name */
|
|
1911
|
-
CreatedAt = "createdAt",
|
|
1912
|
-
/** column name */
|
|
1913
|
-
CreatedBy = "createdBy",
|
|
1914
|
-
/** column name */
|
|
1915
|
-
DatasetMetricSettings = "datasetMetricSettings",
|
|
1916
|
-
/** column name */
|
|
1917
|
-
Description = "description",
|
|
1918
|
-
/** column name */
|
|
1919
|
-
DrillDownSettings = "drillDownSettings",
|
|
1920
|
-
/** column name */
|
|
1921
|
-
GroupBy = "groupBy",
|
|
1922
|
-
/** column name */
|
|
1923
|
-
Id = "id",
|
|
1924
|
-
/** column name */
|
|
1925
|
-
InputFields = "inputFields",
|
|
1926
|
-
/** column name */
|
|
1927
|
-
IntegrationName = "integrationName",
|
|
1928
|
-
/** column name */
|
|
1929
|
-
IsArchived = "isArchived",
|
|
1930
|
-
/** column name */
|
|
1931
|
-
IsCreatedByClient = "isCreatedByClient",
|
|
1932
|
-
/** column name */
|
|
1933
|
-
IsEnableGroupBy = "isEnableGroupBy",
|
|
1934
|
-
/** column name */
|
|
1935
|
-
IsLive = "isLive",
|
|
1936
|
-
/** column name */
|
|
1937
|
-
IsMarkedDeleted = "isMarkedDeleted",
|
|
1938
|
-
/** column name */
|
|
1939
|
-
MetricId = "metricId",
|
|
1940
|
-
/** column name */
|
|
1941
|
-
MetricQuery = "metricQuery",
|
|
1942
|
-
/** column name */
|
|
1943
|
-
Name = "name",
|
|
1944
|
-
/** column name */
|
|
1945
|
-
OutputColumns = "outputColumns",
|
|
1946
|
-
/** column name */
|
|
1947
|
-
Query = "query",
|
|
1948
|
-
/** column name */
|
|
1949
|
-
ResizeAttributes = "resizeAttributes",
|
|
1950
|
-
/** column name */
|
|
1951
|
-
RlsConditions = "rlsConditions",
|
|
1952
|
-
/** column name */
|
|
1953
|
-
SelectedGroupBy = "selectedGroupBy",
|
|
1954
|
-
/** column name */
|
|
1955
|
-
TimeGrain = "timeGrain",
|
|
1956
|
-
/** column name */
|
|
1957
|
-
UpdatedAt = "updatedAt"
|
|
1958
|
-
}
|
|
1959
|
-
/** input type for updating data in table "externalMetrics" */
|
|
1960
|
-
export type ExternalMetrics_Set_Input = {
|
|
1961
|
-
chartOptions?: InputMaybe<Scalars['jsonb']>;
|
|
1962
|
-
description?: InputMaybe<Scalars['String']>;
|
|
1963
|
-
metricId?: InputMaybe<Scalars['String']>;
|
|
1964
|
-
name?: InputMaybe<Scalars['String']>;
|
|
1965
|
-
resizeAttributes?: InputMaybe<Scalars['jsonb']>;
|
|
1966
|
-
updatedAt?: InputMaybe<Scalars['timestamptz']>;
|
|
1967
|
-
};
|
|
1968
|
-
/** update columns of table "externalMetrics" */
|
|
1969
|
-
export declare enum ExternalMetrics_Update_Column {
|
|
1970
|
-
/** column name */
|
|
1971
|
-
ChartOptions = "chartOptions",
|
|
1972
|
-
/** column name */
|
|
1973
|
-
Description = "description",
|
|
1974
|
-
/** column name */
|
|
1975
|
-
MetricId = "metricId",
|
|
1976
|
-
/** column name */
|
|
1977
|
-
Name = "name",
|
|
1978
|
-
/** column name */
|
|
1979
|
-
ResizeAttributes = "resizeAttributes",
|
|
1980
|
-
/** column name */
|
|
1981
|
-
UpdatedAt = "updatedAt"
|
|
1982
|
-
}
|
|
1983
|
-
export type GenerateDrillQueryInput = {
|
|
1984
|
-
baseQuery: Scalars['String'];
|
|
1985
|
-
database: Scalars['String'];
|
|
1986
|
-
filters: Scalars['json'];
|
|
1987
|
-
};
|
|
1988
|
-
export type GenerateDrillQueryOutput = {
|
|
1989
|
-
__typename?: 'generateDrillQueryOutput';
|
|
1990
|
-
error?: Maybe<Scalars['String']>;
|
|
1991
|
-
modifiedQuery?: Maybe<Scalars['String']>;
|
|
1992
|
-
};
|
|
1993
|
-
/** columns and relationships of "guestTokens" */
|
|
1994
|
-
export type GuestTokens = {
|
|
1995
|
-
__typename?: 'guestTokens';
|
|
1996
|
-
clientId: Scalars['String'];
|
|
1997
|
-
companyId: Scalars['uuid'];
|
|
1998
|
-
id: Scalars['uuid'];
|
|
1999
|
-
params: Scalars['jsonb'];
|
|
2000
|
-
/** An object relationship */
|
|
2001
|
-
scheduleEmailReport?: Maybe<ScheduleEmailReports>;
|
|
2002
|
-
};
|
|
2003
|
-
/** columns and relationships of "guestTokens" */
|
|
2004
|
-
export type GuestTokensParamsArgs = {
|
|
2005
|
-
path?: InputMaybe<Scalars['String']>;
|
|
2006
|
-
};
|
|
2007
|
-
/** Boolean expression to filter rows from the table "guestTokens". All fields are combined with a logical 'AND'. */
|
|
2008
|
-
export type GuestTokens_Bool_Exp = {
|
|
2009
|
-
_and?: InputMaybe<Array<GuestTokens_Bool_Exp>>;
|
|
2010
|
-
_not?: InputMaybe<GuestTokens_Bool_Exp>;
|
|
2011
|
-
_or?: InputMaybe<Array<GuestTokens_Bool_Exp>>;
|
|
2012
|
-
clientId?: InputMaybe<String_Comparison_Exp>;
|
|
2013
|
-
companyId?: InputMaybe<Uuid_Comparison_Exp>;
|
|
2014
|
-
id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
2015
|
-
params?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
2016
|
-
scheduleEmailReport?: InputMaybe<ScheduleEmailReports_Bool_Exp>;
|
|
2017
|
-
};
|
|
2018
|
-
/** Ordering options when selecting data from "guestTokens". */
|
|
2019
|
-
export type GuestTokens_Order_By = {
|
|
2020
|
-
clientId?: InputMaybe<Order_By>;
|
|
2021
|
-
companyId?: InputMaybe<Order_By>;
|
|
2022
|
-
id?: InputMaybe<Order_By>;
|
|
2023
|
-
params?: InputMaybe<Order_By>;
|
|
2024
|
-
scheduleEmailReport?: InputMaybe<ScheduleEmailReports_Order_By>;
|
|
2025
|
-
};
|
|
2026
|
-
/** select columns of table "guestTokens" */
|
|
2027
|
-
export declare enum GuestTokens_Select_Column {
|
|
2028
|
-
/** column name */
|
|
2029
|
-
ClientId = "clientId",
|
|
2030
|
-
/** column name */
|
|
2031
|
-
CompanyId = "companyId",
|
|
2032
|
-
/** column name */
|
|
2033
|
-
Id = "id",
|
|
2034
|
-
/** column name */
|
|
2035
|
-
Params = "params"
|
|
2036
|
-
}
|
|
2037
|
-
/** Boolean expression to compare columns of type "json". All fields are combined with logical 'AND'. */
|
|
2038
|
-
export type Json_Comparison_Exp = {
|
|
2039
|
-
_eq?: InputMaybe<Scalars['json']>;
|
|
2040
|
-
_gt?: InputMaybe<Scalars['json']>;
|
|
2041
|
-
_gte?: InputMaybe<Scalars['json']>;
|
|
2042
|
-
_in?: InputMaybe<Array<Scalars['json']>>;
|
|
2043
|
-
_is_null?: InputMaybe<Scalars['Boolean']>;
|
|
2044
|
-
_lt?: InputMaybe<Scalars['json']>;
|
|
2045
|
-
_lte?: InputMaybe<Scalars['json']>;
|
|
2046
|
-
_neq?: InputMaybe<Scalars['json']>;
|
|
2047
|
-
_nin?: InputMaybe<Array<Scalars['json']>>;
|
|
2048
|
-
};
|
|
2049
|
-
export type Jsonb_Cast_Exp = {
|
|
2050
|
-
String?: InputMaybe<String_Comparison_Exp>;
|
|
2051
|
-
};
|
|
2052
|
-
/** Boolean expression to compare columns of type "jsonb". All fields are combined with logical 'AND'. */
|
|
2053
|
-
export type Jsonb_Comparison_Exp = {
|
|
2054
|
-
_cast?: InputMaybe<Jsonb_Cast_Exp>;
|
|
2055
|
-
/** is the column contained in the given json value */
|
|
2056
|
-
_contained_in?: InputMaybe<Scalars['jsonb']>;
|
|
2057
|
-
/** does the column contain the given json value at the top level */
|
|
2058
|
-
_contains?: InputMaybe<Scalars['jsonb']>;
|
|
2059
|
-
_eq?: InputMaybe<Scalars['jsonb']>;
|
|
2060
|
-
_gt?: InputMaybe<Scalars['jsonb']>;
|
|
2061
|
-
_gte?: InputMaybe<Scalars['jsonb']>;
|
|
2062
|
-
/** does the string exist as a top-level key in the column */
|
|
2063
|
-
_has_key?: InputMaybe<Scalars['String']>;
|
|
2064
|
-
/** do all of these strings exist as top-level keys in the column */
|
|
2065
|
-
_has_keys_all?: InputMaybe<Array<Scalars['String']>>;
|
|
2066
|
-
/** do any of these strings exist as top-level keys in the column */
|
|
2067
|
-
_has_keys_any?: InputMaybe<Array<Scalars['String']>>;
|
|
2068
|
-
_in?: InputMaybe<Array<Scalars['jsonb']>>;
|
|
2069
|
-
_is_null?: InputMaybe<Scalars['Boolean']>;
|
|
2070
|
-
_lt?: InputMaybe<Scalars['jsonb']>;
|
|
2071
|
-
_lte?: InputMaybe<Scalars['jsonb']>;
|
|
2072
|
-
_neq?: InputMaybe<Scalars['jsonb']>;
|
|
2073
|
-
_nin?: InputMaybe<Array<Scalars['jsonb']>>;
|
|
2074
|
-
};
|
|
2075
|
-
/** mutation root */
|
|
2076
|
-
export type Mutation_Root = {
|
|
2077
|
-
__typename?: 'mutation_root';
|
|
2078
|
-
companySubsetTableData?: Maybe<CompanySubsetTableDataOutput>;
|
|
2079
|
-
/** delete data from the table: "scheduleEmailReportCharts" */
|
|
2080
|
-
delete_scheduleEmailReportCharts?: Maybe<ScheduleEmailReportCharts_Mutation_Response>;
|
|
2081
|
-
/** delete single row from the table: "scheduleEmailReportCharts" */
|
|
2082
|
-
delete_scheduleEmailReportCharts_by_pk?: Maybe<ScheduleEmailReportCharts>;
|
|
2083
|
-
/** delete data from the table: "scheduleEmailReports" */
|
|
2084
|
-
delete_scheduleEmailReports?: Maybe<ScheduleEmailReports_Mutation_Response>;
|
|
2085
|
-
/** delete single row from the table: "scheduleEmailReports" */
|
|
2086
|
-
delete_scheduleEmailReports_by_pk?: Maybe<ScheduleEmailReports>;
|
|
2087
|
-
embeddedMetricQuery?: Maybe<ExternalMetricQueryOutput>;
|
|
2088
|
-
fetchColumnData?: Maybe<FetchColumnDataOutput>;
|
|
2089
|
-
generateDatasetMetrics?: Maybe<GenerateDatasetMetricsOutput>;
|
|
2090
|
-
generateDrillQuery?: Maybe<GenerateDrillQueryOutput>;
|
|
2091
|
-
generateEmbeddedMetic?: Maybe<GenerateEmbeddedMeticOutput>;
|
|
2092
|
-
generateExternalMetricQuery?: Maybe<GenerateExternalMetricQueryOutput>;
|
|
2093
|
-
getUnderlyingData?: Maybe<GetUnderlyingDataOutput>;
|
|
2094
|
-
getUnderlyingSqlQuery?: Maybe<GetUnderlyingSqlQueryOutput>;
|
|
2095
|
-
groupbyColumnList?: Maybe<GroupbyColumnListOutput>;
|
|
2096
|
-
/** insert data into the table: "clientDashboardLayout" */
|
|
2097
|
-
insert_clientDashboardLayout?: Maybe<ClientDashboardLayout_Mutation_Response>;
|
|
2098
|
-
/** insert a single row into the table: "clientDashboardLayout" */
|
|
2099
|
-
insert_clientDashboardLayout_one?: Maybe<ClientDashboardLayout>;
|
|
2100
|
-
/** insert data into the table: "clientDashboardMetrics" */
|
|
2101
|
-
insert_clientDashboardMetrics?: Maybe<ClientDashboardMetrics_Mutation_Response>;
|
|
2102
|
-
/** insert a single row into the table: "clientDashboardMetrics" */
|
|
2103
|
-
insert_clientDashboardMetrics_one?: Maybe<ClientDashboardMetrics>;
|
|
2104
|
-
/** insert data into the table: "clientDeletedMetrics" */
|
|
2105
|
-
insert_clientDeletedMetrics?: Maybe<ClientDeletedMetrics_Mutation_Response>;
|
|
2106
|
-
/** insert a single row into the table: "clientDeletedMetrics" */
|
|
2107
|
-
insert_clientDeletedMetrics_one?: Maybe<ClientDeletedMetrics>;
|
|
2108
|
-
/** insert data into the table: "customSqlColumns" */
|
|
2109
|
-
insert_customSqlColumns?: Maybe<CustomSqlColumns_Mutation_Response>;
|
|
2110
|
-
/** insert a single row into the table: "customSqlColumns" */
|
|
2111
|
-
insert_customSqlColumns_one?: Maybe<CustomSqlColumns>;
|
|
2112
|
-
/** insert data into the table: "externalDashboardMetrics" */
|
|
2113
|
-
insert_externalDashboardMetrics?: Maybe<ExternalDashboardMetrics_Mutation_Response>;
|
|
2114
|
-
/** insert a single row into the table: "externalDashboardMetrics" */
|
|
2115
|
-
insert_externalDashboardMetrics_one?: Maybe<ExternalDashboardMetrics>;
|
|
2116
|
-
/** insert data into the table: "externalMetricRawCsvUrls" */
|
|
2117
|
-
insert_externalMetricRawCsvUrls?: Maybe<ExternalMetricRawCsvUrls_Mutation_Response>;
|
|
2118
|
-
/** insert a single row into the table: "externalMetricRawCsvUrls" */
|
|
2119
|
-
insert_externalMetricRawCsvUrls_one?: Maybe<ExternalMetricRawCsvUrls>;
|
|
2120
|
-
/** insert data into the table: "externalMetrics" */
|
|
2121
|
-
insert_externalMetrics?: Maybe<ExternalMetrics_Mutation_Response>;
|
|
2122
|
-
/** insert data into the table: "externalMetricsRlsFilters" */
|
|
2123
|
-
insert_externalMetricsRlsFilters?: Maybe<ExternalMetricsRlsFilters_Mutation_Response>;
|
|
2124
|
-
/** insert a single row into the table: "externalMetricsRlsFilters" */
|
|
2125
|
-
insert_externalMetricsRlsFilters_one?: Maybe<ExternalMetricsRlsFilters>;
|
|
2126
|
-
/** insert a single row into the table: "externalMetrics" */
|
|
2127
|
-
insert_externalMetrics_one?: Maybe<ExternalMetrics>;
|
|
2128
|
-
/** insert data into the table: "scheduleEmailReportCharts" */
|
|
2129
|
-
insert_scheduleEmailReportCharts?: Maybe<ScheduleEmailReportCharts_Mutation_Response>;
|
|
2130
|
-
/** insert a single row into the table: "scheduleEmailReportCharts" */
|
|
2131
|
-
insert_scheduleEmailReportCharts_one?: Maybe<ScheduleEmailReportCharts>;
|
|
2132
|
-
/** insert data into the table: "scheduleEmailReports" */
|
|
2133
|
-
insert_scheduleEmailReports?: Maybe<ScheduleEmailReports_Mutation_Response>;
|
|
2134
|
-
/** insert a single row into the table: "scheduleEmailReports" */
|
|
2135
|
-
insert_scheduleEmailReports_one?: Maybe<ScheduleEmailReports>;
|
|
2136
|
-
invokeSaveRawCsvDetails?: Maybe<InvokeSaveRawCsvDetailsOutput>;
|
|
2137
|
-
invokeSendCsvUrl?: Maybe<InvokeSaveRawCsvDetailsOutput>;
|
|
2138
|
-
previewTable?: Maybe<PreviewTableOutput>;
|
|
2139
|
-
sendRawCsv?: Maybe<SendRawCsvOutput>;
|
|
2140
|
-
shareCsvUrl: Scalars['uuid'];
|
|
2141
|
-
/** update data of the table: "clientDashboardLayout" */
|
|
2142
|
-
update_clientDashboardLayout?: Maybe<ClientDashboardLayout_Mutation_Response>;
|
|
2143
|
-
/** update single row of the table: "clientDashboardLayout" */
|
|
2144
|
-
update_clientDashboardLayout_by_pk?: Maybe<ClientDashboardLayout>;
|
|
2145
|
-
/** update data of the table: "customSqlColumns" */
|
|
2146
|
-
update_customSqlColumns?: Maybe<CustomSqlColumns_Mutation_Response>;
|
|
2147
|
-
/** update single row of the table: "customSqlColumns" */
|
|
2148
|
-
update_customSqlColumns_by_pk?: Maybe<CustomSqlColumns>;
|
|
2149
|
-
/** update data of the table: "externalMetricRawCsvUrls" */
|
|
2150
|
-
update_externalMetricRawCsvUrls?: Maybe<ExternalMetricRawCsvUrls_Mutation_Response>;
|
|
2151
|
-
/** update single row of the table: "externalMetricRawCsvUrls" */
|
|
2152
|
-
update_externalMetricRawCsvUrls_by_pk?: Maybe<ExternalMetricRawCsvUrls>;
|
|
2153
|
-
/** update data of the table: "externalMetrics" */
|
|
2154
|
-
update_externalMetrics?: Maybe<ExternalMetrics_Mutation_Response>;
|
|
2155
|
-
/** update single row of the table: "externalMetrics" */
|
|
2156
|
-
update_externalMetrics_by_pk?: Maybe<ExternalMetrics>;
|
|
2157
|
-
/** update data of the table: "scheduleEmailReportCharts" */
|
|
2158
|
-
update_scheduleEmailReportCharts?: Maybe<ScheduleEmailReportCharts_Mutation_Response>;
|
|
2159
|
-
/** update single row of the table: "scheduleEmailReportCharts" */
|
|
2160
|
-
update_scheduleEmailReportCharts_by_pk?: Maybe<ScheduleEmailReportCharts>;
|
|
2161
|
-
/** update data of the table: "scheduleEmailReports" */
|
|
2162
|
-
update_scheduleEmailReports?: Maybe<ScheduleEmailReports_Mutation_Response>;
|
|
2163
|
-
/** update single row of the table: "scheduleEmailReports" */
|
|
2164
|
-
update_scheduleEmailReports_by_pk?: Maybe<ScheduleEmailReports>;
|
|
2165
|
-
};
|
|
2166
|
-
/** mutation root */
|
|
2167
|
-
export type Mutation_RootCompanySubsetTableDataArgs = {
|
|
2168
|
-
input: CompanySubsetTableDataInput;
|
|
2169
|
-
};
|
|
2170
|
-
/** mutation root */
|
|
2171
|
-
export type Mutation_RootDelete_ScheduleEmailReportChartsArgs = {
|
|
2172
|
-
where: ScheduleEmailReportCharts_Bool_Exp;
|
|
2173
|
-
};
|
|
2174
|
-
/** mutation root */
|
|
2175
|
-
export type Mutation_RootDelete_ScheduleEmailReportCharts_By_PkArgs = {
|
|
2176
|
-
id: Scalars['uuid'];
|
|
2177
|
-
};
|
|
2178
|
-
/** mutation root */
|
|
2179
|
-
export type Mutation_RootDelete_ScheduleEmailReportsArgs = {
|
|
2180
|
-
where: ScheduleEmailReports_Bool_Exp;
|
|
2181
|
-
};
|
|
2182
|
-
/** mutation root */
|
|
2183
|
-
export type Mutation_RootDelete_ScheduleEmailReports_By_PkArgs = {
|
|
2184
|
-
id: Scalars['uuid'];
|
|
2185
|
-
};
|
|
2186
|
-
/** mutation root */
|
|
2187
|
-
export type Mutation_RootEmbeddedMetricQueryArgs = {
|
|
2188
|
-
input: ExternalMetricQueryInput;
|
|
2189
|
-
};
|
|
2190
|
-
/** mutation root */
|
|
2191
|
-
export type Mutation_RootFetchColumnDataArgs = {
|
|
2192
|
-
input: FetchColumnDataInput;
|
|
2193
|
-
};
|
|
2194
|
-
/** mutation root */
|
|
2195
|
-
export type Mutation_RootGenerateDatasetMetricsArgs = {
|
|
2196
|
-
input: GenerateDatasetMetricsInput;
|
|
2197
|
-
};
|
|
2198
|
-
/** mutation root */
|
|
2199
|
-
export type Mutation_RootGenerateDrillQueryArgs = {
|
|
2200
|
-
input: GenerateDrillQueryInput;
|
|
2201
|
-
};
|
|
2202
|
-
/** mutation root */
|
|
2203
|
-
export type Mutation_RootGenerateEmbeddedMeticArgs = {
|
|
2204
|
-
input: GenerateEmbeddedMeticInput;
|
|
2205
|
-
};
|
|
2206
|
-
/** mutation root */
|
|
2207
|
-
export type Mutation_RootGenerateExternalMetricQueryArgs = {
|
|
2208
|
-
input: GenerateExternalMetricQueryInput;
|
|
2209
|
-
};
|
|
2210
|
-
/** mutation root */
|
|
2211
|
-
export type Mutation_RootGetUnderlyingDataArgs = {
|
|
2212
|
-
input: GetUnderlyingDataInput;
|
|
2213
|
-
};
|
|
2214
|
-
/** mutation root */
|
|
2215
|
-
export type Mutation_RootGetUnderlyingSqlQueryArgs = {
|
|
2216
|
-
input: GetUnderlyingSqlQueryInput;
|
|
2217
|
-
};
|
|
2218
|
-
/** mutation root */
|
|
2219
|
-
export type Mutation_RootGroupbyColumnListArgs = {
|
|
2220
|
-
input: GroupbyColumnListInput;
|
|
2221
|
-
};
|
|
2222
|
-
/** mutation root */
|
|
2223
|
-
export type Mutation_RootInsert_ClientDashboardLayoutArgs = {
|
|
2224
|
-
objects: Array<ClientDashboardLayout_Insert_Input>;
|
|
2225
|
-
on_conflict?: InputMaybe<ClientDashboardLayout_On_Conflict>;
|
|
2226
|
-
};
|
|
2227
|
-
/** mutation root */
|
|
2228
|
-
export type Mutation_RootInsert_ClientDashboardLayout_OneArgs = {
|
|
2229
|
-
object: ClientDashboardLayout_Insert_Input;
|
|
2230
|
-
on_conflict?: InputMaybe<ClientDashboardLayout_On_Conflict>;
|
|
2231
|
-
};
|
|
2232
|
-
/** mutation root */
|
|
2233
|
-
export type Mutation_RootInsert_ClientDashboardMetricsArgs = {
|
|
2234
|
-
objects: Array<ClientDashboardMetrics_Insert_Input>;
|
|
2235
|
-
on_conflict?: InputMaybe<ClientDashboardMetrics_On_Conflict>;
|
|
2236
|
-
};
|
|
2237
|
-
/** mutation root */
|
|
2238
|
-
export type Mutation_RootInsert_ClientDashboardMetrics_OneArgs = {
|
|
2239
|
-
object: ClientDashboardMetrics_Insert_Input;
|
|
2240
|
-
on_conflict?: InputMaybe<ClientDashboardMetrics_On_Conflict>;
|
|
2241
|
-
};
|
|
2242
|
-
/** mutation root */
|
|
2243
|
-
export type Mutation_RootInsert_ClientDeletedMetricsArgs = {
|
|
2244
|
-
objects: Array<ClientDeletedMetrics_Insert_Input>;
|
|
2245
|
-
on_conflict?: InputMaybe<ClientDeletedMetrics_On_Conflict>;
|
|
2246
|
-
};
|
|
2247
|
-
/** mutation root */
|
|
2248
|
-
export type Mutation_RootInsert_ClientDeletedMetrics_OneArgs = {
|
|
2249
|
-
object: ClientDeletedMetrics_Insert_Input;
|
|
2250
|
-
on_conflict?: InputMaybe<ClientDeletedMetrics_On_Conflict>;
|
|
2251
|
-
};
|
|
2252
|
-
/** mutation root */
|
|
2253
|
-
export type Mutation_RootInsert_CustomSqlColumnsArgs = {
|
|
2254
|
-
objects: Array<CustomSqlColumns_Insert_Input>;
|
|
2255
|
-
on_conflict?: InputMaybe<CustomSqlColumns_On_Conflict>;
|
|
2256
|
-
};
|
|
2257
|
-
/** mutation root */
|
|
2258
|
-
export type Mutation_RootInsert_CustomSqlColumns_OneArgs = {
|
|
2259
|
-
object: CustomSqlColumns_Insert_Input;
|
|
2260
|
-
on_conflict?: InputMaybe<CustomSqlColumns_On_Conflict>;
|
|
2261
|
-
};
|
|
2262
|
-
/** mutation root */
|
|
2263
|
-
export type Mutation_RootInsert_ExternalDashboardMetricsArgs = {
|
|
2264
|
-
objects: Array<ExternalDashboardMetrics_Insert_Input>;
|
|
2265
|
-
on_conflict?: InputMaybe<ExternalDashboardMetrics_On_Conflict>;
|
|
2266
|
-
};
|
|
2267
|
-
/** mutation root */
|
|
2268
|
-
export type Mutation_RootInsert_ExternalDashboardMetrics_OneArgs = {
|
|
2269
|
-
object: ExternalDashboardMetrics_Insert_Input;
|
|
2270
|
-
on_conflict?: InputMaybe<ExternalDashboardMetrics_On_Conflict>;
|
|
2271
|
-
};
|
|
2272
|
-
/** mutation root */
|
|
2273
|
-
export type Mutation_RootInsert_ExternalMetricRawCsvUrlsArgs = {
|
|
2274
|
-
objects: Array<ExternalMetricRawCsvUrls_Insert_Input>;
|
|
2275
|
-
on_conflict?: InputMaybe<ExternalMetricRawCsvUrls_On_Conflict>;
|
|
2276
|
-
};
|
|
2277
|
-
/** mutation root */
|
|
2278
|
-
export type Mutation_RootInsert_ExternalMetricRawCsvUrls_OneArgs = {
|
|
2279
|
-
object: ExternalMetricRawCsvUrls_Insert_Input;
|
|
2280
|
-
on_conflict?: InputMaybe<ExternalMetricRawCsvUrls_On_Conflict>;
|
|
2281
|
-
};
|
|
2282
|
-
/** mutation root */
|
|
2283
|
-
export type Mutation_RootInsert_ExternalMetricsArgs = {
|
|
2284
|
-
objects: Array<ExternalMetrics_Insert_Input>;
|
|
2285
|
-
on_conflict?: InputMaybe<ExternalMetrics_On_Conflict>;
|
|
2286
|
-
};
|
|
2287
|
-
/** mutation root */
|
|
2288
|
-
export type Mutation_RootInsert_ExternalMetricsRlsFiltersArgs = {
|
|
2289
|
-
objects: Array<ExternalMetricsRlsFilters_Insert_Input>;
|
|
2290
|
-
on_conflict?: InputMaybe<ExternalMetricsRlsFilters_On_Conflict>;
|
|
2291
|
-
};
|
|
2292
|
-
/** mutation root */
|
|
2293
|
-
export type Mutation_RootInsert_ExternalMetricsRlsFilters_OneArgs = {
|
|
2294
|
-
object: ExternalMetricsRlsFilters_Insert_Input;
|
|
2295
|
-
on_conflict?: InputMaybe<ExternalMetricsRlsFilters_On_Conflict>;
|
|
2296
|
-
};
|
|
2297
|
-
/** mutation root */
|
|
2298
|
-
export type Mutation_RootInsert_ExternalMetrics_OneArgs = {
|
|
2299
|
-
object: ExternalMetrics_Insert_Input;
|
|
2300
|
-
on_conflict?: InputMaybe<ExternalMetrics_On_Conflict>;
|
|
2301
|
-
};
|
|
2302
|
-
/** mutation root */
|
|
2303
|
-
export type Mutation_RootInsert_ScheduleEmailReportChartsArgs = {
|
|
2304
|
-
objects: Array<ScheduleEmailReportCharts_Insert_Input>;
|
|
2305
|
-
on_conflict?: InputMaybe<ScheduleEmailReportCharts_On_Conflict>;
|
|
2306
|
-
};
|
|
2307
|
-
/** mutation root */
|
|
2308
|
-
export type Mutation_RootInsert_ScheduleEmailReportCharts_OneArgs = {
|
|
2309
|
-
object: ScheduleEmailReportCharts_Insert_Input;
|
|
2310
|
-
on_conflict?: InputMaybe<ScheduleEmailReportCharts_On_Conflict>;
|
|
2311
|
-
};
|
|
2312
|
-
/** mutation root */
|
|
2313
|
-
export type Mutation_RootInsert_ScheduleEmailReportsArgs = {
|
|
2314
|
-
objects: Array<ScheduleEmailReports_Insert_Input>;
|
|
2315
|
-
on_conflict?: InputMaybe<ScheduleEmailReports_On_Conflict>;
|
|
2316
|
-
};
|
|
2317
|
-
/** mutation root */
|
|
2318
|
-
export type Mutation_RootInsert_ScheduleEmailReports_OneArgs = {
|
|
2319
|
-
object: ScheduleEmailReports_Insert_Input;
|
|
2320
|
-
on_conflict?: InputMaybe<ScheduleEmailReports_On_Conflict>;
|
|
2321
|
-
};
|
|
2322
|
-
/** mutation root */
|
|
2323
|
-
export type Mutation_RootInvokeSaveRawCsvDetailsArgs = {
|
|
2324
|
-
input: InvokeSaveRawCsvDetailsInput;
|
|
2325
|
-
};
|
|
2326
|
-
/** mutation root */
|
|
2327
|
-
export type Mutation_RootInvokeSendCsvUrlArgs = {
|
|
2328
|
-
input: InvokeSendCsvUrlInput;
|
|
2329
|
-
};
|
|
2330
|
-
/** mutation root */
|
|
2331
|
-
export type Mutation_RootPreviewTableArgs = {
|
|
2332
|
-
input: PreviewTableInput;
|
|
2333
|
-
};
|
|
2334
|
-
/** mutation root */
|
|
2335
|
-
export type Mutation_RootSendRawCsvArgs = {
|
|
2336
|
-
input: SendRawCsvInput;
|
|
2337
|
-
};
|
|
2338
|
-
/** mutation root */
|
|
2339
|
-
export type Mutation_RootShareCsvUrlArgs = {
|
|
2340
|
-
input: InvokeSendCsvUrlInput;
|
|
2341
|
-
};
|
|
2342
|
-
/** mutation root */
|
|
2343
|
-
export type Mutation_RootUpdate_ClientDashboardLayoutArgs = {
|
|
2344
|
-
_append?: InputMaybe<ClientDashboardLayout_Append_Input>;
|
|
2345
|
-
_delete_at_path?: InputMaybe<ClientDashboardLayout_Delete_At_Path_Input>;
|
|
2346
|
-
_delete_elem?: InputMaybe<ClientDashboardLayout_Delete_Elem_Input>;
|
|
2347
|
-
_delete_key?: InputMaybe<ClientDashboardLayout_Delete_Key_Input>;
|
|
2348
|
-
_prepend?: InputMaybe<ClientDashboardLayout_Prepend_Input>;
|
|
2349
|
-
_set?: InputMaybe<ClientDashboardLayout_Set_Input>;
|
|
2350
|
-
where: ClientDashboardLayout_Bool_Exp;
|
|
2351
|
-
};
|
|
2352
|
-
/** mutation root */
|
|
2353
|
-
export type Mutation_RootUpdate_ClientDashboardLayout_By_PkArgs = {
|
|
2354
|
-
_append?: InputMaybe<ClientDashboardLayout_Append_Input>;
|
|
2355
|
-
_delete_at_path?: InputMaybe<ClientDashboardLayout_Delete_At_Path_Input>;
|
|
2356
|
-
_delete_elem?: InputMaybe<ClientDashboardLayout_Delete_Elem_Input>;
|
|
2357
|
-
_delete_key?: InputMaybe<ClientDashboardLayout_Delete_Key_Input>;
|
|
2358
|
-
_prepend?: InputMaybe<ClientDashboardLayout_Prepend_Input>;
|
|
2359
|
-
_set?: InputMaybe<ClientDashboardLayout_Set_Input>;
|
|
2360
|
-
pk_columns: ClientDashboardLayout_Pk_Columns_Input;
|
|
2361
|
-
};
|
|
2362
|
-
/** mutation root */
|
|
2363
|
-
export type Mutation_RootUpdate_CustomSqlColumnsArgs = {
|
|
2364
|
-
_append?: InputMaybe<CustomSqlColumns_Append_Input>;
|
|
2365
|
-
_delete_at_path?: InputMaybe<CustomSqlColumns_Delete_At_Path_Input>;
|
|
2366
|
-
_delete_elem?: InputMaybe<CustomSqlColumns_Delete_Elem_Input>;
|
|
2367
|
-
_delete_key?: InputMaybe<CustomSqlColumns_Delete_Key_Input>;
|
|
2368
|
-
_prepend?: InputMaybe<CustomSqlColumns_Prepend_Input>;
|
|
2369
|
-
_set?: InputMaybe<CustomSqlColumns_Set_Input>;
|
|
2370
|
-
where: CustomSqlColumns_Bool_Exp;
|
|
2371
|
-
};
|
|
2372
|
-
/** mutation root */
|
|
2373
|
-
export type Mutation_RootUpdate_CustomSqlColumns_By_PkArgs = {
|
|
2374
|
-
_append?: InputMaybe<CustomSqlColumns_Append_Input>;
|
|
2375
|
-
_delete_at_path?: InputMaybe<CustomSqlColumns_Delete_At_Path_Input>;
|
|
2376
|
-
_delete_elem?: InputMaybe<CustomSqlColumns_Delete_Elem_Input>;
|
|
2377
|
-
_delete_key?: InputMaybe<CustomSqlColumns_Delete_Key_Input>;
|
|
2378
|
-
_prepend?: InputMaybe<CustomSqlColumns_Prepend_Input>;
|
|
2379
|
-
_set?: InputMaybe<CustomSqlColumns_Set_Input>;
|
|
2380
|
-
pk_columns: CustomSqlColumns_Pk_Columns_Input;
|
|
2381
|
-
};
|
|
2382
|
-
/** mutation root */
|
|
2383
|
-
export type Mutation_RootUpdate_ExternalMetricRawCsvUrlsArgs = {
|
|
2384
|
-
_append?: InputMaybe<ExternalMetricRawCsvUrls_Append_Input>;
|
|
2385
|
-
_delete_at_path?: InputMaybe<ExternalMetricRawCsvUrls_Delete_At_Path_Input>;
|
|
2386
|
-
_delete_elem?: InputMaybe<ExternalMetricRawCsvUrls_Delete_Elem_Input>;
|
|
2387
|
-
_delete_key?: InputMaybe<ExternalMetricRawCsvUrls_Delete_Key_Input>;
|
|
2388
|
-
_inc?: InputMaybe<ExternalMetricRawCsvUrls_Inc_Input>;
|
|
2389
|
-
_prepend?: InputMaybe<ExternalMetricRawCsvUrls_Prepend_Input>;
|
|
2390
|
-
_set?: InputMaybe<ExternalMetricRawCsvUrls_Set_Input>;
|
|
2391
|
-
where: ExternalMetricRawCsvUrls_Bool_Exp;
|
|
2392
|
-
};
|
|
2393
|
-
/** mutation root */
|
|
2394
|
-
export type Mutation_RootUpdate_ExternalMetricRawCsvUrls_By_PkArgs = {
|
|
2395
|
-
_append?: InputMaybe<ExternalMetricRawCsvUrls_Append_Input>;
|
|
2396
|
-
_delete_at_path?: InputMaybe<ExternalMetricRawCsvUrls_Delete_At_Path_Input>;
|
|
2397
|
-
_delete_elem?: InputMaybe<ExternalMetricRawCsvUrls_Delete_Elem_Input>;
|
|
2398
|
-
_delete_key?: InputMaybe<ExternalMetricRawCsvUrls_Delete_Key_Input>;
|
|
2399
|
-
_inc?: InputMaybe<ExternalMetricRawCsvUrls_Inc_Input>;
|
|
2400
|
-
_prepend?: InputMaybe<ExternalMetricRawCsvUrls_Prepend_Input>;
|
|
2401
|
-
_set?: InputMaybe<ExternalMetricRawCsvUrls_Set_Input>;
|
|
2402
|
-
pk_columns: ExternalMetricRawCsvUrls_Pk_Columns_Input;
|
|
2403
|
-
};
|
|
2404
|
-
/** mutation root */
|
|
2405
|
-
export type Mutation_RootUpdate_ExternalMetricsArgs = {
|
|
2406
|
-
_append?: InputMaybe<ExternalMetrics_Append_Input>;
|
|
2407
|
-
_delete_at_path?: InputMaybe<ExternalMetrics_Delete_At_Path_Input>;
|
|
2408
|
-
_delete_elem?: InputMaybe<ExternalMetrics_Delete_Elem_Input>;
|
|
2409
|
-
_delete_key?: InputMaybe<ExternalMetrics_Delete_Key_Input>;
|
|
2410
|
-
_prepend?: InputMaybe<ExternalMetrics_Prepend_Input>;
|
|
2411
|
-
_set?: InputMaybe<ExternalMetrics_Set_Input>;
|
|
2412
|
-
where: ExternalMetrics_Bool_Exp;
|
|
2413
|
-
};
|
|
2414
|
-
/** mutation root */
|
|
2415
|
-
export type Mutation_RootUpdate_ExternalMetrics_By_PkArgs = {
|
|
2416
|
-
_append?: InputMaybe<ExternalMetrics_Append_Input>;
|
|
2417
|
-
_delete_at_path?: InputMaybe<ExternalMetrics_Delete_At_Path_Input>;
|
|
2418
|
-
_delete_elem?: InputMaybe<ExternalMetrics_Delete_Elem_Input>;
|
|
2419
|
-
_delete_key?: InputMaybe<ExternalMetrics_Delete_Key_Input>;
|
|
2420
|
-
_prepend?: InputMaybe<ExternalMetrics_Prepend_Input>;
|
|
2421
|
-
_set?: InputMaybe<ExternalMetrics_Set_Input>;
|
|
2422
|
-
pk_columns: ExternalMetrics_Pk_Columns_Input;
|
|
2423
|
-
};
|
|
2424
|
-
/** mutation root */
|
|
2425
|
-
export type Mutation_RootUpdate_ScheduleEmailReportChartsArgs = {
|
|
2426
|
-
_set?: InputMaybe<ScheduleEmailReportCharts_Set_Input>;
|
|
2427
|
-
where: ScheduleEmailReportCharts_Bool_Exp;
|
|
2428
|
-
};
|
|
2429
|
-
/** mutation root */
|
|
2430
|
-
export type Mutation_RootUpdate_ScheduleEmailReportCharts_By_PkArgs = {
|
|
2431
|
-
_set?: InputMaybe<ScheduleEmailReportCharts_Set_Input>;
|
|
2432
|
-
pk_columns: ScheduleEmailReportCharts_Pk_Columns_Input;
|
|
2433
|
-
};
|
|
2434
|
-
/** mutation root */
|
|
2435
|
-
export type Mutation_RootUpdate_ScheduleEmailReportsArgs = {
|
|
2436
|
-
_set?: InputMaybe<ScheduleEmailReports_Set_Input>;
|
|
2437
|
-
where: ScheduleEmailReports_Bool_Exp;
|
|
2438
|
-
};
|
|
2439
|
-
/** mutation root */
|
|
2440
|
-
export type Mutation_RootUpdate_ScheduleEmailReports_By_PkArgs = {
|
|
2441
|
-
_set?: InputMaybe<ScheduleEmailReports_Set_Input>;
|
|
2442
|
-
pk_columns: ScheduleEmailReports_Pk_Columns_Input;
|
|
2443
|
-
};
|
|
2444
|
-
/** column ordering options */
|
|
2445
|
-
export declare enum Order_By {
|
|
2446
|
-
/** in ascending order, nulls last */
|
|
2447
|
-
Asc = "asc",
|
|
2448
|
-
/** in ascending order, nulls first */
|
|
2449
|
-
AscNullsFirst = "asc_nulls_first",
|
|
2450
|
-
/** in ascending order, nulls last */
|
|
2451
|
-
AscNullsLast = "asc_nulls_last",
|
|
2452
|
-
/** in descending order, nulls first */
|
|
2453
|
-
Desc = "desc",
|
|
2454
|
-
/** in descending order, nulls first */
|
|
2455
|
-
DescNullsFirst = "desc_nulls_first",
|
|
2456
|
-
/** in descending order, nulls last */
|
|
2457
|
-
DescNullsLast = "desc_nulls_last"
|
|
2458
|
-
}
|
|
2459
|
-
export type Query_Root = {
|
|
2460
|
-
__typename?: 'query_root';
|
|
2461
|
-
/** fetch data from the table: "clientDashboardLayout" */
|
|
2462
|
-
clientDashboardLayout: Array<ClientDashboardLayout>;
|
|
2463
|
-
/** fetch data from the table: "clientDashboardLayout" using primary key columns */
|
|
2464
|
-
clientDashboardLayout_by_pk?: Maybe<ClientDashboardLayout>;
|
|
2465
|
-
/** An array relationship */
|
|
2466
|
-
clientDashboardMetrics: Array<ClientDashboardMetrics>;
|
|
2467
|
-
/** fetch data from the table: "clientDashboardMetrics" using primary key columns */
|
|
2468
|
-
clientDashboardMetrics_by_pk?: Maybe<ClientDashboardMetrics>;
|
|
2469
|
-
/** An array relationship */
|
|
2470
|
-
clientDeletedMetrics: Array<ClientDeletedMetrics>;
|
|
2471
|
-
/** fetch data from the table: "clientDeletedMetrics" using primary key columns */
|
|
2472
|
-
clientDeletedMetrics_by_pk?: Maybe<ClientDeletedMetrics>;
|
|
2473
|
-
/** An array relationship */
|
|
2474
|
-
companyIntegrations: Array<CompanyIntegrations>;
|
|
2475
|
-
/** fetch data from the table: "companyIntegrations" using primary key columns */
|
|
2476
|
-
companyIntegrations_by_pk?: Maybe<CompanyIntegrations>;
|
|
2477
|
-
/** fetch data from the table: "companySubsetTables" */
|
|
2478
|
-
companySubsetTables: Array<CompanySubsetTables>;
|
|
2479
|
-
/** fetch data from the table: "companyWorkspaces" */
|
|
2480
|
-
companyWorkspaces: Array<CompanyWorkspaces>;
|
|
2481
|
-
/** fetch data from the table: "companyWorkspaces" using primary key columns */
|
|
2482
|
-
companyWorkspaces_by_pk?: Maybe<CompanyWorkspaces>;
|
|
2483
|
-
/** An array relationship */
|
|
2484
|
-
customSqlColumns: Array<CustomSqlColumns>;
|
|
2485
|
-
/** fetch data from the table: "customSqlColumns" using primary key columns */
|
|
2486
|
-
customSqlColumns_by_pk?: Maybe<CustomSqlColumns>;
|
|
2487
|
-
/** fetch data from the table: "demoTheme" */
|
|
2488
|
-
demoTheme: Array<DemoTheme>;
|
|
2489
|
-
/** fetch data from the table: "demoTheme" using primary key columns */
|
|
2490
|
-
demoTheme_by_pk?: Maybe<DemoTheme>;
|
|
2491
|
-
embeddedDashboardData?: Maybe<EmbeddedDashboardDataOutput>;
|
|
2492
|
-
/** Gets the required data to embed individual metrics. */
|
|
2493
|
-
embeddedMetricData?: Maybe<EmbeddedMetricDataOutput>;
|
|
2494
|
-
/** An array relationship */
|
|
2495
|
-
externalDashboardMetrics: Array<ExternalDashboardMetrics>;
|
|
2496
|
-
/** fetch data from the table: "externalDashboardMetrics" using primary key columns */
|
|
2497
|
-
externalDashboardMetrics_by_pk?: Maybe<ExternalDashboardMetrics>;
|
|
2498
|
-
/** An array relationship */
|
|
2499
|
-
externalDashboardThemeClients: Array<ExternalDashboardThemeClients>;
|
|
2500
|
-
/** fetch data from the table: "externalDashboardThemeClients" using primary key columns */
|
|
2501
|
-
externalDashboardThemeClients_by_pk?: Maybe<ExternalDashboardThemeClients>;
|
|
2502
|
-
/** fetch data from the table: "externalDashboardThemes" */
|
|
2503
|
-
externalDashboardThemes: Array<ExternalDashboardThemes>;
|
|
2504
|
-
/** fetch data from the table: "externalDashboardThemes" using primary key columns */
|
|
2505
|
-
externalDashboardThemes_by_pk?: Maybe<ExternalDashboardThemes>;
|
|
2506
|
-
/** An array relationship */
|
|
2507
|
-
externalDashboards: Array<ExternalDashboards>;
|
|
2508
|
-
/** fetch data from the table: "externalDashboards" using primary key columns */
|
|
2509
|
-
externalDashboards_by_pk?: Maybe<ExternalDashboards>;
|
|
2510
|
-
externalMetricQuery?: Maybe<ExternalMetricQueryOutput>;
|
|
2511
|
-
/** fetch data from the table: "externalMetricRawCsvUrls" */
|
|
2512
|
-
externalMetricRawCsvUrls: Array<ExternalMetricRawCsvUrls>;
|
|
2513
|
-
/** fetch data from the table: "externalMetricRawCsvUrls" using primary key columns */
|
|
2514
|
-
externalMetricRawCsvUrls_by_pk?: Maybe<ExternalMetricRawCsvUrls>;
|
|
2515
|
-
/** An array relationship */
|
|
2516
|
-
externalMetrics: Array<ExternalMetrics>;
|
|
2517
|
-
/** An array relationship */
|
|
2518
|
-
externalMetricsRlsFilters: Array<ExternalMetricsRlsFilters>;
|
|
2519
|
-
/** fetch data from the table: "externalMetricsRlsFilters" using primary key columns */
|
|
2520
|
-
externalMetricsRlsFilters_by_pk?: Maybe<ExternalMetricsRlsFilters>;
|
|
2521
|
-
/** fetch data from the table: "externalMetrics" using primary key columns */
|
|
2522
|
-
externalMetrics_by_pk?: Maybe<ExternalMetrics>;
|
|
2523
|
-
/** fetch data from the table: "guestTokens" */
|
|
2524
|
-
guestTokens: Array<GuestTokens>;
|
|
2525
|
-
/** fetch data from the table: "guestTokens" using primary key columns */
|
|
2526
|
-
guestTokens_by_pk?: Maybe<GuestTokens>;
|
|
2527
|
-
/** An array relationship */
|
|
2528
|
-
scheduleEmailReportCharts: Array<ScheduleEmailReportCharts>;
|
|
2529
|
-
/** fetch data from the table: "scheduleEmailReportCharts" using primary key columns */
|
|
2530
|
-
scheduleEmailReportCharts_by_pk?: Maybe<ScheduleEmailReportCharts>;
|
|
2531
|
-
/** An array relationship */
|
|
2532
|
-
scheduleEmailReports: Array<ScheduleEmailReports>;
|
|
2533
|
-
/** fetch data from the table: "scheduleEmailReports" using primary key columns */
|
|
2534
|
-
scheduleEmailReports_by_pk?: Maybe<ScheduleEmailReports>;
|
|
2535
|
-
shareCsvUrl?: Maybe<ShareCsvUrl>;
|
|
2536
|
-
/** fetch data from the table: "sharingSettings" */
|
|
2537
|
-
sharingSettings: Array<SharingSettings>;
|
|
2538
|
-
/** fetch data from the table: "sharingSettings" using primary key columns */
|
|
2539
|
-
sharingSettings_by_pk?: Maybe<SharingSettings>;
|
|
2540
|
-
/** fetch data from the table: "themes" */
|
|
2541
|
-
themes: Array<Themes>;
|
|
2542
|
-
/** fetch data from the table: "themes" using primary key columns */
|
|
2543
|
-
themes_by_pk?: Maybe<Themes>;
|
|
2544
|
-
/** fetch data from the table: "whitelistedDomains" */
|
|
2545
|
-
whitelistedDomains: Array<WhitelistedDomains>;
|
|
2546
|
-
/** fetch data from the table: "whitelistedDomains" using primary key columns */
|
|
2547
|
-
whitelistedDomains_by_pk?: Maybe<WhitelistedDomains>;
|
|
2548
|
-
};
|
|
2549
|
-
export type Query_RootClientDashboardLayoutArgs = {
|
|
2550
|
-
distinct_on?: InputMaybe<Array<ClientDashboardLayout_Select_Column>>;
|
|
2551
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
2552
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
2553
|
-
order_by?: InputMaybe<Array<ClientDashboardLayout_Order_By>>;
|
|
2554
|
-
where?: InputMaybe<ClientDashboardLayout_Bool_Exp>;
|
|
2555
|
-
};
|
|
2556
|
-
export type Query_RootClientDashboardLayout_By_PkArgs = {
|
|
2557
|
-
clientId: Scalars['String'];
|
|
2558
|
-
externalDashboardId: Scalars['uuid'];
|
|
2559
|
-
};
|
|
2560
|
-
export type Query_RootClientDashboardMetricsArgs = {
|
|
2561
|
-
distinct_on?: InputMaybe<Array<ClientDashboardMetrics_Select_Column>>;
|
|
2562
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
2563
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
2564
|
-
order_by?: InputMaybe<Array<ClientDashboardMetrics_Order_By>>;
|
|
2565
|
-
where?: InputMaybe<ClientDashboardMetrics_Bool_Exp>;
|
|
2566
|
-
};
|
|
2567
|
-
export type Query_RootClientDashboardMetrics_By_PkArgs = {
|
|
2568
|
-
clientId: Scalars['String'];
|
|
2569
|
-
externalDashboardId: Scalars['uuid'];
|
|
2570
|
-
};
|
|
2571
|
-
export type Query_RootClientDeletedMetricsArgs = {
|
|
2572
|
-
distinct_on?: InputMaybe<Array<ClientDeletedMetrics_Select_Column>>;
|
|
2573
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
2574
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
2575
|
-
order_by?: InputMaybe<Array<ClientDeletedMetrics_Order_By>>;
|
|
2576
|
-
where?: InputMaybe<ClientDeletedMetrics_Bool_Exp>;
|
|
2577
|
-
};
|
|
2578
|
-
export type Query_RootClientDeletedMetrics_By_PkArgs = {
|
|
2579
|
-
clientId: Scalars['String'];
|
|
2580
|
-
externalMetricId: Scalars['uuid'];
|
|
2581
|
-
};
|
|
2582
|
-
export type Query_RootCompanyIntegrationsArgs = {
|
|
2583
|
-
distinct_on?: InputMaybe<Array<CompanyIntegrations_Select_Column>>;
|
|
2584
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
2585
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
2586
|
-
order_by?: InputMaybe<Array<CompanyIntegrations_Order_By>>;
|
|
2587
|
-
where?: InputMaybe<CompanyIntegrations_Bool_Exp>;
|
|
2588
|
-
};
|
|
2589
|
-
export type Query_RootCompanyIntegrations_By_PkArgs = {
|
|
2590
|
-
id: Scalars['uuid'];
|
|
2591
|
-
};
|
|
2592
|
-
export type Query_RootCompanySubsetTablesArgs = {
|
|
2593
|
-
distinct_on?: InputMaybe<Array<CompanySubsetTables_Select_Column>>;
|
|
2594
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
2595
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
2596
|
-
order_by?: InputMaybe<Array<CompanySubsetTables_Order_By>>;
|
|
2597
|
-
where?: InputMaybe<CompanySubsetTables_Bool_Exp>;
|
|
2598
|
-
};
|
|
2599
|
-
export type Query_RootCompanyWorkspacesArgs = {
|
|
2600
|
-
distinct_on?: InputMaybe<Array<CompanyWorkspaces_Select_Column>>;
|
|
2601
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
2602
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
2603
|
-
order_by?: InputMaybe<Array<CompanyWorkspaces_Order_By>>;
|
|
2604
|
-
where?: InputMaybe<CompanyWorkspaces_Bool_Exp>;
|
|
2605
|
-
};
|
|
2606
|
-
export type Query_RootCompanyWorkspaces_By_PkArgs = {
|
|
2607
|
-
id: Scalars['uuid'];
|
|
2608
|
-
};
|
|
2609
|
-
export type Query_RootCustomSqlColumnsArgs = {
|
|
2610
|
-
distinct_on?: InputMaybe<Array<CustomSqlColumns_Select_Column>>;
|
|
2611
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
2612
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
2613
|
-
order_by?: InputMaybe<Array<CustomSqlColumns_Order_By>>;
|
|
2614
|
-
where?: InputMaybe<CustomSqlColumns_Bool_Exp>;
|
|
2615
|
-
};
|
|
2616
|
-
export type Query_RootCustomSqlColumns_By_PkArgs = {
|
|
2617
|
-
id: Scalars['uuid'];
|
|
2618
|
-
};
|
|
2619
|
-
export type Query_RootDemoThemeArgs = {
|
|
2620
|
-
distinct_on?: InputMaybe<Array<DemoTheme_Select_Column>>;
|
|
2621
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
2622
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
2623
|
-
order_by?: InputMaybe<Array<DemoTheme_Order_By>>;
|
|
2624
|
-
where?: InputMaybe<DemoTheme_Bool_Exp>;
|
|
2625
|
-
};
|
|
2626
|
-
export type Query_RootDemoTheme_By_PkArgs = {
|
|
2627
|
-
id: Scalars['uuid'];
|
|
2628
|
-
};
|
|
2629
|
-
export type Query_RootEmbeddedDashboardDataArgs = {
|
|
2630
|
-
input: EmbeddedDashboardDataInput;
|
|
2631
|
-
};
|
|
2632
|
-
export type Query_RootEmbeddedMetricDataArgs = {
|
|
2633
|
-
input: EmbeddedMetricDataInput;
|
|
2634
|
-
};
|
|
2635
|
-
export type Query_RootExternalDashboardMetricsArgs = {
|
|
2636
|
-
distinct_on?: InputMaybe<Array<ExternalDashboardMetrics_Select_Column>>;
|
|
2637
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
2638
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
2639
|
-
order_by?: InputMaybe<Array<ExternalDashboardMetrics_Order_By>>;
|
|
2640
|
-
where?: InputMaybe<ExternalDashboardMetrics_Bool_Exp>;
|
|
2641
|
-
};
|
|
2642
|
-
export type Query_RootExternalDashboardMetrics_By_PkArgs = {
|
|
2643
|
-
externalDashboardId: Scalars['uuid'];
|
|
2644
|
-
externalMetricId: Scalars['uuid'];
|
|
2645
|
-
};
|
|
2646
|
-
export type Query_RootExternalDashboardThemeClientsArgs = {
|
|
2647
|
-
distinct_on?: InputMaybe<Array<ExternalDashboardThemeClients_Select_Column>>;
|
|
2648
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
2649
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
2650
|
-
order_by?: InputMaybe<Array<ExternalDashboardThemeClients_Order_By>>;
|
|
2651
|
-
where?: InputMaybe<ExternalDashboardThemeClients_Bool_Exp>;
|
|
2652
|
-
};
|
|
2653
|
-
export type Query_RootExternalDashboardThemeClients_By_PkArgs = {
|
|
2654
|
-
id: Scalars['uuid'];
|
|
2655
|
-
};
|
|
2656
|
-
export type Query_RootExternalDashboardThemesArgs = {
|
|
2657
|
-
distinct_on?: InputMaybe<Array<ExternalDashboardThemes_Select_Column>>;
|
|
2658
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
2659
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
2660
|
-
order_by?: InputMaybe<Array<ExternalDashboardThemes_Order_By>>;
|
|
2661
|
-
where?: InputMaybe<ExternalDashboardThemes_Bool_Exp>;
|
|
2662
|
-
};
|
|
2663
|
-
export type Query_RootExternalDashboardThemes_By_PkArgs = {
|
|
2664
|
-
id: Scalars['uuid'];
|
|
2665
|
-
};
|
|
2666
|
-
export type Query_RootExternalDashboardsArgs = {
|
|
2667
|
-
distinct_on?: InputMaybe<Array<ExternalDashboards_Select_Column>>;
|
|
2668
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
2669
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
2670
|
-
order_by?: InputMaybe<Array<ExternalDashboards_Order_By>>;
|
|
2671
|
-
where?: InputMaybe<ExternalDashboards_Bool_Exp>;
|
|
2672
|
-
};
|
|
2673
|
-
export type Query_RootExternalDashboards_By_PkArgs = {
|
|
2674
|
-
id: Scalars['uuid'];
|
|
2675
|
-
};
|
|
2676
|
-
export type Query_RootExternalMetricQueryArgs = {
|
|
2677
|
-
input: ExternalMetricQueryInput;
|
|
2678
|
-
};
|
|
2679
|
-
export type Query_RootExternalMetricRawCsvUrlsArgs = {
|
|
2680
|
-
distinct_on?: InputMaybe<Array<ExternalMetricRawCsvUrls_Select_Column>>;
|
|
2681
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
2682
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
2683
|
-
order_by?: InputMaybe<Array<ExternalMetricRawCsvUrls_Order_By>>;
|
|
2684
|
-
where?: InputMaybe<ExternalMetricRawCsvUrls_Bool_Exp>;
|
|
2685
|
-
};
|
|
2686
|
-
export type Query_RootExternalMetricRawCsvUrls_By_PkArgs = {
|
|
2687
|
-
id: Scalars['uuid'];
|
|
2688
|
-
};
|
|
2689
|
-
export type Query_RootExternalMetricsArgs = {
|
|
2690
|
-
distinct_on?: InputMaybe<Array<ExternalMetrics_Select_Column>>;
|
|
2691
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
2692
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
2693
|
-
order_by?: InputMaybe<Array<ExternalMetrics_Order_By>>;
|
|
2694
|
-
where?: InputMaybe<ExternalMetrics_Bool_Exp>;
|
|
2695
|
-
};
|
|
2696
|
-
export type Query_RootExternalMetricsRlsFiltersArgs = {
|
|
2697
|
-
distinct_on?: InputMaybe<Array<ExternalMetricsRlsFilters_Select_Column>>;
|
|
2698
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
2699
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
2700
|
-
order_by?: InputMaybe<Array<ExternalMetricsRlsFilters_Order_By>>;
|
|
2701
|
-
where?: InputMaybe<ExternalMetricsRlsFilters_Bool_Exp>;
|
|
2702
|
-
};
|
|
2703
|
-
export type Query_RootExternalMetricsRlsFilters_By_PkArgs = {
|
|
2704
|
-
id: Scalars['uuid'];
|
|
2705
|
-
};
|
|
2706
|
-
export type Query_RootExternalMetrics_By_PkArgs = {
|
|
2707
|
-
id: Scalars['uuid'];
|
|
2708
|
-
};
|
|
2709
|
-
export type Query_RootGuestTokensArgs = {
|
|
2710
|
-
distinct_on?: InputMaybe<Array<GuestTokens_Select_Column>>;
|
|
2711
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
2712
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
2713
|
-
order_by?: InputMaybe<Array<GuestTokens_Order_By>>;
|
|
2714
|
-
where?: InputMaybe<GuestTokens_Bool_Exp>;
|
|
2715
|
-
};
|
|
2716
|
-
export type Query_RootGuestTokens_By_PkArgs = {
|
|
2717
|
-
id: Scalars['uuid'];
|
|
2718
|
-
};
|
|
2719
|
-
export type Query_RootScheduleEmailReportChartsArgs = {
|
|
2720
|
-
distinct_on?: InputMaybe<Array<ScheduleEmailReportCharts_Select_Column>>;
|
|
2721
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
2722
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
2723
|
-
order_by?: InputMaybe<Array<ScheduleEmailReportCharts_Order_By>>;
|
|
2724
|
-
where?: InputMaybe<ScheduleEmailReportCharts_Bool_Exp>;
|
|
2725
|
-
};
|
|
2726
|
-
export type Query_RootScheduleEmailReportCharts_By_PkArgs = {
|
|
2727
|
-
id: Scalars['uuid'];
|
|
2728
|
-
};
|
|
2729
|
-
export type Query_RootScheduleEmailReportsArgs = {
|
|
2730
|
-
distinct_on?: InputMaybe<Array<ScheduleEmailReports_Select_Column>>;
|
|
2731
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
2732
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
2733
|
-
order_by?: InputMaybe<Array<ScheduleEmailReports_Order_By>>;
|
|
2734
|
-
where?: InputMaybe<ScheduleEmailReports_Bool_Exp>;
|
|
2735
|
-
};
|
|
2736
|
-
export type Query_RootScheduleEmailReports_By_PkArgs = {
|
|
2737
|
-
id: Scalars['uuid'];
|
|
2738
|
-
};
|
|
2739
|
-
export type Query_RootShareCsvUrlArgs = {
|
|
2740
|
-
id: Scalars['uuid'];
|
|
2741
|
-
};
|
|
2742
|
-
export type Query_RootSharingSettingsArgs = {
|
|
2743
|
-
distinct_on?: InputMaybe<Array<SharingSettings_Select_Column>>;
|
|
2744
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
2745
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
2746
|
-
order_by?: InputMaybe<Array<SharingSettings_Order_By>>;
|
|
2747
|
-
where?: InputMaybe<SharingSettings_Bool_Exp>;
|
|
2748
|
-
};
|
|
2749
|
-
export type Query_RootSharingSettings_By_PkArgs = {
|
|
2750
|
-
id: Scalars['uuid'];
|
|
2751
|
-
};
|
|
2752
|
-
export type Query_RootThemesArgs = {
|
|
2753
|
-
distinct_on?: InputMaybe<Array<Themes_Select_Column>>;
|
|
2754
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
2755
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
2756
|
-
order_by?: InputMaybe<Array<Themes_Order_By>>;
|
|
2757
|
-
where?: InputMaybe<Themes_Bool_Exp>;
|
|
2758
|
-
};
|
|
2759
|
-
export type Query_RootThemes_By_PkArgs = {
|
|
2760
|
-
id: Scalars['uuid'];
|
|
2761
|
-
};
|
|
2762
|
-
export type Query_RootWhitelistedDomainsArgs = {
|
|
2763
|
-
distinct_on?: InputMaybe<Array<WhitelistedDomains_Select_Column>>;
|
|
2764
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
2765
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
2766
|
-
order_by?: InputMaybe<Array<WhitelistedDomains_Order_By>>;
|
|
2767
|
-
where?: InputMaybe<WhitelistedDomains_Bool_Exp>;
|
|
2768
|
-
};
|
|
2769
|
-
export type Query_RootWhitelistedDomains_By_PkArgs = {
|
|
2770
|
-
companyId: Scalars['uuid'];
|
|
2771
|
-
};
|
|
2772
|
-
/** columns and relationships of "scheduleEmailReportCharts" */
|
|
2773
|
-
export type ScheduleEmailReportCharts = {
|
|
2774
|
-
__typename?: 'scheduleEmailReportCharts';
|
|
2775
|
-
/** An object relationship */
|
|
2776
|
-
externalMetric: ExternalMetrics;
|
|
2777
|
-
externalMetricId: Scalars['uuid'];
|
|
2778
|
-
id: Scalars['uuid'];
|
|
2779
|
-
/** An object relationship */
|
|
2780
|
-
scheduleEmailReport: ScheduleEmailReports;
|
|
2781
|
-
scheduleEmailReportId: Scalars['uuid'];
|
|
2782
|
-
};
|
|
2783
|
-
/** order by aggregate values of table "scheduleEmailReportCharts" */
|
|
2784
|
-
export type ScheduleEmailReportCharts_Aggregate_Order_By = {
|
|
2785
|
-
count?: InputMaybe<Order_By>;
|
|
2786
|
-
max?: InputMaybe<ScheduleEmailReportCharts_Max_Order_By>;
|
|
2787
|
-
min?: InputMaybe<ScheduleEmailReportCharts_Min_Order_By>;
|
|
2788
|
-
};
|
|
2789
|
-
/** input type for inserting array relation for remote table "scheduleEmailReportCharts" */
|
|
2790
|
-
export type ScheduleEmailReportCharts_Arr_Rel_Insert_Input = {
|
|
2791
|
-
data: Array<ScheduleEmailReportCharts_Insert_Input>;
|
|
2792
|
-
/** upsert condition */
|
|
2793
|
-
on_conflict?: InputMaybe<ScheduleEmailReportCharts_On_Conflict>;
|
|
2794
|
-
};
|
|
2795
|
-
/** Boolean expression to filter rows from the table "scheduleEmailReportCharts". All fields are combined with a logical 'AND'. */
|
|
2796
|
-
export type ScheduleEmailReportCharts_Bool_Exp = {
|
|
2797
|
-
_and?: InputMaybe<Array<ScheduleEmailReportCharts_Bool_Exp>>;
|
|
2798
|
-
_not?: InputMaybe<ScheduleEmailReportCharts_Bool_Exp>;
|
|
2799
|
-
_or?: InputMaybe<Array<ScheduleEmailReportCharts_Bool_Exp>>;
|
|
2800
|
-
externalMetric?: InputMaybe<ExternalMetrics_Bool_Exp>;
|
|
2801
|
-
externalMetricId?: InputMaybe<Uuid_Comparison_Exp>;
|
|
2802
|
-
id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
2803
|
-
scheduleEmailReport?: InputMaybe<ScheduleEmailReports_Bool_Exp>;
|
|
2804
|
-
scheduleEmailReportId?: InputMaybe<Uuid_Comparison_Exp>;
|
|
2805
|
-
};
|
|
2806
|
-
/** unique or primary key constraints on table "scheduleEmailReportCharts" */
|
|
2807
|
-
export declare enum ScheduleEmailReportCharts_Constraint {
|
|
2808
|
-
/** unique or primary key constraint on columns "id" */
|
|
2809
|
-
ScheduleEmailReportChartsPkey = "scheduleEmailReportCharts_pkey"
|
|
2810
|
-
}
|
|
2811
|
-
/** input type for inserting data into table "scheduleEmailReportCharts" */
|
|
2812
|
-
export type ScheduleEmailReportCharts_Insert_Input = {
|
|
2813
|
-
externalMetric?: InputMaybe<ExternalMetrics_Obj_Rel_Insert_Input>;
|
|
2814
|
-
externalMetricId?: InputMaybe<Scalars['uuid']>;
|
|
2815
|
-
id?: InputMaybe<Scalars['uuid']>;
|
|
2816
|
-
scheduleEmailReport?: InputMaybe<ScheduleEmailReports_Obj_Rel_Insert_Input>;
|
|
2817
|
-
scheduleEmailReportId?: InputMaybe<Scalars['uuid']>;
|
|
2818
|
-
};
|
|
2819
|
-
/** order by max() on columns of table "scheduleEmailReportCharts" */
|
|
2820
|
-
export type ScheduleEmailReportCharts_Max_Order_By = {
|
|
2821
|
-
externalMetricId?: InputMaybe<Order_By>;
|
|
2822
|
-
id?: InputMaybe<Order_By>;
|
|
2823
|
-
scheduleEmailReportId?: InputMaybe<Order_By>;
|
|
2824
|
-
};
|
|
2825
|
-
/** order by min() on columns of table "scheduleEmailReportCharts" */
|
|
2826
|
-
export type ScheduleEmailReportCharts_Min_Order_By = {
|
|
2827
|
-
externalMetricId?: InputMaybe<Order_By>;
|
|
2828
|
-
id?: InputMaybe<Order_By>;
|
|
2829
|
-
scheduleEmailReportId?: InputMaybe<Order_By>;
|
|
2830
|
-
};
|
|
2831
|
-
/** response of any mutation on the table "scheduleEmailReportCharts" */
|
|
2832
|
-
export type ScheduleEmailReportCharts_Mutation_Response = {
|
|
2833
|
-
__typename?: 'scheduleEmailReportCharts_mutation_response';
|
|
2834
|
-
/** number of rows affected by the mutation */
|
|
2835
|
-
affected_rows: Scalars['Int'];
|
|
2836
|
-
/** data from the rows affected by the mutation */
|
|
2837
|
-
returning: Array<ScheduleEmailReportCharts>;
|
|
2838
|
-
};
|
|
2839
|
-
/** on_conflict condition type for table "scheduleEmailReportCharts" */
|
|
2840
|
-
export type ScheduleEmailReportCharts_On_Conflict = {
|
|
2841
|
-
constraint: ScheduleEmailReportCharts_Constraint;
|
|
2842
|
-
update_columns?: Array<ScheduleEmailReportCharts_Update_Column>;
|
|
2843
|
-
where?: InputMaybe<ScheduleEmailReportCharts_Bool_Exp>;
|
|
2844
|
-
};
|
|
2845
|
-
/** Ordering options when selecting data from "scheduleEmailReportCharts". */
|
|
2846
|
-
export type ScheduleEmailReportCharts_Order_By = {
|
|
2847
|
-
externalMetric?: InputMaybe<ExternalMetrics_Order_By>;
|
|
2848
|
-
externalMetricId?: InputMaybe<Order_By>;
|
|
2849
|
-
id?: InputMaybe<Order_By>;
|
|
2850
|
-
scheduleEmailReport?: InputMaybe<ScheduleEmailReports_Order_By>;
|
|
2851
|
-
scheduleEmailReportId?: InputMaybe<Order_By>;
|
|
2852
|
-
};
|
|
2853
|
-
/** primary key columns input for table: scheduleEmailReportCharts */
|
|
2854
|
-
export type ScheduleEmailReportCharts_Pk_Columns_Input = {
|
|
2855
|
-
id: Scalars['uuid'];
|
|
2856
|
-
};
|
|
2857
|
-
/** select columns of table "scheduleEmailReportCharts" */
|
|
2858
|
-
export declare enum ScheduleEmailReportCharts_Select_Column {
|
|
2859
|
-
/** column name */
|
|
2860
|
-
ExternalMetricId = "externalMetricId",
|
|
2861
|
-
/** column name */
|
|
2862
|
-
Id = "id",
|
|
2863
|
-
/** column name */
|
|
2864
|
-
ScheduleEmailReportId = "scheduleEmailReportId"
|
|
2865
|
-
}
|
|
2866
|
-
/** input type for updating data in table "scheduleEmailReportCharts" */
|
|
2867
|
-
export type ScheduleEmailReportCharts_Set_Input = {
|
|
2868
|
-
externalMetricId?: InputMaybe<Scalars['uuid']>;
|
|
2869
|
-
id?: InputMaybe<Scalars['uuid']>;
|
|
2870
|
-
scheduleEmailReportId?: InputMaybe<Scalars['uuid']>;
|
|
2871
|
-
};
|
|
2872
|
-
/** update columns of table "scheduleEmailReportCharts" */
|
|
2873
|
-
export declare enum ScheduleEmailReportCharts_Update_Column {
|
|
2874
|
-
/** column name */
|
|
2875
|
-
ExternalMetricId = "externalMetricId",
|
|
2876
|
-
/** column name */
|
|
2877
|
-
Id = "id",
|
|
2878
|
-
/** column name */
|
|
2879
|
-
ScheduleEmailReportId = "scheduleEmailReportId"
|
|
2880
|
-
}
|
|
2881
|
-
/** columns and relationships of "scheduleEmailReports" */
|
|
2882
|
-
export type ScheduleEmailReports = {
|
|
2883
|
-
__typename?: 'scheduleEmailReports';
|
|
2884
|
-
emails: Scalars['json'];
|
|
2885
|
-
/** An object relationship */
|
|
2886
|
-
externalDashboard: ExternalDashboards;
|
|
2887
|
-
externalDashboardId: Scalars['uuid'];
|
|
2888
|
-
guestToken: Scalars['uuid'];
|
|
2889
|
-
/** An object relationship */
|
|
2890
|
-
guestTokenByGuesttoken: GuestTokens;
|
|
2891
|
-
id: Scalars['uuid'];
|
|
2892
|
-
nextScheduledAt: Scalars['String'];
|
|
2893
|
-
/** An array relationship */
|
|
2894
|
-
scheduleEmailReportCharts: Array<ScheduleEmailReportCharts>;
|
|
2895
|
-
/** An object relationship */
|
|
2896
|
-
sharingSetting: SharingSettings;
|
|
2897
|
-
sharingSettingsId: Scalars['uuid'];
|
|
2898
|
-
subject: Scalars['String'];
|
|
2899
|
-
timeConfigurations: Scalars['json'];
|
|
2900
|
-
};
|
|
2901
|
-
/** columns and relationships of "scheduleEmailReports" */
|
|
2902
|
-
export type ScheduleEmailReportsEmailsArgs = {
|
|
2903
|
-
path?: InputMaybe<Scalars['String']>;
|
|
2904
|
-
};
|
|
2905
|
-
/** columns and relationships of "scheduleEmailReports" */
|
|
2906
|
-
export type ScheduleEmailReportsScheduleEmailReportChartsArgs = {
|
|
2907
|
-
distinct_on?: InputMaybe<Array<ScheduleEmailReportCharts_Select_Column>>;
|
|
2908
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
2909
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
2910
|
-
order_by?: InputMaybe<Array<ScheduleEmailReportCharts_Order_By>>;
|
|
2911
|
-
where?: InputMaybe<ScheduleEmailReportCharts_Bool_Exp>;
|
|
2912
|
-
};
|
|
2913
|
-
/** columns and relationships of "scheduleEmailReports" */
|
|
2914
|
-
export type ScheduleEmailReportsTimeConfigurationsArgs = {
|
|
2915
|
-
path?: InputMaybe<Scalars['String']>;
|
|
2916
|
-
};
|
|
2917
|
-
/** order by aggregate values of table "scheduleEmailReports" */
|
|
2918
|
-
export type ScheduleEmailReports_Aggregate_Order_By = {
|
|
2919
|
-
count?: InputMaybe<Order_By>;
|
|
2920
|
-
max?: InputMaybe<ScheduleEmailReports_Max_Order_By>;
|
|
2921
|
-
min?: InputMaybe<ScheduleEmailReports_Min_Order_By>;
|
|
2922
|
-
};
|
|
2923
|
-
/** Boolean expression to filter rows from the table "scheduleEmailReports". All fields are combined with a logical 'AND'. */
|
|
2924
|
-
export type ScheduleEmailReports_Bool_Exp = {
|
|
2925
|
-
_and?: InputMaybe<Array<ScheduleEmailReports_Bool_Exp>>;
|
|
2926
|
-
_not?: InputMaybe<ScheduleEmailReports_Bool_Exp>;
|
|
2927
|
-
_or?: InputMaybe<Array<ScheduleEmailReports_Bool_Exp>>;
|
|
2928
|
-
emails?: InputMaybe<Json_Comparison_Exp>;
|
|
2929
|
-
externalDashboard?: InputMaybe<ExternalDashboards_Bool_Exp>;
|
|
2930
|
-
externalDashboardId?: InputMaybe<Uuid_Comparison_Exp>;
|
|
2931
|
-
guestToken?: InputMaybe<Uuid_Comparison_Exp>;
|
|
2932
|
-
guestTokenByGuesttoken?: InputMaybe<GuestTokens_Bool_Exp>;
|
|
2933
|
-
id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
2934
|
-
nextScheduledAt?: InputMaybe<String_Comparison_Exp>;
|
|
2935
|
-
scheduleEmailReportCharts?: InputMaybe<ScheduleEmailReportCharts_Bool_Exp>;
|
|
2936
|
-
sharingSetting?: InputMaybe<SharingSettings_Bool_Exp>;
|
|
2937
|
-
sharingSettingsId?: InputMaybe<Uuid_Comparison_Exp>;
|
|
2938
|
-
subject?: InputMaybe<String_Comparison_Exp>;
|
|
2939
|
-
timeConfigurations?: InputMaybe<Json_Comparison_Exp>;
|
|
2940
|
-
};
|
|
2941
|
-
/** unique or primary key constraints on table "scheduleEmailReports" */
|
|
2942
|
-
export declare enum ScheduleEmailReports_Constraint {
|
|
2943
|
-
/** unique or primary key constraint on columns "guestToken" */
|
|
2944
|
-
ScheduleEmailReportsGuestTokenKey = "scheduleEmailReports_guestToken_key",
|
|
2945
|
-
/** unique or primary key constraint on columns "id" */
|
|
2946
|
-
ScheduleEmailReportsPkey = "scheduleEmailReports_pkey"
|
|
2947
|
-
}
|
|
2948
|
-
/** input type for inserting data into table "scheduleEmailReports" */
|
|
2949
|
-
export type ScheduleEmailReports_Insert_Input = {
|
|
2950
|
-
emails?: InputMaybe<Scalars['json']>;
|
|
2951
|
-
externalDashboardId?: InputMaybe<Scalars['uuid']>;
|
|
2952
|
-
guestToken?: InputMaybe<Scalars['uuid']>;
|
|
2953
|
-
id?: InputMaybe<Scalars['uuid']>;
|
|
2954
|
-
nextScheduledAt?: InputMaybe<Scalars['String']>;
|
|
2955
|
-
scheduleEmailReportCharts?: InputMaybe<ScheduleEmailReportCharts_Arr_Rel_Insert_Input>;
|
|
2956
|
-
sharingSettingsId?: InputMaybe<Scalars['uuid']>;
|
|
2957
|
-
subject?: InputMaybe<Scalars['String']>;
|
|
2958
|
-
timeConfigurations?: InputMaybe<Scalars['json']>;
|
|
2959
|
-
};
|
|
2960
|
-
/** order by max() on columns of table "scheduleEmailReports" */
|
|
2961
|
-
export type ScheduleEmailReports_Max_Order_By = {
|
|
2962
|
-
externalDashboardId?: InputMaybe<Order_By>;
|
|
2963
|
-
guestToken?: InputMaybe<Order_By>;
|
|
2964
|
-
id?: InputMaybe<Order_By>;
|
|
2965
|
-
nextScheduledAt?: InputMaybe<Order_By>;
|
|
2966
|
-
sharingSettingsId?: InputMaybe<Order_By>;
|
|
2967
|
-
subject?: InputMaybe<Order_By>;
|
|
2968
|
-
};
|
|
2969
|
-
/** order by min() on columns of table "scheduleEmailReports" */
|
|
2970
|
-
export type ScheduleEmailReports_Min_Order_By = {
|
|
2971
|
-
externalDashboardId?: InputMaybe<Order_By>;
|
|
2972
|
-
guestToken?: InputMaybe<Order_By>;
|
|
2973
|
-
id?: InputMaybe<Order_By>;
|
|
2974
|
-
nextScheduledAt?: InputMaybe<Order_By>;
|
|
2975
|
-
sharingSettingsId?: InputMaybe<Order_By>;
|
|
2976
|
-
subject?: InputMaybe<Order_By>;
|
|
2977
|
-
};
|
|
2978
|
-
/** response of any mutation on the table "scheduleEmailReports" */
|
|
2979
|
-
export type ScheduleEmailReports_Mutation_Response = {
|
|
2980
|
-
__typename?: 'scheduleEmailReports_mutation_response';
|
|
2981
|
-
/** number of rows affected by the mutation */
|
|
2982
|
-
affected_rows: Scalars['Int'];
|
|
2983
|
-
/** data from the rows affected by the mutation */
|
|
2984
|
-
returning: Array<ScheduleEmailReports>;
|
|
2985
|
-
};
|
|
2986
|
-
/** input type for inserting object relation for remote table "scheduleEmailReports" */
|
|
2987
|
-
export type ScheduleEmailReports_Obj_Rel_Insert_Input = {
|
|
2988
|
-
data: ScheduleEmailReports_Insert_Input;
|
|
2989
|
-
/** upsert condition */
|
|
2990
|
-
on_conflict?: InputMaybe<ScheduleEmailReports_On_Conflict>;
|
|
2991
|
-
};
|
|
2992
|
-
/** on_conflict condition type for table "scheduleEmailReports" */
|
|
2993
|
-
export type ScheduleEmailReports_On_Conflict = {
|
|
2994
|
-
constraint: ScheduleEmailReports_Constraint;
|
|
2995
|
-
update_columns?: Array<ScheduleEmailReports_Update_Column>;
|
|
2996
|
-
where?: InputMaybe<ScheduleEmailReports_Bool_Exp>;
|
|
2997
|
-
};
|
|
2998
|
-
/** Ordering options when selecting data from "scheduleEmailReports". */
|
|
2999
|
-
export type ScheduleEmailReports_Order_By = {
|
|
3000
|
-
emails?: InputMaybe<Order_By>;
|
|
3001
|
-
externalDashboard?: InputMaybe<ExternalDashboards_Order_By>;
|
|
3002
|
-
externalDashboardId?: InputMaybe<Order_By>;
|
|
3003
|
-
guestToken?: InputMaybe<Order_By>;
|
|
3004
|
-
guestTokenByGuesttoken?: InputMaybe<GuestTokens_Order_By>;
|
|
3005
|
-
id?: InputMaybe<Order_By>;
|
|
3006
|
-
nextScheduledAt?: InputMaybe<Order_By>;
|
|
3007
|
-
scheduleEmailReportCharts_aggregate?: InputMaybe<ScheduleEmailReportCharts_Aggregate_Order_By>;
|
|
3008
|
-
sharingSetting?: InputMaybe<SharingSettings_Order_By>;
|
|
3009
|
-
sharingSettingsId?: InputMaybe<Order_By>;
|
|
3010
|
-
subject?: InputMaybe<Order_By>;
|
|
3011
|
-
timeConfigurations?: InputMaybe<Order_By>;
|
|
3012
|
-
};
|
|
3013
|
-
/** primary key columns input for table: scheduleEmailReports */
|
|
3014
|
-
export type ScheduleEmailReports_Pk_Columns_Input = {
|
|
3015
|
-
id: Scalars['uuid'];
|
|
3016
|
-
};
|
|
3017
|
-
/** select columns of table "scheduleEmailReports" */
|
|
3018
|
-
export declare enum ScheduleEmailReports_Select_Column {
|
|
3019
|
-
/** column name */
|
|
3020
|
-
Emails = "emails",
|
|
3021
|
-
/** column name */
|
|
3022
|
-
ExternalDashboardId = "externalDashboardId",
|
|
3023
|
-
/** column name */
|
|
3024
|
-
GuestToken = "guestToken",
|
|
3025
|
-
/** column name */
|
|
3026
|
-
Id = "id",
|
|
3027
|
-
/** column name */
|
|
3028
|
-
NextScheduledAt = "nextScheduledAt",
|
|
3029
|
-
/** column name */
|
|
3030
|
-
SharingSettingsId = "sharingSettingsId",
|
|
3031
|
-
/** column name */
|
|
3032
|
-
Subject = "subject",
|
|
3033
|
-
/** column name */
|
|
3034
|
-
TimeConfigurations = "timeConfigurations"
|
|
3035
|
-
}
|
|
3036
|
-
/** input type for updating data in table "scheduleEmailReports" */
|
|
3037
|
-
export type ScheduleEmailReports_Set_Input = {
|
|
3038
|
-
emails?: InputMaybe<Scalars['json']>;
|
|
3039
|
-
externalDashboardId?: InputMaybe<Scalars['uuid']>;
|
|
3040
|
-
guestToken?: InputMaybe<Scalars['uuid']>;
|
|
3041
|
-
id?: InputMaybe<Scalars['uuid']>;
|
|
3042
|
-
nextScheduledAt?: InputMaybe<Scalars['String']>;
|
|
3043
|
-
sharingSettingsId?: InputMaybe<Scalars['uuid']>;
|
|
3044
|
-
subject?: InputMaybe<Scalars['String']>;
|
|
3045
|
-
timeConfigurations?: InputMaybe<Scalars['json']>;
|
|
3046
|
-
};
|
|
3047
|
-
/** update columns of table "scheduleEmailReports" */
|
|
3048
|
-
export declare enum ScheduleEmailReports_Update_Column {
|
|
3049
|
-
/** column name */
|
|
3050
|
-
Emails = "emails",
|
|
3051
|
-
/** column name */
|
|
3052
|
-
ExternalDashboardId = "externalDashboardId",
|
|
3053
|
-
/** column name */
|
|
3054
|
-
GuestToken = "guestToken",
|
|
3055
|
-
/** column name */
|
|
3056
|
-
Id = "id",
|
|
3057
|
-
/** column name */
|
|
3058
|
-
NextScheduledAt = "nextScheduledAt",
|
|
3059
|
-
/** column name */
|
|
3060
|
-
SharingSettingsId = "sharingSettingsId",
|
|
3061
|
-
/** column name */
|
|
3062
|
-
Subject = "subject",
|
|
3063
|
-
/** column name */
|
|
3064
|
-
TimeConfigurations = "timeConfigurations"
|
|
3065
|
-
}
|
|
3066
|
-
/** fields of action: "shareCsvUrl" */
|
|
3067
|
-
export type ShareCsvUrl = {
|
|
3068
|
-
__typename?: 'shareCsvUrl';
|
|
3069
|
-
/** the time at which this action was created */
|
|
3070
|
-
created_at: Scalars['timestamptz'];
|
|
3071
|
-
/** errors related to the invocation */
|
|
3072
|
-
errors?: Maybe<Scalars['json']>;
|
|
3073
|
-
/** the unique id of an action */
|
|
3074
|
-
id: Scalars['uuid'];
|
|
3075
|
-
/** the output fields of this action */
|
|
3076
|
-
output?: Maybe<InvokeSaveRawCsvDetailsOutput>;
|
|
3077
|
-
};
|
|
3078
|
-
/** columns and relationships of "sharingSettings" */
|
|
3079
|
-
export type SharingSettings = {
|
|
3080
|
-
__typename?: 'sharingSettings';
|
|
3081
|
-
companyId: Scalars['uuid'];
|
|
3082
|
-
id: Scalars['uuid'];
|
|
3083
|
-
/** An array relationship */
|
|
3084
|
-
scheduleEmailReports: Array<ScheduleEmailReports>;
|
|
3085
|
-
};
|
|
3086
|
-
/** columns and relationships of "sharingSettings" */
|
|
3087
|
-
export type SharingSettingsScheduleEmailReportsArgs = {
|
|
3088
|
-
distinct_on?: InputMaybe<Array<ScheduleEmailReports_Select_Column>>;
|
|
3089
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
3090
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
3091
|
-
order_by?: InputMaybe<Array<ScheduleEmailReports_Order_By>>;
|
|
3092
|
-
where?: InputMaybe<ScheduleEmailReports_Bool_Exp>;
|
|
3093
|
-
};
|
|
3094
|
-
/** Boolean expression to filter rows from the table "sharingSettings". All fields are combined with a logical 'AND'. */
|
|
3095
|
-
export type SharingSettings_Bool_Exp = {
|
|
3096
|
-
_and?: InputMaybe<Array<SharingSettings_Bool_Exp>>;
|
|
3097
|
-
_not?: InputMaybe<SharingSettings_Bool_Exp>;
|
|
3098
|
-
_or?: InputMaybe<Array<SharingSettings_Bool_Exp>>;
|
|
3099
|
-
companyId?: InputMaybe<Uuid_Comparison_Exp>;
|
|
3100
|
-
id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
3101
|
-
scheduleEmailReports?: InputMaybe<ScheduleEmailReports_Bool_Exp>;
|
|
3102
|
-
};
|
|
3103
|
-
/** Ordering options when selecting data from "sharingSettings". */
|
|
3104
|
-
export type SharingSettings_Order_By = {
|
|
3105
|
-
companyId?: InputMaybe<Order_By>;
|
|
3106
|
-
id?: InputMaybe<Order_By>;
|
|
3107
|
-
scheduleEmailReports_aggregate?: InputMaybe<ScheduleEmailReports_Aggregate_Order_By>;
|
|
3108
|
-
};
|
|
3109
|
-
/** select columns of table "sharingSettings" */
|
|
3110
|
-
export declare enum SharingSettings_Select_Column {
|
|
3111
|
-
/** column name */
|
|
3112
|
-
CompanyId = "companyId",
|
|
3113
|
-
/** column name */
|
|
3114
|
-
Id = "id"
|
|
3115
|
-
}
|
|
3116
|
-
export type Subscription_Root = {
|
|
3117
|
-
__typename?: 'subscription_root';
|
|
3118
|
-
/** fetch data from the table: "clientDashboardLayout" */
|
|
3119
|
-
clientDashboardLayout: Array<ClientDashboardLayout>;
|
|
3120
|
-
/** fetch data from the table: "clientDashboardLayout" using primary key columns */
|
|
3121
|
-
clientDashboardLayout_by_pk?: Maybe<ClientDashboardLayout>;
|
|
3122
|
-
/** An array relationship */
|
|
3123
|
-
clientDashboardMetrics: Array<ClientDashboardMetrics>;
|
|
3124
|
-
/** fetch data from the table: "clientDashboardMetrics" using primary key columns */
|
|
3125
|
-
clientDashboardMetrics_by_pk?: Maybe<ClientDashboardMetrics>;
|
|
3126
|
-
/** An array relationship */
|
|
3127
|
-
clientDeletedMetrics: Array<ClientDeletedMetrics>;
|
|
3128
|
-
/** fetch data from the table: "clientDeletedMetrics" using primary key columns */
|
|
3129
|
-
clientDeletedMetrics_by_pk?: Maybe<ClientDeletedMetrics>;
|
|
3130
|
-
/** An array relationship */
|
|
3131
|
-
companyIntegrations: Array<CompanyIntegrations>;
|
|
3132
|
-
/** fetch data from the table: "companyIntegrations" using primary key columns */
|
|
3133
|
-
companyIntegrations_by_pk?: Maybe<CompanyIntegrations>;
|
|
3134
|
-
/** fetch data from the table: "companySubsetTables" */
|
|
3135
|
-
companySubsetTables: Array<CompanySubsetTables>;
|
|
3136
|
-
/** fetch data from the table: "companyWorkspaces" */
|
|
3137
|
-
companyWorkspaces: Array<CompanyWorkspaces>;
|
|
3138
|
-
/** fetch data from the table: "companyWorkspaces" using primary key columns */
|
|
3139
|
-
companyWorkspaces_by_pk?: Maybe<CompanyWorkspaces>;
|
|
3140
|
-
/** An array relationship */
|
|
3141
|
-
customSqlColumns: Array<CustomSqlColumns>;
|
|
3142
|
-
/** fetch data from the table: "customSqlColumns" using primary key columns */
|
|
3143
|
-
customSqlColumns_by_pk?: Maybe<CustomSqlColumns>;
|
|
3144
|
-
/** fetch data from the table: "demoTheme" */
|
|
3145
|
-
demoTheme: Array<DemoTheme>;
|
|
3146
|
-
/** fetch data from the table: "demoTheme" using primary key columns */
|
|
3147
|
-
demoTheme_by_pk?: Maybe<DemoTheme>;
|
|
3148
|
-
/** An array relationship */
|
|
3149
|
-
externalDashboardMetrics: Array<ExternalDashboardMetrics>;
|
|
3150
|
-
/** fetch data from the table: "externalDashboardMetrics" using primary key columns */
|
|
3151
|
-
externalDashboardMetrics_by_pk?: Maybe<ExternalDashboardMetrics>;
|
|
3152
|
-
/** An array relationship */
|
|
3153
|
-
externalDashboardThemeClients: Array<ExternalDashboardThemeClients>;
|
|
3154
|
-
/** fetch data from the table: "externalDashboardThemeClients" using primary key columns */
|
|
3155
|
-
externalDashboardThemeClients_by_pk?: Maybe<ExternalDashboardThemeClients>;
|
|
3156
|
-
/** fetch data from the table: "externalDashboardThemes" */
|
|
3157
|
-
externalDashboardThemes: Array<ExternalDashboardThemes>;
|
|
3158
|
-
/** fetch data from the table: "externalDashboardThemes" using primary key columns */
|
|
3159
|
-
externalDashboardThemes_by_pk?: Maybe<ExternalDashboardThemes>;
|
|
3160
|
-
/** An array relationship */
|
|
3161
|
-
externalDashboards: Array<ExternalDashboards>;
|
|
3162
|
-
/** fetch data from the table: "externalDashboards" using primary key columns */
|
|
3163
|
-
externalDashboards_by_pk?: Maybe<ExternalDashboards>;
|
|
3164
|
-
/** fetch data from the table: "externalMetricRawCsvUrls" */
|
|
3165
|
-
externalMetricRawCsvUrls: Array<ExternalMetricRawCsvUrls>;
|
|
3166
|
-
/** fetch data from the table: "externalMetricRawCsvUrls" using primary key columns */
|
|
3167
|
-
externalMetricRawCsvUrls_by_pk?: Maybe<ExternalMetricRawCsvUrls>;
|
|
3168
|
-
/** An array relationship */
|
|
3169
|
-
externalMetrics: Array<ExternalMetrics>;
|
|
3170
|
-
/** An array relationship */
|
|
3171
|
-
externalMetricsRlsFilters: Array<ExternalMetricsRlsFilters>;
|
|
3172
|
-
/** fetch data from the table: "externalMetricsRlsFilters" using primary key columns */
|
|
3173
|
-
externalMetricsRlsFilters_by_pk?: Maybe<ExternalMetricsRlsFilters>;
|
|
3174
|
-
/** fetch data from the table: "externalMetrics" using primary key columns */
|
|
3175
|
-
externalMetrics_by_pk?: Maybe<ExternalMetrics>;
|
|
3176
|
-
/** fetch data from the table: "guestTokens" */
|
|
3177
|
-
guestTokens: Array<GuestTokens>;
|
|
3178
|
-
/** fetch data from the table: "guestTokens" using primary key columns */
|
|
3179
|
-
guestTokens_by_pk?: Maybe<GuestTokens>;
|
|
3180
|
-
/** An array relationship */
|
|
3181
|
-
scheduleEmailReportCharts: Array<ScheduleEmailReportCharts>;
|
|
3182
|
-
/** fetch data from the table: "scheduleEmailReportCharts" using primary key columns */
|
|
3183
|
-
scheduleEmailReportCharts_by_pk?: Maybe<ScheduleEmailReportCharts>;
|
|
3184
|
-
/** An array relationship */
|
|
3185
|
-
scheduleEmailReports: Array<ScheduleEmailReports>;
|
|
3186
|
-
/** fetch data from the table: "scheduleEmailReports" using primary key columns */
|
|
3187
|
-
scheduleEmailReports_by_pk?: Maybe<ScheduleEmailReports>;
|
|
3188
|
-
shareCsvUrl?: Maybe<ShareCsvUrl>;
|
|
3189
|
-
/** fetch data from the table: "sharingSettings" */
|
|
3190
|
-
sharingSettings: Array<SharingSettings>;
|
|
3191
|
-
/** fetch data from the table: "sharingSettings" using primary key columns */
|
|
3192
|
-
sharingSettings_by_pk?: Maybe<SharingSettings>;
|
|
3193
|
-
/** fetch data from the table: "themes" */
|
|
3194
|
-
themes: Array<Themes>;
|
|
3195
|
-
/** fetch data from the table: "themes" using primary key columns */
|
|
3196
|
-
themes_by_pk?: Maybe<Themes>;
|
|
3197
|
-
/** fetch data from the table: "whitelistedDomains" */
|
|
3198
|
-
whitelistedDomains: Array<WhitelistedDomains>;
|
|
3199
|
-
/** fetch data from the table: "whitelistedDomains" using primary key columns */
|
|
3200
|
-
whitelistedDomains_by_pk?: Maybe<WhitelistedDomains>;
|
|
3201
|
-
};
|
|
3202
|
-
export type Subscription_RootClientDashboardLayoutArgs = {
|
|
3203
|
-
distinct_on?: InputMaybe<Array<ClientDashboardLayout_Select_Column>>;
|
|
3204
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
3205
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
3206
|
-
order_by?: InputMaybe<Array<ClientDashboardLayout_Order_By>>;
|
|
3207
|
-
where?: InputMaybe<ClientDashboardLayout_Bool_Exp>;
|
|
3208
|
-
};
|
|
3209
|
-
export type Subscription_RootClientDashboardLayout_By_PkArgs = {
|
|
3210
|
-
clientId: Scalars['String'];
|
|
3211
|
-
externalDashboardId: Scalars['uuid'];
|
|
3212
|
-
};
|
|
3213
|
-
export type Subscription_RootClientDashboardMetricsArgs = {
|
|
3214
|
-
distinct_on?: InputMaybe<Array<ClientDashboardMetrics_Select_Column>>;
|
|
3215
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
3216
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
3217
|
-
order_by?: InputMaybe<Array<ClientDashboardMetrics_Order_By>>;
|
|
3218
|
-
where?: InputMaybe<ClientDashboardMetrics_Bool_Exp>;
|
|
3219
|
-
};
|
|
3220
|
-
export type Subscription_RootClientDashboardMetrics_By_PkArgs = {
|
|
3221
|
-
clientId: Scalars['String'];
|
|
3222
|
-
externalDashboardId: Scalars['uuid'];
|
|
3223
|
-
};
|
|
3224
|
-
export type Subscription_RootClientDeletedMetricsArgs = {
|
|
3225
|
-
distinct_on?: InputMaybe<Array<ClientDeletedMetrics_Select_Column>>;
|
|
3226
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
3227
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
3228
|
-
order_by?: InputMaybe<Array<ClientDeletedMetrics_Order_By>>;
|
|
3229
|
-
where?: InputMaybe<ClientDeletedMetrics_Bool_Exp>;
|
|
3230
|
-
};
|
|
3231
|
-
export type Subscription_RootClientDeletedMetrics_By_PkArgs = {
|
|
3232
|
-
clientId: Scalars['String'];
|
|
3233
|
-
externalMetricId: Scalars['uuid'];
|
|
3234
|
-
};
|
|
3235
|
-
export type Subscription_RootCompanyIntegrationsArgs = {
|
|
3236
|
-
distinct_on?: InputMaybe<Array<CompanyIntegrations_Select_Column>>;
|
|
3237
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
3238
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
3239
|
-
order_by?: InputMaybe<Array<CompanyIntegrations_Order_By>>;
|
|
3240
|
-
where?: InputMaybe<CompanyIntegrations_Bool_Exp>;
|
|
3241
|
-
};
|
|
3242
|
-
export type Subscription_RootCompanyIntegrations_By_PkArgs = {
|
|
3243
|
-
id: Scalars['uuid'];
|
|
3244
|
-
};
|
|
3245
|
-
export type Subscription_RootCompanySubsetTablesArgs = {
|
|
3246
|
-
distinct_on?: InputMaybe<Array<CompanySubsetTables_Select_Column>>;
|
|
3247
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
3248
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
3249
|
-
order_by?: InputMaybe<Array<CompanySubsetTables_Order_By>>;
|
|
3250
|
-
where?: InputMaybe<CompanySubsetTables_Bool_Exp>;
|
|
3251
|
-
};
|
|
3252
|
-
export type Subscription_RootCompanyWorkspacesArgs = {
|
|
3253
|
-
distinct_on?: InputMaybe<Array<CompanyWorkspaces_Select_Column>>;
|
|
3254
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
3255
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
3256
|
-
order_by?: InputMaybe<Array<CompanyWorkspaces_Order_By>>;
|
|
3257
|
-
where?: InputMaybe<CompanyWorkspaces_Bool_Exp>;
|
|
3258
|
-
};
|
|
3259
|
-
export type Subscription_RootCompanyWorkspaces_By_PkArgs = {
|
|
3260
|
-
id: Scalars['uuid'];
|
|
3261
|
-
};
|
|
3262
|
-
export type Subscription_RootCustomSqlColumnsArgs = {
|
|
3263
|
-
distinct_on?: InputMaybe<Array<CustomSqlColumns_Select_Column>>;
|
|
3264
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
3265
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
3266
|
-
order_by?: InputMaybe<Array<CustomSqlColumns_Order_By>>;
|
|
3267
|
-
where?: InputMaybe<CustomSqlColumns_Bool_Exp>;
|
|
3268
|
-
};
|
|
3269
|
-
export type Subscription_RootCustomSqlColumns_By_PkArgs = {
|
|
3270
|
-
id: Scalars['uuid'];
|
|
3271
|
-
};
|
|
3272
|
-
export type Subscription_RootDemoThemeArgs = {
|
|
3273
|
-
distinct_on?: InputMaybe<Array<DemoTheme_Select_Column>>;
|
|
3274
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
3275
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
3276
|
-
order_by?: InputMaybe<Array<DemoTheme_Order_By>>;
|
|
3277
|
-
where?: InputMaybe<DemoTheme_Bool_Exp>;
|
|
3278
|
-
};
|
|
3279
|
-
export type Subscription_RootDemoTheme_By_PkArgs = {
|
|
3280
|
-
id: Scalars['uuid'];
|
|
3281
|
-
};
|
|
3282
|
-
export type Subscription_RootExternalDashboardMetricsArgs = {
|
|
3283
|
-
distinct_on?: InputMaybe<Array<ExternalDashboardMetrics_Select_Column>>;
|
|
3284
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
3285
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
3286
|
-
order_by?: InputMaybe<Array<ExternalDashboardMetrics_Order_By>>;
|
|
3287
|
-
where?: InputMaybe<ExternalDashboardMetrics_Bool_Exp>;
|
|
3288
|
-
};
|
|
3289
|
-
export type Subscription_RootExternalDashboardMetrics_By_PkArgs = {
|
|
3290
|
-
externalDashboardId: Scalars['uuid'];
|
|
3291
|
-
externalMetricId: Scalars['uuid'];
|
|
3292
|
-
};
|
|
3293
|
-
export type Subscription_RootExternalDashboardThemeClientsArgs = {
|
|
3294
|
-
distinct_on?: InputMaybe<Array<ExternalDashboardThemeClients_Select_Column>>;
|
|
3295
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
3296
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
3297
|
-
order_by?: InputMaybe<Array<ExternalDashboardThemeClients_Order_By>>;
|
|
3298
|
-
where?: InputMaybe<ExternalDashboardThemeClients_Bool_Exp>;
|
|
3299
|
-
};
|
|
3300
|
-
export type Subscription_RootExternalDashboardThemeClients_By_PkArgs = {
|
|
3301
|
-
id: Scalars['uuid'];
|
|
3302
|
-
};
|
|
3303
|
-
export type Subscription_RootExternalDashboardThemesArgs = {
|
|
3304
|
-
distinct_on?: InputMaybe<Array<ExternalDashboardThemes_Select_Column>>;
|
|
3305
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
3306
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
3307
|
-
order_by?: InputMaybe<Array<ExternalDashboardThemes_Order_By>>;
|
|
3308
|
-
where?: InputMaybe<ExternalDashboardThemes_Bool_Exp>;
|
|
3309
|
-
};
|
|
3310
|
-
export type Subscription_RootExternalDashboardThemes_By_PkArgs = {
|
|
3311
|
-
id: Scalars['uuid'];
|
|
3312
|
-
};
|
|
3313
|
-
export type Subscription_RootExternalDashboardsArgs = {
|
|
3314
|
-
distinct_on?: InputMaybe<Array<ExternalDashboards_Select_Column>>;
|
|
3315
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
3316
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
3317
|
-
order_by?: InputMaybe<Array<ExternalDashboards_Order_By>>;
|
|
3318
|
-
where?: InputMaybe<ExternalDashboards_Bool_Exp>;
|
|
3319
|
-
};
|
|
3320
|
-
export type Subscription_RootExternalDashboards_By_PkArgs = {
|
|
3321
|
-
id: Scalars['uuid'];
|
|
3322
|
-
};
|
|
3323
|
-
export type Subscription_RootExternalMetricRawCsvUrlsArgs = {
|
|
3324
|
-
distinct_on?: InputMaybe<Array<ExternalMetricRawCsvUrls_Select_Column>>;
|
|
3325
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
3326
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
3327
|
-
order_by?: InputMaybe<Array<ExternalMetricRawCsvUrls_Order_By>>;
|
|
3328
|
-
where?: InputMaybe<ExternalMetricRawCsvUrls_Bool_Exp>;
|
|
3329
|
-
};
|
|
3330
|
-
export type Subscription_RootExternalMetricRawCsvUrls_By_PkArgs = {
|
|
3331
|
-
id: Scalars['uuid'];
|
|
3332
|
-
};
|
|
3333
|
-
export type Subscription_RootExternalMetricsArgs = {
|
|
3334
|
-
distinct_on?: InputMaybe<Array<ExternalMetrics_Select_Column>>;
|
|
3335
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
3336
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
3337
|
-
order_by?: InputMaybe<Array<ExternalMetrics_Order_By>>;
|
|
3338
|
-
where?: InputMaybe<ExternalMetrics_Bool_Exp>;
|
|
3339
|
-
};
|
|
3340
|
-
export type Subscription_RootExternalMetricsRlsFiltersArgs = {
|
|
3341
|
-
distinct_on?: InputMaybe<Array<ExternalMetricsRlsFilters_Select_Column>>;
|
|
3342
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
3343
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
3344
|
-
order_by?: InputMaybe<Array<ExternalMetricsRlsFilters_Order_By>>;
|
|
3345
|
-
where?: InputMaybe<ExternalMetricsRlsFilters_Bool_Exp>;
|
|
3346
|
-
};
|
|
3347
|
-
export type Subscription_RootExternalMetricsRlsFilters_By_PkArgs = {
|
|
3348
|
-
id: Scalars['uuid'];
|
|
3349
|
-
};
|
|
3350
|
-
export type Subscription_RootExternalMetrics_By_PkArgs = {
|
|
3351
|
-
id: Scalars['uuid'];
|
|
3352
|
-
};
|
|
3353
|
-
export type Subscription_RootGuestTokensArgs = {
|
|
3354
|
-
distinct_on?: InputMaybe<Array<GuestTokens_Select_Column>>;
|
|
3355
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
3356
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
3357
|
-
order_by?: InputMaybe<Array<GuestTokens_Order_By>>;
|
|
3358
|
-
where?: InputMaybe<GuestTokens_Bool_Exp>;
|
|
3359
|
-
};
|
|
3360
|
-
export type Subscription_RootGuestTokens_By_PkArgs = {
|
|
3361
|
-
id: Scalars['uuid'];
|
|
3362
|
-
};
|
|
3363
|
-
export type Subscription_RootScheduleEmailReportChartsArgs = {
|
|
3364
|
-
distinct_on?: InputMaybe<Array<ScheduleEmailReportCharts_Select_Column>>;
|
|
3365
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
3366
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
3367
|
-
order_by?: InputMaybe<Array<ScheduleEmailReportCharts_Order_By>>;
|
|
3368
|
-
where?: InputMaybe<ScheduleEmailReportCharts_Bool_Exp>;
|
|
3369
|
-
};
|
|
3370
|
-
export type Subscription_RootScheduleEmailReportCharts_By_PkArgs = {
|
|
3371
|
-
id: Scalars['uuid'];
|
|
3372
|
-
};
|
|
3373
|
-
export type Subscription_RootScheduleEmailReportsArgs = {
|
|
3374
|
-
distinct_on?: InputMaybe<Array<ScheduleEmailReports_Select_Column>>;
|
|
3375
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
3376
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
3377
|
-
order_by?: InputMaybe<Array<ScheduleEmailReports_Order_By>>;
|
|
3378
|
-
where?: InputMaybe<ScheduleEmailReports_Bool_Exp>;
|
|
3379
|
-
};
|
|
3380
|
-
export type Subscription_RootScheduleEmailReports_By_PkArgs = {
|
|
3381
|
-
id: Scalars['uuid'];
|
|
3382
|
-
};
|
|
3383
|
-
export type Subscription_RootShareCsvUrlArgs = {
|
|
3384
|
-
id: Scalars['uuid'];
|
|
3385
|
-
};
|
|
3386
|
-
export type Subscription_RootSharingSettingsArgs = {
|
|
3387
|
-
distinct_on?: InputMaybe<Array<SharingSettings_Select_Column>>;
|
|
3388
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
3389
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
3390
|
-
order_by?: InputMaybe<Array<SharingSettings_Order_By>>;
|
|
3391
|
-
where?: InputMaybe<SharingSettings_Bool_Exp>;
|
|
3392
|
-
};
|
|
3393
|
-
export type Subscription_RootSharingSettings_By_PkArgs = {
|
|
3394
|
-
id: Scalars['uuid'];
|
|
3395
|
-
};
|
|
3396
|
-
export type Subscription_RootThemesArgs = {
|
|
3397
|
-
distinct_on?: InputMaybe<Array<Themes_Select_Column>>;
|
|
3398
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
3399
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
3400
|
-
order_by?: InputMaybe<Array<Themes_Order_By>>;
|
|
3401
|
-
where?: InputMaybe<Themes_Bool_Exp>;
|
|
3402
|
-
};
|
|
3403
|
-
export type Subscription_RootThemes_By_PkArgs = {
|
|
3404
|
-
id: Scalars['uuid'];
|
|
3405
|
-
};
|
|
3406
|
-
export type Subscription_RootWhitelistedDomainsArgs = {
|
|
3407
|
-
distinct_on?: InputMaybe<Array<WhitelistedDomains_Select_Column>>;
|
|
3408
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
3409
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
3410
|
-
order_by?: InputMaybe<Array<WhitelistedDomains_Order_By>>;
|
|
3411
|
-
where?: InputMaybe<WhitelistedDomains_Bool_Exp>;
|
|
3412
|
-
};
|
|
3413
|
-
export type Subscription_RootWhitelistedDomains_By_PkArgs = {
|
|
3414
|
-
companyId: Scalars['uuid'];
|
|
3415
|
-
};
|
|
3416
|
-
/** The global theme per company. */
|
|
3417
|
-
export type Themes = {
|
|
3418
|
-
__typename?: 'themes';
|
|
3419
|
-
cardDescription: Scalars['jsonb'];
|
|
3420
|
-
cardTitle: Scalars['jsonb'];
|
|
3421
|
-
chart: Scalars['jsonb'];
|
|
3422
|
-
companyId: Scalars['uuid'];
|
|
3423
|
-
dashboard: Scalars['jsonb'];
|
|
3424
|
-
general: Scalars['jsonb'];
|
|
3425
|
-
id: Scalars['uuid'];
|
|
3426
|
-
};
|
|
3427
|
-
/** The global theme per company. */
|
|
3428
|
-
export type ThemesCardDescriptionArgs = {
|
|
3429
|
-
path?: InputMaybe<Scalars['String']>;
|
|
3430
|
-
};
|
|
3431
|
-
/** The global theme per company. */
|
|
3432
|
-
export type ThemesCardTitleArgs = {
|
|
3433
|
-
path?: InputMaybe<Scalars['String']>;
|
|
3434
|
-
};
|
|
3435
|
-
/** The global theme per company. */
|
|
3436
|
-
export type ThemesChartArgs = {
|
|
3437
|
-
path?: InputMaybe<Scalars['String']>;
|
|
3438
|
-
};
|
|
3439
|
-
/** The global theme per company. */
|
|
3440
|
-
export type ThemesDashboardArgs = {
|
|
3441
|
-
path?: InputMaybe<Scalars['String']>;
|
|
3442
|
-
};
|
|
3443
|
-
/** The global theme per company. */
|
|
3444
|
-
export type ThemesGeneralArgs = {
|
|
3445
|
-
path?: InputMaybe<Scalars['String']>;
|
|
3446
|
-
};
|
|
3447
|
-
/** Boolean expression to filter rows from the table "themes". All fields are combined with a logical 'AND'. */
|
|
3448
|
-
export type Themes_Bool_Exp = {
|
|
3449
|
-
_and?: InputMaybe<Array<Themes_Bool_Exp>>;
|
|
3450
|
-
_not?: InputMaybe<Themes_Bool_Exp>;
|
|
3451
|
-
_or?: InputMaybe<Array<Themes_Bool_Exp>>;
|
|
3452
|
-
cardDescription?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
3453
|
-
cardTitle?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
3454
|
-
chart?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
3455
|
-
companyId?: InputMaybe<Uuid_Comparison_Exp>;
|
|
3456
|
-
dashboard?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
3457
|
-
general?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
3458
|
-
id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
3459
|
-
};
|
|
3460
|
-
/** Ordering options when selecting data from "themes". */
|
|
3461
|
-
export type Themes_Order_By = {
|
|
3462
|
-
cardDescription?: InputMaybe<Order_By>;
|
|
3463
|
-
cardTitle?: InputMaybe<Order_By>;
|
|
3464
|
-
chart?: InputMaybe<Order_By>;
|
|
3465
|
-
companyId?: InputMaybe<Order_By>;
|
|
3466
|
-
dashboard?: InputMaybe<Order_By>;
|
|
3467
|
-
general?: InputMaybe<Order_By>;
|
|
3468
|
-
id?: InputMaybe<Order_By>;
|
|
3469
|
-
};
|
|
3470
|
-
/** select columns of table "themes" */
|
|
3471
|
-
export declare enum Themes_Select_Column {
|
|
3472
|
-
/** column name */
|
|
3473
|
-
CardDescription = "cardDescription",
|
|
3474
|
-
/** column name */
|
|
3475
|
-
CardTitle = "cardTitle",
|
|
3476
|
-
/** column name */
|
|
3477
|
-
Chart = "chart",
|
|
3478
|
-
/** column name */
|
|
3479
|
-
CompanyId = "companyId",
|
|
3480
|
-
/** column name */
|
|
3481
|
-
Dashboard = "dashboard",
|
|
3482
|
-
/** column name */
|
|
3483
|
-
General = "general",
|
|
3484
|
-
/** column name */
|
|
3485
|
-
Id = "id"
|
|
3486
|
-
}
|
|
3487
|
-
/** Boolean expression to compare columns of type "timestamptz". All fields are combined with logical 'AND'. */
|
|
3488
|
-
export type Timestamptz_Comparison_Exp = {
|
|
3489
|
-
_eq?: InputMaybe<Scalars['timestamptz']>;
|
|
3490
|
-
_gt?: InputMaybe<Scalars['timestamptz']>;
|
|
3491
|
-
_gte?: InputMaybe<Scalars['timestamptz']>;
|
|
3492
|
-
_in?: InputMaybe<Array<Scalars['timestamptz']>>;
|
|
3493
|
-
_is_null?: InputMaybe<Scalars['Boolean']>;
|
|
3494
|
-
_lt?: InputMaybe<Scalars['timestamptz']>;
|
|
3495
|
-
_lte?: InputMaybe<Scalars['timestamptz']>;
|
|
3496
|
-
_neq?: InputMaybe<Scalars['timestamptz']>;
|
|
3497
|
-
_nin?: InputMaybe<Array<Scalars['timestamptz']>>;
|
|
3498
|
-
};
|
|
3499
|
-
/** Boolean expression to compare columns of type "uuid". All fields are combined with logical 'AND'. */
|
|
3500
|
-
export type Uuid_Comparison_Exp = {
|
|
3501
|
-
_eq?: InputMaybe<Scalars['uuid']>;
|
|
3502
|
-
_gt?: InputMaybe<Scalars['uuid']>;
|
|
3503
|
-
_gte?: InputMaybe<Scalars['uuid']>;
|
|
3504
|
-
_in?: InputMaybe<Array<Scalars['uuid']>>;
|
|
3505
|
-
_is_null?: InputMaybe<Scalars['Boolean']>;
|
|
3506
|
-
_lt?: InputMaybe<Scalars['uuid']>;
|
|
3507
|
-
_lte?: InputMaybe<Scalars['uuid']>;
|
|
3508
|
-
_neq?: InputMaybe<Scalars['uuid']>;
|
|
3509
|
-
_nin?: InputMaybe<Array<Scalars['uuid']>>;
|
|
3510
|
-
};
|
|
3511
|
-
/** Company whitelisted domains. */
|
|
3512
|
-
export type WhitelistedDomains = {
|
|
3513
|
-
__typename?: 'whitelistedDomains';
|
|
3514
|
-
companyId: Scalars['uuid'];
|
|
3515
|
-
domains: Scalars['jsonb'];
|
|
3516
|
-
};
|
|
3517
|
-
/** Company whitelisted domains. */
|
|
3518
|
-
export type WhitelistedDomainsDomainsArgs = {
|
|
3519
|
-
path?: InputMaybe<Scalars['String']>;
|
|
3520
|
-
};
|
|
3521
|
-
/** Boolean expression to filter rows from the table "whitelistedDomains". All fields are combined with a logical 'AND'. */
|
|
3522
|
-
export type WhitelistedDomains_Bool_Exp = {
|
|
3523
|
-
_and?: InputMaybe<Array<WhitelistedDomains_Bool_Exp>>;
|
|
3524
|
-
_not?: InputMaybe<WhitelistedDomains_Bool_Exp>;
|
|
3525
|
-
_or?: InputMaybe<Array<WhitelistedDomains_Bool_Exp>>;
|
|
3526
|
-
companyId?: InputMaybe<Uuid_Comparison_Exp>;
|
|
3527
|
-
domains?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
3528
|
-
};
|
|
3529
|
-
/** Ordering options when selecting data from "whitelistedDomains". */
|
|
3530
|
-
export type WhitelistedDomains_Order_By = {
|
|
3531
|
-
companyId?: InputMaybe<Order_By>;
|
|
3532
|
-
domains?: InputMaybe<Order_By>;
|
|
3533
|
-
};
|
|
3534
|
-
/** select columns of table "whitelistedDomains" */
|
|
3535
|
-
export declare enum WhitelistedDomains_Select_Column {
|
|
3536
|
-
/** column name */
|
|
3537
|
-
CompanyId = "companyId",
|
|
3538
|
-
/** column name */
|
|
3539
|
-
Domains = "domains"
|
|
3540
|
-
}
|
|
3541
|
-
export type GetEmbeddedMetricQueryVariables = Exact<{
|
|
3542
|
-
guestToken: Scalars['String'];
|
|
3543
|
-
metricId: Scalars['String'];
|
|
3544
|
-
}>;
|
|
3545
|
-
export type GetEmbeddedMetricQuery = {
|
|
3546
|
-
__typename?: 'query_root';
|
|
3547
|
-
embeddedMetricData?: {
|
|
3548
|
-
__typename?: 'EmbeddedMetricDataOutput';
|
|
3549
|
-
token?: string | null;
|
|
3550
|
-
params?: any | null;
|
|
3551
|
-
clientId?: string | null;
|
|
3552
|
-
companyId?: string | null;
|
|
3553
|
-
externalMetric?: any | null;
|
|
3554
|
-
adminTheme?: any | null;
|
|
3555
|
-
sharingSettingsId?: string | null;
|
|
3556
|
-
error?: {
|
|
3557
|
-
__typename?: 'Error';
|
|
3558
|
-
message: string;
|
|
3559
|
-
} | null;
|
|
3560
|
-
} | null;
|
|
3561
|
-
};
|
|
3562
|
-
export type CreateExternalMetricMutationVariables = Exact<{
|
|
3563
|
-
chartOptions?: InputMaybe<Scalars['jsonb']>;
|
|
3564
|
-
companyId?: InputMaybe<Scalars['uuid']>;
|
|
3565
|
-
companyIntegrationId?: InputMaybe<Scalars['uuid']>;
|
|
3566
|
-
description?: InputMaybe<Scalars['String']>;
|
|
3567
|
-
inputFields?: InputMaybe<Scalars['jsonb']>;
|
|
3568
|
-
integrationName?: InputMaybe<Scalars['String']>;
|
|
3569
|
-
metricId?: InputMaybe<Scalars['String']>;
|
|
3570
|
-
metricQuery?: InputMaybe<Scalars['String']>;
|
|
3571
|
-
name?: InputMaybe<Scalars['String']>;
|
|
3572
|
-
outputColumns?: InputMaybe<Scalars['String']>;
|
|
3573
|
-
query?: InputMaybe<Scalars['String']>;
|
|
3574
|
-
isLive?: InputMaybe<Scalars['Boolean']>;
|
|
3575
|
-
clientId?: InputMaybe<Scalars['String']>;
|
|
3576
|
-
isCreatedByClient?: InputMaybe<Scalars['Boolean']>;
|
|
3577
|
-
createdBy?: InputMaybe<Scalars['String']>;
|
|
3578
|
-
timeGrain?: InputMaybe<Scalars['String']>;
|
|
3579
|
-
externalDashboardIds?: InputMaybe<Array<ExternalDashboardMetrics_Insert_Input> | ExternalDashboardMetrics_Insert_Input>;
|
|
3580
|
-
selectedGroupBy?: InputMaybe<Scalars['jsonb']>;
|
|
3581
|
-
isEnableGroupBy?: InputMaybe<Scalars['Boolean']>;
|
|
3582
|
-
datasetMetricSettings?: InputMaybe<Scalars['jsonb']>;
|
|
3583
|
-
groupBy?: InputMaybe<Scalars['jsonb']>;
|
|
3584
|
-
}>;
|
|
3585
|
-
export type CreateExternalMetricMutation = {
|
|
3586
|
-
__typename?: 'mutation_root';
|
|
3587
|
-
insert_externalMetrics_one?: {
|
|
3588
|
-
__typename?: 'externalMetrics';
|
|
3589
|
-
id: any;
|
|
3590
|
-
externalDashboardMetrics: Array<{
|
|
3591
|
-
__typename?: 'externalDashboardMetrics';
|
|
3592
|
-
externalDashboardId: any;
|
|
3593
|
-
}>;
|
|
3594
|
-
} | null;
|
|
3595
|
-
};
|
|
3596
|
-
export type DeleteScheduleEmailReportChartsMutationVariables = Exact<{
|
|
3597
|
-
scheduleEmailReportId?: InputMaybe<Scalars['uuid']>;
|
|
3598
|
-
}>;
|
|
3599
|
-
export type DeleteScheduleEmailReportChartsMutation = {
|
|
3600
|
-
__typename?: 'mutation_root';
|
|
3601
|
-
delete_scheduleEmailReportCharts?: {
|
|
3602
|
-
__typename?: 'scheduleEmailReportCharts_mutation_response';
|
|
3603
|
-
affected_rows: number;
|
|
3604
|
-
} | null;
|
|
3605
|
-
};
|
|
3606
|
-
export type DeleteScheduledEmailMutationVariables = Exact<{
|
|
3607
|
-
id?: InputMaybe<Scalars['uuid']>;
|
|
3608
|
-
}>;
|
|
3609
|
-
export type DeleteScheduledEmailMutation = {
|
|
3610
|
-
__typename?: 'mutation_root';
|
|
3611
|
-
delete_scheduleEmailReports_by_pk?: {
|
|
3612
|
-
__typename?: 'scheduleEmailReports';
|
|
3613
|
-
id: any;
|
|
3614
|
-
} | null;
|
|
3615
|
-
};
|
|
3616
|
-
export type FetchColumnDataMutationVariables = Exact<{
|
|
3617
|
-
tableName?: InputMaybe<Scalars['String']>;
|
|
3618
|
-
columnName?: InputMaybe<Scalars['String']>;
|
|
3619
|
-
wId?: InputMaybe<Scalars['String']>;
|
|
3620
|
-
filter?: InputMaybe<Scalars['json']>;
|
|
3621
|
-
}>;
|
|
3622
|
-
export type FetchColumnDataMutation = {
|
|
3623
|
-
__typename?: 'mutation_root';
|
|
3624
|
-
fetchColumnData?: {
|
|
3625
|
-
__typename?: 'FetchColumnDataOutput';
|
|
3626
|
-
data?: Array<{
|
|
3627
|
-
__typename?: 'ColumnData';
|
|
3628
|
-
label: string;
|
|
3629
|
-
value: string;
|
|
3630
|
-
} | null> | null;
|
|
3631
|
-
error?: {
|
|
3632
|
-
__typename?: 'ColumnDataError';
|
|
3633
|
-
message: string;
|
|
3634
|
-
} | null;
|
|
3635
|
-
} | null;
|
|
3636
|
-
};
|
|
3637
|
-
export type GenerateDatasetMetricsMutationVariables = Exact<{
|
|
3638
|
-
userInputs?: InputMaybe<Scalars['json']>;
|
|
3639
|
-
integrationName?: InputMaybe<Scalars['String']>;
|
|
3640
|
-
integrationId?: InputMaybe<Scalars['String']>;
|
|
3641
|
-
}>;
|
|
3642
|
-
export type GenerateDatasetMetricsMutation = {
|
|
3643
|
-
__typename?: 'mutation_root';
|
|
3644
|
-
generateDatasetMetrics?: {
|
|
3645
|
-
__typename?: 'GenerateDatasetMetricsOutput';
|
|
3646
|
-
error?: any | null;
|
|
3647
|
-
query?: string | null;
|
|
3648
|
-
result?: any | null;
|
|
3649
|
-
timeTaken?: number | null;
|
|
3650
|
-
metaData?: any | null;
|
|
3651
|
-
} | null;
|
|
3652
|
-
};
|
|
3653
|
-
export type GenerateEmbeddedMeticMutationVariables = Exact<{
|
|
3654
|
-
clientId?: InputMaybe<Scalars['String']>;
|
|
3655
|
-
companyId?: InputMaybe<Scalars['String']>;
|
|
3656
|
-
queryPrompt?: InputMaybe<Scalars['String']>;
|
|
3657
|
-
timeGrain?: InputMaybe<Scalars['String']>;
|
|
3658
|
-
}>;
|
|
3659
|
-
export type GenerateEmbeddedMeticMutation = {
|
|
3660
|
-
__typename?: 'mutation_root';
|
|
3661
|
-
generateEmbeddedMetic?: {
|
|
3662
|
-
__typename?: 'GenerateEmbeddedMeticOutput';
|
|
3663
|
-
query?: string | null;
|
|
3664
|
-
result?: any | null;
|
|
3665
|
-
error?: {
|
|
3666
|
-
__typename?: 'Error';
|
|
3667
|
-
message: string;
|
|
3668
|
-
} | null;
|
|
3669
|
-
} | null;
|
|
3670
|
-
};
|
|
3671
|
-
export type CompanyIntegrationQueryVariables = Exact<{
|
|
3672
|
-
externalDashboardId?: InputMaybe<Scalars['uuid']>;
|
|
3673
|
-
}>;
|
|
3674
|
-
export type CompanyIntegrationQuery = {
|
|
3675
|
-
__typename?: 'query_root';
|
|
3676
|
-
companyIntegrations: Array<{
|
|
3677
|
-
__typename?: 'companyIntegrations';
|
|
3678
|
-
companyId: any;
|
|
3679
|
-
id: any;
|
|
3680
|
-
integrationId: any;
|
|
3681
|
-
name: string;
|
|
3682
|
-
}>;
|
|
3683
|
-
};
|
|
3684
|
-
export type CompanySubsetTableDataMutationVariables = Exact<{
|
|
3685
|
-
clientId?: InputMaybe<Scalars['String']>;
|
|
3686
|
-
companyId?: InputMaybe<Scalars['String']>;
|
|
3687
|
-
workspaceId?: InputMaybe<Scalars['String']>;
|
|
3688
|
-
}>;
|
|
3689
|
-
export type CompanySubsetTableDataMutation = {
|
|
3690
|
-
__typename?: 'mutation_root';
|
|
3691
|
-
companySubsetTableData?: {
|
|
3692
|
-
__typename?: 'companySubsetTableDataOutput';
|
|
3693
|
-
companyIntegrationId?: string | null;
|
|
3694
|
-
dbName?: string | null;
|
|
3695
|
-
error?: {
|
|
3696
|
-
__typename?: 'companySubsetTableDataError';
|
|
3697
|
-
message: string;
|
|
3698
|
-
} | null;
|
|
3699
|
-
tableList?: Array<{
|
|
3700
|
-
__typename?: 'TableList';
|
|
3701
|
-
tableName: string;
|
|
3702
|
-
clientColumn?: string | null;
|
|
3703
|
-
columns?: Array<{
|
|
3704
|
-
__typename?: 'SubsetColumns';
|
|
3705
|
-
datatype: string;
|
|
3706
|
-
name: string;
|
|
3707
|
-
as: string;
|
|
3708
|
-
} | null> | null;
|
|
3709
|
-
} | null> | null;
|
|
3710
|
-
} | null;
|
|
3711
|
-
};
|
|
3712
|
-
export type GetEmbeddedDashboardQueryVariables = Exact<{
|
|
3713
|
-
token: Scalars['String'];
|
|
3714
|
-
dashboardId?: InputMaybe<Scalars['String']>;
|
|
3715
|
-
}>;
|
|
3716
|
-
export type GetEmbeddedDashboardQuery = {
|
|
3717
|
-
__typename?: 'query_root';
|
|
3718
|
-
embeddedDashboardData?: {
|
|
3719
|
-
__typename?: 'EmbeddedDashboardDataOutput';
|
|
3720
|
-
externalDashboard?: any | null;
|
|
3721
|
-
isAllowedToChangeLayout?: boolean | null;
|
|
3722
|
-
isAllowedToCreateMetrics?: boolean | null;
|
|
3723
|
-
isAllowedToDeleteMetrics?: boolean | null;
|
|
3724
|
-
isAllowedToUpdateMetrics?: boolean | null;
|
|
3725
|
-
adminTheme?: any | null;
|
|
3726
|
-
clientId?: string | null;
|
|
3727
|
-
companyId?: string | null;
|
|
3728
|
-
companyTenancyType?: string | null;
|
|
3729
|
-
externalMetrics?: Array<any | null> | null;
|
|
3730
|
-
rlsSettings?: any | null;
|
|
3731
|
-
appFilters?: any | null;
|
|
3732
|
-
workspace?: any | null;
|
|
3733
|
-
sharingSettingsId?: string | null;
|
|
3734
|
-
error?: {
|
|
3735
|
-
__typename?: 'Error';
|
|
3736
|
-
message: string;
|
|
3737
|
-
} | null;
|
|
3738
|
-
} | null;
|
|
3739
|
-
};
|
|
3740
|
-
export type EmbeddedDashboardMetricsQueryVariables = Exact<{
|
|
3741
|
-
externalDashboardId?: Scalars['String'];
|
|
3742
|
-
clientId?: Scalars['String'];
|
|
3743
|
-
}>;
|
|
3744
|
-
export type EmbeddedDashboardMetricsQuery = {
|
|
3745
|
-
__typename?: 'query_root';
|
|
3746
|
-
externalDashboardMetrics: Array<{
|
|
3747
|
-
__typename?: 'externalDashboardMetrics';
|
|
3748
|
-
externalMetricId: any;
|
|
3749
|
-
externalDashboardId: any;
|
|
3750
|
-
externalMetric: {
|
|
3751
|
-
__typename?: 'externalMetrics';
|
|
3752
|
-
chartOptions: any;
|
|
3753
|
-
clientId?: string | null;
|
|
3754
|
-
companyId: any;
|
|
3755
|
-
companyIntegrationId: any;
|
|
3756
|
-
createdAt: any;
|
|
3757
|
-
createdBy?: string | null;
|
|
3758
|
-
description: string;
|
|
3759
|
-
id: any;
|
|
3760
|
-
inputFields?: any | null;
|
|
3761
|
-
integrationName: string;
|
|
3762
|
-
isCreatedByClient: boolean;
|
|
3763
|
-
isLive: boolean;
|
|
3764
|
-
metricId: string;
|
|
3765
|
-
metricQuery?: string | null;
|
|
3766
|
-
name: string;
|
|
3767
|
-
outputColumns?: string | null;
|
|
3768
|
-
query: string;
|
|
3769
|
-
timeGrain?: string | null;
|
|
3770
|
-
updatedAt: any;
|
|
3771
|
-
selectedGroupBy: any;
|
|
3772
|
-
isEnableGroupBy: boolean;
|
|
3773
|
-
groupBy: any;
|
|
3774
|
-
resizeAttributes: any;
|
|
3775
|
-
rlsConditions: any;
|
|
3776
|
-
clickActions: any;
|
|
3777
|
-
drillDownSettings?: any | null;
|
|
3778
|
-
datasetMetricSettings?: any | null;
|
|
3779
|
-
companyIntegration: {
|
|
3780
|
-
__typename?: 'companyIntegrations';
|
|
3781
|
-
name: string;
|
|
3782
|
-
workspaceId: any;
|
|
3783
|
-
};
|
|
3784
|
-
};
|
|
3785
|
-
}>;
|
|
3786
|
-
};
|
|
3787
|
-
export type GetExternalDashboardClientThemeQueryVariables = Exact<{
|
|
3788
|
-
companyId: Scalars['uuid'];
|
|
3789
|
-
clientId: Scalars['String'];
|
|
3790
|
-
}>;
|
|
3791
|
-
export type GetExternalDashboardClientThemeQuery = {
|
|
3792
|
-
__typename?: 'query_root';
|
|
3793
|
-
externalDashboardThemes: Array<{
|
|
3794
|
-
__typename?: 'externalDashboardThemes';
|
|
3795
|
-
colors: any;
|
|
3796
|
-
createdAt: any;
|
|
3797
|
-
id: any;
|
|
3798
|
-
name: string;
|
|
3799
|
-
}>;
|
|
3800
|
-
};
|
|
3801
|
-
export type GetExternalDashboardIdQueryVariables = Exact<{
|
|
3802
|
-
externalDashboardId?: InputMaybe<Scalars['String']>;
|
|
3803
|
-
}>;
|
|
3804
|
-
export type GetExternalDashboardIdQuery = {
|
|
3805
|
-
__typename?: 'query_root';
|
|
3806
|
-
externalDashboards: Array<{
|
|
3807
|
-
__typename?: 'externalDashboards';
|
|
3808
|
-
id: any;
|
|
3809
|
-
name: string;
|
|
3810
|
-
filters: any;
|
|
3811
|
-
layout: any;
|
|
3812
|
-
}>;
|
|
3813
|
-
};
|
|
3814
|
-
export type GetExternalDashboardLayoutQueryVariables = Exact<{
|
|
3815
|
-
clientId: Scalars['String'];
|
|
3816
|
-
externalDashboardId: Scalars['uuid'];
|
|
3817
|
-
}>;
|
|
3818
|
-
export type GetExternalDashboardLayoutQuery = {
|
|
3819
|
-
__typename?: 'query_root';
|
|
3820
|
-
clientDashboardLayout_by_pk?: {
|
|
3821
|
-
__typename?: 'clientDashboardLayout';
|
|
3822
|
-
clientId: string;
|
|
3823
|
-
externalDashboardId: any;
|
|
3824
|
-
layout: any;
|
|
3825
|
-
isLocked: boolean;
|
|
3826
|
-
} | null;
|
|
3827
|
-
};
|
|
3828
|
-
export type ExternalDashboardListQueryVariables = Exact<{
|
|
3829
|
-
companyId?: InputMaybe<Scalars['uuid']>;
|
|
3830
|
-
}>;
|
|
3831
|
-
export type ExternalDashboardListQuery = {
|
|
3832
|
-
__typename?: 'query_root';
|
|
3833
|
-
externalDashboards: Array<{
|
|
3834
|
-
__typename?: 'externalDashboards';
|
|
3835
|
-
externalDashboardId: string;
|
|
3836
|
-
name: string;
|
|
3837
|
-
id: any;
|
|
3838
|
-
}>;
|
|
3839
|
-
};
|
|
3840
|
-
export type ExternalMetricRawCsvUrlsQueryVariables = Exact<{
|
|
3841
|
-
externalMetricId?: InputMaybe<Scalars['uuid']>;
|
|
3842
|
-
}>;
|
|
3843
|
-
export type ExternalMetricRawCsvUrlsQuery = {
|
|
3844
|
-
__typename?: 'query_root';
|
|
3845
|
-
externalMetricRawCsvUrls: Array<{
|
|
3846
|
-
__typename?: 'externalMetricRawCsvUrls';
|
|
3847
|
-
configurations: any;
|
|
3848
|
-
error?: string | null;
|
|
3849
|
-
expireUrlIn: number;
|
|
3850
|
-
externalMetricId: any;
|
|
3851
|
-
id: any;
|
|
3852
|
-
lastUpdatedAt: any;
|
|
3853
|
-
urls: any;
|
|
3854
|
-
requestStatus: string;
|
|
3855
|
-
}>;
|
|
3856
|
-
};
|
|
3857
|
-
export type GuestTokenParamsQueryVariables = Exact<{
|
|
3858
|
-
id?: InputMaybe<Scalars['uuid']>;
|
|
3859
|
-
}>;
|
|
3860
|
-
export type GuestTokenParamsQuery = {
|
|
3861
|
-
__typename?: 'query_root';
|
|
3862
|
-
guestTokens_by_pk?: {
|
|
3863
|
-
__typename?: 'guestTokens';
|
|
3864
|
-
clientId: string;
|
|
3865
|
-
companyId: any;
|
|
3866
|
-
id: any;
|
|
3867
|
-
params: any;
|
|
3868
|
-
} | null;
|
|
3869
|
-
};
|
|
3870
|
-
export type MetricAccessQueryVariables = Exact<{
|
|
3871
|
-
workspaceId?: InputMaybe<Scalars['uuid']>;
|
|
3872
|
-
}>;
|
|
3873
|
-
export type MetricAccessQuery = {
|
|
3874
|
-
__typename?: 'query_root';
|
|
3875
|
-
companySubsetTables: Array<{
|
|
3876
|
-
__typename?: 'companySubsetTables';
|
|
3877
|
-
isAllowMetricCreation: boolean;
|
|
3878
|
-
isAllowMetricDeletion: boolean;
|
|
3879
|
-
isAllowMetricUpdation: boolean;
|
|
3880
|
-
isAllowChangeLayout: boolean;
|
|
3881
|
-
}>;
|
|
3882
|
-
};
|
|
3883
|
-
export type RawCsvSettingsQueryVariables = Exact<{
|
|
3884
|
-
id?: InputMaybe<Scalars['uuid']>;
|
|
3885
|
-
}>;
|
|
3886
|
-
export type RawCsvSettingsQuery = {
|
|
3887
|
-
__typename?: 'query_root';
|
|
3888
|
-
companyWorkspaces_by_pk?: {
|
|
3889
|
-
__typename?: 'companyWorkspaces';
|
|
3890
|
-
rawCsvSettings: any;
|
|
3891
|
-
id: any;
|
|
3892
|
-
} | null;
|
|
3893
|
-
};
|
|
3894
|
-
export type ScheduleEmailReportQueryVariables = Exact<{
|
|
3895
|
-
token?: InputMaybe<Scalars['uuid']>;
|
|
3896
|
-
}>;
|
|
3897
|
-
export type ScheduleEmailReportQuery = {
|
|
3898
|
-
__typename?: 'query_root';
|
|
3899
|
-
scheduleEmailReports: Array<{
|
|
3900
|
-
__typename?: 'scheduleEmailReports';
|
|
3901
|
-
externalDashboardId: any;
|
|
3902
|
-
guestToken: any;
|
|
3903
|
-
nextScheduledAt: string;
|
|
3904
|
-
sharingSettingsId: any;
|
|
3905
|
-
subject: string;
|
|
3906
|
-
timeConfigurations: any;
|
|
3907
|
-
id: any;
|
|
3908
|
-
}>;
|
|
3909
|
-
};
|
|
3910
|
-
export type SharingSettingsIdQueryVariables = Exact<{
|
|
3911
|
-
companyId?: InputMaybe<Scalars['uuid']>;
|
|
3912
|
-
}>;
|
|
3913
|
-
export type SharingSettingsIdQuery = {
|
|
3914
|
-
__typename?: 'query_root';
|
|
3915
|
-
sharingSettings: Array<{
|
|
3916
|
-
__typename?: 'sharingSettings';
|
|
3917
|
-
id: any;
|
|
3918
|
-
}>;
|
|
3919
|
-
};
|
|
3920
|
-
export type GetThemesQueryVariables = Exact<{
|
|
3921
|
-
companyId?: Scalars['uuid'];
|
|
3922
|
-
}>;
|
|
3923
|
-
export type GetThemesQuery = {
|
|
3924
|
-
__typename?: 'query_root';
|
|
3925
|
-
themes: Array<{
|
|
3926
|
-
__typename?: 'themes';
|
|
3927
|
-
id: any;
|
|
3928
|
-
companyId: any;
|
|
3929
|
-
general: any;
|
|
3930
|
-
dashboard: any;
|
|
3931
|
-
cardTitle: any;
|
|
3932
|
-
cardDescription: any;
|
|
3933
|
-
chart: any;
|
|
3934
|
-
}>;
|
|
3935
|
-
};
|
|
3936
|
-
export type UnderlyingDataMutationVariables = Exact<{
|
|
3937
|
-
columnName?: InputMaybe<Scalars['String']>;
|
|
3938
|
-
companyId?: InputMaybe<Scalars['String']>;
|
|
3939
|
-
query?: InputMaybe<Scalars['String']>;
|
|
3940
|
-
value?: InputMaybe<Scalars['json']>;
|
|
3941
|
-
workspaceId?: InputMaybe<Scalars['String']>;
|
|
3942
|
-
metricId?: InputMaybe<Scalars['String']>;
|
|
3943
|
-
}>;
|
|
3944
|
-
export type UnderlyingDataMutation = {
|
|
3945
|
-
__typename?: 'mutation_root';
|
|
3946
|
-
getUnderlyingData?: {
|
|
3947
|
-
__typename?: 'GetUnderlyingDataOutput';
|
|
3948
|
-
data: Array<any | null>;
|
|
3949
|
-
timeTaken: number;
|
|
3950
|
-
} | null;
|
|
3951
|
-
};
|
|
3952
|
-
export type InvokeSaveRawCsvDetailsMutationVariables = Exact<{
|
|
3953
|
-
configurations?: InputMaybe<Scalars['json']>;
|
|
3954
|
-
expireCsvFileAt?: InputMaybe<Scalars['String']>;
|
|
3955
|
-
externalMetricId?: InputMaybe<Scalars['String']>;
|
|
3956
|
-
integrationId?: InputMaybe<Scalars['String']>;
|
|
3957
|
-
integrationName?: InputMaybe<Scalars['String']>;
|
|
3958
|
-
query?: InputMaybe<Scalars['String']>;
|
|
3959
|
-
expireUrlIn?: InputMaybe<Scalars['Int']>;
|
|
3960
|
-
}>;
|
|
3961
|
-
export type InvokeSaveRawCsvDetailsMutation = {
|
|
3962
|
-
__typename?: 'mutation_root';
|
|
3963
|
-
invokeSaveRawCsvDetails?: {
|
|
3964
|
-
__typename?: 'InvokeSaveRawCsvDetailsOutput';
|
|
3965
|
-
error?: string | null;
|
|
3966
|
-
statusCode?: number | null;
|
|
3967
|
-
} | null;
|
|
3968
|
-
};
|
|
3969
|
-
export type InvokeSendCsvUrlMutationVariables = Exact<{
|
|
3970
|
-
configurations?: InputMaybe<Scalars['json']>;
|
|
3971
|
-
emails?: InputMaybe<Array<InputMaybe<Scalars['String']>> | InputMaybe<Scalars['String']>>;
|
|
3972
|
-
expireCsvFileAt?: InputMaybe<Scalars['String']>;
|
|
3973
|
-
expireUrlIn?: InputMaybe<Scalars['Int']>;
|
|
3974
|
-
externalMetricId?: InputMaybe<Scalars['String']>;
|
|
3975
|
-
integrationId?: InputMaybe<Scalars['String']>;
|
|
3976
|
-
integrationName?: InputMaybe<Scalars['String']>;
|
|
3977
|
-
query?: InputMaybe<Scalars['String']>;
|
|
3978
|
-
sharingSettingsId?: InputMaybe<Scalars['String']>;
|
|
3979
|
-
subject?: InputMaybe<Scalars['String']>;
|
|
3980
|
-
}>;
|
|
3981
|
-
export type InvokeSendCsvUrlMutation = {
|
|
3982
|
-
__typename?: 'mutation_root';
|
|
3983
|
-
invokeSendCsvUrl?: {
|
|
3984
|
-
__typename?: 'InvokeSaveRawCsvDetailsOutput';
|
|
3985
|
-
error?: string | null;
|
|
3986
|
-
statusCode?: number | null;
|
|
3987
|
-
} | null;
|
|
3988
|
-
};
|
|
3989
|
-
export type InvokeShareCsvUrlMutationVariables = Exact<{
|
|
3990
|
-
configurations?: InputMaybe<Scalars['json']>;
|
|
3991
|
-
emails?: InputMaybe<Array<InputMaybe<Scalars['String']>> | InputMaybe<Scalars['String']>>;
|
|
3992
|
-
expireCsvFileAt?: InputMaybe<Scalars['String']>;
|
|
3993
|
-
expireUrlIn?: InputMaybe<Scalars['Int']>;
|
|
3994
|
-
externalMetricId?: InputMaybe<Scalars['String']>;
|
|
3995
|
-
integrationId?: InputMaybe<Scalars['String']>;
|
|
3996
|
-
integrationName?: InputMaybe<Scalars['String']>;
|
|
3997
|
-
query?: InputMaybe<Scalars['String']>;
|
|
3998
|
-
sharingSettingsId?: InputMaybe<Scalars['String']>;
|
|
3999
|
-
subject?: InputMaybe<Scalars['String']>;
|
|
4000
|
-
}>;
|
|
4001
|
-
export type InvokeShareCsvUrlMutation = {
|
|
4002
|
-
__typename?: 'mutation_root';
|
|
4003
|
-
shareCsvUrl: any;
|
|
4004
|
-
};
|
|
4005
|
-
export type MarkArchiveMetricMutationVariables = Exact<{
|
|
4006
|
-
id?: Scalars['uuid'];
|
|
4007
|
-
clientId?: Scalars['String'];
|
|
4008
|
-
}>;
|
|
4009
|
-
export type MarkArchiveMetricMutation = {
|
|
4010
|
-
__typename?: 'mutation_root';
|
|
4011
|
-
insert_clientDeletedMetrics_one?: {
|
|
4012
|
-
__typename?: 'clientDeletedMetrics';
|
|
4013
|
-
clientId: string;
|
|
4014
|
-
externalMetricId: any;
|
|
4015
|
-
} | null;
|
|
4016
|
-
};
|
|
4017
|
-
export type PreviewTableMutationVariables = Exact<{
|
|
4018
|
-
tableName?: InputMaybe<Scalars['String']>;
|
|
4019
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
4020
|
-
integrationId?: InputMaybe<Scalars['String']>;
|
|
4021
|
-
integrationName?: InputMaybe<Scalars['String']>;
|
|
4022
|
-
}>;
|
|
4023
|
-
export type PreviewTableMutation = {
|
|
4024
|
-
__typename?: 'mutation_root';
|
|
4025
|
-
previewTable?: {
|
|
4026
|
-
__typename?: 'PreviewTableOutput';
|
|
4027
|
-
data?: {
|
|
4028
|
-
__typename?: 'PreviewTableData';
|
|
4029
|
-
data?: any | null;
|
|
4030
|
-
isError: boolean;
|
|
4031
|
-
name: string;
|
|
4032
|
-
} | null;
|
|
4033
|
-
error?: {
|
|
4034
|
-
__typename?: 'PreviewTableError';
|
|
4035
|
-
message: string;
|
|
4036
|
-
} | null;
|
|
4037
|
-
} | null;
|
|
4038
|
-
};
|
|
4039
|
-
export type QueryExternalMetricQueryVariables = Exact<{
|
|
4040
|
-
id?: InputMaybe<Scalars['String']>;
|
|
4041
|
-
clientId?: InputMaybe<Scalars['String']>;
|
|
4042
|
-
globalFilters?: InputMaybe<Scalars['json']>;
|
|
4043
|
-
rlsConditions?: InputMaybe<Scalars['json']>;
|
|
4044
|
-
filterValues?: InputMaybe<Scalars['json']>;
|
|
4045
|
-
tenancyLevel?: InputMaybe<Scalars['String']>;
|
|
4046
|
-
drillFilters?: InputMaybe<Scalars['json']>;
|
|
4047
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
4048
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
4049
|
-
}>;
|
|
4050
|
-
export type QueryExternalMetricQuery = {
|
|
4051
|
-
__typename?: 'query_root';
|
|
4052
|
-
externalMetricQuery?: {
|
|
4053
|
-
__typename?: 'ExternalMetricQueryOutput';
|
|
4054
|
-
data?: any | null;
|
|
4055
|
-
timeTaken?: number | null;
|
|
4056
|
-
totalRecords?: number | null;
|
|
4057
|
-
metaData?: any | null;
|
|
4058
|
-
} | null;
|
|
4059
|
-
};
|
|
4060
|
-
export type RawCsvMutationVariables = Exact<{
|
|
4061
|
-
companyId?: InputMaybe<Scalars['String']>;
|
|
4062
|
-
recipientAddress?: InputMaybe<Scalars['String']>;
|
|
4063
|
-
sqlQuery?: InputMaybe<Scalars['String']>;
|
|
4064
|
-
metricName?: InputMaybe<Scalars['String']>;
|
|
4065
|
-
workspaceId?: InputMaybe<Scalars['String']>;
|
|
4066
|
-
}>;
|
|
4067
|
-
export type RawCsvMutation = {
|
|
4068
|
-
__typename?: 'mutation_root';
|
|
4069
|
-
sendRawCsv?: {
|
|
4070
|
-
__typename?: 'SendRawCsvOutput';
|
|
4071
|
-
status?: string | null;
|
|
4072
|
-
error?: {
|
|
4073
|
-
__typename?: 'Error';
|
|
4074
|
-
message: string;
|
|
4075
|
-
} | null;
|
|
4076
|
-
} | null;
|
|
4077
|
-
};
|
|
4078
|
-
export type SaveExternalDashboardLayoutMutationVariables = Exact<{
|
|
4079
|
-
clientId: Scalars['String'];
|
|
4080
|
-
externalDashboardId: Scalars['uuid'];
|
|
4081
|
-
layout: Scalars['jsonb'];
|
|
4082
|
-
isLocked?: InputMaybe<Scalars['Boolean']>;
|
|
4083
|
-
}>;
|
|
4084
|
-
export type SaveExternalDashboardLayoutMutation = {
|
|
4085
|
-
__typename?: 'mutation_root';
|
|
4086
|
-
insert_clientDashboardLayout_one?: {
|
|
4087
|
-
__typename?: 'clientDashboardLayout';
|
|
4088
|
-
clientId: string;
|
|
4089
|
-
externalDashboardId: any;
|
|
4090
|
-
layout: any;
|
|
4091
|
-
isLocked: boolean;
|
|
4092
|
-
} | null;
|
|
4093
|
-
};
|
|
4094
|
-
export type SaveScheduleEmailMutationVariables = Exact<{
|
|
4095
|
-
emails?: InputMaybe<Scalars['json']>;
|
|
4096
|
-
externalDashboardId?: InputMaybe<Scalars['uuid']>;
|
|
4097
|
-
guestToken?: InputMaybe<Scalars['uuid']>;
|
|
4098
|
-
nextScheduledAt?: InputMaybe<Scalars['String']>;
|
|
4099
|
-
sharingSettingsId?: InputMaybe<Scalars['uuid']>;
|
|
4100
|
-
subject?: InputMaybe<Scalars['String']>;
|
|
4101
|
-
timeConfigurations?: InputMaybe<Scalars['json']>;
|
|
4102
|
-
data?: InputMaybe<Array<ScheduleEmailReportCharts_Insert_Input> | ScheduleEmailReportCharts_Insert_Input>;
|
|
4103
|
-
}>;
|
|
4104
|
-
export type SaveScheduleEmailMutation = {
|
|
4105
|
-
__typename?: 'mutation_root';
|
|
4106
|
-
insert_scheduleEmailReports_one?: {
|
|
4107
|
-
__typename?: 'scheduleEmailReports';
|
|
4108
|
-
emails: any;
|
|
4109
|
-
externalDashboardId: any;
|
|
4110
|
-
guestToken: any;
|
|
4111
|
-
id: any;
|
|
4112
|
-
nextScheduledAt: string;
|
|
4113
|
-
sharingSettingsId: any;
|
|
4114
|
-
subject: string;
|
|
4115
|
-
timeConfigurations: any;
|
|
4116
|
-
scheduleEmailReportCharts: Array<{
|
|
4117
|
-
__typename?: 'scheduleEmailReportCharts';
|
|
4118
|
-
externalMetricId: any;
|
|
4119
|
-
id: any;
|
|
4120
|
-
scheduleEmailReportId: any;
|
|
4121
|
-
}>;
|
|
4122
|
-
} | null;
|
|
4123
|
-
};
|
|
4124
|
-
export type UpdateAdminMetricMutationVariables = Exact<{
|
|
4125
|
-
externalMetricId: Scalars['uuid'];
|
|
4126
|
-
object: ExternalMetrics_Insert_Input;
|
|
4127
|
-
clientId: Scalars['String'];
|
|
4128
|
-
}>;
|
|
4129
|
-
export type UpdateAdminMetricMutation = {
|
|
4130
|
-
__typename?: 'mutation_root';
|
|
4131
|
-
insert_clientDeletedMetrics_one?: {
|
|
4132
|
-
__typename?: 'clientDeletedMetrics';
|
|
4133
|
-
clientId: string;
|
|
4134
|
-
externalMetricId: any;
|
|
4135
|
-
} | null;
|
|
4136
|
-
insert_externalMetrics_one?: {
|
|
4137
|
-
__typename?: 'externalMetrics';
|
|
4138
|
-
chartOptions: any;
|
|
4139
|
-
clientId?: string | null;
|
|
4140
|
-
companyId: any;
|
|
4141
|
-
companyIntegrationId: any;
|
|
4142
|
-
createdAt: any;
|
|
4143
|
-
createdBy?: string | null;
|
|
4144
|
-
description: string;
|
|
4145
|
-
id: any;
|
|
4146
|
-
inputFields?: any | null;
|
|
4147
|
-
integrationName: string;
|
|
4148
|
-
isCreatedByClient: boolean;
|
|
4149
|
-
isLive: boolean;
|
|
4150
|
-
metricId: string;
|
|
4151
|
-
metricQuery?: string | null;
|
|
4152
|
-
name: string;
|
|
4153
|
-
datasetMetricSettings?: any | null;
|
|
4154
|
-
outputColumns?: string | null;
|
|
4155
|
-
query: string;
|
|
4156
|
-
timeGrain?: string | null;
|
|
4157
|
-
updatedAt: any;
|
|
4158
|
-
selectedGroupBy: any;
|
|
4159
|
-
isEnableGroupBy: boolean;
|
|
4160
|
-
groupBy: any;
|
|
4161
|
-
rlsConditions: any;
|
|
4162
|
-
clickActions: any;
|
|
4163
|
-
companyIntegration: {
|
|
4164
|
-
__typename?: 'companyIntegrations';
|
|
4165
|
-
name: string;
|
|
4166
|
-
};
|
|
4167
|
-
} | null;
|
|
4168
|
-
};
|
|
4169
|
-
export type UpdateCsvDownloadStatusMutationVariables = Exact<{
|
|
4170
|
-
configurations?: InputMaybe<Scalars['jsonb']>;
|
|
4171
|
-
expireUrlIn?: InputMaybe<Scalars['Int']>;
|
|
4172
|
-
externalMetricId?: InputMaybe<Scalars['uuid']>;
|
|
4173
|
-
requestStatus?: InputMaybe<Scalars['String']>;
|
|
4174
|
-
urls?: InputMaybe<Scalars['jsonb']>;
|
|
4175
|
-
}>;
|
|
4176
|
-
export type UpdateCsvDownloadStatusMutation = {
|
|
4177
|
-
__typename?: 'mutation_root';
|
|
4178
|
-
insert_externalMetricRawCsvUrls_one?: {
|
|
4179
|
-
__typename?: 'externalMetricRawCsvUrls';
|
|
4180
|
-
id: any;
|
|
4181
|
-
requestStatus: string;
|
|
4182
|
-
configurations: any;
|
|
4183
|
-
error?: string | null;
|
|
4184
|
-
expireUrlIn: number;
|
|
4185
|
-
externalMetricId: any;
|
|
4186
|
-
lastUpdatedAt: any;
|
|
4187
|
-
urls: any;
|
|
4188
|
-
} | null;
|
|
4189
|
-
};
|
|
4190
|
-
export type UpdateExternalMetricMutationVariables = Exact<{
|
|
4191
|
-
externalMetricId: Scalars['uuid'];
|
|
4192
|
-
set: ExternalMetrics_Set_Input;
|
|
4193
|
-
}>;
|
|
4194
|
-
export type UpdateExternalMetricMutation = {
|
|
4195
|
-
__typename?: 'mutation_root';
|
|
4196
|
-
update_externalMetrics_by_pk?: {
|
|
4197
|
-
__typename?: 'externalMetrics';
|
|
4198
|
-
id: any;
|
|
4199
|
-
} | null;
|
|
4200
|
-
};
|
|
4201
|
-
export declare const GetEmbeddedMetricDocument = "\n query GetEmbeddedMetric($guestToken: String!, $metricId: String!) {\n embeddedMetricData(input: {guestToken: $guestToken, metricId: $metricId}) {\n token\n params\n clientId\n companyId\n externalMetric\n adminTheme\n sharingSettingsId\n error {\n message\n }\n }\n}\n ";
|
|
4202
|
-
export declare const useGetEmbeddedMetricQuery: <TData = GetEmbeddedMetricQuery, TError = unknown>(variables: GetEmbeddedMetricQueryVariables, options?: UseQueryOptions<GetEmbeddedMetricQuery, TError, TData, import("react-query").QueryKey> | undefined) => import("react-query").UseQueryResult<TData, TError>;
|
|
4203
|
-
export declare const CreateExternalMetricDocument = "\n mutation CreateExternalMetric($chartOptions: jsonb = \"\", $companyId: uuid = \"\", $companyIntegrationId: uuid = \"\", $description: String = \"\", $inputFields: jsonb = \"\", $integrationName: String = \"\", $metricId: String = \"\", $metricQuery: String = \"\", $name: String = \"\", $outputColumns: String = \"\", $query: String = \"\", $isLive: Boolean, $clientId: String = \"\", $isCreatedByClient: Boolean = false, $createdBy: String = \"\", $timeGrain: String = \"\", $externalDashboardIds: [externalDashboardMetrics_insert_input!] = {}, $selectedGroupBy: jsonb = [], $isEnableGroupBy: Boolean = false, $datasetMetricSettings: jsonb = \"\", $groupBy: jsonb = {}) {\n insert_externalMetrics_one(\n object: {chartOptions: $chartOptions, companyId: $companyId, companyIntegrationId: $companyIntegrationId, description: $description, inputFields: $inputFields, integrationName: $integrationName, metricId: $metricId, metricQuery: $metricQuery, name: $name, outputColumns: $outputColumns, query: $query, isLive: $isLive, clientId: $clientId, isCreatedByClient: $isCreatedByClient, createdBy: $createdBy, timeGrain: $timeGrain, externalDashboardMetrics: {data: $externalDashboardIds}, selectedGroupBy: $selectedGroupBy, isEnableGroupBy: $isEnableGroupBy, groupBy: $groupBy, datasetMetricSettings: $datasetMetricSettings}\n ) {\n id\n externalDashboardMetrics {\n externalDashboardId\n }\n }\n}\n ";
|
|
4204
|
-
export declare const useCreateExternalMetricMutation: <TError = unknown, TContext = unknown>(options?: UseMutationOptions<CreateExternalMetricMutation, TError, Exact<{
|
|
4205
|
-
chartOptions?: InputMaybe<Scalars['jsonb']>;
|
|
4206
|
-
companyId?: InputMaybe<Scalars['uuid']>;
|
|
4207
|
-
companyIntegrationId?: InputMaybe<Scalars['uuid']>;
|
|
4208
|
-
description?: InputMaybe<string> | undefined;
|
|
4209
|
-
inputFields?: InputMaybe<Scalars['jsonb']>;
|
|
4210
|
-
integrationName?: InputMaybe<string> | undefined;
|
|
4211
|
-
metricId?: InputMaybe<string> | undefined;
|
|
4212
|
-
metricQuery?: InputMaybe<string> | undefined;
|
|
4213
|
-
name?: InputMaybe<string> | undefined;
|
|
4214
|
-
outputColumns?: InputMaybe<string> | undefined;
|
|
4215
|
-
query?: InputMaybe<string> | undefined;
|
|
4216
|
-
isLive?: InputMaybe<boolean> | undefined;
|
|
4217
|
-
clientId?: InputMaybe<string> | undefined;
|
|
4218
|
-
isCreatedByClient?: InputMaybe<boolean> | undefined;
|
|
4219
|
-
createdBy?: InputMaybe<string> | undefined;
|
|
4220
|
-
timeGrain?: InputMaybe<string> | undefined;
|
|
4221
|
-
externalDashboardIds?: InputMaybe<ExternalDashboardMetrics_Insert_Input | ExternalDashboardMetrics_Insert_Input[]> | undefined;
|
|
4222
|
-
selectedGroupBy?: InputMaybe<Scalars['jsonb']>;
|
|
4223
|
-
isEnableGroupBy?: InputMaybe<boolean> | undefined;
|
|
4224
|
-
datasetMetricSettings?: InputMaybe<Scalars['jsonb']>;
|
|
4225
|
-
groupBy?: InputMaybe<Scalars['jsonb']>;
|
|
4226
|
-
}>, TContext> | undefined) => import("react-query").UseMutationResult<CreateExternalMetricMutation, TError, Exact<{
|
|
4227
|
-
chartOptions?: InputMaybe<Scalars['jsonb']>;
|
|
4228
|
-
companyId?: InputMaybe<Scalars['uuid']>;
|
|
4229
|
-
companyIntegrationId?: InputMaybe<Scalars['uuid']>;
|
|
4230
|
-
description?: InputMaybe<string> | undefined;
|
|
4231
|
-
inputFields?: InputMaybe<Scalars['jsonb']>;
|
|
4232
|
-
integrationName?: InputMaybe<string> | undefined;
|
|
4233
|
-
metricId?: InputMaybe<string> | undefined;
|
|
4234
|
-
metricQuery?: InputMaybe<string> | undefined;
|
|
4235
|
-
name?: InputMaybe<string> | undefined;
|
|
4236
|
-
outputColumns?: InputMaybe<string> | undefined;
|
|
4237
|
-
query?: InputMaybe<string> | undefined;
|
|
4238
|
-
isLive?: InputMaybe<boolean> | undefined;
|
|
4239
|
-
clientId?: InputMaybe<string> | undefined;
|
|
4240
|
-
isCreatedByClient?: InputMaybe<boolean> | undefined;
|
|
4241
|
-
createdBy?: InputMaybe<string> | undefined;
|
|
4242
|
-
timeGrain?: InputMaybe<string> | undefined;
|
|
4243
|
-
externalDashboardIds?: InputMaybe<ExternalDashboardMetrics_Insert_Input | ExternalDashboardMetrics_Insert_Input[]> | undefined;
|
|
4244
|
-
selectedGroupBy?: InputMaybe<Scalars['jsonb']>;
|
|
4245
|
-
isEnableGroupBy?: InputMaybe<boolean> | undefined;
|
|
4246
|
-
datasetMetricSettings?: InputMaybe<Scalars['jsonb']>;
|
|
4247
|
-
groupBy?: InputMaybe<Scalars['jsonb']>;
|
|
4248
|
-
}>, TContext>;
|
|
4249
|
-
export declare const DeleteScheduleEmailReportChartsDocument = "\n mutation DeleteScheduleEmailReportCharts($scheduleEmailReportId: uuid = \"\") {\n delete_scheduleEmailReportCharts(\n where: {scheduleEmailReportId: {_eq: $scheduleEmailReportId}}\n ) {\n affected_rows\n }\n}\n ";
|
|
4250
|
-
export declare const useDeleteScheduleEmailReportChartsMutation: <TError = unknown, TContext = unknown>(options?: UseMutationOptions<DeleteScheduleEmailReportChartsMutation, TError, Exact<{
|
|
4251
|
-
scheduleEmailReportId?: InputMaybe<Scalars['uuid']>;
|
|
4252
|
-
}>, TContext> | undefined) => import("react-query").UseMutationResult<DeleteScheduleEmailReportChartsMutation, TError, Exact<{
|
|
4253
|
-
scheduleEmailReportId?: InputMaybe<Scalars['uuid']>;
|
|
4254
|
-
}>, TContext>;
|
|
4255
|
-
export declare const DeleteScheduledEmailDocument = "\n mutation DeleteScheduledEmail($id: uuid = \"\") {\n delete_scheduleEmailReports_by_pk(id: $id) {\n id\n }\n}\n ";
|
|
4256
|
-
export declare const useDeleteScheduledEmailMutation: <TError = unknown, TContext = unknown>(options?: UseMutationOptions<DeleteScheduledEmailMutation, TError, Exact<{
|
|
4257
|
-
id?: InputMaybe<Scalars['uuid']>;
|
|
4258
|
-
}>, TContext> | undefined) => import("react-query").UseMutationResult<DeleteScheduledEmailMutation, TError, Exact<{
|
|
4259
|
-
id?: InputMaybe<Scalars['uuid']>;
|
|
4260
|
-
}>, TContext>;
|
|
4261
|
-
export declare const FetchColumnDataDocument = "\n mutation FetchColumnData($tableName: String = \"\", $columnName: String = \"\", $wId: String = \"\", $filter: json = \"\") {\n fetchColumnData(\n input: {columnName: $columnName, tableName: $tableName, wId: $wId, filter: $filter}\n ) {\n data {\n label\n value\n }\n error {\n message\n }\n }\n}\n ";
|
|
4262
|
-
export declare const useFetchColumnDataMutation: <TError = unknown, TContext = unknown>(options?: UseMutationOptions<FetchColumnDataMutation, TError, Exact<{
|
|
4263
|
-
tableName?: InputMaybe<string> | undefined;
|
|
4264
|
-
columnName?: InputMaybe<string> | undefined;
|
|
4265
|
-
wId?: InputMaybe<string> | undefined;
|
|
4266
|
-
filter?: InputMaybe<Scalars['json']>;
|
|
4267
|
-
}>, TContext> | undefined) => import("react-query").UseMutationResult<FetchColumnDataMutation, TError, Exact<{
|
|
4268
|
-
tableName?: InputMaybe<string> | undefined;
|
|
4269
|
-
columnName?: InputMaybe<string> | undefined;
|
|
4270
|
-
wId?: InputMaybe<string> | undefined;
|
|
4271
|
-
filter?: InputMaybe<Scalars['json']>;
|
|
4272
|
-
}>, TContext>;
|
|
4273
|
-
export declare const GenerateDatasetMetricsDocument = "\n mutation GenerateDatasetMetrics($userInputs: json = \"\", $integrationName: String = \"\", $integrationId: String = \"\") {\n generateDatasetMetrics(\n input: {userInputs: $userInputs, integrationName: $integrationName, integrationId: $integrationId}\n ) {\n error\n query\n result\n timeTaken\n metaData\n }\n}\n ";
|
|
4274
|
-
export declare const useGenerateDatasetMetricsMutation: <TError = unknown, TContext = unknown>(options?: UseMutationOptions<GenerateDatasetMetricsMutation, TError, Exact<{
|
|
4275
|
-
userInputs?: InputMaybe<Scalars['json']>;
|
|
4276
|
-
integrationName?: InputMaybe<string> | undefined;
|
|
4277
|
-
integrationId?: InputMaybe<string> | undefined;
|
|
4278
|
-
}>, TContext> | undefined) => import("react-query").UseMutationResult<GenerateDatasetMetricsMutation, TError, Exact<{
|
|
4279
|
-
userInputs?: InputMaybe<Scalars['json']>;
|
|
4280
|
-
integrationName?: InputMaybe<string> | undefined;
|
|
4281
|
-
integrationId?: InputMaybe<string> | undefined;
|
|
4282
|
-
}>, TContext>;
|
|
4283
|
-
export declare const GenerateEmbeddedMeticDocument = "\n mutation GenerateEmbeddedMetic($clientId: String = \"\", $companyId: String = \"\", $queryPrompt: String = \"\", $timeGrain: String = \"\") {\n generateEmbeddedMetic(\n input: {clientId: $clientId, companyId: $companyId, queryPrompt: $queryPrompt, timeGrain: $timeGrain}\n ) {\n query\n result\n error {\n message\n }\n }\n}\n ";
|
|
4284
|
-
export declare const useGenerateEmbeddedMeticMutation: <TError = unknown, TContext = unknown>(options?: UseMutationOptions<GenerateEmbeddedMeticMutation, TError, Exact<{
|
|
4285
|
-
clientId?: InputMaybe<string> | undefined;
|
|
4286
|
-
companyId?: InputMaybe<string> | undefined;
|
|
4287
|
-
queryPrompt?: InputMaybe<string> | undefined;
|
|
4288
|
-
timeGrain?: InputMaybe<string> | undefined;
|
|
4289
|
-
}>, TContext> | undefined) => import("react-query").UseMutationResult<GenerateEmbeddedMeticMutation, TError, Exact<{
|
|
4290
|
-
clientId?: InputMaybe<string> | undefined;
|
|
4291
|
-
companyId?: InputMaybe<string> | undefined;
|
|
4292
|
-
queryPrompt?: InputMaybe<string> | undefined;
|
|
4293
|
-
timeGrain?: InputMaybe<string> | undefined;
|
|
4294
|
-
}>, TContext>;
|
|
4295
|
-
export declare const CompanyIntegrationDocument = "\n query CompanyIntegration($externalDashboardId: uuid = \"\") {\n companyIntegrations(\n where: {companyWorkspace: {externalDashboards: {id: {_eq: $externalDashboardId}}}}\n ) {\n companyId\n id\n integrationId\n name\n }\n}\n ";
|
|
4296
|
-
export declare const useCompanyIntegrationQuery: <TData = CompanyIntegrationQuery, TError = unknown>(variables?: CompanyIntegrationQueryVariables, options?: UseQueryOptions<CompanyIntegrationQuery, TError, TData, import("react-query").QueryKey> | undefined) => import("react-query").UseQueryResult<TData, TError>;
|
|
4297
|
-
export declare const CompanySubsetTableDataDocument = "\n mutation CompanySubsetTableData($clientId: String = \"\", $companyId: String = \"\", $workspaceId: String = \"\") {\n companySubsetTableData(\n input: {clientId: $clientId, companyId: $companyId, workspaceId: $workspaceId}\n ) {\n companyIntegrationId\n dbName\n error {\n message\n }\n tableList {\n tableName\n columns {\n datatype\n name\n as\n }\n clientColumn\n }\n }\n}\n ";
|
|
4298
|
-
export declare const useCompanySubsetTableDataMutation: <TError = unknown, TContext = unknown>(options?: UseMutationOptions<CompanySubsetTableDataMutation, TError, Exact<{
|
|
4299
|
-
clientId?: InputMaybe<string> | undefined;
|
|
4300
|
-
companyId?: InputMaybe<string> | undefined;
|
|
4301
|
-
workspaceId?: InputMaybe<string> | undefined;
|
|
4302
|
-
}>, TContext> | undefined) => import("react-query").UseMutationResult<CompanySubsetTableDataMutation, TError, Exact<{
|
|
4303
|
-
clientId?: InputMaybe<string> | undefined;
|
|
4304
|
-
companyId?: InputMaybe<string> | undefined;
|
|
4305
|
-
workspaceId?: InputMaybe<string> | undefined;
|
|
4306
|
-
}>, TContext>;
|
|
4307
|
-
export declare const GetEmbeddedDashboardDocument = "\n query GetEmbeddedDashboard($token: String!, $dashboardId: String) {\n embeddedDashboardData(input: {token: $token, dashboardId: $dashboardId}) {\n externalDashboard\n isAllowedToChangeLayout\n isAllowedToCreateMetrics\n isAllowedToDeleteMetrics\n isAllowedToUpdateMetrics\n adminTheme\n clientId\n companyId\n companyTenancyType\n externalMetrics\n rlsSettings\n appFilters\n workspace\n error {\n message\n }\n sharingSettingsId\n }\n}\n ";
|
|
4308
|
-
export declare const useGetEmbeddedDashboardQuery: <TData = GetEmbeddedDashboardQuery, TError = unknown>(variables: GetEmbeddedDashboardQueryVariables, options?: UseQueryOptions<GetEmbeddedDashboardQuery, TError, TData, import("react-query").QueryKey> | undefined) => import("react-query").UseQueryResult<TData, TError>;
|
|
4309
|
-
export declare const EmbeddedDashboardMetricsDocument = "\n query EmbeddedDashboardMetrics($externalDashboardId: String! = \"\", $clientId: String! = \"\") {\n externalDashboardMetrics(\n where: {externalDashboard: {externalDashboardId: {_eq: $externalDashboardId}}, externalMetric: {isArchived: {_eq: false}, isMarkedDeleted: {_eq: false}}, _not: {externalMetric: {clientDeletedMetrics: {clientId: {_eq: $clientId}}}}}\n ) {\n externalMetricId\n externalDashboardId\n externalMetric {\n chartOptions\n clientId\n companyId\n companyIntegrationId\n createdAt\n createdBy\n description\n id\n inputFields\n integrationName\n isCreatedByClient\n isLive\n metricId\n metricQuery\n name\n outputColumns\n query\n timeGrain\n updatedAt\n selectedGroupBy\n isEnableGroupBy\n groupBy\n resizeAttributes\n rlsConditions\n clickActions\n drillDownSettings\n companyIntegration {\n name\n workspaceId\n }\n datasetMetricSettings\n }\n }\n}\n ";
|
|
4310
|
-
export declare const useEmbeddedDashboardMetricsQuery: <TData = EmbeddedDashboardMetricsQuery, TError = unknown>(variables?: EmbeddedDashboardMetricsQueryVariables, options?: UseQueryOptions<EmbeddedDashboardMetricsQuery, TError, TData, import("react-query").QueryKey> | undefined) => import("react-query").UseQueryResult<TData, TError>;
|
|
4311
|
-
export declare const GetExternalDashboardClientThemeDocument = "\n query GetExternalDashboardClientTheme($companyId: uuid!, $clientId: String!) {\n externalDashboardThemes(\n where: {companyId: {_eq: $companyId}, externalDashboardThemeClients: {clientId: {_eq: $clientId}}}\n limit: 1\n ) {\n colors\n createdAt\n id\n name\n }\n}\n ";
|
|
4312
|
-
export declare const useGetExternalDashboardClientThemeQuery: <TData = GetExternalDashboardClientThemeQuery, TError = unknown>(variables: GetExternalDashboardClientThemeQueryVariables, options?: UseQueryOptions<GetExternalDashboardClientThemeQuery, TError, TData, import("react-query").QueryKey> | undefined) => import("react-query").UseQueryResult<TData, TError>;
|
|
4313
|
-
export declare const GetExternalDashboardIdDocument = "\n query GetExternalDashboardId($externalDashboardId: String = \"\") {\n externalDashboards(where: {externalDashboardId: {_eq: $externalDashboardId}}) {\n id\n name\n filters\n layout\n }\n}\n ";
|
|
4314
|
-
export declare const useGetExternalDashboardIdQuery: <TData = GetExternalDashboardIdQuery, TError = unknown>(variables?: GetExternalDashboardIdQueryVariables, options?: UseQueryOptions<GetExternalDashboardIdQuery, TError, TData, import("react-query").QueryKey> | undefined) => import("react-query").UseQueryResult<TData, TError>;
|
|
4315
|
-
export declare const GetExternalDashboardLayoutDocument = "\n query GetExternalDashboardLayout($clientId: String!, $externalDashboardId: uuid!) {\n clientDashboardLayout_by_pk(\n clientId: $clientId\n externalDashboardId: $externalDashboardId\n ) {\n clientId\n externalDashboardId\n layout\n isLocked\n }\n}\n ";
|
|
4316
|
-
export declare const useGetExternalDashboardLayoutQuery: <TData = GetExternalDashboardLayoutQuery, TError = unknown>(variables: GetExternalDashboardLayoutQueryVariables, options?: UseQueryOptions<GetExternalDashboardLayoutQuery, TError, TData, import("react-query").QueryKey> | undefined) => import("react-query").UseQueryResult<TData, TError>;
|
|
4317
|
-
export declare const ExternalDashboardListDocument = "\n query ExternalDashboardList($companyId: uuid = \"\") {\n externalDashboards(where: {companyId: {_eq: $companyId}}) {\n externalDashboardId\n name\n id\n }\n}\n ";
|
|
4318
|
-
export declare const useExternalDashboardListQuery: <TData = ExternalDashboardListQuery, TError = unknown>(variables?: ExternalDashboardListQueryVariables, options?: UseQueryOptions<ExternalDashboardListQuery, TError, TData, import("react-query").QueryKey> | undefined) => import("react-query").UseQueryResult<TData, TError>;
|
|
4319
|
-
export declare const ExternalMetricRawCsvUrlsDocument = "\n query ExternalMetricRawCsvUrls($externalMetricId: uuid = \"\") {\n externalMetricRawCsvUrls(where: {externalMetricId: {_eq: $externalMetricId}}) {\n configurations\n error\n expireUrlIn\n externalMetricId\n id\n lastUpdatedAt\n urls\n requestStatus\n }\n}\n ";
|
|
4320
|
-
export declare const useExternalMetricRawCsvUrlsQuery: <TData = ExternalMetricRawCsvUrlsQuery, TError = unknown>(variables?: ExternalMetricRawCsvUrlsQueryVariables, options?: UseQueryOptions<ExternalMetricRawCsvUrlsQuery, TError, TData, import("react-query").QueryKey> | undefined) => import("react-query").UseQueryResult<TData, TError>;
|
|
4321
|
-
export declare const GuestTokenParamsDocument = "\n query GuestTokenParams($id: uuid = \"\") {\n guestTokens_by_pk(id: $id) {\n clientId\n companyId\n id\n params\n }\n}\n ";
|
|
4322
|
-
export declare const useGuestTokenParamsQuery: <TData = GuestTokenParamsQuery, TError = unknown>(variables?: GuestTokenParamsQueryVariables, options?: UseQueryOptions<GuestTokenParamsQuery, TError, TData, import("react-query").QueryKey> | undefined) => import("react-query").UseQueryResult<TData, TError>;
|
|
4323
|
-
export declare const MetricAccessDocument = "\n query MetricAccess($workspaceId: uuid = \"\") {\n companySubsetTables(where: {workspaceId: {_eq: $workspaceId}}) {\n isAllowMetricCreation\n isAllowMetricDeletion\n isAllowMetricUpdation\n isAllowChangeLayout\n }\n}\n ";
|
|
4324
|
-
export declare const useMetricAccessQuery: <TData = MetricAccessQuery, TError = unknown>(variables?: MetricAccessQueryVariables, options?: UseQueryOptions<MetricAccessQuery, TError, TData, import("react-query").QueryKey> | undefined) => import("react-query").UseQueryResult<TData, TError>;
|
|
4325
|
-
export declare const RawCsvSettingsDocument = "\n query RawCsvSettings($id: uuid = \"\") {\n companyWorkspaces_by_pk(id: $id) {\n rawCsvSettings\n id\n }\n}\n ";
|
|
4326
|
-
export declare const useRawCsvSettingsQuery: <TData = RawCsvSettingsQuery, TError = unknown>(variables?: RawCsvSettingsQueryVariables, options?: UseQueryOptions<RawCsvSettingsQuery, TError, TData, import("react-query").QueryKey> | undefined) => import("react-query").UseQueryResult<TData, TError>;
|
|
4327
|
-
export declare const ScheduleEmailReportDocument = "\n query ScheduleEmailReport($token: uuid = \"\") {\n scheduleEmailReports(where: {guestToken: {_eq: $token}}) {\n externalDashboardId\n guestToken\n nextScheduledAt\n sharingSettingsId\n subject\n timeConfigurations\n id\n }\n}\n ";
|
|
4328
|
-
export declare const useScheduleEmailReportQuery: <TData = ScheduleEmailReportQuery, TError = unknown>(variables?: ScheduleEmailReportQueryVariables, options?: UseQueryOptions<ScheduleEmailReportQuery, TError, TData, import("react-query").QueryKey> | undefined) => import("react-query").UseQueryResult<TData, TError>;
|
|
4329
|
-
export declare const SharingSettingsIdDocument = "\n query SharingSettingsId($companyId: uuid = \"\") {\n sharingSettings(where: {companyId: {_eq: $companyId}}) {\n id\n }\n}\n ";
|
|
4330
|
-
export declare const useSharingSettingsIdQuery: <TData = SharingSettingsIdQuery, TError = unknown>(variables?: SharingSettingsIdQueryVariables, options?: UseQueryOptions<SharingSettingsIdQuery, TError, TData, import("react-query").QueryKey> | undefined) => import("react-query").UseQueryResult<TData, TError>;
|
|
4331
|
-
export declare const GetThemesDocument = "\n query GetThemes($companyId: uuid! = \"\") {\n themes(where: {companyId: {_eq: $companyId}}) {\n id\n companyId\n general\n dashboard\n cardTitle\n cardDescription\n chart\n }\n}\n ";
|
|
4332
|
-
export declare const useGetThemesQuery: <TData = GetThemesQuery, TError = unknown>(variables?: GetThemesQueryVariables, options?: UseQueryOptions<GetThemesQuery, TError, TData, import("react-query").QueryKey> | undefined) => import("react-query").UseQueryResult<TData, TError>;
|
|
4333
|
-
export declare const UnderlyingDataDocument = "\n mutation UnderlyingData($columnName: String = \"\", $companyId: String = \"\", $query: String = \"\", $value: json = \"\", $workspaceId: String = \"\", $metricId: String = \"\") {\n getUnderlyingData(\n input: {columnName: $columnName, companyId: $companyId, query: $query, value: $value, workspaceId: $workspaceId, metricId: $metricId}\n ) {\n data\n timeTaken\n }\n}\n ";
|
|
4334
|
-
export declare const useUnderlyingDataMutation: <TError = unknown, TContext = unknown>(options?: UseMutationOptions<UnderlyingDataMutation, TError, Exact<{
|
|
4335
|
-
columnName?: InputMaybe<string> | undefined;
|
|
4336
|
-
companyId?: InputMaybe<string> | undefined;
|
|
4337
|
-
query?: InputMaybe<string> | undefined;
|
|
4338
|
-
value?: InputMaybe<Scalars['json']>;
|
|
4339
|
-
workspaceId?: InputMaybe<string> | undefined;
|
|
4340
|
-
metricId?: InputMaybe<string> | undefined;
|
|
4341
|
-
}>, TContext> | undefined) => import("react-query").UseMutationResult<UnderlyingDataMutation, TError, Exact<{
|
|
4342
|
-
columnName?: InputMaybe<string> | undefined;
|
|
4343
|
-
companyId?: InputMaybe<string> | undefined;
|
|
4344
|
-
query?: InputMaybe<string> | undefined;
|
|
4345
|
-
value?: InputMaybe<Scalars['json']>;
|
|
4346
|
-
workspaceId?: InputMaybe<string> | undefined;
|
|
4347
|
-
metricId?: InputMaybe<string> | undefined;
|
|
4348
|
-
}>, TContext>;
|
|
4349
|
-
export declare const InvokeSaveRawCsvDetailsDocument = "\n mutation InvokeSaveRawCsvDetails($configurations: json = \"\", $expireCsvFileAt: String = \"\", $externalMetricId: String = \"\", $integrationId: String = \"\", $integrationName: String = \"\", $query: String = \"\", $expireUrlIn: Int = 60) {\n invokeSaveRawCsvDetails(\n input: {configurations: $configurations, expireCsvFileAt: $expireCsvFileAt, externalMetricId: $externalMetricId, integrationId: $integrationId, integrationName: $integrationName, query: $query, expireUrlIn: $expireUrlIn}\n ) {\n error\n statusCode\n }\n}\n ";
|
|
4350
|
-
export declare const useInvokeSaveRawCsvDetailsMutation: <TError = unknown, TContext = unknown>(options?: UseMutationOptions<InvokeSaveRawCsvDetailsMutation, TError, Exact<{
|
|
4351
|
-
configurations?: InputMaybe<Scalars['json']>;
|
|
4352
|
-
expireCsvFileAt?: InputMaybe<string> | undefined;
|
|
4353
|
-
externalMetricId?: InputMaybe<string> | undefined;
|
|
4354
|
-
integrationId?: InputMaybe<string> | undefined;
|
|
4355
|
-
integrationName?: InputMaybe<string> | undefined;
|
|
4356
|
-
query?: InputMaybe<string> | undefined;
|
|
4357
|
-
expireUrlIn?: InputMaybe<number> | undefined;
|
|
4358
|
-
}>, TContext> | undefined) => import("react-query").UseMutationResult<InvokeSaveRawCsvDetailsMutation, TError, Exact<{
|
|
4359
|
-
configurations?: InputMaybe<Scalars['json']>;
|
|
4360
|
-
expireCsvFileAt?: InputMaybe<string> | undefined;
|
|
4361
|
-
externalMetricId?: InputMaybe<string> | undefined;
|
|
4362
|
-
integrationId?: InputMaybe<string> | undefined;
|
|
4363
|
-
integrationName?: InputMaybe<string> | undefined;
|
|
4364
|
-
query?: InputMaybe<string> | undefined;
|
|
4365
|
-
expireUrlIn?: InputMaybe<number> | undefined;
|
|
4366
|
-
}>, TContext>;
|
|
4367
|
-
export declare const InvokeSendCsvUrlDocument = "\n mutation InvokeSendCsvUrl($configurations: json = {}, $emails: [String] = [], $expireCsvFileAt: String = \"\", $expireUrlIn: Int = 1800000, $externalMetricId: String = \"\", $integrationId: String = \"\", $integrationName: String = \"\", $query: String = \"\", $sharingSettingsId: String = \"\", $subject: String = \"\") {\n invokeSendCsvUrl(\n input: {configurations: $configurations, emails: $emails, expireCsvFileAt: $expireCsvFileAt, externalMetricId: $externalMetricId, integrationId: $integrationId, integrationName: $integrationName, query: $query, sharingSettingsId: $sharingSettingsId, subject: $subject, expireUrlIn: $expireUrlIn}\n ) {\n error\n statusCode\n }\n}\n ";
|
|
4368
|
-
export declare const useInvokeSendCsvUrlMutation: <TError = unknown, TContext = unknown>(options?: UseMutationOptions<InvokeSendCsvUrlMutation, TError, Exact<{
|
|
4369
|
-
configurations?: InputMaybe<Scalars['json']>;
|
|
4370
|
-
emails?: InputMaybe<InputMaybe<string> | InputMaybe<string>[]> | undefined;
|
|
4371
|
-
expireCsvFileAt?: InputMaybe<string> | undefined;
|
|
4372
|
-
expireUrlIn?: InputMaybe<number> | undefined;
|
|
4373
|
-
externalMetricId?: InputMaybe<string> | undefined;
|
|
4374
|
-
integrationId?: InputMaybe<string> | undefined;
|
|
4375
|
-
integrationName?: InputMaybe<string> | undefined;
|
|
4376
|
-
query?: InputMaybe<string> | undefined;
|
|
4377
|
-
sharingSettingsId?: InputMaybe<string> | undefined;
|
|
4378
|
-
subject?: InputMaybe<string> | undefined;
|
|
4379
|
-
}>, TContext> | undefined) => import("react-query").UseMutationResult<InvokeSendCsvUrlMutation, TError, Exact<{
|
|
4380
|
-
configurations?: InputMaybe<Scalars['json']>;
|
|
4381
|
-
emails?: InputMaybe<InputMaybe<string> | InputMaybe<string>[]> | undefined;
|
|
4382
|
-
expireCsvFileAt?: InputMaybe<string> | undefined;
|
|
4383
|
-
expireUrlIn?: InputMaybe<number> | undefined;
|
|
4384
|
-
externalMetricId?: InputMaybe<string> | undefined;
|
|
4385
|
-
integrationId?: InputMaybe<string> | undefined;
|
|
4386
|
-
integrationName?: InputMaybe<string> | undefined;
|
|
4387
|
-
query?: InputMaybe<string> | undefined;
|
|
4388
|
-
sharingSettingsId?: InputMaybe<string> | undefined;
|
|
4389
|
-
subject?: InputMaybe<string> | undefined;
|
|
4390
|
-
}>, TContext>;
|
|
4391
|
-
export declare const InvokeShareCsvUrlDocument = "\n mutation InvokeShareCsvUrl($configurations: json = {}, $emails: [String] = [], $expireCsvFileAt: String = \"\", $expireUrlIn: Int = 1800000, $externalMetricId: String = \"\", $integrationId: String = \"\", $integrationName: String = \"\", $query: String = \"\", $sharingSettingsId: String = \"\", $subject: String = \"\") {\n shareCsvUrl(\n input: {configurations: $configurations, emails: $emails, expireCsvFileAt: $expireCsvFileAt, externalMetricId: $externalMetricId, integrationId: $integrationId, integrationName: $integrationName, query: $query, sharingSettingsId: $sharingSettingsId, subject: $subject, expireUrlIn: $expireUrlIn}\n )\n}\n ";
|
|
4392
|
-
export declare const useInvokeShareCsvUrlMutation: <TError = unknown, TContext = unknown>(options?: UseMutationOptions<InvokeShareCsvUrlMutation, TError, Exact<{
|
|
4393
|
-
configurations?: InputMaybe<Scalars['json']>;
|
|
4394
|
-
emails?: InputMaybe<InputMaybe<string> | InputMaybe<string>[]> | undefined;
|
|
4395
|
-
expireCsvFileAt?: InputMaybe<string> | undefined;
|
|
4396
|
-
expireUrlIn?: InputMaybe<number> | undefined;
|
|
4397
|
-
externalMetricId?: InputMaybe<string> | undefined;
|
|
4398
|
-
integrationId?: InputMaybe<string> | undefined;
|
|
4399
|
-
integrationName?: InputMaybe<string> | undefined;
|
|
4400
|
-
query?: InputMaybe<string> | undefined;
|
|
4401
|
-
sharingSettingsId?: InputMaybe<string> | undefined;
|
|
4402
|
-
subject?: InputMaybe<string> | undefined;
|
|
4403
|
-
}>, TContext> | undefined) => import("react-query").UseMutationResult<InvokeShareCsvUrlMutation, TError, Exact<{
|
|
4404
|
-
configurations?: InputMaybe<Scalars['json']>;
|
|
4405
|
-
emails?: InputMaybe<InputMaybe<string> | InputMaybe<string>[]> | undefined;
|
|
4406
|
-
expireCsvFileAt?: InputMaybe<string> | undefined;
|
|
4407
|
-
expireUrlIn?: InputMaybe<number> | undefined;
|
|
4408
|
-
externalMetricId?: InputMaybe<string> | undefined;
|
|
4409
|
-
integrationId?: InputMaybe<string> | undefined;
|
|
4410
|
-
integrationName?: InputMaybe<string> | undefined;
|
|
4411
|
-
query?: InputMaybe<string> | undefined;
|
|
4412
|
-
sharingSettingsId?: InputMaybe<string> | undefined;
|
|
4413
|
-
subject?: InputMaybe<string> | undefined;
|
|
4414
|
-
}>, TContext>;
|
|
4415
|
-
export declare const MarkArchiveMetricDocument = "\n mutation MarkArchiveMetric($id: uuid! = \"\", $clientId: String! = \"\") {\n insert_clientDeletedMetrics_one(\n object: {externalMetricId: $id, clientId: $clientId}\n ) {\n clientId\n externalMetricId\n }\n}\n ";
|
|
4416
|
-
export declare const useMarkArchiveMetricMutation: <TError = unknown, TContext = unknown>(options?: UseMutationOptions<MarkArchiveMetricMutation, TError, Exact<{
|
|
4417
|
-
id?: Scalars['uuid'];
|
|
4418
|
-
clientId?: string | undefined;
|
|
4419
|
-
}>, TContext> | undefined) => import("react-query").UseMutationResult<MarkArchiveMetricMutation, TError, Exact<{
|
|
4420
|
-
id?: Scalars['uuid'];
|
|
4421
|
-
clientId?: string | undefined;
|
|
4422
|
-
}>, TContext>;
|
|
4423
|
-
export declare const PreviewTableDocument = "\n mutation PreviewTable($tableName: String = \"\", $limit: Int = 10, $integrationId: String = \"\", $integrationName: String = \"\") {\n previewTable(\n input: {tableName: $tableName, limit: $limit, integrationId: $integrationId, integrationName: $integrationName}\n ) {\n data {\n data\n isError\n name\n }\n error {\n message\n }\n }\n}\n ";
|
|
4424
|
-
export declare const usePreviewTableMutation: <TError = unknown, TContext = unknown>(options?: UseMutationOptions<PreviewTableMutation, TError, Exact<{
|
|
4425
|
-
tableName?: InputMaybe<string> | undefined;
|
|
4426
|
-
limit?: InputMaybe<number> | undefined;
|
|
4427
|
-
integrationId?: InputMaybe<string> | undefined;
|
|
4428
|
-
integrationName?: InputMaybe<string> | undefined;
|
|
4429
|
-
}>, TContext> | undefined) => import("react-query").UseMutationResult<PreviewTableMutation, TError, Exact<{
|
|
4430
|
-
tableName?: InputMaybe<string> | undefined;
|
|
4431
|
-
limit?: InputMaybe<number> | undefined;
|
|
4432
|
-
integrationId?: InputMaybe<string> | undefined;
|
|
4433
|
-
integrationName?: InputMaybe<string> | undefined;
|
|
4434
|
-
}>, TContext>;
|
|
4435
|
-
export declare const QueryExternalMetricDocument = "\n query QueryExternalMetric($id: String = \"\", $clientId: String = \"\", $globalFilters: json = \"\", $rlsConditions: json = [], $filterValues: json = \"\", $tenancyLevel: String = \"\", $drillFilters: json = [], $limit: Int, $offset: Int) {\n externalMetricQuery(\n input: {externalMetricId: $id, clientId: $clientId, globalFilters: $globalFilters, rlsConditions: $rlsConditions, filterValues: $filterValues, tenancyLevel: $tenancyLevel, drillFilters: $drillFilters, limit: $limit, offset: $offset}\n ) {\n data\n timeTaken\n totalRecords\n metaData\n }\n}\n ";
|
|
4436
|
-
export declare const useQueryExternalMetricQuery: <TData = QueryExternalMetricQuery, TError = unknown>(variables?: QueryExternalMetricQueryVariables, options?: UseQueryOptions<QueryExternalMetricQuery, TError, TData, import("react-query").QueryKey> | undefined) => import("react-query").UseQueryResult<TData, TError>;
|
|
4437
|
-
export declare const RawCsvDocument = "\n mutation RawCsv($companyId: String = \"\", $recipientAddress: String = \"\", $sqlQuery: String = \"\", $metricName: String = \"\", $workspaceId: String = \"\") {\n sendRawCsv(\n input: {companyId: $companyId, recipientAddress: $recipientAddress, sqlQuery: $sqlQuery, metricName: $metricName, workspaceId: $workspaceId}\n ) {\n status\n error {\n message\n }\n }\n}\n ";
|
|
4438
|
-
export declare const useRawCsvMutation: <TError = unknown, TContext = unknown>(options?: UseMutationOptions<RawCsvMutation, TError, Exact<{
|
|
4439
|
-
companyId?: InputMaybe<string> | undefined;
|
|
4440
|
-
recipientAddress?: InputMaybe<string> | undefined;
|
|
4441
|
-
sqlQuery?: InputMaybe<string> | undefined;
|
|
4442
|
-
metricName?: InputMaybe<string> | undefined;
|
|
4443
|
-
workspaceId?: InputMaybe<string> | undefined;
|
|
4444
|
-
}>, TContext> | undefined) => import("react-query").UseMutationResult<RawCsvMutation, TError, Exact<{
|
|
4445
|
-
companyId?: InputMaybe<string> | undefined;
|
|
4446
|
-
recipientAddress?: InputMaybe<string> | undefined;
|
|
4447
|
-
sqlQuery?: InputMaybe<string> | undefined;
|
|
4448
|
-
metricName?: InputMaybe<string> | undefined;
|
|
4449
|
-
workspaceId?: InputMaybe<string> | undefined;
|
|
4450
|
-
}>, TContext>;
|
|
4451
|
-
export declare const SaveExternalDashboardLayoutDocument = "\n mutation SaveExternalDashboardLayout($clientId: String!, $externalDashboardId: uuid!, $layout: jsonb!, $isLocked: Boolean) {\n insert_clientDashboardLayout_one(\n object: {clientId: $clientId, externalDashboardId: $externalDashboardId, layout: $layout, isLocked: $isLocked}\n on_conflict: {constraint: clientDashboardLayout_pkey, update_columns: [layout, isLocked]}\n ) {\n clientId\n externalDashboardId\n layout\n isLocked\n }\n}\n ";
|
|
4452
|
-
export declare const useSaveExternalDashboardLayoutMutation: <TError = unknown, TContext = unknown>(options?: UseMutationOptions<SaveExternalDashboardLayoutMutation, TError, Exact<{
|
|
4453
|
-
clientId: Scalars['String'];
|
|
4454
|
-
externalDashboardId: Scalars['uuid'];
|
|
4455
|
-
layout: Scalars['jsonb'];
|
|
4456
|
-
isLocked?: InputMaybe<boolean> | undefined;
|
|
4457
|
-
}>, TContext> | undefined) => import("react-query").UseMutationResult<SaveExternalDashboardLayoutMutation, TError, Exact<{
|
|
4458
|
-
clientId: Scalars['String'];
|
|
4459
|
-
externalDashboardId: Scalars['uuid'];
|
|
4460
|
-
layout: Scalars['jsonb'];
|
|
4461
|
-
isLocked?: InputMaybe<boolean> | undefined;
|
|
4462
|
-
}>, TContext>;
|
|
4463
|
-
export declare const SaveScheduleEmailDocument = "\n mutation SaveScheduleEmail($emails: json = \"\", $externalDashboardId: uuid = \"\", $guestToken: uuid = \"\", $nextScheduledAt: String = \"\", $sharingSettingsId: uuid = \"\", $subject: String = \"\", $timeConfigurations: json = \"\", $data: [scheduleEmailReportCharts_insert_input!] = []) {\n insert_scheduleEmailReports_one(\n object: {emails: $emails, externalDashboardId: $externalDashboardId, guestToken: $guestToken, nextScheduledAt: $nextScheduledAt, sharingSettingsId: $sharingSettingsId, subject: $subject, timeConfigurations: $timeConfigurations, scheduleEmailReportCharts: {data: $data}}\n on_conflict: {constraint: scheduleEmailReports_guestToken_key, update_columns: [emails, nextScheduledAt, sharingSettingsId, subject, timeConfigurations]}\n ) {\n emails\n externalDashboardId\n guestToken\n id\n nextScheduledAt\n sharingSettingsId\n subject\n timeConfigurations\n scheduleEmailReportCharts {\n externalMetricId\n id\n scheduleEmailReportId\n }\n }\n}\n ";
|
|
4464
|
-
export declare const useSaveScheduleEmailMutation: <TError = unknown, TContext = unknown>(options?: UseMutationOptions<SaveScheduleEmailMutation, TError, Exact<{
|
|
4465
|
-
emails?: InputMaybe<Scalars['json']>;
|
|
4466
|
-
externalDashboardId?: InputMaybe<Scalars['uuid']>;
|
|
4467
|
-
guestToken?: InputMaybe<Scalars['uuid']>;
|
|
4468
|
-
nextScheduledAt?: InputMaybe<string> | undefined;
|
|
4469
|
-
sharingSettingsId?: InputMaybe<Scalars['uuid']>;
|
|
4470
|
-
subject?: InputMaybe<string> | undefined;
|
|
4471
|
-
timeConfigurations?: InputMaybe<Scalars['json']>;
|
|
4472
|
-
data?: InputMaybe<ScheduleEmailReportCharts_Insert_Input | ScheduleEmailReportCharts_Insert_Input[]> | undefined;
|
|
4473
|
-
}>, TContext> | undefined) => import("react-query").UseMutationResult<SaveScheduleEmailMutation, TError, Exact<{
|
|
4474
|
-
emails?: InputMaybe<Scalars['json']>;
|
|
4475
|
-
externalDashboardId?: InputMaybe<Scalars['uuid']>;
|
|
4476
|
-
guestToken?: InputMaybe<Scalars['uuid']>;
|
|
4477
|
-
nextScheduledAt?: InputMaybe<string> | undefined;
|
|
4478
|
-
sharingSettingsId?: InputMaybe<Scalars['uuid']>;
|
|
4479
|
-
subject?: InputMaybe<string> | undefined;
|
|
4480
|
-
timeConfigurations?: InputMaybe<Scalars['json']>;
|
|
4481
|
-
data?: InputMaybe<ScheduleEmailReportCharts_Insert_Input | ScheduleEmailReportCharts_Insert_Input[]> | undefined;
|
|
4482
|
-
}>, TContext>;
|
|
4483
|
-
export declare const UpdateAdminMetricDocument = "\n mutation UpdateAdminMetric($externalMetricId: uuid!, $object: externalMetrics_insert_input!, $clientId: String!) {\n insert_clientDeletedMetrics_one(\n object: {externalMetricId: $externalMetricId, clientId: $clientId}\n ) {\n clientId\n externalMetricId\n }\n insert_externalMetrics_one(object: $object) {\n chartOptions\n clientId\n companyId\n companyIntegrationId\n createdAt\n createdBy\n description\n id\n inputFields\n integrationName\n isCreatedByClient\n isLive\n metricId\n metricQuery\n name\n datasetMetricSettings\n outputColumns\n query\n timeGrain\n updatedAt\n selectedGroupBy\n isEnableGroupBy\n groupBy\n rlsConditions\n companyIntegration {\n name\n }\n clickActions\n }\n}\n ";
|
|
4484
|
-
export declare const useUpdateAdminMetricMutation: <TError = unknown, TContext = unknown>(options?: UseMutationOptions<UpdateAdminMetricMutation, TError, Exact<{
|
|
4485
|
-
externalMetricId: Scalars['uuid'];
|
|
4486
|
-
object: ExternalMetrics_Insert_Input;
|
|
4487
|
-
clientId: Scalars['String'];
|
|
4488
|
-
}>, TContext> | undefined) => import("react-query").UseMutationResult<UpdateAdminMetricMutation, TError, Exact<{
|
|
4489
|
-
externalMetricId: Scalars['uuid'];
|
|
4490
|
-
object: ExternalMetrics_Insert_Input;
|
|
4491
|
-
clientId: Scalars['String'];
|
|
4492
|
-
}>, TContext>;
|
|
4493
|
-
export declare const UpdateCsvDownloadStatusDocument = "\n mutation UpdateCSVDownloadStatus($configurations: jsonb = \"\", $expireUrlIn: Int = 60, $externalMetricId: uuid = \"\", $requestStatus: String = \"\", $urls: jsonb = \"\") {\n insert_externalMetricRawCsvUrls_one(\n object: {configurations: $configurations, expireUrlIn: $expireUrlIn, externalMetricId: $externalMetricId, requestStatus: $requestStatus, urls: $urls}\n on_conflict: {constraint: externalMetricRawCsvUrls_externalMetricId_key, update_columns: [configurations, error, expireUrlIn, lastUpdatedAt, requestStatus, urls]}\n ) {\n id\n requestStatus\n configurations\n error\n expireUrlIn\n externalMetricId\n lastUpdatedAt\n urls\n }\n}\n ";
|
|
4494
|
-
export declare const useUpdateCsvDownloadStatusMutation: <TError = unknown, TContext = unknown>(options?: UseMutationOptions<UpdateCsvDownloadStatusMutation, TError, Exact<{
|
|
4495
|
-
configurations?: InputMaybe<Scalars['jsonb']>;
|
|
4496
|
-
expireUrlIn?: InputMaybe<number> | undefined;
|
|
4497
|
-
externalMetricId?: InputMaybe<Scalars['uuid']>;
|
|
4498
|
-
requestStatus?: InputMaybe<string> | undefined;
|
|
4499
|
-
urls?: InputMaybe<Scalars['jsonb']>;
|
|
4500
|
-
}>, TContext> | undefined) => import("react-query").UseMutationResult<UpdateCsvDownloadStatusMutation, TError, Exact<{
|
|
4501
|
-
configurations?: InputMaybe<Scalars['jsonb']>;
|
|
4502
|
-
expireUrlIn?: InputMaybe<number> | undefined;
|
|
4503
|
-
externalMetricId?: InputMaybe<Scalars['uuid']>;
|
|
4504
|
-
requestStatus?: InputMaybe<string> | undefined;
|
|
4505
|
-
urls?: InputMaybe<Scalars['jsonb']>;
|
|
4506
|
-
}>, TContext>;
|
|
4507
|
-
export declare const UpdateExternalMetricDocument = "\n mutation UpdateExternalMetric($externalMetricId: uuid!, $set: externalMetrics_set_input!) {\n update_externalMetrics_by_pk(pk_columns: {id: $externalMetricId}, _set: $set) {\n id\n }\n}\n ";
|
|
4508
|
-
export declare const useUpdateExternalMetricMutation: <TError = unknown, TContext = unknown>(options?: UseMutationOptions<UpdateExternalMetricMutation, TError, Exact<{
|
|
4509
|
-
externalMetricId: Scalars['uuid'];
|
|
4510
|
-
set: ExternalMetrics_Set_Input;
|
|
4511
|
-
}>, TContext> | undefined) => import("react-query").UseMutationResult<UpdateExternalMetricMutation, TError, Exact<{
|
|
4512
|
-
externalMetricId: Scalars['uuid'];
|
|
4513
|
-
set: ExternalMetrics_Set_Input;
|
|
4514
|
-
}>, TContext>;
|