@pexip-engage-public/graphql 1.3.3-canary-20251127171339 → 1.3.4
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/CHANGELOG.md +10 -2
- package/dist/graphql-env.d.ts +579 -0
- package/dist/graphql-env.d.ts.map +1 -1
- package/dist/graphql-env.js +818 -149
- package/dist/graphql-env.js.map +1 -1
- package/dist/schema.d.ts +82 -2
- package/dist/schema.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/graphql-env.ts +818 -149
- package/src/schema.ts +114 -0
package/dist/graphql-env.js
CHANGED
|
@@ -31,6 +31,408 @@ const introspection = {
|
|
|
31
31
|
},
|
|
32
32
|
"subscriptionType": null,
|
|
33
33
|
"types": [
|
|
34
|
+
{
|
|
35
|
+
"kind": "OBJECT",
|
|
36
|
+
"name": "AIMessage",
|
|
37
|
+
"fields": [
|
|
38
|
+
{
|
|
39
|
+
"name": "aiThreadId",
|
|
40
|
+
"type": {
|
|
41
|
+
"kind": "NON_NULL",
|
|
42
|
+
"ofType": {
|
|
43
|
+
"kind": "SCALAR",
|
|
44
|
+
"name": "String"
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"args": [],
|
|
48
|
+
"isDeprecated": false
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"name": "content",
|
|
52
|
+
"type": {
|
|
53
|
+
"kind": "NON_NULL",
|
|
54
|
+
"ofType": {
|
|
55
|
+
"kind": "SCALAR",
|
|
56
|
+
"name": "String"
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
"args": [],
|
|
60
|
+
"isDeprecated": false
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"name": "createdAt",
|
|
64
|
+
"type": {
|
|
65
|
+
"kind": "NON_NULL",
|
|
66
|
+
"ofType": {
|
|
67
|
+
"kind": "SCALAR",
|
|
68
|
+
"name": "ISO8601"
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"args": [],
|
|
72
|
+
"isDeprecated": false
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"name": "deletedAt",
|
|
76
|
+
"type": {
|
|
77
|
+
"kind": "SCALAR",
|
|
78
|
+
"name": "ISO8601"
|
|
79
|
+
},
|
|
80
|
+
"args": [],
|
|
81
|
+
"isDeprecated": false
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"name": "id",
|
|
85
|
+
"type": {
|
|
86
|
+
"kind": "NON_NULL",
|
|
87
|
+
"ofType": {
|
|
88
|
+
"kind": "SCALAR",
|
|
89
|
+
"name": "String"
|
|
90
|
+
}
|
|
91
|
+
},
|
|
92
|
+
"args": [],
|
|
93
|
+
"isDeprecated": false
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"name": "role",
|
|
97
|
+
"type": {
|
|
98
|
+
"kind": "NON_NULL",
|
|
99
|
+
"ofType": {
|
|
100
|
+
"kind": "ENUM",
|
|
101
|
+
"name": "AIMessageRole"
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
"args": [],
|
|
105
|
+
"isDeprecated": false
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"name": "updatedAt",
|
|
109
|
+
"type": {
|
|
110
|
+
"kind": "NON_NULL",
|
|
111
|
+
"ofType": {
|
|
112
|
+
"kind": "SCALAR",
|
|
113
|
+
"name": "ISO8601"
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
"args": [],
|
|
117
|
+
"isDeprecated": false
|
|
118
|
+
}
|
|
119
|
+
],
|
|
120
|
+
"interfaces": []
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"kind": "OBJECT",
|
|
124
|
+
"name": "AIMessageConnection",
|
|
125
|
+
"fields": [
|
|
126
|
+
{
|
|
127
|
+
"name": "edges",
|
|
128
|
+
"type": {
|
|
129
|
+
"kind": "NON_NULL",
|
|
130
|
+
"ofType": {
|
|
131
|
+
"kind": "LIST",
|
|
132
|
+
"ofType": {
|
|
133
|
+
"kind": "NON_NULL",
|
|
134
|
+
"ofType": {
|
|
135
|
+
"kind": "OBJECT",
|
|
136
|
+
"name": "AIMessageEdge"
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
"args": [],
|
|
142
|
+
"isDeprecated": false
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"name": "pageInfo",
|
|
146
|
+
"type": {
|
|
147
|
+
"kind": "NON_NULL",
|
|
148
|
+
"ofType": {
|
|
149
|
+
"kind": "OBJECT",
|
|
150
|
+
"name": "PageInfo"
|
|
151
|
+
}
|
|
152
|
+
},
|
|
153
|
+
"args": [],
|
|
154
|
+
"isDeprecated": false
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"name": "totalCount",
|
|
158
|
+
"type": {
|
|
159
|
+
"kind": "NON_NULL",
|
|
160
|
+
"ofType": {
|
|
161
|
+
"kind": "SCALAR",
|
|
162
|
+
"name": "Int"
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
"args": [],
|
|
166
|
+
"isDeprecated": false
|
|
167
|
+
}
|
|
168
|
+
],
|
|
169
|
+
"interfaces": []
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"kind": "OBJECT",
|
|
173
|
+
"name": "AIMessageEdge",
|
|
174
|
+
"fields": [
|
|
175
|
+
{
|
|
176
|
+
"name": "cursor",
|
|
177
|
+
"type": {
|
|
178
|
+
"kind": "NON_NULL",
|
|
179
|
+
"ofType": {
|
|
180
|
+
"kind": "SCALAR",
|
|
181
|
+
"name": "String"
|
|
182
|
+
}
|
|
183
|
+
},
|
|
184
|
+
"args": [],
|
|
185
|
+
"isDeprecated": false
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"name": "node",
|
|
189
|
+
"type": {
|
|
190
|
+
"kind": "NON_NULL",
|
|
191
|
+
"ofType": {
|
|
192
|
+
"kind": "OBJECT",
|
|
193
|
+
"name": "AIMessage"
|
|
194
|
+
}
|
|
195
|
+
},
|
|
196
|
+
"args": [],
|
|
197
|
+
"isDeprecated": false
|
|
198
|
+
}
|
|
199
|
+
],
|
|
200
|
+
"interfaces": []
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"kind": "ENUM",
|
|
204
|
+
"name": "AIMessageRole",
|
|
205
|
+
"enumValues": [
|
|
206
|
+
{
|
|
207
|
+
"name": "ASSISTANT",
|
|
208
|
+
"isDeprecated": false
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
"name": "DEVELOPER",
|
|
212
|
+
"isDeprecated": false
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"name": "SYSTEM",
|
|
216
|
+
"isDeprecated": false
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"name": "USER",
|
|
220
|
+
"isDeprecated": false
|
|
221
|
+
}
|
|
222
|
+
]
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"kind": "INPUT_OBJECT",
|
|
226
|
+
"name": "AIMessageSendInput",
|
|
227
|
+
"inputFields": [
|
|
228
|
+
{
|
|
229
|
+
"name": "content",
|
|
230
|
+
"type": {
|
|
231
|
+
"kind": "NON_NULL",
|
|
232
|
+
"ofType": {
|
|
233
|
+
"kind": "SCALAR",
|
|
234
|
+
"name": "String"
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
],
|
|
239
|
+
"isOneOf": false
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
"kind": "INPUT_OBJECT",
|
|
243
|
+
"name": "AIMessageSort",
|
|
244
|
+
"inputFields": [
|
|
245
|
+
{
|
|
246
|
+
"name": "direction",
|
|
247
|
+
"type": {
|
|
248
|
+
"kind": "NON_NULL",
|
|
249
|
+
"ofType": {
|
|
250
|
+
"kind": "ENUM",
|
|
251
|
+
"name": "SortDirection"
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"name": "field",
|
|
257
|
+
"type": {
|
|
258
|
+
"kind": "NON_NULL",
|
|
259
|
+
"ofType": {
|
|
260
|
+
"kind": "ENUM",
|
|
261
|
+
"name": "SortableAIMessageFields"
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
],
|
|
266
|
+
"isOneOf": false
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"kind": "OBJECT",
|
|
270
|
+
"name": "AIThread",
|
|
271
|
+
"fields": [
|
|
272
|
+
{
|
|
273
|
+
"name": "createdAt",
|
|
274
|
+
"type": {
|
|
275
|
+
"kind": "NON_NULL",
|
|
276
|
+
"ofType": {
|
|
277
|
+
"kind": "SCALAR",
|
|
278
|
+
"name": "ISO8601"
|
|
279
|
+
}
|
|
280
|
+
},
|
|
281
|
+
"args": [],
|
|
282
|
+
"isDeprecated": false
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"name": "deletedAt",
|
|
286
|
+
"type": {
|
|
287
|
+
"kind": "SCALAR",
|
|
288
|
+
"name": "ISO8601"
|
|
289
|
+
},
|
|
290
|
+
"args": [],
|
|
291
|
+
"isDeprecated": false
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"name": "id",
|
|
295
|
+
"type": {
|
|
296
|
+
"kind": "NON_NULL",
|
|
297
|
+
"ofType": {
|
|
298
|
+
"kind": "SCALAR",
|
|
299
|
+
"name": "String"
|
|
300
|
+
}
|
|
301
|
+
},
|
|
302
|
+
"args": [],
|
|
303
|
+
"isDeprecated": false
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
"name": "title",
|
|
307
|
+
"type": {
|
|
308
|
+
"kind": "SCALAR",
|
|
309
|
+
"name": "String"
|
|
310
|
+
},
|
|
311
|
+
"args": [],
|
|
312
|
+
"isDeprecated": false
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
"name": "updatedAt",
|
|
316
|
+
"type": {
|
|
317
|
+
"kind": "NON_NULL",
|
|
318
|
+
"ofType": {
|
|
319
|
+
"kind": "SCALAR",
|
|
320
|
+
"name": "ISO8601"
|
|
321
|
+
}
|
|
322
|
+
},
|
|
323
|
+
"args": [],
|
|
324
|
+
"isDeprecated": false
|
|
325
|
+
}
|
|
326
|
+
],
|
|
327
|
+
"interfaces": []
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
"kind": "OBJECT",
|
|
331
|
+
"name": "AIThreadConnection",
|
|
332
|
+
"fields": [
|
|
333
|
+
{
|
|
334
|
+
"name": "edges",
|
|
335
|
+
"type": {
|
|
336
|
+
"kind": "NON_NULL",
|
|
337
|
+
"ofType": {
|
|
338
|
+
"kind": "LIST",
|
|
339
|
+
"ofType": {
|
|
340
|
+
"kind": "NON_NULL",
|
|
341
|
+
"ofType": {
|
|
342
|
+
"kind": "OBJECT",
|
|
343
|
+
"name": "AIThreadEdge"
|
|
344
|
+
}
|
|
345
|
+
}
|
|
346
|
+
}
|
|
347
|
+
},
|
|
348
|
+
"args": [],
|
|
349
|
+
"isDeprecated": false
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
"name": "pageInfo",
|
|
353
|
+
"type": {
|
|
354
|
+
"kind": "NON_NULL",
|
|
355
|
+
"ofType": {
|
|
356
|
+
"kind": "OBJECT",
|
|
357
|
+
"name": "PageInfo"
|
|
358
|
+
}
|
|
359
|
+
},
|
|
360
|
+
"args": [],
|
|
361
|
+
"isDeprecated": false
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"name": "totalCount",
|
|
365
|
+
"type": {
|
|
366
|
+
"kind": "NON_NULL",
|
|
367
|
+
"ofType": {
|
|
368
|
+
"kind": "SCALAR",
|
|
369
|
+
"name": "Int"
|
|
370
|
+
}
|
|
371
|
+
},
|
|
372
|
+
"args": [],
|
|
373
|
+
"isDeprecated": false
|
|
374
|
+
}
|
|
375
|
+
],
|
|
376
|
+
"interfaces": []
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"kind": "OBJECT",
|
|
380
|
+
"name": "AIThreadEdge",
|
|
381
|
+
"fields": [
|
|
382
|
+
{
|
|
383
|
+
"name": "cursor",
|
|
384
|
+
"type": {
|
|
385
|
+
"kind": "NON_NULL",
|
|
386
|
+
"ofType": {
|
|
387
|
+
"kind": "SCALAR",
|
|
388
|
+
"name": "String"
|
|
389
|
+
}
|
|
390
|
+
},
|
|
391
|
+
"args": [],
|
|
392
|
+
"isDeprecated": false
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
"name": "node",
|
|
396
|
+
"type": {
|
|
397
|
+
"kind": "NON_NULL",
|
|
398
|
+
"ofType": {
|
|
399
|
+
"kind": "OBJECT",
|
|
400
|
+
"name": "AIThread"
|
|
401
|
+
}
|
|
402
|
+
},
|
|
403
|
+
"args": [],
|
|
404
|
+
"isDeprecated": false
|
|
405
|
+
}
|
|
406
|
+
],
|
|
407
|
+
"interfaces": []
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"kind": "INPUT_OBJECT",
|
|
411
|
+
"name": "AIThreadSort",
|
|
412
|
+
"inputFields": [
|
|
413
|
+
{
|
|
414
|
+
"name": "direction",
|
|
415
|
+
"type": {
|
|
416
|
+
"kind": "NON_NULL",
|
|
417
|
+
"ofType": {
|
|
418
|
+
"kind": "ENUM",
|
|
419
|
+
"name": "SortDirection"
|
|
420
|
+
}
|
|
421
|
+
}
|
|
422
|
+
},
|
|
423
|
+
{
|
|
424
|
+
"name": "field",
|
|
425
|
+
"type": {
|
|
426
|
+
"kind": "NON_NULL",
|
|
427
|
+
"ofType": {
|
|
428
|
+
"kind": "ENUM",
|
|
429
|
+
"name": "SortableAIThreadFields"
|
|
430
|
+
}
|
|
431
|
+
}
|
|
432
|
+
}
|
|
433
|
+
],
|
|
434
|
+
"isOneOf": false
|
|
435
|
+
},
|
|
34
436
|
{
|
|
35
437
|
"kind": "OBJECT",
|
|
36
438
|
"name": "ActiveLanguagesEnterpriseSetting",
|
|
@@ -2867,6 +3269,10 @@ const introspection = {
|
|
|
2867
3269
|
"name": "CREATED_BY_EMPLOYEE",
|
|
2868
3270
|
"isDeprecated": false
|
|
2869
3271
|
},
|
|
3272
|
+
{
|
|
3273
|
+
"name": "MEETING_TYPE_UPDATED",
|
|
3274
|
+
"isDeprecated": false
|
|
3275
|
+
},
|
|
2870
3276
|
{
|
|
2871
3277
|
"name": "REQUEST_CREATED_BY_CUSTOMER",
|
|
2872
3278
|
"isDeprecated": false
|
|
@@ -3869,6 +4275,10 @@ const introspection = {
|
|
|
3869
4275
|
"name": "EXTERNAL_CALENDAR_ACCOUNT_BROKEN",
|
|
3870
4276
|
"isDeprecated": false
|
|
3871
4277
|
},
|
|
4278
|
+
{
|
|
4279
|
+
"name": "MEETING_TYPE_UPDATED",
|
|
4280
|
+
"isDeprecated": false
|
|
4281
|
+
},
|
|
3872
4282
|
{
|
|
3873
4283
|
"name": "REMINDER",
|
|
3874
4284
|
"isDeprecated": false
|
|
@@ -26134,6 +26544,36 @@ const introspection = {
|
|
|
26134
26544
|
],
|
|
26135
26545
|
"isDeprecated": false
|
|
26136
26546
|
},
|
|
26547
|
+
{
|
|
26548
|
+
"name": "sendAIMessage",
|
|
26549
|
+
"type": {
|
|
26550
|
+
"kind": "NON_NULL",
|
|
26551
|
+
"ofType": {
|
|
26552
|
+
"kind": "OBJECT",
|
|
26553
|
+
"name": "AIMessage"
|
|
26554
|
+
}
|
|
26555
|
+
},
|
|
26556
|
+
"args": [
|
|
26557
|
+
{
|
|
26558
|
+
"name": "aiThreadId",
|
|
26559
|
+
"type": {
|
|
26560
|
+
"kind": "SCALAR",
|
|
26561
|
+
"name": "String"
|
|
26562
|
+
}
|
|
26563
|
+
},
|
|
26564
|
+
{
|
|
26565
|
+
"name": "input",
|
|
26566
|
+
"type": {
|
|
26567
|
+
"kind": "NON_NULL",
|
|
26568
|
+
"ofType": {
|
|
26569
|
+
"kind": "INPUT_OBJECT",
|
|
26570
|
+
"name": "AIMessageSendInput"
|
|
26571
|
+
}
|
|
26572
|
+
}
|
|
26573
|
+
}
|
|
26574
|
+
],
|
|
26575
|
+
"isDeprecated": false
|
|
26576
|
+
},
|
|
26137
26577
|
{
|
|
26138
26578
|
"name": "syncFutureEventsToExternalCalendar",
|
|
26139
26579
|
"type": {
|
|
@@ -28444,150 +28884,353 @@ const introspection = {
|
|
|
28444
28884
|
"name": "weekStartsOn",
|
|
28445
28885
|
"type": {
|
|
28446
28886
|
"kind": "ENUM",
|
|
28447
|
-
"name": "AggregatedAppointmentInsightsWeekStartsOn"
|
|
28887
|
+
"name": "AggregatedAppointmentInsightsWeekStartsOn"
|
|
28888
|
+
}
|
|
28889
|
+
}
|
|
28890
|
+
],
|
|
28891
|
+
"isDeprecated": false
|
|
28892
|
+
},
|
|
28893
|
+
{
|
|
28894
|
+
"name": "aggregatedEmployeeAvailabilityInsights",
|
|
28895
|
+
"type": {
|
|
28896
|
+
"kind": "NON_NULL",
|
|
28897
|
+
"ofType": {
|
|
28898
|
+
"kind": "LIST",
|
|
28899
|
+
"ofType": {
|
|
28900
|
+
"kind": "NON_NULL",
|
|
28901
|
+
"ofType": {
|
|
28902
|
+
"kind": "OBJECT",
|
|
28903
|
+
"name": "AggregatedEmployeeAvailabilityInsight"
|
|
28904
|
+
}
|
|
28905
|
+
}
|
|
28906
|
+
}
|
|
28907
|
+
},
|
|
28908
|
+
"args": [
|
|
28909
|
+
{
|
|
28910
|
+
"name": "employeeId",
|
|
28911
|
+
"type": {
|
|
28912
|
+
"kind": "SCALAR",
|
|
28913
|
+
"name": "ID"
|
|
28914
|
+
}
|
|
28915
|
+
},
|
|
28916
|
+
{
|
|
28917
|
+
"name": "from",
|
|
28918
|
+
"type": {
|
|
28919
|
+
"kind": "NON_NULL",
|
|
28920
|
+
"ofType": {
|
|
28921
|
+
"kind": "SCALAR",
|
|
28922
|
+
"name": "ISO8601"
|
|
28923
|
+
}
|
|
28924
|
+
}
|
|
28925
|
+
},
|
|
28926
|
+
{
|
|
28927
|
+
"name": "interval",
|
|
28928
|
+
"type": {
|
|
28929
|
+
"kind": "NON_NULL",
|
|
28930
|
+
"ofType": {
|
|
28931
|
+
"kind": "ENUM",
|
|
28932
|
+
"name": "AggregatedAvailabilityInsightsInterval"
|
|
28933
|
+
}
|
|
28934
|
+
}
|
|
28935
|
+
},
|
|
28936
|
+
{
|
|
28937
|
+
"name": "officeId",
|
|
28938
|
+
"type": {
|
|
28939
|
+
"kind": "NON_NULL",
|
|
28940
|
+
"ofType": {
|
|
28941
|
+
"kind": "SCALAR",
|
|
28942
|
+
"name": "ID"
|
|
28943
|
+
}
|
|
28944
|
+
}
|
|
28945
|
+
},
|
|
28946
|
+
{
|
|
28947
|
+
"name": "timeZone",
|
|
28948
|
+
"type": {
|
|
28949
|
+
"kind": "NON_NULL",
|
|
28950
|
+
"ofType": {
|
|
28951
|
+
"kind": "SCALAR",
|
|
28952
|
+
"name": "String"
|
|
28953
|
+
}
|
|
28954
|
+
}
|
|
28955
|
+
},
|
|
28956
|
+
{
|
|
28957
|
+
"name": "to",
|
|
28958
|
+
"type": {
|
|
28959
|
+
"kind": "NON_NULL",
|
|
28960
|
+
"ofType": {
|
|
28961
|
+
"kind": "SCALAR",
|
|
28962
|
+
"name": "ISO8601"
|
|
28963
|
+
}
|
|
28964
|
+
}
|
|
28965
|
+
},
|
|
28966
|
+
{
|
|
28967
|
+
"name": "weekStartsOn",
|
|
28968
|
+
"type": {
|
|
28969
|
+
"kind": "ENUM",
|
|
28970
|
+
"name": "AggregatedAvailabilityInsightsWeekStartsOn"
|
|
28971
|
+
}
|
|
28972
|
+
}
|
|
28973
|
+
],
|
|
28974
|
+
"isDeprecated": false
|
|
28975
|
+
},
|
|
28976
|
+
{
|
|
28977
|
+
"name": "aggregatedOfficeAppointmentInsights",
|
|
28978
|
+
"type": {
|
|
28979
|
+
"kind": "NON_NULL",
|
|
28980
|
+
"ofType": {
|
|
28981
|
+
"kind": "LIST",
|
|
28982
|
+
"ofType": {
|
|
28983
|
+
"kind": "NON_NULL",
|
|
28984
|
+
"ofType": {
|
|
28985
|
+
"kind": "OBJECT",
|
|
28986
|
+
"name": "AggregatedOfficeAppointmentInsight"
|
|
28987
|
+
}
|
|
28988
|
+
}
|
|
28989
|
+
}
|
|
28990
|
+
},
|
|
28991
|
+
"args": [
|
|
28992
|
+
{
|
|
28993
|
+
"name": "employeeId",
|
|
28994
|
+
"type": {
|
|
28995
|
+
"kind": "SCALAR",
|
|
28996
|
+
"name": "ID"
|
|
28997
|
+
}
|
|
28998
|
+
},
|
|
28999
|
+
{
|
|
29000
|
+
"name": "from",
|
|
29001
|
+
"type": {
|
|
29002
|
+
"kind": "NON_NULL",
|
|
29003
|
+
"ofType": {
|
|
29004
|
+
"kind": "SCALAR",
|
|
29005
|
+
"name": "ISO8601"
|
|
29006
|
+
}
|
|
29007
|
+
}
|
|
29008
|
+
},
|
|
29009
|
+
{
|
|
29010
|
+
"name": "interval",
|
|
29011
|
+
"type": {
|
|
29012
|
+
"kind": "NON_NULL",
|
|
29013
|
+
"ofType": {
|
|
29014
|
+
"kind": "ENUM",
|
|
29015
|
+
"name": "AggregatedAppointmentInsightsInterval"
|
|
29016
|
+
}
|
|
29017
|
+
}
|
|
29018
|
+
},
|
|
29019
|
+
{
|
|
29020
|
+
"name": "officeId",
|
|
29021
|
+
"type": {
|
|
29022
|
+
"kind": "NON_NULL",
|
|
29023
|
+
"ofType": {
|
|
29024
|
+
"kind": "SCALAR",
|
|
29025
|
+
"name": "ID"
|
|
29026
|
+
}
|
|
29027
|
+
}
|
|
29028
|
+
},
|
|
29029
|
+
{
|
|
29030
|
+
"name": "timeZone",
|
|
29031
|
+
"type": {
|
|
29032
|
+
"kind": "NON_NULL",
|
|
29033
|
+
"ofType": {
|
|
29034
|
+
"kind": "SCALAR",
|
|
29035
|
+
"name": "String"
|
|
29036
|
+
}
|
|
29037
|
+
}
|
|
29038
|
+
},
|
|
29039
|
+
{
|
|
29040
|
+
"name": "to",
|
|
29041
|
+
"type": {
|
|
29042
|
+
"kind": "NON_NULL",
|
|
29043
|
+
"ofType": {
|
|
29044
|
+
"kind": "SCALAR",
|
|
29045
|
+
"name": "ISO8601"
|
|
29046
|
+
}
|
|
29047
|
+
}
|
|
29048
|
+
},
|
|
29049
|
+
{
|
|
29050
|
+
"name": "weekStartsOn",
|
|
29051
|
+
"type": {
|
|
29052
|
+
"kind": "ENUM",
|
|
29053
|
+
"name": "AggregatedAppointmentInsightsWeekStartsOn"
|
|
29054
|
+
}
|
|
29055
|
+
}
|
|
29056
|
+
],
|
|
29057
|
+
"isDeprecated": false
|
|
29058
|
+
},
|
|
29059
|
+
{
|
|
29060
|
+
"name": "aggregatedOfficeAvailabilityInsights",
|
|
29061
|
+
"type": {
|
|
29062
|
+
"kind": "NON_NULL",
|
|
29063
|
+
"ofType": {
|
|
29064
|
+
"kind": "LIST",
|
|
29065
|
+
"ofType": {
|
|
29066
|
+
"kind": "NON_NULL",
|
|
29067
|
+
"ofType": {
|
|
29068
|
+
"kind": "OBJECT",
|
|
29069
|
+
"name": "AggregatedOfficeAvailabilityInsight"
|
|
29070
|
+
}
|
|
29071
|
+
}
|
|
29072
|
+
}
|
|
29073
|
+
},
|
|
29074
|
+
"args": [
|
|
29075
|
+
{
|
|
29076
|
+
"name": "employeeId",
|
|
29077
|
+
"type": {
|
|
29078
|
+
"kind": "SCALAR",
|
|
29079
|
+
"name": "ID"
|
|
29080
|
+
}
|
|
29081
|
+
},
|
|
29082
|
+
{
|
|
29083
|
+
"name": "from",
|
|
29084
|
+
"type": {
|
|
29085
|
+
"kind": "NON_NULL",
|
|
29086
|
+
"ofType": {
|
|
29087
|
+
"kind": "SCALAR",
|
|
29088
|
+
"name": "ISO8601"
|
|
29089
|
+
}
|
|
29090
|
+
}
|
|
29091
|
+
},
|
|
29092
|
+
{
|
|
29093
|
+
"name": "interval",
|
|
29094
|
+
"type": {
|
|
29095
|
+
"kind": "NON_NULL",
|
|
29096
|
+
"ofType": {
|
|
29097
|
+
"kind": "ENUM",
|
|
29098
|
+
"name": "AggregatedAvailabilityInsightsInterval"
|
|
29099
|
+
}
|
|
29100
|
+
}
|
|
29101
|
+
},
|
|
29102
|
+
{
|
|
29103
|
+
"name": "officeId",
|
|
29104
|
+
"type": {
|
|
29105
|
+
"kind": "NON_NULL",
|
|
29106
|
+
"ofType": {
|
|
29107
|
+
"kind": "SCALAR",
|
|
29108
|
+
"name": "ID"
|
|
29109
|
+
}
|
|
29110
|
+
}
|
|
29111
|
+
},
|
|
29112
|
+
{
|
|
29113
|
+
"name": "timeZone",
|
|
29114
|
+
"type": {
|
|
29115
|
+
"kind": "NON_NULL",
|
|
29116
|
+
"ofType": {
|
|
29117
|
+
"kind": "SCALAR",
|
|
29118
|
+
"name": "String"
|
|
29119
|
+
}
|
|
29120
|
+
}
|
|
29121
|
+
},
|
|
29122
|
+
{
|
|
29123
|
+
"name": "to",
|
|
29124
|
+
"type": {
|
|
29125
|
+
"kind": "NON_NULL",
|
|
29126
|
+
"ofType": {
|
|
29127
|
+
"kind": "SCALAR",
|
|
29128
|
+
"name": "ISO8601"
|
|
29129
|
+
}
|
|
29130
|
+
}
|
|
29131
|
+
},
|
|
29132
|
+
{
|
|
29133
|
+
"name": "weekStartsOn",
|
|
29134
|
+
"type": {
|
|
29135
|
+
"kind": "ENUM",
|
|
29136
|
+
"name": "AggregatedAvailabilityInsightsWeekStartsOn"
|
|
28448
29137
|
}
|
|
28449
29138
|
}
|
|
28450
29139
|
],
|
|
28451
29140
|
"isDeprecated": false
|
|
28452
29141
|
},
|
|
28453
29142
|
{
|
|
28454
|
-
"name": "
|
|
29143
|
+
"name": "aiMessages",
|
|
28455
29144
|
"type": {
|
|
28456
29145
|
"kind": "NON_NULL",
|
|
28457
29146
|
"ofType": {
|
|
28458
|
-
"kind": "
|
|
28459
|
-
"
|
|
28460
|
-
"kind": "NON_NULL",
|
|
28461
|
-
"ofType": {
|
|
28462
|
-
"kind": "OBJECT",
|
|
28463
|
-
"name": "AggregatedEmployeeAvailabilityInsight"
|
|
28464
|
-
}
|
|
28465
|
-
}
|
|
29147
|
+
"kind": "OBJECT",
|
|
29148
|
+
"name": "AIMessageConnection"
|
|
28466
29149
|
}
|
|
28467
29150
|
},
|
|
28468
29151
|
"args": [
|
|
28469
29152
|
{
|
|
28470
|
-
"name": "
|
|
29153
|
+
"name": "after",
|
|
28471
29154
|
"type": {
|
|
28472
29155
|
"kind": "SCALAR",
|
|
28473
|
-
"name": "
|
|
29156
|
+
"name": "String"
|
|
28474
29157
|
}
|
|
28475
29158
|
},
|
|
28476
29159
|
{
|
|
28477
|
-
"name": "
|
|
29160
|
+
"name": "aiThreadId",
|
|
28478
29161
|
"type": {
|
|
28479
|
-
"kind": "
|
|
29162
|
+
"kind": "LIST",
|
|
28480
29163
|
"ofType": {
|
|
28481
|
-
"kind": "
|
|
28482
|
-
"
|
|
29164
|
+
"kind": "NON_NULL",
|
|
29165
|
+
"ofType": {
|
|
29166
|
+
"kind": "SCALAR",
|
|
29167
|
+
"name": "String"
|
|
29168
|
+
}
|
|
28483
29169
|
}
|
|
28484
29170
|
}
|
|
28485
29171
|
},
|
|
28486
29172
|
{
|
|
28487
|
-
"name": "
|
|
29173
|
+
"name": "before",
|
|
28488
29174
|
"type": {
|
|
28489
|
-
"kind": "
|
|
28490
|
-
"
|
|
28491
|
-
"kind": "ENUM",
|
|
28492
|
-
"name": "AggregatedAvailabilityInsightsInterval"
|
|
28493
|
-
}
|
|
29175
|
+
"kind": "SCALAR",
|
|
29176
|
+
"name": "String"
|
|
28494
29177
|
}
|
|
28495
29178
|
},
|
|
28496
29179
|
{
|
|
28497
|
-
"name": "
|
|
29180
|
+
"name": "first",
|
|
28498
29181
|
"type": {
|
|
28499
|
-
"kind": "
|
|
28500
|
-
"
|
|
28501
|
-
"kind": "SCALAR",
|
|
28502
|
-
"name": "ID"
|
|
28503
|
-
}
|
|
29182
|
+
"kind": "SCALAR",
|
|
29183
|
+
"name": "Int"
|
|
28504
29184
|
}
|
|
28505
29185
|
},
|
|
28506
29186
|
{
|
|
28507
|
-
"name": "
|
|
29187
|
+
"name": "id",
|
|
28508
29188
|
"type": {
|
|
28509
|
-
"kind": "
|
|
29189
|
+
"kind": "LIST",
|
|
28510
29190
|
"ofType": {
|
|
28511
|
-
"kind": "
|
|
28512
|
-
"
|
|
29191
|
+
"kind": "NON_NULL",
|
|
29192
|
+
"ofType": {
|
|
29193
|
+
"kind": "SCALAR",
|
|
29194
|
+
"name": "String"
|
|
29195
|
+
}
|
|
28513
29196
|
}
|
|
28514
29197
|
}
|
|
28515
29198
|
},
|
|
28516
29199
|
{
|
|
28517
|
-
"name": "
|
|
29200
|
+
"name": "last",
|
|
28518
29201
|
"type": {
|
|
28519
|
-
"kind": "
|
|
28520
|
-
"
|
|
28521
|
-
"kind": "SCALAR",
|
|
28522
|
-
"name": "ISO8601"
|
|
28523
|
-
}
|
|
29202
|
+
"kind": "SCALAR",
|
|
29203
|
+
"name": "Int"
|
|
28524
29204
|
}
|
|
28525
29205
|
},
|
|
28526
29206
|
{
|
|
28527
|
-
"name": "
|
|
29207
|
+
"name": "sort",
|
|
28528
29208
|
"type": {
|
|
28529
|
-
"kind": "
|
|
28530
|
-
"
|
|
29209
|
+
"kind": "LIST",
|
|
29210
|
+
"ofType": {
|
|
29211
|
+
"kind": "NON_NULL",
|
|
29212
|
+
"ofType": {
|
|
29213
|
+
"kind": "INPUT_OBJECT",
|
|
29214
|
+
"name": "AIMessageSort"
|
|
29215
|
+
}
|
|
29216
|
+
}
|
|
28531
29217
|
}
|
|
28532
29218
|
}
|
|
28533
29219
|
],
|
|
28534
29220
|
"isDeprecated": false
|
|
28535
29221
|
},
|
|
28536
29222
|
{
|
|
28537
|
-
"name": "
|
|
29223
|
+
"name": "aiThread",
|
|
28538
29224
|
"type": {
|
|
28539
29225
|
"kind": "NON_NULL",
|
|
28540
29226
|
"ofType": {
|
|
28541
|
-
"kind": "
|
|
28542
|
-
"
|
|
28543
|
-
"kind": "NON_NULL",
|
|
28544
|
-
"ofType": {
|
|
28545
|
-
"kind": "OBJECT",
|
|
28546
|
-
"name": "AggregatedOfficeAppointmentInsight"
|
|
28547
|
-
}
|
|
28548
|
-
}
|
|
29227
|
+
"kind": "OBJECT",
|
|
29228
|
+
"name": "AIThread"
|
|
28549
29229
|
}
|
|
28550
29230
|
},
|
|
28551
29231
|
"args": [
|
|
28552
29232
|
{
|
|
28553
|
-
"name": "
|
|
28554
|
-
"type": {
|
|
28555
|
-
"kind": "SCALAR",
|
|
28556
|
-
"name": "ID"
|
|
28557
|
-
}
|
|
28558
|
-
},
|
|
28559
|
-
{
|
|
28560
|
-
"name": "from",
|
|
28561
|
-
"type": {
|
|
28562
|
-
"kind": "NON_NULL",
|
|
28563
|
-
"ofType": {
|
|
28564
|
-
"kind": "SCALAR",
|
|
28565
|
-
"name": "ISO8601"
|
|
28566
|
-
}
|
|
28567
|
-
}
|
|
28568
|
-
},
|
|
28569
|
-
{
|
|
28570
|
-
"name": "interval",
|
|
28571
|
-
"type": {
|
|
28572
|
-
"kind": "NON_NULL",
|
|
28573
|
-
"ofType": {
|
|
28574
|
-
"kind": "ENUM",
|
|
28575
|
-
"name": "AggregatedAppointmentInsightsInterval"
|
|
28576
|
-
}
|
|
28577
|
-
}
|
|
28578
|
-
},
|
|
28579
|
-
{
|
|
28580
|
-
"name": "officeId",
|
|
28581
|
-
"type": {
|
|
28582
|
-
"kind": "NON_NULL",
|
|
28583
|
-
"ofType": {
|
|
28584
|
-
"kind": "SCALAR",
|
|
28585
|
-
"name": "ID"
|
|
28586
|
-
}
|
|
28587
|
-
}
|
|
28588
|
-
},
|
|
28589
|
-
{
|
|
28590
|
-
"name": "timeZone",
|
|
29233
|
+
"name": "id",
|
|
28591
29234
|
"type": {
|
|
28592
29235
|
"kind": "NON_NULL",
|
|
28593
29236
|
"ofType": {
|
|
@@ -28595,106 +29238,73 @@ const introspection = {
|
|
|
28595
29238
|
"name": "String"
|
|
28596
29239
|
}
|
|
28597
29240
|
}
|
|
28598
|
-
},
|
|
28599
|
-
{
|
|
28600
|
-
"name": "to",
|
|
28601
|
-
"type": {
|
|
28602
|
-
"kind": "NON_NULL",
|
|
28603
|
-
"ofType": {
|
|
28604
|
-
"kind": "SCALAR",
|
|
28605
|
-
"name": "ISO8601"
|
|
28606
|
-
}
|
|
28607
|
-
}
|
|
28608
|
-
},
|
|
28609
|
-
{
|
|
28610
|
-
"name": "weekStartsOn",
|
|
28611
|
-
"type": {
|
|
28612
|
-
"kind": "ENUM",
|
|
28613
|
-
"name": "AggregatedAppointmentInsightsWeekStartsOn"
|
|
28614
|
-
}
|
|
28615
29241
|
}
|
|
28616
29242
|
],
|
|
28617
29243
|
"isDeprecated": false
|
|
28618
29244
|
},
|
|
28619
29245
|
{
|
|
28620
|
-
"name": "
|
|
29246
|
+
"name": "aiThreads",
|
|
28621
29247
|
"type": {
|
|
28622
29248
|
"kind": "NON_NULL",
|
|
28623
29249
|
"ofType": {
|
|
28624
|
-
"kind": "
|
|
28625
|
-
"
|
|
28626
|
-
"kind": "NON_NULL",
|
|
28627
|
-
"ofType": {
|
|
28628
|
-
"kind": "OBJECT",
|
|
28629
|
-
"name": "AggregatedOfficeAvailabilityInsight"
|
|
28630
|
-
}
|
|
28631
|
-
}
|
|
29250
|
+
"kind": "OBJECT",
|
|
29251
|
+
"name": "AIThreadConnection"
|
|
28632
29252
|
}
|
|
28633
29253
|
},
|
|
28634
29254
|
"args": [
|
|
28635
29255
|
{
|
|
28636
|
-
"name": "
|
|
29256
|
+
"name": "after",
|
|
28637
29257
|
"type": {
|
|
28638
29258
|
"kind": "SCALAR",
|
|
28639
|
-
"name": "
|
|
29259
|
+
"name": "String"
|
|
28640
29260
|
}
|
|
28641
29261
|
},
|
|
28642
29262
|
{
|
|
28643
|
-
"name": "
|
|
29263
|
+
"name": "before",
|
|
28644
29264
|
"type": {
|
|
28645
|
-
"kind": "
|
|
28646
|
-
"
|
|
28647
|
-
"kind": "SCALAR",
|
|
28648
|
-
"name": "ISO8601"
|
|
28649
|
-
}
|
|
29265
|
+
"kind": "SCALAR",
|
|
29266
|
+
"name": "String"
|
|
28650
29267
|
}
|
|
28651
29268
|
},
|
|
28652
29269
|
{
|
|
28653
|
-
"name": "
|
|
29270
|
+
"name": "first",
|
|
28654
29271
|
"type": {
|
|
28655
|
-
"kind": "
|
|
28656
|
-
"
|
|
28657
|
-
"kind": "ENUM",
|
|
28658
|
-
"name": "AggregatedAvailabilityInsightsInterval"
|
|
28659
|
-
}
|
|
29272
|
+
"kind": "SCALAR",
|
|
29273
|
+
"name": "Int"
|
|
28660
29274
|
}
|
|
28661
29275
|
},
|
|
28662
29276
|
{
|
|
28663
|
-
"name": "
|
|
29277
|
+
"name": "id",
|
|
28664
29278
|
"type": {
|
|
28665
|
-
"kind": "
|
|
29279
|
+
"kind": "LIST",
|
|
28666
29280
|
"ofType": {
|
|
28667
|
-
"kind": "
|
|
28668
|
-
"
|
|
29281
|
+
"kind": "NON_NULL",
|
|
29282
|
+
"ofType": {
|
|
29283
|
+
"kind": "SCALAR",
|
|
29284
|
+
"name": "String"
|
|
29285
|
+
}
|
|
28669
29286
|
}
|
|
28670
29287
|
}
|
|
28671
29288
|
},
|
|
28672
29289
|
{
|
|
28673
|
-
"name": "
|
|
29290
|
+
"name": "last",
|
|
28674
29291
|
"type": {
|
|
28675
|
-
"kind": "
|
|
28676
|
-
"
|
|
28677
|
-
"kind": "SCALAR",
|
|
28678
|
-
"name": "String"
|
|
28679
|
-
}
|
|
29292
|
+
"kind": "SCALAR",
|
|
29293
|
+
"name": "Int"
|
|
28680
29294
|
}
|
|
28681
29295
|
},
|
|
28682
29296
|
{
|
|
28683
|
-
"name": "
|
|
29297
|
+
"name": "sort",
|
|
28684
29298
|
"type": {
|
|
28685
|
-
"kind": "
|
|
29299
|
+
"kind": "LIST",
|
|
28686
29300
|
"ofType": {
|
|
28687
|
-
"kind": "
|
|
28688
|
-
"
|
|
29301
|
+
"kind": "NON_NULL",
|
|
29302
|
+
"ofType": {
|
|
29303
|
+
"kind": "INPUT_OBJECT",
|
|
29304
|
+
"name": "AIThreadSort"
|
|
29305
|
+
}
|
|
28689
29306
|
}
|
|
28690
29307
|
}
|
|
28691
|
-
},
|
|
28692
|
-
{
|
|
28693
|
-
"name": "weekStartsOn",
|
|
28694
|
-
"type": {
|
|
28695
|
-
"kind": "ENUM",
|
|
28696
|
-
"name": "AggregatedAvailabilityInsightsWeekStartsOn"
|
|
28697
|
-
}
|
|
28698
29308
|
}
|
|
28699
29309
|
],
|
|
28700
29310
|
"isDeprecated": false
|
|
@@ -29072,6 +29682,29 @@ const introspection = {
|
|
|
29072
29682
|
],
|
|
29073
29683
|
"isDeprecated": false
|
|
29074
29684
|
},
|
|
29685
|
+
{
|
|
29686
|
+
"name": "appointmentEmployeeChart",
|
|
29687
|
+
"type": {
|
|
29688
|
+
"kind": "NON_NULL",
|
|
29689
|
+
"ofType": {
|
|
29690
|
+
"kind": "OBJECT",
|
|
29691
|
+
"name": "Chart"
|
|
29692
|
+
}
|
|
29693
|
+
},
|
|
29694
|
+
"args": [
|
|
29695
|
+
{
|
|
29696
|
+
"name": "filters",
|
|
29697
|
+
"type": {
|
|
29698
|
+
"kind": "NON_NULL",
|
|
29699
|
+
"ofType": {
|
|
29700
|
+
"kind": "INPUT_OBJECT",
|
|
29701
|
+
"name": "AppointmentChartFilters"
|
|
29702
|
+
}
|
|
29703
|
+
}
|
|
29704
|
+
}
|
|
29705
|
+
],
|
|
29706
|
+
"isDeprecated": false
|
|
29707
|
+
},
|
|
29075
29708
|
{
|
|
29076
29709
|
"name": "appointmentMeetingTypeChart",
|
|
29077
29710
|
"type": {
|
|
@@ -38701,6 +39334,42 @@ const introspection = {
|
|
|
38701
39334
|
}
|
|
38702
39335
|
]
|
|
38703
39336
|
},
|
|
39337
|
+
{
|
|
39338
|
+
"kind": "ENUM",
|
|
39339
|
+
"name": "SortableAIMessageFields",
|
|
39340
|
+
"enumValues": [
|
|
39341
|
+
{
|
|
39342
|
+
"name": "createdAt",
|
|
39343
|
+
"isDeprecated": false
|
|
39344
|
+
},
|
|
39345
|
+
{
|
|
39346
|
+
"name": "id",
|
|
39347
|
+
"isDeprecated": false
|
|
39348
|
+
},
|
|
39349
|
+
{
|
|
39350
|
+
"name": "updatedAt",
|
|
39351
|
+
"isDeprecated": false
|
|
39352
|
+
}
|
|
39353
|
+
]
|
|
39354
|
+
},
|
|
39355
|
+
{
|
|
39356
|
+
"kind": "ENUM",
|
|
39357
|
+
"name": "SortableAIThreadFields",
|
|
39358
|
+
"enumValues": [
|
|
39359
|
+
{
|
|
39360
|
+
"name": "createdAt",
|
|
39361
|
+
"isDeprecated": false
|
|
39362
|
+
},
|
|
39363
|
+
{
|
|
39364
|
+
"name": "id",
|
|
39365
|
+
"isDeprecated": false
|
|
39366
|
+
},
|
|
39367
|
+
{
|
|
39368
|
+
"name": "updatedAt",
|
|
39369
|
+
"isDeprecated": false
|
|
39370
|
+
}
|
|
39371
|
+
]
|
|
39372
|
+
},
|
|
38704
39373
|
{
|
|
38705
39374
|
"kind": "ENUM",
|
|
38706
39375
|
"name": "SortableAppointmentFields",
|