-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.oagen-manifest.json
More file actions
1611 lines (1611 loc) · 77.3 KB
/
Copy path.oagen-manifest.json
File metadata and controls
1611 lines (1611 loc) · 77.3 KB
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
{
"version": 2,
"language": "kotlin",
"files": [
"src/main/kotlin/com/workos/WorkOS.kt",
"src/main/kotlin/com/workos/adminportal/AdminPortal.kt",
"src/main/kotlin/com/workos/agents/Agents.kt",
"src/main/kotlin/com/workos/apikeys/ApiKeys.kt",
"src/main/kotlin/com/workos/auditlogs/AuditLogs.kt",
"src/main/kotlin/com/workos/authorization/Authorization.kt",
"src/main/kotlin/com/workos/clientapi/ClientApi.kt",
"src/main/kotlin/com/workos/connect/Connect.kt",
"src/main/kotlin/com/workos/directorysync/DirectorySync.kt",
"src/main/kotlin/com/workos/events/Events.kt",
"src/main/kotlin/com/workos/featureflags/FeatureFlags.kt",
"src/main/kotlin/com/workos/groups/Groups.kt",
"src/main/kotlin/com/workos/models/AccessTokenAgentRegistrationCredentialIssuedDataDetail.kt",
"src/main/kotlin/com/workos/models/ActionAuthenticationDenied.kt",
"src/main/kotlin/com/workos/models/ActionAuthenticationDeniedData.kt",
"src/main/kotlin/com/workos/models/ActionUserRegistrationDenied.kt",
"src/main/kotlin/com/workos/models/ActionUserRegistrationDeniedData.kt",
"src/main/kotlin/com/workos/models/Actor.kt",
"src/main/kotlin/com/workos/models/AddRolePermission.kt",
"src/main/kotlin/com/workos/models/AgentAdminLinkClaimAttemptToExternalUserRequest.kt",
"src/main/kotlin/com/workos/models/AgentAdminLinkClaimAttemptToExternalUserRequestUser.kt",
"src/main/kotlin/com/workos/models/AgentAdminValidateCredentialRequest.kt",
"src/main/kotlin/com/workos/models/AgentCredentialValidation.kt",
"src/main/kotlin/com/workos/models/AgentRegistration.kt",
"src/main/kotlin/com/workos/models/AgentRegistrationAgentIdentity.kt",
"src/main/kotlin/com/workos/models/AgentRegistrationClaim.kt",
"src/main/kotlin/com/workos/models/AgentRegistrationClaimAttemptCreated.kt",
"src/main/kotlin/com/workos/models/AgentRegistrationClaimAttemptCreatedData.kt",
"src/main/kotlin/com/workos/models/AgentRegistrationClaimClaimCompletion.kt",
"src/main/kotlin/com/workos/models/AgentRegistrationClaimCompleted.kt",
"src/main/kotlin/com/workos/models/AgentRegistrationClaimCompletedData.kt",
"src/main/kotlin/com/workos/models/AgentRegistrationClaimCompletedDataClaimedBy.kt",
"src/main/kotlin/com/workos/models/AgentRegistrationCreated.kt",
"src/main/kotlin/com/workos/models/AgentRegistrationCreatedData.kt",
"src/main/kotlin/com/workos/models/AgentRegistrationCreatedDataAgentIdentity.kt",
"src/main/kotlin/com/workos/models/AgentRegistrationCredentialIssued.kt",
"src/main/kotlin/com/workos/models/AgentRegistrationCredentialIssuedData.kt",
"src/main/kotlin/com/workos/models/AgentRegistrationCredentialIssuedDataDetail.kt",
"src/main/kotlin/com/workos/models/AgentRegistrationDeleted.kt",
"src/main/kotlin/com/workos/models/AgentRegistrationDeletedData.kt",
"src/main/kotlin/com/workos/models/AgentRegistrationExpired.kt",
"src/main/kotlin/com/workos/models/AgentRegistrationExpiredData.kt",
"src/main/kotlin/com/workos/models/AgentRegistrationOrganizationSwitched.kt",
"src/main/kotlin/com/workos/models/AgentRegistrationOrganizationSwitchedData.kt",
"src/main/kotlin/com/workos/models/AgentRegistrationRefreshed.kt",
"src/main/kotlin/com/workos/models/AgentRegistrationRefreshedData.kt",
"src/main/kotlin/com/workos/models/AgentRegistrationRevoked.kt",
"src/main/kotlin/com/workos/models/AgentRegistrationRevokedData.kt",
"src/main/kotlin/com/workos/models/ApiKey.kt",
"src/main/kotlin/com/workos/models/ApiKeyCreated.kt",
"src/main/kotlin/com/workos/models/ApiKeyCreatedData.kt",
"src/main/kotlin/com/workos/models/ApiKeyCreatedDataOwner.kt",
"src/main/kotlin/com/workos/models/ApiKeyInstallation.kt",
"src/main/kotlin/com/workos/models/ApiKeyOwner.kt",
"src/main/kotlin/com/workos/models/ApiKeyRevoked.kt",
"src/main/kotlin/com/workos/models/ApiKeyRevokedData.kt",
"src/main/kotlin/com/workos/models/ApiKeyRevokedDataOwner.kt",
"src/main/kotlin/com/workos/models/ApiKeyUpdated.kt",
"src/main/kotlin/com/workos/models/ApiKeyUpdatedData.kt",
"src/main/kotlin/com/workos/models/ApiKeyUpdatedDataOwner.kt",
"src/main/kotlin/com/workos/models/ApiKeyUpdatedDataPreviousAttribute.kt",
"src/main/kotlin/com/workos/models/ApiKeyValidationResponse.kt",
"src/main/kotlin/com/workos/models/ApplicationCredentialsListItem.kt",
"src/main/kotlin/com/workos/models/AssignRole.kt",
"src/main/kotlin/com/workos/models/AuditLogAction.kt",
"src/main/kotlin/com/workos/models/AuditLogConfiguration.kt",
"src/main/kotlin/com/workos/models/AuditLogConfigurationLogStream.kt",
"src/main/kotlin/com/workos/models/AuditLogEvent.kt",
"src/main/kotlin/com/workos/models/AuditLogEventActor.kt",
"src/main/kotlin/com/workos/models/AuditLogEventContext.kt",
"src/main/kotlin/com/workos/models/AuditLogEventCreateResponse.kt",
"src/main/kotlin/com/workos/models/AuditLogEventIngestion.kt",
"src/main/kotlin/com/workos/models/AuditLogEventTarget.kt",
"src/main/kotlin/com/workos/models/AuditLogExport.kt",
"src/main/kotlin/com/workos/models/AuditLogExportCreation.kt",
"src/main/kotlin/com/workos/models/AuditLogSchema.kt",
"src/main/kotlin/com/workos/models/AuditLogSchemaActor.kt",
"src/main/kotlin/com/workos/models/AuditLogSchemaActorInput.kt",
"src/main/kotlin/com/workos/models/AuditLogSchemaInput.kt",
"src/main/kotlin/com/workos/models/AuditLogSchemaTarget.kt",
"src/main/kotlin/com/workos/models/AuditLogSchemaTargetInput.kt",
"src/main/kotlin/com/workos/models/AuditLogsRetention.kt",
"src/main/kotlin/com/workos/models/AuthMethodMismatchError.kt",
"src/main/kotlin/com/workos/models/AuthenticateResponse.kt",
"src/main/kotlin/com/workos/models/AuthenticateResponseImpersonator.kt",
"src/main/kotlin/com/workos/models/AuthenticateResponseOAuthToken.kt",
"src/main/kotlin/com/workos/models/AuthenticationChallenge.kt",
"src/main/kotlin/com/workos/models/AuthenticationChallengeVerifyResponse.kt",
"src/main/kotlin/com/workos/models/AuthenticationChallengesVerifyRequest.kt",
"src/main/kotlin/com/workos/models/AuthenticationEmailVerificationFailed.kt",
"src/main/kotlin/com/workos/models/AuthenticationEmailVerificationFailedData.kt",
"src/main/kotlin/com/workos/models/AuthenticationEmailVerificationFailedDataError.kt",
"src/main/kotlin/com/workos/models/AuthenticationEmailVerificationSucceeded.kt",
"src/main/kotlin/com/workos/models/AuthenticationEmailVerificationSucceededData.kt",
"src/main/kotlin/com/workos/models/AuthenticationFactor.kt",
"src/main/kotlin/com/workos/models/AuthenticationFactorEnrolled.kt",
"src/main/kotlin/com/workos/models/AuthenticationFactorEnrolledSms.kt",
"src/main/kotlin/com/workos/models/AuthenticationFactorEnrolledTotp.kt",
"src/main/kotlin/com/workos/models/AuthenticationFactorSms.kt",
"src/main/kotlin/com/workos/models/AuthenticationFactorTotp.kt",
"src/main/kotlin/com/workos/models/AuthenticationFactorsCreateRequest.kt",
"src/main/kotlin/com/workos/models/AuthenticationMFAFailed.kt",
"src/main/kotlin/com/workos/models/AuthenticationMFAFailedData.kt",
"src/main/kotlin/com/workos/models/AuthenticationMFAFailedDataError.kt",
"src/main/kotlin/com/workos/models/AuthenticationMFASucceeded.kt",
"src/main/kotlin/com/workos/models/AuthenticationMFASucceededData.kt",
"src/main/kotlin/com/workos/models/AuthenticationMagicAuthFailed.kt",
"src/main/kotlin/com/workos/models/AuthenticationMagicAuthFailedData.kt",
"src/main/kotlin/com/workos/models/AuthenticationMagicAuthFailedDataError.kt",
"src/main/kotlin/com/workos/models/AuthenticationMagicAuthSucceeded.kt",
"src/main/kotlin/com/workos/models/AuthenticationMagicAuthSucceededData.kt",
"src/main/kotlin/com/workos/models/AuthenticationOAuthFailed.kt",
"src/main/kotlin/com/workos/models/AuthenticationOAuthFailedData.kt",
"src/main/kotlin/com/workos/models/AuthenticationOAuthFailedDataError.kt",
"src/main/kotlin/com/workos/models/AuthenticationOAuthSucceeded.kt",
"src/main/kotlin/com/workos/models/AuthenticationOAuthSucceededData.kt",
"src/main/kotlin/com/workos/models/AuthenticationPasskeyFailed.kt",
"src/main/kotlin/com/workos/models/AuthenticationPasskeyFailedData.kt",
"src/main/kotlin/com/workos/models/AuthenticationPasskeyFailedDataError.kt",
"src/main/kotlin/com/workos/models/AuthenticationPasskeySucceeded.kt",
"src/main/kotlin/com/workos/models/AuthenticationPasskeySucceededData.kt",
"src/main/kotlin/com/workos/models/AuthenticationPasswordFailed.kt",
"src/main/kotlin/com/workos/models/AuthenticationPasswordFailedData.kt",
"src/main/kotlin/com/workos/models/AuthenticationPasswordFailedDataError.kt",
"src/main/kotlin/com/workos/models/AuthenticationPasswordSucceeded.kt",
"src/main/kotlin/com/workos/models/AuthenticationPasswordSucceededData.kt",
"src/main/kotlin/com/workos/models/AuthenticationRadarRiskDetected.kt",
"src/main/kotlin/com/workos/models/AuthenticationRadarRiskDetectedData.kt",
"src/main/kotlin/com/workos/models/AuthenticationReauthenticationSucceeded.kt",
"src/main/kotlin/com/workos/models/AuthenticationReauthenticationSucceededData.kt",
"src/main/kotlin/com/workos/models/AuthenticationSSOFailed.kt",
"src/main/kotlin/com/workos/models/AuthenticationSSOFailedData.kt",
"src/main/kotlin/com/workos/models/AuthenticationSSOFailedDataError.kt",
"src/main/kotlin/com/workos/models/AuthenticationSSOFailedDataSSO.kt",
"src/main/kotlin/com/workos/models/AuthenticationSSOStarted.kt",
"src/main/kotlin/com/workos/models/AuthenticationSSOStartedData.kt",
"src/main/kotlin/com/workos/models/AuthenticationSSOStartedDataSSO.kt",
"src/main/kotlin/com/workos/models/AuthenticationSSOSucceeded.kt",
"src/main/kotlin/com/workos/models/AuthenticationSSOSucceededData.kt",
"src/main/kotlin/com/workos/models/AuthenticationSSOSucceededDataSSO.kt",
"src/main/kotlin/com/workos/models/AuthenticationSSOTimedOut.kt",
"src/main/kotlin/com/workos/models/AuthenticationSSOTimedOutData.kt",
"src/main/kotlin/com/workos/models/AuthenticationSSOTimedOutDataError.kt",
"src/main/kotlin/com/workos/models/AuthenticationSSOTimedOutDataSSO.kt",
"src/main/kotlin/com/workos/models/AuthorizationCheck.kt",
"src/main/kotlin/com/workos/models/AuthorizationCodeSessionAuthenticateRequest.kt",
"src/main/kotlin/com/workos/models/AuthorizationPermission.kt",
"src/main/kotlin/com/workos/models/AuthorizationResource.kt",
"src/main/kotlin/com/workos/models/AuthorizedConnectApplicationListData.kt",
"src/main/kotlin/com/workos/models/ChallengeAuthenticationFactor.kt",
"src/main/kotlin/com/workos/models/CheckAuthorization.kt",
"src/main/kotlin/com/workos/models/ClaimViewResponse.kt",
"src/main/kotlin/com/workos/models/ClaimViewResponseOrganization.kt",
"src/main/kotlin/com/workos/models/ClientApiToken.kt",
"src/main/kotlin/com/workos/models/ClientApiTokenResponse.kt",
"src/main/kotlin/com/workos/models/ConfigureDataIntegrationBody.kt",
"src/main/kotlin/com/workos/models/ConfirmEmailChange.kt",
"src/main/kotlin/com/workos/models/ConnectApplication.kt",
"src/main/kotlin/com/workos/models/ConnectApplicationM2M.kt",
"src/main/kotlin/com/workos/models/ConnectApplicationOAuth.kt",
"src/main/kotlin/com/workos/models/ConnectApplicationOAuthRedirectUris.kt",
"src/main/kotlin/com/workos/models/ConnectApplicationRedirectUri.kt",
"src/main/kotlin/com/workos/models/ConnectedAccount.kt",
"src/main/kotlin/com/workos/models/ConnectedAccountInput.kt",
"src/main/kotlin/com/workos/models/Connection.kt",
"src/main/kotlin/com/workos/models/ConnectionActivated.kt",
"src/main/kotlin/com/workos/models/ConnectionActivatedData.kt",
"src/main/kotlin/com/workos/models/ConnectionActivatedDataDomain.kt",
"src/main/kotlin/com/workos/models/ConnectionDeactivated.kt",
"src/main/kotlin/com/workos/models/ConnectionDeactivatedData.kt",
"src/main/kotlin/com/workos/models/ConnectionDeactivatedDataDomain.kt",
"src/main/kotlin/com/workos/models/ConnectionDeleted.kt",
"src/main/kotlin/com/workos/models/ConnectionDeletedData.kt",
"src/main/kotlin/com/workos/models/ConnectionDomain.kt",
"src/main/kotlin/com/workos/models/ConnectionSAMLCertificateRenewalRequired.kt",
"src/main/kotlin/com/workos/models/ConnectionSAMLCertificateRenewalRequiredData.kt",
"src/main/kotlin/com/workos/models/ConnectionSAMLCertificateRenewalRequiredDataCertificate.kt",
"src/main/kotlin/com/workos/models/ConnectionSAMLCertificateRenewalRequiredDataConnection.kt",
"src/main/kotlin/com/workos/models/ConnectionSAMLCertificateRenewed.kt",
"src/main/kotlin/com/workos/models/ConnectionSAMLCertificateRenewedData.kt",
"src/main/kotlin/com/workos/models/ConnectionSAMLCertificateRenewedDataCertificate.kt",
"src/main/kotlin/com/workos/models/ConnectionSAMLCertificateRenewedDataConnection.kt",
"src/main/kotlin/com/workos/models/CorsOriginResponse.kt",
"src/main/kotlin/com/workos/models/CreateApplicationSecret.kt",
"src/main/kotlin/com/workos/models/CreateAuthorizationPermission.kt",
"src/main/kotlin/com/workos/models/CreateAuthorizationResource.kt",
"src/main/kotlin/com/workos/models/CreateCorsOrigin.kt",
"src/main/kotlin/com/workos/models/CreateDataIntegration.kt",
"src/main/kotlin/com/workos/models/CreateDataKeyRequest.kt",
"src/main/kotlin/com/workos/models/CreateDataKeyResponse.kt",
"src/main/kotlin/com/workos/models/CreateGroup.kt",
"src/main/kotlin/com/workos/models/CreateGroupMembership.kt",
"src/main/kotlin/com/workos/models/CreateGroupRoleAssignment.kt",
"src/main/kotlin/com/workos/models/CreateM2MApplication.kt",
"src/main/kotlin/com/workos/models/CreateMagicCodeAndReturn.kt",
"src/main/kotlin/com/workos/models/CreateOAuthApplication.kt",
"src/main/kotlin/com/workos/models/CreateObjectRequest.kt",
"src/main/kotlin/com/workos/models/CreateOrganizationApiKey.kt",
"src/main/kotlin/com/workos/models/CreateOrganizationDomain.kt",
"src/main/kotlin/com/workos/models/CreateOrganizationRole.kt",
"src/main/kotlin/com/workos/models/CreatePasswordReset.kt",
"src/main/kotlin/com/workos/models/CreatePasswordResetToken.kt",
"src/main/kotlin/com/workos/models/CreateRedirectUri.kt",
"src/main/kotlin/com/workos/models/CreateRole.kt",
"src/main/kotlin/com/workos/models/CreateUser.kt",
"src/main/kotlin/com/workos/models/CreateUserApiKey.kt",
"src/main/kotlin/com/workos/models/CreateUserInviteOptions.kt",
"src/main/kotlin/com/workos/models/CreateUserOrganizationMembership.kt",
"src/main/kotlin/com/workos/models/CreateWebhookEndpoint.kt",
"src/main/kotlin/com/workos/models/CustomProviderDefinition.kt",
"src/main/kotlin/com/workos/models/DataIntegration.kt",
"src/main/kotlin/com/workos/models/DataIntegrationAccessTokenResponse.kt",
"src/main/kotlin/com/workos/models/DataIntegrationAccessTokenResponseAccessToken.kt",
"src/main/kotlin/com/workos/models/DataIntegrationAuthorizeUrlResponse.kt",
"src/main/kotlin/com/workos/models/DataIntegrationConfigurationListResponse.kt",
"src/main/kotlin/com/workos/models/DataIntegrationConfigurationResponse.kt",
"src/main/kotlin/com/workos/models/DataIntegrationCredential.kt",
"src/main/kotlin/com/workos/models/DataIntegrationCredentials.kt",
"src/main/kotlin/com/workos/models/DataIntegrationCredentialsInput.kt",
"src/main/kotlin/com/workos/models/DataIntegrationCredentialsResponse.kt",
"src/main/kotlin/com/workos/models/DataIntegrationCredentialsResponseCredential.kt",
"src/main/kotlin/com/workos/models/DataIntegrationCustomProvider.kt",
"src/main/kotlin/com/workos/models/DataIntegrationInstallation.kt",
"src/main/kotlin/com/workos/models/DataIntegrationsGetDataIntegrationAuthorizeUrlRequest.kt",
"src/main/kotlin/com/workos/models/DataIntegrationsGetUserTokenRequest.kt",
"src/main/kotlin/com/workos/models/DataIntegrationsListResponse.kt",
"src/main/kotlin/com/workos/models/DataIntegrationsListResponseData.kt",
"src/main/kotlin/com/workos/models/DataIntegrationsListResponseDataConnectedAccount.kt",
"src/main/kotlin/com/workos/models/DataIntegrationsUpsertApiKeyRequest.kt",
"src/main/kotlin/com/workos/models/DataIntegrationsUpsertClientCredentialsRequest.kt",
"src/main/kotlin/com/workos/models/DataIntegrationsVendCredentialsRequest.kt",
"src/main/kotlin/com/workos/models/DecryptRequest.kt",
"src/main/kotlin/com/workos/models/DecryptResponse.kt",
"src/main/kotlin/com/workos/models/DeleteGroupRoleAssignmentsByCriteria.kt",
"src/main/kotlin/com/workos/models/DeleteObjectResponse.kt",
"src/main/kotlin/com/workos/models/DeviceAuthorizationResponse.kt",
"src/main/kotlin/com/workos/models/DeviceCodeSessionAuthenticateRequest.kt",
"src/main/kotlin/com/workos/models/Directory.kt",
"src/main/kotlin/com/workos/models/DirectoryGroup.kt",
"src/main/kotlin/com/workos/models/DirectoryMetadata.kt",
"src/main/kotlin/com/workos/models/DirectoryMetadataUser.kt",
"src/main/kotlin/com/workos/models/DirectoryUser.kt",
"src/main/kotlin/com/workos/models/DirectoryUserEmail.kt",
"src/main/kotlin/com/workos/models/DirectoryUserWithGroups.kt",
"src/main/kotlin/com/workos/models/DirectoryUserWithGroupsEmail.kt",
"src/main/kotlin/com/workos/models/DsyncActivated.kt",
"src/main/kotlin/com/workos/models/DsyncActivatedData.kt",
"src/main/kotlin/com/workos/models/DsyncActivatedDataDomain.kt",
"src/main/kotlin/com/workos/models/DsyncDeleted.kt",
"src/main/kotlin/com/workos/models/DsyncDeletedData.kt",
"src/main/kotlin/com/workos/models/DsyncGroupCreated.kt",
"src/main/kotlin/com/workos/models/DsyncGroupDeleted.kt",
"src/main/kotlin/com/workos/models/DsyncGroupUpdated.kt",
"src/main/kotlin/com/workos/models/DsyncGroupUpdatedData.kt",
"src/main/kotlin/com/workos/models/DsyncGroupUserAdded.kt",
"src/main/kotlin/com/workos/models/DsyncGroupUserAddedData.kt",
"src/main/kotlin/com/workos/models/DsyncGroupUserRemoved.kt",
"src/main/kotlin/com/workos/models/DsyncGroupUserRemovedData.kt",
"src/main/kotlin/com/workos/models/DsyncTokenCreated.kt",
"src/main/kotlin/com/workos/models/DsyncTokenCreatedData.kt",
"src/main/kotlin/com/workos/models/DsyncTokenRevoked.kt",
"src/main/kotlin/com/workos/models/DsyncTokenRevokedData.kt",
"src/main/kotlin/com/workos/models/DsyncUserCreated.kt",
"src/main/kotlin/com/workos/models/DsyncUserDeleted.kt",
"src/main/kotlin/com/workos/models/DsyncUserUpdated.kt",
"src/main/kotlin/com/workos/models/DsyncUserUpdatedData.kt",
"src/main/kotlin/com/workos/models/DsyncUserUpdatedDataEmail.kt",
"src/main/kotlin/com/workos/models/EmailChange.kt",
"src/main/kotlin/com/workos/models/EmailChangeConfirmation.kt",
"src/main/kotlin/com/workos/models/EmailChangeConfirmationUser.kt",
"src/main/kotlin/com/workos/models/EmailVerification.kt",
"src/main/kotlin/com/workos/models/EmailVerificationCodeSessionAuthenticateRequest.kt",
"src/main/kotlin/com/workos/models/EmailVerificationCreated.kt",
"src/main/kotlin/com/workos/models/EmailVerificationCreatedData.kt",
"src/main/kotlin/com/workos/models/EnrollUserAuthenticationFactor.kt",
"src/main/kotlin/com/workos/models/ErrorResponse.kt",
"src/main/kotlin/com/workos/models/EventContext.kt",
"src/main/kotlin/com/workos/models/EventContextActor.kt",
"src/main/kotlin/com/workos/models/EventContextGoogleAnalyticsSession.kt",
"src/main/kotlin/com/workos/models/EventListListMetadata.kt",
"src/main/kotlin/com/workos/models/EventSchema.kt",
"src/main/kotlin/com/workos/models/ExpireApiKey.kt",
"src/main/kotlin/com/workos/models/ExternalAuthCompleteResponse.kt",
"src/main/kotlin/com/workos/models/FeatureFlag.kt",
"src/main/kotlin/com/workos/models/FeatureFlagOwner.kt",
"src/main/kotlin/com/workos/models/Flag.kt",
"src/main/kotlin/com/workos/models/FlagCreated.kt",
"src/main/kotlin/com/workos/models/FlagCreatedContext.kt",
"src/main/kotlin/com/workos/models/FlagCreatedContextActor.kt",
"src/main/kotlin/com/workos/models/FlagCreatedData.kt",
"src/main/kotlin/com/workos/models/FlagCreatedDataOwner.kt",
"src/main/kotlin/com/workos/models/FlagDeleted.kt",
"src/main/kotlin/com/workos/models/FlagDeletedContext.kt",
"src/main/kotlin/com/workos/models/FlagDeletedContextActor.kt",
"src/main/kotlin/com/workos/models/FlagDeletedData.kt",
"src/main/kotlin/com/workos/models/FlagDeletedDataOwner.kt",
"src/main/kotlin/com/workos/models/FlagOwner.kt",
"src/main/kotlin/com/workos/models/FlagRuleUpdated.kt",
"src/main/kotlin/com/workos/models/FlagRuleUpdatedContext.kt",
"src/main/kotlin/com/workos/models/FlagRuleUpdatedContextActor.kt",
"src/main/kotlin/com/workos/models/FlagRuleUpdatedContextConfiguredTarget.kt",
"src/main/kotlin/com/workos/models/FlagRuleUpdatedContextConfiguredTargetOrganization.kt",
"src/main/kotlin/com/workos/models/FlagRuleUpdatedContextConfiguredTargetUser.kt",
"src/main/kotlin/com/workos/models/FlagRuleUpdatedContextPreviousAttribute.kt",
"src/main/kotlin/com/workos/models/FlagRuleUpdatedContextPreviousAttributeContext.kt",
"src/main/kotlin/com/workos/models/FlagRuleUpdatedContextPreviousAttributeContextConfiguredTarget.kt",
"src/main/kotlin/com/workos/models/FlagRuleUpdatedContextPreviousAttributeContextConfiguredTargetOrganization.kt",
"src/main/kotlin/com/workos/models/FlagRuleUpdatedContextPreviousAttributeContextConfiguredTargetUser.kt",
"src/main/kotlin/com/workos/models/FlagRuleUpdatedContextPreviousAttributeData.kt",
"src/main/kotlin/com/workos/models/FlagRuleUpdatedData.kt",
"src/main/kotlin/com/workos/models/FlagRuleUpdatedDataOwner.kt",
"src/main/kotlin/com/workos/models/FlagUpdated.kt",
"src/main/kotlin/com/workos/models/FlagUpdatedContext.kt",
"src/main/kotlin/com/workos/models/FlagUpdatedContextActor.kt",
"src/main/kotlin/com/workos/models/FlagUpdatedContextPreviousAttribute.kt",
"src/main/kotlin/com/workos/models/FlagUpdatedContextPreviousAttributeData.kt",
"src/main/kotlin/com/workos/models/FlagUpdatedData.kt",
"src/main/kotlin/com/workos/models/FlagUpdatedDataOwner.kt",
"src/main/kotlin/com/workos/models/GenerateLink.kt",
"src/main/kotlin/com/workos/models/Group.kt",
"src/main/kotlin/com/workos/models/GroupCreated.kt",
"src/main/kotlin/com/workos/models/GroupDeleted.kt",
"src/main/kotlin/com/workos/models/GroupMemberAdded.kt",
"src/main/kotlin/com/workos/models/GroupMemberAddedData.kt",
"src/main/kotlin/com/workos/models/GroupMemberRemoved.kt",
"src/main/kotlin/com/workos/models/GroupMemberRemovedData.kt",
"src/main/kotlin/com/workos/models/GroupRoleAssignment.kt",
"src/main/kotlin/com/workos/models/GroupRoleAssignmentList.kt",
"src/main/kotlin/com/workos/models/GroupRoleAssignmentResource.kt",
"src/main/kotlin/com/workos/models/GroupUpdated.kt",
"src/main/kotlin/com/workos/models/Invitation.kt",
"src/main/kotlin/com/workos/models/InvitationAccepted.kt",
"src/main/kotlin/com/workos/models/InvitationAcceptedData.kt",
"src/main/kotlin/com/workos/models/InvitationCreated.kt",
"src/main/kotlin/com/workos/models/InvitationCreatedData.kt",
"src/main/kotlin/com/workos/models/InvitationResent.kt",
"src/main/kotlin/com/workos/models/InvitationResentData.kt",
"src/main/kotlin/com/workos/models/InvitationRevoked.kt",
"src/main/kotlin/com/workos/models/InvitationRevokedData.kt",
"src/main/kotlin/com/workos/models/JWTTemplateResponse.kt",
"src/main/kotlin/com/workos/models/JwksResponse.kt",
"src/main/kotlin/com/workos/models/JwksResponseKeys.kt",
"src/main/kotlin/com/workos/models/ListMetadata.kt",
"src/main/kotlin/com/workos/models/MFATotpSessionAuthenticateRequest.kt",
"src/main/kotlin/com/workos/models/MagicAuth.kt",
"src/main/kotlin/com/workos/models/MagicAuthCodeSessionAuthenticateRequest.kt",
"src/main/kotlin/com/workos/models/MagicAuthCreated.kt",
"src/main/kotlin/com/workos/models/MagicAuthCreatedData.kt",
"src/main/kotlin/com/workos/models/MagicAuthSendMagicAuthCodeAndReturnResponse.kt",
"src/main/kotlin/com/workos/models/NewConnectApplicationSecret.kt",
"src/main/kotlin/com/workos/models/ObjectMetadata.kt",
"src/main/kotlin/com/workos/models/ObjectSummary.kt",
"src/main/kotlin/com/workos/models/ObjectVersion.kt",
"src/main/kotlin/com/workos/models/ObjectWithoutValue.kt",
"src/main/kotlin/com/workos/models/Organization.kt",
"src/main/kotlin/com/workos/models/OrganizationApiKey.kt",
"src/main/kotlin/com/workos/models/OrganizationApiKeyOwner.kt",
"src/main/kotlin/com/workos/models/OrganizationApiKeyWithValue.kt",
"src/main/kotlin/com/workos/models/OrganizationApiKeyWithValueOwner.kt",
"src/main/kotlin/com/workos/models/OrganizationAuthorizedConnectApplicationListData.kt",
"src/main/kotlin/com/workos/models/OrganizationCreated.kt",
"src/main/kotlin/com/workos/models/OrganizationCreatedData.kt",
"src/main/kotlin/com/workos/models/OrganizationCreatedDataDomain.kt",
"src/main/kotlin/com/workos/models/OrganizationDeleted.kt",
"src/main/kotlin/com/workos/models/OrganizationDeletedData.kt",
"src/main/kotlin/com/workos/models/OrganizationDeletedDataDomain.kt",
"src/main/kotlin/com/workos/models/OrganizationDomain.kt",
"src/main/kotlin/com/workos/models/OrganizationDomainCreated.kt",
"src/main/kotlin/com/workos/models/OrganizationDomainCreatedData.kt",
"src/main/kotlin/com/workos/models/OrganizationDomainData.kt",
"src/main/kotlin/com/workos/models/OrganizationDomainDeleted.kt",
"src/main/kotlin/com/workos/models/OrganizationDomainDeletedData.kt",
"src/main/kotlin/com/workos/models/OrganizationDomainUpdated.kt",
"src/main/kotlin/com/workos/models/OrganizationDomainUpdatedData.kt",
"src/main/kotlin/com/workos/models/OrganizationDomainVerificationFailed.kt",
"src/main/kotlin/com/workos/models/OrganizationDomainVerificationFailedData.kt",
"src/main/kotlin/com/workos/models/OrganizationDomainVerificationFailedDataOrganizationDomain.kt",
"src/main/kotlin/com/workos/models/OrganizationDomainVerified.kt",
"src/main/kotlin/com/workos/models/OrganizationDomainVerifiedData.kt",
"src/main/kotlin/com/workos/models/OrganizationInput.kt",
"src/main/kotlin/com/workos/models/OrganizationMembership.kt",
"src/main/kotlin/com/workos/models/OrganizationMembershipCreated.kt",
"src/main/kotlin/com/workos/models/OrganizationMembershipCreatedData.kt",
"src/main/kotlin/com/workos/models/OrganizationMembershipDeleted.kt",
"src/main/kotlin/com/workos/models/OrganizationMembershipDeletedData.kt",
"src/main/kotlin/com/workos/models/OrganizationMembershipUpdated.kt",
"src/main/kotlin/com/workos/models/OrganizationMembershipUpdatedData.kt",
"src/main/kotlin/com/workos/models/OrganizationRoleCreated.kt",
"src/main/kotlin/com/workos/models/OrganizationRoleCreatedData.kt",
"src/main/kotlin/com/workos/models/OrganizationRoleDeleted.kt",
"src/main/kotlin/com/workos/models/OrganizationRoleDeletedData.kt",
"src/main/kotlin/com/workos/models/OrganizationRoleUpdated.kt",
"src/main/kotlin/com/workos/models/OrganizationRoleUpdatedData.kt",
"src/main/kotlin/com/workos/models/OrganizationSelectionSessionAuthenticateRequest.kt",
"src/main/kotlin/com/workos/models/OrganizationUpdated.kt",
"src/main/kotlin/com/workos/models/OrganizationUpdatedData.kt",
"src/main/kotlin/com/workos/models/OrganizationUpdatedDataDomain.kt",
"src/main/kotlin/com/workos/models/PasswordReset.kt",
"src/main/kotlin/com/workos/models/PasswordResetCreated.kt",
"src/main/kotlin/com/workos/models/PasswordResetCreatedData.kt",
"src/main/kotlin/com/workos/models/PasswordResetSucceeded.kt",
"src/main/kotlin/com/workos/models/PasswordResetSucceededData.kt",
"src/main/kotlin/com/workos/models/PasswordSessionAuthenticateRequest.kt",
"src/main/kotlin/com/workos/models/Permission.kt",
"src/main/kotlin/com/workos/models/PermissionCreated.kt",
"src/main/kotlin/com/workos/models/PermissionCreatedData.kt",
"src/main/kotlin/com/workos/models/PermissionDeleted.kt",
"src/main/kotlin/com/workos/models/PermissionDeletedData.kt",
"src/main/kotlin/com/workos/models/PermissionUpdated.kt",
"src/main/kotlin/com/workos/models/PermissionUpdatedData.kt",
"src/main/kotlin/com/workos/models/PipeConnectedAccount.kt",
"src/main/kotlin/com/workos/models/PipesConnectedAccountConnected.kt",
"src/main/kotlin/com/workos/models/PipesConnectedAccountConnectionFailed.kt",
"src/main/kotlin/com/workos/models/PipesConnectedAccountConnectionFailedData.kt",
"src/main/kotlin/com/workos/models/PipesConnectedAccountDisconnected.kt",
"src/main/kotlin/com/workos/models/PipesConnectedAccountReauthorizationNeeded.kt",
"src/main/kotlin/com/workos/models/PortalLinkResponse.kt",
"src/main/kotlin/com/workos/models/Profile.kt",
"src/main/kotlin/com/workos/models/RadarChallenge.kt",
"src/main/kotlin/com/workos/models/RadarChallengeCreated.kt",
"src/main/kotlin/com/workos/models/RadarChallengeCreatedData.kt",
"src/main/kotlin/com/workos/models/RadarEmailChallengeCodeSessionAuthenticateRequest.kt",
"src/main/kotlin/com/workos/models/RadarListEntryAlreadyPresentResponse.kt",
"src/main/kotlin/com/workos/models/RadarSmsChallengeCodeSessionAuthenticateRequest.kt",
"src/main/kotlin/com/workos/models/RadarStandaloneAssessRequest.kt",
"src/main/kotlin/com/workos/models/RadarStandaloneDeleteRadarListEntryRequest.kt",
"src/main/kotlin/com/workos/models/RadarStandaloneResponse.kt",
"src/main/kotlin/com/workos/models/RadarStandaloneUpdateRadarAttemptRequest.kt",
"src/main/kotlin/com/workos/models/RadarStandaloneUpdateRadarListRequest.kt",
"src/main/kotlin/com/workos/models/RedirectUri.kt",
"src/main/kotlin/com/workos/models/RedirectUriInput.kt",
"src/main/kotlin/com/workos/models/RefreshTokenSessionAuthenticateRequest.kt",
"src/main/kotlin/com/workos/models/RekeyRequest.kt",
"src/main/kotlin/com/workos/models/RemoveRole.kt",
"src/main/kotlin/com/workos/models/ReplaceGroupRoleAssignmentEntry.kt",
"src/main/kotlin/com/workos/models/ReplaceGroupRoleAssignments.kt",
"src/main/kotlin/com/workos/models/ResendUserInviteOptions.kt",
"src/main/kotlin/com/workos/models/ResetPasswordResponse.kt",
"src/main/kotlin/com/workos/models/RevokeSession.kt",
"src/main/kotlin/com/workos/models/Role.kt",
"src/main/kotlin/com/workos/models/RoleCreated.kt",
"src/main/kotlin/com/workos/models/RoleCreatedData.kt",
"src/main/kotlin/com/workos/models/RoleDeleted.kt",
"src/main/kotlin/com/workos/models/RoleDeletedData.kt",
"src/main/kotlin/com/workos/models/RoleList.kt",
"src/main/kotlin/com/workos/models/RoleUpdated.kt",
"src/main/kotlin/com/workos/models/RoleUpdatedData.kt",
"src/main/kotlin/com/workos/models/SSOAuthorizeUrlResponse.kt",
"src/main/kotlin/com/workos/models/SSODeviceAuthorizationRequest.kt",
"src/main/kotlin/com/workos/models/SSOLogoutAuthorizeRequest.kt",
"src/main/kotlin/com/workos/models/SSOLogoutAuthorizeResponse.kt",
"src/main/kotlin/com/workos/models/SSOTokenResponse.kt",
"src/main/kotlin/com/workos/models/SSOTokenResponseOAuthToken.kt",
"src/main/kotlin/com/workos/models/SendEmailChange.kt",
"src/main/kotlin/com/workos/models/SendRadarSmsChallenge.kt",
"src/main/kotlin/com/workos/models/SendRadarSmsChallengeResponse.kt",
"src/main/kotlin/com/workos/models/SendVerificationEmailResponse.kt",
"src/main/kotlin/com/workos/models/SessionCreated.kt",
"src/main/kotlin/com/workos/models/SessionCreatedData.kt",
"src/main/kotlin/com/workos/models/SessionCreatedDataImpersonator.kt",
"src/main/kotlin/com/workos/models/SessionRevoked.kt",
"src/main/kotlin/com/workos/models/SessionRevokedData.kt",
"src/main/kotlin/com/workos/models/SessionRevokedDataImpersonator.kt",
"src/main/kotlin/com/workos/models/SetRolePermissions.kt",
"src/main/kotlin/com/workos/models/SlimRole.kt",
"src/main/kotlin/com/workos/models/TokenQuery.kt",
"src/main/kotlin/com/workos/models/UpdateAuditLogsRetention.kt",
"src/main/kotlin/com/workos/models/UpdateAuthorizationPermission.kt",
"src/main/kotlin/com/workos/models/UpdateAuthorizationResource.kt",
"src/main/kotlin/com/workos/models/UpdateCustomProviderDefinition.kt",
"src/main/kotlin/com/workos/models/UpdateDataIntegration.kt",
"src/main/kotlin/com/workos/models/UpdateGroup.kt",
"src/main/kotlin/com/workos/models/UpdateJWTTemplate.kt",
"src/main/kotlin/com/workos/models/UpdateOAuthApplication.kt",
"src/main/kotlin/com/workos/models/UpdateObjectRequest.kt",
"src/main/kotlin/com/workos/models/UpdateOrganization.kt",
"src/main/kotlin/com/workos/models/UpdateOrganizationRole.kt",
"src/main/kotlin/com/workos/models/UpdateRole.kt",
"src/main/kotlin/com/workos/models/UpdateUser.kt",
"src/main/kotlin/com/workos/models/UpdateUserOrganizationMembership.kt",
"src/main/kotlin/com/workos/models/UpdateWebhookEndpoint.kt",
"src/main/kotlin/com/workos/models/User.kt",
"src/main/kotlin/com/workos/models/UserApiKey.kt",
"src/main/kotlin/com/workos/models/UserApiKeyCreatedDataOwner.kt",
"src/main/kotlin/com/workos/models/UserApiKeyOwner.kt",
"src/main/kotlin/com/workos/models/UserApiKeyRevokedDataOwner.kt",
"src/main/kotlin/com/workos/models/UserApiKeyUpdatedDataOwner.kt",
"src/main/kotlin/com/workos/models/UserApiKeyWithValue.kt",
"src/main/kotlin/com/workos/models/UserApiKeyWithValueOwner.kt",
"src/main/kotlin/com/workos/models/UserAuthenticationFactorEnrollResponse.kt",
"src/main/kotlin/com/workos/models/UserConsentOption.kt",
"src/main/kotlin/com/workos/models/UserConsentOptionChoice.kt",
"src/main/kotlin/com/workos/models/UserCreateResponse.kt",
"src/main/kotlin/com/workos/models/UserCreated.kt",
"src/main/kotlin/com/workos/models/UserDeleted.kt",
"src/main/kotlin/com/workos/models/UserIdentitiesGetItem.kt",
"src/main/kotlin/com/workos/models/UserInvite.kt",
"src/main/kotlin/com/workos/models/UserManagementLoginRequest.kt",
"src/main/kotlin/com/workos/models/UserObject.kt",
"src/main/kotlin/com/workos/models/UserOrganizationMembership.kt",
"src/main/kotlin/com/workos/models/UserOrganizationMembershipBaseListData.kt",
"src/main/kotlin/com/workos/models/UserRoleAssignment.kt",
"src/main/kotlin/com/workos/models/UserRoleAssignmentResource.kt",
"src/main/kotlin/com/workos/models/UserRoleAssignmentSource.kt",
"src/main/kotlin/com/workos/models/UserSessionsImpersonator.kt",
"src/main/kotlin/com/workos/models/UserSessionsListItem.kt",
"src/main/kotlin/com/workos/models/UserUpdated.kt",
"src/main/kotlin/com/workos/models/ValidateApiKey.kt",
"src/main/kotlin/com/workos/models/VaultByokKeyDeleted.kt",
"src/main/kotlin/com/workos/models/VaultByokKeyDeletedData.kt",
"src/main/kotlin/com/workos/models/VaultByokKeyVerificationCompleted.kt",
"src/main/kotlin/com/workos/models/VaultByokKeyVerificationCompletedData.kt",
"src/main/kotlin/com/workos/models/VaultDataCreated.kt",
"src/main/kotlin/com/workos/models/VaultDataCreatedData.kt",
"src/main/kotlin/com/workos/models/VaultDataDeleted.kt",
"src/main/kotlin/com/workos/models/VaultDataDeletedData.kt",
"src/main/kotlin/com/workos/models/VaultDataRead.kt",
"src/main/kotlin/com/workos/models/VaultDataReadData.kt",
"src/main/kotlin/com/workos/models/VaultDataUpdated.kt",
"src/main/kotlin/com/workos/models/VaultDataUpdatedData.kt",
"src/main/kotlin/com/workos/models/VaultDekDecrypted.kt",
"src/main/kotlin/com/workos/models/VaultDekDecryptedData.kt",
"src/main/kotlin/com/workos/models/VaultDekRead.kt",
"src/main/kotlin/com/workos/models/VaultDekReadData.kt",
"src/main/kotlin/com/workos/models/VaultKekCreated.kt",
"src/main/kotlin/com/workos/models/VaultKekCreatedData.kt",
"src/main/kotlin/com/workos/models/VaultKekDeleted.kt",
"src/main/kotlin/com/workos/models/VaultKekDeletedData.kt",
"src/main/kotlin/com/workos/models/VaultMetadataRead.kt",
"src/main/kotlin/com/workos/models/VaultMetadataReadData.kt",
"src/main/kotlin/com/workos/models/VaultNamesListed.kt",
"src/main/kotlin/com/workos/models/VaultNamesListedData.kt",
"src/main/kotlin/com/workos/models/VaultObject.kt",
"src/main/kotlin/com/workos/models/VerifyEmailAddress.kt",
"src/main/kotlin/com/workos/models/VerifyEmailResponse.kt",
"src/main/kotlin/com/workos/models/VersionListResponse.kt",
"src/main/kotlin/com/workos/models/WaitlistUser.kt",
"src/main/kotlin/com/workos/models/WaitlistUserApproved.kt",
"src/main/kotlin/com/workos/models/WaitlistUserCreated.kt",
"src/main/kotlin/com/workos/models/WaitlistUserDenied.kt",
"src/main/kotlin/com/workos/models/WebhookEndpoint.kt",
"src/main/kotlin/com/workos/models/WidgetSessionToken.kt",
"src/main/kotlin/com/workos/models/WidgetSessionTokenResponse.kt",
"src/main/kotlin/com/workos/models/WorkOSEvent.kt",
"src/main/kotlin/com/workos/multifactorauth/MultiFactorAuth.kt",
"src/main/kotlin/com/workos/organizationdomains/OrganizationDomains.kt",
"src/main/kotlin/com/workos/organizationmembership/OrganizationMembershipService.kt",
"src/main/kotlin/com/workos/organizations/Organizations.kt",
"src/main/kotlin/com/workos/pipes/Pipes.kt",
"src/main/kotlin/com/workos/pipesprovider/PipesProvider.kt",
"src/main/kotlin/com/workos/radar/Radar.kt",
"src/main/kotlin/com/workos/sso/SSO.kt",
"src/main/kotlin/com/workos/types/AgentAdminValidateCredentialRequestType.kt",
"src/main/kotlin/com/workos/types/AgentRegistrationCreatedDataKind.kt",
"src/main/kotlin/com/workos/types/AgentRegistrationCreatedDataMethod.kt",
"src/main/kotlin/com/workos/types/AgentRegistrationCreatedDataStatus.kt",
"src/main/kotlin/com/workos/types/AgentRegistrationKind.kt",
"src/main/kotlin/com/workos/types/AgentRegistrationStatus.kt",
"src/main/kotlin/com/workos/types/ApplicationsRegistrationTypes.kt",
"src/main/kotlin/com/workos/types/AuditLogConfigurationLogStreamState.kt",
"src/main/kotlin/com/workos/types/AuditLogConfigurationLogStreamType.kt",
"src/main/kotlin/com/workos/types/AuditLogConfigurationState.kt",
"src/main/kotlin/com/workos/types/AuditLogExportState.kt",
"src/main/kotlin/com/workos/types/AuthenticateResponseAuthenticationMethod.kt",
"src/main/kotlin/com/workos/types/AuthenticationFactorEnrolledType.kt",
"src/main/kotlin/com/workos/types/AuthenticationFactorType.kt",
"src/main/kotlin/com/workos/types/AuthenticationFactorsCreateRequestType.kt",
"src/main/kotlin/com/workos/types/AuthenticationRadarRiskDetectedDataAction.kt",
"src/main/kotlin/com/workos/types/AuthorizationAssignment.kt",
"src/main/kotlin/com/workos/types/ClaimViewResponseStatus.kt",
"src/main/kotlin/com/workos/types/ConnectedAccountAuthMethod.kt",
"src/main/kotlin/com/workos/types/ConnectedAccountInputState.kt",
"src/main/kotlin/com/workos/types/ConnectedAccountState.kt",
"src/main/kotlin/com/workos/types/ConnectionActivatedDataConnectionType.kt",
"src/main/kotlin/com/workos/types/ConnectionActivatedDataState.kt",
"src/main/kotlin/com/workos/types/ConnectionActivatedDataStatus.kt",
"src/main/kotlin/com/workos/types/ConnectionDeactivatedDataConnectionType.kt",
"src/main/kotlin/com/workos/types/ConnectionDeactivatedDataState.kt",
"src/main/kotlin/com/workos/types/ConnectionDeactivatedDataStatus.kt",
"src/main/kotlin/com/workos/types/ConnectionDeletedDataConnectionType.kt",
"src/main/kotlin/com/workos/types/ConnectionDeletedDataState.kt",
"src/main/kotlin/com/workos/types/ConnectionSAMLCertificateRenewalRequiredDataCertificateCertificateType.kt",
"src/main/kotlin/com/workos/types/ConnectionSAMLCertificateRenewedDataCertificateCertificateType.kt",
"src/main/kotlin/com/workos/types/ConnectionState.kt",
"src/main/kotlin/com/workos/types/ConnectionStatus.kt",
"src/main/kotlin/com/workos/types/ConnectionType.kt",
"src/main/kotlin/com/workos/types/ConnectionsConnectionType.kt",
"src/main/kotlin/com/workos/types/CreateDataIntegrationAuthMethods.kt",
"src/main/kotlin/com/workos/types/CreateUserInviteOptionsLocale.kt",
"src/main/kotlin/com/workos/types/CreateUserPasswordHashType.kt",
"src/main/kotlin/com/workos/types/CreateUserPasswordSaltPosition.kt",
"src/main/kotlin/com/workos/types/CreateWebhookEndpointEvents.kt",
"src/main/kotlin/com/workos/types/CustomProviderDefinitionAuthenticateVia.kt",
"src/main/kotlin/com/workos/types/DataIntegrationAccessTokenResponseError.kt",
"src/main/kotlin/com/workos/types/DataIntegrationAuthMethods.kt",
"src/main/kotlin/com/workos/types/DataIntegrationCredentialType.kt",
"src/main/kotlin/com/workos/types/DataIntegrationCredentialsCredentialsType.kt",
"src/main/kotlin/com/workos/types/DataIntegrationCredentialsInputType.kt",
"src/main/kotlin/com/workos/types/DataIntegrationCredentialsResponseError.kt",
"src/main/kotlin/com/workos/types/DataIntegrationCustomProviderAuthenticateVia.kt",
"src/main/kotlin/com/workos/types/DataIntegrationState.kt",
"src/main/kotlin/com/workos/types/DataIntegrationsListResponseDataAuthMethods.kt",
"src/main/kotlin/com/workos/types/DataIntegrationsListResponseDataConnectedAccountAuthMethod.kt",
"src/main/kotlin/com/workos/types/DataIntegrationsListResponseDataConnectedAccountState.kt",
"src/main/kotlin/com/workos/types/DataIntegrationsListResponseDataOwnership.kt",
"src/main/kotlin/com/workos/types/DirectoryState.kt",
"src/main/kotlin/com/workos/types/DirectoryType.kt",
"src/main/kotlin/com/workos/types/DirectoryUserState.kt",
"src/main/kotlin/com/workos/types/DirectoryUserWithGroupsState.kt",
"src/main/kotlin/com/workos/types/DsyncActivatedDataState.kt",
"src/main/kotlin/com/workos/types/DsyncActivatedDataType.kt",
"src/main/kotlin/com/workos/types/DsyncDeletedDataState.kt",
"src/main/kotlin/com/workos/types/DsyncDeletedDataType.kt",
"src/main/kotlin/com/workos/types/DsyncUserUpdatedDataState.kt",
"src/main/kotlin/com/workos/types/EventContextActorSource.kt",
"src/main/kotlin/com/workos/types/FlagCreatedContextActorSource.kt",
"src/main/kotlin/com/workos/types/FlagDeletedContextActorSource.kt",
"src/main/kotlin/com/workos/types/FlagRuleUpdatedContextAccessType.kt",
"src/main/kotlin/com/workos/types/FlagRuleUpdatedContextActorSource.kt",
"src/main/kotlin/com/workos/types/FlagRuleUpdatedContextPreviousAttributeContextAccessType.kt",
"src/main/kotlin/com/workos/types/FlagUpdatedContextActorSource.kt",
"src/main/kotlin/com/workos/types/GenerateLinkIntent.kt",
"src/main/kotlin/com/workos/types/InvitationAcceptedDataState.kt",
"src/main/kotlin/com/workos/types/InvitationCreatedDataState.kt",
"src/main/kotlin/com/workos/types/InvitationResentDataState.kt",
"src/main/kotlin/com/workos/types/InvitationRevokedDataState.kt",
"src/main/kotlin/com/workos/types/InvitationState.kt",
"src/main/kotlin/com/workos/types/OrganizationCreatedDataDomainState.kt",
"src/main/kotlin/com/workos/types/OrganizationCreatedDataDomainVerificationStrategy.kt",
"src/main/kotlin/com/workos/types/OrganizationDeletedDataDomainState.kt",
"src/main/kotlin/com/workos/types/OrganizationDeletedDataDomainVerificationStrategy.kt",
"src/main/kotlin/com/workos/types/OrganizationDomainCreatedDataState.kt",
"src/main/kotlin/com/workos/types/OrganizationDomainCreatedDataVerificationStrategy.kt",
"src/main/kotlin/com/workos/types/OrganizationDomainDataState.kt",
"src/main/kotlin/com/workos/types/OrganizationDomainDeletedDataState.kt",
"src/main/kotlin/com/workos/types/OrganizationDomainDeletedDataVerificationStrategy.kt",
"src/main/kotlin/com/workos/types/OrganizationDomainState.kt",
"src/main/kotlin/com/workos/types/OrganizationDomainUpdatedDataState.kt",
"src/main/kotlin/com/workos/types/OrganizationDomainUpdatedDataVerificationStrategy.kt",
"src/main/kotlin/com/workos/types/OrganizationDomainVerificationFailedDataOrganizationDomainState.kt",
"src/main/kotlin/com/workos/types/OrganizationDomainVerificationFailedDataOrganizationDomainVerificationStrategy.kt",
"src/main/kotlin/com/workos/types/OrganizationDomainVerificationFailedDataReason.kt",
"src/main/kotlin/com/workos/types/OrganizationDomainVerificationStrategy.kt",
"src/main/kotlin/com/workos/types/OrganizationDomainVerifiedDataState.kt",
"src/main/kotlin/com/workos/types/OrganizationDomainVerifiedDataVerificationStrategy.kt",
"src/main/kotlin/com/workos/types/OrganizationMembershipCreatedDataStatus.kt",
"src/main/kotlin/com/workos/types/OrganizationMembershipDeletedDataStatus.kt",
"src/main/kotlin/com/workos/types/OrganizationMembershipStatus.kt",
"src/main/kotlin/com/workos/types/OrganizationMembershipUpdatedDataStatus.kt",
"src/main/kotlin/com/workos/types/OrganizationUpdatedDataDomainState.kt",
"src/main/kotlin/com/workos/types/OrganizationUpdatedDataDomainVerificationStrategy.kt",
"src/main/kotlin/com/workos/types/PaginationOrder.kt",
"src/main/kotlin/com/workos/types/PipeConnectedAccountState.kt",
"src/main/kotlin/com/workos/types/ProfileConnectionType.kt",
"src/main/kotlin/com/workos/types/RadarListAction.kt",
"src/main/kotlin/com/workos/types/RadarListType.kt",
"src/main/kotlin/com/workos/types/RadarStandaloneAssessRequestAction.kt",
"src/main/kotlin/com/workos/types/RadarStandaloneAssessRequestAuthMethod.kt",
"src/main/kotlin/com/workos/types/RadarStandaloneResponseBlocklistType.kt",
"src/main/kotlin/com/workos/types/RadarStandaloneResponseControl.kt",
"src/main/kotlin/com/workos/types/RadarStandaloneResponseVerdict.kt",
"src/main/kotlin/com/workos/types/ResendUserInviteOptionsLocale.kt",
"src/main/kotlin/com/workos/types/RoleType.kt",
"src/main/kotlin/com/workos/types/SSOProvider.kt",
"src/main/kotlin/com/workos/types/SessionCreatedDataAuthMethod.kt",
"src/main/kotlin/com/workos/types/SessionCreatedDataStatus.kt",
"src/main/kotlin/com/workos/types/SessionRevokedDataAuthMethod.kt",
"src/main/kotlin/com/workos/types/SessionRevokedDataStatus.kt",
"src/main/kotlin/com/workos/types/SortOrder.kt",
"src/main/kotlin/com/workos/types/UpdateCustomProviderDefinitionAuthenticateVia.kt",
"src/main/kotlin/com/workos/types/UpdateUserPasswordHashType.kt",
"src/main/kotlin/com/workos/types/UpdateUserPasswordSaltPosition.kt",
"src/main/kotlin/com/workos/types/UpdateWebhookEndpointEvents.kt",
"src/main/kotlin/com/workos/types/UpdateWebhookEndpointStatus.kt",
"src/main/kotlin/com/workos/types/UserIdentitiesGetItemProvider.kt",
"src/main/kotlin/com/workos/types/UserInviteState.kt",
"src/main/kotlin/com/workos/types/UserManagementAuthenticationProvider.kt",
"src/main/kotlin/com/workos/types/UserManagementAuthenticationScreenHint.kt",
"src/main/kotlin/com/workos/types/UserManagementOrganizationMembershipStatuses.kt",
"src/main/kotlin/com/workos/types/UserOrganizationMembershipBaseListDataStatus.kt",
"src/main/kotlin/com/workos/types/UserOrganizationMembershipStatus.kt",
"src/main/kotlin/com/workos/types/UserRoleAssignmentSourceType.kt",
"src/main/kotlin/com/workos/types/UserSessionsAuthMethod.kt",
"src/main/kotlin/com/workos/types/UserSessionsStatus.kt",
"src/main/kotlin/com/workos/types/VaultByokKeyProvider.kt",
"src/main/kotlin/com/workos/types/VaultDataCreatedDataActorSource.kt",
"src/main/kotlin/com/workos/types/VaultDataDeletedDataActorSource.kt",
"src/main/kotlin/com/workos/types/VaultDataReadDataActorSource.kt",
"src/main/kotlin/com/workos/types/VaultDataUpdatedDataActorSource.kt",
"src/main/kotlin/com/workos/types/VaultDekDecryptedDataActorSource.kt",
"src/main/kotlin/com/workos/types/VaultDekReadDataActorSource.kt",
"src/main/kotlin/com/workos/types/VaultKekCreatedDataActorSource.kt",
"src/main/kotlin/com/workos/types/VaultKekDeletedDataActorSource.kt",
"src/main/kotlin/com/workos/types/VaultMetadataReadDataActorSource.kt",
"src/main/kotlin/com/workos/types/VaultNamesListedDataActorSource.kt",
"src/main/kotlin/com/workos/types/WaitlistUserState.kt",
"src/main/kotlin/com/workos/types/WebhookEndpointStatus.kt",
"src/main/kotlin/com/workos/types/WidgetSessionTokenScopes.kt",
"src/main/kotlin/com/workos/usermanagement/UserManagement.kt",
"src/main/kotlin/com/workos/vault/Vault.kt",
"src/main/kotlin/com/workos/webhooks/Webhooks.kt",
"src/main/kotlin/com/workos/widgets/Widgets.kt",
"src/test/kotlin/com/workos/adminportal/AdminPortalTest.kt",
"src/test/kotlin/com/workos/agents/AgentsTest.kt",
"src/test/kotlin/com/workos/apikeys/ApiKeysTest.kt",
"src/test/kotlin/com/workos/auditlogs/AuditLogsTest.kt",
"src/test/kotlin/com/workos/authorization/AuthorizationTest.kt",
"src/test/kotlin/com/workos/clientapi/ClientApiTest.kt",
"src/test/kotlin/com/workos/connect/ConnectTest.kt",
"src/test/kotlin/com/workos/directorysync/DirectorySyncTest.kt",
"src/test/kotlin/com/workos/events/EventsTest.kt",
"src/test/kotlin/com/workos/featureflags/FeatureFlagsTest.kt",
"src/test/kotlin/com/workos/groups/GroupsTest.kt",
"src/test/kotlin/com/workos/models/GeneratedForwardCompatTest.kt",
"src/test/kotlin/com/workos/models/GeneratedModelRoundTripTest.kt",
"src/test/kotlin/com/workos/multifactorauth/MultiFactorAuthTest.kt",
"src/test/kotlin/com/workos/organizationdomains/OrganizationDomainsTest.kt",
"src/test/kotlin/com/workos/organizationmembership/OrganizationMembershipServiceTest.kt",
"src/test/kotlin/com/workos/organizations/OrganizationsTest.kt",
"src/test/kotlin/com/workos/pipes/PipesTest.kt",
"src/test/kotlin/com/workos/pipesprovider/PipesProviderTest.kt",
"src/test/kotlin/com/workos/radar/RadarTest.kt",
"src/test/kotlin/com/workos/sso/SSOTest.kt",
"src/test/kotlin/com/workos/usermanagement/UserManagementTest.kt",
"src/test/kotlin/com/workos/vault/VaultTest.kt",
"src/test/kotlin/com/workos/webhooks/WebhooksTest.kt",
"src/test/kotlin/com/workos/widgets/WidgetsTest.kt"
],
"operations": {
"PATCH /agents/claims/attempts": {
"sdkMethod": "updateAttempts",
"service": "agents"
},
"POST /agents/credentials/validate": {
"sdkMethod": "createValidate",
"service": "agents"
},
"GET /agents/registrations/{id}": {
"sdkMethod": "getRegistration",
"service": "agents"
},
"POST /auth/challenges/{id}/verify": {
"sdkMethod": "verifyChallenge",
"service": "multiFactorAuth"
},
"POST /auth/factors/enroll": {
"sdkMethod": "enrollFactor",
"service": "multiFactorAuth"
},
"GET /auth/factors/{id}": {
"sdkMethod": "getFactor",
"service": "multiFactorAuth"
},
"DELETE /auth/factors/{id}": {
"sdkMethod": "deleteFactor",
"service": "multiFactorAuth"
},
"POST /auth/factors/{id}/challenge": {
"sdkMethod": "challengeFactor",
"service": "multiFactorAuth"
},
"POST /authkit/oauth2/complete": {
"sdkMethod": "completeOAuth2",
"service": "connect"
},
"GET /authorization/groups/{group_id}/role_assignments": {
"sdkMethod": "listGroupRoleAssignments",
"service": "authorization"
},
"POST /authorization/groups/{group_id}/role_assignments": {
"sdkMethod": "createGroupRoleAssignment",
"service": "authorization"
},
"PUT /authorization/groups/{group_id}/role_assignments": {
"sdkMethod": "updateGroupRoleAssignments",
"service": "authorization"
},
"DELETE /authorization/groups/{group_id}/role_assignments": {
"sdkMethod": "deleteGroupRoleAssignments",
"service": "authorization"
},
"GET /authorization/groups/{group_id}/role_assignments/{role_assignment_id}": {
"sdkMethod": "getGroupRoleAssignment",
"service": "authorization"
},
"DELETE /authorization/groups/{group_id}/role_assignments/{role_assignment_id}": {
"sdkMethod": "deleteGroupRoleAssignment",
"service": "authorization"
},
"POST /authorization/organization_memberships/{organization_membership_id}/check": {
"sdkMethod": "check",
"service": "authorization"
},
"GET /authorization/organization_memberships/{organization_membership_id}/resources": {
"sdkMethod": "listResourcesForMembership",
"service": "authorization"
},
"GET /authorization/organization_memberships/{organization_membership_id}/resources/{resource_id}/permissions": {
"sdkMethod": "listEffectivePermissions",
"service": "authorization"
},
"GET /authorization/organization_memberships/{organization_membership_id}/resources/{resource_type_slug}/{external_id}/permissions": {
"sdkMethod": "listEffectivePermissionsByExternalId",
"service": "authorization"
},
"GET /authorization/organization_memberships/{organization_membership_id}/role_assignments": {
"sdkMethod": "listRoleAssignments",
"service": "authorization"
},
"POST /authorization/organization_memberships/{organization_membership_id}/role_assignments": {
"sdkMethod": "assignRole",
"service": "authorization"
},
"DELETE /authorization/organization_memberships/{organization_membership_id}/role_assignments": {
"sdkMethod": "removeRole",
"service": "authorization"
},
"DELETE /authorization/organization_memberships/{organization_membership_id}/role_assignments/{role_assignment_id}": {
"sdkMethod": "removeRoleAssignment",
"service": "authorization"
},
"GET /authorization/organizations/{organizationId}/roles": {
"sdkMethod": "listOrganizationRoles",
"service": "authorization"
},
"POST /authorization/organizations/{organizationId}/roles": {
"sdkMethod": "createOrganizationRole",
"service": "authorization"
},
"GET /authorization/organizations/{organizationId}/roles/{slug}": {
"sdkMethod": "getOrganizationRole",
"service": "authorization"
},
"PATCH /authorization/organizations/{organizationId}/roles/{slug}": {
"sdkMethod": "updateOrganizationRole",
"service": "authorization"
},
"DELETE /authorization/organizations/{organizationId}/roles/{slug}": {
"sdkMethod": "deleteOrganizationRole",
"service": "authorization"
},
"POST /authorization/organizations/{organizationId}/roles/{slug}/permissions": {
"sdkMethod": "addOrganizationRolePermission",
"service": "authorization"
},
"PUT /authorization/organizations/{organizationId}/roles/{slug}/permissions": {
"sdkMethod": "setOrganizationRolePermissions",
"service": "authorization"
},
"DELETE /authorization/organizations/{organizationId}/roles/{slug}/permissions/{permissionSlug}": {
"sdkMethod": "removeOrganizationRolePermission",
"service": "authorization"
},
"GET /authorization/organizations/{organization_id}/resources/{resource_type_slug}/{external_id}": {
"sdkMethod": "getResourceByExternalId",
"service": "authorization"
},
"PATCH /authorization/organizations/{organization_id}/resources/{resource_type_slug}/{external_id}": {
"sdkMethod": "updateResourceByExternalId",
"service": "authorization"
},
"DELETE /authorization/organizations/{organization_id}/resources/{resource_type_slug}/{external_id}": {
"sdkMethod": "deleteResourceByExternalId",
"service": "authorization"
},
"GET /authorization/organizations/{organization_id}/resources/{resource_type_slug}/{external_id}/organization_memberships": {
"sdkMethod": "listMembershipsForResourceByExternalId",
"service": "authorization"
},
"GET /authorization/organizations/{organization_id}/resources/{resource_type_slug}/{external_id}/role_assignments": {
"sdkMethod": "listRoleAssignmentsForResourceByExternalId",
"service": "authorization"
},
"GET /authorization/resources": {
"sdkMethod": "listResources",
"service": "authorization"
},
"POST /authorization/resources": {
"sdkMethod": "createResource",
"service": "authorization"
},
"GET /authorization/resources/{resource_id}": {
"sdkMethod": "getResource",
"service": "authorization"
},
"PATCH /authorization/resources/{resource_id}": {
"sdkMethod": "updateResource",
"service": "authorization"
},
"DELETE /authorization/resources/{resource_id}": {
"sdkMethod": "deleteResource",
"service": "authorization"
},
"GET /authorization/resources/{resource_id}/organization_memberships": {
"sdkMethod": "listMembershipsForResource",
"service": "authorization"
},
"GET /authorization/resources/{resource_id}/role_assignments": {
"sdkMethod": "listRoleAssignmentsForResource",
"service": "authorization"
},
"GET /authorization/roles": {
"sdkMethod": "listEnvironmentRoles",
"service": "authorization"
},
"POST /authorization/roles": {
"sdkMethod": "createEnvironmentRole",
"service": "authorization"
},
"GET /authorization/roles/{slug}": {
"sdkMethod": "getEnvironmentRole",
"service": "authorization"
},
"PATCH /authorization/roles/{slug}": {
"sdkMethod": "updateEnvironmentRole",
"service": "authorization"
},
"POST /authorization/roles/{slug}/permissions": {
"sdkMethod": "addEnvironmentRolePermission",
"service": "authorization"
},
"PUT /authorization/roles/{slug}/permissions": {
"sdkMethod": "setEnvironmentRolePermissions",
"service": "authorization"
},
"GET /authorization/permissions": {
"sdkMethod": "listPermissions",
"service": "authorization"
},
"POST /authorization/permissions": {
"sdkMethod": "createPermission",
"service": "authorization"
},
"GET /authorization/permissions/{slug}": {
"sdkMethod": "getPermission",
"service": "authorization"
},
"PATCH /authorization/permissions/{slug}": {
"sdkMethod": "updatePermission",
"service": "authorization"
},
"DELETE /authorization/permissions/{slug}": {
"sdkMethod": "deletePermission",
"service": "authorization"
},
"POST /client/token": {
"sdkMethod": "createToken",
"service": "clientApi"
},
"GET /connect/applications": {
"sdkMethod": "listApplications",
"service": "connect"
},
"POST /connect/applications": [
{
"sdkMethod": "createOAuthApplication",
"service": "connect"
},
{
"sdkMethod": "createM2MApplication",
"service": "connect"
}
],
"GET /connect/applications/{id}": {
"sdkMethod": "getApplication",
"service": "connect"
},
"PUT /connect/applications/{id}": {
"sdkMethod": "updateApplication",
"service": "connect"
},
"DELETE /connect/applications/{id}": {
"sdkMethod": "deleteApplication",
"service": "connect"
},
"GET /connect/applications/{id}/client_secrets": {
"sdkMethod": "listApplicationClientSecrets",
"service": "connect"
},
"POST /connect/applications/{id}/client_secrets": {
"sdkMethod": "createApplicationClientSecret",
"service": "connect"
},
"DELETE /connect/client_secrets/{id}": {
"sdkMethod": "deleteClientSecret",
"service": "connect"
},
"GET /connections": {
"sdkMethod": "listConnections",
"service": "sso"
},
"GET /connections/{id}": {
"sdkMethod": "getConnection",
"service": "sso"
},
"DELETE /connections/{id}": {