@adminide-stack/core 3.1.2-alpha.8 → 3.1.2-alpha.80
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/lib/enums/integrations.d.ts +2 -1
- package/lib/enums/integrations.js +1 -0
- package/lib/enums/integrations.js.map +1 -1
- package/lib/errors/auth-error-messages.js +1 -1
- package/lib/interfaces/generated/generated-models.d.ts +519 -246
- package/lib/interfaces/generated/generated-models.js +108 -55
- package/lib/interfaces/generated/generated-models.js.map +1 -1
- package/package.json +2 -2
@@ -97,62 +97,38 @@ export declare type IAccessToken_Input = {
|
|
97
97
|
lastUsedAt?: Maybe<Scalars['DateTime']>;
|
98
98
|
orgName: Scalars['String'];
|
99
99
|
};
|
100
|
-
export declare enum
|
100
|
+
export declare enum IAccountServiceAction {
|
101
101
|
OnAccountCreated = "onAccountCreated",
|
102
|
+
OnAccountDeleted = "onAccountDeleted",
|
102
103
|
OnAccountUpdated = "onAccountUpdated",
|
103
104
|
OnEmailVerified = "onEmailVerified",
|
104
|
-
OnAccountDeleted = "onAccountDeleted",
|
105
105
|
OnPasswordReset = "onPasswordReset",
|
106
|
-
OnPictureChanged = "onPictureChanged"
|
107
|
-
}
|
108
|
-
export declare type IAccountService = {
|
109
|
-
__typename?: 'AccountService';
|
110
|
-
createDefaultAccount?: Maybe<IUserAccount>;
|
111
|
-
createAccount?: Maybe<IUserAccount>;
|
112
|
-
findAccountById?: Maybe<IUserAccount>;
|
113
|
-
findAccountByUser?: Maybe<IUserAccount>;
|
114
|
-
updateAccount?: Maybe<IUserAccount>;
|
115
|
-
deleteAccount?: Maybe<Scalars['Boolean']>;
|
116
|
-
dispatchUserVerificationEmail?: Maybe<Scalars['AnyObject']>;
|
117
|
-
verifyUserEmailVerificationToken?: Maybe<Scalars['Boolean']>;
|
118
|
-
};
|
119
|
-
export declare type IAccountServiceCreateDefaultAccountArgs = {
|
120
|
-
user?: Maybe<Scalars['AnyObject']>;
|
121
|
-
optional?: Maybe<Scalars['AnyObject']>;
|
122
|
-
};
|
123
|
-
export declare type IAccountServiceCreateAccountArgs = {
|
124
|
-
account?: Maybe<IUserAccountCreateRequest>;
|
125
|
-
};
|
126
|
-
export declare type IAccountServiceFindAccountByIdArgs = {
|
127
|
-
id?: Maybe<Scalars['String']>;
|
128
|
-
};
|
129
|
-
export declare type IAccountServiceFindAccountByUserArgs = {
|
130
|
-
id?: Maybe<Scalars['String']>;
|
131
|
-
};
|
132
|
-
export declare type IAccountServiceUpdateAccountArgs = {
|
133
|
-
account?: Maybe<IUserAccountUpdateRequest>;
|
134
|
-
};
|
135
|
-
export declare type IAccountServiceDeleteAccountArgs = {
|
136
|
-
account?: Maybe<IUserAccountRemoveRequest>;
|
137
|
-
};
|
138
|
-
export declare type IAccountServiceDispatchUserVerificationEmailArgs = {
|
139
|
-
token?: Maybe<IUserTokenInput>;
|
140
|
-
};
|
141
|
-
export declare type IAccountServiceVerifyUserEmailVerificationTokenArgs = {
|
142
|
-
userId?: Maybe<Scalars['String']>;
|
143
|
-
token?: Maybe<Scalars['String']>;
|
144
|
-
};
|
145
|
-
export declare enum IAccountServiceAction {
|
106
|
+
OnPictureChanged = "onPictureChanged",
|
146
107
|
CreateDefaultAccount = "createDefaultAccount",
|
108
|
+
UpdateUserAccount = "updateUserAccount",
|
147
109
|
CreateAccount = "createAccount",
|
148
110
|
FindAccountById = "findAccountById",
|
149
111
|
FindAccountByUser = "findAccountByUser",
|
150
112
|
FindAccountByEmail = "findAccountByEmail",
|
113
|
+
GetUsers = "getUsers",
|
151
114
|
UpdateAccount = "updateAccount",
|
152
115
|
DeleteAccount = "deleteAccount",
|
153
|
-
|
154
|
-
|
155
|
-
|
116
|
+
AccountOnBoarding = "accountOnBoarding",
|
117
|
+
VerifyUserEmailVerificationToken = "verifyUserEmailVerificationToken",
|
118
|
+
DeleteUserAccount = "deleteUserAccount",
|
119
|
+
ResendUserEmailVerificationEmail = "resendUserEmailVerificationEmail",
|
120
|
+
DispatchUserVerificationEmail = "dispatchUserVerificationEmail",
|
121
|
+
DispatchUserPasswordResetEmail = "dispatchUserPasswordResetEmail",
|
122
|
+
GetUserTokenDetails = "getUserTokenDetails",
|
123
|
+
AddUserToken = "addUserToken",
|
124
|
+
RemoveUserToken = "removeUserToken",
|
125
|
+
GetAllUserTokens = "getAllUserTokens",
|
126
|
+
GetUserTokens = "getUserTokens",
|
127
|
+
InitiatePasswordResetProcess = "initiatePasswordResetProcess",
|
128
|
+
ResetUserPassword = "resetUserPassword",
|
129
|
+
SendEmailVerificationCode = "sendEmailVerificationCode",
|
130
|
+
ValidateEmailVerificationCode = "validateEmailVerificationCode",
|
131
|
+
GetUserAccountByEmail = "getUserAccountByEmail"
|
156
132
|
}
|
157
133
|
/**
|
158
134
|
* Teams are groups of organization members that reflect yoru company or group's structure
|
@@ -357,6 +333,234 @@ export declare type IAuthUserInput = {
|
|
357
333
|
picture?: Maybe<Scalars['String']>;
|
358
334
|
phoneNo?: Maybe<Scalars['Int']>;
|
359
335
|
};
|
336
|
+
/** Base Account Service */
|
337
|
+
export declare type IBaseAccountService = {
|
338
|
+
__typename?: 'BaseAccountService';
|
339
|
+
createDefaultAccount?: Maybe<IUserAccount>;
|
340
|
+
createAccount?: Maybe<IUserAccount>;
|
341
|
+
updateUserAccount?: Maybe<IUserAccount>;
|
342
|
+
findAccountById?: Maybe<IUserAccount>;
|
343
|
+
findAccountByUser?: Maybe<IUserAccount>;
|
344
|
+
findAccountByEmail?: Maybe<IUserAccount>;
|
345
|
+
getUsers?: Maybe<Array<Maybe<IUserAccount>>>;
|
346
|
+
updateAccount?: Maybe<IUserAccount>;
|
347
|
+
deleteAccount?: Maybe<Scalars['Boolean']>;
|
348
|
+
accountOnBoarding?: Maybe<Scalars['Boolean']>;
|
349
|
+
verifyUserEmailVerificationToken?: Maybe<Scalars['Boolean']>;
|
350
|
+
deleteUserAccount?: Maybe<Scalars['Boolean']>;
|
351
|
+
resendUserEmailVerificationEmail?: Maybe<Scalars['Boolean']>;
|
352
|
+
dispatchUserVerificationEmail?: Maybe<Scalars['AnyObject']>;
|
353
|
+
dispatchUserPasswordResetEmail?: Maybe<Scalars['AnyObject']>;
|
354
|
+
getUserTokenDetails?: Maybe<IUserToken>;
|
355
|
+
addUserToken?: Maybe<Scalars['Boolean']>;
|
356
|
+
removeUserToken?: Maybe<Scalars['Boolean']>;
|
357
|
+
getAllUserTokens?: Maybe<Array<Maybe<IUsersToken>>>;
|
358
|
+
initiatePasswordResetProcess?: Maybe<Scalars['Boolean']>;
|
359
|
+
resetUserPassword?: Maybe<Scalars['Boolean']>;
|
360
|
+
validateUserEmailVerificationToken?: Maybe<Scalars['Boolean']>;
|
361
|
+
sendEmailVerificationToken?: Maybe<Scalars['Boolean']>;
|
362
|
+
};
|
363
|
+
/** Base Account Service */
|
364
|
+
export declare type IBaseAccountServiceCreateDefaultAccountArgs = {
|
365
|
+
user: Scalars['AnyObject'];
|
366
|
+
optional?: Maybe<Scalars['AnyObject']>;
|
367
|
+
};
|
368
|
+
/** Base Account Service */
|
369
|
+
export declare type IBaseAccountServiceCreateAccountArgs = {
|
370
|
+
account: IUserAccountCreateRequest;
|
371
|
+
};
|
372
|
+
/** Base Account Service */
|
373
|
+
export declare type IBaseAccountServiceUpdateUserAccountArgs = {
|
374
|
+
user: Scalars['AnyObject'];
|
375
|
+
userInfo: IUserAuth0UpdateFields;
|
376
|
+
};
|
377
|
+
/** Base Account Service */
|
378
|
+
export declare type IBaseAccountServiceFindAccountByIdArgs = {
|
379
|
+
id: Scalars['String'];
|
380
|
+
};
|
381
|
+
/** Base Account Service */
|
382
|
+
export declare type IBaseAccountServiceFindAccountByUserArgs = {
|
383
|
+
id: Scalars['String'];
|
384
|
+
};
|
385
|
+
/** Base Account Service */
|
386
|
+
export declare type IBaseAccountServiceFindAccountByEmailArgs = {
|
387
|
+
email: Scalars['String'];
|
388
|
+
};
|
389
|
+
/** Base Account Service */
|
390
|
+
export declare type IBaseAccountServiceGetUsersArgs = {
|
391
|
+
where?: Maybe<IUserAccountWhere>;
|
392
|
+
};
|
393
|
+
/** Base Account Service */
|
394
|
+
export declare type IBaseAccountServiceUpdateAccountArgs = {
|
395
|
+
account: IUserAccountUpdateRequest;
|
396
|
+
};
|
397
|
+
/** Base Account Service */
|
398
|
+
export declare type IBaseAccountServiceDeleteAccountArgs = {
|
399
|
+
account: IUserAccountRemoveRequest;
|
400
|
+
};
|
401
|
+
/** Base Account Service */
|
402
|
+
export declare type IBaseAccountServiceAccountOnBoardingArgs = {
|
403
|
+
input: IIOnBoardingParams;
|
404
|
+
context: Scalars['AnyObject'];
|
405
|
+
};
|
406
|
+
/** Base Account Service */
|
407
|
+
export declare type IBaseAccountServiceVerifyUserEmailVerificationTokenArgs = {
|
408
|
+
userId: Scalars['String'];
|
409
|
+
token: Scalars['String'];
|
410
|
+
};
|
411
|
+
/** Base Account Service */
|
412
|
+
export declare type IBaseAccountServiceDeleteUserAccountArgs = {
|
413
|
+
id: Scalars['String'];
|
414
|
+
};
|
415
|
+
/** Base Account Service */
|
416
|
+
export declare type IBaseAccountServiceResendUserEmailVerificationEmailArgs = {
|
417
|
+
id: Scalars['String'];
|
418
|
+
};
|
419
|
+
/** Base Account Service */
|
420
|
+
export declare type IBaseAccountServiceDispatchUserVerificationEmailArgs = {
|
421
|
+
email: Scalars['String'];
|
422
|
+
emailVerificationToken: IUserTokenInput;
|
423
|
+
};
|
424
|
+
/** Base Account Service */
|
425
|
+
export declare type IBaseAccountServiceDispatchUserPasswordResetEmailArgs = {
|
426
|
+
user: IUserAccountInput;
|
427
|
+
token: Scalars['String'];
|
428
|
+
};
|
429
|
+
/** Base Account Service */
|
430
|
+
export declare type IBaseAccountServiceGetUserTokenDetailsArgs = {
|
431
|
+
userId: Scalars['String'];
|
432
|
+
type: ITokenTypesEnum;
|
433
|
+
};
|
434
|
+
/** Base Account Service */
|
435
|
+
export declare type IBaseAccountServiceAddUserTokenArgs = {
|
436
|
+
userId: Scalars['String'];
|
437
|
+
token: IUserTokenInput;
|
438
|
+
};
|
439
|
+
/** Base Account Service */
|
440
|
+
export declare type IBaseAccountServiceRemoveUserTokenArgs = {
|
441
|
+
userId: Scalars['String'];
|
442
|
+
token: IUserTokenInput;
|
443
|
+
};
|
444
|
+
/** Base Account Service */
|
445
|
+
export declare type IBaseAccountServiceGetAllUserTokensArgs = {
|
446
|
+
userIds: Array<Maybe<Scalars['String']>>;
|
447
|
+
tokenTypes: Array<ITokenTypesEnum>;
|
448
|
+
};
|
449
|
+
/** Base Account Service */
|
450
|
+
export declare type IBaseAccountServiceInitiatePasswordResetProcessArgs = {
|
451
|
+
email: Scalars['String'];
|
452
|
+
};
|
453
|
+
/** Base Account Service */
|
454
|
+
export declare type IBaseAccountServiceResetUserPasswordArgs = {
|
455
|
+
input: IUserPasswordResetInput;
|
456
|
+
};
|
457
|
+
/** Base Account Service */
|
458
|
+
export declare type IBaseAccountServiceValidateUserEmailVerificationTokenArgs = {
|
459
|
+
code: Scalars['String'];
|
460
|
+
userAuth0Id: Scalars['String'];
|
461
|
+
email: Scalars['String'];
|
462
|
+
};
|
463
|
+
/** Base Account Service */
|
464
|
+
export declare type IBaseAccountServiceSendEmailVerificationTokenArgs = {
|
465
|
+
email: Scalars['String'];
|
466
|
+
};
|
467
|
+
/** Base Organization Service */
|
468
|
+
export declare type IBaseOrganizationService = {
|
469
|
+
__typename?: 'BaseOrganizationService';
|
470
|
+
getOrganization?: Maybe<IOrganization>;
|
471
|
+
createDefaultOrganization?: Maybe<IOrganization>;
|
472
|
+
getUserOrganizations?: Maybe<Array<Maybe<IOrganization>>>;
|
473
|
+
createOrganization?: Maybe<IOrganization>;
|
474
|
+
updateOrganization?: Maybe<IOrganization>;
|
475
|
+
removeOrganization?: Maybe<Scalars['Boolean']>;
|
476
|
+
getUserOrgRole?: Maybe<IOrgUserRole>;
|
477
|
+
sendInvitation?: Maybe<Scalars['AnyObject']>;
|
478
|
+
declineInvitation?: Maybe<Scalars['Boolean']>;
|
479
|
+
};
|
480
|
+
/** Base Organization Service */
|
481
|
+
export declare type IBaseOrganizationServiceGetOrganizationArgs = {
|
482
|
+
id?: Maybe<Scalars['String']>;
|
483
|
+
};
|
484
|
+
/** Base Organization Service */
|
485
|
+
export declare type IBaseOrganizationServiceCreateDefaultOrganizationArgs = {
|
486
|
+
user?: Maybe<IAuthUserInput>;
|
487
|
+
};
|
488
|
+
/** Base Organization Service */
|
489
|
+
export declare type IBaseOrganizationServiceGetUserOrganizationsArgs = {
|
490
|
+
userId?: Maybe<Scalars['String']>;
|
491
|
+
};
|
492
|
+
/** Base Organization Service */
|
493
|
+
export declare type IBaseOrganizationServiceCreateOrganizationArgs = {
|
494
|
+
workspace: IOrganizationCreateRequest;
|
495
|
+
};
|
496
|
+
/** Base Organization Service */
|
497
|
+
export declare type IBaseOrganizationServiceUpdateOrganizationArgs = {
|
498
|
+
workspace: IOrganizationUpdateRequest;
|
499
|
+
};
|
500
|
+
/** Base Organization Service */
|
501
|
+
export declare type IBaseOrganizationServiceRemoveOrganizationArgs = {
|
502
|
+
workspace: IOrganizationRemoveRequest;
|
503
|
+
};
|
504
|
+
/** Base Organization Service */
|
505
|
+
export declare type IBaseOrganizationServiceGetUserOrgRoleArgs = {
|
506
|
+
orgName: Scalars['String'];
|
507
|
+
userId: Scalars['String'];
|
508
|
+
};
|
509
|
+
/** Base Organization Service */
|
510
|
+
export declare type IBaseOrganizationServiceSendInvitationArgs = {
|
511
|
+
request: IOrganizationInvitationRequest;
|
512
|
+
};
|
513
|
+
/** Base Organization Service */
|
514
|
+
export declare type IBaseOrganizationServiceDeclineInvitationArgs = {
|
515
|
+
id: Scalars['String'];
|
516
|
+
};
|
517
|
+
/** Base Team Service */
|
518
|
+
export declare type IBaseTeamService = {
|
519
|
+
__typename?: 'BaseTeamService';
|
520
|
+
getTeam?: Maybe<IAccountTeam>;
|
521
|
+
getUserTeams?: Maybe<Array<Maybe<IAccountTeam>>>;
|
522
|
+
createTeam?: Maybe<IAccountTeam>;
|
523
|
+
updateTeam?: Maybe<IAccountTeam>;
|
524
|
+
addWorkspaces?: Maybe<IAccountTeam>;
|
525
|
+
removeTeam?: Maybe<Scalars['Boolean']>;
|
526
|
+
createDefaultTeam?: Maybe<IAccountTeam>;
|
527
|
+
sendProjectNotification?: Maybe<Scalars['Boolean']>;
|
528
|
+
};
|
529
|
+
/** Base Team Service */
|
530
|
+
export declare type IBaseTeamServiceGetTeamArgs = {
|
531
|
+
id?: Maybe<Scalars['String']>;
|
532
|
+
};
|
533
|
+
/** Base Team Service */
|
534
|
+
export declare type IBaseTeamServiceGetUserTeamsArgs = {
|
535
|
+
userId?: Maybe<Scalars['String']>;
|
536
|
+
};
|
537
|
+
/** Base Team Service */
|
538
|
+
export declare type IBaseTeamServiceCreateTeamArgs = {
|
539
|
+
team?: Maybe<ITeamCreateRequest>;
|
540
|
+
};
|
541
|
+
/** Base Team Service */
|
542
|
+
export declare type IBaseTeamServiceUpdateTeamArgs = {
|
543
|
+
team?: Maybe<ITeamUpdateRequest>;
|
544
|
+
};
|
545
|
+
/** Base Team Service */
|
546
|
+
export declare type IBaseTeamServiceAddWorkspacesArgs = {
|
547
|
+
id?: Maybe<Scalars['String']>;
|
548
|
+
workspaces?: Maybe<Array<Maybe<Scalars['String']>>>;
|
549
|
+
};
|
550
|
+
/** Base Team Service */
|
551
|
+
export declare type IBaseTeamServiceRemoveTeamArgs = {
|
552
|
+
team?: Maybe<ITeamRemoveRequest>;
|
553
|
+
};
|
554
|
+
/** Base Team Service */
|
555
|
+
export declare type IBaseTeamServiceCreateDefaultTeamArgs = {
|
556
|
+
organization?: Maybe<IOrganizationInput>;
|
557
|
+
user?: Maybe<IAuthUserInput>;
|
558
|
+
};
|
559
|
+
/** Base Team Service */
|
560
|
+
export declare type IBaseTeamServiceSendProjectNotificationArgs = {
|
561
|
+
teamId?: Maybe<Scalars['String']>;
|
562
|
+
projectName?: Maybe<Scalars['String']>;
|
563
|
+
};
|
360
564
|
export declare enum ICacheControlScope {
|
361
565
|
Public = "PUBLIC",
|
362
566
|
Private = "PRIVATE"
|
@@ -428,6 +632,7 @@ export declare enum IConfigCollectionName {
|
|
428
632
|
Application = "application",
|
429
633
|
Clients = "clients",
|
430
634
|
IntegrationWorkflow = "integrationWorkflow",
|
635
|
+
Integrationconfigurations = "integrationconfigurations",
|
431
636
|
Machines = "machines",
|
432
637
|
Organizations = "organizations",
|
433
638
|
Projects = "projects",
|
@@ -673,8 +878,13 @@ export declare type IDeviceInfoInput = {
|
|
673
878
|
os: Scalars['String'];
|
674
879
|
deviceName?: Maybe<Scalars['String']>;
|
675
880
|
browserName?: Maybe<Scalars['String']>;
|
676
|
-
|
881
|
+
platform: IDeviceInfoPlatform;
|
677
882
|
};
|
883
|
+
export declare enum IDeviceInfoPlatform {
|
884
|
+
Mobile = "MOBILE",
|
885
|
+
Web = "WEB",
|
886
|
+
Extension = "EXTENSION"
|
887
|
+
}
|
678
888
|
export declare enum IEditPresentationTypes {
|
679
889
|
Multiline = "Multiline",
|
680
890
|
Singleline = "Singleline"
|
@@ -928,9 +1138,6 @@ export declare type IIntegraitonConfigurationId = {
|
|
928
1138
|
__typename?: 'IntegraitonConfigurationId';
|
929
1139
|
id?: Maybe<Scalars['String']>;
|
930
1140
|
};
|
931
|
-
export declare enum IIntegrationConfigServiceAction {
|
932
|
-
OnIntegrationConfigurationDeleted = "onIntegrationConfigurationDeleted"
|
933
|
-
}
|
934
1141
|
export declare type IIntegrationConfiguration = {
|
935
1142
|
__typename?: 'IntegrationConfiguration';
|
936
1143
|
id?: Maybe<Scalars['ID']>;
|
@@ -954,6 +1161,8 @@ export declare type IIntegrationConfigurationCreateOrUpdateInput = {
|
|
954
1161
|
integrationInfo?: Maybe<Scalars['JSON']>;
|
955
1162
|
userId?: Maybe<Scalars['ID']>;
|
956
1163
|
orgName?: Maybe<Scalars['String']>;
|
1164
|
+
settings?: Maybe<Scalars['AnyObject']>;
|
1165
|
+
settingsConfiguration?: Maybe<Scalars['AnyObject']>;
|
957
1166
|
};
|
958
1167
|
export declare type IIntegrationConfigurationFilterInput = {
|
959
1168
|
id?: Maybe<Scalars['ID']>;
|
@@ -980,6 +1189,11 @@ export declare type IIntegrationPreferences = {
|
|
980
1189
|
__typename?: 'IntegrationPreferences';
|
981
1190
|
dummy?: Maybe<Scalars['String']>;
|
982
1191
|
};
|
1192
|
+
export declare enum IIntegrationWorkflowServiceAction {
|
1193
|
+
OnIntegrationWorkflowCreated = "onIntegrationWorkflowCreated",
|
1194
|
+
OnIntegrationWorkflowUpdated = "onIntegrationWorkflowUpdated",
|
1195
|
+
OnIntegrationWorkflowDeleted = "onIntegrationWorkflowDeleted"
|
1196
|
+
}
|
983
1197
|
export declare type IInviteMember = {
|
984
1198
|
__typename?: 'InviteMember';
|
985
1199
|
id?: Maybe<Scalars['String']>;
|
@@ -1006,6 +1220,13 @@ export declare type IKeyPathSegment = {
|
|
1006
1220
|
/** The index of the array at this location to descend into. */
|
1007
1221
|
index?: Maybe<Scalars['Int']>;
|
1008
1222
|
};
|
1223
|
+
export declare type ILinkedIdentity = {
|
1224
|
+
__typename?: 'LinkedIdentity';
|
1225
|
+
connection?: Maybe<Scalars['String']>;
|
1226
|
+
isSocial?: Maybe<Scalars['Boolean']>;
|
1227
|
+
provider?: Maybe<Scalars['String']>;
|
1228
|
+
user_id?: Maybe<Scalars['String']>;
|
1229
|
+
};
|
1009
1230
|
export declare type ILoginError = {
|
1010
1231
|
__typename?: 'LoginError';
|
1011
1232
|
timeStamp?: Maybe<Scalars['DateTime']>;
|
@@ -1042,6 +1263,8 @@ export declare enum IMailTemplateId {
|
|
1042
1263
|
BillingNotificationId = "BillingNotificationId",
|
1043
1264
|
/** Prefix with Db to make sure it look into the database */
|
1044
1265
|
DbTeamInivitationId = "DbTeamInivitationId",
|
1266
|
+
/** Prefix with Db to make sure it look into the database */
|
1267
|
+
EmailVerificationOtp = "EMAIL_VERIFICATION_OTP",
|
1045
1268
|
JoinNotifyMember = "JOIN_NOTIFY_MEMBER",
|
1046
1269
|
JoinNotifyOwner = "JOIN_NOTIFY_OWNER",
|
1047
1270
|
/** Prefix with Db to make sure it look into the database */
|
@@ -1094,6 +1317,7 @@ export declare enum IMoleculerServiceName {
|
|
1094
1317
|
AccountsPostEventsService = "AccountsPostEventsService",
|
1095
1318
|
ApiManagementMoleculerService = "ApiManagementMoleculerService",
|
1096
1319
|
AuthUserService = "AuthUserService",
|
1320
|
+
IntegrationWorkflowService = "IntegrationWorkflowService",
|
1097
1321
|
OrganizationContextService = "OrganizationContextService",
|
1098
1322
|
PaymentEventListener = "PaymentEventListener",
|
1099
1323
|
PaymentService = "PaymentService",
|
@@ -1173,8 +1397,8 @@ export declare type IMutation = {
|
|
1173
1397
|
removedUserAuthIntegration?: Maybe<Scalars['Boolean']>;
|
1174
1398
|
renewAuthToken?: Maybe<IAuthTokens>;
|
1175
1399
|
resendOrganizationInvitation?: Maybe<Scalars['Boolean']>;
|
1176
|
-
resendUserEmailVerificationEmail?: Maybe<Scalars['Boolean']>;
|
1177
1400
|
resetUserPassword?: Maybe<Scalars['Boolean']>;
|
1401
|
+
sendEmailVerificationToken?: Maybe<Scalars['Boolean']>;
|
1178
1402
|
sendOrganizationInvitation?: Maybe<Scalars['Boolean']>;
|
1179
1403
|
sendUserPasswordResetEmail?: Maybe<Scalars['Boolean']>;
|
1180
1404
|
setSettingsValueByResource?: Maybe<Scalars['Boolean']>;
|
@@ -1195,7 +1419,8 @@ export declare type IMutation = {
|
|
1195
1419
|
updateRoleValue?: Maybe<Scalars['Boolean']>;
|
1196
1420
|
updateSelectedOrgResource?: Maybe<Scalars['Boolean']>;
|
1197
1421
|
updateUserAccount?: Maybe<Scalars['Boolean']>;
|
1198
|
-
|
1422
|
+
validatePasswordResetOtp?: Maybe<Scalars['Boolean']>;
|
1423
|
+
validateUserEmailVerificationToken?: Maybe<Scalars['Boolean']>;
|
1199
1424
|
};
|
1200
1425
|
export declare type IMutationAddSshKeyArgs = {
|
1201
1426
|
key: ISshKeyInput;
|
@@ -1282,6 +1507,8 @@ export declare type IMutationInitializeOrgNameInContextArgs = {
|
|
1282
1507
|
};
|
1283
1508
|
export declare type IMutationInitializePopupIntegrationAuthorizationArgs = {
|
1284
1509
|
code?: Maybe<Scalars['String']>;
|
1510
|
+
codeVerifier?: Maybe<Scalars['String']>;
|
1511
|
+
platform?: Maybe<IDeviceInfoPlatform>;
|
1285
1512
|
};
|
1286
1513
|
export declare type IMutationInitializeTeamInContextArgs = {
|
1287
1514
|
teamName?: Maybe<Scalars['String']>;
|
@@ -1320,14 +1547,14 @@ export declare type IMutationRemoveTeamMemberArgs = {
|
|
1320
1547
|
};
|
1321
1548
|
export declare type IMutationRemoveUserAuthSessionArgs = {
|
1322
1549
|
sessionId?: Maybe<Scalars['String']>;
|
1323
|
-
|
1550
|
+
platform?: Maybe<IDeviceInfoPlatform>;
|
1324
1551
|
};
|
1325
1552
|
export declare type IMutationRemovedUserAuthIntegrationArgs = {
|
1326
1553
|
provider?: Maybe<Scalars['String']>;
|
1327
1554
|
};
|
1328
1555
|
export declare type IMutationRenewAuthTokenArgs = {
|
1329
1556
|
sessionId?: Maybe<Scalars['String']>;
|
1330
|
-
|
1557
|
+
platform?: Maybe<IDeviceInfoPlatform>;
|
1331
1558
|
};
|
1332
1559
|
export declare type IMutationResendOrganizationInvitationArgs = {
|
1333
1560
|
id: Scalars['ID'];
|
@@ -1335,6 +1562,9 @@ export declare type IMutationResendOrganizationInvitationArgs = {
|
|
1335
1562
|
export declare type IMutationResetUserPasswordArgs = {
|
1336
1563
|
input: IUserPasswordResetInput;
|
1337
1564
|
};
|
1565
|
+
export declare type IMutationSendEmailVerificationTokenArgs = {
|
1566
|
+
email: Scalars['String'];
|
1567
|
+
};
|
1338
1568
|
export declare type IMutationSendOrganizationInvitationArgs = {
|
1339
1569
|
request?: Maybe<IOrganizationInvitationRequest>;
|
1340
1570
|
};
|
@@ -1432,8 +1662,12 @@ export declare type IMutationUpdateSelectedOrgResourceArgs = {
|
|
1432
1662
|
export declare type IMutationUpdateUserAccountArgs = {
|
1433
1663
|
userInfo?: Maybe<IUserAuth0UpdateFields>;
|
1434
1664
|
};
|
1435
|
-
export declare type
|
1436
|
-
|
1665
|
+
export declare type IMutationValidatePasswordResetOtpArgs = {
|
1666
|
+
email: Scalars['String'];
|
1667
|
+
code: Scalars['String'];
|
1668
|
+
};
|
1669
|
+
export declare type IMutationValidateUserEmailVerificationTokenArgs = {
|
1670
|
+
code: Scalars['String'];
|
1437
1671
|
};
|
1438
1672
|
/** An object with an ID. */
|
1439
1673
|
export declare type INode = {
|
@@ -1454,6 +1688,7 @@ export declare type IOrgMember = {
|
|
1454
1688
|
_id?: Maybe<Scalars['String']>;
|
1455
1689
|
userId?: Maybe<Scalars['String']>;
|
1456
1690
|
role?: Maybe<IApplicationRoles>;
|
1691
|
+
user: IOrgUserAccount;
|
1457
1692
|
isSelf?: Maybe<Scalars['Boolean']>;
|
1458
1693
|
inactive?: Maybe<Scalars['Boolean']>;
|
1459
1694
|
name?: Maybe<Scalars['String']>;
|
@@ -1476,17 +1711,19 @@ export declare type IOrgUser = IIOrgUser & {
|
|
1476
1711
|
role?: Maybe<IApplicationRoles>;
|
1477
1712
|
inactive?: Maybe<Scalars['Boolean']>;
|
1478
1713
|
orgName: Scalars['String'];
|
1479
|
-
user:
|
1714
|
+
user: IOrgUserAccount;
|
1480
1715
|
isSelf: Scalars['Boolean'];
|
1481
1716
|
crossCheckEmail?: Maybe<Scalars['String']>;
|
1482
1717
|
};
|
1483
|
-
export declare type
|
1484
|
-
__typename?: '
|
1718
|
+
export declare type IOrgUserAccount = INode & {
|
1719
|
+
__typename?: 'OrgUserAccount';
|
1485
1720
|
id: Scalars['ID'];
|
1486
1721
|
email?: Maybe<Scalars['String']>;
|
1487
1722
|
alias?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1488
1723
|
username?: Maybe<Scalars['String']>;
|
1489
1724
|
emailVerified?: Maybe<Scalars['Boolean']>;
|
1725
|
+
familyName?: Maybe<Scalars['String']>;
|
1726
|
+
givenName?: Maybe<Scalars['String']>;
|
1490
1727
|
};
|
1491
1728
|
export declare type IOrgUserInput = {
|
1492
1729
|
userId?: Maybe<Scalars['String']>;
|
@@ -1756,46 +1993,6 @@ export declare type IOrganizationRole = IIConfigurationModel & {
|
|
1756
1993
|
keys?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1757
1994
|
overrides?: Maybe<Array<Maybe<IOverrides>>>;
|
1758
1995
|
};
|
1759
|
-
export declare type IOrganizationService = {
|
1760
|
-
__typename?: 'OrganizationService';
|
1761
|
-
getOrganization?: Maybe<IOrganization>;
|
1762
|
-
createDefaultOrganization?: Maybe<IOrganization>;
|
1763
|
-
getUserOrganizations?: Maybe<Array<Maybe<IOrganization>>>;
|
1764
|
-
createOrganization?: Maybe<IOrganization>;
|
1765
|
-
updateOrganization?: Maybe<IOrganization>;
|
1766
|
-
removeOrganization?: Maybe<Scalars['Boolean']>;
|
1767
|
-
getUserOrgRole?: Maybe<IOrgUserRole>;
|
1768
|
-
sendInvitation?: Maybe<Scalars['AnyObject']>;
|
1769
|
-
declineInvitation?: Maybe<Scalars['Boolean']>;
|
1770
|
-
};
|
1771
|
-
export declare type IOrganizationServiceGetOrganizationArgs = {
|
1772
|
-
id?: Maybe<Scalars['String']>;
|
1773
|
-
};
|
1774
|
-
export declare type IOrganizationServiceCreateDefaultOrganizationArgs = {
|
1775
|
-
user?: Maybe<IAuthUserInput>;
|
1776
|
-
};
|
1777
|
-
export declare type IOrganizationServiceGetUserOrganizationsArgs = {
|
1778
|
-
userId?: Maybe<Scalars['String']>;
|
1779
|
-
};
|
1780
|
-
export declare type IOrganizationServiceCreateOrganizationArgs = {
|
1781
|
-
workspace: IOrganizationCreateRequest;
|
1782
|
-
};
|
1783
|
-
export declare type IOrganizationServiceUpdateOrganizationArgs = {
|
1784
|
-
workspace: IOrganizationUpdateRequest;
|
1785
|
-
};
|
1786
|
-
export declare type IOrganizationServiceRemoveOrganizationArgs = {
|
1787
|
-
workspace: IOrganizationRemoveRequest;
|
1788
|
-
};
|
1789
|
-
export declare type IOrganizationServiceGetUserOrgRoleArgs = {
|
1790
|
-
orgName: Scalars['String'];
|
1791
|
-
userId: Scalars['String'];
|
1792
|
-
};
|
1793
|
-
export declare type IOrganizationServiceSendInvitationArgs = {
|
1794
|
-
request: IOrganizationInvitationRequest;
|
1795
|
-
};
|
1796
|
-
export declare type IOrganizationServiceDeclineInvitationArgs = {
|
1797
|
-
id: Scalars['String'];
|
1798
|
-
};
|
1799
1996
|
export declare enum IOrganizationServiceAction {
|
1800
1997
|
GetOrganization = "getOrganization",
|
1801
1998
|
CreateDefaultOrganization = "createDefaultOrganization",
|
@@ -2058,11 +2255,17 @@ export declare type IQuery = {
|
|
2058
2255
|
externalAccounts: IExternalAccountConnection;
|
2059
2256
|
/** Fetches a User from Auth0 Service */
|
2060
2257
|
fetchAuth0User?: Maybe<IUserProfile>;
|
2258
|
+
/**
|
2259
|
+
* fetchUserAuthorizedDevices
|
2260
|
+
* @deprecated not used
|
2261
|
+
*/
|
2061
2262
|
fetchUserAuthorizedDevices?: Maybe<Array<Maybe<IUserDevice>>>;
|
2263
|
+
fetchUserSessions?: Maybe<Array<Maybe<IUserSession>>>;
|
2062
2264
|
filterIntegrationConfiguration?: Maybe<Array<Maybe<IIntegrationConfiguration>>>;
|
2063
2265
|
getAccounts?: Maybe<Array<Maybe<IUserAccount>>>;
|
2064
2266
|
getAllCountries?: Maybe<Array<Maybe<ICountry>>>;
|
2065
2267
|
getAllIntegrationConfigurations?: Maybe<IIntegrationConfigurationsOutput>;
|
2268
|
+
getAllUsersTokens?: Maybe<Array<Maybe<IUsersToken>>>;
|
2066
2269
|
getConfiguration?: Maybe<Array<Maybe<IConfiguration>>>;
|
2067
2270
|
getConfigurationData?: Maybe<IConfigurationData>;
|
2068
2271
|
getConfigurationPolicies?: Maybe<Array<Maybe<IConfigurationPolicy>>>;
|
@@ -2172,6 +2375,10 @@ export declare type IQueryGetAllIntegrationConfigurationsArgs = {
|
|
2172
2375
|
skip?: Maybe<Scalars['Int']>;
|
2173
2376
|
sort?: Maybe<ISort>;
|
2174
2377
|
};
|
2378
|
+
export declare type IQueryGetAllUsersTokensArgs = {
|
2379
|
+
userIds?: Maybe<Array<Scalars['String']>>;
|
2380
|
+
types: Array<ITokenTypesEnum>;
|
2381
|
+
};
|
2175
2382
|
export declare type IQueryGetConfigurationArgs = {
|
2176
2383
|
input?: Maybe<Array<Maybe<IConfigurationInput>>>;
|
2177
2384
|
};
|
@@ -2588,44 +2795,6 @@ export declare type ITeamRemoveRequest = {
|
|
2588
2795
|
id: Scalars['String'];
|
2589
2796
|
requestedUserId?: Maybe<Scalars['String']>;
|
2590
2797
|
};
|
2591
|
-
export declare type ITeamService = {
|
2592
|
-
__typename?: 'TeamService';
|
2593
|
-
getTeam?: Maybe<IAccountTeam>;
|
2594
|
-
getUserTeams?: Maybe<Array<Maybe<IAccountTeam>>>;
|
2595
|
-
createTeam?: Maybe<IAccountTeam>;
|
2596
|
-
updateTeam?: Maybe<IAccountTeam>;
|
2597
|
-
addWorkspaces?: Maybe<IAccountTeam>;
|
2598
|
-
removeTeam?: Maybe<Scalars['Boolean']>;
|
2599
|
-
createDefaultTeam?: Maybe<IAccountTeam>;
|
2600
|
-
sendProjectNotification?: Maybe<Scalars['Boolean']>;
|
2601
|
-
};
|
2602
|
-
export declare type ITeamServiceGetTeamArgs = {
|
2603
|
-
id?: Maybe<Scalars['String']>;
|
2604
|
-
};
|
2605
|
-
export declare type ITeamServiceGetUserTeamsArgs = {
|
2606
|
-
userId?: Maybe<Scalars['String']>;
|
2607
|
-
};
|
2608
|
-
export declare type ITeamServiceCreateTeamArgs = {
|
2609
|
-
team?: Maybe<ITeamCreateRequest>;
|
2610
|
-
};
|
2611
|
-
export declare type ITeamServiceUpdateTeamArgs = {
|
2612
|
-
team?: Maybe<ITeamUpdateRequest>;
|
2613
|
-
};
|
2614
|
-
export declare type ITeamServiceAddWorkspacesArgs = {
|
2615
|
-
id?: Maybe<Scalars['String']>;
|
2616
|
-
workspaces?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2617
|
-
};
|
2618
|
-
export declare type ITeamServiceRemoveTeamArgs = {
|
2619
|
-
team?: Maybe<ITeamRemoveRequest>;
|
2620
|
-
};
|
2621
|
-
export declare type ITeamServiceCreateDefaultTeamArgs = {
|
2622
|
-
organization?: Maybe<IOrganizationInput>;
|
2623
|
-
user?: Maybe<IAuthUserInput>;
|
2624
|
-
};
|
2625
|
-
export declare type ITeamServiceSendProjectNotificationArgs = {
|
2626
|
-
teamId?: Maybe<Scalars['String']>;
|
2627
|
-
projectName?: Maybe<Scalars['String']>;
|
2628
|
-
};
|
2629
2798
|
export declare enum ITeamServiceAction {
|
2630
2799
|
GetTeam = "getTeam",
|
2631
2800
|
GetUserTeams = "getUserTeams",
|
@@ -2789,7 +2958,7 @@ export declare type IUserAuth0SessionDeviceInfo = {
|
|
2789
2958
|
os?: Maybe<Scalars['String']>;
|
2790
2959
|
deviceName?: Maybe<Scalars['String']>;
|
2791
2960
|
browserName?: Maybe<Scalars['String']>;
|
2792
|
-
|
2961
|
+
platform: IDeviceInfoPlatform;
|
2793
2962
|
};
|
2794
2963
|
export declare type IUserAuth0SessionInfo = {
|
2795
2964
|
__typename?: 'UserAuth0SessionInfo';
|
@@ -2893,8 +3062,9 @@ export declare type IUserOrgInput = {
|
|
2893
3062
|
inactive?: Maybe<Scalars['Boolean']>;
|
2894
3063
|
};
|
2895
3064
|
export declare type IUserPasswordResetInput = {
|
2896
|
-
|
2897
|
-
|
3065
|
+
newPassword: Scalars['String'];
|
3066
|
+
currentPassword: Scalars['String'];
|
3067
|
+
email: Scalars['String'];
|
2898
3068
|
};
|
2899
3069
|
export declare type IUserPreviousValues = {
|
2900
3070
|
__typename?: 'UserPreviousValues';
|
@@ -2936,6 +3106,16 @@ export declare type IUserProfile = IIAuth0User & IIAuth0UserProfile & IIAuth0Tok
|
|
2936
3106
|
at_hash?: Maybe<Scalars['String']>;
|
2937
3107
|
nonce?: Maybe<Scalars['String']>;
|
2938
3108
|
};
|
3109
|
+
export declare enum IUserServiceAction {
|
3110
|
+
OnEmailVerified = "onEmailVerified"
|
3111
|
+
}
|
3112
|
+
export declare type IUserSession = {
|
3113
|
+
__typename?: 'UserSession';
|
3114
|
+
sessionId?: Maybe<Scalars['String']>;
|
3115
|
+
deviceInfo?: Maybe<IUserAuth0SessionDeviceInfo>;
|
3116
|
+
lastLoginAt?: Maybe<Scalars['Date']>;
|
3117
|
+
lastLoginIp?: Maybe<Scalars['String']>;
|
3118
|
+
};
|
2939
3119
|
export declare type IUserSessionId = {
|
2940
3120
|
__typename?: 'UserSessionId';
|
2941
3121
|
sessionId?: Maybe<Scalars['String']>;
|
@@ -2983,7 +3163,7 @@ export declare type IUserState = {
|
|
2983
3163
|
isProfileFetching?: Maybe<Scalars['Boolean']>;
|
2984
3164
|
/** True incase of social logged in user */
|
2985
3165
|
isSocialLogin?: Maybe<Scalars['Boolean']>;
|
2986
|
-
linkedIdentities?: Maybe<Array<Maybe<
|
3166
|
+
linkedIdentities?: Maybe<Array<Maybe<ILinkedIdentity>>>;
|
2987
3167
|
loggingInProgress?: Maybe<Scalars['Boolean']>;
|
2988
3168
|
/** True while Password verify link sending */
|
2989
3169
|
passwordResetProgress?: Maybe<Scalars['Boolean']>;
|
@@ -3009,6 +3189,11 @@ export declare type IUserTokenInput = {
|
|
3009
3189
|
token: Scalars['String'];
|
3010
3190
|
valid?: Maybe<Scalars['Boolean']>;
|
3011
3191
|
};
|
3192
|
+
export declare type IUsersToken = {
|
3193
|
+
__typename?: 'UsersToken';
|
3194
|
+
userId: Scalars['String'];
|
3195
|
+
tokens?: Maybe<Array<Maybe<IUserToken>>>;
|
3196
|
+
};
|
3012
3197
|
export declare type IViewerPoliciesInput = {
|
3013
3198
|
target: Scalars['Int'];
|
3014
3199
|
/**
|
@@ -3168,12 +3353,6 @@ export declare type IResendOrganizationInvitationMutationVariables = Exact<{
|
|
3168
3353
|
export declare type IResendOrganizationInvitationMutation = ({
|
3169
3354
|
__typename?: 'Mutation';
|
3170
3355
|
} & Pick<IMutation, 'resendOrganizationInvitation'>);
|
3171
|
-
export declare type IResendUserEmailVerificationEmailMutationVariables = Exact<{
|
3172
|
-
[key: string]: never;
|
3173
|
-
}>;
|
3174
|
-
export declare type IResendUserEmailVerificationEmailMutation = ({
|
3175
|
-
__typename?: 'Mutation';
|
3176
|
-
} & Pick<IMutation, 'resendUserEmailVerificationEmail'>);
|
3177
3356
|
export declare type IResetUserPasswordMutationVariables = Exact<{
|
3178
3357
|
input: IUserPasswordResetInput;
|
3179
3358
|
}>;
|
@@ -3186,6 +3365,12 @@ export declare type ISendUserPasswordResetEmailMutationVariables = Exact<{
|
|
3186
3365
|
export declare type ISendUserPasswordResetEmailMutation = ({
|
3187
3366
|
__typename?: 'Mutation';
|
3188
3367
|
} & Pick<IMutation, 'sendUserPasswordResetEmail'>);
|
3368
|
+
export declare type ISendEmailVerificationMutationVariables = Exact<{
|
3369
|
+
email: Scalars['String'];
|
3370
|
+
}>;
|
3371
|
+
export declare type ISendEmailVerificationMutation = ({
|
3372
|
+
__typename?: 'Mutation';
|
3373
|
+
} & Pick<IMutation, 'sendEmailVerificationToken'>);
|
3189
3374
|
export declare type ISendOrganizationInvitationMutationVariables = Exact<{
|
3190
3375
|
request: IOrganizationInvitationRequest;
|
3191
3376
|
}>;
|
@@ -3227,12 +3412,19 @@ export declare type IUpdateUserAccountMutationVariables = Exact<{
|
|
3227
3412
|
export declare type IUpdateUserAccountMutation = ({
|
3228
3413
|
__typename?: 'Mutation';
|
3229
3414
|
} & Pick<IMutation, 'updateUserAccount'>);
|
3230
|
-
export declare type
|
3231
|
-
|
3415
|
+
export declare type IValidatePasswordResetOtpMutationVariables = Exact<{
|
3416
|
+
email: Scalars['String'];
|
3417
|
+
code: Scalars['String'];
|
3418
|
+
}>;
|
3419
|
+
export declare type IValidatePasswordResetOtpMutation = ({
|
3420
|
+
__typename?: 'Mutation';
|
3421
|
+
} & Pick<IMutation, 'validatePasswordResetOtp'>);
|
3422
|
+
export declare type IValidateUserEmailVerificationMutationVariables = Exact<{
|
3423
|
+
code: Scalars['String'];
|
3232
3424
|
}>;
|
3233
|
-
export declare type
|
3425
|
+
export declare type IValidateUserEmailVerificationMutation = ({
|
3234
3426
|
__typename?: 'Mutation';
|
3235
|
-
} & Pick<IMutation, '
|
3427
|
+
} & Pick<IMutation, 'validateUserEmailVerificationToken'>);
|
3236
3428
|
export declare type IGetUserOrganizationsListQueryVariables = Exact<{
|
3237
3429
|
[key: string]: never;
|
3238
3430
|
}>;
|
@@ -3349,8 +3541,8 @@ export declare type IGetOrganizationMembersWithNameQuery = ({
|
|
3349
3541
|
__typename?: 'OrgUser';
|
3350
3542
|
} & Pick<IOrgUser, 'userId' | 'inactive' | 'crossCheckEmail' | 'role'> & {
|
3351
3543
|
user: ({
|
3352
|
-
__typename?: '
|
3353
|
-
} & Pick<
|
3544
|
+
__typename?: 'OrgUserAccount';
|
3545
|
+
} & Pick<IOrgUserAccount, 'alias' | 'email' | 'username' | 'emailVerified' | 'familyName' | 'givenName'>);
|
3354
3546
|
})>>>;
|
3355
3547
|
})>;
|
3356
3548
|
});
|
@@ -3469,7 +3661,11 @@ export declare type IGetOrganizationMembersQuery = ({
|
|
3469
3661
|
} & Pick<IOrgMembersOutput, 'totalCount'> & {
|
3470
3662
|
data?: Maybe<Array<Maybe<({
|
3471
3663
|
__typename?: 'OrgMember';
|
3472
|
-
} & Pick<IOrgMember, 'userId' | 'isSelf' | 'role' | 'name' | 'email' | 'teamNames' | 'crossCheckEmail'>
|
3664
|
+
} & Pick<IOrgMember, 'userId' | 'isSelf' | 'role' | 'name' | 'email' | 'teamNames' | 'crossCheckEmail'> & {
|
3665
|
+
user: ({
|
3666
|
+
__typename?: 'OrgUserAccount';
|
3667
|
+
} & Pick<IOrgUserAccount, 'familyName' | 'givenName' | 'alias' | 'email'>);
|
3668
|
+
})>>>;
|
3473
3669
|
})>;
|
3474
3670
|
});
|
3475
3671
|
export declare type IOrganizationsQueryVariables = Exact<{
|
@@ -4981,29 +5177,6 @@ export declare function useResendOrganizationInvitationMutation(baseOptions?: Ap
|
|
4981
5177
|
export declare type ResendOrganizationInvitationMutationHookResult = ReturnType<typeof useResendOrganizationInvitationMutation>;
|
4982
5178
|
export declare type ResendOrganizationInvitationMutationResult = Apollo.MutationResult<IResendOrganizationInvitationMutation>;
|
4983
5179
|
export declare type ResendOrganizationInvitationMutationOptions = Apollo.BaseMutationOptions<IResendOrganizationInvitationMutation, IResendOrganizationInvitationMutationVariables>;
|
4984
|
-
export declare const ResendUserEmailVerificationEmailDocument: DocumentNode;
|
4985
|
-
/**
|
4986
|
-
* __useResendUserEmailVerificationEmailMutation__
|
4987
|
-
*
|
4988
|
-
* To run a mutation, you first call `useResendUserEmailVerificationEmailMutation` within a React component and pass it any options that fit your needs.
|
4989
|
-
* When your component renders, `useResendUserEmailVerificationEmailMutation` returns a tuple that includes:
|
4990
|
-
* - A mutate function that you can call at any time to execute the mutation
|
4991
|
-
* - An object with fields that represent the current status of the mutation's execution
|
4992
|
-
*
|
4993
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
4994
|
-
*
|
4995
|
-
* @example
|
4996
|
-
* const [resendUserEmailVerificationEmailMutation, { data, loading, error }] = useResendUserEmailVerificationEmailMutation({
|
4997
|
-
* variables: {
|
4998
|
-
* },
|
4999
|
-
* });
|
5000
|
-
*/
|
5001
|
-
export declare function useResendUserEmailVerificationEmailMutation(baseOptions?: Apollo.MutationHookOptions<IResendUserEmailVerificationEmailMutation, IResendUserEmailVerificationEmailMutationVariables>): Apollo.MutationTuple<IResendUserEmailVerificationEmailMutation, Exact<{
|
5002
|
-
[key: string]: never;
|
5003
|
-
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
5004
|
-
export declare type ResendUserEmailVerificationEmailMutationHookResult = ReturnType<typeof useResendUserEmailVerificationEmailMutation>;
|
5005
|
-
export declare type ResendUserEmailVerificationEmailMutationResult = Apollo.MutationResult<IResendUserEmailVerificationEmailMutation>;
|
5006
|
-
export declare type ResendUserEmailVerificationEmailMutationOptions = Apollo.BaseMutationOptions<IResendUserEmailVerificationEmailMutation, IResendUserEmailVerificationEmailMutationVariables>;
|
5007
5180
|
export declare const ResetUserPasswordDocument: DocumentNode;
|
5008
5181
|
/**
|
5009
5182
|
* __useResetUserPasswordMutation__
|
@@ -5052,6 +5225,30 @@ export declare function useSendUserPasswordResetEmailMutation(baseOptions?: Apol
|
|
5052
5225
|
export declare type SendUserPasswordResetEmailMutationHookResult = ReturnType<typeof useSendUserPasswordResetEmailMutation>;
|
5053
5226
|
export declare type SendUserPasswordResetEmailMutationResult = Apollo.MutationResult<ISendUserPasswordResetEmailMutation>;
|
5054
5227
|
export declare type SendUserPasswordResetEmailMutationOptions = Apollo.BaseMutationOptions<ISendUserPasswordResetEmailMutation, ISendUserPasswordResetEmailMutationVariables>;
|
5228
|
+
export declare const SendEmailVerificationDocument: DocumentNode;
|
5229
|
+
/**
|
5230
|
+
* __useSendEmailVerificationMutation__
|
5231
|
+
*
|
5232
|
+
* To run a mutation, you first call `useSendEmailVerificationMutation` within a React component and pass it any options that fit your needs.
|
5233
|
+
* When your component renders, `useSendEmailVerificationMutation` returns a tuple that includes:
|
5234
|
+
* - A mutate function that you can call at any time to execute the mutation
|
5235
|
+
* - An object with fields that represent the current status of the mutation's execution
|
5236
|
+
*
|
5237
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
5238
|
+
*
|
5239
|
+
* @example
|
5240
|
+
* const [sendEmailVerificationMutation, { data, loading, error }] = useSendEmailVerificationMutation({
|
5241
|
+
* variables: {
|
5242
|
+
* email: // value for 'email'
|
5243
|
+
* },
|
5244
|
+
* });
|
5245
|
+
*/
|
5246
|
+
export declare function useSendEmailVerificationMutation(baseOptions?: Apollo.MutationHookOptions<ISendEmailVerificationMutation, ISendEmailVerificationMutationVariables>): Apollo.MutationTuple<ISendEmailVerificationMutation, Exact<{
|
5247
|
+
email: string;
|
5248
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
5249
|
+
export declare type SendEmailVerificationMutationHookResult = ReturnType<typeof useSendEmailVerificationMutation>;
|
5250
|
+
export declare type SendEmailVerificationMutationResult = Apollo.MutationResult<ISendEmailVerificationMutation>;
|
5251
|
+
export declare type SendEmailVerificationMutationOptions = Apollo.BaseMutationOptions<ISendEmailVerificationMutation, ISendEmailVerificationMutationVariables>;
|
5055
5252
|
export declare const SendOrganizationInvitationDocument: DocumentNode;
|
5056
5253
|
/**
|
5057
5254
|
* __useSendOrganizationInvitationMutation__
|
@@ -5186,30 +5383,56 @@ export declare function useUpdateUserAccountMutation(baseOptions?: Apollo.Mutati
|
|
5186
5383
|
export declare type UpdateUserAccountMutationHookResult = ReturnType<typeof useUpdateUserAccountMutation>;
|
5187
5384
|
export declare type UpdateUserAccountMutationResult = Apollo.MutationResult<IUpdateUserAccountMutation>;
|
5188
5385
|
export declare type UpdateUserAccountMutationOptions = Apollo.BaseMutationOptions<IUpdateUserAccountMutation, IUpdateUserAccountMutationVariables>;
|
5189
|
-
export declare const
|
5386
|
+
export declare const ValidatePasswordResetOtpDocument: DocumentNode;
|
5190
5387
|
/**
|
5191
|
-
*
|
5388
|
+
* __useValidatePasswordResetOtpMutation__
|
5192
5389
|
*
|
5193
|
-
* To run a mutation, you first call `
|
5194
|
-
* When your component renders, `
|
5390
|
+
* To run a mutation, you first call `useValidatePasswordResetOtpMutation` within a React component and pass it any options that fit your needs.
|
5391
|
+
* When your component renders, `useValidatePasswordResetOtpMutation` returns a tuple that includes:
|
5195
5392
|
* - A mutate function that you can call at any time to execute the mutation
|
5196
5393
|
* - An object with fields that represent the current status of the mutation's execution
|
5197
5394
|
*
|
5198
5395
|
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
5199
5396
|
*
|
5200
5397
|
* @example
|
5201
|
-
* const [
|
5398
|
+
* const [validatePasswordResetOtpMutation, { data, loading, error }] = useValidatePasswordResetOtpMutation({
|
5202
5399
|
* variables: {
|
5203
|
-
*
|
5400
|
+
* email: // value for 'email'
|
5401
|
+
* code: // value for 'code'
|
5402
|
+
* },
|
5403
|
+
* });
|
5404
|
+
*/
|
5405
|
+
export declare function useValidatePasswordResetOtpMutation(baseOptions?: Apollo.MutationHookOptions<IValidatePasswordResetOtpMutation, IValidatePasswordResetOtpMutationVariables>): Apollo.MutationTuple<IValidatePasswordResetOtpMutation, Exact<{
|
5406
|
+
email: string;
|
5407
|
+
code: string;
|
5408
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
5409
|
+
export declare type ValidatePasswordResetOtpMutationHookResult = ReturnType<typeof useValidatePasswordResetOtpMutation>;
|
5410
|
+
export declare type ValidatePasswordResetOtpMutationResult = Apollo.MutationResult<IValidatePasswordResetOtpMutation>;
|
5411
|
+
export declare type ValidatePasswordResetOtpMutationOptions = Apollo.BaseMutationOptions<IValidatePasswordResetOtpMutation, IValidatePasswordResetOtpMutationVariables>;
|
5412
|
+
export declare const ValidateUserEmailVerificationDocument: DocumentNode;
|
5413
|
+
/**
|
5414
|
+
* __useValidateUserEmailVerificationMutation__
|
5415
|
+
*
|
5416
|
+
* To run a mutation, you first call `useValidateUserEmailVerificationMutation` within a React component and pass it any options that fit your needs.
|
5417
|
+
* When your component renders, `useValidateUserEmailVerificationMutation` returns a tuple that includes:
|
5418
|
+
* - A mutate function that you can call at any time to execute the mutation
|
5419
|
+
* - An object with fields that represent the current status of the mutation's execution
|
5420
|
+
*
|
5421
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
5422
|
+
*
|
5423
|
+
* @example
|
5424
|
+
* const [validateUserEmailVerificationMutation, { data, loading, error }] = useValidateUserEmailVerificationMutation({
|
5425
|
+
* variables: {
|
5426
|
+
* code: // value for 'code'
|
5204
5427
|
* },
|
5205
5428
|
* });
|
5206
5429
|
*/
|
5207
|
-
export declare function
|
5208
|
-
|
5430
|
+
export declare function useValidateUserEmailVerificationMutation(baseOptions?: Apollo.MutationHookOptions<IValidateUserEmailVerificationMutation, IValidateUserEmailVerificationMutationVariables>): Apollo.MutationTuple<IValidateUserEmailVerificationMutation, Exact<{
|
5431
|
+
code: string;
|
5209
5432
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
5210
|
-
export declare type
|
5211
|
-
export declare type
|
5212
|
-
export declare type
|
5433
|
+
export declare type ValidateUserEmailVerificationMutationHookResult = ReturnType<typeof useValidateUserEmailVerificationMutation>;
|
5434
|
+
export declare type ValidateUserEmailVerificationMutationResult = Apollo.MutationResult<IValidateUserEmailVerificationMutation>;
|
5435
|
+
export declare type ValidateUserEmailVerificationMutationOptions = Apollo.BaseMutationOptions<IValidateUserEmailVerificationMutation, IValidateUserEmailVerificationMutationVariables>;
|
5213
5436
|
export declare const GetUserOrganizationsListDocument: DocumentNode;
|
5214
5437
|
/**
|
5215
5438
|
* __useGetUserOrganizationsListQuery__
|
@@ -7377,9 +7600,6 @@ export declare type IResolversTypes = {
|
|
7377
7600
|
AccessTokenConnection: ResolverTypeWrapper<IAccessTokenConnection>;
|
7378
7601
|
Int: ResolverTypeWrapper<Scalars['Int']>;
|
7379
7602
|
AccessToken_Input: IAccessToken_Input;
|
7380
|
-
AccountBroadcasterActions: IAccountBroadcasterActions;
|
7381
|
-
AccountService: ResolverTypeWrapper<IAccountService>;
|
7382
|
-
Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
|
7383
7603
|
AccountServiceAction: IAccountServiceAction;
|
7384
7604
|
AccountTeam: ResolverTypeWrapper<IAccountTeam>;
|
7385
7605
|
AccountTeamInput: IAccountTeamInput;
|
@@ -7393,12 +7613,16 @@ export declare type IResolversTypes = {
|
|
7393
7613
|
ApplicationRolePermission: ResolverTypeWrapper<IApplicationRolePermission>;
|
7394
7614
|
ApplicationRoles: IApplicationRoles;
|
7395
7615
|
ApplicationSettings: ResolverTypeWrapper<IApplicationSettings>;
|
7616
|
+
Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
|
7396
7617
|
Auth0Identity: ResolverTypeWrapper<IAuth0Identity>;
|
7397
7618
|
Auth0IdentityProfileData: ResolverTypeWrapper<IAuth0IdentityProfileData>;
|
7398
7619
|
AuthErrorCodes: IAuthErrorCodes;
|
7399
7620
|
AuthTokens: ResolverTypeWrapper<IAuthTokens>;
|
7400
7621
|
AuthUser: ResolverTypeWrapper<IAuthUser>;
|
7401
7622
|
AuthUserInput: IAuthUserInput;
|
7623
|
+
BaseAccountService: ResolverTypeWrapper<IBaseAccountService>;
|
7624
|
+
BaseOrganizationService: ResolverTypeWrapper<IBaseOrganizationService>;
|
7625
|
+
BaseTeamService: ResolverTypeWrapper<IBaseTeamService>;
|
7402
7626
|
CacheControlScope: ICacheControlScope;
|
7403
7627
|
CityInput: ICityInput;
|
7404
7628
|
CityUpdateInput: ICityUpdateInput;
|
@@ -7436,6 +7660,7 @@ export declare type IResolversTypes = {
|
|
7436
7660
|
DefaultRole: ResolverTypeWrapper<IDefaultRole>;
|
7437
7661
|
DefaultSettings: ResolverTypeWrapper<IDefaultSettings>;
|
7438
7662
|
DeviceInfoInput: IDeviceInfoInput;
|
7663
|
+
DeviceInfoPlatform: IDeviceInfoPlatform;
|
7439
7664
|
EditPresentationTypes: IEditPresentationTypes;
|
7440
7665
|
EmptyResponse: ResolverTypeWrapper<IEmptyResponse>;
|
7441
7666
|
Environment: ResolverTypeWrapper<IEnvironment>;
|
@@ -7472,18 +7697,19 @@ export declare type IResolversTypes = {
|
|
7472
7697
|
IUser: IResolversTypes['AuthUser'];
|
7473
7698
|
IUserMetadata: IResolversTypes['UserMetadata'];
|
7474
7699
|
IntegraitonConfigurationId: ResolverTypeWrapper<IIntegraitonConfigurationId>;
|
7475
|
-
IntegrationConfigServiceAction: IIntegrationConfigServiceAction;
|
7476
7700
|
IntegrationConfiguration: ResolverTypeWrapper<IIntegrationConfiguration>;
|
7477
7701
|
IntegrationConfigurationCreateOrUpdateInput: IIntegrationConfigurationCreateOrUpdateInput;
|
7478
7702
|
IntegrationConfigurationFilterInput: IIntegrationConfigurationFilterInput;
|
7479
7703
|
IntegrationConfigurationInput: IIntegrationConfigurationInput;
|
7480
7704
|
IntegrationConfigurationsOutput: ResolverTypeWrapper<IIntegrationConfigurationsOutput>;
|
7481
7705
|
IntegrationPreferences: ResolverTypeWrapper<IIntegrationPreferences>;
|
7706
|
+
IntegrationWorkflowServiceAction: IIntegrationWorkflowServiceAction;
|
7482
7707
|
InviteMember: ResolverTypeWrapper<IInviteMember>;
|
7483
7708
|
InviteStatus: IInviteStatus;
|
7484
7709
|
JSON: ResolverTypeWrapper<Scalars['JSON']>;
|
7485
7710
|
JSONObject: ResolverTypeWrapper<Scalars['JSONObject']>;
|
7486
7711
|
KeyPathSegment: IKeyPathSegment;
|
7712
|
+
LinkedIdentity: ResolverTypeWrapper<ILinkedIdentity>;
|
7487
7713
|
LoginError: ResolverTypeWrapper<ILoginError>;
|
7488
7714
|
MachineConfiguration: ResolverTypeWrapper<IMachineConfiguration>;
|
7489
7715
|
MachineSettings: ResolverTypeWrapper<IMachineSettings>;
|
@@ -7493,7 +7719,7 @@ export declare type IResolversTypes = {
|
|
7493
7719
|
MenuPosition: IMenuPosition;
|
7494
7720
|
MoleculerServiceName: IMoleculerServiceName;
|
7495
7721
|
Mutation: ResolverTypeWrapper<{}>;
|
7496
|
-
Node: IResolversTypes['AccessToken'] | IResolversTypes['ApiExternalAccount'] | IResolversTypes['ApiManagement'] | IResolversTypes['
|
7722
|
+
Node: IResolversTypes['AccessToken'] | IResolversTypes['ApiExternalAccount'] | IResolversTypes['ApiManagement'] | IResolversTypes['OrgUserAccount'] | IResolversTypes['UserAccount'];
|
7497
7723
|
Observable: ResolverTypeWrapper<Scalars['Observable']>;
|
7498
7724
|
OrgDetailWhere: IOrgDetailWhere;
|
7499
7725
|
OrgInvitationMembers: ResolverTypeWrapper<IOrgInvitationMembers>;
|
@@ -7501,7 +7727,7 @@ export declare type IResolversTypes = {
|
|
7501
7727
|
OrgMembersOutput: ResolverTypeWrapper<IOrgMembersOutput>;
|
7502
7728
|
OrgType: IOrgType;
|
7503
7729
|
OrgUser: ResolverTypeWrapper<IOrgUser>;
|
7504
|
-
|
7730
|
+
OrgUserAccount: ResolverTypeWrapper<IOrgUserAccount>;
|
7505
7731
|
OrgUserInput: IOrgUserInput;
|
7506
7732
|
OrgUserRole: IOrgUserRole;
|
7507
7733
|
OrgainizationInvitationRole: IOrgainizationInvitationRole;
|
@@ -7529,7 +7755,6 @@ export declare type IResolversTypes = {
|
|
7529
7755
|
OrganizationResourceData: ResolverTypeWrapper<IOrganizationResourceData>;
|
7530
7756
|
OrganizationResourceSettings: ResolverTypeWrapper<IOrganizationResourceSettings>;
|
7531
7757
|
OrganizationRole: ResolverTypeWrapper<IOrganizationRole>;
|
7532
|
-
OrganizationService: ResolverTypeWrapper<IOrganizationService>;
|
7533
7758
|
OrganizationServiceAction: IOrganizationServiceAction;
|
7534
7759
|
OrganizationSettings: ResolverTypeWrapper<IOrganizationSettings>;
|
7535
7760
|
OrganizationUpdateRequest: IOrganizationUpdateRequest;
|
@@ -7608,7 +7833,6 @@ export declare type IResolversTypes = {
|
|
7608
7833
|
TeamMember: ResolverTypeWrapper<ITeamMember>;
|
7609
7834
|
TeamMemberInput: ITeamMemberInput;
|
7610
7835
|
TeamRemoveRequest: ITeamRemoveRequest;
|
7611
|
-
TeamService: ResolverTypeWrapper<ITeamService>;
|
7612
7836
|
TeamServiceAction: ITeamServiceAction;
|
7613
7837
|
TeamType: ITeamType;
|
7614
7838
|
TeamUpdateRequest: ITeamUpdateRequest;
|
@@ -7643,11 +7867,14 @@ export declare type IResolversTypes = {
|
|
7643
7867
|
UserPasswordResetInput: IUserPasswordResetInput;
|
7644
7868
|
UserPreviousValues: ResolverTypeWrapper<IUserPreviousValues>;
|
7645
7869
|
UserProfile: ResolverTypeWrapper<IUserProfile>;
|
7870
|
+
UserServiceAction: IUserServiceAction;
|
7871
|
+
UserSession: ResolverTypeWrapper<IUserSession>;
|
7646
7872
|
UserSessionId: ResolverTypeWrapper<IUserSessionId>;
|
7647
7873
|
UserSettings: ResolverTypeWrapper<IUserSettings>;
|
7648
7874
|
UserState: ResolverTypeWrapper<IUserState>;
|
7649
7875
|
UserToken: ResolverTypeWrapper<IUserToken>;
|
7650
7876
|
UserTokenInput: IUserTokenInput;
|
7877
|
+
UsersToken: ResolverTypeWrapper<IUsersToken>;
|
7651
7878
|
ViewerPoliciesInput: IViewerPoliciesInput;
|
7652
7879
|
ViewerSettingsInput: IViewerSettingsInput;
|
7653
7880
|
ViewerSettingsSubject: ResolverTypeWrapper<IViewerSettingsSubject>;
|
@@ -7663,8 +7890,6 @@ export declare type IResolversParentTypes = {
|
|
7663
7890
|
AccessTokenConnection: IAccessTokenConnection;
|
7664
7891
|
Int: Scalars['Int'];
|
7665
7892
|
AccessToken_Input: IAccessToken_Input;
|
7666
|
-
AccountService: IAccountService;
|
7667
|
-
Boolean: Scalars['Boolean'];
|
7668
7893
|
AccountTeam: IAccountTeam;
|
7669
7894
|
AccountTeamInput: IAccountTeamInput;
|
7670
7895
|
AdminIdeSettings: IAdminIdeSettings;
|
@@ -7675,11 +7900,15 @@ export declare type IResolversParentTypes = {
|
|
7675
7900
|
ApplicationPolicy: IApplicationPolicy;
|
7676
7901
|
ApplicationRolePermission: IApplicationRolePermission;
|
7677
7902
|
ApplicationSettings: IApplicationSettings;
|
7903
|
+
Boolean: Scalars['Boolean'];
|
7678
7904
|
Auth0Identity: IAuth0Identity;
|
7679
7905
|
Auth0IdentityProfileData: IAuth0IdentityProfileData;
|
7680
7906
|
AuthTokens: IAuthTokens;
|
7681
7907
|
AuthUser: IAuthUser;
|
7682
7908
|
AuthUserInput: IAuthUserInput;
|
7909
|
+
BaseAccountService: IBaseAccountService;
|
7910
|
+
BaseOrganizationService: IBaseOrganizationService;
|
7911
|
+
BaseTeamService: IBaseTeamService;
|
7683
7912
|
CityInput: ICityInput;
|
7684
7913
|
CityUpdateInput: ICityUpdateInput;
|
7685
7914
|
Configuration: IResolversParentTypes['DefaultConfiguration'] | IResolversParentTypes['MachineConfiguration'] | IResolversParentTypes['UserConfiguration'] | IResolversParentTypes['OrganizationConfiguration'] | IResolversParentTypes['OrganizationResourceConfiguration'];
|
@@ -7750,13 +7979,14 @@ export declare type IResolversParentTypes = {
|
|
7750
7979
|
JSON: Scalars['JSON'];
|
7751
7980
|
JSONObject: Scalars['JSONObject'];
|
7752
7981
|
KeyPathSegment: IKeyPathSegment;
|
7982
|
+
LinkedIdentity: ILinkedIdentity;
|
7753
7983
|
LoginError: ILoginError;
|
7754
7984
|
MachineConfiguration: IMachineConfiguration;
|
7755
7985
|
MachineSettings: IMachineSettings;
|
7756
7986
|
MemorySettings: IMemorySettings;
|
7757
7987
|
MenuItem: IMenuItem;
|
7758
7988
|
Mutation: {};
|
7759
|
-
Node: IResolversParentTypes['AccessToken'] | IResolversParentTypes['ApiExternalAccount'] | IResolversParentTypes['ApiManagement'] | IResolversParentTypes['
|
7989
|
+
Node: IResolversParentTypes['AccessToken'] | IResolversParentTypes['ApiExternalAccount'] | IResolversParentTypes['ApiManagement'] | IResolversParentTypes['OrgUserAccount'] | IResolversParentTypes['UserAccount'];
|
7760
7990
|
Observable: Scalars['Observable'];
|
7761
7991
|
OrgDetailWhere: IOrgDetailWhere;
|
7762
7992
|
OrgInvitationMembers: IOrgInvitationMembers;
|
@@ -7764,7 +7994,7 @@ export declare type IResolversParentTypes = {
|
|
7764
7994
|
OrgMembersOutput: IOrgMembersOutput;
|
7765
7995
|
OrgType: IOrgType;
|
7766
7996
|
OrgUser: IOrgUser;
|
7767
|
-
|
7997
|
+
OrgUserAccount: IOrgUserAccount;
|
7768
7998
|
OrgUserInput: IOrgUserInput;
|
7769
7999
|
Organization: IOrganization;
|
7770
8000
|
OrganizationConfigValueInput: IOrganizationConfigValueInput;
|
@@ -7789,7 +8019,6 @@ export declare type IResolversParentTypes = {
|
|
7789
8019
|
OrganizationResourceData: IOrganizationResourceData;
|
7790
8020
|
OrganizationResourceSettings: IOrganizationResourceSettings;
|
7791
8021
|
OrganizationRole: IOrganizationRole;
|
7792
|
-
OrganizationService: IOrganizationService;
|
7793
8022
|
OrganizationSettings: IOrganizationSettings;
|
7794
8023
|
OrganizationUpdateRequest: IOrganizationUpdateRequest;
|
7795
8024
|
OrganizationsDeactivatedEvent: IOrganizationsDeactivatedEvent;
|
@@ -7854,7 +8083,6 @@ export declare type IResolversParentTypes = {
|
|
7854
8083
|
TeamMember: ITeamMember;
|
7855
8084
|
TeamMemberInput: ITeamMemberInput;
|
7856
8085
|
TeamRemoveRequest: ITeamRemoveRequest;
|
7857
|
-
TeamService: ITeamService;
|
7858
8086
|
TeamType: ITeamType;
|
7859
8087
|
TeamUpdateRequest: ITeamUpdateRequest;
|
7860
8088
|
TerritorialStateInput: ITerritorialStateInput;
|
@@ -7885,11 +8113,13 @@ export declare type IResolversParentTypes = {
|
|
7885
8113
|
UserPasswordResetInput: IUserPasswordResetInput;
|
7886
8114
|
UserPreviousValues: IUserPreviousValues;
|
7887
8115
|
UserProfile: IUserProfile;
|
8116
|
+
UserSession: IUserSession;
|
7888
8117
|
UserSessionId: IUserSessionId;
|
7889
8118
|
UserSettings: IUserSettings;
|
7890
8119
|
UserState: IUserState;
|
7891
8120
|
UserToken: IUserToken;
|
7892
8121
|
UserTokenInput: IUserTokenInput;
|
8122
|
+
UsersToken: IUsersToken;
|
7893
8123
|
ViewerPoliciesInput: IViewerPoliciesInput;
|
7894
8124
|
ViewerSettingsInput: IViewerSettingsInput;
|
7895
8125
|
ViewerSettingsSubject: IViewerSettingsSubject;
|
@@ -7931,17 +8161,6 @@ export declare type IAccessTokenConnectionResolvers<ContextType = MyContext, Par
|
|
7931
8161
|
pageInfo?: Resolver<IResolversTypes['PageInfo'], ParentType, ContextType>;
|
7932
8162
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
7933
8163
|
};
|
7934
|
-
export declare type IAccountServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AccountService'] = IResolversParentTypes['AccountService']> = {
|
7935
|
-
createDefaultAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IAccountServiceCreateDefaultAccountArgs, never>>;
|
7936
|
-
createAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IAccountServiceCreateAccountArgs, never>>;
|
7937
|
-
findAccountById?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IAccountServiceFindAccountByIdArgs, never>>;
|
7938
|
-
findAccountByUser?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IAccountServiceFindAccountByUserArgs, never>>;
|
7939
|
-
updateAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IAccountServiceUpdateAccountArgs, never>>;
|
7940
|
-
deleteAccount?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IAccountServiceDeleteAccountArgs, never>>;
|
7941
|
-
dispatchUserVerificationEmail?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IAccountServiceDispatchUserVerificationEmailArgs, never>>;
|
7942
|
-
verifyUserEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IAccountServiceVerifyUserEmailVerificationTokenArgs, never>>;
|
7943
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
7944
|
-
};
|
7945
8164
|
export declare type IAccountTeamResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AccountTeam'] = IResolversParentTypes['AccountTeam']> = {
|
7946
8165
|
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
7947
8166
|
_id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -8038,6 +8257,55 @@ export declare type IAuthUserResolvers<ContextType = MyContext, ParentType exten
|
|
8038
8257
|
phoneNo?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
8039
8258
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8040
8259
|
};
|
8260
|
+
export declare type IBaseAccountServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['BaseAccountService'] = IResolversParentTypes['BaseAccountService']> = {
|
8261
|
+
createDefaultAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceCreateDefaultAccountArgs, 'user'>>;
|
8262
|
+
createAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceCreateAccountArgs, 'account'>>;
|
8263
|
+
updateUserAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceUpdateUserAccountArgs, 'user' | 'userInfo'>>;
|
8264
|
+
findAccountById?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceFindAccountByIdArgs, 'id'>>;
|
8265
|
+
findAccountByUser?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceFindAccountByUserArgs, 'id'>>;
|
8266
|
+
findAccountByEmail?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceFindAccountByEmailArgs, 'email'>>;
|
8267
|
+
getUsers?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserAccount']>>>, ParentType, ContextType, RequireFields<IBaseAccountServiceGetUsersArgs, never>>;
|
8268
|
+
updateAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceUpdateAccountArgs, 'account'>>;
|
8269
|
+
deleteAccount?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceDeleteAccountArgs, 'account'>>;
|
8270
|
+
accountOnBoarding?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceAccountOnBoardingArgs, 'input' | 'context'>>;
|
8271
|
+
verifyUserEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceVerifyUserEmailVerificationTokenArgs, 'userId' | 'token'>>;
|
8272
|
+
deleteUserAccount?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceDeleteUserAccountArgs, 'id'>>;
|
8273
|
+
resendUserEmailVerificationEmail?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceResendUserEmailVerificationEmailArgs, 'id'>>;
|
8274
|
+
dispatchUserVerificationEmail?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IBaseAccountServiceDispatchUserVerificationEmailArgs, 'email' | 'emailVerificationToken'>>;
|
8275
|
+
dispatchUserPasswordResetEmail?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IBaseAccountServiceDispatchUserPasswordResetEmailArgs, 'user' | 'token'>>;
|
8276
|
+
getUserTokenDetails?: Resolver<Maybe<IResolversTypes['UserToken']>, ParentType, ContextType, RequireFields<IBaseAccountServiceGetUserTokenDetailsArgs, 'userId' | 'type'>>;
|
8277
|
+
addUserToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceAddUserTokenArgs, 'userId' | 'token'>>;
|
8278
|
+
removeUserToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceRemoveUserTokenArgs, 'userId' | 'token'>>;
|
8279
|
+
getAllUserTokens?: Resolver<Maybe<Array<Maybe<IResolversTypes['UsersToken']>>>, ParentType, ContextType, RequireFields<IBaseAccountServiceGetAllUserTokensArgs, 'userIds' | 'tokenTypes'>>;
|
8280
|
+
initiatePasswordResetProcess?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceInitiatePasswordResetProcessArgs, 'email'>>;
|
8281
|
+
resetUserPassword?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceResetUserPasswordArgs, 'input'>>;
|
8282
|
+
validateUserEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceValidateUserEmailVerificationTokenArgs, 'code' | 'userAuth0Id' | 'email'>>;
|
8283
|
+
sendEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceSendEmailVerificationTokenArgs, 'email'>>;
|
8284
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8285
|
+
};
|
8286
|
+
export declare type IBaseOrganizationServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['BaseOrganizationService'] = IResolversParentTypes['BaseOrganizationService']> = {
|
8287
|
+
getOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceGetOrganizationArgs, never>>;
|
8288
|
+
createDefaultOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceCreateDefaultOrganizationArgs, never>>;
|
8289
|
+
getUserOrganizations?: Resolver<Maybe<Array<Maybe<IResolversTypes['Organization']>>>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceGetUserOrganizationsArgs, never>>;
|
8290
|
+
createOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceCreateOrganizationArgs, 'workspace'>>;
|
8291
|
+
updateOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceUpdateOrganizationArgs, 'workspace'>>;
|
8292
|
+
removeOrganization?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceRemoveOrganizationArgs, 'workspace'>>;
|
8293
|
+
getUserOrgRole?: Resolver<Maybe<IResolversTypes['OrgUserRole']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceGetUserOrgRoleArgs, 'orgName' | 'userId'>>;
|
8294
|
+
sendInvitation?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceSendInvitationArgs, 'request'>>;
|
8295
|
+
declineInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseOrganizationServiceDeclineInvitationArgs, 'id'>>;
|
8296
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8297
|
+
};
|
8298
|
+
export declare type IBaseTeamServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['BaseTeamService'] = IResolversParentTypes['BaseTeamService']> = {
|
8299
|
+
getTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IBaseTeamServiceGetTeamArgs, never>>;
|
8300
|
+
getUserTeams?: Resolver<Maybe<Array<Maybe<IResolversTypes['AccountTeam']>>>, ParentType, ContextType, RequireFields<IBaseTeamServiceGetUserTeamsArgs, never>>;
|
8301
|
+
createTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IBaseTeamServiceCreateTeamArgs, never>>;
|
8302
|
+
updateTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IBaseTeamServiceUpdateTeamArgs, never>>;
|
8303
|
+
addWorkspaces?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IBaseTeamServiceAddWorkspacesArgs, never>>;
|
8304
|
+
removeTeam?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseTeamServiceRemoveTeamArgs, never>>;
|
8305
|
+
createDefaultTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IBaseTeamServiceCreateDefaultTeamArgs, never>>;
|
8306
|
+
sendProjectNotification?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseTeamServiceSendProjectNotificationArgs, never>>;
|
8307
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8308
|
+
};
|
8041
8309
|
export declare type IConfigurationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Configuration'] = IResolversParentTypes['Configuration']> = {
|
8042
8310
|
__resolveType: TypeResolveFn<'DefaultConfiguration' | 'MachineConfiguration' | 'UserConfiguration' | 'OrganizationConfiguration' | 'OrganizationResourceConfiguration', ParentType, ContextType>;
|
8043
8311
|
};
|
@@ -8450,6 +8718,13 @@ export interface IJsonScalarConfig extends GraphQLScalarTypeConfig<IResolversTyp
|
|
8450
8718
|
export interface IJsonObjectScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['JSONObject'], any> {
|
8451
8719
|
name: 'JSONObject';
|
8452
8720
|
}
|
8721
|
+
export declare type ILinkedIdentityResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['LinkedIdentity'] = IResolversParentTypes['LinkedIdentity']> = {
|
8722
|
+
connection?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8723
|
+
isSocial?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8724
|
+
provider?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8725
|
+
user_id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8726
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8727
|
+
};
|
8453
8728
|
export declare type ILoginErrorResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['LoginError'] = IResolversParentTypes['LoginError']> = {
|
8454
8729
|
timeStamp?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
|
8455
8730
|
error?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
@@ -8534,8 +8809,8 @@ export declare type IMutationResolvers<ContextType = MyContext, ParentType exten
|
|
8534
8809
|
removedUserAuthIntegration?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationRemovedUserAuthIntegrationArgs, never>>;
|
8535
8810
|
renewAuthToken?: Resolver<Maybe<IResolversTypes['AuthTokens']>, ParentType, ContextType, RequireFields<IMutationRenewAuthTokenArgs, never>>;
|
8536
8811
|
resendOrganizationInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationResendOrganizationInvitationArgs, 'id'>>;
|
8537
|
-
resendUserEmailVerificationEmail?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8538
8812
|
resetUserPassword?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationResetUserPasswordArgs, 'input'>>;
|
8813
|
+
sendEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationSendEmailVerificationTokenArgs, 'email'>>;
|
8539
8814
|
sendOrganizationInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationSendOrganizationInvitationArgs, never>>;
|
8540
8815
|
sendUserPasswordResetEmail?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationSendUserPasswordResetEmailArgs, 'email'>>;
|
8541
8816
|
setSettingsValueByResource?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationSetSettingsValueByResourceArgs, never>>;
|
@@ -8555,10 +8830,11 @@ export declare type IMutationResolvers<ContextType = MyContext, ParentType exten
|
|
8555
8830
|
updateRoleValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateRoleValueArgs, 'key' | 'value'>>;
|
8556
8831
|
updateSelectedOrgResource?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateSelectedOrgResourceArgs, 'resource'>>;
|
8557
8832
|
updateUserAccount?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateUserAccountArgs, never>>;
|
8558
|
-
|
8833
|
+
validatePasswordResetOtp?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationValidatePasswordResetOtpArgs, 'email' | 'code'>>;
|
8834
|
+
validateUserEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationValidateUserEmailVerificationTokenArgs, 'code'>>;
|
8559
8835
|
};
|
8560
8836
|
export declare type INodeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Node'] = IResolversParentTypes['Node']> = {
|
8561
|
-
__resolveType: TypeResolveFn<'AccessToken' | 'ApiExternalAccount' | 'ApiManagement' | '
|
8837
|
+
__resolveType: TypeResolveFn<'AccessToken' | 'ApiExternalAccount' | 'ApiManagement' | 'OrgUserAccount' | 'UserAccount', ParentType, ContextType>;
|
8562
8838
|
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
8563
8839
|
};
|
8564
8840
|
export interface IObservableScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Observable'], any> {
|
@@ -8573,6 +8849,7 @@ export declare type IOrgMemberResolvers<ContextType = MyContext, ParentType exte
|
|
8573
8849
|
_id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8574
8850
|
userId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8575
8851
|
role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
|
8852
|
+
user?: Resolver<IResolversTypes['OrgUserAccount'], ParentType, ContextType>;
|
8576
8853
|
isSelf?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8577
8854
|
inactive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8578
8855
|
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -8591,17 +8868,19 @@ export declare type IOrgUserResolvers<ContextType = MyContext, ParentType extend
|
|
8591
8868
|
role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
|
8592
8869
|
inactive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8593
8870
|
orgName?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
8594
|
-
user?: Resolver<IResolversTypes['
|
8871
|
+
user?: Resolver<IResolversTypes['OrgUserAccount'], ParentType, ContextType>;
|
8595
8872
|
isSelf?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
8596
8873
|
crossCheckEmail?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8597
8874
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8598
8875
|
};
|
8599
|
-
export declare type
|
8876
|
+
export declare type IOrgUserAccountResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrgUserAccount'] = IResolversParentTypes['OrgUserAccount']> = {
|
8600
8877
|
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
8601
8878
|
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8602
8879
|
alias?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
8603
8880
|
username?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8604
8881
|
emailVerified?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
8882
|
+
familyName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8883
|
+
givenName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8605
8884
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8606
8885
|
};
|
8607
8886
|
export declare type IOrganizationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Organization'] = IResolversParentTypes['Organization']> = {
|
@@ -8727,18 +9006,6 @@ export declare type IOrganizationRoleResolvers<ContextType = MyContext, ParentTy
|
|
8727
9006
|
overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
|
8728
9007
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8729
9008
|
};
|
8730
|
-
export declare type IOrganizationServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrganizationService'] = IResolversParentTypes['OrganizationService']> = {
|
8731
|
-
getOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IOrganizationServiceGetOrganizationArgs, never>>;
|
8732
|
-
createDefaultOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IOrganizationServiceCreateDefaultOrganizationArgs, never>>;
|
8733
|
-
getUserOrganizations?: Resolver<Maybe<Array<Maybe<IResolversTypes['Organization']>>>, ParentType, ContextType, RequireFields<IOrganizationServiceGetUserOrganizationsArgs, never>>;
|
8734
|
-
createOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IOrganizationServiceCreateOrganizationArgs, 'workspace'>>;
|
8735
|
-
updateOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IOrganizationServiceUpdateOrganizationArgs, 'workspace'>>;
|
8736
|
-
removeOrganization?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IOrganizationServiceRemoveOrganizationArgs, 'workspace'>>;
|
8737
|
-
getUserOrgRole?: Resolver<Maybe<IResolversTypes['OrgUserRole']>, ParentType, ContextType, RequireFields<IOrganizationServiceGetUserOrgRoleArgs, 'orgName' | 'userId'>>;
|
8738
|
-
sendInvitation?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IOrganizationServiceSendInvitationArgs, 'request'>>;
|
8739
|
-
declineInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IOrganizationServiceDeclineInvitationArgs, 'id'>>;
|
8740
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8741
|
-
};
|
8742
9009
|
export declare type IOrganizationSettingsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrganizationSettings'] = IResolversParentTypes['OrganizationSettings']> = {
|
8743
9010
|
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
8744
9011
|
latestSettings?: Resolver<Maybe<IResolversTypes['Settings']>, ParentType, ContextType>;
|
@@ -8875,10 +9142,12 @@ export declare type IQueryResolvers<ContextType = MyContext, ParentType extends
|
|
8875
9142
|
externalAccounts?: Resolver<IResolversTypes['ExternalAccountConnection'], ParentType, ContextType, RequireFields<IQueryExternalAccountsArgs, never>>;
|
8876
9143
|
fetchAuth0User?: Resolver<Maybe<IResolversTypes['UserProfile']>, ParentType, ContextType, RequireFields<IQueryFetchAuth0UserArgs, 'auth0UserId'>>;
|
8877
9144
|
fetchUserAuthorizedDevices?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserDevice']>>>, ParentType, ContextType, RequireFields<IQueryFetchUserAuthorizedDevicesArgs, 'auth0UserId'>>;
|
9145
|
+
fetchUserSessions?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserSession']>>>, ParentType, ContextType>;
|
8878
9146
|
filterIntegrationConfiguration?: Resolver<Maybe<Array<Maybe<IResolversTypes['IntegrationConfiguration']>>>, ParentType, ContextType, RequireFields<IQueryFilterIntegrationConfigurationArgs, never>>;
|
8879
9147
|
getAccounts?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserAccount']>>>, ParentType, ContextType, RequireFields<IQueryGetAccountsArgs, never>>;
|
8880
9148
|
getAllCountries?: Resolver<Maybe<Array<Maybe<IResolversTypes['Country']>>>, ParentType, ContextType, RequireFields<IQueryGetAllCountriesArgs, never>>;
|
8881
9149
|
getAllIntegrationConfigurations?: Resolver<Maybe<IResolversTypes['IntegrationConfigurationsOutput']>, ParentType, ContextType, RequireFields<IQueryGetAllIntegrationConfigurationsArgs, never>>;
|
9150
|
+
getAllUsersTokens?: Resolver<Maybe<Array<Maybe<IResolversTypes['UsersToken']>>>, ParentType, ContextType, RequireFields<IQueryGetAllUsersTokensArgs, 'types'>>;
|
8882
9151
|
getConfiguration?: Resolver<Maybe<Array<Maybe<IResolversTypes['Configuration']>>>, ParentType, ContextType, RequireFields<IQueryGetConfigurationArgs, never>>;
|
8883
9152
|
getConfigurationData?: Resolver<Maybe<IResolversTypes['ConfigurationData']>, ParentType, ContextType>;
|
8884
9153
|
getConfigurationPolicies?: Resolver<Maybe<Array<Maybe<IResolversTypes['ConfigurationPolicy']>>>, ParentType, ContextType, RequireFields<IQueryGetConfigurationPoliciesArgs, never>>;
|
@@ -9075,17 +9344,6 @@ export declare type ITeamMemberResolvers<ContextType = MyContext, ParentType ext
|
|
9075
9344
|
status?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9076
9345
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9077
9346
|
};
|
9078
|
-
export declare type ITeamServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['TeamService'] = IResolversParentTypes['TeamService']> = {
|
9079
|
-
getTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<ITeamServiceGetTeamArgs, never>>;
|
9080
|
-
getUserTeams?: Resolver<Maybe<Array<Maybe<IResolversTypes['AccountTeam']>>>, ParentType, ContextType, RequireFields<ITeamServiceGetUserTeamsArgs, never>>;
|
9081
|
-
createTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<ITeamServiceCreateTeamArgs, never>>;
|
9082
|
-
updateTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<ITeamServiceUpdateTeamArgs, never>>;
|
9083
|
-
addWorkspaces?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<ITeamServiceAddWorkspacesArgs, never>>;
|
9084
|
-
removeTeam?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<ITeamServiceRemoveTeamArgs, never>>;
|
9085
|
-
createDefaultTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<ITeamServiceCreateDefaultTeamArgs, never>>;
|
9086
|
-
sendProjectNotification?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<ITeamServiceSendProjectNotificationArgs, never>>;
|
9087
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9088
|
-
};
|
9089
9347
|
export interface ITimeScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Time'], any> {
|
9090
9348
|
name: 'Time';
|
9091
9349
|
}
|
@@ -9148,7 +9406,7 @@ export declare type IUserAuth0SessionDeviceInfoResolvers<ContextType = MyContext
|
|
9148
9406
|
os?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9149
9407
|
deviceName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9150
9408
|
browserName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9151
|
-
|
9409
|
+
platform?: Resolver<IResolversTypes['DeviceInfoPlatform'], ParentType, ContextType>;
|
9152
9410
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9153
9411
|
};
|
9154
9412
|
export declare type IUserAuth0SessionInfoResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserAuth0SessionInfo'] = IResolversParentTypes['UserAuth0SessionInfo']> = {
|
@@ -9253,6 +9511,13 @@ export declare type IUserProfileResolvers<ContextType = MyContext, ParentType ex
|
|
9253
9511
|
nonce?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9254
9512
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9255
9513
|
};
|
9514
|
+
export declare type IUserSessionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserSession'] = IResolversParentTypes['UserSession']> = {
|
9515
|
+
sessionId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9516
|
+
deviceInfo?: Resolver<Maybe<IResolversTypes['UserAuth0SessionDeviceInfo']>, ParentType, ContextType>;
|
9517
|
+
lastLoginAt?: Resolver<Maybe<IResolversTypes['Date']>, ParentType, ContextType>;
|
9518
|
+
lastLoginIp?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9519
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9520
|
+
};
|
9256
9521
|
export declare type IUserSessionIdResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserSessionId'] = IResolversParentTypes['UserSessionId']> = {
|
9257
9522
|
sessionId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9258
9523
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
@@ -9273,7 +9538,7 @@ export declare type IUserStateResolvers<ContextType = MyContext, ParentType exte
|
|
9273
9538
|
isNewlyLoggedIn?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9274
9539
|
isProfileFetching?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9275
9540
|
isSocialLogin?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9276
|
-
linkedIdentities?: Resolver<Maybe<Array<Maybe<IResolversTypes['
|
9541
|
+
linkedIdentities?: Resolver<Maybe<Array<Maybe<IResolversTypes['LinkedIdentity']>>>, ParentType, ContextType>;
|
9277
9542
|
loggingInProgress?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9278
9543
|
passwordResetProgress?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9279
9544
|
passwordResetSuccess?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
@@ -9290,6 +9555,11 @@ export declare type IUserTokenResolvers<ContextType = MyContext, ParentType exte
|
|
9290
9555
|
valid?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9291
9556
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9292
9557
|
};
|
9558
|
+
export declare type IUsersTokenResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UsersToken'] = IResolversParentTypes['UsersToken']> = {
|
9559
|
+
userId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
9560
|
+
tokens?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserToken']>>>, ParentType, ContextType>;
|
9561
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9562
|
+
};
|
9293
9563
|
export declare type IViewerSettingsSubjectResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ViewerSettingsSubject'] = IResolversParentTypes['ViewerSettingsSubject']> = {
|
9294
9564
|
settingsURL?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
|
9295
9565
|
settings?: Resolver<Maybe<IResolversTypes['Preferences']>, ParentType, ContextType>;
|
@@ -9299,7 +9569,6 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9299
9569
|
AccessRole?: IAccessRoleResolvers<ContextType>;
|
9300
9570
|
AccessToken?: IAccessTokenResolvers<ContextType>;
|
9301
9571
|
AccessTokenConnection?: IAccessTokenConnectionResolvers<ContextType>;
|
9302
|
-
AccountService?: IAccountServiceResolvers<ContextType>;
|
9303
9572
|
AccountTeam?: IAccountTeamResolvers<ContextType>;
|
9304
9573
|
AdminIdeSettings?: IAdminIdeSettingsResolvers<ContextType>;
|
9305
9574
|
AnyObject?: GraphQLScalarType;
|
@@ -9312,6 +9581,9 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9312
9581
|
Auth0IdentityProfileData?: IAuth0IdentityProfileDataResolvers<ContextType>;
|
9313
9582
|
AuthTokens?: IAuthTokensResolvers<ContextType>;
|
9314
9583
|
AuthUser?: IAuthUserResolvers<ContextType>;
|
9584
|
+
BaseAccountService?: IBaseAccountServiceResolvers<ContextType>;
|
9585
|
+
BaseOrganizationService?: IBaseOrganizationServiceResolvers<ContextType>;
|
9586
|
+
BaseTeamService?: IBaseTeamServiceResolvers<ContextType>;
|
9315
9587
|
Configuration?: IConfigurationResolvers<ContextType>;
|
9316
9588
|
ConfigurationData?: IConfigurationDataResolvers<ContextType>;
|
9317
9589
|
ConfigurationExtensionInfo?: IConfigurationExtensionInfoResolvers<ContextType>;
|
@@ -9366,6 +9638,7 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9366
9638
|
InviteMember?: IInviteMemberResolvers<ContextType>;
|
9367
9639
|
JSON?: GraphQLScalarType;
|
9368
9640
|
JSONObject?: GraphQLScalarType;
|
9641
|
+
LinkedIdentity?: ILinkedIdentityResolvers<ContextType>;
|
9369
9642
|
LoginError?: ILoginErrorResolvers<ContextType>;
|
9370
9643
|
MachineConfiguration?: IMachineConfigurationResolvers<ContextType>;
|
9371
9644
|
MachineSettings?: IMachineSettingsResolvers<ContextType>;
|
@@ -9378,7 +9651,7 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9378
9651
|
OrgMember?: IOrgMemberResolvers<ContextType>;
|
9379
9652
|
OrgMembersOutput?: IOrgMembersOutputResolvers<ContextType>;
|
9380
9653
|
OrgUser?: IOrgUserResolvers<ContextType>;
|
9381
|
-
|
9654
|
+
OrgUserAccount?: IOrgUserAccountResolvers<ContextType>;
|
9382
9655
|
Organization?: IOrganizationResolvers<ContextType>;
|
9383
9656
|
OrganizationConfiguration?: IOrganizationConfigurationResolvers<ContextType>;
|
9384
9657
|
OrganizationCreatedEvent?: IOrganizationCreatedEventResolvers<ContextType>;
|
@@ -9393,7 +9666,6 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9393
9666
|
OrganizationResourceData?: IOrganizationResourceDataResolvers<ContextType>;
|
9394
9667
|
OrganizationResourceSettings?: IOrganizationResourceSettingsResolvers<ContextType>;
|
9395
9668
|
OrganizationRole?: IOrganizationRoleResolvers<ContextType>;
|
9396
|
-
OrganizationService?: IOrganizationServiceResolvers<ContextType>;
|
9397
9669
|
OrganizationSettings?: IOrganizationSettingsResolvers<ContextType>;
|
9398
9670
|
OrganizationsDeactivatedEvent?: IOrganizationsDeactivatedEventResolvers<ContextType>;
|
9399
9671
|
OrganizationsDeletedEvent?: IOrganizationsDeletedEventResolvers<ContextType>;
|
@@ -9440,7 +9712,6 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9440
9712
|
Subscription?: ISubscriptionResolvers<ContextType>;
|
9441
9713
|
TeamInvitationEmailVariables?: ITeamInvitationEmailVariablesResolvers<ContextType>;
|
9442
9714
|
TeamMember?: ITeamMemberResolvers<ContextType>;
|
9443
|
-
TeamService?: ITeamServiceResolvers<ContextType>;
|
9444
9715
|
Time?: GraphQLScalarType;
|
9445
9716
|
URI?: GraphQLScalarType;
|
9446
9717
|
URIInput?: GraphQLScalarType;
|
@@ -9459,10 +9730,12 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
9459
9730
|
UserOrg?: IUserOrgResolvers<ContextType>;
|
9460
9731
|
UserPreviousValues?: IUserPreviousValuesResolvers<ContextType>;
|
9461
9732
|
UserProfile?: IUserProfileResolvers<ContextType>;
|
9733
|
+
UserSession?: IUserSessionResolvers<ContextType>;
|
9462
9734
|
UserSessionId?: IUserSessionIdResolvers<ContextType>;
|
9463
9735
|
UserSettings?: IUserSettingsResolvers<ContextType>;
|
9464
9736
|
UserState?: IUserStateResolvers<ContextType>;
|
9465
9737
|
UserToken?: IUserTokenResolvers<ContextType>;
|
9738
|
+
UsersToken?: IUsersTokenResolvers<ContextType>;
|
9466
9739
|
ViewerSettingsSubject?: IViewerSettingsSubjectResolvers<ContextType>;
|
9467
9740
|
};
|
9468
9741
|
export declare type IDirectiveResolvers<ContextType = MyContext> = {
|