@pexip-engage-public/graphql 1.0.65 → 1.0.66-canary-20250320122540
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 +6 -0
- package/dist/graphql-env.d.ts +535 -1
- package/dist/graphql-env.d.ts.map +1 -1
- package/dist/graphql-env.js +614 -11
- package/dist/graphql-env.js.map +1 -1
- package/dist/schema.d.ts +69 -1
- package/dist/schema.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/graphql-env.ts +614 -11
- package/src/schema.ts +85 -0
package/src/graphql-env.ts
CHANGED
|
@@ -2280,6 +2280,61 @@ const introspection = {
|
|
|
2280
2280
|
}
|
|
2281
2281
|
]
|
|
2282
2282
|
},
|
|
2283
|
+
{
|
|
2284
|
+
"kind": "OBJECT",
|
|
2285
|
+
"name": "AppointmentIdentity",
|
|
2286
|
+
"fields": [
|
|
2287
|
+
{
|
|
2288
|
+
"name": "backofficeUrl",
|
|
2289
|
+
"type": {
|
|
2290
|
+
"kind": "NON_NULL",
|
|
2291
|
+
"ofType": {
|
|
2292
|
+
"kind": "SCALAR",
|
|
2293
|
+
"name": "String"
|
|
2294
|
+
}
|
|
2295
|
+
},
|
|
2296
|
+
"args": [],
|
|
2297
|
+
"isDeprecated": false
|
|
2298
|
+
},
|
|
2299
|
+
{
|
|
2300
|
+
"name": "id",
|
|
2301
|
+
"type": {
|
|
2302
|
+
"kind": "NON_NULL",
|
|
2303
|
+
"ofType": {
|
|
2304
|
+
"kind": "SCALAR",
|
|
2305
|
+
"name": "Int"
|
|
2306
|
+
}
|
|
2307
|
+
},
|
|
2308
|
+
"args": [],
|
|
2309
|
+
"isDeprecated": false
|
|
2310
|
+
},
|
|
2311
|
+
{
|
|
2312
|
+
"name": "participantType",
|
|
2313
|
+
"type": {
|
|
2314
|
+
"kind": "NON_NULL",
|
|
2315
|
+
"ofType": {
|
|
2316
|
+
"kind": "ENUM",
|
|
2317
|
+
"name": "ParticipantType"
|
|
2318
|
+
}
|
|
2319
|
+
},
|
|
2320
|
+
"args": [],
|
|
2321
|
+
"isDeprecated": false
|
|
2322
|
+
},
|
|
2323
|
+
{
|
|
2324
|
+
"name": "pluginUrl",
|
|
2325
|
+
"type": {
|
|
2326
|
+
"kind": "NON_NULL",
|
|
2327
|
+
"ofType": {
|
|
2328
|
+
"kind": "SCALAR",
|
|
2329
|
+
"name": "String"
|
|
2330
|
+
}
|
|
2331
|
+
},
|
|
2332
|
+
"args": [],
|
|
2333
|
+
"isDeprecated": false
|
|
2334
|
+
}
|
|
2335
|
+
],
|
|
2336
|
+
"interfaces": []
|
|
2337
|
+
},
|
|
2283
2338
|
{
|
|
2284
2339
|
"kind": "INPUT_OBJECT",
|
|
2285
2340
|
"name": "AppointmentInviteInput",
|
|
@@ -20026,6 +20081,30 @@ const introspection = {
|
|
|
20026
20081
|
],
|
|
20027
20082
|
"isDeprecated": false
|
|
20028
20083
|
},
|
|
20084
|
+
{
|
|
20085
|
+
"name": "createSamlIntegration",
|
|
20086
|
+
"type": {
|
|
20087
|
+
"kind": "NON_NULL",
|
|
20088
|
+
"ofType": {
|
|
20089
|
+
"kind": "OBJECT",
|
|
20090
|
+
"name": "SamlIntegration"
|
|
20091
|
+
}
|
|
20092
|
+
},
|
|
20093
|
+
"args": [],
|
|
20094
|
+
"isDeprecated": false
|
|
20095
|
+
},
|
|
20096
|
+
{
|
|
20097
|
+
"name": "createScimToken",
|
|
20098
|
+
"type": {
|
|
20099
|
+
"kind": "NON_NULL",
|
|
20100
|
+
"ofType": {
|
|
20101
|
+
"kind": "SCALAR",
|
|
20102
|
+
"name": "String"
|
|
20103
|
+
}
|
|
20104
|
+
},
|
|
20105
|
+
"args": [],
|
|
20106
|
+
"isDeprecated": false
|
|
20107
|
+
},
|
|
20029
20108
|
{
|
|
20030
20109
|
"name": "createSessionConfigSessionEvent",
|
|
20031
20110
|
"type": {
|
|
@@ -20742,6 +20821,18 @@ const introspection = {
|
|
|
20742
20821
|
],
|
|
20743
20822
|
"isDeprecated": false
|
|
20744
20823
|
},
|
|
20824
|
+
{
|
|
20825
|
+
"name": "deleteSamlIntegration",
|
|
20826
|
+
"type": {
|
|
20827
|
+
"kind": "NON_NULL",
|
|
20828
|
+
"ofType": {
|
|
20829
|
+
"kind": "OBJECT",
|
|
20830
|
+
"name": "SamlIntegration"
|
|
20831
|
+
}
|
|
20832
|
+
},
|
|
20833
|
+
"args": [],
|
|
20834
|
+
"isDeprecated": false
|
|
20835
|
+
},
|
|
20745
20836
|
{
|
|
20746
20837
|
"name": "deleteStorageAccountConfig",
|
|
20747
20838
|
"type": {
|
|
@@ -21004,7 +21095,7 @@ const introspection = {
|
|
|
21004
21095
|
}
|
|
21005
21096
|
}
|
|
21006
21097
|
],
|
|
21007
|
-
"isDeprecated":
|
|
21098
|
+
"isDeprecated": true
|
|
21008
21099
|
},
|
|
21009
21100
|
{
|
|
21010
21101
|
"name": "generateVideoUrl",
|
|
@@ -21853,6 +21944,29 @@ const introspection = {
|
|
|
21853
21944
|
],
|
|
21854
21945
|
"isDeprecated": false
|
|
21855
21946
|
},
|
|
21947
|
+
{
|
|
21948
|
+
"name": "patchSamlIntegration",
|
|
21949
|
+
"type": {
|
|
21950
|
+
"kind": "NON_NULL",
|
|
21951
|
+
"ofType": {
|
|
21952
|
+
"kind": "OBJECT",
|
|
21953
|
+
"name": "SamlIntegration"
|
|
21954
|
+
}
|
|
21955
|
+
},
|
|
21956
|
+
"args": [
|
|
21957
|
+
{
|
|
21958
|
+
"name": "input",
|
|
21959
|
+
"type": {
|
|
21960
|
+
"kind": "NON_NULL",
|
|
21961
|
+
"ofType": {
|
|
21962
|
+
"kind": "INPUT_OBJECT",
|
|
21963
|
+
"name": "SamlIntegrationPatchInput"
|
|
21964
|
+
}
|
|
21965
|
+
}
|
|
21966
|
+
}
|
|
21967
|
+
],
|
|
21968
|
+
"isDeprecated": false
|
|
21969
|
+
},
|
|
21856
21970
|
{
|
|
21857
21971
|
"name": "patchStaticTranslationOverrides",
|
|
21858
21972
|
"type": {
|
|
@@ -23812,6 +23926,29 @@ const introspection = {
|
|
|
23812
23926
|
],
|
|
23813
23927
|
"isDeprecated": false
|
|
23814
23928
|
},
|
|
23929
|
+
{
|
|
23930
|
+
"name": "uploadSamlIdentityProviderMetadata",
|
|
23931
|
+
"type": {
|
|
23932
|
+
"kind": "NON_NULL",
|
|
23933
|
+
"ofType": {
|
|
23934
|
+
"kind": "OBJECT",
|
|
23935
|
+
"name": "SamlIntegration"
|
|
23936
|
+
}
|
|
23937
|
+
},
|
|
23938
|
+
"args": [
|
|
23939
|
+
{
|
|
23940
|
+
"name": "metadataUrl",
|
|
23941
|
+
"type": {
|
|
23942
|
+
"kind": "NON_NULL",
|
|
23943
|
+
"ofType": {
|
|
23944
|
+
"kind": "SCALAR",
|
|
23945
|
+
"name": "String"
|
|
23946
|
+
}
|
|
23947
|
+
}
|
|
23948
|
+
}
|
|
23949
|
+
],
|
|
23950
|
+
"isDeprecated": false
|
|
23951
|
+
},
|
|
23815
23952
|
{
|
|
23816
23953
|
"name": "upsertMicrosoftGraphAPIEmailConfiguration",
|
|
23817
23954
|
"type": {
|
|
@@ -26834,6 +26971,20 @@ const introspection = {
|
|
|
26834
26971
|
"name": "String"
|
|
26835
26972
|
}
|
|
26836
26973
|
},
|
|
26974
|
+
{
|
|
26975
|
+
"name": "createdFrom",
|
|
26976
|
+
"type": {
|
|
26977
|
+
"kind": "SCALAR",
|
|
26978
|
+
"name": "ISO8601"
|
|
26979
|
+
}
|
|
26980
|
+
},
|
|
26981
|
+
{
|
|
26982
|
+
"name": "createdTo",
|
|
26983
|
+
"type": {
|
|
26984
|
+
"kind": "SCALAR",
|
|
26985
|
+
"name": "ISO8601"
|
|
26986
|
+
}
|
|
26987
|
+
},
|
|
26837
26988
|
{
|
|
26838
26989
|
"name": "customerId",
|
|
26839
26990
|
"type": {
|
|
@@ -28530,6 +28681,39 @@ const introspection = {
|
|
|
28530
28681
|
],
|
|
28531
28682
|
"isDeprecated": false
|
|
28532
28683
|
},
|
|
28684
|
+
{
|
|
28685
|
+
"name": "identifyAppointment",
|
|
28686
|
+
"type": {
|
|
28687
|
+
"kind": "NON_NULL",
|
|
28688
|
+
"ofType": {
|
|
28689
|
+
"kind": "OBJECT",
|
|
28690
|
+
"name": "AppointmentIdentity"
|
|
28691
|
+
}
|
|
28692
|
+
},
|
|
28693
|
+
"args": [
|
|
28694
|
+
{
|
|
28695
|
+
"name": "intent",
|
|
28696
|
+
"type": {
|
|
28697
|
+
"kind": "NON_NULL",
|
|
28698
|
+
"ofType": {
|
|
28699
|
+
"kind": "ENUM",
|
|
28700
|
+
"name": "Intent"
|
|
28701
|
+
}
|
|
28702
|
+
}
|
|
28703
|
+
},
|
|
28704
|
+
{
|
|
28705
|
+
"name": "token",
|
|
28706
|
+
"type": {
|
|
28707
|
+
"kind": "NON_NULL",
|
|
28708
|
+
"ofType": {
|
|
28709
|
+
"kind": "SCALAR",
|
|
28710
|
+
"name": "String"
|
|
28711
|
+
}
|
|
28712
|
+
}
|
|
28713
|
+
}
|
|
28714
|
+
],
|
|
28715
|
+
"isDeprecated": false
|
|
28716
|
+
},
|
|
28533
28717
|
{
|
|
28534
28718
|
"name": "integration",
|
|
28535
28719
|
"type": {
|
|
@@ -30213,6 +30397,18 @@ const introspection = {
|
|
|
30213
30397
|
],
|
|
30214
30398
|
"isDeprecated": false
|
|
30215
30399
|
},
|
|
30400
|
+
{
|
|
30401
|
+
"name": "samlIntegration",
|
|
30402
|
+
"type": {
|
|
30403
|
+
"kind": "NON_NULL",
|
|
30404
|
+
"ofType": {
|
|
30405
|
+
"kind": "OBJECT",
|
|
30406
|
+
"name": "SamlIntegration"
|
|
30407
|
+
}
|
|
30408
|
+
},
|
|
30409
|
+
"args": [],
|
|
30410
|
+
"isDeprecated": false
|
|
30411
|
+
},
|
|
30216
30412
|
{
|
|
30217
30413
|
"name": "schedulableEmployees",
|
|
30218
30414
|
"type": {
|
|
@@ -31303,6 +31499,24 @@ const introspection = {
|
|
|
31303
31499
|
],
|
|
31304
31500
|
"isDeprecated": false
|
|
31305
31501
|
},
|
|
31502
|
+
{
|
|
31503
|
+
"name": "scimTokens",
|
|
31504
|
+
"type": {
|
|
31505
|
+
"kind": "NON_NULL",
|
|
31506
|
+
"ofType": {
|
|
31507
|
+
"kind": "LIST",
|
|
31508
|
+
"ofType": {
|
|
31509
|
+
"kind": "NON_NULL",
|
|
31510
|
+
"ofType": {
|
|
31511
|
+
"kind": "OBJECT",
|
|
31512
|
+
"name": "ScimToken"
|
|
31513
|
+
}
|
|
31514
|
+
}
|
|
31515
|
+
}
|
|
31516
|
+
},
|
|
31517
|
+
"args": [],
|
|
31518
|
+
"isDeprecated": false
|
|
31519
|
+
},
|
|
31306
31520
|
{
|
|
31307
31521
|
"name": "searchRegions",
|
|
31308
31522
|
"type": {
|
|
@@ -33654,6 +33868,10 @@ const introspection = {
|
|
|
33654
33868
|
"name": "OFFICE_RELATION",
|
|
33655
33869
|
"isDeprecated": false
|
|
33656
33870
|
},
|
|
33871
|
+
{
|
|
33872
|
+
"name": "SCIM_TOKEN",
|
|
33873
|
+
"isDeprecated": false
|
|
33874
|
+
},
|
|
33657
33875
|
{
|
|
33658
33876
|
"name": "SUBJECT",
|
|
33659
33877
|
"isDeprecated": false
|
|
@@ -33666,7 +33884,7 @@ const introspection = {
|
|
|
33666
33884
|
},
|
|
33667
33885
|
{
|
|
33668
33886
|
"kind": "OBJECT",
|
|
33669
|
-
"name": "
|
|
33887
|
+
"name": "SamlIntegration",
|
|
33670
33888
|
"fields": [
|
|
33671
33889
|
{
|
|
33672
33890
|
"name": "active",
|
|
@@ -33681,7 +33899,7 @@ const introspection = {
|
|
|
33681
33899
|
"isDeprecated": false
|
|
33682
33900
|
},
|
|
33683
33901
|
{
|
|
33684
|
-
"name": "
|
|
33902
|
+
"name": "identityProviderMetadataUrl",
|
|
33685
33903
|
"type": {
|
|
33686
33904
|
"kind": "SCALAR",
|
|
33687
33905
|
"name": "String"
|
|
@@ -33690,41 +33908,362 @@ const introspection = {
|
|
|
33690
33908
|
"isDeprecated": false
|
|
33691
33909
|
},
|
|
33692
33910
|
{
|
|
33693
|
-
"name": "
|
|
33911
|
+
"name": "identityProviderSignatureKey",
|
|
33912
|
+
"type": {
|
|
33913
|
+
"kind": "OBJECT",
|
|
33914
|
+
"name": "SamlIntegrationIdentityProviderKey"
|
|
33915
|
+
},
|
|
33916
|
+
"args": [],
|
|
33917
|
+
"isDeprecated": false
|
|
33918
|
+
},
|
|
33919
|
+
{
|
|
33920
|
+
"name": "serviceProviderEncryptionKeys",
|
|
33921
|
+
"type": {
|
|
33922
|
+
"kind": "NON_NULL",
|
|
33923
|
+
"ofType": {
|
|
33924
|
+
"kind": "LIST",
|
|
33925
|
+
"ofType": {
|
|
33926
|
+
"kind": "NON_NULL",
|
|
33927
|
+
"ofType": {
|
|
33928
|
+
"kind": "OBJECT",
|
|
33929
|
+
"name": "SamlIntegrationServiceProviderKey"
|
|
33930
|
+
}
|
|
33931
|
+
}
|
|
33932
|
+
}
|
|
33933
|
+
},
|
|
33934
|
+
"args": [],
|
|
33935
|
+
"isDeprecated": false
|
|
33936
|
+
},
|
|
33937
|
+
{
|
|
33938
|
+
"name": "serviceProviderMetadataUrl",
|
|
33694
33939
|
"type": {
|
|
33695
33940
|
"kind": "NON_NULL",
|
|
33696
33941
|
"ofType": {
|
|
33697
33942
|
"kind": "SCALAR",
|
|
33698
|
-
"name": "
|
|
33943
|
+
"name": "String"
|
|
33699
33944
|
}
|
|
33700
33945
|
},
|
|
33701
33946
|
"args": [],
|
|
33702
33947
|
"isDeprecated": false
|
|
33703
33948
|
},
|
|
33704
33949
|
{
|
|
33705
|
-
"name": "
|
|
33950
|
+
"name": "serviceProviderSignatureKeys",
|
|
33706
33951
|
"type": {
|
|
33707
33952
|
"kind": "NON_NULL",
|
|
33708
33953
|
"ofType": {
|
|
33709
|
-
"kind": "
|
|
33710
|
-
"
|
|
33954
|
+
"kind": "LIST",
|
|
33955
|
+
"ofType": {
|
|
33956
|
+
"kind": "NON_NULL",
|
|
33957
|
+
"ofType": {
|
|
33958
|
+
"kind": "OBJECT",
|
|
33959
|
+
"name": "SamlIntegrationServiceProviderKey"
|
|
33960
|
+
}
|
|
33961
|
+
}
|
|
33711
33962
|
}
|
|
33712
33963
|
},
|
|
33713
33964
|
"args": [],
|
|
33714
33965
|
"isDeprecated": false
|
|
33715
33966
|
},
|
|
33716
33967
|
{
|
|
33717
|
-
"name": "
|
|
33968
|
+
"name": "singleLogoutServiceUrl",
|
|
33969
|
+
"type": {
|
|
33970
|
+
"kind": "SCALAR",
|
|
33971
|
+
"name": "String"
|
|
33972
|
+
},
|
|
33973
|
+
"args": [],
|
|
33974
|
+
"isDeprecated": false
|
|
33975
|
+
},
|
|
33976
|
+
{
|
|
33977
|
+
"name": "singleSignOnServiceUrl",
|
|
33978
|
+
"type": {
|
|
33979
|
+
"kind": "SCALAR",
|
|
33980
|
+
"name": "String"
|
|
33981
|
+
},
|
|
33982
|
+
"args": [],
|
|
33983
|
+
"isDeprecated": false
|
|
33984
|
+
},
|
|
33985
|
+
{
|
|
33986
|
+
"name": "validateSignature",
|
|
33718
33987
|
"type": {
|
|
33719
33988
|
"kind": "NON_NULL",
|
|
33720
33989
|
"ofType": {
|
|
33721
33990
|
"kind": "SCALAR",
|
|
33722
|
-
"name": "
|
|
33991
|
+
"name": "Boolean"
|
|
33723
33992
|
}
|
|
33724
33993
|
},
|
|
33725
33994
|
"args": [],
|
|
33726
33995
|
"isDeprecated": false
|
|
33727
|
-
}
|
|
33996
|
+
},
|
|
33997
|
+
{
|
|
33998
|
+
"name": "wantAssertionsEncrypted",
|
|
33999
|
+
"type": {
|
|
34000
|
+
"kind": "NON_NULL",
|
|
34001
|
+
"ofType": {
|
|
34002
|
+
"kind": "SCALAR",
|
|
34003
|
+
"name": "Boolean"
|
|
34004
|
+
}
|
|
34005
|
+
},
|
|
34006
|
+
"args": [],
|
|
34007
|
+
"isDeprecated": false
|
|
34008
|
+
},
|
|
34009
|
+
{
|
|
34010
|
+
"name": "wantAssertionsSigned",
|
|
34011
|
+
"type": {
|
|
34012
|
+
"kind": "NON_NULL",
|
|
34013
|
+
"ofType": {
|
|
34014
|
+
"kind": "SCALAR",
|
|
34015
|
+
"name": "Boolean"
|
|
34016
|
+
}
|
|
34017
|
+
},
|
|
34018
|
+
"args": [],
|
|
34019
|
+
"isDeprecated": false
|
|
34020
|
+
},
|
|
34021
|
+
{
|
|
34022
|
+
"name": "wantAuthnRequestsSigned",
|
|
34023
|
+
"type": {
|
|
34024
|
+
"kind": "NON_NULL",
|
|
34025
|
+
"ofType": {
|
|
34026
|
+
"kind": "SCALAR",
|
|
34027
|
+
"name": "Boolean"
|
|
34028
|
+
}
|
|
34029
|
+
},
|
|
34030
|
+
"args": [],
|
|
34031
|
+
"isDeprecated": false
|
|
34032
|
+
}
|
|
34033
|
+
],
|
|
34034
|
+
"interfaces": []
|
|
34035
|
+
},
|
|
34036
|
+
{
|
|
34037
|
+
"kind": "OBJECT",
|
|
34038
|
+
"name": "SamlIntegrationIdentityProviderKey",
|
|
34039
|
+
"fields": [
|
|
34040
|
+
{
|
|
34041
|
+
"name": "certificate",
|
|
34042
|
+
"type": {
|
|
34043
|
+
"kind": "NON_NULL",
|
|
34044
|
+
"ofType": {
|
|
34045
|
+
"kind": "SCALAR",
|
|
34046
|
+
"name": "String"
|
|
34047
|
+
}
|
|
34048
|
+
},
|
|
34049
|
+
"args": [],
|
|
34050
|
+
"isDeprecated": false
|
|
34051
|
+
},
|
|
34052
|
+
{
|
|
34053
|
+
"name": "expiresAt",
|
|
34054
|
+
"type": {
|
|
34055
|
+
"kind": "NON_NULL",
|
|
34056
|
+
"ofType": {
|
|
34057
|
+
"kind": "SCALAR",
|
|
34058
|
+
"name": "ISO8601"
|
|
34059
|
+
}
|
|
34060
|
+
},
|
|
34061
|
+
"args": [],
|
|
34062
|
+
"isDeprecated": false
|
|
34063
|
+
}
|
|
34064
|
+
],
|
|
34065
|
+
"interfaces": []
|
|
34066
|
+
},
|
|
34067
|
+
{
|
|
34068
|
+
"kind": "ENUM",
|
|
34069
|
+
"name": "SamlIntegrationKeyStatus",
|
|
34070
|
+
"enumValues": [
|
|
34071
|
+
{
|
|
34072
|
+
"name": "ACTIVE",
|
|
34073
|
+
"isDeprecated": false
|
|
34074
|
+
},
|
|
34075
|
+
{
|
|
34076
|
+
"name": "DISABLED",
|
|
34077
|
+
"isDeprecated": false
|
|
34078
|
+
},
|
|
34079
|
+
{
|
|
34080
|
+
"name": "PASSIVE",
|
|
34081
|
+
"isDeprecated": false
|
|
34082
|
+
}
|
|
34083
|
+
]
|
|
34084
|
+
},
|
|
34085
|
+
{
|
|
34086
|
+
"kind": "INPUT_OBJECT",
|
|
34087
|
+
"name": "SamlIntegrationPatchInput",
|
|
34088
|
+
"inputFields": [
|
|
34089
|
+
{
|
|
34090
|
+
"name": "active",
|
|
34091
|
+
"type": {
|
|
34092
|
+
"kind": "SCALAR",
|
|
34093
|
+
"name": "Boolean"
|
|
34094
|
+
}
|
|
34095
|
+
},
|
|
34096
|
+
{
|
|
34097
|
+
"name": "validateSignature",
|
|
34098
|
+
"type": {
|
|
34099
|
+
"kind": "SCALAR",
|
|
34100
|
+
"name": "Boolean"
|
|
34101
|
+
}
|
|
34102
|
+
},
|
|
34103
|
+
{
|
|
34104
|
+
"name": "wantAssertionsEncrypted",
|
|
34105
|
+
"type": {
|
|
34106
|
+
"kind": "SCALAR",
|
|
34107
|
+
"name": "Boolean"
|
|
34108
|
+
}
|
|
34109
|
+
},
|
|
34110
|
+
{
|
|
34111
|
+
"name": "wantAssertionsSigned",
|
|
34112
|
+
"type": {
|
|
34113
|
+
"kind": "SCALAR",
|
|
34114
|
+
"name": "Boolean"
|
|
34115
|
+
}
|
|
34116
|
+
},
|
|
34117
|
+
{
|
|
34118
|
+
"name": "wantAuthnRequestsSigned",
|
|
34119
|
+
"type": {
|
|
34120
|
+
"kind": "SCALAR",
|
|
34121
|
+
"name": "Boolean"
|
|
34122
|
+
}
|
|
34123
|
+
}
|
|
34124
|
+
],
|
|
34125
|
+
"isOneOf": false
|
|
34126
|
+
},
|
|
34127
|
+
{
|
|
34128
|
+
"kind": "OBJECT",
|
|
34129
|
+
"name": "SamlIntegrationServiceProviderKey",
|
|
34130
|
+
"fields": [
|
|
34131
|
+
{
|
|
34132
|
+
"name": "algorithm",
|
|
34133
|
+
"type": {
|
|
34134
|
+
"kind": "NON_NULL",
|
|
34135
|
+
"ofType": {
|
|
34136
|
+
"kind": "SCALAR",
|
|
34137
|
+
"name": "String"
|
|
34138
|
+
}
|
|
34139
|
+
},
|
|
34140
|
+
"args": [],
|
|
34141
|
+
"isDeprecated": false
|
|
34142
|
+
},
|
|
34143
|
+
{
|
|
34144
|
+
"name": "certificate",
|
|
34145
|
+
"type": {
|
|
34146
|
+
"kind": "NON_NULL",
|
|
34147
|
+
"ofType": {
|
|
34148
|
+
"kind": "SCALAR",
|
|
34149
|
+
"name": "String"
|
|
34150
|
+
}
|
|
34151
|
+
},
|
|
34152
|
+
"args": [],
|
|
34153
|
+
"isDeprecated": false
|
|
34154
|
+
},
|
|
34155
|
+
{
|
|
34156
|
+
"name": "expiresAt",
|
|
34157
|
+
"type": {
|
|
34158
|
+
"kind": "NON_NULL",
|
|
34159
|
+
"ofType": {
|
|
34160
|
+
"kind": "SCALAR",
|
|
34161
|
+
"name": "ISO8601"
|
|
34162
|
+
}
|
|
34163
|
+
},
|
|
34164
|
+
"args": [],
|
|
34165
|
+
"isDeprecated": false
|
|
34166
|
+
},
|
|
34167
|
+
{
|
|
34168
|
+
"name": "id",
|
|
34169
|
+
"type": {
|
|
34170
|
+
"kind": "NON_NULL",
|
|
34171
|
+
"ofType": {
|
|
34172
|
+
"kind": "SCALAR",
|
|
34173
|
+
"name": "String"
|
|
34174
|
+
}
|
|
34175
|
+
},
|
|
34176
|
+
"args": [],
|
|
34177
|
+
"isDeprecated": false
|
|
34178
|
+
},
|
|
34179
|
+
{
|
|
34180
|
+
"name": "publicKey",
|
|
34181
|
+
"type": {
|
|
34182
|
+
"kind": "NON_NULL",
|
|
34183
|
+
"ofType": {
|
|
34184
|
+
"kind": "SCALAR",
|
|
34185
|
+
"name": "String"
|
|
34186
|
+
}
|
|
34187
|
+
},
|
|
34188
|
+
"args": [],
|
|
34189
|
+
"isDeprecated": false
|
|
34190
|
+
},
|
|
34191
|
+
{
|
|
34192
|
+
"name": "status",
|
|
34193
|
+
"type": {
|
|
34194
|
+
"kind": "NON_NULL",
|
|
34195
|
+
"ofType": {
|
|
34196
|
+
"kind": "ENUM",
|
|
34197
|
+
"name": "SamlIntegrationKeyStatus"
|
|
34198
|
+
}
|
|
34199
|
+
},
|
|
34200
|
+
"args": [],
|
|
34201
|
+
"isDeprecated": false
|
|
34202
|
+
}
|
|
34203
|
+
],
|
|
34204
|
+
"interfaces": []
|
|
34205
|
+
},
|
|
34206
|
+
{
|
|
34207
|
+
"kind": "OBJECT",
|
|
34208
|
+
"name": "ScimIntegration",
|
|
34209
|
+
"fields": [
|
|
34210
|
+
{
|
|
34211
|
+
"name": "active",
|
|
34212
|
+
"type": {
|
|
34213
|
+
"kind": "NON_NULL",
|
|
34214
|
+
"ofType": {
|
|
34215
|
+
"kind": "SCALAR",
|
|
34216
|
+
"name": "Boolean"
|
|
34217
|
+
}
|
|
34218
|
+
},
|
|
34219
|
+
"args": [],
|
|
34220
|
+
"isDeprecated": false
|
|
34221
|
+
},
|
|
34222
|
+
{
|
|
34223
|
+
"name": "authToken",
|
|
34224
|
+
"type": {
|
|
34225
|
+
"kind": "SCALAR",
|
|
34226
|
+
"name": "String"
|
|
34227
|
+
},
|
|
34228
|
+
"args": [],
|
|
34229
|
+
"isDeprecated": false
|
|
34230
|
+
},
|
|
34231
|
+
{
|
|
34232
|
+
"name": "id",
|
|
34233
|
+
"type": {
|
|
34234
|
+
"kind": "NON_NULL",
|
|
34235
|
+
"ofType": {
|
|
34236
|
+
"kind": "SCALAR",
|
|
34237
|
+
"name": "ID"
|
|
34238
|
+
}
|
|
34239
|
+
},
|
|
34240
|
+
"args": [],
|
|
34241
|
+
"isDeprecated": false
|
|
34242
|
+
},
|
|
34243
|
+
{
|
|
34244
|
+
"name": "integrationType",
|
|
34245
|
+
"type": {
|
|
34246
|
+
"kind": "NON_NULL",
|
|
34247
|
+
"ofType": {
|
|
34248
|
+
"kind": "ENUM",
|
|
34249
|
+
"name": "IntegrationType"
|
|
34250
|
+
}
|
|
34251
|
+
},
|
|
34252
|
+
"args": [],
|
|
34253
|
+
"isDeprecated": false
|
|
34254
|
+
},
|
|
34255
|
+
{
|
|
34256
|
+
"name": "name",
|
|
34257
|
+
"type": {
|
|
34258
|
+
"kind": "NON_NULL",
|
|
34259
|
+
"ofType": {
|
|
34260
|
+
"kind": "SCALAR",
|
|
34261
|
+
"name": "String"
|
|
34262
|
+
}
|
|
34263
|
+
},
|
|
34264
|
+
"args": [],
|
|
34265
|
+
"isDeprecated": false
|
|
34266
|
+
}
|
|
33728
34267
|
],
|
|
33729
34268
|
"interfaces": [
|
|
33730
34269
|
{
|
|
@@ -33733,6 +34272,70 @@ const introspection = {
|
|
|
33733
34272
|
}
|
|
33734
34273
|
]
|
|
33735
34274
|
},
|
|
34275
|
+
{
|
|
34276
|
+
"kind": "OBJECT",
|
|
34277
|
+
"name": "ScimToken",
|
|
34278
|
+
"fields": [
|
|
34279
|
+
{
|
|
34280
|
+
"name": "createdAt",
|
|
34281
|
+
"type": {
|
|
34282
|
+
"kind": "NON_NULL",
|
|
34283
|
+
"ofType": {
|
|
34284
|
+
"kind": "SCALAR",
|
|
34285
|
+
"name": "ISO8601"
|
|
34286
|
+
}
|
|
34287
|
+
},
|
|
34288
|
+
"args": [],
|
|
34289
|
+
"isDeprecated": false
|
|
34290
|
+
},
|
|
34291
|
+
{
|
|
34292
|
+
"name": "deletedAt",
|
|
34293
|
+
"type": {
|
|
34294
|
+
"kind": "SCALAR",
|
|
34295
|
+
"name": "ISO8601"
|
|
34296
|
+
},
|
|
34297
|
+
"args": [],
|
|
34298
|
+
"isDeprecated": false
|
|
34299
|
+
},
|
|
34300
|
+
{
|
|
34301
|
+
"name": "expiresAt",
|
|
34302
|
+
"type": {
|
|
34303
|
+
"kind": "NON_NULL",
|
|
34304
|
+
"ofType": {
|
|
34305
|
+
"kind": "SCALAR",
|
|
34306
|
+
"name": "ISO8601"
|
|
34307
|
+
}
|
|
34308
|
+
},
|
|
34309
|
+
"args": [],
|
|
34310
|
+
"isDeprecated": false
|
|
34311
|
+
},
|
|
34312
|
+
{
|
|
34313
|
+
"name": "id",
|
|
34314
|
+
"type": {
|
|
34315
|
+
"kind": "NON_NULL",
|
|
34316
|
+
"ofType": {
|
|
34317
|
+
"kind": "SCALAR",
|
|
34318
|
+
"name": "ID"
|
|
34319
|
+
}
|
|
34320
|
+
},
|
|
34321
|
+
"args": [],
|
|
34322
|
+
"isDeprecated": false
|
|
34323
|
+
},
|
|
34324
|
+
{
|
|
34325
|
+
"name": "updatedAt",
|
|
34326
|
+
"type": {
|
|
34327
|
+
"kind": "NON_NULL",
|
|
34328
|
+
"ofType": {
|
|
34329
|
+
"kind": "SCALAR",
|
|
34330
|
+
"name": "ISO8601"
|
|
34331
|
+
}
|
|
34332
|
+
},
|
|
34333
|
+
"args": [],
|
|
34334
|
+
"isDeprecated": false
|
|
34335
|
+
}
|
|
34336
|
+
],
|
|
34337
|
+
"interfaces": []
|
|
34338
|
+
},
|
|
33736
34339
|
{
|
|
33737
34340
|
"kind": "INPUT_OBJECT",
|
|
33738
34341
|
"name": "SecondaryParticipantInput",
|