-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.js
1802 lines (1581 loc) · 42.3 KB
/
schema.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
const { gql } = require('apollo-server-express')
const typeDefs = gql`
# ------------------
# enums
# ------------------
enum AddOnType {
AWS
AZURE_BLOB
AZURE_SB
BOX
CLOUDBEES
CONCUR
DROPBOX
ECHOSIGN
EGNYTE
FIREBASE
LAYER
MSCRM
NEWRELIC
OFFICE365
RMS
SALESFORCE
SALESFORCE_API
SALESFORCE_SANDBOX_API
SAMLP
SAP_API
SENTRY
SHAREPOINT
SLACK
SPRINGCM
SSO_INTEGRATION
WAMS
WSFED
ZENDESK
ZOOM
}
enum ApiSigningAlgorythmType {
RS256
HS256
}
enum AppType {
MACHINE_TO_MACHINE # non_interactive
NATIVE # native
REGULAR_WEB # regular_web
SINGLE_PAGE # spa
}
enum ConnectionOptionsSamlSignatureAlgorithm {
RSA_SHA1
RSA_SHA256
}
enum ConnectionOptionsSamlSignatureAlgorithmDigest {
SHA1
SHA256
}
enum ConnectionStatusType {
ONLINE
ERROR
}
enum ConnectionStrategy {
AD
ADFS
AMAZON
AOL
APPLE
AUTH0
AUTH0_ADLDAP
AUTH0_OIDC
BAIDU
BITBUCKET
BITLY
BOX
CUSTOM
DACCOUNT
DROPBOX
DWOLLA
EMAIL
EVERNOTE
EVERNOTE_SANDBOX
EXACT
FACEBOOK
FITBIT
FLICKR
GITHUB
GOOGLE_APPS
GOOGLE_OAUTH2
GUARDIAN
INSTAGRAM
IP
LINE
LINKEDIN
MIICARD
OAUTH1
OAUTH2
OFFICE365
OIDC
PAYPAL
PAYPAL_SANDBOX
PINGFEDERATE
PLANNINGCENTER
RENREN
SALESFORCE
SALESFORCE_COMMUNITY
SALESFORCE_SANDBOX
SAMLP
SHAREPOINT
SHOPIFY
SMS
SOUNDCLOUD
THECITY
THECITY_SANDBOX
THIRTYSEVENSIGNALS # BaseCamp
TWITTER
UNTAPPD
VKONTAKTE
WAAD
WEIBO
WINDOWSLIVE
WORDPRESS
YAHOO
YAMMER
YANDEX
}
enum DeviceCredentialType {
PUBLIC_KEY
REFRESH_TOKEN
ROTATING_REFRESH_TOKEN
}
enum PROMPT {
COMMON #: 'common'
CONSENT #: 'consent'
DEVICE_FLOW #: 'device-flow'
EMAIL_OTP_CHALLENGE #: 'email-otp-challenge'
EMAIL_VERIFICATION #: 'email-verification'
INVITATAION #: 'invitation'
LOGIN #: 'LOGIN # : 'login'
LOGIN_ID #: 'login-id'
LOGIN_EMAIL #: 'login-email-verification'
LOGIN_PASSWORD #: 'login-password'
MFA #: 'mfa'
MFA_EMAIL#: 'mfa-email'
MFA_OTP #: 'mfa-otp'
MFA_PHONE #: 'mfa-phone'
MFA_PUSH #: 'mfa-push'
MFA_RECOVERY #: 'mfa-recovery-code'
MFA_SMS #: 'mfa-sms'
MFA_VOICE #: 'mfa-voice'
MFA_WEBAUTHN #: 'mfa-webauthn'
ORGANIZATIONS #: 'organizations'
RESET_PASSWORDS #: 'reset-password'
SIGNUP #: 'signup'
SIGNUP_ID #: 'signup-id'
SIGN_UP_PASSWORD #: 'signup-password'
STATUS #: 'status'
}
enum ExpirationType {
NON_EXPIRING
}
enum GrantType {
AUTHORIZATION_CODE
CLIENT_CREDENTIALS
DEVICE_CODE #urn:ietf:params:oauth:grant-type:device_code.
IMPLICIT
MFA_OOB # http://auth0.com/oauth/grant-type/mfa-oob,
MFA_OTP #http://auth0.com/oauth/grant-type/mfa-otp,
MFA_RECOVERY_CODE #http://auth0.com/oauth/grant-type/mfa-recovery-code,
PASSWORD
PASSWORD_REALM # http://auth0.com/oauth/grant-type/password-realm,
REFRESH_TOKEN
}
enum HookTriggerIdType {
CREDENTIALS_EXCHANGE,
PRE_USER_REGISTRATION,
POST_USER_REGISTRATION,
POST_CHANGE_PASSWORD,
SEND_PHONE_MESSAGE
}
enum LogStreamDataDogRegion {
EU,
US
}
enum LogStreamType {
HTTP
EVENT_BRIDGE
EVENT_GRID
SPLUNK
DATADOG
SUMO cx
}
enum LogStreamStatusType {
ACTIVE,
PAUSED,
SUSPENDED
}
enum LogStreamWebhookContentFormat {
JSONOBJECT,
JSONARRAY
JSONLINES
}
enum OIDCChannelType {
BACK_CHANNEL
FRONT_CHANNEL
}
enum RotationType {
NON_ROTATING
}
enum RuleStage {
LOGIN_SUCCESS
LOGIN_FAILURE
PRE_AUTHORIZE
}
enum StrengthLevel {
EXCELLENT
FAIR
GOOD
LOW
NONE
BASIC
}
enum TokenDialectType {
ACCESS_TOKEN # : 'access_token'
ACCESS_TOKEN_AUTHZ #: 'access_token_authz'
}
enum TokenEndpointAuthMethod {
NONE
POST
BASIC
}
enum UniversalLoginExperience {
NEW
CLASSIC
}
# ------------------
# inputs
# ------------------
input ApiByFilterInput {
page : Int
per_page : Int
}
input ApiCreateInput {
#required
name: String!
identifier: String!
signing_alg: ApiSigningAlgorythmType!
#optional
allow_offline_access: Boolean
client: JSON # not sure what this is.
enforce_policies: Boolean
scopes: [ApiScopeInput]
signing_secret: String
skip_consent_for_verifiable_first_party_clients: Boolean
token_dialect: TokenDialectType
token_lifetime: Int
token_lifetime_for_web: Int
}
input ApiUpdateInput {
# identifier not allowed on update should check on is_xyz
id: ID!
#optional
allow_offline_access: Boolean
client: JSON # not sure what this is.
enforce_policies: Boolean
name: String
scopes: [ApiScopeInput]
signing_alg: ApiSigningAlgorythmType
signing_secret: String
skip_consent_for_verifiable_first_party_clients: Boolean
token_dialect: TokenDialectType
token_lifetime: Int
token_lifetime_for_web: Int
}
input ApiScopeInput{
description: String
value: String
}
input BrandingColorsUpdateInput {
primary : HCC
page_background_as_string : HCC
page_background_as_gradient :BrandingPageBackgroundGradientUpdateInput
}
input BrandingFontUpdateInput {
url : URL
}
input BrandingPageBackgroundGradientUpdateInput {
type: String
start: HCC
end: HCC
angle_deg: Int
}
input BrandingTemplatesUpdateInput {
universal_login : String
}
input BrandingUpdateInput {
colors: BrandingColorsUpdateInput
favicon_url : URL
font : BrandingFontUpdateInput
logo_url: URL
# templates: BrandingTemplatesUpdateInput
}
input ClientsByFilterInput {
app_type : [AppType] # Note: this rest api expects comma seperated list of values.
is_first_party : Boolean
is_global : Boolean
page : Int
per_page : Int
}
input ClientDeleteInput {
client_id : String
}
input ClientUpdateInput {
# TODO: How to handle "Additional Properties Not Allowed Error"
# TODO: Are these just RO properties or are there certain properties
# TODO: that can't be combined for a patch?
# The following properties are read only on client? (additional properties not allowed)
# client_id
# callback_url_template
# global
# signing_keys
# tenant
# alphabetic below
allowed_clients : [String]
allowed_logout_urls : [URL]
allowed_origins: [String] #TODO Check this may be a commas seperated list.
app_type: String
callbacks : [URL]
client_secret: String
client_metadata : Pair
cross_origin_auth: Boolean
custom_login_page_on: Boolean
encrypted: Boolean
grant_types: [GrantType]
is_first_party: Boolean
is_token_endpoint_ip_header_trusted: Boolean
jwt_configuration : ClientUpdateJWTConfigurationInput
name: String
oidc_conformant: Boolean
sso_disabled: Boolean
}
input ClientUpdateJWTConfigurationInput {
lifetime_in_seconds: Int
secret_encoded: Boolean!
}
input ClientGrantsByFilterInput {
audience : String
client_id : ID
page : Int
per_page : Int
}
input ClientGrantCreateInput {
audience : String
client_id : ID
scope: [String]
}
input ClientGrantUpdateInput {
audience : String
client_id : ID
scope: String
}
input ConnectionByFilterInput {
name : String
strategy : ConnectionStrategy
page : Int
per_page : Int
}
input ConnectionCreateInput {
name: String!
strategy: ConnectionStrategy!
}
input ConnectionUserDeleteInput {
id: ID!
email: String
}
input DeviceCredentialsByFilterInput {
user_id: String!
client_id: String
type: String
page : Int
per_page : Int
}
input GrantsByFilterInput {
user_id : String
client_id : String
audience : String
page : Int
per_page : Int
}
input GrantDeleteInput {
id : String
user_id : String
}
input HookCreateInput {
name: String!
enabled: Boolean
triggerId: HookTriggerIdType!
script: String
dependencies: JSON
}
input HooksByFilterInput {
triggerID : HookTriggerIdType
enabled :Boolean
page : Int
per_page : Int
}
# TODO is UpdateSigningKeysUpdateInput used?
input UpdateSigningKeysUpdateInput {
cert: String
pkcs7: String
subject: String
}
input DeviceCredentialPublicKeyCreateInput {
# TODO
id: ID!
}
input HookInput {
id: ID!
triggerId: HookTriggerIdType!
name: String!
enabled: Boolean,
script: String
dependencies: JSON
}
input LogStreamDataDogCreateInput {
name: String!
# sink data
datadogRegion: LogStreamDataDogRegion!
datadogApiKey: String! # looks like a 10 char mixed case string
}
input LogStreamDataDogUpdateInput {
id: ID!
name: String
status: LogStreamStatusType
# sink data
datadogRegion: LogStreamDataDogRegion
datadogApiKey: String
}
input LogStreamDeleteInput {
id : ID!
}
input LogStreamEventBridgeCreateInput {
name: String!
# logstream specific
awsAccountId: String!, # AWS account ID: 12 digit number
awsRegion: String!, # AWS Regions, don't want to put this in ENUM, "us-east-2"
}
input LogStreamEventBridgeUpdateInput {
id: ID!
name: String
status: LogStreamStatusType
# API toes not allow sink data nupdate for event bridge
}
input LogStreamEventGridCreateInput {
name: String!
# sink data
azureSubscriptionId: String!, # Subscription ID: GUID
azureResourceGroup: String!, # Azure-Logs
azureRegion: String! #
#azurePartnerTopic: String! # Generated
}
input LogStreamEventGridUpdateInput {
id: ID!
name: String
status: LogStreamStatusType
# API toes not allow sink data nupdate for event grid
}
input LogStreamSplunkCreateInput {
name: String!
# sink data
splunkDomain: String!, # The domain name of your Splunk instance with an HTTP Event Collector enabled.
splunkToken: String!, # Your Splunk event collector token. A guid
splunkPort: Int!, # Default is 8088
splunkSecure: Boolean! # Verify TLS Toggle in UI: true
}
input LogStreamSplunkUpdateInput {
id: ID!
name: String
status: LogStreamStatusType
# sink data
splunkDomain: String,
splunkToken: String,
splunkPort: Int,
splunkSecure: Boolean
}
input LogStreamSumoCreateInput{
name: String!
# sink data
sumoSourceAddress: URL
}
input LogStreamSumoUpdateInput{
id: ID!
name: String
status: LogStreamStatusType
# sink data
sumoSourceAddress: URL
}
input LogStreamWebhookCreateInput {
name: String!
# sink data
httpContentFormat: LogStreamWebhookContentFormat!,
httpContentType: String!, # Content Type e.g. application/json
httpEndpoint: URL!, # Payload URL, e.g https://path.to.api/webhooks/incomming
httpAuthorization: String! # Authorization Token
}
input LogStreamWebhookUpdateInput {
id: ID!
name: String!
status: LogStreamStatusType!
# sink data
httpContentFormat: LogStreamWebhookContentFormat!,
httpContentType: String!,
httpEndpoint: URL!,
httpAuthorization: String!
}
input HookSecretsAddInput {
id: ID!
secrets: Pair!
}
input HookSecretsDeleteInput {
id: ID!
keys: [String]!
}
input HookSecretsUpdateInput {
id: ID!
secrets: Pair!
}
input RoleByFilterInput {
name_filter : String # case insensitive search on name
page : Int
per_page : Int
}
input RoleCreateInput{
name: String!,
description: String!
}
input RoleDeleteInput{
id: ID!
}
input RoleUpdateInput{
id: ID!
name: String,
description: String
}
input RuleByFilterInput {
enabled : Boolean
page : Int
per_page : Int
}
# ------------------
# types
# ------------------
type Branding {
colors: BrandingColors
favicon_url : URL
font : BrandingFont
logo_url: URL
}
type BrandingColors {
primary : HCC
page_background : BrandingPageBackground
}
type BrandingFont {
url : URL
}
type BrandingTemplates {
universal_login : String
}
type Client{
client_id: ID!
# alphabetic below
addons : ClientAddOns
allowed_clients : [String]
allowed_logout_urls : [URL]
allowed_origins: [String] # TODO Maybe use URL?
app_type: AppType
callback_url_template: Boolean!
callbacks : [URL]
client_aliases: [String]
client_metadata : Pair # TODO or perhaps JSON?
client_secret: String # only available with grant
cross_origin_auth: Boolean
cross_origin_loc: URL
custom_login_page: String
custom_login_page_on: Boolean!
custom_login_page_preview: String
description : String
#encrypted: Boolean #TODO is this used?
encryption_key : ClientEncryptionKey
form_template : String
global: Boolean!
grant_types: [GrantType]!
initiate_login_uri : String
is_first_party: Boolean!
is_token_endpoint_ip_header_trusted: Boolean
jwt_configuration : ClientJWTConfiguration
logo_uri : URL
mobile : ClientMobile
name: String!
# native_social_Logins # TODO
oidc_conformant: Boolean!
refresh_token : ClientRefreshToken
signing_keys: ClientSigningKeys
sso: Boolean
sso_disabled: Boolean
tenant: String!
token_endpoint_auth_method : TokenEndpointAuthMethod
web_origins : [String]
}
type ClientAddOns{
aws : JSON
azure_blob : JSON
azure_sb : JSON
box : JSON
cloudbees : JSON
concur : JSON
dropbox: JSON
echosign : JSON
egnyte : JSON
firebase : JSON
layer : JSON
mscrm : JSON
newrelic : JSON
office365 : JSON
rms : JSON
salesforce : JSON
salesforce_api : JSON
salesforce_sandbox_api : JSON
samlp : JSON
sap_api : JSON
sentry : JSON
sharepoint : JSON
slack : JSON
springcm : JSON
sso_integration : JSON
wams : JSON
wsfed : JSON
zendesk : JSON
zoom : JSON
}
type ClientEncryptionKey {
pub: String
cert: String
subject:String
}
type ClientJWTConfiguration {
lifetime_in_seconds: Int
secret_encoded: Boolean!
#TODO add scopes?
#scopes: {},
alg:String # TODO could be ENUM 'HS256' or 'RS256'
}
type ClientMobile {
android : ClientMobileAndroid
ios : ClientMobileIOS
}
type ClientMobileAndroid{
app_package_name: String
sha256_cert_fingerprints : [String]
}
type ClientMobileIOS {
team_id: String
app_bundle_identifier :String
}
type ClientRefreshToken {
expiration_type: ExpirationType
idle_token_lifetime : Int
infinite_idle_token_lifetime: Boolean
infinite_token_lifetime: Int
leeway: Int
rotation_type: RotationType
token_lifetime: Int
}
type ClientSigningKeys {
cert: String
pkcs7: String
subject: String
}
type ClientGrant {
id : ID!
audience: String
client_id : ID!
scope: [String]
}
type Connection {
id : ID!
enabled_clients : [String]!
is_domain_connection: Boolean
metadata : Pair # not sure how to do this....unless it is key value like client metdata, may be enterprise connestion related or SAML connectio and may have to move.
name: String
options : ConnectionOptions
provisioning_ticket_url : URL # TODO this may be just a enterprise or SAML connection thing.
realms : [String]!
strategy : ConnectionStrategy
}
type ConnectionStatus {
status : ConnectionStatusType
message : String
}
# ------------------
# Social Connections
# ------------------
type ConnectionOptionsApple {
scope: [String]! # scope is stored as a white space seperated string
client_id:String
app_secret: String
set_user_root_attributes: Boolean
# Additional Properties
email: Boolean,
kid: String,
name: Boolean,
team_id:String
}
type ConnectionOptionsAmazon {
scope: [String]! # comes from server as array of strings
profile: Boolean
client_id: String
client_secret: String
set_user_root_attributes: Boolean
# Additional Properties
postal_code: Boolean
}
type ConnectionOptionsBaidu {
scope: [String]!
profile: Boolean
client_id: String
client_secret: String
set_user_root_attributes: Boolean
}
type ConnectionOptionsBitBucket {
profile: Boolean
client_id: String
client_secret: String
set_user_root_attributes: Boolean
}
type ConnectionOptionsBox {
profile: Boolean
client_id: String
client_secret: String
set_user_root_attributes: Boolean
}
type ConnectionOptionsDAccount {
profile: Boolean
client_id: String
client_secret: String
set_user_root_attributes: Boolean
}
type ConnectionOptionsOAuth2 {
scope: [String]! # this is returned by api as a single string e,g, scope: "read" but we'll convert to array.
client_id: String
client_secret: String
set_user_root_attributes: Boolean
#additional properties
authorizationURL: URL
icon_url: URL
integration_name: String
scripts: ConnectionOptionsDigitalOceanScripts
tokenURL: URL
}
type ConnectionOptionsDigitalOceanScripts {
# TODO will there be other scripts?
fetchUserProfile : String
}
type ConnectionOptionsDWolla {
scope: [String]!
client_id: String
client_secret: String
set_user_root_attributes: Boolean
# additional Properties
AccountInfoFull: Boolean
Balance: Boolean
Contacts: Boolean
Funding: Boolean
ManageAccount: Boolean
Request: Boolean
Send: Boolean
Transactions: Boolean
scopeSeparator: String
}
type ConnectionOptionsDropBox {
profile: Boolean
client_id: String
client_secret: String
set_user_root_attributes: Boolean
}
type ConnectionOptionsEvernote {
profile: Boolean
client_id: String
client_secret: String
set_user_root_attributes: Boolean
}
type ConnectionOptionsEvernoteSandbox {
profile: Boolean
client_id: String
client_secret: String
set_user_root_attributes: Boolean
}
type ConnectionOptionsExact {
profile: Boolean
client_id: String
client_secret: String
set_user_root_attributes: Boolean
# additional properteis
baseUrl: URL
}
type ConnectionOptionsFacebook {
scope: [String]! # TODO scope is stored as a csv string in auth0
client_id: String
client_secret: String
set_user_root_attributes: Boolean
#additional properties
ads_management: Boolean
ads_read: Boolean
allow_context_profile_field: Boolean
business_management: Boolean
email: Boolean
groups_access_member_info: Boolean
leads_retrieval: Boolean
manage_notifications: Boolean
manage_pages: Boolean
pages_manage_cta: Boolean
pages_manage_instant_articles: Boolean
pages_messaging: Boolean
pages_messaging_phone_number: Boolean
pages_messaging_subscriptions: Boolean
pages_show_list: Boolean
public_profile: Boolean
publish_actions: Boolean
publish_pages: Boolean
publish_to_groups: Boolean
publish_video: Boolean
read_audience_network_insights: Boolean
read_insights: Boolean
read_mailbox: Boolean
read_page_mailboxes: Boolean
read_stream: Boolean
user_age_range: Boolean
user_birthday: Boolean
user_events: Boolean
user_friends: Boolean
user_gender: Boolean
user_groups: Boolean
user_hometown: Boolean
user_likes: Boolean
user_link: Boolean
user_location: Boolean
user_managed_groups: Boolean
user_photos: Boolean
user_posts: Boolean
user_status: Boolean
user_tagged_places: Boolean
user_videos: Boolean
}
type ConnectionOptionsFitBit {
scope: [String]!
profile: Boolean
client_id: String
client_secret: String,
set_user_root_attributes: Boolean
# additional properties
activity: Boolean
heartrate: Boolean
location: Boolean
nutrition: Boolean
protocol: String
settings: Boolean
sleep: Boolean
social: Boolean
weight: Boolean
}
type ConnectionOptionsGitHub {
scope: [String]! # this is passed as array of strings from server
profile: Boolean
client_id: String,
client_secret: String
set_user_root_attributes: Boolean
# additional Properties
admin_org: Boolean
admin_public_key: Boolean
admin_repo_hook: Boolean
delete_repo: Boolean
email: Boolean
follow: Boolean
gist: Boolean
notifications: Boolean
public_repo: Boolean
read_org: Boolean
read_public_key: Boolean
read_repo_hook: Boolean
read_user: Boolean
repo: Boolean
repo_deployment: Boolean