@pexip-engage-public/graphql 1.0.73-canary-20250526074113 → 1.0.73-canary-20250527085440
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 +2 -1
- package/dist/graphql-env.d.ts +632 -28
- package/dist/graphql-env.d.ts.map +1 -1
- package/dist/graphql-env.js +692 -0
- package/dist/graphql-env.js.map +1 -1
- package/dist/schema.d.ts +78 -4
- package/dist/schema.d.ts.map +1 -1
- package/package.json +4 -4
- package/src/graphql-env.ts +692 -0
- package/src/schema.ts +102 -3
package/dist/graphql-env.js
CHANGED
|
@@ -6574,6 +6574,154 @@ const introspection = {
|
|
|
6574
6574
|
],
|
|
6575
6575
|
"interfaces": []
|
|
6576
6576
|
},
|
|
6577
|
+
{
|
|
6578
|
+
"kind": "OBJECT",
|
|
6579
|
+
"name": "Communication",
|
|
6580
|
+
"fields": [
|
|
6581
|
+
{
|
|
6582
|
+
"name": "channel",
|
|
6583
|
+
"type": {
|
|
6584
|
+
"kind": "NON_NULL",
|
|
6585
|
+
"ofType": {
|
|
6586
|
+
"kind": "ENUM",
|
|
6587
|
+
"name": "CommunicationChannel"
|
|
6588
|
+
}
|
|
6589
|
+
},
|
|
6590
|
+
"args": [],
|
|
6591
|
+
"isDeprecated": false
|
|
6592
|
+
},
|
|
6593
|
+
{
|
|
6594
|
+
"name": "communicationReceiver",
|
|
6595
|
+
"type": {
|
|
6596
|
+
"kind": "NON_NULL",
|
|
6597
|
+
"ofType": {
|
|
6598
|
+
"kind": "UNION",
|
|
6599
|
+
"name": "CommunicationReceiver"
|
|
6600
|
+
}
|
|
6601
|
+
},
|
|
6602
|
+
"args": [],
|
|
6603
|
+
"isDeprecated": false
|
|
6604
|
+
},
|
|
6605
|
+
{
|
|
6606
|
+
"name": "communicationType",
|
|
6607
|
+
"type": {
|
|
6608
|
+
"kind": "NON_NULL",
|
|
6609
|
+
"ofType": {
|
|
6610
|
+
"kind": "ENUM",
|
|
6611
|
+
"name": "CommunicationType"
|
|
6612
|
+
}
|
|
6613
|
+
},
|
|
6614
|
+
"args": [],
|
|
6615
|
+
"isDeprecated": false
|
|
6616
|
+
},
|
|
6617
|
+
{
|
|
6618
|
+
"name": "correlationId",
|
|
6619
|
+
"type": {
|
|
6620
|
+
"kind": "NON_NULL",
|
|
6621
|
+
"ofType": {
|
|
6622
|
+
"kind": "SCALAR",
|
|
6623
|
+
"name": "String"
|
|
6624
|
+
}
|
|
6625
|
+
},
|
|
6626
|
+
"args": [],
|
|
6627
|
+
"isDeprecated": false
|
|
6628
|
+
},
|
|
6629
|
+
{
|
|
6630
|
+
"name": "createdAt",
|
|
6631
|
+
"type": {
|
|
6632
|
+
"kind": "NON_NULL",
|
|
6633
|
+
"ofType": {
|
|
6634
|
+
"kind": "SCALAR",
|
|
6635
|
+
"name": "ISO8601"
|
|
6636
|
+
}
|
|
6637
|
+
},
|
|
6638
|
+
"args": [],
|
|
6639
|
+
"isDeprecated": false
|
|
6640
|
+
},
|
|
6641
|
+
{
|
|
6642
|
+
"name": "eventType",
|
|
6643
|
+
"type": {
|
|
6644
|
+
"kind": "NON_NULL",
|
|
6645
|
+
"ofType": {
|
|
6646
|
+
"kind": "SCALAR",
|
|
6647
|
+
"name": "String"
|
|
6648
|
+
}
|
|
6649
|
+
},
|
|
6650
|
+
"args": [],
|
|
6651
|
+
"isDeprecated": false
|
|
6652
|
+
},
|
|
6653
|
+
{
|
|
6654
|
+
"name": "id",
|
|
6655
|
+
"type": {
|
|
6656
|
+
"kind": "NON_NULL",
|
|
6657
|
+
"ofType": {
|
|
6658
|
+
"kind": "SCALAR",
|
|
6659
|
+
"name": "ID"
|
|
6660
|
+
}
|
|
6661
|
+
},
|
|
6662
|
+
"args": [],
|
|
6663
|
+
"isDeprecated": false
|
|
6664
|
+
},
|
|
6665
|
+
{
|
|
6666
|
+
"name": "processedAt",
|
|
6667
|
+
"type": {
|
|
6668
|
+
"kind": "NON_NULL",
|
|
6669
|
+
"ofType": {
|
|
6670
|
+
"kind": "SCALAR",
|
|
6671
|
+
"name": "ISO8601"
|
|
6672
|
+
}
|
|
6673
|
+
},
|
|
6674
|
+
"args": [],
|
|
6675
|
+
"isDeprecated": false
|
|
6676
|
+
},
|
|
6677
|
+
{
|
|
6678
|
+
"name": "resourceId",
|
|
6679
|
+
"type": {
|
|
6680
|
+
"kind": "NON_NULL",
|
|
6681
|
+
"ofType": {
|
|
6682
|
+
"kind": "SCALAR",
|
|
6683
|
+
"name": "Int"
|
|
6684
|
+
}
|
|
6685
|
+
},
|
|
6686
|
+
"args": [],
|
|
6687
|
+
"isDeprecated": false
|
|
6688
|
+
},
|
|
6689
|
+
{
|
|
6690
|
+
"name": "resourceType",
|
|
6691
|
+
"type": {
|
|
6692
|
+
"kind": "NON_NULL",
|
|
6693
|
+
"ofType": {
|
|
6694
|
+
"kind": "ENUM",
|
|
6695
|
+
"name": "CommunicationResourceType"
|
|
6696
|
+
}
|
|
6697
|
+
},
|
|
6698
|
+
"args": [],
|
|
6699
|
+
"isDeprecated": false
|
|
6700
|
+
},
|
|
6701
|
+
{
|
|
6702
|
+
"name": "resourceVersion",
|
|
6703
|
+
"type": {
|
|
6704
|
+
"kind": "SCALAR",
|
|
6705
|
+
"name": "Int"
|
|
6706
|
+
},
|
|
6707
|
+
"args": [],
|
|
6708
|
+
"isDeprecated": false
|
|
6709
|
+
},
|
|
6710
|
+
{
|
|
6711
|
+
"name": "scheduledAt",
|
|
6712
|
+
"type": {
|
|
6713
|
+
"kind": "NON_NULL",
|
|
6714
|
+
"ofType": {
|
|
6715
|
+
"kind": "SCALAR",
|
|
6716
|
+
"name": "ISO8601"
|
|
6717
|
+
}
|
|
6718
|
+
},
|
|
6719
|
+
"args": [],
|
|
6720
|
+
"isDeprecated": false
|
|
6721
|
+
}
|
|
6722
|
+
],
|
|
6723
|
+
"interfaces": []
|
|
6724
|
+
},
|
|
6577
6725
|
{
|
|
6578
6726
|
"kind": "ENUM",
|
|
6579
6727
|
"name": "CommunicationChannel",
|
|
@@ -6640,6 +6788,83 @@ const introspection = {
|
|
|
6640
6788
|
],
|
|
6641
6789
|
"interfaces": []
|
|
6642
6790
|
},
|
|
6791
|
+
{
|
|
6792
|
+
"kind": "UNION",
|
|
6793
|
+
"name": "CommunicationReceiver",
|
|
6794
|
+
"possibleTypes": [
|
|
6795
|
+
{
|
|
6796
|
+
"kind": "OBJECT",
|
|
6797
|
+
"name": "Customer"
|
|
6798
|
+
},
|
|
6799
|
+
{
|
|
6800
|
+
"kind": "OBJECT",
|
|
6801
|
+
"name": "Employee"
|
|
6802
|
+
},
|
|
6803
|
+
{
|
|
6804
|
+
"kind": "OBJECT",
|
|
6805
|
+
"name": "Enterprise"
|
|
6806
|
+
},
|
|
6807
|
+
{
|
|
6808
|
+
"kind": "OBJECT",
|
|
6809
|
+
"name": "Office"
|
|
6810
|
+
}
|
|
6811
|
+
]
|
|
6812
|
+
},
|
|
6813
|
+
{
|
|
6814
|
+
"kind": "ENUM",
|
|
6815
|
+
"name": "CommunicationResourceType",
|
|
6816
|
+
"enumValues": [
|
|
6817
|
+
{
|
|
6818
|
+
"name": "APPOINTMENT",
|
|
6819
|
+
"isDeprecated": false
|
|
6820
|
+
},
|
|
6821
|
+
{
|
|
6822
|
+
"name": "CALLBACK_REQUEST",
|
|
6823
|
+
"isDeprecated": false
|
|
6824
|
+
}
|
|
6825
|
+
]
|
|
6826
|
+
},
|
|
6827
|
+
{
|
|
6828
|
+
"kind": "INPUT_OBJECT",
|
|
6829
|
+
"name": "CommunicationSort",
|
|
6830
|
+
"inputFields": [
|
|
6831
|
+
{
|
|
6832
|
+
"name": "direction",
|
|
6833
|
+
"type": {
|
|
6834
|
+
"kind": "NON_NULL",
|
|
6835
|
+
"ofType": {
|
|
6836
|
+
"kind": "ENUM",
|
|
6837
|
+
"name": "SortDirection"
|
|
6838
|
+
}
|
|
6839
|
+
}
|
|
6840
|
+
},
|
|
6841
|
+
{
|
|
6842
|
+
"name": "field",
|
|
6843
|
+
"type": {
|
|
6844
|
+
"kind": "NON_NULL",
|
|
6845
|
+
"ofType": {
|
|
6846
|
+
"kind": "ENUM",
|
|
6847
|
+
"name": "SortableCommunicationFields"
|
|
6848
|
+
}
|
|
6849
|
+
}
|
|
6850
|
+
}
|
|
6851
|
+
],
|
|
6852
|
+
"isOneOf": false
|
|
6853
|
+
},
|
|
6854
|
+
{
|
|
6855
|
+
"kind": "ENUM",
|
|
6856
|
+
"name": "CommunicationType",
|
|
6857
|
+
"enumValues": [
|
|
6858
|
+
{
|
|
6859
|
+
"name": "NOTIFICATION",
|
|
6860
|
+
"isDeprecated": false
|
|
6861
|
+
},
|
|
6862
|
+
{
|
|
6863
|
+
"name": "REMINDER",
|
|
6864
|
+
"isDeprecated": false
|
|
6865
|
+
}
|
|
6866
|
+
]
|
|
6867
|
+
},
|
|
6643
6868
|
{
|
|
6644
6869
|
"kind": "OBJECT",
|
|
6645
6870
|
"name": "Customer",
|
|
@@ -8548,6 +8773,10 @@ const introspection = {
|
|
|
8548
8773
|
{
|
|
8549
8774
|
"name": "SMTP",
|
|
8550
8775
|
"isDeprecated": false
|
|
8776
|
+
},
|
|
8777
|
+
{
|
|
8778
|
+
"name": "WEBHOOK",
|
|
8779
|
+
"isDeprecated": false
|
|
8551
8780
|
}
|
|
8552
8781
|
]
|
|
8553
8782
|
},
|
|
@@ -10362,6 +10591,25 @@ const introspection = {
|
|
|
10362
10591
|
],
|
|
10363
10592
|
"isOneOf": false
|
|
10364
10593
|
},
|
|
10594
|
+
{
|
|
10595
|
+
"kind": "OBJECT",
|
|
10596
|
+
"name": "Enterprise",
|
|
10597
|
+
"fields": [
|
|
10598
|
+
{
|
|
10599
|
+
"name": "name",
|
|
10600
|
+
"type": {
|
|
10601
|
+
"kind": "NON_NULL",
|
|
10602
|
+
"ofType": {
|
|
10603
|
+
"kind": "SCALAR",
|
|
10604
|
+
"name": "String"
|
|
10605
|
+
}
|
|
10606
|
+
},
|
|
10607
|
+
"args": [],
|
|
10608
|
+
"isDeprecated": false
|
|
10609
|
+
}
|
|
10610
|
+
],
|
|
10611
|
+
"interfaces": []
|
|
10612
|
+
},
|
|
10365
10613
|
{
|
|
10366
10614
|
"kind": "INPUT_OBJECT",
|
|
10367
10615
|
"name": "EnterpriseSettingTranslationInput",
|
|
@@ -17335,6 +17583,15 @@ const introspection = {
|
|
|
17335
17583
|
"args": [],
|
|
17336
17584
|
"isDeprecated": false
|
|
17337
17585
|
},
|
|
17586
|
+
{
|
|
17587
|
+
"name": "phoneNumber",
|
|
17588
|
+
"type": {
|
|
17589
|
+
"kind": "SCALAR",
|
|
17590
|
+
"name": "String"
|
|
17591
|
+
},
|
|
17592
|
+
"args": [],
|
|
17593
|
+
"isDeprecated": false
|
|
17594
|
+
},
|
|
17338
17595
|
{
|
|
17339
17596
|
"name": "resourceId",
|
|
17340
17597
|
"type": {
|
|
@@ -17516,6 +17773,13 @@ const introspection = {
|
|
|
17516
17773
|
"name": "ID"
|
|
17517
17774
|
}
|
|
17518
17775
|
},
|
|
17776
|
+
{
|
|
17777
|
+
"name": "phoneNumber",
|
|
17778
|
+
"type": {
|
|
17779
|
+
"kind": "SCALAR",
|
|
17780
|
+
"name": "String"
|
|
17781
|
+
}
|
|
17782
|
+
},
|
|
17519
17783
|
{
|
|
17520
17784
|
"name": "resourceId",
|
|
17521
17785
|
"type": {
|
|
@@ -17793,6 +18057,13 @@ const introspection = {
|
|
|
17793
18057
|
"name": "ID"
|
|
17794
18058
|
}
|
|
17795
18059
|
},
|
|
18060
|
+
{
|
|
18061
|
+
"name": "phoneNumber",
|
|
18062
|
+
"type": {
|
|
18063
|
+
"kind": "SCALAR",
|
|
18064
|
+
"name": "String"
|
|
18065
|
+
}
|
|
18066
|
+
},
|
|
17796
18067
|
{
|
|
17797
18068
|
"name": "resourceId",
|
|
17798
18069
|
"type": {
|
|
@@ -26062,6 +26333,97 @@ const introspection = {
|
|
|
26062
26333
|
],
|
|
26063
26334
|
"interfaces": []
|
|
26064
26335
|
},
|
|
26336
|
+
{
|
|
26337
|
+
"kind": "OBJECT",
|
|
26338
|
+
"name": "PexipInfinityCall",
|
|
26339
|
+
"fields": [
|
|
26340
|
+
{
|
|
26341
|
+
"name": "conferenceNode",
|
|
26342
|
+
"type": {
|
|
26343
|
+
"kind": "NON_NULL",
|
|
26344
|
+
"ofType": {
|
|
26345
|
+
"kind": "SCALAR",
|
|
26346
|
+
"name": "String"
|
|
26347
|
+
}
|
|
26348
|
+
},
|
|
26349
|
+
"args": [],
|
|
26350
|
+
"isDeprecated": false
|
|
26351
|
+
},
|
|
26352
|
+
{
|
|
26353
|
+
"name": "dialInCode",
|
|
26354
|
+
"type": {
|
|
26355
|
+
"kind": "NON_NULL",
|
|
26356
|
+
"ofType": {
|
|
26357
|
+
"kind": "SCALAR",
|
|
26358
|
+
"name": "String"
|
|
26359
|
+
}
|
|
26360
|
+
},
|
|
26361
|
+
"args": [],
|
|
26362
|
+
"isDeprecated": false
|
|
26363
|
+
},
|
|
26364
|
+
{
|
|
26365
|
+
"name": "dialInNumber",
|
|
26366
|
+
"type": {
|
|
26367
|
+
"kind": "NON_NULL",
|
|
26368
|
+
"ofType": {
|
|
26369
|
+
"kind": "SCALAR",
|
|
26370
|
+
"name": "String"
|
|
26371
|
+
}
|
|
26372
|
+
},
|
|
26373
|
+
"args": [],
|
|
26374
|
+
"isDeprecated": false
|
|
26375
|
+
},
|
|
26376
|
+
{
|
|
26377
|
+
"name": "id",
|
|
26378
|
+
"type": {
|
|
26379
|
+
"kind": "NON_NULL",
|
|
26380
|
+
"ofType": {
|
|
26381
|
+
"kind": "SCALAR",
|
|
26382
|
+
"name": "ID"
|
|
26383
|
+
}
|
|
26384
|
+
},
|
|
26385
|
+
"args": [],
|
|
26386
|
+
"isDeprecated": false
|
|
26387
|
+
},
|
|
26388
|
+
{
|
|
26389
|
+
"name": "pin",
|
|
26390
|
+
"type": {
|
|
26391
|
+
"kind": "NON_NULL",
|
|
26392
|
+
"ofType": {
|
|
26393
|
+
"kind": "SCALAR",
|
|
26394
|
+
"name": "String"
|
|
26395
|
+
}
|
|
26396
|
+
},
|
|
26397
|
+
"args": [],
|
|
26398
|
+
"isDeprecated": false
|
|
26399
|
+
},
|
|
26400
|
+
{
|
|
26401
|
+
"name": "vmrId",
|
|
26402
|
+
"type": {
|
|
26403
|
+
"kind": "NON_NULL",
|
|
26404
|
+
"ofType": {
|
|
26405
|
+
"kind": "SCALAR",
|
|
26406
|
+
"name": "Int"
|
|
26407
|
+
}
|
|
26408
|
+
},
|
|
26409
|
+
"args": [],
|
|
26410
|
+
"isDeprecated": false
|
|
26411
|
+
},
|
|
26412
|
+
{
|
|
26413
|
+
"name": "vmrName",
|
|
26414
|
+
"type": {
|
|
26415
|
+
"kind": "NON_NULL",
|
|
26416
|
+
"ofType": {
|
|
26417
|
+
"kind": "SCALAR",
|
|
26418
|
+
"name": "String"
|
|
26419
|
+
}
|
|
26420
|
+
},
|
|
26421
|
+
"args": [],
|
|
26422
|
+
"isDeprecated": false
|
|
26423
|
+
}
|
|
26424
|
+
],
|
|
26425
|
+
"interfaces": []
|
|
26426
|
+
},
|
|
26065
26427
|
{
|
|
26066
26428
|
"kind": "OBJECT",
|
|
26067
26429
|
"name": "PexipVPaaSParticipant",
|
|
@@ -26721,6 +27083,55 @@ const introspection = {
|
|
|
26721
27083
|
"kind": "SCALAR",
|
|
26722
27084
|
"name": "String"
|
|
26723
27085
|
}
|
|
27086
|
+
},
|
|
27087
|
+
{
|
|
27088
|
+
"name": "version",
|
|
27089
|
+
"type": {
|
|
27090
|
+
"kind": "SCALAR",
|
|
27091
|
+
"name": "Int"
|
|
27092
|
+
}
|
|
27093
|
+
}
|
|
27094
|
+
],
|
|
27095
|
+
"isDeprecated": false
|
|
27096
|
+
},
|
|
27097
|
+
{
|
|
27098
|
+
"name": "appointmentCommunications",
|
|
27099
|
+
"type": {
|
|
27100
|
+
"kind": "NON_NULL",
|
|
27101
|
+
"ofType": {
|
|
27102
|
+
"kind": "LIST",
|
|
27103
|
+
"ofType": {
|
|
27104
|
+
"kind": "NON_NULL",
|
|
27105
|
+
"ofType": {
|
|
27106
|
+
"kind": "OBJECT",
|
|
27107
|
+
"name": "Communication"
|
|
27108
|
+
}
|
|
27109
|
+
}
|
|
27110
|
+
}
|
|
27111
|
+
},
|
|
27112
|
+
"args": [
|
|
27113
|
+
{
|
|
27114
|
+
"name": "appointmentId",
|
|
27115
|
+
"type": {
|
|
27116
|
+
"kind": "NON_NULL",
|
|
27117
|
+
"ofType": {
|
|
27118
|
+
"kind": "SCALAR",
|
|
27119
|
+
"name": "ID"
|
|
27120
|
+
}
|
|
27121
|
+
}
|
|
27122
|
+
},
|
|
27123
|
+
{
|
|
27124
|
+
"name": "sort",
|
|
27125
|
+
"type": {
|
|
27126
|
+
"kind": "LIST",
|
|
27127
|
+
"ofType": {
|
|
27128
|
+
"kind": "NON_NULL",
|
|
27129
|
+
"ofType": {
|
|
27130
|
+
"kind": "INPUT_OBJECT",
|
|
27131
|
+
"name": "CommunicationSort"
|
|
27132
|
+
}
|
|
27133
|
+
}
|
|
27134
|
+
}
|
|
26724
27135
|
}
|
|
26725
27136
|
],
|
|
26726
27137
|
"isDeprecated": false
|
|
@@ -30854,6 +31265,29 @@ const introspection = {
|
|
|
30854
31265
|
],
|
|
30855
31266
|
"isDeprecated": false
|
|
30856
31267
|
},
|
|
31268
|
+
{
|
|
31269
|
+
"name": "pexipInfinityCall",
|
|
31270
|
+
"type": {
|
|
31271
|
+
"kind": "NON_NULL",
|
|
31272
|
+
"ofType": {
|
|
31273
|
+
"kind": "OBJECT",
|
|
31274
|
+
"name": "PexipInfinityCall"
|
|
31275
|
+
}
|
|
31276
|
+
},
|
|
31277
|
+
"args": [
|
|
31278
|
+
{
|
|
31279
|
+
"name": "token",
|
|
31280
|
+
"type": {
|
|
31281
|
+
"kind": "NON_NULL",
|
|
31282
|
+
"ofType": {
|
|
31283
|
+
"kind": "SCALAR",
|
|
31284
|
+
"name": "String"
|
|
31285
|
+
}
|
|
31286
|
+
}
|
|
31287
|
+
}
|
|
31288
|
+
],
|
|
31289
|
+
"isDeprecated": false
|
|
31290
|
+
},
|
|
30857
31291
|
{
|
|
30858
31292
|
"name": "question",
|
|
30859
31293
|
"type": {
|
|
@@ -32129,6 +32563,61 @@ const introspection = {
|
|
|
32129
32563
|
],
|
|
32130
32564
|
"isDeprecated": false
|
|
32131
32565
|
},
|
|
32566
|
+
{
|
|
32567
|
+
"name": "scheduledAppointmentCommunications",
|
|
32568
|
+
"type": {
|
|
32569
|
+
"kind": "NON_NULL",
|
|
32570
|
+
"ofType": {
|
|
32571
|
+
"kind": "LIST",
|
|
32572
|
+
"ofType": {
|
|
32573
|
+
"kind": "NON_NULL",
|
|
32574
|
+
"ofType": {
|
|
32575
|
+
"kind": "OBJECT",
|
|
32576
|
+
"name": "ScheduledCommunication"
|
|
32577
|
+
}
|
|
32578
|
+
}
|
|
32579
|
+
}
|
|
32580
|
+
},
|
|
32581
|
+
"args": [
|
|
32582
|
+
{
|
|
32583
|
+
"name": "appointmentId",
|
|
32584
|
+
"type": {
|
|
32585
|
+
"kind": "NON_NULL",
|
|
32586
|
+
"ofType": {
|
|
32587
|
+
"kind": "SCALAR",
|
|
32588
|
+
"name": "ID"
|
|
32589
|
+
}
|
|
32590
|
+
}
|
|
32591
|
+
},
|
|
32592
|
+
{
|
|
32593
|
+
"name": "communicationType",
|
|
32594
|
+
"type": {
|
|
32595
|
+
"kind": "LIST",
|
|
32596
|
+
"ofType": {
|
|
32597
|
+
"kind": "NON_NULL",
|
|
32598
|
+
"ofType": {
|
|
32599
|
+
"kind": "ENUM",
|
|
32600
|
+
"name": "CommunicationType"
|
|
32601
|
+
}
|
|
32602
|
+
}
|
|
32603
|
+
}
|
|
32604
|
+
},
|
|
32605
|
+
{
|
|
32606
|
+
"name": "sort",
|
|
32607
|
+
"type": {
|
|
32608
|
+
"kind": "LIST",
|
|
32609
|
+
"ofType": {
|
|
32610
|
+
"kind": "NON_NULL",
|
|
32611
|
+
"ofType": {
|
|
32612
|
+
"kind": "INPUT_OBJECT",
|
|
32613
|
+
"name": "ScheduledCommunicationSort"
|
|
32614
|
+
}
|
|
32615
|
+
}
|
|
32616
|
+
}
|
|
32617
|
+
}
|
|
32618
|
+
],
|
|
32619
|
+
"isDeprecated": false
|
|
32620
|
+
},
|
|
32132
32621
|
{
|
|
32133
32622
|
"name": "searchRegions",
|
|
32134
32623
|
"type": {
|
|
@@ -33300,6 +33789,26 @@ const introspection = {
|
|
|
33300
33789
|
}
|
|
33301
33790
|
},
|
|
33302
33791
|
"args": [
|
|
33792
|
+
{
|
|
33793
|
+
"name": "active",
|
|
33794
|
+
"type": {
|
|
33795
|
+
"kind": "SCALAR",
|
|
33796
|
+
"name": "Boolean"
|
|
33797
|
+
}
|
|
33798
|
+
},
|
|
33799
|
+
{
|
|
33800
|
+
"name": "eventType",
|
|
33801
|
+
"type": {
|
|
33802
|
+
"kind": "LIST",
|
|
33803
|
+
"ofType": {
|
|
33804
|
+
"kind": "NON_NULL",
|
|
33805
|
+
"ofType": {
|
|
33806
|
+
"kind": "ENUM",
|
|
33807
|
+
"name": "WebhookEventType"
|
|
33808
|
+
}
|
|
33809
|
+
}
|
|
33810
|
+
}
|
|
33811
|
+
},
|
|
33303
33812
|
{
|
|
33304
33813
|
"name": "withDeleted",
|
|
33305
33814
|
"type": {
|
|
@@ -34490,6 +34999,157 @@ const introspection = {
|
|
|
34490
34999
|
}
|
|
34491
35000
|
]
|
|
34492
35001
|
},
|
|
35002
|
+
{
|
|
35003
|
+
"kind": "OBJECT",
|
|
35004
|
+
"name": "ScheduledCommunication",
|
|
35005
|
+
"fields": [
|
|
35006
|
+
{
|
|
35007
|
+
"name": "channel",
|
|
35008
|
+
"type": {
|
|
35009
|
+
"kind": "NON_NULL",
|
|
35010
|
+
"ofType": {
|
|
35011
|
+
"kind": "ENUM",
|
|
35012
|
+
"name": "CommunicationChannel"
|
|
35013
|
+
}
|
|
35014
|
+
},
|
|
35015
|
+
"args": [],
|
|
35016
|
+
"isDeprecated": false
|
|
35017
|
+
},
|
|
35018
|
+
{
|
|
35019
|
+
"name": "communicationReceiver",
|
|
35020
|
+
"type": {
|
|
35021
|
+
"kind": "NON_NULL",
|
|
35022
|
+
"ofType": {
|
|
35023
|
+
"kind": "UNION",
|
|
35024
|
+
"name": "CommunicationReceiver"
|
|
35025
|
+
}
|
|
35026
|
+
},
|
|
35027
|
+
"args": [],
|
|
35028
|
+
"isDeprecated": false
|
|
35029
|
+
},
|
|
35030
|
+
{
|
|
35031
|
+
"name": "communicationType",
|
|
35032
|
+
"type": {
|
|
35033
|
+
"kind": "NON_NULL",
|
|
35034
|
+
"ofType": {
|
|
35035
|
+
"kind": "ENUM",
|
|
35036
|
+
"name": "CommunicationType"
|
|
35037
|
+
}
|
|
35038
|
+
},
|
|
35039
|
+
"args": [],
|
|
35040
|
+
"isDeprecated": false
|
|
35041
|
+
},
|
|
35042
|
+
{
|
|
35043
|
+
"name": "correlationId",
|
|
35044
|
+
"type": {
|
|
35045
|
+
"kind": "NON_NULL",
|
|
35046
|
+
"ofType": {
|
|
35047
|
+
"kind": "SCALAR",
|
|
35048
|
+
"name": "String"
|
|
35049
|
+
}
|
|
35050
|
+
},
|
|
35051
|
+
"args": [],
|
|
35052
|
+
"isDeprecated": false
|
|
35053
|
+
},
|
|
35054
|
+
{
|
|
35055
|
+
"name": "createdAt",
|
|
35056
|
+
"type": {
|
|
35057
|
+
"kind": "NON_NULL",
|
|
35058
|
+
"ofType": {
|
|
35059
|
+
"kind": "SCALAR",
|
|
35060
|
+
"name": "ISO8601"
|
|
35061
|
+
}
|
|
35062
|
+
},
|
|
35063
|
+
"args": [],
|
|
35064
|
+
"isDeprecated": false
|
|
35065
|
+
},
|
|
35066
|
+
{
|
|
35067
|
+
"name": "eventType",
|
|
35068
|
+
"type": {
|
|
35069
|
+
"kind": "NON_NULL",
|
|
35070
|
+
"ofType": {
|
|
35071
|
+
"kind": "SCALAR",
|
|
35072
|
+
"name": "String"
|
|
35073
|
+
}
|
|
35074
|
+
},
|
|
35075
|
+
"args": [],
|
|
35076
|
+
"isDeprecated": false
|
|
35077
|
+
},
|
|
35078
|
+
{
|
|
35079
|
+
"name": "resourceId",
|
|
35080
|
+
"type": {
|
|
35081
|
+
"kind": "NON_NULL",
|
|
35082
|
+
"ofType": {
|
|
35083
|
+
"kind": "SCALAR",
|
|
35084
|
+
"name": "Int"
|
|
35085
|
+
}
|
|
35086
|
+
},
|
|
35087
|
+
"args": [],
|
|
35088
|
+
"isDeprecated": false
|
|
35089
|
+
},
|
|
35090
|
+
{
|
|
35091
|
+
"name": "resourceType",
|
|
35092
|
+
"type": {
|
|
35093
|
+
"kind": "NON_NULL",
|
|
35094
|
+
"ofType": {
|
|
35095
|
+
"kind": "ENUM",
|
|
35096
|
+
"name": "CommunicationResourceType"
|
|
35097
|
+
}
|
|
35098
|
+
},
|
|
35099
|
+
"args": [],
|
|
35100
|
+
"isDeprecated": false
|
|
35101
|
+
},
|
|
35102
|
+
{
|
|
35103
|
+
"name": "resourceVersion",
|
|
35104
|
+
"type": {
|
|
35105
|
+
"kind": "SCALAR",
|
|
35106
|
+
"name": "Int"
|
|
35107
|
+
},
|
|
35108
|
+
"args": [],
|
|
35109
|
+
"isDeprecated": false
|
|
35110
|
+
},
|
|
35111
|
+
{
|
|
35112
|
+
"name": "scheduledAt",
|
|
35113
|
+
"type": {
|
|
35114
|
+
"kind": "NON_NULL",
|
|
35115
|
+
"ofType": {
|
|
35116
|
+
"kind": "SCALAR",
|
|
35117
|
+
"name": "ISO8601"
|
|
35118
|
+
}
|
|
35119
|
+
},
|
|
35120
|
+
"args": [],
|
|
35121
|
+
"isDeprecated": false
|
|
35122
|
+
}
|
|
35123
|
+
],
|
|
35124
|
+
"interfaces": []
|
|
35125
|
+
},
|
|
35126
|
+
{
|
|
35127
|
+
"kind": "INPUT_OBJECT",
|
|
35128
|
+
"name": "ScheduledCommunicationSort",
|
|
35129
|
+
"inputFields": [
|
|
35130
|
+
{
|
|
35131
|
+
"name": "direction",
|
|
35132
|
+
"type": {
|
|
35133
|
+
"kind": "NON_NULL",
|
|
35134
|
+
"ofType": {
|
|
35135
|
+
"kind": "ENUM",
|
|
35136
|
+
"name": "SortDirection"
|
|
35137
|
+
}
|
|
35138
|
+
}
|
|
35139
|
+
},
|
|
35140
|
+
{
|
|
35141
|
+
"name": "field",
|
|
35142
|
+
"type": {
|
|
35143
|
+
"kind": "NON_NULL",
|
|
35144
|
+
"ofType": {
|
|
35145
|
+
"kind": "ENUM",
|
|
35146
|
+
"name": "SortableScheduledCommunicationFields"
|
|
35147
|
+
}
|
|
35148
|
+
}
|
|
35149
|
+
}
|
|
35150
|
+
],
|
|
35151
|
+
"isOneOf": false
|
|
35152
|
+
},
|
|
34493
35153
|
{
|
|
34494
35154
|
"kind": "OBJECT",
|
|
34495
35155
|
"name": "ScimIntegration",
|
|
@@ -35448,6 +36108,16 @@ const introspection = {
|
|
|
35448
36108
|
}
|
|
35449
36109
|
]
|
|
35450
36110
|
},
|
|
36111
|
+
{
|
|
36112
|
+
"kind": "ENUM",
|
|
36113
|
+
"name": "SortableCommunicationFields",
|
|
36114
|
+
"enumValues": [
|
|
36115
|
+
{
|
|
36116
|
+
"name": "processedAt",
|
|
36117
|
+
"isDeprecated": false
|
|
36118
|
+
}
|
|
36119
|
+
]
|
|
36120
|
+
},
|
|
35451
36121
|
{
|
|
35452
36122
|
"kind": "ENUM",
|
|
35453
36123
|
"name": "SortableCustomerFields",
|
|
@@ -35740,6 +36410,16 @@ const introspection = {
|
|
|
35740
36410
|
}
|
|
35741
36411
|
]
|
|
35742
36412
|
},
|
|
36413
|
+
{
|
|
36414
|
+
"kind": "ENUM",
|
|
36415
|
+
"name": "SortableScheduledCommunicationFields",
|
|
36416
|
+
"enumValues": [
|
|
36417
|
+
{
|
|
36418
|
+
"name": "scheduledAt",
|
|
36419
|
+
"isDeprecated": false
|
|
36420
|
+
}
|
|
36421
|
+
]
|
|
36422
|
+
},
|
|
35743
36423
|
{
|
|
35744
36424
|
"kind": "ENUM",
|
|
35745
36425
|
"name": "SortableSubjectFields",
|
|
@@ -38278,6 +38958,10 @@ const introspection = {
|
|
|
38278
38958
|
{
|
|
38279
38959
|
"name": "TWILIO",
|
|
38280
38960
|
"isDeprecated": false
|
|
38961
|
+
},
|
|
38962
|
+
{
|
|
38963
|
+
"name": "WEBHOOK",
|
|
38964
|
+
"isDeprecated": false
|
|
38281
38965
|
}
|
|
38282
38966
|
]
|
|
38283
38967
|
},
|
|
@@ -40129,6 +40813,10 @@ const introspection = {
|
|
|
40129
40813
|
"name": "PEXIP",
|
|
40130
40814
|
"isDeprecated": false
|
|
40131
40815
|
},
|
|
40816
|
+
{
|
|
40817
|
+
"name": "PEXIP_INFINITY",
|
|
40818
|
+
"isDeprecated": false
|
|
40819
|
+
},
|
|
40132
40820
|
{
|
|
40133
40821
|
"name": "STATIC",
|
|
40134
40822
|
"isDeprecated": false
|
|
@@ -41042,6 +41730,10 @@ const introspection = {
|
|
|
41042
41730
|
{
|
|
41043
41731
|
"name": "callback_request_update",
|
|
41044
41732
|
"isDeprecated": false
|
|
41733
|
+
},
|
|
41734
|
+
{
|
|
41735
|
+
"name": "communication_send",
|
|
41736
|
+
"isDeprecated": false
|
|
41045
41737
|
}
|
|
41046
41738
|
]
|
|
41047
41739
|
},
|