@pexip-engage-public/graphql 1.1.12 → 1.1.14-canary-20251008093334
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 +17 -0
- package/dist/graphql-env.d.ts +1228 -59
- package/dist/graphql-env.d.ts.map +1 -1
- package/dist/graphql-env.js +1535 -240
- package/dist/graphql-env.js.map +1 -1
- package/dist/graphql.d.ts +1 -1
- package/dist/graphql.d.ts.map +1 -1
- package/dist/schema.d.ts +139 -4
- package/dist/schema.d.ts.map +1 -1
- package/package.json +5 -5
- package/src/graphql-env.ts +1535 -240
- package/src/graphql.ts +1 -1
- package/src/schema.ts +157 -3
package/dist/graphql-env.d.ts
CHANGED
|
@@ -6113,6 +6113,596 @@ declare const introspection: {
|
|
|
6113
6113
|
readonly name: "REMINDER";
|
|
6114
6114
|
readonly isDeprecated: false;
|
|
6115
6115
|
}];
|
|
6116
|
+
}, {
|
|
6117
|
+
readonly kind: "OBJECT";
|
|
6118
|
+
readonly name: "Context";
|
|
6119
|
+
readonly fields: readonly [{
|
|
6120
|
+
readonly name: "createdAt";
|
|
6121
|
+
readonly type: {
|
|
6122
|
+
readonly kind: "NON_NULL";
|
|
6123
|
+
readonly ofType: {
|
|
6124
|
+
readonly kind: "SCALAR";
|
|
6125
|
+
readonly name: "ISO8601";
|
|
6126
|
+
};
|
|
6127
|
+
};
|
|
6128
|
+
readonly args: readonly [];
|
|
6129
|
+
readonly isDeprecated: false;
|
|
6130
|
+
}, {
|
|
6131
|
+
readonly name: "expiresAt";
|
|
6132
|
+
readonly type: {
|
|
6133
|
+
readonly kind: "SCALAR";
|
|
6134
|
+
readonly name: "ISO8601";
|
|
6135
|
+
};
|
|
6136
|
+
readonly args: readonly [];
|
|
6137
|
+
readonly isDeprecated: false;
|
|
6138
|
+
}, {
|
|
6139
|
+
readonly name: "externalId";
|
|
6140
|
+
readonly type: {
|
|
6141
|
+
readonly kind: "SCALAR";
|
|
6142
|
+
readonly name: "String";
|
|
6143
|
+
};
|
|
6144
|
+
readonly args: readonly [];
|
|
6145
|
+
readonly isDeprecated: false;
|
|
6146
|
+
}, {
|
|
6147
|
+
readonly name: "id";
|
|
6148
|
+
readonly type: {
|
|
6149
|
+
readonly kind: "NON_NULL";
|
|
6150
|
+
readonly ofType: {
|
|
6151
|
+
readonly kind: "SCALAR";
|
|
6152
|
+
readonly name: "String";
|
|
6153
|
+
};
|
|
6154
|
+
};
|
|
6155
|
+
readonly args: readonly [];
|
|
6156
|
+
readonly isDeprecated: false;
|
|
6157
|
+
}, {
|
|
6158
|
+
readonly name: "lastAccessedAt";
|
|
6159
|
+
readonly type: {
|
|
6160
|
+
readonly kind: "SCALAR";
|
|
6161
|
+
readonly name: "ISO8601";
|
|
6162
|
+
};
|
|
6163
|
+
readonly args: readonly [];
|
|
6164
|
+
readonly isDeprecated: false;
|
|
6165
|
+
}, {
|
|
6166
|
+
readonly name: "output";
|
|
6167
|
+
readonly type: {
|
|
6168
|
+
readonly kind: "NON_NULL";
|
|
6169
|
+
readonly ofType: {
|
|
6170
|
+
readonly kind: "OBJECT";
|
|
6171
|
+
readonly name: "ContextOutput";
|
|
6172
|
+
};
|
|
6173
|
+
};
|
|
6174
|
+
readonly args: readonly [];
|
|
6175
|
+
readonly isDeprecated: false;
|
|
6176
|
+
}, {
|
|
6177
|
+
readonly name: "updatedAt";
|
|
6178
|
+
readonly type: {
|
|
6179
|
+
readonly kind: "NON_NULL";
|
|
6180
|
+
readonly ofType: {
|
|
6181
|
+
readonly kind: "SCALAR";
|
|
6182
|
+
readonly name: "ISO8601";
|
|
6183
|
+
};
|
|
6184
|
+
};
|
|
6185
|
+
readonly args: readonly [];
|
|
6186
|
+
readonly isDeprecated: false;
|
|
6187
|
+
}];
|
|
6188
|
+
readonly interfaces: readonly [];
|
|
6189
|
+
}, {
|
|
6190
|
+
readonly kind: "INPUT_OBJECT";
|
|
6191
|
+
readonly name: "ContextInput";
|
|
6192
|
+
readonly inputFields: readonly [{
|
|
6193
|
+
readonly name: "appointmentExternalId";
|
|
6194
|
+
readonly type: {
|
|
6195
|
+
readonly kind: "SCALAR";
|
|
6196
|
+
readonly name: "String";
|
|
6197
|
+
};
|
|
6198
|
+
}, {
|
|
6199
|
+
readonly name: "customerExternalIds";
|
|
6200
|
+
readonly type: {
|
|
6201
|
+
readonly kind: "LIST";
|
|
6202
|
+
readonly ofType: {
|
|
6203
|
+
readonly kind: "NON_NULL";
|
|
6204
|
+
readonly ofType: {
|
|
6205
|
+
readonly kind: "SCALAR";
|
|
6206
|
+
readonly name: "String";
|
|
6207
|
+
};
|
|
6208
|
+
};
|
|
6209
|
+
};
|
|
6210
|
+
}, {
|
|
6211
|
+
readonly name: "customerIds";
|
|
6212
|
+
readonly type: {
|
|
6213
|
+
readonly kind: "LIST";
|
|
6214
|
+
readonly ofType: {
|
|
6215
|
+
readonly kind: "NON_NULL";
|
|
6216
|
+
readonly ofType: {
|
|
6217
|
+
readonly kind: "SCALAR";
|
|
6218
|
+
readonly name: "ID";
|
|
6219
|
+
};
|
|
6220
|
+
};
|
|
6221
|
+
};
|
|
6222
|
+
}, {
|
|
6223
|
+
readonly name: "customers";
|
|
6224
|
+
readonly type: {
|
|
6225
|
+
readonly kind: "LIST";
|
|
6226
|
+
readonly ofType: {
|
|
6227
|
+
readonly kind: "NON_NULL";
|
|
6228
|
+
readonly ofType: {
|
|
6229
|
+
readonly kind: "INPUT_OBJECT";
|
|
6230
|
+
readonly name: "CustomerCreateInput";
|
|
6231
|
+
};
|
|
6232
|
+
};
|
|
6233
|
+
};
|
|
6234
|
+
}, {
|
|
6235
|
+
readonly name: "employeeExternalIds";
|
|
6236
|
+
readonly type: {
|
|
6237
|
+
readonly kind: "LIST";
|
|
6238
|
+
readonly ofType: {
|
|
6239
|
+
readonly kind: "NON_NULL";
|
|
6240
|
+
readonly ofType: {
|
|
6241
|
+
readonly kind: "SCALAR";
|
|
6242
|
+
readonly name: "String";
|
|
6243
|
+
};
|
|
6244
|
+
};
|
|
6245
|
+
};
|
|
6246
|
+
}, {
|
|
6247
|
+
readonly name: "employeeIds";
|
|
6248
|
+
readonly type: {
|
|
6249
|
+
readonly kind: "LIST";
|
|
6250
|
+
readonly ofType: {
|
|
6251
|
+
readonly kind: "NON_NULL";
|
|
6252
|
+
readonly ofType: {
|
|
6253
|
+
readonly kind: "SCALAR";
|
|
6254
|
+
readonly name: "ID";
|
|
6255
|
+
};
|
|
6256
|
+
};
|
|
6257
|
+
};
|
|
6258
|
+
}, {
|
|
6259
|
+
readonly name: "end";
|
|
6260
|
+
readonly type: {
|
|
6261
|
+
readonly kind: "SCALAR";
|
|
6262
|
+
readonly name: "ISO8601";
|
|
6263
|
+
};
|
|
6264
|
+
}, {
|
|
6265
|
+
readonly name: "leadSegmentCodes";
|
|
6266
|
+
readonly type: {
|
|
6267
|
+
readonly kind: "LIST";
|
|
6268
|
+
readonly ofType: {
|
|
6269
|
+
readonly kind: "NON_NULL";
|
|
6270
|
+
readonly ofType: {
|
|
6271
|
+
readonly kind: "SCALAR";
|
|
6272
|
+
readonly name: "String";
|
|
6273
|
+
};
|
|
6274
|
+
};
|
|
6275
|
+
};
|
|
6276
|
+
}, {
|
|
6277
|
+
readonly name: "leadSegmentIds";
|
|
6278
|
+
readonly type: {
|
|
6279
|
+
readonly kind: "LIST";
|
|
6280
|
+
readonly ofType: {
|
|
6281
|
+
readonly kind: "NON_NULL";
|
|
6282
|
+
readonly ofType: {
|
|
6283
|
+
readonly kind: "SCALAR";
|
|
6284
|
+
readonly name: "ID";
|
|
6285
|
+
};
|
|
6286
|
+
};
|
|
6287
|
+
};
|
|
6288
|
+
}, {
|
|
6289
|
+
readonly name: "listingExternalIds";
|
|
6290
|
+
readonly type: {
|
|
6291
|
+
readonly kind: "LIST";
|
|
6292
|
+
readonly ofType: {
|
|
6293
|
+
readonly kind: "NON_NULL";
|
|
6294
|
+
readonly ofType: {
|
|
6295
|
+
readonly kind: "SCALAR";
|
|
6296
|
+
readonly name: "String";
|
|
6297
|
+
};
|
|
6298
|
+
};
|
|
6299
|
+
};
|
|
6300
|
+
}, {
|
|
6301
|
+
readonly name: "listingIds";
|
|
6302
|
+
readonly type: {
|
|
6303
|
+
readonly kind: "LIST";
|
|
6304
|
+
readonly ofType: {
|
|
6305
|
+
readonly kind: "NON_NULL";
|
|
6306
|
+
readonly ofType: {
|
|
6307
|
+
readonly kind: "SCALAR";
|
|
6308
|
+
readonly name: "ID";
|
|
6309
|
+
};
|
|
6310
|
+
};
|
|
6311
|
+
};
|
|
6312
|
+
}, {
|
|
6313
|
+
readonly name: "meetingRoomIds";
|
|
6314
|
+
readonly type: {
|
|
6315
|
+
readonly kind: "LIST";
|
|
6316
|
+
readonly ofType: {
|
|
6317
|
+
readonly kind: "NON_NULL";
|
|
6318
|
+
readonly ofType: {
|
|
6319
|
+
readonly kind: "SCALAR";
|
|
6320
|
+
readonly name: "ID";
|
|
6321
|
+
};
|
|
6322
|
+
};
|
|
6323
|
+
};
|
|
6324
|
+
}, {
|
|
6325
|
+
readonly name: "meetingTypes";
|
|
6326
|
+
readonly type: {
|
|
6327
|
+
readonly kind: "LIST";
|
|
6328
|
+
readonly ofType: {
|
|
6329
|
+
readonly kind: "NON_NULL";
|
|
6330
|
+
readonly ofType: {
|
|
6331
|
+
readonly kind: "ENUM";
|
|
6332
|
+
readonly name: "MeetingType";
|
|
6333
|
+
};
|
|
6334
|
+
};
|
|
6335
|
+
};
|
|
6336
|
+
}, {
|
|
6337
|
+
readonly name: "metadata";
|
|
6338
|
+
readonly type: {
|
|
6339
|
+
readonly kind: "SCALAR";
|
|
6340
|
+
readonly name: "JSONObject";
|
|
6341
|
+
};
|
|
6342
|
+
}, {
|
|
6343
|
+
readonly name: "officeExternalIds";
|
|
6344
|
+
readonly type: {
|
|
6345
|
+
readonly kind: "LIST";
|
|
6346
|
+
readonly ofType: {
|
|
6347
|
+
readonly kind: "NON_NULL";
|
|
6348
|
+
readonly ofType: {
|
|
6349
|
+
readonly kind: "SCALAR";
|
|
6350
|
+
readonly name: "String";
|
|
6351
|
+
};
|
|
6352
|
+
};
|
|
6353
|
+
};
|
|
6354
|
+
}, {
|
|
6355
|
+
readonly name: "officeIds";
|
|
6356
|
+
readonly type: {
|
|
6357
|
+
readonly kind: "LIST";
|
|
6358
|
+
readonly ofType: {
|
|
6359
|
+
readonly kind: "NON_NULL";
|
|
6360
|
+
readonly ofType: {
|
|
6361
|
+
readonly kind: "SCALAR";
|
|
6362
|
+
readonly name: "ID";
|
|
6363
|
+
};
|
|
6364
|
+
};
|
|
6365
|
+
};
|
|
6366
|
+
}, {
|
|
6367
|
+
readonly name: "secondaryCustomerExternalIds";
|
|
6368
|
+
readonly type: {
|
|
6369
|
+
readonly kind: "LIST";
|
|
6370
|
+
readonly ofType: {
|
|
6371
|
+
readonly kind: "NON_NULL";
|
|
6372
|
+
readonly ofType: {
|
|
6373
|
+
readonly kind: "SCALAR";
|
|
6374
|
+
readonly name: "String";
|
|
6375
|
+
};
|
|
6376
|
+
};
|
|
6377
|
+
};
|
|
6378
|
+
}, {
|
|
6379
|
+
readonly name: "secondaryCustomerIds";
|
|
6380
|
+
readonly type: {
|
|
6381
|
+
readonly kind: "LIST";
|
|
6382
|
+
readonly ofType: {
|
|
6383
|
+
readonly kind: "NON_NULL";
|
|
6384
|
+
readonly ofType: {
|
|
6385
|
+
readonly kind: "SCALAR";
|
|
6386
|
+
readonly name: "ID";
|
|
6387
|
+
};
|
|
6388
|
+
};
|
|
6389
|
+
};
|
|
6390
|
+
}, {
|
|
6391
|
+
readonly name: "secondaryCustomers";
|
|
6392
|
+
readonly type: {
|
|
6393
|
+
readonly kind: "LIST";
|
|
6394
|
+
readonly ofType: {
|
|
6395
|
+
readonly kind: "NON_NULL";
|
|
6396
|
+
readonly ofType: {
|
|
6397
|
+
readonly kind: "INPUT_OBJECT";
|
|
6398
|
+
readonly name: "CustomerCreateInput";
|
|
6399
|
+
};
|
|
6400
|
+
};
|
|
6401
|
+
};
|
|
6402
|
+
}, {
|
|
6403
|
+
readonly name: "secondaryEmployeeExternalIds";
|
|
6404
|
+
readonly type: {
|
|
6405
|
+
readonly kind: "LIST";
|
|
6406
|
+
readonly ofType: {
|
|
6407
|
+
readonly kind: "NON_NULL";
|
|
6408
|
+
readonly ofType: {
|
|
6409
|
+
readonly kind: "SCALAR";
|
|
6410
|
+
readonly name: "String";
|
|
6411
|
+
};
|
|
6412
|
+
};
|
|
6413
|
+
};
|
|
6414
|
+
}, {
|
|
6415
|
+
readonly name: "secondaryEmployeeIds";
|
|
6416
|
+
readonly type: {
|
|
6417
|
+
readonly kind: "LIST";
|
|
6418
|
+
readonly ofType: {
|
|
6419
|
+
readonly kind: "NON_NULL";
|
|
6420
|
+
readonly ofType: {
|
|
6421
|
+
readonly kind: "SCALAR";
|
|
6422
|
+
readonly name: "ID";
|
|
6423
|
+
};
|
|
6424
|
+
};
|
|
6425
|
+
};
|
|
6426
|
+
}, {
|
|
6427
|
+
readonly name: "start";
|
|
6428
|
+
readonly type: {
|
|
6429
|
+
readonly kind: "SCALAR";
|
|
6430
|
+
readonly name: "ISO8601";
|
|
6431
|
+
};
|
|
6432
|
+
}, {
|
|
6433
|
+
readonly name: "subjectExternalIds";
|
|
6434
|
+
readonly type: {
|
|
6435
|
+
readonly kind: "LIST";
|
|
6436
|
+
readonly ofType: {
|
|
6437
|
+
readonly kind: "NON_NULL";
|
|
6438
|
+
readonly ofType: {
|
|
6439
|
+
readonly kind: "SCALAR";
|
|
6440
|
+
readonly name: "String";
|
|
6441
|
+
};
|
|
6442
|
+
};
|
|
6443
|
+
};
|
|
6444
|
+
}, {
|
|
6445
|
+
readonly name: "subjectGroupExternalIds";
|
|
6446
|
+
readonly type: {
|
|
6447
|
+
readonly kind: "LIST";
|
|
6448
|
+
readonly ofType: {
|
|
6449
|
+
readonly kind: "NON_NULL";
|
|
6450
|
+
readonly ofType: {
|
|
6451
|
+
readonly kind: "SCALAR";
|
|
6452
|
+
readonly name: "String";
|
|
6453
|
+
};
|
|
6454
|
+
};
|
|
6455
|
+
};
|
|
6456
|
+
}, {
|
|
6457
|
+
readonly name: "subjectGroupIds";
|
|
6458
|
+
readonly type: {
|
|
6459
|
+
readonly kind: "LIST";
|
|
6460
|
+
readonly ofType: {
|
|
6461
|
+
readonly kind: "NON_NULL";
|
|
6462
|
+
readonly ofType: {
|
|
6463
|
+
readonly kind: "SCALAR";
|
|
6464
|
+
readonly name: "ID";
|
|
6465
|
+
};
|
|
6466
|
+
};
|
|
6467
|
+
};
|
|
6468
|
+
}, {
|
|
6469
|
+
readonly name: "subjectIds";
|
|
6470
|
+
readonly type: {
|
|
6471
|
+
readonly kind: "LIST";
|
|
6472
|
+
readonly ofType: {
|
|
6473
|
+
readonly kind: "NON_NULL";
|
|
6474
|
+
readonly ofType: {
|
|
6475
|
+
readonly kind: "SCALAR";
|
|
6476
|
+
readonly name: "ID";
|
|
6477
|
+
};
|
|
6478
|
+
};
|
|
6479
|
+
};
|
|
6480
|
+
}];
|
|
6481
|
+
readonly isOneOf: false;
|
|
6482
|
+
}, {
|
|
6483
|
+
readonly kind: "OBJECT";
|
|
6484
|
+
readonly name: "ContextOutput";
|
|
6485
|
+
readonly fields: readonly [{
|
|
6486
|
+
readonly name: "appointmentExternalId";
|
|
6487
|
+
readonly type: {
|
|
6488
|
+
readonly kind: "SCALAR";
|
|
6489
|
+
readonly name: "String";
|
|
6490
|
+
};
|
|
6491
|
+
readonly args: readonly [];
|
|
6492
|
+
readonly isDeprecated: false;
|
|
6493
|
+
}, {
|
|
6494
|
+
readonly name: "customerIds";
|
|
6495
|
+
readonly type: {
|
|
6496
|
+
readonly kind: "NON_NULL";
|
|
6497
|
+
readonly ofType: {
|
|
6498
|
+
readonly kind: "LIST";
|
|
6499
|
+
readonly ofType: {
|
|
6500
|
+
readonly kind: "NON_NULL";
|
|
6501
|
+
readonly ofType: {
|
|
6502
|
+
readonly kind: "SCALAR";
|
|
6503
|
+
readonly name: "ID";
|
|
6504
|
+
};
|
|
6505
|
+
};
|
|
6506
|
+
};
|
|
6507
|
+
};
|
|
6508
|
+
readonly args: readonly [];
|
|
6509
|
+
readonly isDeprecated: false;
|
|
6510
|
+
}, {
|
|
6511
|
+
readonly name: "employeeIds";
|
|
6512
|
+
readonly type: {
|
|
6513
|
+
readonly kind: "NON_NULL";
|
|
6514
|
+
readonly ofType: {
|
|
6515
|
+
readonly kind: "LIST";
|
|
6516
|
+
readonly ofType: {
|
|
6517
|
+
readonly kind: "NON_NULL";
|
|
6518
|
+
readonly ofType: {
|
|
6519
|
+
readonly kind: "SCALAR";
|
|
6520
|
+
readonly name: "ID";
|
|
6521
|
+
};
|
|
6522
|
+
};
|
|
6523
|
+
};
|
|
6524
|
+
};
|
|
6525
|
+
readonly args: readonly [];
|
|
6526
|
+
readonly isDeprecated: false;
|
|
6527
|
+
}, {
|
|
6528
|
+
readonly name: "end";
|
|
6529
|
+
readonly type: {
|
|
6530
|
+
readonly kind: "SCALAR";
|
|
6531
|
+
readonly name: "ISO8601";
|
|
6532
|
+
};
|
|
6533
|
+
readonly args: readonly [];
|
|
6534
|
+
readonly isDeprecated: false;
|
|
6535
|
+
}, {
|
|
6536
|
+
readonly name: "leadSegmentIds";
|
|
6537
|
+
readonly type: {
|
|
6538
|
+
readonly kind: "NON_NULL";
|
|
6539
|
+
readonly ofType: {
|
|
6540
|
+
readonly kind: "LIST";
|
|
6541
|
+
readonly ofType: {
|
|
6542
|
+
readonly kind: "NON_NULL";
|
|
6543
|
+
readonly ofType: {
|
|
6544
|
+
readonly kind: "SCALAR";
|
|
6545
|
+
readonly name: "ID";
|
|
6546
|
+
};
|
|
6547
|
+
};
|
|
6548
|
+
};
|
|
6549
|
+
};
|
|
6550
|
+
readonly args: readonly [];
|
|
6551
|
+
readonly isDeprecated: false;
|
|
6552
|
+
}, {
|
|
6553
|
+
readonly name: "listingIds";
|
|
6554
|
+
readonly type: {
|
|
6555
|
+
readonly kind: "NON_NULL";
|
|
6556
|
+
readonly ofType: {
|
|
6557
|
+
readonly kind: "LIST";
|
|
6558
|
+
readonly ofType: {
|
|
6559
|
+
readonly kind: "NON_NULL";
|
|
6560
|
+
readonly ofType: {
|
|
6561
|
+
readonly kind: "SCALAR";
|
|
6562
|
+
readonly name: "ID";
|
|
6563
|
+
};
|
|
6564
|
+
};
|
|
6565
|
+
};
|
|
6566
|
+
};
|
|
6567
|
+
readonly args: readonly [];
|
|
6568
|
+
readonly isDeprecated: false;
|
|
6569
|
+
}, {
|
|
6570
|
+
readonly name: "meetingRoomIds";
|
|
6571
|
+
readonly type: {
|
|
6572
|
+
readonly kind: "NON_NULL";
|
|
6573
|
+
readonly ofType: {
|
|
6574
|
+
readonly kind: "LIST";
|
|
6575
|
+
readonly ofType: {
|
|
6576
|
+
readonly kind: "NON_NULL";
|
|
6577
|
+
readonly ofType: {
|
|
6578
|
+
readonly kind: "SCALAR";
|
|
6579
|
+
readonly name: "ID";
|
|
6580
|
+
};
|
|
6581
|
+
};
|
|
6582
|
+
};
|
|
6583
|
+
};
|
|
6584
|
+
readonly args: readonly [];
|
|
6585
|
+
readonly isDeprecated: false;
|
|
6586
|
+
}, {
|
|
6587
|
+
readonly name: "meetingTypes";
|
|
6588
|
+
readonly type: {
|
|
6589
|
+
readonly kind: "NON_NULL";
|
|
6590
|
+
readonly ofType: {
|
|
6591
|
+
readonly kind: "LIST";
|
|
6592
|
+
readonly ofType: {
|
|
6593
|
+
readonly kind: "NON_NULL";
|
|
6594
|
+
readonly ofType: {
|
|
6595
|
+
readonly kind: "ENUM";
|
|
6596
|
+
readonly name: "MeetingType";
|
|
6597
|
+
};
|
|
6598
|
+
};
|
|
6599
|
+
};
|
|
6600
|
+
};
|
|
6601
|
+
readonly args: readonly [];
|
|
6602
|
+
readonly isDeprecated: false;
|
|
6603
|
+
}, {
|
|
6604
|
+
readonly name: "metadata";
|
|
6605
|
+
readonly type: {
|
|
6606
|
+
readonly kind: "SCALAR";
|
|
6607
|
+
readonly name: "JSONObject";
|
|
6608
|
+
};
|
|
6609
|
+
readonly args: readonly [];
|
|
6610
|
+
readonly isDeprecated: false;
|
|
6611
|
+
}, {
|
|
6612
|
+
readonly name: "officeIds";
|
|
6613
|
+
readonly type: {
|
|
6614
|
+
readonly kind: "NON_NULL";
|
|
6615
|
+
readonly ofType: {
|
|
6616
|
+
readonly kind: "LIST";
|
|
6617
|
+
readonly ofType: {
|
|
6618
|
+
readonly kind: "NON_NULL";
|
|
6619
|
+
readonly ofType: {
|
|
6620
|
+
readonly kind: "SCALAR";
|
|
6621
|
+
readonly name: "ID";
|
|
6622
|
+
};
|
|
6623
|
+
};
|
|
6624
|
+
};
|
|
6625
|
+
};
|
|
6626
|
+
readonly args: readonly [];
|
|
6627
|
+
readonly isDeprecated: false;
|
|
6628
|
+
}, {
|
|
6629
|
+
readonly name: "secondaryCustomerIds";
|
|
6630
|
+
readonly type: {
|
|
6631
|
+
readonly kind: "NON_NULL";
|
|
6632
|
+
readonly ofType: {
|
|
6633
|
+
readonly kind: "LIST";
|
|
6634
|
+
readonly ofType: {
|
|
6635
|
+
readonly kind: "NON_NULL";
|
|
6636
|
+
readonly ofType: {
|
|
6637
|
+
readonly kind: "SCALAR";
|
|
6638
|
+
readonly name: "ID";
|
|
6639
|
+
};
|
|
6640
|
+
};
|
|
6641
|
+
};
|
|
6642
|
+
};
|
|
6643
|
+
readonly args: readonly [];
|
|
6644
|
+
readonly isDeprecated: false;
|
|
6645
|
+
}, {
|
|
6646
|
+
readonly name: "secondaryEmployeeIds";
|
|
6647
|
+
readonly type: {
|
|
6648
|
+
readonly kind: "NON_NULL";
|
|
6649
|
+
readonly ofType: {
|
|
6650
|
+
readonly kind: "LIST";
|
|
6651
|
+
readonly ofType: {
|
|
6652
|
+
readonly kind: "NON_NULL";
|
|
6653
|
+
readonly ofType: {
|
|
6654
|
+
readonly kind: "SCALAR";
|
|
6655
|
+
readonly name: "ID";
|
|
6656
|
+
};
|
|
6657
|
+
};
|
|
6658
|
+
};
|
|
6659
|
+
};
|
|
6660
|
+
readonly args: readonly [];
|
|
6661
|
+
readonly isDeprecated: false;
|
|
6662
|
+
}, {
|
|
6663
|
+
readonly name: "start";
|
|
6664
|
+
readonly type: {
|
|
6665
|
+
readonly kind: "SCALAR";
|
|
6666
|
+
readonly name: "ISO8601";
|
|
6667
|
+
};
|
|
6668
|
+
readonly args: readonly [];
|
|
6669
|
+
readonly isDeprecated: false;
|
|
6670
|
+
}, {
|
|
6671
|
+
readonly name: "subjectGroupIds";
|
|
6672
|
+
readonly type: {
|
|
6673
|
+
readonly kind: "NON_NULL";
|
|
6674
|
+
readonly ofType: {
|
|
6675
|
+
readonly kind: "LIST";
|
|
6676
|
+
readonly ofType: {
|
|
6677
|
+
readonly kind: "NON_NULL";
|
|
6678
|
+
readonly ofType: {
|
|
6679
|
+
readonly kind: "SCALAR";
|
|
6680
|
+
readonly name: "ID";
|
|
6681
|
+
};
|
|
6682
|
+
};
|
|
6683
|
+
};
|
|
6684
|
+
};
|
|
6685
|
+
readonly args: readonly [];
|
|
6686
|
+
readonly isDeprecated: false;
|
|
6687
|
+
}, {
|
|
6688
|
+
readonly name: "subjectIds";
|
|
6689
|
+
readonly type: {
|
|
6690
|
+
readonly kind: "NON_NULL";
|
|
6691
|
+
readonly ofType: {
|
|
6692
|
+
readonly kind: "LIST";
|
|
6693
|
+
readonly ofType: {
|
|
6694
|
+
readonly kind: "NON_NULL";
|
|
6695
|
+
readonly ofType: {
|
|
6696
|
+
readonly kind: "SCALAR";
|
|
6697
|
+
readonly name: "ID";
|
|
6698
|
+
};
|
|
6699
|
+
};
|
|
6700
|
+
};
|
|
6701
|
+
};
|
|
6702
|
+
readonly args: readonly [];
|
|
6703
|
+
readonly isDeprecated: false;
|
|
6704
|
+
}];
|
|
6705
|
+
readonly interfaces: readonly [];
|
|
6116
6706
|
}, {
|
|
6117
6707
|
readonly kind: "OBJECT";
|
|
6118
6708
|
readonly name: "Customer";
|
|
@@ -7626,6 +8216,52 @@ declare const introspection: {
|
|
|
7626
8216
|
readonly isDeprecated: false;
|
|
7627
8217
|
}];
|
|
7628
8218
|
readonly interfaces: readonly [];
|
|
8219
|
+
}, {
|
|
8220
|
+
readonly kind: "OBJECT";
|
|
8221
|
+
readonly name: "DefaultUnavailabilityFormIdEnterpriseSetting";
|
|
8222
|
+
readonly fields: readonly [{
|
|
8223
|
+
readonly name: "createdAt";
|
|
8224
|
+
readonly type: {
|
|
8225
|
+
readonly kind: "NON_NULL";
|
|
8226
|
+
readonly ofType: {
|
|
8227
|
+
readonly kind: "SCALAR";
|
|
8228
|
+
readonly name: "ISO8601";
|
|
8229
|
+
};
|
|
8230
|
+
};
|
|
8231
|
+
readonly args: readonly [];
|
|
8232
|
+
readonly isDeprecated: false;
|
|
8233
|
+
}, {
|
|
8234
|
+
readonly name: "manageable";
|
|
8235
|
+
readonly type: {
|
|
8236
|
+
readonly kind: "NON_NULL";
|
|
8237
|
+
readonly ofType: {
|
|
8238
|
+
readonly kind: "SCALAR";
|
|
8239
|
+
readonly name: "Boolean";
|
|
8240
|
+
};
|
|
8241
|
+
};
|
|
8242
|
+
readonly args: readonly [];
|
|
8243
|
+
readonly isDeprecated: false;
|
|
8244
|
+
}, {
|
|
8245
|
+
readonly name: "updatedAt";
|
|
8246
|
+
readonly type: {
|
|
8247
|
+
readonly kind: "NON_NULL";
|
|
8248
|
+
readonly ofType: {
|
|
8249
|
+
readonly kind: "SCALAR";
|
|
8250
|
+
readonly name: "ISO8601";
|
|
8251
|
+
};
|
|
8252
|
+
};
|
|
8253
|
+
readonly args: readonly [];
|
|
8254
|
+
readonly isDeprecated: false;
|
|
8255
|
+
}, {
|
|
8256
|
+
readonly name: "value";
|
|
8257
|
+
readonly type: {
|
|
8258
|
+
readonly kind: "SCALAR";
|
|
8259
|
+
readonly name: "ID";
|
|
8260
|
+
};
|
|
8261
|
+
readonly args: readonly [];
|
|
8262
|
+
readonly isDeprecated: false;
|
|
8263
|
+
}];
|
|
8264
|
+
readonly interfaces: readonly [];
|
|
7629
8265
|
}, {
|
|
7630
8266
|
readonly kind: "OBJECT";
|
|
7631
8267
|
readonly name: "DefinedAvailability";
|
|
@@ -8356,6 +8992,14 @@ declare const introspection: {
|
|
|
8356
8992
|
};
|
|
8357
8993
|
readonly args: readonly [];
|
|
8358
8994
|
readonly isDeprecated: false;
|
|
8995
|
+
}, {
|
|
8996
|
+
readonly name: "metadata";
|
|
8997
|
+
readonly type: {
|
|
8998
|
+
readonly kind: "SCALAR";
|
|
8999
|
+
readonly name: "JSONObject";
|
|
9000
|
+
};
|
|
9001
|
+
readonly args: readonly [];
|
|
9002
|
+
readonly isDeprecated: false;
|
|
8359
9003
|
}, {
|
|
8360
9004
|
readonly name: "officeRelations";
|
|
8361
9005
|
readonly type: {
|
|
@@ -8804,6 +9448,12 @@ declare const introspection: {
|
|
|
8804
9448
|
readonly name: "String";
|
|
8805
9449
|
};
|
|
8806
9450
|
};
|
|
9451
|
+
}, {
|
|
9452
|
+
readonly name: "metadata";
|
|
9453
|
+
readonly type: {
|
|
9454
|
+
readonly kind: "SCALAR";
|
|
9455
|
+
readonly name: "JSONObject";
|
|
9456
|
+
};
|
|
8807
9457
|
}, {
|
|
8808
9458
|
readonly name: "officeRelations";
|
|
8809
9459
|
readonly type: {
|
|
@@ -9228,6 +9878,12 @@ declare const introspection: {
|
|
|
9228
9878
|
readonly kind: "SCALAR";
|
|
9229
9879
|
readonly name: "String";
|
|
9230
9880
|
};
|
|
9881
|
+
}, {
|
|
9882
|
+
readonly name: "metadata";
|
|
9883
|
+
readonly type: {
|
|
9884
|
+
readonly kind: "SCALAR";
|
|
9885
|
+
readonly name: "JSONObject";
|
|
9886
|
+
};
|
|
9231
9887
|
}, {
|
|
9232
9888
|
readonly name: "officeRelations";
|
|
9233
9889
|
readonly type: {
|
|
@@ -9811,6 +10467,25 @@ declare const introspection: {
|
|
|
9811
10467
|
};
|
|
9812
10468
|
readonly args: readonly [];
|
|
9813
10469
|
readonly isDeprecated: false;
|
|
10470
|
+
}, {
|
|
10471
|
+
readonly name: "defaultUnavailabilityForm";
|
|
10472
|
+
readonly type: {
|
|
10473
|
+
readonly kind: "OBJECT";
|
|
10474
|
+
readonly name: "Form";
|
|
10475
|
+
};
|
|
10476
|
+
readonly args: readonly [];
|
|
10477
|
+
readonly isDeprecated: false;
|
|
10478
|
+
}, {
|
|
10479
|
+
readonly name: "defaultUnavailabilityFormId";
|
|
10480
|
+
readonly type: {
|
|
10481
|
+
readonly kind: "NON_NULL";
|
|
10482
|
+
readonly ofType: {
|
|
10483
|
+
readonly kind: "OBJECT";
|
|
10484
|
+
readonly name: "DefaultUnavailabilityFormIdEnterpriseSetting";
|
|
10485
|
+
};
|
|
10486
|
+
};
|
|
10487
|
+
readonly args: readonly [];
|
|
10488
|
+
readonly isDeprecated: false;
|
|
9814
10489
|
}, {
|
|
9815
10490
|
readonly name: "emailProvider";
|
|
9816
10491
|
readonly type: {
|
|
@@ -10230,6 +10905,12 @@ declare const introspection: {
|
|
|
10230
10905
|
readonly kind: "INPUT_OBJECT";
|
|
10231
10906
|
readonly name: "defaultTimeZoneInput";
|
|
10232
10907
|
};
|
|
10908
|
+
}, {
|
|
10909
|
+
readonly name: "defaultUnavailabilityFormId";
|
|
10910
|
+
readonly type: {
|
|
10911
|
+
readonly kind: "INPUT_OBJECT";
|
|
10912
|
+
readonly name: "defaultUnavailabilityFormIdInput";
|
|
10913
|
+
};
|
|
10233
10914
|
}, {
|
|
10234
10915
|
readonly name: "emailProvider";
|
|
10235
10916
|
readonly type: {
|
|
@@ -12575,6 +13256,9 @@ declare const introspection: {
|
|
|
12575
13256
|
}, {
|
|
12576
13257
|
readonly name: "SUBJECT_QUESTIONNAIRE";
|
|
12577
13258
|
readonly isDeprecated: false;
|
|
13259
|
+
}, {
|
|
13260
|
+
readonly name: "UNAVAILABILITY";
|
|
13261
|
+
readonly isDeprecated: false;
|
|
12578
13262
|
}];
|
|
12579
13263
|
}, {
|
|
12580
13264
|
readonly kind: "OBJECT";
|
|
@@ -17974,6 +18658,26 @@ declare const introspection: {
|
|
|
17974
18658
|
};
|
|
17975
18659
|
}];
|
|
17976
18660
|
readonly isDeprecated: false;
|
|
18661
|
+
}, {
|
|
18662
|
+
readonly name: "createContext";
|
|
18663
|
+
readonly type: {
|
|
18664
|
+
readonly kind: "NON_NULL";
|
|
18665
|
+
readonly ofType: {
|
|
18666
|
+
readonly kind: "OBJECT";
|
|
18667
|
+
readonly name: "Context";
|
|
18668
|
+
};
|
|
18669
|
+
};
|
|
18670
|
+
readonly args: readonly [{
|
|
18671
|
+
readonly name: "input";
|
|
18672
|
+
readonly type: {
|
|
18673
|
+
readonly kind: "NON_NULL";
|
|
18674
|
+
readonly ofType: {
|
|
18675
|
+
readonly kind: "INPUT_OBJECT";
|
|
18676
|
+
readonly name: "ContextInput";
|
|
18677
|
+
};
|
|
18678
|
+
};
|
|
18679
|
+
}];
|
|
18680
|
+
readonly isDeprecated: false;
|
|
17977
18681
|
}, {
|
|
17978
18682
|
readonly name: "createCustomer";
|
|
17979
18683
|
readonly type: {
|
|
@@ -21941,6 +22645,26 @@ declare const introspection: {
|
|
|
21941
22645
|
};
|
|
21942
22646
|
}];
|
|
21943
22647
|
readonly isDeprecated: false;
|
|
22648
|
+
}, {
|
|
22649
|
+
readonly name: "scheduleAppointment";
|
|
22650
|
+
readonly type: {
|
|
22651
|
+
readonly kind: "NON_NULL";
|
|
22652
|
+
readonly ofType: {
|
|
22653
|
+
readonly kind: "OBJECT";
|
|
22654
|
+
readonly name: "Appointment";
|
|
22655
|
+
};
|
|
22656
|
+
};
|
|
22657
|
+
readonly args: readonly [{
|
|
22658
|
+
readonly name: "appointmentCreateInput";
|
|
22659
|
+
readonly type: {
|
|
22660
|
+
readonly kind: "NON_NULL";
|
|
22661
|
+
readonly ofType: {
|
|
22662
|
+
readonly kind: "INPUT_OBJECT";
|
|
22663
|
+
readonly name: "AppointmentCreateInput";
|
|
22664
|
+
};
|
|
22665
|
+
};
|
|
22666
|
+
}];
|
|
22667
|
+
readonly isDeprecated: false;
|
|
21944
22668
|
}, {
|
|
21945
22669
|
readonly name: "syncFutureEventsToExternalCalendar";
|
|
21946
22670
|
readonly type: {
|
|
@@ -22375,6 +23099,14 @@ declare const introspection: {
|
|
|
22375
23099
|
};
|
|
22376
23100
|
readonly args: readonly [];
|
|
22377
23101
|
readonly isDeprecated: false;
|
|
23102
|
+
}, {
|
|
23103
|
+
readonly name: "metadata";
|
|
23104
|
+
readonly type: {
|
|
23105
|
+
readonly kind: "SCALAR";
|
|
23106
|
+
readonly name: "JSONObject";
|
|
23107
|
+
};
|
|
23108
|
+
readonly args: readonly [];
|
|
23109
|
+
readonly isDeprecated: false;
|
|
22378
23110
|
}, {
|
|
22379
23111
|
readonly name: "name";
|
|
22380
23112
|
readonly type: {
|
|
@@ -22686,6 +23418,12 @@ declare const introspection: {
|
|
|
22686
23418
|
};
|
|
22687
23419
|
};
|
|
22688
23420
|
};
|
|
23421
|
+
}, {
|
|
23422
|
+
readonly name: "metadata";
|
|
23423
|
+
readonly type: {
|
|
23424
|
+
readonly kind: "SCALAR";
|
|
23425
|
+
readonly name: "JSONObject";
|
|
23426
|
+
};
|
|
22689
23427
|
}, {
|
|
22690
23428
|
readonly name: "phoneNumber";
|
|
22691
23429
|
readonly type: {
|
|
@@ -23022,6 +23760,12 @@ declare const introspection: {
|
|
|
23022
23760
|
};
|
|
23023
23761
|
};
|
|
23024
23762
|
};
|
|
23763
|
+
}, {
|
|
23764
|
+
readonly name: "metadata";
|
|
23765
|
+
readonly type: {
|
|
23766
|
+
readonly kind: "SCALAR";
|
|
23767
|
+
readonly name: "JSONObject";
|
|
23768
|
+
};
|
|
23025
23769
|
}, {
|
|
23026
23770
|
readonly name: "phoneNumber";
|
|
23027
23771
|
readonly type: {
|
|
@@ -25373,6 +26117,29 @@ declare const introspection: {
|
|
|
25373
26117
|
};
|
|
25374
26118
|
}];
|
|
25375
26119
|
readonly isDeprecated: false;
|
|
26120
|
+
}, {
|
|
26121
|
+
readonly name: "context";
|
|
26122
|
+
readonly type: {
|
|
26123
|
+
readonly kind: "NON_NULL";
|
|
26124
|
+
readonly ofType: {
|
|
26125
|
+
readonly kind: "OBJECT";
|
|
26126
|
+
readonly name: "Context";
|
|
26127
|
+
};
|
|
26128
|
+
};
|
|
26129
|
+
readonly args: readonly [{
|
|
26130
|
+
readonly name: "externalId";
|
|
26131
|
+
readonly type: {
|
|
26132
|
+
readonly kind: "SCALAR";
|
|
26133
|
+
readonly name: "String";
|
|
26134
|
+
};
|
|
26135
|
+
}, {
|
|
26136
|
+
readonly name: "id";
|
|
26137
|
+
readonly type: {
|
|
26138
|
+
readonly kind: "SCALAR";
|
|
26139
|
+
readonly name: "String";
|
|
26140
|
+
};
|
|
26141
|
+
}];
|
|
26142
|
+
readonly isDeprecated: false;
|
|
25376
26143
|
}, {
|
|
25377
26144
|
readonly name: "customer";
|
|
25378
26145
|
readonly type: {
|
|
@@ -30495,6 +31262,56 @@ declare const introspection: {
|
|
|
30495
31262
|
};
|
|
30496
31263
|
}];
|
|
30497
31264
|
readonly isDeprecated: false;
|
|
31265
|
+
}, {
|
|
31266
|
+
readonly name: "workLocations";
|
|
31267
|
+
readonly type: {
|
|
31268
|
+
readonly kind: "NON_NULL";
|
|
31269
|
+
readonly ofType: {
|
|
31270
|
+
readonly kind: "LIST";
|
|
31271
|
+
readonly ofType: {
|
|
31272
|
+
readonly kind: "NON_NULL";
|
|
31273
|
+
readonly ofType: {
|
|
31274
|
+
readonly kind: "OBJECT";
|
|
31275
|
+
readonly name: "WorkLocationEntry";
|
|
31276
|
+
};
|
|
31277
|
+
};
|
|
31278
|
+
};
|
|
31279
|
+
};
|
|
31280
|
+
readonly args: readonly [{
|
|
31281
|
+
readonly name: "employeeIds";
|
|
31282
|
+
readonly type: {
|
|
31283
|
+
readonly kind: "NON_NULL";
|
|
31284
|
+
readonly ofType: {
|
|
31285
|
+
readonly kind: "LIST";
|
|
31286
|
+
readonly ofType: {
|
|
31287
|
+
readonly kind: "NON_NULL";
|
|
31288
|
+
readonly ofType: {
|
|
31289
|
+
readonly kind: "SCALAR";
|
|
31290
|
+
readonly name: "ID";
|
|
31291
|
+
};
|
|
31292
|
+
};
|
|
31293
|
+
};
|
|
31294
|
+
};
|
|
31295
|
+
}, {
|
|
31296
|
+
readonly name: "from";
|
|
31297
|
+
readonly type: {
|
|
31298
|
+
readonly kind: "NON_NULL";
|
|
31299
|
+
readonly ofType: {
|
|
31300
|
+
readonly kind: "SCALAR";
|
|
31301
|
+
readonly name: "ISO8601";
|
|
31302
|
+
};
|
|
31303
|
+
};
|
|
31304
|
+
}, {
|
|
31305
|
+
readonly name: "to";
|
|
31306
|
+
readonly type: {
|
|
31307
|
+
readonly kind: "NON_NULL";
|
|
31308
|
+
readonly ofType: {
|
|
31309
|
+
readonly kind: "SCALAR";
|
|
31310
|
+
readonly name: "ISO8601";
|
|
31311
|
+
};
|
|
31312
|
+
};
|
|
31313
|
+
}];
|
|
31314
|
+
readonly isDeprecated: false;
|
|
30498
31315
|
}];
|
|
30499
31316
|
readonly interfaces: readonly [];
|
|
30500
31317
|
}, {
|
|
@@ -30634,6 +31451,14 @@ declare const introspection: {
|
|
|
30634
31451
|
};
|
|
30635
31452
|
readonly args: readonly [];
|
|
30636
31453
|
readonly isDeprecated: false;
|
|
31454
|
+
}, {
|
|
31455
|
+
readonly name: "name";
|
|
31456
|
+
readonly type: {
|
|
31457
|
+
readonly kind: "SCALAR";
|
|
31458
|
+
readonly name: "String";
|
|
31459
|
+
};
|
|
31460
|
+
readonly args: readonly [];
|
|
31461
|
+
readonly isDeprecated: false;
|
|
30637
31462
|
}, {
|
|
30638
31463
|
readonly name: "order";
|
|
30639
31464
|
readonly type: {
|
|
@@ -30783,6 +31608,12 @@ declare const introspection: {
|
|
|
30783
31608
|
readonly kind: "ENUM";
|
|
30784
31609
|
readonly name: "InputType";
|
|
30785
31610
|
};
|
|
31611
|
+
}, {
|
|
31612
|
+
readonly name: "name";
|
|
31613
|
+
readonly type: {
|
|
31614
|
+
readonly kind: "SCALAR";
|
|
31615
|
+
readonly name: "String";
|
|
31616
|
+
};
|
|
30786
31617
|
}, {
|
|
30787
31618
|
readonly name: "order";
|
|
30788
31619
|
readonly type: {
|
|
@@ -30870,6 +31701,12 @@ declare const introspection: {
|
|
|
30870
31701
|
readonly name: "InputType";
|
|
30871
31702
|
};
|
|
30872
31703
|
};
|
|
31704
|
+
}, {
|
|
31705
|
+
readonly name: "name";
|
|
31706
|
+
readonly type: {
|
|
31707
|
+
readonly kind: "SCALAR";
|
|
31708
|
+
readonly name: "String";
|
|
31709
|
+
};
|
|
30873
31710
|
}, {
|
|
30874
31711
|
readonly name: "order";
|
|
30875
31712
|
readonly type: {
|
|
@@ -32027,29 +32864,49 @@ declare const introspection: {
|
|
|
32027
32864
|
readonly inputFields: readonly [{
|
|
32028
32865
|
readonly name: "enterpriseFilter";
|
|
32029
32866
|
readonly type: {
|
|
32030
|
-
readonly kind: "
|
|
32867
|
+
readonly kind: "LIST";
|
|
32031
32868
|
readonly ofType: {
|
|
32032
|
-
readonly kind: "
|
|
32869
|
+
readonly kind: "NON_NULL";
|
|
32033
32870
|
readonly ofType: {
|
|
32034
|
-
readonly kind: "
|
|
32035
|
-
readonly
|
|
32036
|
-
readonly kind: "SCALAR";
|
|
32037
|
-
readonly name: "String";
|
|
32038
|
-
};
|
|
32871
|
+
readonly kind: "SCALAR";
|
|
32872
|
+
readonly name: "String";
|
|
32039
32873
|
};
|
|
32040
32874
|
};
|
|
32041
32875
|
};
|
|
32042
32876
|
readonly defaultValue: "[]";
|
|
32043
32877
|
}, {
|
|
32044
|
-
readonly name: "
|
|
32878
|
+
readonly name: "entityFilter";
|
|
32045
32879
|
readonly type: {
|
|
32046
|
-
readonly kind: "
|
|
32880
|
+
readonly kind: "LIST";
|
|
32047
32881
|
readonly ofType: {
|
|
32048
|
-
readonly kind: "
|
|
32049
|
-
readonly
|
|
32882
|
+
readonly kind: "NON_NULL";
|
|
32883
|
+
readonly ofType: {
|
|
32884
|
+
readonly kind: "SCALAR";
|
|
32885
|
+
readonly name: "String";
|
|
32886
|
+
};
|
|
32050
32887
|
};
|
|
32051
32888
|
};
|
|
32889
|
+
readonly defaultValue: "[]";
|
|
32890
|
+
}, {
|
|
32891
|
+
readonly name: "parallel";
|
|
32892
|
+
readonly type: {
|
|
32893
|
+
readonly kind: "SCALAR";
|
|
32894
|
+
readonly name: "Boolean";
|
|
32895
|
+
};
|
|
32052
32896
|
readonly defaultValue: "true";
|
|
32897
|
+
}, {
|
|
32898
|
+
readonly name: "targetServices";
|
|
32899
|
+
readonly type: {
|
|
32900
|
+
readonly kind: "LIST";
|
|
32901
|
+
readonly ofType: {
|
|
32902
|
+
readonly kind: "NON_NULL";
|
|
32903
|
+
readonly ofType: {
|
|
32904
|
+
readonly kind: "SCALAR";
|
|
32905
|
+
readonly name: "String";
|
|
32906
|
+
};
|
|
32907
|
+
};
|
|
32908
|
+
};
|
|
32909
|
+
readonly defaultValue: "[]";
|
|
32053
32910
|
}];
|
|
32054
32911
|
readonly isOneOf: false;
|
|
32055
32912
|
}, {
|
|
@@ -36053,6 +36910,9 @@ declare const introspection: {
|
|
|
36053
36910
|
}, {
|
|
36054
36911
|
readonly name: "APPOINTMENT_CREATION";
|
|
36055
36912
|
readonly isDeprecated: false;
|
|
36913
|
+
}, {
|
|
36914
|
+
readonly name: "APPOINTMENT_CREATION_CUSTOMER_EDIT";
|
|
36915
|
+
readonly isDeprecated: false;
|
|
36056
36916
|
}, {
|
|
36057
36917
|
readonly name: "APPOINTMENT_CREATION_MESSAGE_FOR_CUSTOMER";
|
|
36058
36918
|
readonly isDeprecated: false;
|
|
@@ -36259,29 +37119,163 @@ declare const introspection: {
|
|
|
36259
37119
|
readonly args: readonly [];
|
|
36260
37120
|
readonly isDeprecated: false;
|
|
36261
37121
|
}, {
|
|
36262
|
-
readonly name: "updatedAt";
|
|
37122
|
+
readonly name: "updatedAt";
|
|
37123
|
+
readonly type: {
|
|
37124
|
+
readonly kind: "NON_NULL";
|
|
37125
|
+
readonly ofType: {
|
|
37126
|
+
readonly kind: "SCALAR";
|
|
37127
|
+
readonly name: "ISO8601";
|
|
37128
|
+
};
|
|
37129
|
+
};
|
|
37130
|
+
readonly args: readonly [];
|
|
37131
|
+
readonly isDeprecated: false;
|
|
37132
|
+
}, {
|
|
37133
|
+
readonly name: "value";
|
|
37134
|
+
readonly type: {
|
|
37135
|
+
readonly kind: "NON_NULL";
|
|
37136
|
+
readonly ofType: {
|
|
37137
|
+
readonly kind: "LIST";
|
|
37138
|
+
readonly ofType: {
|
|
37139
|
+
readonly kind: "NON_NULL";
|
|
37140
|
+
readonly ofType: {
|
|
37141
|
+
readonly kind: "OBJECT";
|
|
37142
|
+
readonly name: "UIFeatureToggleEnterpriseSettingValue";
|
|
37143
|
+
};
|
|
37144
|
+
};
|
|
37145
|
+
};
|
|
37146
|
+
};
|
|
37147
|
+
readonly args: readonly [];
|
|
37148
|
+
readonly isDeprecated: false;
|
|
37149
|
+
}];
|
|
37150
|
+
readonly interfaces: readonly [];
|
|
37151
|
+
}, {
|
|
37152
|
+
readonly kind: "OBJECT";
|
|
37153
|
+
readonly name: "Unavailability";
|
|
37154
|
+
readonly fields: readonly [{
|
|
37155
|
+
readonly name: "allDay";
|
|
37156
|
+
readonly type: {
|
|
37157
|
+
readonly kind: "NON_NULL";
|
|
37158
|
+
readonly ofType: {
|
|
37159
|
+
readonly kind: "SCALAR";
|
|
37160
|
+
readonly name: "Boolean";
|
|
37161
|
+
};
|
|
37162
|
+
};
|
|
37163
|
+
readonly args: readonly [];
|
|
37164
|
+
readonly isDeprecated: false;
|
|
37165
|
+
}, {
|
|
37166
|
+
readonly name: "answers";
|
|
37167
|
+
readonly type: {
|
|
37168
|
+
readonly kind: "NON_NULL";
|
|
37169
|
+
readonly ofType: {
|
|
37170
|
+
readonly kind: "LIST";
|
|
37171
|
+
readonly ofType: {
|
|
37172
|
+
readonly kind: "NON_NULL";
|
|
37173
|
+
readonly ofType: {
|
|
37174
|
+
readonly kind: "OBJECT";
|
|
37175
|
+
readonly name: "UnavailabilityAnswer";
|
|
37176
|
+
};
|
|
37177
|
+
};
|
|
37178
|
+
};
|
|
37179
|
+
};
|
|
37180
|
+
readonly args: readonly [];
|
|
37181
|
+
readonly isDeprecated: false;
|
|
37182
|
+
}, {
|
|
37183
|
+
readonly name: "createdAt";
|
|
37184
|
+
readonly type: {
|
|
37185
|
+
readonly kind: "NON_NULL";
|
|
37186
|
+
readonly ofType: {
|
|
37187
|
+
readonly kind: "SCALAR";
|
|
37188
|
+
readonly name: "ISO8601";
|
|
37189
|
+
};
|
|
37190
|
+
};
|
|
37191
|
+
readonly args: readonly [];
|
|
37192
|
+
readonly isDeprecated: false;
|
|
37193
|
+
}, {
|
|
37194
|
+
readonly name: "employee";
|
|
37195
|
+
readonly type: {
|
|
37196
|
+
readonly kind: "NON_NULL";
|
|
37197
|
+
readonly ofType: {
|
|
37198
|
+
readonly kind: "OBJECT";
|
|
37199
|
+
readonly name: "Employee";
|
|
37200
|
+
};
|
|
37201
|
+
};
|
|
37202
|
+
readonly args: readonly [];
|
|
37203
|
+
readonly isDeprecated: false;
|
|
37204
|
+
}, {
|
|
37205
|
+
readonly name: "end";
|
|
37206
|
+
readonly type: {
|
|
37207
|
+
readonly kind: "NON_NULL";
|
|
37208
|
+
readonly ofType: {
|
|
37209
|
+
readonly kind: "SCALAR";
|
|
37210
|
+
readonly name: "ISO8601";
|
|
37211
|
+
};
|
|
37212
|
+
};
|
|
37213
|
+
readonly args: readonly [];
|
|
37214
|
+
readonly isDeprecated: false;
|
|
37215
|
+
}, {
|
|
37216
|
+
readonly name: "endDate";
|
|
37217
|
+
readonly type: {
|
|
37218
|
+
readonly kind: "SCALAR";
|
|
37219
|
+
readonly name: "CalendarDate";
|
|
37220
|
+
};
|
|
37221
|
+
readonly args: readonly [];
|
|
37222
|
+
readonly isDeprecated: false;
|
|
37223
|
+
}, {
|
|
37224
|
+
readonly name: "externalId";
|
|
37225
|
+
readonly type: {
|
|
37226
|
+
readonly kind: "SCALAR";
|
|
37227
|
+
readonly name: "String";
|
|
37228
|
+
};
|
|
37229
|
+
readonly args: readonly [];
|
|
37230
|
+
readonly isDeprecated: false;
|
|
37231
|
+
}, {
|
|
37232
|
+
readonly name: "id";
|
|
37233
|
+
readonly type: {
|
|
37234
|
+
readonly kind: "NON_NULL";
|
|
37235
|
+
readonly ofType: {
|
|
37236
|
+
readonly kind: "SCALAR";
|
|
37237
|
+
readonly name: "ID";
|
|
37238
|
+
};
|
|
37239
|
+
};
|
|
37240
|
+
readonly args: readonly [];
|
|
37241
|
+
readonly isDeprecated: false;
|
|
37242
|
+
}, {
|
|
37243
|
+
readonly name: "start";
|
|
37244
|
+
readonly type: {
|
|
37245
|
+
readonly kind: "NON_NULL";
|
|
37246
|
+
readonly ofType: {
|
|
37247
|
+
readonly kind: "SCALAR";
|
|
37248
|
+
readonly name: "ISO8601";
|
|
37249
|
+
};
|
|
37250
|
+
};
|
|
37251
|
+
readonly args: readonly [];
|
|
37252
|
+
readonly isDeprecated: false;
|
|
37253
|
+
}, {
|
|
37254
|
+
readonly name: "startDate";
|
|
37255
|
+
readonly type: {
|
|
37256
|
+
readonly kind: "SCALAR";
|
|
37257
|
+
readonly name: "CalendarDate";
|
|
37258
|
+
};
|
|
37259
|
+
readonly args: readonly [];
|
|
37260
|
+
readonly isDeprecated: false;
|
|
37261
|
+
}, {
|
|
37262
|
+
readonly name: "type";
|
|
36263
37263
|
readonly type: {
|
|
36264
37264
|
readonly kind: "NON_NULL";
|
|
36265
37265
|
readonly ofType: {
|
|
36266
|
-
readonly kind: "
|
|
36267
|
-
readonly name: "
|
|
37266
|
+
readonly kind: "ENUM";
|
|
37267
|
+
readonly name: "UnavailabilityType";
|
|
36268
37268
|
};
|
|
36269
37269
|
};
|
|
36270
37270
|
readonly args: readonly [];
|
|
36271
37271
|
readonly isDeprecated: false;
|
|
36272
37272
|
}, {
|
|
36273
|
-
readonly name: "
|
|
37273
|
+
readonly name: "updatedAt";
|
|
36274
37274
|
readonly type: {
|
|
36275
37275
|
readonly kind: "NON_NULL";
|
|
36276
37276
|
readonly ofType: {
|
|
36277
|
-
readonly kind: "
|
|
36278
|
-
readonly
|
|
36279
|
-
readonly kind: "NON_NULL";
|
|
36280
|
-
readonly ofType: {
|
|
36281
|
-
readonly kind: "OBJECT";
|
|
36282
|
-
readonly name: "UIFeatureToggleEnterpriseSettingValue";
|
|
36283
|
-
};
|
|
36284
|
-
};
|
|
37277
|
+
readonly kind: "SCALAR";
|
|
37278
|
+
readonly name: "ISO8601";
|
|
36285
37279
|
};
|
|
36286
37280
|
};
|
|
36287
37281
|
readonly args: readonly [];
|
|
@@ -36290,14 +37284,14 @@ declare const introspection: {
|
|
|
36290
37284
|
readonly interfaces: readonly [];
|
|
36291
37285
|
}, {
|
|
36292
37286
|
readonly kind: "OBJECT";
|
|
36293
|
-
readonly name: "
|
|
37287
|
+
readonly name: "UnavailabilityAnswer";
|
|
36294
37288
|
readonly fields: readonly [{
|
|
36295
|
-
readonly name: "
|
|
37289
|
+
readonly name: "answerType";
|
|
36296
37290
|
readonly type: {
|
|
36297
37291
|
readonly kind: "NON_NULL";
|
|
36298
37292
|
readonly ofType: {
|
|
36299
|
-
readonly kind: "
|
|
36300
|
-
readonly name: "
|
|
37293
|
+
readonly kind: "ENUM";
|
|
37294
|
+
readonly name: "FormType";
|
|
36301
37295
|
};
|
|
36302
37296
|
};
|
|
36303
37297
|
readonly args: readonly [];
|
|
@@ -36314,56 +37308,68 @@ declare const introspection: {
|
|
|
36314
37308
|
readonly args: readonly [];
|
|
36315
37309
|
readonly isDeprecated: false;
|
|
36316
37310
|
}, {
|
|
36317
|
-
readonly name: "
|
|
37311
|
+
readonly name: "files";
|
|
36318
37312
|
readonly type: {
|
|
36319
|
-
readonly kind: "
|
|
37313
|
+
readonly kind: "LIST";
|
|
36320
37314
|
readonly ofType: {
|
|
36321
|
-
readonly kind: "
|
|
36322
|
-
readonly
|
|
37315
|
+
readonly kind: "NON_NULL";
|
|
37316
|
+
readonly ofType: {
|
|
37317
|
+
readonly kind: "OBJECT";
|
|
37318
|
+
readonly name: "File";
|
|
37319
|
+
};
|
|
36323
37320
|
};
|
|
36324
37321
|
};
|
|
36325
37322
|
readonly args: readonly [];
|
|
36326
37323
|
readonly isDeprecated: false;
|
|
36327
37324
|
}, {
|
|
36328
|
-
readonly name: "
|
|
37325
|
+
readonly name: "form";
|
|
36329
37326
|
readonly type: {
|
|
36330
37327
|
readonly kind: "NON_NULL";
|
|
36331
37328
|
readonly ofType: {
|
|
36332
|
-
readonly kind: "
|
|
36333
|
-
readonly name: "
|
|
37329
|
+
readonly kind: "OBJECT";
|
|
37330
|
+
readonly name: "Form";
|
|
36334
37331
|
};
|
|
36335
37332
|
};
|
|
36336
37333
|
readonly args: readonly [];
|
|
36337
37334
|
readonly isDeprecated: false;
|
|
36338
37335
|
}, {
|
|
36339
|
-
readonly name: "
|
|
37336
|
+
readonly name: "id";
|
|
36340
37337
|
readonly type: {
|
|
36341
|
-
readonly kind: "
|
|
36342
|
-
readonly
|
|
37338
|
+
readonly kind: "NON_NULL";
|
|
37339
|
+
readonly ofType: {
|
|
37340
|
+
readonly kind: "SCALAR";
|
|
37341
|
+
readonly name: "ID";
|
|
37342
|
+
};
|
|
36343
37343
|
};
|
|
36344
37344
|
readonly args: readonly [];
|
|
36345
37345
|
readonly isDeprecated: false;
|
|
36346
37346
|
}, {
|
|
36347
|
-
readonly name: "
|
|
37347
|
+
readonly name: "question";
|
|
36348
37348
|
readonly type: {
|
|
36349
|
-
readonly kind: "
|
|
36350
|
-
readonly
|
|
37349
|
+
readonly kind: "NON_NULL";
|
|
37350
|
+
readonly ofType: {
|
|
37351
|
+
readonly kind: "OBJECT";
|
|
37352
|
+
readonly name: "Question";
|
|
37353
|
+
};
|
|
36351
37354
|
};
|
|
36352
37355
|
readonly args: readonly [];
|
|
36353
37356
|
readonly isDeprecated: false;
|
|
36354
37357
|
}, {
|
|
36355
|
-
readonly name: "
|
|
37358
|
+
readonly name: "selectedAnswerOptions";
|
|
36356
37359
|
readonly type: {
|
|
36357
|
-
readonly kind: "
|
|
37360
|
+
readonly kind: "LIST";
|
|
36358
37361
|
readonly ofType: {
|
|
36359
|
-
readonly kind: "
|
|
36360
|
-
readonly
|
|
37362
|
+
readonly kind: "NON_NULL";
|
|
37363
|
+
readonly ofType: {
|
|
37364
|
+
readonly kind: "OBJECT";
|
|
37365
|
+
readonly name: "AnswerOption";
|
|
37366
|
+
};
|
|
36361
37367
|
};
|
|
36362
37368
|
};
|
|
36363
37369
|
readonly args: readonly [];
|
|
36364
37370
|
readonly isDeprecated: false;
|
|
36365
37371
|
}, {
|
|
36366
|
-
readonly name: "
|
|
37372
|
+
readonly name: "updatedAt";
|
|
36367
37373
|
readonly type: {
|
|
36368
37374
|
readonly kind: "NON_NULL";
|
|
36369
37375
|
readonly ofType: {
|
|
@@ -36374,37 +37380,59 @@ declare const introspection: {
|
|
|
36374
37380
|
readonly args: readonly [];
|
|
36375
37381
|
readonly isDeprecated: false;
|
|
36376
37382
|
}, {
|
|
36377
|
-
readonly name: "
|
|
37383
|
+
readonly name: "value";
|
|
36378
37384
|
readonly type: {
|
|
36379
37385
|
readonly kind: "SCALAR";
|
|
36380
|
-
readonly name: "
|
|
37386
|
+
readonly name: "String";
|
|
36381
37387
|
};
|
|
36382
37388
|
readonly args: readonly [];
|
|
36383
37389
|
readonly isDeprecated: false;
|
|
36384
|
-
}
|
|
36385
|
-
|
|
37390
|
+
}];
|
|
37391
|
+
readonly interfaces: readonly [];
|
|
37392
|
+
}, {
|
|
37393
|
+
readonly kind: "INPUT_OBJECT";
|
|
37394
|
+
readonly name: "UnavailabilityAnswerInput";
|
|
37395
|
+
readonly inputFields: readonly [{
|
|
37396
|
+
readonly name: "fileIds";
|
|
36386
37397
|
readonly type: {
|
|
36387
|
-
readonly kind: "
|
|
37398
|
+
readonly kind: "LIST";
|
|
36388
37399
|
readonly ofType: {
|
|
36389
|
-
readonly kind: "
|
|
36390
|
-
readonly
|
|
37400
|
+
readonly kind: "NON_NULL";
|
|
37401
|
+
readonly ofType: {
|
|
37402
|
+
readonly kind: "SCALAR";
|
|
37403
|
+
readonly name: "String";
|
|
37404
|
+
};
|
|
36391
37405
|
};
|
|
36392
37406
|
};
|
|
36393
|
-
readonly args: readonly [];
|
|
36394
|
-
readonly isDeprecated: false;
|
|
36395
37407
|
}, {
|
|
36396
|
-
readonly name: "
|
|
37408
|
+
readonly name: "questionId";
|
|
36397
37409
|
readonly type: {
|
|
36398
37410
|
readonly kind: "NON_NULL";
|
|
36399
37411
|
readonly ofType: {
|
|
36400
37412
|
readonly kind: "SCALAR";
|
|
36401
|
-
readonly name: "
|
|
37413
|
+
readonly name: "ID";
|
|
36402
37414
|
};
|
|
36403
37415
|
};
|
|
36404
|
-
|
|
36405
|
-
readonly
|
|
37416
|
+
}, {
|
|
37417
|
+
readonly name: "selectedAnswerOptionIds";
|
|
37418
|
+
readonly type: {
|
|
37419
|
+
readonly kind: "LIST";
|
|
37420
|
+
readonly ofType: {
|
|
37421
|
+
readonly kind: "NON_NULL";
|
|
37422
|
+
readonly ofType: {
|
|
37423
|
+
readonly kind: "SCALAR";
|
|
37424
|
+
readonly name: "ID";
|
|
37425
|
+
};
|
|
37426
|
+
};
|
|
37427
|
+
};
|
|
37428
|
+
}, {
|
|
37429
|
+
readonly name: "value";
|
|
37430
|
+
readonly type: {
|
|
37431
|
+
readonly kind: "SCALAR";
|
|
37432
|
+
readonly name: "String";
|
|
37433
|
+
};
|
|
36406
37434
|
}];
|
|
36407
|
-
readonly
|
|
37435
|
+
readonly isOneOf: false;
|
|
36408
37436
|
}, {
|
|
36409
37437
|
readonly kind: "OBJECT";
|
|
36410
37438
|
readonly name: "UnavailabilityConnection";
|
|
@@ -36453,6 +37481,18 @@ declare const introspection: {
|
|
|
36453
37481
|
readonly kind: "INPUT_OBJECT";
|
|
36454
37482
|
readonly name: "UnavailabilityCreateInput";
|
|
36455
37483
|
readonly inputFields: readonly [{
|
|
37484
|
+
readonly name: "answers";
|
|
37485
|
+
readonly type: {
|
|
37486
|
+
readonly kind: "LIST";
|
|
37487
|
+
readonly ofType: {
|
|
37488
|
+
readonly kind: "NON_NULL";
|
|
37489
|
+
readonly ofType: {
|
|
37490
|
+
readonly kind: "INPUT_OBJECT";
|
|
37491
|
+
readonly name: "UnavailabilityAnswerInput";
|
|
37492
|
+
};
|
|
37493
|
+
};
|
|
37494
|
+
};
|
|
37495
|
+
}, {
|
|
36456
37496
|
readonly name: "employeeId";
|
|
36457
37497
|
readonly type: {
|
|
36458
37498
|
readonly kind: "NON_NULL";
|
|
@@ -36512,6 +37552,18 @@ declare const introspection: {
|
|
|
36512
37552
|
readonly kind: "INPUT_OBJECT";
|
|
36513
37553
|
readonly name: "UnavailabilityEventCreateInput";
|
|
36514
37554
|
readonly inputFields: readonly [{
|
|
37555
|
+
readonly name: "answers";
|
|
37556
|
+
readonly type: {
|
|
37557
|
+
readonly kind: "LIST";
|
|
37558
|
+
readonly ofType: {
|
|
37559
|
+
readonly kind: "NON_NULL";
|
|
37560
|
+
readonly ofType: {
|
|
37561
|
+
readonly kind: "INPUT_OBJECT";
|
|
37562
|
+
readonly name: "UnavailabilityAnswerInput";
|
|
37563
|
+
};
|
|
37564
|
+
};
|
|
37565
|
+
};
|
|
37566
|
+
}, {
|
|
36515
37567
|
readonly name: "employeeId";
|
|
36516
37568
|
readonly type: {
|
|
36517
37569
|
readonly kind: "NON_NULL";
|
|
@@ -36544,6 +37596,18 @@ declare const introspection: {
|
|
|
36544
37596
|
readonly kind: "INPUT_OBJECT";
|
|
36545
37597
|
readonly name: "UnavailabilityRevertInput";
|
|
36546
37598
|
readonly inputFields: readonly [{
|
|
37599
|
+
readonly name: "answers";
|
|
37600
|
+
readonly type: {
|
|
37601
|
+
readonly kind: "LIST";
|
|
37602
|
+
readonly ofType: {
|
|
37603
|
+
readonly kind: "NON_NULL";
|
|
37604
|
+
readonly ofType: {
|
|
37605
|
+
readonly kind: "INPUT_OBJECT";
|
|
37606
|
+
readonly name: "UnavailabilityAnswerInput";
|
|
37607
|
+
};
|
|
37608
|
+
};
|
|
37609
|
+
};
|
|
37610
|
+
}, {
|
|
36547
37611
|
readonly name: "employeeId";
|
|
36548
37612
|
readonly type: {
|
|
36549
37613
|
readonly kind: "NON_NULL";
|
|
@@ -37658,6 +38722,94 @@ declare const introspection: {
|
|
|
37658
38722
|
readonly name: "communication_send";
|
|
37659
38723
|
readonly isDeprecated: false;
|
|
37660
38724
|
}];
|
|
38725
|
+
}, {
|
|
38726
|
+
readonly kind: "OBJECT";
|
|
38727
|
+
readonly name: "WorkLocation";
|
|
38728
|
+
readonly fields: readonly [{
|
|
38729
|
+
readonly name: "employee";
|
|
38730
|
+
readonly type: {
|
|
38731
|
+
readonly kind: "NON_NULL";
|
|
38732
|
+
readonly ofType: {
|
|
38733
|
+
readonly kind: "OBJECT";
|
|
38734
|
+
readonly name: "Employee";
|
|
38735
|
+
};
|
|
38736
|
+
};
|
|
38737
|
+
readonly args: readonly [];
|
|
38738
|
+
readonly isDeprecated: false;
|
|
38739
|
+
}, {
|
|
38740
|
+
readonly name: "meetingTypes";
|
|
38741
|
+
readonly type: {
|
|
38742
|
+
readonly kind: "NON_NULL";
|
|
38743
|
+
readonly ofType: {
|
|
38744
|
+
readonly kind: "LIST";
|
|
38745
|
+
readonly ofType: {
|
|
38746
|
+
readonly kind: "NON_NULL";
|
|
38747
|
+
readonly ofType: {
|
|
38748
|
+
readonly kind: "ENUM";
|
|
38749
|
+
readonly name: "MeetingType";
|
|
38750
|
+
};
|
|
38751
|
+
};
|
|
38752
|
+
};
|
|
38753
|
+
};
|
|
38754
|
+
readonly args: readonly [];
|
|
38755
|
+
readonly isDeprecated: false;
|
|
38756
|
+
}, {
|
|
38757
|
+
readonly name: "office";
|
|
38758
|
+
readonly type: {
|
|
38759
|
+
readonly kind: "NON_NULL";
|
|
38760
|
+
readonly ofType: {
|
|
38761
|
+
readonly kind: "OBJECT";
|
|
38762
|
+
readonly name: "Office";
|
|
38763
|
+
};
|
|
38764
|
+
};
|
|
38765
|
+
readonly args: readonly [];
|
|
38766
|
+
readonly isDeprecated: false;
|
|
38767
|
+
}];
|
|
38768
|
+
readonly interfaces: readonly [];
|
|
38769
|
+
}, {
|
|
38770
|
+
readonly kind: "OBJECT";
|
|
38771
|
+
readonly name: "WorkLocationEntry";
|
|
38772
|
+
readonly fields: readonly [{
|
|
38773
|
+
readonly name: "end";
|
|
38774
|
+
readonly type: {
|
|
38775
|
+
readonly kind: "NON_NULL";
|
|
38776
|
+
readonly ofType: {
|
|
38777
|
+
readonly kind: "SCALAR";
|
|
38778
|
+
readonly name: "ISO8601";
|
|
38779
|
+
};
|
|
38780
|
+
};
|
|
38781
|
+
readonly args: readonly [];
|
|
38782
|
+
readonly isDeprecated: false;
|
|
38783
|
+
}, {
|
|
38784
|
+
readonly name: "start";
|
|
38785
|
+
readonly type: {
|
|
38786
|
+
readonly kind: "NON_NULL";
|
|
38787
|
+
readonly ofType: {
|
|
38788
|
+
readonly kind: "SCALAR";
|
|
38789
|
+
readonly name: "ISO8601";
|
|
38790
|
+
};
|
|
38791
|
+
};
|
|
38792
|
+
readonly args: readonly [];
|
|
38793
|
+
readonly isDeprecated: false;
|
|
38794
|
+
}, {
|
|
38795
|
+
readonly name: "workLocations";
|
|
38796
|
+
readonly type: {
|
|
38797
|
+
readonly kind: "NON_NULL";
|
|
38798
|
+
readonly ofType: {
|
|
38799
|
+
readonly kind: "LIST";
|
|
38800
|
+
readonly ofType: {
|
|
38801
|
+
readonly kind: "NON_NULL";
|
|
38802
|
+
readonly ofType: {
|
|
38803
|
+
readonly kind: "OBJECT";
|
|
38804
|
+
readonly name: "WorkLocation";
|
|
38805
|
+
};
|
|
38806
|
+
};
|
|
38807
|
+
};
|
|
38808
|
+
};
|
|
38809
|
+
readonly args: readonly [];
|
|
38810
|
+
readonly isDeprecated: false;
|
|
38811
|
+
}];
|
|
38812
|
+
readonly interfaces: readonly [];
|
|
37661
38813
|
}, {
|
|
37662
38814
|
readonly kind: "INPUT_OBJECT";
|
|
37663
38815
|
readonly name: "activeLanguagesInput";
|
|
@@ -38125,6 +39277,23 @@ declare const introspection: {
|
|
|
38125
39277
|
};
|
|
38126
39278
|
}];
|
|
38127
39279
|
readonly isOneOf: false;
|
|
39280
|
+
}, {
|
|
39281
|
+
readonly kind: "INPUT_OBJECT";
|
|
39282
|
+
readonly name: "defaultUnavailabilityFormIdInput";
|
|
39283
|
+
readonly inputFields: readonly [{
|
|
39284
|
+
readonly name: "manageable";
|
|
39285
|
+
readonly type: {
|
|
39286
|
+
readonly kind: "SCALAR";
|
|
39287
|
+
readonly name: "Boolean";
|
|
39288
|
+
};
|
|
39289
|
+
}, {
|
|
39290
|
+
readonly name: "value";
|
|
39291
|
+
readonly type: {
|
|
39292
|
+
readonly kind: "SCALAR";
|
|
39293
|
+
readonly name: "ID";
|
|
39294
|
+
};
|
|
39295
|
+
}];
|
|
39296
|
+
readonly isOneOf: false;
|
|
38128
39297
|
}, {
|
|
38129
39298
|
readonly kind: "INPUT_OBJECT";
|
|
38130
39299
|
readonly name: "emailProviderInput";
|