@adminide-stack/core 1.0.201-alpha.1 → 1.0.201-alpha.4
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/constants/index.js +5 -1
- package/lib/constants/index.js.map +1 -1
- package/lib/core/configurations/events/abstract-configuration-change-event.js +1 -1
- package/lib/core/configurations/events/abstract-configuration-change-event.js.map +1 -1
- package/lib/core/configurations/events/index.js +5 -1
- package/lib/core/configurations/events/index.js.map +1 -1
- package/lib/core/configurations/helpers/configuration.js +14 -14
- package/lib/core/configurations/helpers/configuration.js.map +1 -1
- package/lib/core/configurations/helpers/index.js +5 -1
- package/lib/core/configurations/helpers/index.js.map +1 -1
- package/lib/core/configurations/index.js +5 -1
- package/lib/core/configurations/index.js.map +1 -1
- package/lib/core/configurations/models/configuration-model.js +3 -3
- package/lib/core/configurations/models/configuration-model.js.map +1 -1
- package/lib/core/configurations/models/index.js +5 -1
- package/lib/core/configurations/models/index.js.map +1 -1
- package/lib/core/event.test.js +2 -2
- package/lib/core/event.test.js.map +1 -1
- package/lib/core/index.js +5 -1
- package/lib/core/index.js.map +1 -1
- package/lib/core/organization/configuration.js +6 -6
- package/lib/core/organization/configuration.js.map +1 -1
- package/lib/core/organization/helpers/index.js +5 -1
- package/lib/core/organization/helpers/index.js.map +1 -1
- package/lib/core/organization/index.js +5 -1
- package/lib/core/organization/index.js.map +1 -1
- package/lib/core/organization/organization.js +3 -3
- package/lib/core/organization/organization.js.map +1 -1
- package/lib/enums/index.js +5 -1
- package/lib/enums/index.js.map +1 -1
- package/lib/errors/index.js +5 -1
- package/lib/errors/index.js.map +1 -1
- package/lib/index.js +5 -1
- package/lib/index.js.map +1 -1
- package/lib/interfaces/configuration/configuration.js +6 -4
- package/lib/interfaces/configuration/configuration.js.map +1 -1
- package/lib/interfaces/configuration/index.js +5 -1
- package/lib/interfaces/configuration/index.js.map +1 -1
- package/lib/interfaces/environment/index.js +5 -1
- package/lib/interfaces/environment/index.js.map +1 -1
- package/lib/interfaces/generated/generated-models.d.ts +1074 -1010
- package/lib/interfaces/generated/generated-models.js +13 -9
- package/lib/interfaces/generated/generated-models.js.map +1 -1
- package/lib/interfaces/generated/index.js +5 -1
- package/lib/interfaces/generated/index.js.map +1 -1
- package/lib/interfaces/index.js +5 -1
- package/lib/interfaces/index.js.map +1 -1
- package/lib/interfaces/log/index.js +5 -1
- package/lib/interfaces/log/index.js.map +1 -1
- package/lib/interfaces/organization/index.js +5 -1
- package/lib/interfaces/organization/index.js.map +1 -1
- package/lib/modules/account-api/index.js +5 -1
- package/lib/modules/account-api/index.js.map +1 -1
- package/lib/modules/billing-api/index.js +5 -1
- package/lib/modules/billing-api/index.js.map +1 -1
- package/lib/modules/index.js +5 -1
- package/lib/modules/index.js.map +1 -1
- package/lib/services/abstract-configuration.js +3 -3
- package/lib/services/abstract-configuration.js.map +1 -1
- package/lib/services/abstract-organization-context-service.js +9 -9
- package/lib/services/abstract-organization-context-service.js.map +1 -1
- package/lib/services/index.js +5 -1
- package/lib/services/index.js.map +1 -1
- package/lib/utils/configuration-utils.js +2 -2
- package/lib/utils/configuration-utils.js.map +1 -1
- package/lib/utils/generate-uri.js +7 -7
- package/lib/utils/generate-uri.js.map +1 -1
- package/lib/utils/generated-settings-id.js +2 -2
- package/lib/utils/generated-settings-id.js.map +1 -1
- package/lib/utils/index.js +5 -1
- package/lib/utils/index.js.map +1 -1
- package/lib/utils/omit-deep.js +1 -1
- package/lib/utils/omit-deep.js.map +1 -1
- package/lib/utils/roles-utils.js +1 -1
- package/lib/utils/roles-utils.js.map +1 -1
- package/package.json +2 -2
@@ -34,14 +34,14 @@ export declare type Scalars = {
|
|
34
34
|
Int: number;
|
35
35
|
Float: number;
|
36
36
|
AnyObject: any;
|
37
|
-
URI: URI;
|
38
37
|
Date: any;
|
39
38
|
DateTime: any;
|
40
39
|
JSON: any;
|
41
|
-
URIInput: URI | UriComponents;
|
42
40
|
JSONObject: any;
|
43
41
|
Observable: any;
|
44
42
|
Time: any;
|
43
|
+
URI: URI;
|
44
|
+
URIInput: URI | UriComponents;
|
45
45
|
};
|
46
46
|
export declare type IAccessRole = IDefaultRole | IOrganizationRole | IResourceRole | IApplicationRolePermission;
|
47
47
|
export declare const enum IAccountBroadcasterActions {
|
@@ -312,7 +312,8 @@ export declare const enum IAuthErrorCodes {
|
|
312
312
|
export declare type IAuthTokens = {
|
313
313
|
__typename?: 'AuthTokens';
|
314
314
|
idToken?: Maybe<Scalars['String']>;
|
315
|
-
|
315
|
+
sessionId?: Maybe<Scalars['String']>;
|
316
|
+
accessToken?: Maybe<Scalars['String']>;
|
316
317
|
};
|
317
318
|
/** AuthUser */
|
318
319
|
export declare type IAuthUser = IIUser & {
|
@@ -602,10 +603,7 @@ export declare type IContributionSettings = {
|
|
602
603
|
/** dependency to parent setting key */
|
603
604
|
settingDependencies?: Maybe<Array<Maybe<Scalars['String']>>>;
|
604
605
|
allKeysAreBoolean?: Maybe<Scalars['Boolean']>;
|
605
|
-
/**
|
606
|
-
* Edit Presentation for controlling whether a single-line inputbox or multi-line
|
607
|
-
* textarea is rendered for the string setting in Settings editor
|
608
|
-
*/
|
606
|
+
/** Edit Presentation for controlling whether a single-line inputbox or multi-line textarea is rendered for the string setting in Settings editor */
|
609
607
|
editPresentation?: Maybe<IEditPresentationTypes>;
|
610
608
|
defaultValueSource?: Maybe<Scalars['AnyObject']>;
|
611
609
|
isLanguageTagSetting?: Maybe<Scalars['Boolean']>;
|
@@ -706,6 +704,12 @@ export declare type IDefaultSettings = IISettingsSubject & {
|
|
706
704
|
*/
|
707
705
|
settingsCascade: ISettingsCascade;
|
708
706
|
};
|
707
|
+
export declare type IDeviceInfoInput = {
|
708
|
+
os: Scalars['String'];
|
709
|
+
deviceName?: Maybe<Scalars['String']>;
|
710
|
+
browserName?: Maybe<Scalars['String']>;
|
711
|
+
isMobile: Scalars['Boolean'];
|
712
|
+
};
|
709
713
|
export declare const enum IEActivityScopes {
|
710
714
|
User = "User",
|
711
715
|
Team = "Team",
|
@@ -878,6 +882,82 @@ export declare type IICountry = {
|
|
878
882
|
export declare type IIEventWithContext = {
|
879
883
|
userContext?: Maybe<IUserContext>;
|
880
884
|
};
|
885
|
+
export declare type IIOnBoardingParams = {
|
886
|
+
org?: Maybe<IOrgType>;
|
887
|
+
team?: Maybe<ITeamType>;
|
888
|
+
};
|
889
|
+
/** Organization Template to be used */
|
890
|
+
export declare type IIOrgUser = {
|
891
|
+
role?: Maybe<IApplicationRoles>;
|
892
|
+
isSelf: Scalars['Boolean'];
|
893
|
+
orgName: Scalars['String'];
|
894
|
+
};
|
895
|
+
export declare type IIResourceData = {
|
896
|
+
/** The associated URI for this resource. */
|
897
|
+
uri?: Maybe<Scalars['URI']>;
|
898
|
+
/** The name of this resource. Defaults to the basename its [uri-path](#Uri.path) */
|
899
|
+
name?: Maybe<Scalars['String']>;
|
900
|
+
/** The ordinal number of this resource. */
|
901
|
+
index?: Maybe<Scalars['Int']>;
|
902
|
+
};
|
903
|
+
export declare type IIResourceUserRole = {
|
904
|
+
role?: Maybe<Scalars['String']>;
|
905
|
+
name?: Maybe<Scalars['String']>;
|
906
|
+
isSelf?: Maybe<Scalars['Boolean']>;
|
907
|
+
orgName?: Maybe<Scalars['String']>;
|
908
|
+
};
|
909
|
+
export declare type IIResourceUtilizationSettings = {
|
910
|
+
subTopic?: Maybe<Scalars['String']>;
|
911
|
+
adminApiNamespace?: Maybe<Scalars['String']>;
|
912
|
+
};
|
913
|
+
/**
|
914
|
+
* ISettingsSubject is something that can have settings: a site ("global settings", which is different from "site
|
915
|
+
* configuration"), an organization, or a user.
|
916
|
+
*/
|
917
|
+
export declare type IISettingsSubject = {
|
918
|
+
/** The ID. */
|
919
|
+
id?: Maybe<Scalars['ID']>;
|
920
|
+
/** The latest settings. */
|
921
|
+
latestSettings?: Maybe<ISettings>;
|
922
|
+
/** The URL to the settings. */
|
923
|
+
settingsURL: Scalars['URI'];
|
924
|
+
/** Whether the viewer can modify the subject's settings. */
|
925
|
+
viewerCanAdminister: Scalars['Boolean'];
|
926
|
+
/**
|
927
|
+
* All settings for this subject, and the individual levels in the settings cascade (global > organization > user)
|
928
|
+
* that were merged to produce the final merged settings.
|
929
|
+
*/
|
930
|
+
settingsCascade: ISettingsCascade;
|
931
|
+
};
|
932
|
+
export declare type IISshKeySettings = {
|
933
|
+
subTopic?: Maybe<Scalars['String']>;
|
934
|
+
sshNamespace?: Maybe<Scalars['String']>;
|
935
|
+
};
|
936
|
+
/** Territorial State */
|
937
|
+
export declare type IITerritorialState = {
|
938
|
+
id: Scalars['ID'];
|
939
|
+
name: Scalars['String'];
|
940
|
+
country: IICountry;
|
941
|
+
location?: Maybe<IGeoLocation>;
|
942
|
+
createdAt: Scalars['Date'];
|
943
|
+
updatedAt?: Maybe<Scalars['Date']>;
|
944
|
+
};
|
945
|
+
export declare type IIUser = {
|
946
|
+
id: Scalars['ID'];
|
947
|
+
username?: Maybe<Scalars['String']>;
|
948
|
+
email?: Maybe<Scalars['String']>;
|
949
|
+
};
|
950
|
+
export declare type IIUserMetadata = {
|
951
|
+
last_name?: Maybe<Scalars['String']>;
|
952
|
+
first_name?: Maybe<Scalars['String']>;
|
953
|
+
username?: Maybe<Scalars['String']>;
|
954
|
+
phone_number?: Maybe<Scalars['String']>;
|
955
|
+
work_email?: Maybe<Scalars['String']>;
|
956
|
+
country?: Maybe<Scalars['String']>;
|
957
|
+
company_name?: Maybe<Scalars['String']>;
|
958
|
+
dob?: Maybe<Scalars['Date']>;
|
959
|
+
zip_code?: Maybe<Scalars['Int']>;
|
960
|
+
};
|
881
961
|
export declare type IIntegraitonConfigurationId = {
|
882
962
|
__typename?: 'IntegraitonConfigurationId';
|
883
963
|
id?: Maybe<Scalars['String']>;
|
@@ -931,10 +1011,6 @@ export declare const enum IInviteStatus {
|
|
931
1011
|
ACCEPTED = "ACCEPTED",
|
932
1012
|
DECLINED = "DECLINED"
|
933
1013
|
}
|
934
|
-
export declare type IInvoiceCreatedEvent = {
|
935
|
-
__typename?: 'InvoiceCreatedEvent';
|
936
|
-
createdInvoice?: Maybe<IInvoiceType>;
|
937
|
-
};
|
938
1014
|
export declare type IInvoiceCreateRequest = {
|
939
1015
|
comment?: Maybe<Scalars['String']>;
|
940
1016
|
currency?: Maybe<Scalars['String']>;
|
@@ -957,6 +1033,10 @@ export declare type IInvoiceCreateRequest = {
|
|
957
1033
|
to?: Maybe<ICustomerInvoice_Input>;
|
958
1034
|
total?: Maybe<Scalars['Float']>;
|
959
1035
|
};
|
1036
|
+
export declare type IInvoiceCreatedEvent = {
|
1037
|
+
__typename?: 'InvoiceCreatedEvent';
|
1038
|
+
createdInvoice?: Maybe<IInvoiceType>;
|
1039
|
+
};
|
960
1040
|
export declare type IInvoiceDeletedEvent = {
|
961
1041
|
__typename?: 'InvoiceDeletedEvent';
|
962
1042
|
deletedInvoice?: Maybe<IInvoiceType>;
|
@@ -1022,82 +1102,6 @@ export declare type IInvoiceUpdateRequest = {
|
|
1022
1102
|
to?: Maybe<ICustomerInvoice_Input>;
|
1023
1103
|
total?: Maybe<Scalars['Float']>;
|
1024
1104
|
};
|
1025
|
-
export declare type IIOnBoardingParams = {
|
1026
|
-
org?: Maybe<IOrgType>;
|
1027
|
-
team?: Maybe<ITeamType>;
|
1028
|
-
};
|
1029
|
-
/** Organization Template to be used */
|
1030
|
-
export declare type IIOrgUser = {
|
1031
|
-
role?: Maybe<IApplicationRoles>;
|
1032
|
-
isSelf: Scalars['Boolean'];
|
1033
|
-
orgName: Scalars['String'];
|
1034
|
-
};
|
1035
|
-
export declare type IIResourceData = {
|
1036
|
-
/** The associated URI for this resource. */
|
1037
|
-
uri?: Maybe<Scalars['URI']>;
|
1038
|
-
/** The name of this resource. Defaults to the basename its [uri-path](#Uri.path) */
|
1039
|
-
name?: Maybe<Scalars['String']>;
|
1040
|
-
/** The ordinal number of this resource. */
|
1041
|
-
index?: Maybe<Scalars['Int']>;
|
1042
|
-
};
|
1043
|
-
export declare type IIResourceUserRole = {
|
1044
|
-
role?: Maybe<Scalars['String']>;
|
1045
|
-
name?: Maybe<Scalars['String']>;
|
1046
|
-
isSelf?: Maybe<Scalars['Boolean']>;
|
1047
|
-
orgName?: Maybe<Scalars['String']>;
|
1048
|
-
};
|
1049
|
-
export declare type IIResourceUtilizationSettings = {
|
1050
|
-
subTopic?: Maybe<Scalars['String']>;
|
1051
|
-
adminApiNamespace?: Maybe<Scalars['String']>;
|
1052
|
-
};
|
1053
|
-
/**
|
1054
|
-
* ISettingsSubject is something that can have settings: a site ("global settings", which is different from "site
|
1055
|
-
* configuration"), an organization, or a user.
|
1056
|
-
*/
|
1057
|
-
export declare type IISettingsSubject = {
|
1058
|
-
/** The ID. */
|
1059
|
-
id?: Maybe<Scalars['ID']>;
|
1060
|
-
/** The latest settings. */
|
1061
|
-
latestSettings?: Maybe<ISettings>;
|
1062
|
-
/** The URL to the settings. */
|
1063
|
-
settingsURL: Scalars['URI'];
|
1064
|
-
/** Whether the viewer can modify the subject's settings. */
|
1065
|
-
viewerCanAdminister: Scalars['Boolean'];
|
1066
|
-
/**
|
1067
|
-
* All settings for this subject, and the individual levels in the settings cascade (global > organization > user)
|
1068
|
-
* that were merged to produce the final merged settings.
|
1069
|
-
*/
|
1070
|
-
settingsCascade: ISettingsCascade;
|
1071
|
-
};
|
1072
|
-
export declare type IISshKeySettings = {
|
1073
|
-
subTopic?: Maybe<Scalars['String']>;
|
1074
|
-
sshNamespace?: Maybe<Scalars['String']>;
|
1075
|
-
};
|
1076
|
-
/** Territorial State */
|
1077
|
-
export declare type IITerritorialState = {
|
1078
|
-
id: Scalars['ID'];
|
1079
|
-
name: Scalars['String'];
|
1080
|
-
country: IICountry;
|
1081
|
-
location?: Maybe<IGeoLocation>;
|
1082
|
-
createdAt: Scalars['Date'];
|
1083
|
-
updatedAt?: Maybe<Scalars['Date']>;
|
1084
|
-
};
|
1085
|
-
export declare type IIUser = {
|
1086
|
-
id: Scalars['ID'];
|
1087
|
-
username?: Maybe<Scalars['String']>;
|
1088
|
-
email?: Maybe<Scalars['String']>;
|
1089
|
-
};
|
1090
|
-
export declare type IIUserMetadata = {
|
1091
|
-
last_name?: Maybe<Scalars['String']>;
|
1092
|
-
first_name?: Maybe<Scalars['String']>;
|
1093
|
-
username?: Maybe<Scalars['String']>;
|
1094
|
-
phone_number?: Maybe<Scalars['String']>;
|
1095
|
-
work_email?: Maybe<Scalars['String']>;
|
1096
|
-
country?: Maybe<Scalars['String']>;
|
1097
|
-
company_name?: Maybe<Scalars['String']>;
|
1098
|
-
dob?: Maybe<Scalars['Date']>;
|
1099
|
-
zip_code?: Maybe<Scalars['Int']>;
|
1100
|
-
};
|
1101
1105
|
/**
|
1102
1106
|
* A segment of a key path that locates a nested JSON value in a root JSON value. Exactly one field in each
|
1103
1107
|
* KeyPathSegment must be non-null.
|
@@ -1252,12 +1256,12 @@ export declare type IMutation = {
|
|
1252
1256
|
createOrganization?: Maybe<IOrganization>;
|
1253
1257
|
createTask?: Maybe<Scalars['Boolean']>;
|
1254
1258
|
createTeam?: Maybe<IAccountTeam>;
|
1255
|
-
createTokens?: Maybe<IAuthTokens>;
|
1256
1259
|
declineOrganizationInvitation?: Maybe<Scalars['Boolean']>;
|
1257
1260
|
deleteIntegrationConfiguration?: Maybe<Scalars['Boolean']>;
|
1258
1261
|
deleteUserAccount?: Maybe<Scalars['Boolean']>;
|
1259
1262
|
deleteUserAuthorizedDevice?: Maybe<Scalars['Boolean']>;
|
1260
1263
|
dummy?: Maybe<Scalars['Int']>;
|
1264
|
+
initializeAuthorizationCodeFlow?: Maybe<IAuthTokens>;
|
1261
1265
|
initializeOrgNameInContext?: Maybe<Scalars['Boolean']>;
|
1262
1266
|
initializeTeamInContext?: Maybe<Scalars['Boolean']>;
|
1263
1267
|
initiateConfigurationValue?: Maybe<Scalars['Boolean']>;
|
@@ -1272,6 +1276,7 @@ export declare type IMutation = {
|
|
1272
1276
|
removeTask?: Maybe<Scalars['Boolean']>;
|
1273
1277
|
removeTeam?: Maybe<Scalars['Boolean']>;
|
1274
1278
|
removeTeamMember?: Maybe<Scalars['Boolean']>;
|
1279
|
+
removeUserAuthSession?: Maybe<Scalars['Boolean']>;
|
1275
1280
|
renewAuthToken?: Maybe<IAuthTokens>;
|
1276
1281
|
resendOrganizationInvitation?: Maybe<Scalars['Boolean']>;
|
1277
1282
|
resendUserEmailVerificationEmail?: Maybe<Scalars['Boolean']>;
|
@@ -1375,9 +1380,6 @@ export declare type IMutationcreateTaskArgs = {
|
|
1375
1380
|
export declare type IMutationcreateTeamArgs = {
|
1376
1381
|
request: ITeamCreationRequest;
|
1377
1382
|
};
|
1378
|
-
export declare type IMutationcreateTokensArgs = {
|
1379
|
-
code?: Maybe<Scalars['String']>;
|
1380
|
-
};
|
1381
1383
|
export declare type IMutationdeclineOrganizationInvitationArgs = {
|
1382
1384
|
id: Scalars['ID'];
|
1383
1385
|
};
|
@@ -1387,6 +1389,10 @@ export declare type IMutationdeleteIntegrationConfigurationArgs = {
|
|
1387
1389
|
export declare type IMutationdeleteUserAuthorizedDeviceArgs = {
|
1388
1390
|
deviceId: Scalars['String'];
|
1389
1391
|
};
|
1392
|
+
export declare type IMutationinitializeAuthorizationCodeFlowArgs = {
|
1393
|
+
deviceInfo: IDeviceInfoInput;
|
1394
|
+
code?: Maybe<Scalars['String']>;
|
1395
|
+
};
|
1390
1396
|
export declare type IMutationinitializeOrgNameInContextArgs = {
|
1391
1397
|
orgName?: Maybe<Scalars['String']>;
|
1392
1398
|
};
|
@@ -1430,8 +1436,11 @@ export declare type IMutationremoveTeamMemberArgs = {
|
|
1430
1436
|
teamName: Scalars['String'];
|
1431
1437
|
memberId: Scalars['String'];
|
1432
1438
|
};
|
1439
|
+
export declare type IMutationremoveUserAuthSessionArgs = {
|
1440
|
+
sessionId?: Maybe<Scalars['String']>;
|
1441
|
+
};
|
1433
1442
|
export declare type IMutationrenewAuthTokenArgs = {
|
1434
|
-
|
1443
|
+
sessionId?: Maybe<Scalars['String']>;
|
1435
1444
|
};
|
1436
1445
|
export declare type IMutationresendOrganizationInvitationArgs = {
|
1437
1446
|
id: Scalars['ID'];
|
@@ -1565,13 +1574,13 @@ export declare type IMutationupsertProjectThroughIntegrationArgs = {
|
|
1565
1574
|
export declare type IMutationverifyUserEmailVerificationTokenArgs = {
|
1566
1575
|
token?: Maybe<Scalars['String']>;
|
1567
1576
|
};
|
1568
|
-
export declare type
|
1577
|
+
export declare type INameType = {
|
1578
|
+
__typename?: 'NameType';
|
1569
1579
|
salutation?: Maybe<Scalars['String']>;
|
1570
1580
|
firstName?: Maybe<Scalars['String']>;
|
1571
1581
|
lastName?: Maybe<Scalars['String']>;
|
1572
1582
|
};
|
1573
|
-
export declare type
|
1574
|
-
__typename?: 'NameType';
|
1583
|
+
export declare type IName_Input = {
|
1575
1584
|
salutation?: Maybe<Scalars['String']>;
|
1576
1585
|
firstName?: Maybe<Scalars['String']>;
|
1577
1586
|
lastName?: Maybe<Scalars['String']>;
|
@@ -1581,6 +1590,55 @@ export declare type INode = {
|
|
1581
1590
|
/** The ID of the node. */
|
1582
1591
|
id: Scalars['ID'];
|
1583
1592
|
};
|
1593
|
+
export declare type IOrgDetailWhere = {
|
1594
|
+
id?: Maybe<Scalars['String']>;
|
1595
|
+
name?: Maybe<Scalars['String']>;
|
1596
|
+
};
|
1597
|
+
export declare type IOrgMember = {
|
1598
|
+
__typename?: 'OrgMember';
|
1599
|
+
_id?: Maybe<Scalars['String']>;
|
1600
|
+
userId?: Maybe<Scalars['String']>;
|
1601
|
+
role?: Maybe<IApplicationRoles>;
|
1602
|
+
inactive?: Maybe<Scalars['Boolean']>;
|
1603
|
+
name?: Maybe<Scalars['String']>;
|
1604
|
+
email?: Maybe<Scalars['String']>;
|
1605
|
+
crossCheckEmail?: Maybe<Scalars['String']>;
|
1606
|
+
teamNames?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1607
|
+
};
|
1608
|
+
export declare type IOrgType = {
|
1609
|
+
name?: Maybe<Scalars['String']>;
|
1610
|
+
settings?: Maybe<Scalars['AnyObject']>;
|
1611
|
+
};
|
1612
|
+
export declare type IOrgUser = IIOrgUser & {
|
1613
|
+
__typename?: 'OrgUser';
|
1614
|
+
userId: Scalars['String'];
|
1615
|
+
role?: Maybe<IApplicationRoles>;
|
1616
|
+
inactive?: Maybe<Scalars['Boolean']>;
|
1617
|
+
orgName: Scalars['String'];
|
1618
|
+
user: IOrgUserAccunt;
|
1619
|
+
isSelf: Scalars['Boolean'];
|
1620
|
+
crossCheckEmail?: Maybe<Scalars['String']>;
|
1621
|
+
};
|
1622
|
+
export declare type IOrgUserAccunt = INode & {
|
1623
|
+
__typename?: 'OrgUserAccunt';
|
1624
|
+
id: Scalars['ID'];
|
1625
|
+
email?: Maybe<Scalars['String']>;
|
1626
|
+
alias?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1627
|
+
username?: Maybe<Scalars['String']>;
|
1628
|
+
emailVerified?: Maybe<Scalars['Boolean']>;
|
1629
|
+
};
|
1630
|
+
export declare const enum IOrgUserRole {
|
1631
|
+
BILLING_LEADER = "BILLING_LEADER",
|
1632
|
+
MEMBER = "MEMBER",
|
1633
|
+
ADMIN = "ADMIN",
|
1634
|
+
OWNER = "OWNER"
|
1635
|
+
}
|
1636
|
+
export declare type IOrgUser_Input = {
|
1637
|
+
userId?: Maybe<Scalars['String']>;
|
1638
|
+
role?: Maybe<IApplicationRoles>;
|
1639
|
+
inactive?: Maybe<Scalars['Boolean']>;
|
1640
|
+
crossCheckEmail?: Maybe<Scalars['String']>;
|
1641
|
+
};
|
1584
1642
|
/**
|
1585
1643
|
* OrganizationInvitationRole: The possible organization invitation roles.
|
1586
1644
|
*
|
@@ -1644,27 +1702,9 @@ export declare type IOrganization = {
|
|
1644
1702
|
stripeSubscriptionId?: Maybe<Scalars['String']>;
|
1645
1703
|
invitations?: Maybe<Array<Maybe<IOrganizationInvitation>>>;
|
1646
1704
|
};
|
1647
|
-
export declare type
|
1648
|
-
|
1649
|
-
|
1650
|
-
title?: Maybe<Scalars['String']>;
|
1651
|
-
description?: Maybe<Scalars['String']>;
|
1652
|
-
picture?: Maybe<Scalars['String']>;
|
1653
|
-
stripeId?: Maybe<Scalars['String']>;
|
1654
|
-
namespace?: Maybe<Scalars['String']>;
|
1655
|
-
orgUserCount?: Maybe<Scalars['Int']>;
|
1656
|
-
createdAt?: Maybe<Scalars['DateTime']>;
|
1657
|
-
updatedAt?: Maybe<Scalars['DateTime']>;
|
1658
|
-
orgMembers?: Maybe<Array<Maybe<IOrgUser_Input>>>;
|
1659
|
-
periodStart?: Maybe<Scalars['DateTime']>;
|
1660
|
-
periodStop?: Maybe<Scalars['DateTime']>;
|
1661
|
-
billingLeaders?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1662
|
-
billingEmail?: Maybe<Scalars['String']>;
|
1663
|
-
isBillingLeader?: Maybe<Scalars['Boolean']>;
|
1664
|
-
mainBilingLeaderId?: Maybe<Scalars['String']>;
|
1665
|
-
stripeSubscriptionId?: Maybe<Scalars['String']>;
|
1666
|
-
invitations?: Maybe<Array<Maybe<IOrganizationInvitation_Input>>>;
|
1667
|
-
status?: Maybe<Scalars['String']>;
|
1705
|
+
export declare type IOrganizationConfigValue_Input = {
|
1706
|
+
section?: Maybe<Scalars['String']>;
|
1707
|
+
overrides?: Maybe<IConfigurationOverrides_Input>;
|
1668
1708
|
};
|
1669
1709
|
export declare type IOrganizationConfiguration = IIConfigurationModel & {
|
1670
1710
|
__typename?: 'OrganizationConfiguration';
|
@@ -1676,10 +1716,6 @@ export declare type IOrganizationConfiguration = IIConfigurationModel & {
|
|
1676
1716
|
keys?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1677
1717
|
overrides?: Maybe<Array<Maybe<IOverrides>>>;
|
1678
1718
|
};
|
1679
|
-
export declare type IOrganizationConfigValue_Input = {
|
1680
|
-
section?: Maybe<Scalars['String']>;
|
1681
|
-
overrides?: Maybe<IConfigurationOverrides_Input>;
|
1682
|
-
};
|
1683
1719
|
/** Subscription event for context */
|
1684
1720
|
export declare const enum IOrganizationContextPubSubEvents {
|
1685
1721
|
OrganizationContextUpdated = "OrganizationContextUpdated",
|
@@ -1687,11 +1723,6 @@ export declare const enum IOrganizationContextPubSubEvents {
|
|
1687
1723
|
OrganizationConfigurationUpdated = "OrganizationConfigurationUpdated",
|
1688
1724
|
OrganizationPermissionUpdated = "OrganizationPermissionUpdated"
|
1689
1725
|
}
|
1690
|
-
export declare type IOrganizationCreatedEvent = IIEventWithContext & {
|
1691
|
-
__typename?: 'OrganizationCreatedEvent';
|
1692
|
-
createdOrganization?: Maybe<IOrganization>;
|
1693
|
-
userContext?: Maybe<IUserContext>;
|
1694
|
-
};
|
1695
1726
|
export declare type IOrganizationCreateRequest = {
|
1696
1727
|
name?: Maybe<Scalars['String']>;
|
1697
1728
|
title?: Maybe<Scalars['String']>;
|
@@ -1707,6 +1738,11 @@ export declare type IOrganizationCreateRequest = {
|
|
1707
1738
|
stripeSubscriptionId?: Maybe<Scalars['String']>;
|
1708
1739
|
invitations?: Maybe<Array<Maybe<IOrganizationInvitation_Input>>>;
|
1709
1740
|
};
|
1741
|
+
export declare type IOrganizationCreatedEvent = IIEventWithContext & {
|
1742
|
+
__typename?: 'OrganizationCreatedEvent';
|
1743
|
+
createdOrganization?: Maybe<IOrganization>;
|
1744
|
+
userContext?: Maybe<IUserContext>;
|
1745
|
+
};
|
1710
1746
|
export declare type IOrganizationData = {
|
1711
1747
|
__typename?: 'OrganizationData';
|
1712
1748
|
/** The unique identifier of the workspace. */
|
@@ -1743,19 +1779,6 @@ export declare type IOrganizationInvitation = {
|
|
1743
1779
|
acceptedAt?: Maybe<Scalars['DateTime']>;
|
1744
1780
|
tokenExpiration?: Maybe<Scalars['DateTime']>;
|
1745
1781
|
};
|
1746
|
-
export declare type IOrganizationInvitation_Input = {
|
1747
|
-
email?: Maybe<Scalars['String']>;
|
1748
|
-
teamId?: Maybe<Scalars['String']>;
|
1749
|
-
role?: Maybe<IApplicationRoles>;
|
1750
|
-
active?: Maybe<Scalars['Boolean']>;
|
1751
|
-
fullName?: Maybe<Scalars['String']>;
|
1752
|
-
inviteCount?: Maybe<Scalars['Int']>;
|
1753
|
-
invitedBy?: Maybe<Scalars['String']>;
|
1754
|
-
createdAt?: Maybe<Scalars['DateTime']>;
|
1755
|
-
updatedAt?: Maybe<Scalars['DateTime']>;
|
1756
|
-
acceptedAt?: Maybe<Scalars['DateTime']>;
|
1757
|
-
tokenExpiration?: Maybe<Scalars['DateTime']>;
|
1758
|
-
};
|
1759
1782
|
export declare type IOrganizationInvitationDecode = {
|
1760
1783
|
__typename?: 'OrganizationInvitationDecode';
|
1761
1784
|
orgName?: Maybe<Scalars['String']>;
|
@@ -1771,6 +1794,19 @@ export declare type IOrganizationInvitationRequest = {
|
|
1771
1794
|
orgName?: Maybe<Scalars['String']>;
|
1772
1795
|
role?: Maybe<Scalars['String']>;
|
1773
1796
|
};
|
1797
|
+
export declare type IOrganizationInvitation_Input = {
|
1798
|
+
email?: Maybe<Scalars['String']>;
|
1799
|
+
teamId?: Maybe<Scalars['String']>;
|
1800
|
+
role?: Maybe<IApplicationRoles>;
|
1801
|
+
active?: Maybe<Scalars['Boolean']>;
|
1802
|
+
fullName?: Maybe<Scalars['String']>;
|
1803
|
+
inviteCount?: Maybe<Scalars['Int']>;
|
1804
|
+
invitedBy?: Maybe<Scalars['String']>;
|
1805
|
+
createdAt?: Maybe<Scalars['DateTime']>;
|
1806
|
+
updatedAt?: Maybe<Scalars['DateTime']>;
|
1807
|
+
acceptedAt?: Maybe<Scalars['DateTime']>;
|
1808
|
+
tokenExpiration?: Maybe<Scalars['DateTime']>;
|
1809
|
+
};
|
1774
1810
|
export declare type IOrganizationMember = {
|
1775
1811
|
__typename?: 'OrganizationMember';
|
1776
1812
|
id?: Maybe<Scalars['String']>;
|
@@ -1837,14 +1873,6 @@ export declare type IOrganizationRole = IIConfigurationModel & {
|
|
1837
1873
|
keys?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1838
1874
|
overrides?: Maybe<Array<Maybe<IOverrides>>>;
|
1839
1875
|
};
|
1840
|
-
export declare type IOrganizationsDeactivatedEvent = {
|
1841
|
-
__typename?: 'OrganizationsDeactivatedEvent';
|
1842
|
-
deactivatedOrganizationsIds?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1843
|
-
};
|
1844
|
-
export declare type IOrganizationsDeletedEvent = {
|
1845
|
-
__typename?: 'OrganizationsDeletedEvent';
|
1846
|
-
deletedOrganizationIds?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1847
|
-
};
|
1848
1876
|
export declare type IOrganizationService = {
|
1849
1877
|
__typename?: 'OrganizationService';
|
1850
1878
|
getOrganization?: Maybe<IOrganization>;
|
@@ -1926,55 +1954,36 @@ export declare type IOrganizationUpdateRequest = {
|
|
1926
1954
|
requestedUserId?: Maybe<Scalars['String']>;
|
1927
1955
|
payload?: Maybe<IOrganization_Input>;
|
1928
1956
|
};
|
1929
|
-
export declare type
|
1930
|
-
id?: Maybe<Scalars['
|
1931
|
-
name
|
1932
|
-
|
1933
|
-
|
1934
|
-
|
1935
|
-
|
1936
|
-
|
1937
|
-
|
1938
|
-
|
1939
|
-
|
1940
|
-
|
1941
|
-
|
1942
|
-
|
1943
|
-
|
1944
|
-
|
1945
|
-
|
1946
|
-
|
1947
|
-
|
1948
|
-
|
1949
|
-
|
1950
|
-
userId: Scalars['String'];
|
1951
|
-
role?: Maybe<IApplicationRoles>;
|
1952
|
-
inactive?: Maybe<Scalars['Boolean']>;
|
1953
|
-
orgName: Scalars['String'];
|
1954
|
-
user: IOrgUserAccunt;
|
1955
|
-
isSelf: Scalars['Boolean'];
|
1956
|
-
crossCheckEmail?: Maybe<Scalars['String']>;
|
1957
|
+
export declare type IOrganization_Input = {
|
1958
|
+
id?: Maybe<Scalars['ID']>;
|
1959
|
+
name: Scalars['String'];
|
1960
|
+
title?: Maybe<Scalars['String']>;
|
1961
|
+
description?: Maybe<Scalars['String']>;
|
1962
|
+
picture?: Maybe<Scalars['String']>;
|
1963
|
+
stripeId?: Maybe<Scalars['String']>;
|
1964
|
+
namespace?: Maybe<Scalars['String']>;
|
1965
|
+
orgUserCount?: Maybe<Scalars['Int']>;
|
1966
|
+
createdAt?: Maybe<Scalars['DateTime']>;
|
1967
|
+
updatedAt?: Maybe<Scalars['DateTime']>;
|
1968
|
+
orgMembers?: Maybe<Array<Maybe<IOrgUser_Input>>>;
|
1969
|
+
periodStart?: Maybe<Scalars['DateTime']>;
|
1970
|
+
periodStop?: Maybe<Scalars['DateTime']>;
|
1971
|
+
billingLeaders?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1972
|
+
billingEmail?: Maybe<Scalars['String']>;
|
1973
|
+
isBillingLeader?: Maybe<Scalars['Boolean']>;
|
1974
|
+
mainBilingLeaderId?: Maybe<Scalars['String']>;
|
1975
|
+
stripeSubscriptionId?: Maybe<Scalars['String']>;
|
1976
|
+
invitations?: Maybe<Array<Maybe<IOrganizationInvitation_Input>>>;
|
1977
|
+
status?: Maybe<Scalars['String']>;
|
1957
1978
|
};
|
1958
|
-
export declare type
|
1959
|
-
|
1960
|
-
|
1961
|
-
inactive?: Maybe<Scalars['Boolean']>;
|
1962
|
-
crossCheckEmail?: Maybe<Scalars['String']>;
|
1979
|
+
export declare type IOrganizationsDeactivatedEvent = {
|
1980
|
+
__typename?: 'OrganizationsDeactivatedEvent';
|
1981
|
+
deactivatedOrganizationsIds?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1963
1982
|
};
|
1964
|
-
export declare type
|
1965
|
-
__typename?: '
|
1966
|
-
|
1967
|
-
email?: Maybe<Scalars['String']>;
|
1968
|
-
alias?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1969
|
-
username?: Maybe<Scalars['String']>;
|
1970
|
-
emailVerified?: Maybe<Scalars['Boolean']>;
|
1983
|
+
export declare type IOrganizationsDeletedEvent = {
|
1984
|
+
__typename?: 'OrganizationsDeletedEvent';
|
1985
|
+
deletedOrganizationIds?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1971
1986
|
};
|
1972
|
-
export declare const enum IOrgUserRole {
|
1973
|
-
BILLING_LEADER = "BILLING_LEADER",
|
1974
|
-
MEMBER = "MEMBER",
|
1975
|
-
ADMIN = "ADMIN",
|
1976
|
-
OWNER = "OWNER"
|
1977
|
-
}
|
1978
1987
|
export declare type IOverrides = {
|
1979
1988
|
__typename?: 'Overrides';
|
1980
1989
|
contents?: Maybe<Scalars['AnyObject']>;
|
@@ -2061,6 +2070,17 @@ export declare const enum IPreDefinedRole {
|
|
2061
2070
|
GUEST = "GUEST",
|
2062
2071
|
CONTRIBUTORS = "CONTRIBUTORS"
|
2063
2072
|
}
|
2073
|
+
export declare type IPreferenceItem = {
|
2074
|
+
__typename?: 'PreferenceItem';
|
2075
|
+
name?: Maybe<Scalars['String']>;
|
2076
|
+
type?: Maybe<Scalars['String']>;
|
2077
|
+
default?: Maybe<Scalars['String']>;
|
2078
|
+
description?: Maybe<Scalars['String']>;
|
2079
|
+
categoryType?: Maybe<Scalars['String']>;
|
2080
|
+
settings?: Maybe<Scalars['String']>;
|
2081
|
+
enum?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2082
|
+
enumDescriptions?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2083
|
+
};
|
2064
2084
|
export declare type IPreference_Account = {
|
2065
2085
|
__typename?: 'Preference_Account';
|
2066
2086
|
default?: Maybe<IPreference_Default>;
|
@@ -2100,17 +2120,6 @@ export declare type IPreference_Teams = {
|
|
2100
2120
|
__typename?: 'Preference_Teams';
|
2101
2121
|
visibility?: Maybe<IVisibility>;
|
2102
2122
|
};
|
2103
|
-
export declare type IPreferenceItem = {
|
2104
|
-
__typename?: 'PreferenceItem';
|
2105
|
-
name?: Maybe<Scalars['String']>;
|
2106
|
-
type?: Maybe<Scalars['String']>;
|
2107
|
-
default?: Maybe<Scalars['String']>;
|
2108
|
-
description?: Maybe<Scalars['String']>;
|
2109
|
-
categoryType?: Maybe<Scalars['String']>;
|
2110
|
-
settings?: Maybe<Scalars['String']>;
|
2111
|
-
enum?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2112
|
-
enumDescriptions?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2113
|
-
};
|
2114
2123
|
export declare type IPreferences = {
|
2115
2124
|
__typename?: 'Preferences';
|
2116
2125
|
account?: Maybe<IPreference_Account>;
|
@@ -2153,25 +2162,6 @@ export declare type IPreferencesType = {
|
|
2153
2162
|
type?: Maybe<Scalars['String']>;
|
2154
2163
|
data?: Maybe<Array<Maybe<IContributionSettings>>>;
|
2155
2164
|
};
|
2156
|
-
export declare type IProject_Input = {
|
2157
|
-
id?: Maybe<Scalars['String']>;
|
2158
|
-
_id?: Maybe<Scalars['String']>;
|
2159
|
-
name?: Maybe<Scalars['String']>;
|
2160
|
-
description?: Maybe<Scalars['String']>;
|
2161
|
-
path?: Maybe<Scalars['String']>;
|
2162
|
-
source?: Maybe<IProjectSource_Input>;
|
2163
|
-
problems?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2164
|
-
};
|
2165
|
-
export declare type IProject_Output = {
|
2166
|
-
__typename?: 'Project_Output';
|
2167
|
-
id?: Maybe<Scalars['String']>;
|
2168
|
-
name: Scalars['String'];
|
2169
|
-
clientId?: Maybe<Scalars['String']>;
|
2170
|
-
teams?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2171
|
-
status?: Maybe<Scalars['String']>;
|
2172
|
-
orgName?: Maybe<Scalars['String']>;
|
2173
|
-
integrationConfigurationId?: Maybe<Scalars['String']>;
|
2174
|
-
};
|
2175
2165
|
export declare type IProjectAddRequest = {
|
2176
2166
|
name: Scalars['String'];
|
2177
2167
|
clientId?: Maybe<Scalars['String']>;
|
@@ -2212,6 +2202,65 @@ export declare type IProjectParameters_Input = {
|
|
2212
2202
|
httpsUrl?: Maybe<Scalars['String']>;
|
2213
2203
|
isPrivate?: Maybe<Scalars['Boolean']>;
|
2214
2204
|
};
|
2205
|
+
export declare type IProjectSource = {
|
2206
|
+
__typename?: 'ProjectSource';
|
2207
|
+
location?: Maybe<Scalars['String']>;
|
2208
|
+
type?: Maybe<IProjectSourceType>;
|
2209
|
+
parameters?: Maybe<IProjectParameters>;
|
2210
|
+
providers?: Maybe<IProjectSourceProviders>;
|
2211
|
+
language?: Maybe<Scalars['String']>;
|
2212
|
+
};
|
2213
|
+
/** Various Source Providers for Projects Source. */
|
2214
|
+
export declare const enum IProjectSourceProviders {
|
2215
|
+
Github = "Github",
|
2216
|
+
Bitbucket = "Bitbucket",
|
2217
|
+
Gitlab = "Gitlab",
|
2218
|
+
Vsts = "Vsts",
|
2219
|
+
None = "None"
|
2220
|
+
}
|
2221
|
+
/** Various types of sources. */
|
2222
|
+
export declare const enum IProjectSourceType {
|
2223
|
+
Blank = "Blank",
|
2224
|
+
Zip = "Zip",
|
2225
|
+
Git = "Git"
|
2226
|
+
}
|
2227
|
+
export declare type IProjectSource_Input = {
|
2228
|
+
location?: Maybe<Scalars['String']>;
|
2229
|
+
type?: Maybe<IProjectSourceType>;
|
2230
|
+
parameters?: Maybe<IProjectParameters_Input>;
|
2231
|
+
providers?: Maybe<IProjectSourceProviders>;
|
2232
|
+
language?: Maybe<Scalars['String']>;
|
2233
|
+
};
|
2234
|
+
export declare const enum IProjectType {
|
2235
|
+
internal = "internal",
|
2236
|
+
others = "others",
|
2237
|
+
asana = "asana"
|
2238
|
+
}
|
2239
|
+
export declare type IProjectWhereInput = {
|
2240
|
+
id?: Maybe<Scalars['String']>;
|
2241
|
+
integrationConfigurationId?: Maybe<Scalars['String']>;
|
2242
|
+
name?: Maybe<Scalars['String']>;
|
2243
|
+
orgName?: Maybe<Scalars['String']>;
|
2244
|
+
};
|
2245
|
+
export declare type IProject_Input = {
|
2246
|
+
id?: Maybe<Scalars['String']>;
|
2247
|
+
_id?: Maybe<Scalars['String']>;
|
2248
|
+
name?: Maybe<Scalars['String']>;
|
2249
|
+
description?: Maybe<Scalars['String']>;
|
2250
|
+
path?: Maybe<Scalars['String']>;
|
2251
|
+
source?: Maybe<IProjectSource_Input>;
|
2252
|
+
problems?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2253
|
+
};
|
2254
|
+
export declare type IProject_Output = {
|
2255
|
+
__typename?: 'Project_Output';
|
2256
|
+
id?: Maybe<Scalars['String']>;
|
2257
|
+
name: Scalars['String'];
|
2258
|
+
clientId?: Maybe<Scalars['String']>;
|
2259
|
+
teams?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2260
|
+
status?: Maybe<Scalars['String']>;
|
2261
|
+
orgName?: Maybe<Scalars['String']>;
|
2262
|
+
integrationConfigurationId?: Maybe<Scalars['String']>;
|
2263
|
+
};
|
2215
2264
|
/**
|
2216
2265
|
* * Project can be any of the following:
|
2217
2266
|
* * i. Git Repository
|
@@ -2247,46 +2296,6 @@ export declare type IProjects = {
|
|
2247
2296
|
updatedAt?: Maybe<Scalars['DateTime']>;
|
2248
2297
|
createdAt?: Maybe<Scalars['DateTime']>;
|
2249
2298
|
};
|
2250
|
-
export declare type IProjectSource = {
|
2251
|
-
__typename?: 'ProjectSource';
|
2252
|
-
location?: Maybe<Scalars['String']>;
|
2253
|
-
type?: Maybe<IProjectSourceType>;
|
2254
|
-
parameters?: Maybe<IProjectParameters>;
|
2255
|
-
providers?: Maybe<IProjectSourceProviders>;
|
2256
|
-
language?: Maybe<Scalars['String']>;
|
2257
|
-
};
|
2258
|
-
export declare type IProjectSource_Input = {
|
2259
|
-
location?: Maybe<Scalars['String']>;
|
2260
|
-
type?: Maybe<IProjectSourceType>;
|
2261
|
-
parameters?: Maybe<IProjectParameters_Input>;
|
2262
|
-
providers?: Maybe<IProjectSourceProviders>;
|
2263
|
-
language?: Maybe<Scalars['String']>;
|
2264
|
-
};
|
2265
|
-
/** Various Source Providers for Projects Source. */
|
2266
|
-
export declare const enum IProjectSourceProviders {
|
2267
|
-
Github = "Github",
|
2268
|
-
Bitbucket = "Bitbucket",
|
2269
|
-
Gitlab = "Gitlab",
|
2270
|
-
Vsts = "Vsts",
|
2271
|
-
None = "None"
|
2272
|
-
}
|
2273
|
-
/** Various types of sources. */
|
2274
|
-
export declare const enum IProjectSourceType {
|
2275
|
-
Blank = "Blank",
|
2276
|
-
Zip = "Zip",
|
2277
|
-
Git = "Git"
|
2278
|
-
}
|
2279
|
-
export declare const enum IProjectType {
|
2280
|
-
internal = "internal",
|
2281
|
-
others = "others",
|
2282
|
-
asana = "asana"
|
2283
|
-
}
|
2284
|
-
export declare type IProjectWhereInput = {
|
2285
|
-
id?: Maybe<Scalars['String']>;
|
2286
|
-
integrationConfigurationId?: Maybe<Scalars['String']>;
|
2287
|
-
name?: Maybe<Scalars['String']>;
|
2288
|
-
orgName?: Maybe<Scalars['String']>;
|
2289
|
-
};
|
2290
2299
|
export declare type IQuery = {
|
2291
2300
|
__typename?: 'Query';
|
2292
2301
|
GetSshKey?: Maybe<ISshKey>;
|
@@ -2632,6 +2641,18 @@ export declare const enum IRouteParams {
|
|
2632
2641
|
orgName = "orgName",
|
2633
2642
|
teamName = "teamName"
|
2634
2643
|
}
|
2644
|
+
export declare const enum ISettingValueType {
|
2645
|
+
Null = "Null",
|
2646
|
+
Enum = "Enum",
|
2647
|
+
String = "String",
|
2648
|
+
Integer = "Integer",
|
2649
|
+
Number = "Number",
|
2650
|
+
Boolean = "Boolean",
|
2651
|
+
Exclude = "Exclude",
|
2652
|
+
Complex = "Complex",
|
2653
|
+
NullableInteger = "NullableInteger",
|
2654
|
+
NullableNumber = "NullableNumber"
|
2655
|
+
}
|
2635
2656
|
/** Settings is a version of a configuration settings file. */
|
2636
2657
|
export declare type ISettings = {
|
2637
2658
|
__typename?: 'Settings';
|
@@ -2676,18 +2697,6 @@ export declare type ISettingsSection = {
|
|
2676
2697
|
settings?: Maybe<Array<Maybe<IContributionSettings>>>;
|
2677
2698
|
};
|
2678
2699
|
export declare type ISettingsSubject = IUserSettings | IApplicationSettings | IMachineSettings | IOrganizationResourceSettings | IGlobalSettings | IOrganizationSettings | IMemorySettings | IDefaultSettings;
|
2679
|
-
export declare const enum ISettingValueType {
|
2680
|
-
Null = "Null",
|
2681
|
-
Enum = "Enum",
|
2682
|
-
String = "String",
|
2683
|
-
Integer = "Integer",
|
2684
|
-
Number = "Number",
|
2685
|
-
Boolean = "Boolean",
|
2686
|
-
Exclude = "Exclude",
|
2687
|
-
Complex = "Complex",
|
2688
|
-
NullableInteger = "NullableInteger",
|
2689
|
-
NullableNumber = "NullableNumber"
|
2690
|
-
}
|
2691
2700
|
export declare type ISocialConnect = {
|
2692
2701
|
__typename?: 'SocialConnect';
|
2693
2702
|
facebook?: Maybe<Scalars['String']>;
|
@@ -2954,6 +2963,13 @@ export declare const enum ITokenTypesEnum {
|
|
2954
2963
|
EMAIL_VERIFICATION = "EMAIL_VERIFICATION",
|
2955
2964
|
PASSWORD_RESET = "PASSWORD_RESET"
|
2956
2965
|
}
|
2966
|
+
export declare type IUpdateProject_Input = {
|
2967
|
+
name: Scalars['String'];
|
2968
|
+
clientId?: Maybe<Scalars['String']>;
|
2969
|
+
teams?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2970
|
+
orgName?: Maybe<Scalars['String']>;
|
2971
|
+
integrationConfigurationId?: Maybe<Scalars['String']>;
|
2972
|
+
};
|
2957
2973
|
export declare type IUpdatedClient_Input = {
|
2958
2974
|
name?: Maybe<IName_Input>;
|
2959
2975
|
companyName?: Maybe<Scalars['String']>;
|
@@ -2967,13 +2983,6 @@ export declare type IUpdatedClient_Input = {
|
|
2967
2983
|
shippingAddress?: Maybe<IAddressType_Input>;
|
2968
2984
|
orgName?: Maybe<Scalars['String']>;
|
2969
2985
|
};
|
2970
|
-
export declare type IUpdateProject_Input = {
|
2971
|
-
name: Scalars['String'];
|
2972
|
-
clientId?: Maybe<Scalars['String']>;
|
2973
|
-
teams?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2974
|
-
orgName?: Maybe<Scalars['String']>;
|
2975
|
-
integrationConfigurationId?: Maybe<Scalars['String']>;
|
2976
|
-
};
|
2977
2986
|
export declare type IUserAccount = INode & {
|
2978
2987
|
__typename?: 'UserAccount';
|
2979
2988
|
id: Scalars['ID'];
|
@@ -2988,11 +2997,19 @@ export declare type IUserAccount = INode & {
|
|
2988
2997
|
phoneNumber?: Maybe<Array<IPhoneNumber>>;
|
2989
2998
|
tokens?: Maybe<Array<Maybe<IUserToken>>>;
|
2990
2999
|
};
|
2991
|
-
export declare type
|
2992
|
-
|
2993
|
-
|
3000
|
+
export declare type IUserAccountCreateRequest = {
|
3001
|
+
email: Scalars['String'];
|
3002
|
+
username: Scalars['String'];
|
2994
3003
|
alias?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2995
|
-
|
3004
|
+
emailVerified?: Maybe<Scalars['Boolean']>;
|
3005
|
+
notificationEmail?: Maybe<Scalars['String']>;
|
3006
|
+
familyName?: Maybe<Scalars['String']>;
|
3007
|
+
givenName?: Maybe<Scalars['String']>;
|
3008
|
+
picture?: Maybe<Scalars['String']>;
|
3009
|
+
workEmail?: Maybe<Scalars['String']>;
|
3010
|
+
country?: Maybe<Scalars['String']>;
|
3011
|
+
companyName?: Maybe<Scalars['String']>;
|
3012
|
+
phoneNumber?: Maybe<Scalars['String']>;
|
2996
3013
|
tokens?: Maybe<Array<Maybe<IUserTokenInput>>>;
|
2997
3014
|
};
|
2998
3015
|
export declare type IUserAccountCreatedDetailedEvent = {
|
@@ -3010,31 +3027,17 @@ export declare type IUserAccountCreatedEvent = {
|
|
3010
3027
|
createdUser?: Maybe<IUserAccountCreatedDetailedEvent>;
|
3011
3028
|
sourceUser?: Maybe<IUserProfile>;
|
3012
3029
|
};
|
3013
|
-
export declare type
|
3014
|
-
|
3015
|
-
username: Scalars['String'];
|
3016
|
-
alias?: Maybe<Array<Maybe<Scalars['String']>>>;
|
3017
|
-
emailVerified?: Maybe<Scalars['Boolean']>;
|
3018
|
-
notificationEmail?: Maybe<Scalars['String']>;
|
3019
|
-
familyName?: Maybe<Scalars['String']>;
|
3020
|
-
givenName?: Maybe<Scalars['String']>;
|
3021
|
-
picture?: Maybe<Scalars['String']>;
|
3022
|
-
workEmail?: Maybe<Scalars['String']>;
|
3023
|
-
country?: Maybe<Scalars['String']>;
|
3024
|
-
companyName?: Maybe<Scalars['String']>;
|
3025
|
-
phoneNumber?: Maybe<Scalars['String']>;
|
3026
|
-
tokens?: Maybe<Array<Maybe<IUserTokenInput>>>;
|
3030
|
+
export declare type IUserAccountRemoveRequest = {
|
3031
|
+
id?: Maybe<Scalars['String']>;
|
3027
3032
|
};
|
3028
3033
|
export declare type IUserAccountRemovedEvent = {
|
3029
3034
|
__typename?: 'UserAccountRemovedEvent';
|
3030
|
-
id
|
3035
|
+
id: Scalars['String'];
|
3036
|
+
userId: Scalars['String'];
|
3031
3037
|
email: Scalars['String'];
|
3032
3038
|
username: Scalars['String'];
|
3033
3039
|
notificationEmail?: Maybe<Scalars['String']>;
|
3034
3040
|
};
|
3035
|
-
export declare type IUserAccountRemoveRequest = {
|
3036
|
-
id?: Maybe<Scalars['String']>;
|
3037
|
-
};
|
3038
3041
|
export declare type IUserAccountUpdateRequest = {
|
3039
3042
|
id: Scalars['String'];
|
3040
3043
|
payload?: Maybe<IUserAccount_Input>;
|
@@ -3045,6 +3048,33 @@ export declare type IUserAccountWhere = {
|
|
3045
3048
|
alias?: Maybe<Array<Maybe<Scalars['String']>>>;
|
3046
3049
|
username?: Maybe<Scalars['String']>;
|
3047
3050
|
};
|
3051
|
+
export declare type IUserAccount_Input = {
|
3052
|
+
id?: Maybe<Scalars['String']>;
|
3053
|
+
email?: Maybe<Scalars['String']>;
|
3054
|
+
alias?: Maybe<Array<Maybe<Scalars['String']>>>;
|
3055
|
+
username?: Maybe<Scalars['String']>;
|
3056
|
+
tokens?: Maybe<Array<Maybe<IUserTokenInput>>>;
|
3057
|
+
};
|
3058
|
+
export declare type IUserAuth0Info = {
|
3059
|
+
__typename?: 'UserAuth0Info';
|
3060
|
+
auth0Id?: Maybe<Scalars['String']>;
|
3061
|
+
sessionInfo?: Maybe<Array<Maybe<IUserAuth0SessionInfo>>>;
|
3062
|
+
};
|
3063
|
+
export declare type IUserAuth0SessionDeviceInfo = {
|
3064
|
+
__typename?: 'UserAuth0SessionDeviceInfo';
|
3065
|
+
os?: Maybe<Scalars['String']>;
|
3066
|
+
deviceName?: Maybe<Scalars['String']>;
|
3067
|
+
browserName?: Maybe<Scalars['String']>;
|
3068
|
+
isMobile: Scalars['Boolean'];
|
3069
|
+
};
|
3070
|
+
export declare type IUserAuth0SessionInfo = {
|
3071
|
+
__typename?: 'UserAuth0SessionInfo';
|
3072
|
+
sessionId?: Maybe<Scalars['String']>;
|
3073
|
+
deviceInfo?: Maybe<IUserAuth0SessionDeviceInfo>;
|
3074
|
+
lastLoginAt?: Maybe<Scalars['Date']>;
|
3075
|
+
lastLoginIp?: Maybe<Scalars['String']>;
|
3076
|
+
refreshToken?: Maybe<Scalars['String']>;
|
3077
|
+
};
|
3048
3078
|
export declare type IUserAuth0UpdateFields = {
|
3049
3079
|
family_name?: Maybe<Scalars['String']>;
|
3050
3080
|
given_name?: Maybe<Scalars['String']>;
|
@@ -4147,79 +4177,79 @@ export declare type IDefaultSettingFragment = ({
|
|
4147
4177
|
export declare type IOverWriteRoleValueFragment = ({
|
4148
4178
|
__typename?: 'ContributionSettings';
|
4149
4179
|
} & Pick<IContributionSettings, 'key' | 'value'>);
|
4150
|
-
declare type
|
4151
|
-
__typename: '
|
4152
|
-
} & Pick<
|
4180
|
+
declare type IConfiguration_ApplicationPolicy_Fragment = ({
|
4181
|
+
__typename: 'ApplicationPolicy';
|
4182
|
+
} & Pick<IApplicationPolicy, 'resource' | 'target' | 'contents' | 'keys'> & {
|
4153
4183
|
overrides?: Maybe<Array<Maybe<({
|
4154
4184
|
__typename?: 'Overrides';
|
4155
4185
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
4156
4186
|
});
|
4157
|
-
declare type
|
4158
|
-
__typename: '
|
4159
|
-
} & Pick<
|
4187
|
+
declare type IConfiguration_ApplicationRolePermission_Fragment = ({
|
4188
|
+
__typename: 'ApplicationRolePermission';
|
4189
|
+
} & Pick<IApplicationRolePermission, 'resource' | 'target' | 'contents' | 'keys'> & {
|
4160
4190
|
overrides?: Maybe<Array<Maybe<({
|
4161
4191
|
__typename?: 'Overrides';
|
4162
4192
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
4163
4193
|
});
|
4164
|
-
declare type
|
4165
|
-
__typename: '
|
4166
|
-
} & Pick<
|
4194
|
+
declare type IConfiguration_DefaultConfiguration_Fragment = ({
|
4195
|
+
__typename: 'DefaultConfiguration';
|
4196
|
+
} & Pick<IDefaultConfiguration, 'resource' | 'target' | 'contents' | 'keys'> & {
|
4167
4197
|
overrides?: Maybe<Array<Maybe<({
|
4168
4198
|
__typename?: 'Overrides';
|
4169
4199
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
4170
4200
|
});
|
4171
|
-
declare type
|
4172
|
-
__typename: '
|
4173
|
-
} & Pick<
|
4201
|
+
declare type IConfiguration_DefaultPolicy_Fragment = ({
|
4202
|
+
__typename: 'DefaultPolicy';
|
4203
|
+
} & Pick<IDefaultPolicy, 'resource' | 'target' | 'contents' | 'keys'> & {
|
4174
4204
|
overrides?: Maybe<Array<Maybe<({
|
4175
4205
|
__typename?: 'Overrides';
|
4176
4206
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
4177
4207
|
});
|
4178
|
-
declare type
|
4179
|
-
__typename: '
|
4180
|
-
} & Pick<
|
4208
|
+
declare type IConfiguration_DefaultRole_Fragment = ({
|
4209
|
+
__typename: 'DefaultRole';
|
4210
|
+
} & Pick<IDefaultRole, 'resource' | 'target' | 'contents' | 'keys'> & {
|
4181
4211
|
overrides?: Maybe<Array<Maybe<({
|
4182
4212
|
__typename?: 'Overrides';
|
4183
4213
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
4184
4214
|
});
|
4185
|
-
declare type
|
4186
|
-
__typename: '
|
4187
|
-
} & Pick<
|
4215
|
+
declare type IConfiguration_MachineConfiguration_Fragment = ({
|
4216
|
+
__typename: 'MachineConfiguration';
|
4217
|
+
} & Pick<IMachineConfiguration, 'resource' | 'target' | 'contents' | 'keys'> & {
|
4188
4218
|
overrides?: Maybe<Array<Maybe<({
|
4189
4219
|
__typename?: 'Overrides';
|
4190
4220
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
4191
4221
|
});
|
4192
|
-
declare type
|
4193
|
-
__typename: '
|
4194
|
-
} & Pick<
|
4222
|
+
declare type IConfiguration_OrganizationConfiguration_Fragment = ({
|
4223
|
+
__typename: 'OrganizationConfiguration';
|
4224
|
+
} & Pick<IOrganizationConfiguration, 'resource' | 'target' | 'contents' | 'keys'> & {
|
4195
4225
|
overrides?: Maybe<Array<Maybe<({
|
4196
4226
|
__typename?: 'Overrides';
|
4197
4227
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
4198
4228
|
});
|
4199
|
-
declare type
|
4200
|
-
__typename: '
|
4201
|
-
} & Pick<
|
4229
|
+
declare type IConfiguration_OrganizationPolicy_Fragment = ({
|
4230
|
+
__typename: 'OrganizationPolicy';
|
4231
|
+
} & Pick<IOrganizationPolicy, 'resource' | 'target' | 'contents' | 'keys'> & {
|
4202
4232
|
overrides?: Maybe<Array<Maybe<({
|
4203
4233
|
__typename?: 'Overrides';
|
4204
4234
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
4205
4235
|
});
|
4206
|
-
declare type
|
4207
|
-
__typename: '
|
4208
|
-
} & Pick<
|
4236
|
+
declare type IConfiguration_OrganizationResourceConfiguration_Fragment = ({
|
4237
|
+
__typename: 'OrganizationResourceConfiguration';
|
4238
|
+
} & Pick<IOrganizationResourceConfiguration, 'resource' | 'target' | 'contents' | 'keys'> & {
|
4209
4239
|
overrides?: Maybe<Array<Maybe<({
|
4210
4240
|
__typename?: 'Overrides';
|
4211
4241
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
4212
4242
|
});
|
4213
|
-
declare type
|
4214
|
-
__typename: '
|
4215
|
-
} & Pick<
|
4243
|
+
declare type IConfiguration_OrganizationRole_Fragment = ({
|
4244
|
+
__typename: 'OrganizationRole';
|
4245
|
+
} & Pick<IOrganizationRole, 'resource' | 'target' | 'contents' | 'keys'> & {
|
4216
4246
|
overrides?: Maybe<Array<Maybe<({
|
4217
4247
|
__typename?: 'Overrides';
|
4218
4248
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
4219
4249
|
});
|
4220
|
-
declare type
|
4221
|
-
__typename: '
|
4222
|
-
} & Pick<
|
4250
|
+
declare type IConfiguration_ResourcePolicy_Fragment = ({
|
4251
|
+
__typename: 'ResourcePolicy';
|
4252
|
+
} & Pick<IResourcePolicy, 'resource' | 'target' | 'contents' | 'keys'> & {
|
4223
4253
|
overrides?: Maybe<Array<Maybe<({
|
4224
4254
|
__typename?: 'Overrides';
|
4225
4255
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
@@ -4231,14 +4261,14 @@ declare type IConfiguration_ResourceRole_Fragment = ({
|
|
4231
4261
|
__typename?: 'Overrides';
|
4232
4262
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
4233
4263
|
});
|
4234
|
-
declare type
|
4235
|
-
__typename: '
|
4236
|
-
} & Pick<
|
4264
|
+
declare type IConfiguration_UserConfiguration_Fragment = ({
|
4265
|
+
__typename: 'UserConfiguration';
|
4266
|
+
} & Pick<IUserConfiguration, 'resource' | 'target' | 'contents' | 'keys'> & {
|
4237
4267
|
overrides?: Maybe<Array<Maybe<({
|
4238
4268
|
__typename?: 'Overrides';
|
4239
4269
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
4240
4270
|
});
|
4241
|
-
export declare type IConfigurationFragment =
|
4271
|
+
export declare type IConfigurationFragment = IConfiguration_ApplicationPolicy_Fragment | IConfiguration_ApplicationRolePermission_Fragment | IConfiguration_DefaultConfiguration_Fragment | IConfiguration_DefaultPolicy_Fragment | IConfiguration_DefaultRole_Fragment | IConfiguration_MachineConfiguration_Fragment | IConfiguration_OrganizationConfiguration_Fragment | IConfiguration_OrganizationPolicy_Fragment | IConfiguration_OrganizationResourceConfiguration_Fragment | IConfiguration_OrganizationRole_Fragment | IConfiguration_ResourcePolicy_Fragment | IConfiguration_ResourceRole_Fragment | IConfiguration_UserConfiguration_Fragment;
|
4242
4272
|
export declare type IContextConfigurationFragment = ({
|
4243
4273
|
__typename?: 'OrganizationData';
|
4244
4274
|
} & Pick<IOrganizationData, 'id' | 'name' | 'configuration'> & {
|
@@ -4263,13 +4293,13 @@ export declare type IOrgContextFragment = ({
|
|
4263
4293
|
export declare type IOrganizationUserFragment = ({
|
4264
4294
|
__typename?: 'OrgUser';
|
4265
4295
|
} & Pick<IOrgUser, 'role' | 'orgName' | 'isSelf'>);
|
4266
|
-
declare type IResourceData_OrganizationResourceData_Fragment = ({
|
4267
|
-
__typename?: 'OrganizationResourceData';
|
4268
|
-
} & Pick<IOrganizationResourceData, 'uri' | 'name' | 'index'>);
|
4269
4296
|
declare type IResourceData_ExternalResourceData_Fragment = ({
|
4270
4297
|
__typename?: 'ExternalResourceData';
|
4271
4298
|
} & Pick<IExternalResourceData, 'uri' | 'name' | 'index'>);
|
4272
|
-
|
4299
|
+
declare type IResourceData_OrganizationResourceData_Fragment = ({
|
4300
|
+
__typename?: 'OrganizationResourceData';
|
4301
|
+
} & Pick<IOrganizationResourceData, 'uri' | 'name' | 'index'>);
|
4302
|
+
export declare type IResourceDataFragment = IResourceData_ExternalResourceData_Fragment | IResourceData_OrganizationResourceData_Fragment;
|
4273
4303
|
export declare type IResourceUserRoleFragment = ({
|
4274
4304
|
__typename?: 'ResourceUser';
|
4275
4305
|
} & Pick<IResourceUser, 'role' | 'name' | 'isSelf' | 'orgName'>);
|
@@ -4970,140 +5000,140 @@ export declare type IgetConfigurationDataQuery = ({
|
|
4970
5000
|
__typename?: 'ConfigurationData';
|
4971
5001
|
} & Pick<IConfigurationData, 'isComplete'> & {
|
4972
5002
|
defaults?: Maybe<({
|
5003
|
+
__typename?: 'ApplicationPolicy';
|
5004
|
+
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
5005
|
+
__typename?: 'ApplicationRolePermission';
|
5006
|
+
} & IConfiguration_ApplicationRolePermission_Fragment) | ({
|
4973
5007
|
__typename?: 'DefaultConfiguration';
|
4974
5008
|
} & IConfiguration_DefaultConfiguration_Fragment) | ({
|
5009
|
+
__typename?: 'DefaultPolicy';
|
5010
|
+
} & IConfiguration_DefaultPolicy_Fragment) | ({
|
5011
|
+
__typename?: 'DefaultRole';
|
5012
|
+
} & IConfiguration_DefaultRole_Fragment) | ({
|
4975
5013
|
__typename?: 'MachineConfiguration';
|
4976
5014
|
} & IConfiguration_MachineConfiguration_Fragment) | ({
|
4977
|
-
__typename?: 'UserConfiguration';
|
4978
|
-
} & IConfiguration_UserConfiguration_Fragment) | ({
|
4979
5015
|
__typename?: 'OrganizationConfiguration';
|
4980
5016
|
} & IConfiguration_OrganizationConfiguration_Fragment) | ({
|
4981
|
-
__typename?: 'OrganizationResourceConfiguration';
|
4982
|
-
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
4983
|
-
__typename?: 'DefaultPolicy';
|
4984
|
-
} & IConfiguration_DefaultPolicy_Fragment) | ({
|
4985
5017
|
__typename?: 'OrganizationPolicy';
|
4986
5018
|
} & IConfiguration_OrganizationPolicy_Fragment) | ({
|
4987
|
-
__typename?: '
|
4988
|
-
} &
|
4989
|
-
__typename?: 'ApplicationPolicy';
|
4990
|
-
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
4991
|
-
__typename?: 'DefaultRole';
|
4992
|
-
} & IConfiguration_DefaultRole_Fragment) | ({
|
5019
|
+
__typename?: 'OrganizationResourceConfiguration';
|
5020
|
+
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
4993
5021
|
__typename?: 'OrganizationRole';
|
4994
5022
|
} & IConfiguration_OrganizationRole_Fragment) | ({
|
5023
|
+
__typename?: 'ResourcePolicy';
|
5024
|
+
} & IConfiguration_ResourcePolicy_Fragment) | ({
|
4995
5025
|
__typename?: 'ResourceRole';
|
4996
5026
|
} & IConfiguration_ResourceRole_Fragment) | ({
|
4997
|
-
__typename?: '
|
4998
|
-
} &
|
5027
|
+
__typename?: 'UserConfiguration';
|
5028
|
+
} & IConfiguration_UserConfiguration_Fragment)>;
|
4999
5029
|
user?: Maybe<({
|
5030
|
+
__typename?: 'ApplicationPolicy';
|
5031
|
+
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
5032
|
+
__typename?: 'ApplicationRolePermission';
|
5033
|
+
} & IConfiguration_ApplicationRolePermission_Fragment) | ({
|
5000
5034
|
__typename?: 'DefaultConfiguration';
|
5001
5035
|
} & IConfiguration_DefaultConfiguration_Fragment) | ({
|
5036
|
+
__typename?: 'DefaultPolicy';
|
5037
|
+
} & IConfiguration_DefaultPolicy_Fragment) | ({
|
5038
|
+
__typename?: 'DefaultRole';
|
5039
|
+
} & IConfiguration_DefaultRole_Fragment) | ({
|
5002
5040
|
__typename?: 'MachineConfiguration';
|
5003
5041
|
} & IConfiguration_MachineConfiguration_Fragment) | ({
|
5004
|
-
__typename?: 'UserConfiguration';
|
5005
|
-
} & IConfiguration_UserConfiguration_Fragment) | ({
|
5006
5042
|
__typename?: 'OrganizationConfiguration';
|
5007
5043
|
} & IConfiguration_OrganizationConfiguration_Fragment) | ({
|
5008
|
-
__typename?: 'OrganizationResourceConfiguration';
|
5009
|
-
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
5010
|
-
__typename?: 'DefaultPolicy';
|
5011
|
-
} & IConfiguration_DefaultPolicy_Fragment) | ({
|
5012
5044
|
__typename?: 'OrganizationPolicy';
|
5013
5045
|
} & IConfiguration_OrganizationPolicy_Fragment) | ({
|
5014
|
-
__typename?: '
|
5015
|
-
} &
|
5016
|
-
__typename?: 'ApplicationPolicy';
|
5017
|
-
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
5018
|
-
__typename?: 'DefaultRole';
|
5019
|
-
} & IConfiguration_DefaultRole_Fragment) | ({
|
5046
|
+
__typename?: 'OrganizationResourceConfiguration';
|
5047
|
+
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
5020
5048
|
__typename?: 'OrganizationRole';
|
5021
5049
|
} & IConfiguration_OrganizationRole_Fragment) | ({
|
5050
|
+
__typename?: 'ResourcePolicy';
|
5051
|
+
} & IConfiguration_ResourcePolicy_Fragment) | ({
|
5022
5052
|
__typename?: 'ResourceRole';
|
5023
5053
|
} & IConfiguration_ResourceRole_Fragment) | ({
|
5024
|
-
__typename?: '
|
5025
|
-
} &
|
5054
|
+
__typename?: 'UserConfiguration';
|
5055
|
+
} & IConfiguration_UserConfiguration_Fragment)>;
|
5026
5056
|
machine?: Maybe<({
|
5057
|
+
__typename?: 'ApplicationPolicy';
|
5058
|
+
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
5059
|
+
__typename?: 'ApplicationRolePermission';
|
5060
|
+
} & IConfiguration_ApplicationRolePermission_Fragment) | ({
|
5027
5061
|
__typename?: 'DefaultConfiguration';
|
5028
5062
|
} & IConfiguration_DefaultConfiguration_Fragment) | ({
|
5063
|
+
__typename?: 'DefaultPolicy';
|
5064
|
+
} & IConfiguration_DefaultPolicy_Fragment) | ({
|
5065
|
+
__typename?: 'DefaultRole';
|
5066
|
+
} & IConfiguration_DefaultRole_Fragment) | ({
|
5029
5067
|
__typename?: 'MachineConfiguration';
|
5030
5068
|
} & IConfiguration_MachineConfiguration_Fragment) | ({
|
5031
|
-
__typename?: 'UserConfiguration';
|
5032
|
-
} & IConfiguration_UserConfiguration_Fragment) | ({
|
5033
5069
|
__typename?: 'OrganizationConfiguration';
|
5034
5070
|
} & IConfiguration_OrganizationConfiguration_Fragment) | ({
|
5035
|
-
__typename?: 'OrganizationResourceConfiguration';
|
5036
|
-
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
5037
|
-
__typename?: 'DefaultPolicy';
|
5038
|
-
} & IConfiguration_DefaultPolicy_Fragment) | ({
|
5039
5071
|
__typename?: 'OrganizationPolicy';
|
5040
5072
|
} & IConfiguration_OrganizationPolicy_Fragment) | ({
|
5041
|
-
__typename?: '
|
5042
|
-
} &
|
5043
|
-
__typename?: 'ApplicationPolicy';
|
5044
|
-
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
5045
|
-
__typename?: 'DefaultRole';
|
5046
|
-
} & IConfiguration_DefaultRole_Fragment) | ({
|
5073
|
+
__typename?: 'OrganizationResourceConfiguration';
|
5074
|
+
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
5047
5075
|
__typename?: 'OrganizationRole';
|
5048
5076
|
} & IConfiguration_OrganizationRole_Fragment) | ({
|
5077
|
+
__typename?: 'ResourcePolicy';
|
5078
|
+
} & IConfiguration_ResourcePolicy_Fragment) | ({
|
5049
5079
|
__typename?: 'ResourceRole';
|
5050
5080
|
} & IConfiguration_ResourceRole_Fragment) | ({
|
5051
|
-
__typename?: '
|
5052
|
-
} &
|
5081
|
+
__typename?: 'UserConfiguration';
|
5082
|
+
} & IConfiguration_UserConfiguration_Fragment)>;
|
5053
5083
|
organization?: Maybe<({
|
5084
|
+
__typename?: 'ApplicationPolicy';
|
5085
|
+
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
5086
|
+
__typename?: 'ApplicationRolePermission';
|
5087
|
+
} & IConfiguration_ApplicationRolePermission_Fragment) | ({
|
5054
5088
|
__typename?: 'DefaultConfiguration';
|
5055
5089
|
} & IConfiguration_DefaultConfiguration_Fragment) | ({
|
5090
|
+
__typename?: 'DefaultPolicy';
|
5091
|
+
} & IConfiguration_DefaultPolicy_Fragment) | ({
|
5092
|
+
__typename?: 'DefaultRole';
|
5093
|
+
} & IConfiguration_DefaultRole_Fragment) | ({
|
5056
5094
|
__typename?: 'MachineConfiguration';
|
5057
5095
|
} & IConfiguration_MachineConfiguration_Fragment) | ({
|
5058
|
-
__typename?: 'UserConfiguration';
|
5059
|
-
} & IConfiguration_UserConfiguration_Fragment) | ({
|
5060
5096
|
__typename?: 'OrganizationConfiguration';
|
5061
5097
|
} & IConfiguration_OrganizationConfiguration_Fragment) | ({
|
5062
|
-
__typename?: 'OrganizationResourceConfiguration';
|
5063
|
-
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
5064
|
-
__typename?: 'DefaultPolicy';
|
5065
|
-
} & IConfiguration_DefaultPolicy_Fragment) | ({
|
5066
5098
|
__typename?: 'OrganizationPolicy';
|
5067
5099
|
} & IConfiguration_OrganizationPolicy_Fragment) | ({
|
5100
|
+
__typename?: 'OrganizationResourceConfiguration';
|
5101
|
+
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
5102
|
+
__typename?: 'OrganizationRole';
|
5103
|
+
} & IConfiguration_OrganizationRole_Fragment) | ({
|
5068
5104
|
__typename?: 'ResourcePolicy';
|
5069
5105
|
} & IConfiguration_ResourcePolicy_Fragment) | ({
|
5070
|
-
__typename?: 'ApplicationPolicy';
|
5071
|
-
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
5072
|
-
__typename?: 'DefaultRole';
|
5073
|
-
} & IConfiguration_DefaultRole_Fragment) | ({
|
5074
|
-
__typename?: 'OrganizationRole';
|
5075
|
-
} & IConfiguration_OrganizationRole_Fragment) | ({
|
5076
5106
|
__typename?: 'ResourceRole';
|
5077
5107
|
} & IConfiguration_ResourceRole_Fragment) | ({
|
5078
|
-
__typename?: '
|
5079
|
-
} &
|
5108
|
+
__typename?: 'UserConfiguration';
|
5109
|
+
} & IConfiguration_UserConfiguration_Fragment)>;
|
5080
5110
|
resources?: Maybe<Array<Maybe<({
|
5111
|
+
__typename?: 'ApplicationPolicy';
|
5112
|
+
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
5113
|
+
__typename?: 'ApplicationRolePermission';
|
5114
|
+
} & IConfiguration_ApplicationRolePermission_Fragment) | ({
|
5081
5115
|
__typename?: 'DefaultConfiguration';
|
5082
5116
|
} & IConfiguration_DefaultConfiguration_Fragment) | ({
|
5117
|
+
__typename?: 'DefaultPolicy';
|
5118
|
+
} & IConfiguration_DefaultPolicy_Fragment) | ({
|
5119
|
+
__typename?: 'DefaultRole';
|
5120
|
+
} & IConfiguration_DefaultRole_Fragment) | ({
|
5083
5121
|
__typename?: 'MachineConfiguration';
|
5084
5122
|
} & IConfiguration_MachineConfiguration_Fragment) | ({
|
5085
|
-
__typename?: 'UserConfiguration';
|
5086
|
-
} & IConfiguration_UserConfiguration_Fragment) | ({
|
5087
5123
|
__typename?: 'OrganizationConfiguration';
|
5088
5124
|
} & IConfiguration_OrganizationConfiguration_Fragment) | ({
|
5089
|
-
__typename?: 'OrganizationResourceConfiguration';
|
5090
|
-
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
5091
|
-
__typename?: 'DefaultPolicy';
|
5092
|
-
} & IConfiguration_DefaultPolicy_Fragment) | ({
|
5093
5125
|
__typename?: 'OrganizationPolicy';
|
5094
5126
|
} & IConfiguration_OrganizationPolicy_Fragment) | ({
|
5095
|
-
__typename?: '
|
5096
|
-
} &
|
5097
|
-
__typename?: 'ApplicationPolicy';
|
5098
|
-
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
5099
|
-
__typename?: 'DefaultRole';
|
5100
|
-
} & IConfiguration_DefaultRole_Fragment) | ({
|
5127
|
+
__typename?: 'OrganizationResourceConfiguration';
|
5128
|
+
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
5101
5129
|
__typename?: 'OrganizationRole';
|
5102
5130
|
} & IConfiguration_OrganizationRole_Fragment) | ({
|
5131
|
+
__typename?: 'ResourcePolicy';
|
5132
|
+
} & IConfiguration_ResourcePolicy_Fragment) | ({
|
5103
5133
|
__typename?: 'ResourceRole';
|
5104
5134
|
} & IConfiguration_ResourceRole_Fragment) | ({
|
5105
|
-
__typename?: '
|
5106
|
-
} &
|
5135
|
+
__typename?: 'UserConfiguration';
|
5136
|
+
} & IConfiguration_UserConfiguration_Fragment)>>>;
|
5107
5137
|
})>;
|
5108
5138
|
});
|
5109
5139
|
export declare type IOrganizationResourceContextQueryVariables = Exact<{
|
@@ -8658,593 +8688,601 @@ export declare type NextResolverFn<T> = () => Promise<T>;
|
|
8658
8688
|
export declare type DirectiveResolverFn<TResult = {}, TParent = {}, TContext = {}, TArgs = {}> = (next: NextResolverFn<TResult>, parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => TResult | Promise<TResult>;
|
8659
8689
|
/** Mapping between all available schema types and the resolvers types */
|
8660
8690
|
export declare type IResolversTypes = {
|
8661
|
-
|
8662
|
-
|
8663
|
-
|
8691
|
+
AccessRole: IResolversTypes['DefaultRole'] | IResolversTypes['OrganizationRole'] | IResolversTypes['ResourceRole'] | IResolversTypes['ApplicationRolePermission'];
|
8692
|
+
AccountBroadcasterActions: IAccountBroadcasterActions;
|
8693
|
+
AccountService: ResolverTypeWrapper<IAccountService>;
|
8664
8694
|
String: ResolverTypeWrapper<Scalars['String']>;
|
8665
|
-
|
8695
|
+
Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
|
8696
|
+
AccountServiceAction: IAccountServiceAction;
|
8697
|
+
AccountTeam: ResolverTypeWrapper<IAccountTeam>;
|
8698
|
+
ID: ResolverTypeWrapper<Scalars['ID']>;
|
8699
|
+
AccountTeam_Input: IAccountTeam_Input;
|
8700
|
+
ActivityCollectRequest: IActivityCollectRequest;
|
8666
8701
|
Int: ResolverTypeWrapper<Scalars['Int']>;
|
8667
|
-
|
8668
|
-
|
8669
|
-
|
8670
|
-
|
8671
|
-
|
8702
|
+
ActivityRecord: ResolverTypeWrapper<IActivityRecord>;
|
8703
|
+
ActivityRecordInput: IActivityRecordInput;
|
8704
|
+
ActivityServiceCommands: IActivityServiceCommands;
|
8705
|
+
AddressType: ResolverTypeWrapper<IAddressType>;
|
8706
|
+
AddressType_Input: IAddressType_Input;
|
8707
|
+
AdminIdeSettings: ResolverTypeWrapper<IAdminIdeSettings>;
|
8672
8708
|
AnyObject: ResolverTypeWrapper<Scalars['AnyObject']>;
|
8673
|
-
|
8674
|
-
|
8675
|
-
|
8676
|
-
|
8677
|
-
EditPresentationTypes: IEditPresentationTypes;
|
8678
|
-
PreferencesResponse: ResolverTypeWrapper<IPreferencesResponse>;
|
8679
|
-
PreferencesType: ResolverTypeWrapper<IPreferencesType>;
|
8680
|
-
DefaultSettings: ResolverTypeWrapper<IDefaultSettings>;
|
8681
|
-
ISettingsSubject: IResolversTypes['DefaultSettings'] | IResolversTypes['UserSettings'] | IResolversTypes['ApplicationSettings'] | IResolversTypes['MachineSettings'] | IResolversTypes['OrganizationResourceSettings'] | IResolversTypes['GlobalSettings'] | IResolversTypes['OrganizationSettings'] | IResolversTypes['MemorySettings'];
|
8682
|
-
Settings: ResolverTypeWrapper<ISettings>;
|
8683
|
-
URI: ResolverTypeWrapper<Scalars['URI']>;
|
8684
|
-
SettingsCascade: ResolverTypeWrapper<Omit<ISettingsCascade, 'subjects'> & {
|
8685
|
-
subjects?: Maybe<Array<Maybe<IResolversTypes['SettingsSubject']>>>;
|
8686
|
-
}>;
|
8687
|
-
SettingsSubject: IResolversTypes['UserSettings'] | IResolversTypes['ApplicationSettings'] | IResolversTypes['MachineSettings'] | IResolversTypes['OrganizationResourceSettings'] | IResolversTypes['GlobalSettings'] | IResolversTypes['OrganizationSettings'] | IResolversTypes['MemorySettings'] | IResolversTypes['DefaultSettings'];
|
8688
|
-
UserSettings: ResolverTypeWrapper<IUserSettings>;
|
8709
|
+
ApplicationBillingPlanPolicy: IApplicationBillingPlanPolicy;
|
8710
|
+
ApplicationPolicy: ResolverTypeWrapper<IApplicationPolicy>;
|
8711
|
+
ApplicationRolePermission: ResolverTypeWrapper<IApplicationRolePermission>;
|
8712
|
+
ApplicationRoles: IApplicationRoles;
|
8689
8713
|
ApplicationSettings: ResolverTypeWrapper<IApplicationSettings>;
|
8690
|
-
MachineSettings: ResolverTypeWrapper<IMachineSettings>;
|
8691
|
-
OrganizationResourceSettings: ResolverTypeWrapper<IOrganizationResourceSettings>;
|
8692
|
-
GlobalSettings: ResolverTypeWrapper<IGlobalSettings>;
|
8693
|
-
OrganizationSettings: ResolverTypeWrapper<IOrganizationSettings>;
|
8694
|
-
MemorySettings: ResolverTypeWrapper<IMemorySettings>;
|
8695
|
-
Preferences: ResolverTypeWrapper<IPreferences>;
|
8696
|
-
Preference_Account: ResolverTypeWrapper<IPreference_Account>;
|
8697
|
-
Preference_Default: ResolverTypeWrapper<IPreference_Default>;
|
8698
|
-
Preference_Notification: ResolverTypeWrapper<IPreference_Notification>;
|
8699
|
-
Preference_Global: ResolverTypeWrapper<IPreference_Global>;
|
8700
|
-
Preference_Global_User: ResolverTypeWrapper<IPreference_Global_User>;
|
8701
|
-
GlobalLanguages: IGlobalLanguages;
|
8702
|
-
GlobalCurrencies: IGlobalCurrencies;
|
8703
|
-
Preference_Organization: ResolverTypeWrapper<IPreference_Organization>;
|
8704
|
-
Preference_Teams: ResolverTypeWrapper<IPreference_Teams>;
|
8705
|
-
Visibility: IVisibility;
|
8706
|
-
Preference_Project: ResolverTypeWrapper<IPreference_Project>;
|
8707
|
-
UserProfile: ResolverTypeWrapper<IUserProfile>;
|
8708
|
-
IAuth0User: IResolversTypes['UserProfile'];
|
8709
|
-
IAuth0UserProfile: IResolversTypes['UserProfile'];
|
8710
|
-
IUserMetadata: IResolversTypes['UserMetadata'];
|
8711
|
-
Date: ResolverTypeWrapper<Scalars['Date']>;
|
8712
|
-
IAuth0Token: IResolversTypes['UserProfile'];
|
8713
|
-
Auth0Identity: ResolverTypeWrapper<IAuth0Identity>;
|
8714
|
-
Auth0IdentityProfileData: ResolverTypeWrapper<IAuth0IdentityProfileData>;
|
8715
|
-
UserMetadata: ResolverTypeWrapper<IUserMetadata>;
|
8716
|
-
UserDevice: ResolverTypeWrapper<IUserDevice>;
|
8717
|
-
IntegrationConfigurationFilterInput: IIntegrationConfigurationFilterInput;
|
8718
|
-
IntegrationConfiguration: ResolverTypeWrapper<IIntegrationConfiguration>;
|
8719
|
-
DateTime: ResolverTypeWrapper<Scalars['DateTime']>;
|
8720
|
-
JSON: ResolverTypeWrapper<Scalars['JSON']>;
|
8721
|
-
UserAccountWhere: IUserAccountWhere;
|
8722
|
-
UserAccount: ResolverTypeWrapper<IUserAccount>;
|
8723
|
-
Node: IResolversTypes['UserAccount'] | IResolversTypes['OrgUserAccunt'];
|
8724
|
-
PhoneNumber: ResolverTypeWrapper<IPhoneNumber>;
|
8725
|
-
UserToken: ResolverTypeWrapper<IUserToken>;
|
8726
|
-
TokenTypesEnum: ITokenTypesEnum;
|
8727
|
-
Country: ResolverTypeWrapper<ICountry>;
|
8728
8714
|
AsanaConnection: ResolverTypeWrapper<IAsanaConnection>;
|
8729
8715
|
AsanaConnectionState: ResolverTypeWrapper<IAsanaConnectionState>;
|
8730
|
-
AsanaUser: ResolverTypeWrapper<IAsanaUser>;
|
8731
8716
|
AsanaProjects: ResolverTypeWrapper<IAsanaProjects>;
|
8717
|
+
AsanaUser: ResolverTypeWrapper<IAsanaUser>;
|
8732
8718
|
AsanaWorkspaces: ResolverTypeWrapper<IAsanaWorkspaces>;
|
8733
|
-
|
8734
|
-
|
8719
|
+
Auth0Identity: ResolverTypeWrapper<IAuth0Identity>;
|
8720
|
+
Auth0IdentityProfileData: ResolverTypeWrapper<IAuth0IdentityProfileData>;
|
8721
|
+
AuthErrorCodes: IAuthErrorCodes;
|
8722
|
+
AuthTokens: ResolverTypeWrapper<IAuthTokens>;
|
8723
|
+
AuthUser: ResolverTypeWrapper<IAuthUser>;
|
8724
|
+
AuthUser_Input: IAuthUser_Input;
|
8725
|
+
CacheControlScope: ICacheControlScope;
|
8726
|
+
CityInput: ICityInput;
|
8727
|
+
CityUpdateInput: ICityUpdateInput;
|
8728
|
+
Client: ResolverTypeWrapper<IClient>;
|
8729
|
+
ClientAddRequest: IClientAddRequest;
|
8730
|
+
ClientCacheTypeNames: IClientCacheTypeNames;
|
8731
|
+
ClientContainerService: IClientContainerService;
|
8732
|
+
ClientCreatedEvent: ResolverTypeWrapper<IClientCreatedEvent>;
|
8733
|
+
ClientDeletedEvent: ResolverTypeWrapper<IClientDeletedEvent>;
|
8734
|
+
ClientPhone: ResolverTypeWrapper<IClientPhone>;
|
8735
|
+
ClientPhone_Input: IClientPhone_Input;
|
8736
|
+
ClientTypes: IClientTypes;
|
8737
|
+
ClientUpdateRequest: IClientUpdateRequest;
|
8738
|
+
ConfigCollectionName: IConfigCollectionName;
|
8739
|
+
ConfigFragmentName: IConfigFragmentName;
|
8735
8740
|
Configuration: IResolversTypes['DefaultConfiguration'] | IResolversTypes['MachineConfiguration'] | IResolversTypes['UserConfiguration'] | IResolversTypes['OrganizationConfiguration'] | IResolversTypes['OrganizationResourceConfiguration'];
|
8736
|
-
|
8737
|
-
IConfigurationModel: IResolversTypes['DefaultConfiguration'] | IResolversTypes['MachineConfiguration'] | IResolversTypes['UserConfiguration'] | IResolversTypes['OrganizationConfiguration'] | IResolversTypes['OrganizationResourceConfiguration'] | IResolversTypes['DefaultPolicy'] | IResolversTypes['OrganizationPolicy'] | IResolversTypes['ResourcePolicy'] | IResolversTypes['ApplicationPolicy'] | IResolversTypes['DefaultRole'] | IResolversTypes['OrganizationRole'] | IResolversTypes['ResourceRole'] | IResolversTypes['ApplicationRolePermission'];
|
8738
|
-
Overrides: ResolverTypeWrapper<IOverrides>;
|
8739
|
-
MachineConfiguration: ResolverTypeWrapper<IMachineConfiguration>;
|
8740
|
-
UserConfiguration: ResolverTypeWrapper<IUserConfiguration>;
|
8741
|
-
OrganizationConfiguration: ResolverTypeWrapper<IOrganizationConfiguration>;
|
8742
|
-
OrganizationResourceConfiguration: ResolverTypeWrapper<IOrganizationResourceConfiguration>;
|
8741
|
+
ConfigurationContributionNames: IConfigurationContributionNames;
|
8743
8742
|
ConfigurationData: ResolverTypeWrapper<IConfigurationData>;
|
8743
|
+
ConfigurationExtensionInfo: ResolverTypeWrapper<IConfigurationExtensionInfo>;
|
8744
|
+
ConfigurationInput: IConfigurationInput;
|
8745
|
+
ConfigurationModel: ResolverTypeWrapper<IConfigurationModel>;
|
8746
|
+
ConfigurationOverrides: ResolverTypeWrapper<IConfigurationOverrides>;
|
8747
|
+
ConfigurationOverrides_Input: IConfigurationOverrides_Input;
|
8744
8748
|
ConfigurationPolicy: IResolversTypes['DefaultPolicy'] | IResolversTypes['OrganizationPolicy'] | IResolversTypes['ResourcePolicy'] | IResolversTypes['ApplicationPolicy'];
|
8745
|
-
|
8746
|
-
|
8747
|
-
|
8748
|
-
ApplicationPolicy: ResolverTypeWrapper<IApplicationPolicy>;
|
8749
|
+
ConfigurationScope: ConfigurationScope;
|
8750
|
+
ConfigurationTarget: ConfigurationTarget;
|
8751
|
+
ConfigurationUpdateEvent: ResolverTypeWrapper<IConfigurationUpdateEvent>;
|
8749
8752
|
Context: ResolverTypeWrapper<IContext>;
|
8753
|
+
ContextServiceAction: IContextServiceAction;
|
8750
8754
|
ContributionRoles: ResolverTypeWrapper<Omit<IContributionRoles, 'permissions'> & {
|
8751
8755
|
permissions?: Maybe<IResolversTypes['AccessRole']>;
|
8752
8756
|
}>;
|
8753
|
-
|
8757
|
+
ContributionSettings: ResolverTypeWrapper<IContributionSettings>;
|
8758
|
+
ContributionSettingsProperties: ResolverTypeWrapper<IContributionSettingsProperties>;
|
8759
|
+
Country: ResolverTypeWrapper<ICountry>;
|
8760
|
+
CountryInput: ICountryInput;
|
8761
|
+
CustomerInvoice: ResolverTypeWrapper<ICustomerInvoice>;
|
8762
|
+
CustomerInvoice_Input: ICustomerInvoice_Input;
|
8763
|
+
Date: ResolverTypeWrapper<Scalars['Date']>;
|
8764
|
+
DateTime: ResolverTypeWrapper<Scalars['DateTime']>;
|
8765
|
+
DefaultConfiguration: ResolverTypeWrapper<IDefaultConfiguration>;
|
8766
|
+
DefaultPolicy: ResolverTypeWrapper<IDefaultPolicy>;
|
8754
8767
|
DefaultRole: ResolverTypeWrapper<IDefaultRole>;
|
8755
|
-
|
8756
|
-
|
8757
|
-
|
8768
|
+
DefaultSettings: ResolverTypeWrapper<IDefaultSettings>;
|
8769
|
+
DeviceInfoInput: IDeviceInfoInput;
|
8770
|
+
EActivityScopes: IEActivityScopes;
|
8771
|
+
EditPresentationTypes: IEditPresentationTypes;
|
8772
|
+
EmptyResponse: ResolverTypeWrapper<IEmptyResponse>;
|
8758
8773
|
Environment: ResolverTypeWrapper<IEnvironment>;
|
8759
|
-
|
8760
|
-
|
8761
|
-
|
8762
|
-
|
8763
|
-
|
8764
|
-
ProjectSourceProviders: IProjectSourceProviders;
|
8765
|
-
ProjectType: IProjectType;
|
8766
|
-
InvoiceType: ResolverTypeWrapper<IInvoiceType>;
|
8774
|
+
EnvironmentPayload: IEnvironmentPayload;
|
8775
|
+
ExternalResourceData: ResolverTypeWrapper<IExternalResourceData>;
|
8776
|
+
FieldError: ResolverTypeWrapper<IFieldError>;
|
8777
|
+
GenerateSSHKeysRequest: IGenerateSSHKeysRequest;
|
8778
|
+
GeoLocation: ResolverTypeWrapper<IGeoLocation>;
|
8767
8779
|
Float: ResolverTypeWrapper<Scalars['Float']>;
|
8768
|
-
|
8769
|
-
|
8770
|
-
|
8771
|
-
|
8772
|
-
|
8773
|
-
|
8774
|
-
|
8780
|
+
GlobalCurrencies: IGlobalCurrencies;
|
8781
|
+
GlobalLanguages: IGlobalLanguages;
|
8782
|
+
GlobalSettings: ResolverTypeWrapper<IGlobalSettings>;
|
8783
|
+
IActivitySettings: IResolversTypes['AdminIdeSettings'];
|
8784
|
+
IAuth0Identity: never;
|
8785
|
+
IAuth0Token: IResolversTypes['UserProfile'];
|
8786
|
+
IAuth0User: IResolversTypes['UserProfile'];
|
8787
|
+
IAuth0UserProfile: IResolversTypes['UserProfile'];
|
8788
|
+
ICity: never;
|
8789
|
+
IConfigurationChangeEvent: ResolverTypeWrapper<Omit<IIConfigurationChangeEvent, 'changedConfiguration'> & {
|
8790
|
+
changedConfiguration?: Maybe<IResolversTypes['Configuration']>;
|
8791
|
+
}>;
|
8792
|
+
IConfigurationModel: IResolversTypes['ApplicationPolicy'] | IResolversTypes['ApplicationRolePermission'] | IResolversTypes['DefaultConfiguration'] | IResolversTypes['DefaultPolicy'] | IResolversTypes['DefaultRole'] | IResolversTypes['MachineConfiguration'] | IResolversTypes['OrganizationConfiguration'] | IResolversTypes['OrganizationPolicy'] | IResolversTypes['OrganizationResourceConfiguration'] | IResolversTypes['OrganizationRole'] | IResolversTypes['ResourcePolicy'] | IResolversTypes['ResourceRole'] | IResolversTypes['UserConfiguration'];
|
8793
|
+
IConfigurationService: never;
|
8794
|
+
ICountry: never;
|
8795
|
+
IEventWithContext: IResolversTypes['OrganizationCreatedEvent'] | IResolversTypes['OrganizationDeletedEvent'];
|
8796
|
+
IOnBoardingParams: IIOnBoardingParams;
|
8775
8797
|
IOrgUser: IResolversTypes['OrgUser'];
|
8776
|
-
|
8777
|
-
|
8778
|
-
|
8798
|
+
IResourceData: IResolversTypes['ExternalResourceData'] | IResolversTypes['OrganizationResourceData'];
|
8799
|
+
IResourceUserRole: IResolversTypes['ResourceUser'];
|
8800
|
+
IResourceUtilizationSettings: never;
|
8801
|
+
ISettingsSubject: IResolversTypes['ApplicationSettings'] | IResolversTypes['DefaultSettings'] | IResolversTypes['GlobalSettings'] | IResolversTypes['MachineSettings'] | IResolversTypes['MemorySettings'] | IResolversTypes['OrganizationResourceSettings'] | IResolversTypes['OrganizationSettings'] | IResolversTypes['UserSettings'];
|
8802
|
+
ISshKeySettings: IResolversTypes['SshKeySettings'];
|
8803
|
+
ITerritorialState: never;
|
8804
|
+
IUser: IResolversTypes['AuthUser'];
|
8805
|
+
IUserMetadata: IResolversTypes['UserMetadata'];
|
8806
|
+
IntegraitonConfigurationId: ResolverTypeWrapper<IIntegraitonConfigurationId>;
|
8807
|
+
IntegrationConfigServiceAction: IIntegrationConfigServiceAction;
|
8808
|
+
IntegrationConfiguration: ResolverTypeWrapper<IIntegrationConfiguration>;
|
8809
|
+
IntegrationConfigurationCreateOrUpdateInput: IIntegrationConfigurationCreateOrUpdateInput;
|
8810
|
+
IntegrationConfigurationFilterInput: IIntegrationConfigurationFilterInput;
|
8811
|
+
IntegrationConfigurationInput: IIntegrationConfigurationInput;
|
8779
8812
|
InviteMember: ResolverTypeWrapper<IInviteMember>;
|
8780
8813
|
InviteStatus: IInviteStatus;
|
8781
|
-
|
8814
|
+
InvoiceCreateRequest: IInvoiceCreateRequest;
|
8815
|
+
InvoiceCreatedEvent: ResolverTypeWrapper<IInvoiceCreatedEvent>;
|
8816
|
+
InvoiceDeletedEvent: ResolverTypeWrapper<IInvoiceDeletedEvent>;
|
8817
|
+
InvoiceMailRequest: IInvoiceMailRequest;
|
8818
|
+
InvoiceType: ResolverTypeWrapper<IInvoiceType>;
|
8819
|
+
InvoiceUpdateRequest: IInvoiceUpdateRequest;
|
8820
|
+
JSON: ResolverTypeWrapper<Scalars['JSON']>;
|
8821
|
+
JSONObject: ResolverTypeWrapper<Scalars['JSONObject']>;
|
8822
|
+
KeyPathSegment: IKeyPathSegment;
|
8823
|
+
LoginError: ResolverTypeWrapper<ILoginError>;
|
8824
|
+
MachineConfiguration: ResolverTypeWrapper<IMachineConfiguration>;
|
8825
|
+
MachineSettings: ResolverTypeWrapper<IMachineSettings>;
|
8826
|
+
MailTemplateId: IMailTemplateId;
|
8827
|
+
MemberInvoice: ResolverTypeWrapper<IMemberInvoice>;
|
8828
|
+
MemberInvoice_Input: IMemberInvoice_Input;
|
8829
|
+
MemorySettings: ResolverTypeWrapper<IMemorySettings>;
|
8830
|
+
MenuItem: ResolverTypeWrapper<IMenuItem>;
|
8831
|
+
MenuPosition: IMenuPosition;
|
8832
|
+
MoleculerServiceName: IMoleculerServiceName;
|
8833
|
+
Mutation: ResolverTypeWrapper<{}>;
|
8782
8834
|
NameType: ResolverTypeWrapper<INameType>;
|
8783
|
-
|
8784
|
-
|
8785
|
-
|
8835
|
+
Name_Input: IName_Input;
|
8836
|
+
Node: IResolversTypes['OrgUserAccunt'] | IResolversTypes['UserAccount'];
|
8837
|
+
Observable: ResolverTypeWrapper<Scalars['Observable']>;
|
8786
8838
|
OrgDetailWhere: IOrgDetailWhere;
|
8787
8839
|
OrgMember: ResolverTypeWrapper<IOrgMember>;
|
8788
|
-
OrganizationData: ResolverTypeWrapper<Omit<IOrganizationData, 'resources'> & {
|
8789
|
-
resources: Array<Maybe<IResolversTypes['ResourceData']>>;
|
8790
|
-
}>;
|
8791
|
-
ResourceData: IResolversTypes['OrganizationResourceData'] | IResolversTypes['ExternalResourceData'];
|
8792
|
-
OrganizationResourceData: ResolverTypeWrapper<IOrganizationResourceData>;
|
8793
|
-
IResourceData: IResolversTypes['OrganizationResourceData'] | IResolversTypes['ExternalResourceData'];
|
8794
|
-
ExternalResourceData: ResolverTypeWrapper<IExternalResourceData>;
|
8795
|
-
AccountTeam: ResolverTypeWrapper<IAccountTeam>;
|
8796
|
-
TeamMember: ResolverTypeWrapper<ITeamMember>;
|
8797
|
-
Project_Output: ResolverTypeWrapper<IProject_Output>;
|
8798
|
-
RoleInput: IRoleInput;
|
8799
|
-
Task: ResolverTypeWrapper<ITask>;
|
8800
|
-
ResourceAccessRole: ResolverTypeWrapper<Omit<IResourceAccessRole, 'accessRoles'> & {
|
8801
|
-
accessRoles?: Maybe<Array<Maybe<IResolversTypes['AccessRole']>>>;
|
8802
|
-
}>;
|
8803
|
-
ResourceUser: ResolverTypeWrapper<IResourceUser>;
|
8804
|
-
IResourceUserRole: IResolversTypes['ResourceUser'];
|
8805
|
-
UserContext: ResolverTypeWrapper<IUserContext>;
|
8806
|
-
PermissionSubject: ResolverTypeWrapper<IPermissionSubject>;
|
8807
|
-
ViewerPoliciesInput: IViewerPoliciesInput;
|
8808
|
-
PolicySubject: ResolverTypeWrapper<IPolicySubject>;
|
8809
|
-
PreferencesOpenOptions_Input: IPreferencesOpenOptions_Input;
|
8810
|
-
PreferencesInput: ResolverTypeWrapper<IPreferencesInput>;
|
8811
|
-
PreferencesInput_Input: IPreferencesInput_Input;
|
8812
|
-
ViewerSettingsInput: IViewerSettingsInput;
|
8813
|
-
ViewerSettingsSubject: ResolverTypeWrapper<IViewerSettingsSubject>;
|
8814
|
-
Mutation: ResolverTypeWrapper<{}>;
|
8815
|
-
SshKeyInput: ISshKeyInput;
|
8816
|
-
SshKeyType: ISshKeyType;
|
8817
|
-
OrganizationNotificationValues: IOrganizationNotificationValues;
|
8818
|
-
IOnBoardingParams: IIOnBoardingParams;
|
8819
8840
|
OrgType: IOrgType;
|
8820
|
-
|
8821
|
-
|
8822
|
-
Name_Input: IName_Input;
|
8823
|
-
ClientPhone_Input: IClientPhone_Input;
|
8824
|
-
SocialConnect_Input: ISocialConnect_Input;
|
8825
|
-
AddressType_Input: IAddressType_Input;
|
8826
|
-
ProjectAddRequest: IProjectAddRequest;
|
8827
|
-
ResourceCreationData_Input: IResourceCreationData_Input;
|
8828
|
-
ActivityCollectRequest: IActivityCollectRequest;
|
8829
|
-
EActivityScopes: IEActivityScopes;
|
8830
|
-
IntegrationConfigurationInput: IIntegrationConfigurationInput;
|
8831
|
-
IntegraitonConfigurationId: ResolverTypeWrapper<IIntegraitonConfigurationId>;
|
8832
|
-
InvoiceCreateRequest: IInvoiceCreateRequest;
|
8833
|
-
MemberInvoice_Input: IMemberInvoice_Input;
|
8834
|
-
ProjectInvoice_Input: IProjectInvoice_Input;
|
8835
|
-
CustomerInvoice_Input: ICustomerInvoice_Input;
|
8836
|
-
IntegrationConfigurationCreateOrUpdateInput: IIntegrationConfigurationCreateOrUpdateInput;
|
8837
|
-
OrganizationCreateRequest: IOrganizationCreateRequest;
|
8838
|
-
OrgUser_Input: IOrgUser_Input;
|
8839
|
-
OrganizationInvitation_Input: IOrganizationInvitation_Input;
|
8840
|
-
TaskRequest: ITaskRequest;
|
8841
|
-
TeamCreationRequest: ITeamCreationRequest;
|
8842
|
-
AuthTokens: ResolverTypeWrapper<IAuthTokens>;
|
8843
|
-
UserAuth0UpdateFields: IUserAuth0UpdateFields;
|
8844
|
-
PhoneNumberInput: IPhoneNumberInput;
|
8845
|
-
OrganizationRemoveRequest: IOrganizationRemoveRequest;
|
8846
|
-
UserPasswordResetInput: IUserPasswordResetInput;
|
8847
|
-
InvoiceMailRequest: IInvoiceMailRequest;
|
8848
|
-
Template: ITemplate;
|
8849
|
-
OrganizationInvitationRequest: IOrganizationInvitationRequest;
|
8850
|
-
InvoiceUpdateRequest: IInvoiceUpdateRequest;
|
8851
|
-
ClientUpdateRequest: IClientUpdateRequest;
|
8852
|
-
UpdatedClient_Input: IUpdatedClient_Input;
|
8853
|
-
UpdateProject_Input: IUpdateProject_Input;
|
8854
|
-
OrganizationUpdateRequest: IOrganizationUpdateRequest;
|
8855
|
-
Organization_Input: IOrganization_Input;
|
8856
|
-
Subscription: ResolverTypeWrapper<{}>;
|
8857
|
-
ConfigurationUpdateEvent: ResolverTypeWrapper<IConfigurationUpdateEvent>;
|
8858
|
-
ConfigurationOverrides: ResolverTypeWrapper<IConfigurationOverrides>;
|
8859
|
-
SubscribedOrganizationData: ResolverTypeWrapper<Omit<ISubscribedOrganizationData, 'resources'> & {
|
8860
|
-
resources?: Maybe<Array<Maybe<IResolversTypes['ResourceData']>>>;
|
8861
|
-
}>;
|
8862
|
-
AccountBroadcasterActions: IAccountBroadcasterActions;
|
8863
|
-
AccountService: ResolverTypeWrapper<IAccountService>;
|
8864
|
-
UserAccountCreateRequest: IUserAccountCreateRequest;
|
8865
|
-
UserTokenInput: IUserTokenInput;
|
8866
|
-
UserAccountUpdateRequest: IUserAccountUpdateRequest;
|
8867
|
-
UserAccount_Input: IUserAccount_Input;
|
8868
|
-
UserAccountRemoveRequest: IUserAccountRemoveRequest;
|
8869
|
-
AccountServiceAction: IAccountServiceAction;
|
8870
|
-
AccountTeam_Input: IAccountTeam_Input;
|
8871
|
-
TeamMember_Input: ITeamMember_Input;
|
8872
|
-
ActivityRecord: ResolverTypeWrapper<IActivityRecord>;
|
8873
|
-
ActivityRecordInput: IActivityRecordInput;
|
8874
|
-
ActivityServiceCommands: IActivityServiceCommands;
|
8875
|
-
AdminIdeSettings: ResolverTypeWrapper<IAdminIdeSettings>;
|
8876
|
-
IActivitySettings: IResolversTypes['AdminIdeSettings'];
|
8877
|
-
ApplicationBillingPlanPolicy: IApplicationBillingPlanPolicy;
|
8878
|
-
AuthErrorCodes: IAuthErrorCodes;
|
8879
|
-
AuthUser: ResolverTypeWrapper<IAuthUser>;
|
8880
|
-
IUser: IResolversTypes['AuthUser'];
|
8881
|
-
AuthUser_Input: IAuthUser_Input;
|
8882
|
-
CacheControlScope: ICacheControlScope;
|
8883
|
-
CityInput: ICityInput;
|
8884
|
-
TerritorialStateInput: ITerritorialStateInput;
|
8885
|
-
CityUpdateInput: ICityUpdateInput;
|
8886
|
-
TerritorialStateUpdateInput: ITerritorialStateUpdateInput;
|
8887
|
-
ClientCacheTypeNames: IClientCacheTypeNames;
|
8888
|
-
ClientContainerService: IClientContainerService;
|
8889
|
-
ClientCreatedEvent: ResolverTypeWrapper<IClientCreatedEvent>;
|
8890
|
-
ClientDeletedEvent: ResolverTypeWrapper<IClientDeletedEvent>;
|
8891
|
-
ClientTypes: IClientTypes;
|
8892
|
-
ConfigCollectionName: IConfigCollectionName;
|
8893
|
-
ConfigFragmentName: IConfigFragmentName;
|
8894
|
-
ConfigurationContributionNames: IConfigurationContributionNames;
|
8895
|
-
ConfigurationModel: ResolverTypeWrapper<IConfigurationModel>;
|
8896
|
-
ConfigurationTarget: ConfigurationTarget;
|
8897
|
-
ContextServiceAction: IContextServiceAction;
|
8898
|
-
CountryInput: ICountryInput;
|
8899
|
-
EmptyResponse: ResolverTypeWrapper<IEmptyResponse>;
|
8900
|
-
EnvironmentPayload: IEnvironmentPayload;
|
8901
|
-
FieldError: ResolverTypeWrapper<IFieldError>;
|
8902
|
-
GenerateSSHKeysRequest: IGenerateSSHKeysRequest;
|
8903
|
-
GeoLocation: ResolverTypeWrapper<IGeoLocation>;
|
8904
|
-
IAuth0Identity: never;
|
8905
|
-
ICity: never;
|
8906
|
-
ITerritorialState: never;
|
8907
|
-
ICountry: never;
|
8908
|
-
IConfigurationChangeEvent: ResolverTypeWrapper<Omit<IIConfigurationChangeEvent, 'changedConfiguration'> & {
|
8909
|
-
changedConfiguration?: Maybe<IResolversTypes['Configuration']>;
|
8910
|
-
}>;
|
8911
|
-
IConfigurationService: never;
|
8912
|
-
IEventWithContext: IResolversTypes['OrganizationCreatedEvent'] | IResolversTypes['OrganizationDeletedEvent'];
|
8913
|
-
IResourceUtilizationSettings: never;
|
8914
|
-
ISshKeySettings: IResolversTypes['SshKeySettings'];
|
8915
|
-
IntegrationConfigServiceAction: IIntegrationConfigServiceAction;
|
8916
|
-
InvoiceCreatedEvent: ResolverTypeWrapper<IInvoiceCreatedEvent>;
|
8917
|
-
InvoiceDeletedEvent: ResolverTypeWrapper<IInvoiceDeletedEvent>;
|
8918
|
-
JSONObject: ResolverTypeWrapper<Scalars['JSONObject']>;
|
8919
|
-
KeyPathSegment: IKeyPathSegment;
|
8920
|
-
LoginError: ResolverTypeWrapper<ILoginError>;
|
8921
|
-
MailTemplateId: IMailTemplateId;
|
8922
|
-
MenuItem: ResolverTypeWrapper<IMenuItem>;
|
8923
|
-
MenuPosition: IMenuPosition;
|
8924
|
-
MoleculerServiceName: IMoleculerServiceName;
|
8925
|
-
Observable: ResolverTypeWrapper<Scalars['Observable']>;
|
8841
|
+
OrgUser: ResolverTypeWrapper<IOrgUser>;
|
8842
|
+
OrgUserAccunt: ResolverTypeWrapper<IOrgUserAccunt>;
|
8926
8843
|
OrgUserRole: IOrgUserRole;
|
8844
|
+
OrgUser_Input: IOrgUser_Input;
|
8927
8845
|
OrgainizationInvitationRole: IOrgainizationInvitationRole;
|
8846
|
+
Organization: ResolverTypeWrapper<IOrganization>;
|
8847
|
+
OrganizationConfigValue_Input: IOrganizationConfigValue_Input;
|
8848
|
+
OrganizationConfiguration: ResolverTypeWrapper<IOrganizationConfiguration>;
|
8928
8849
|
OrganizationContextPubSubEvents: IOrganizationContextPubSubEvents;
|
8850
|
+
OrganizationCreateRequest: IOrganizationCreateRequest;
|
8929
8851
|
OrganizationCreatedEvent: ResolverTypeWrapper<IOrganizationCreatedEvent>;
|
8852
|
+
OrganizationData: ResolverTypeWrapper<Omit<IOrganizationData, 'resources'> & {
|
8853
|
+
resources: Array<Maybe<IResolversTypes['ResourceData']>>;
|
8854
|
+
}>;
|
8930
8855
|
OrganizationDeletedEvent: ResolverTypeWrapper<IOrganizationDeletedEvent>;
|
8931
8856
|
OrganizationIdentifier: ResolverTypeWrapper<IOrganizationIdentifier>;
|
8857
|
+
OrganizationInvitation: ResolverTypeWrapper<IOrganizationInvitation>;
|
8858
|
+
OrganizationInvitationDecode: ResolverTypeWrapper<IOrganizationInvitationDecode>;
|
8859
|
+
OrganizationInvitationRequest: IOrganizationInvitationRequest;
|
8860
|
+
OrganizationInvitation_Input: IOrganizationInvitation_Input;
|
8932
8861
|
OrganizationMember: ResolverTypeWrapper<IOrganizationMember>;
|
8862
|
+
OrganizationNotificationValues: IOrganizationNotificationValues;
|
8863
|
+
OrganizationPolicy: ResolverTypeWrapper<IOrganizationPolicy>;
|
8864
|
+
OrganizationRemoveRequest: IOrganizationRemoveRequest;
|
8865
|
+
OrganizationResourceConfiguration: ResolverTypeWrapper<IOrganizationResourceConfiguration>;
|
8866
|
+
OrganizationResourceData: ResolverTypeWrapper<IOrganizationResourceData>;
|
8867
|
+
OrganizationResourceSettings: ResolverTypeWrapper<IOrganizationResourceSettings>;
|
8868
|
+
OrganizationRole: ResolverTypeWrapper<IOrganizationRole>;
|
8933
8869
|
OrganizationService: ResolverTypeWrapper<IOrganizationService>;
|
8934
8870
|
OrganizationServiceAction: IOrganizationServiceAction;
|
8871
|
+
OrganizationSettings: ResolverTypeWrapper<IOrganizationSettings>;
|
8872
|
+
OrganizationUpdateRequest: IOrganizationUpdateRequest;
|
8873
|
+
Organization_Input: IOrganization_Input;
|
8935
8874
|
OrganizationsDeactivatedEvent: ResolverTypeWrapper<IOrganizationsDeactivatedEvent>;
|
8936
8875
|
OrganizationsDeletedEvent: ResolverTypeWrapper<IOrganizationsDeletedEvent>;
|
8876
|
+
Overrides: ResolverTypeWrapper<IOverrides>;
|
8937
8877
|
PageInfo: ResolverTypeWrapper<IPageInfo>;
|
8938
8878
|
PermissionAction: IPermissionAction;
|
8939
8879
|
PermissionResource: IPermissionResource;
|
8880
|
+
PermissionSubject: ResolverTypeWrapper<IPermissionSubject>;
|
8940
8881
|
PermissionType: IPermissionType;
|
8882
|
+
PhoneNumber: ResolverTypeWrapper<IPhoneNumber>;
|
8883
|
+
PhoneNumberInput: IPhoneNumberInput;
|
8884
|
+
PolicySubject: ResolverTypeWrapper<IPolicySubject>;
|
8941
8885
|
PortalLanguage: IPortalLanguage;
|
8886
|
+
Position: ResolverTypeWrapper<IPosition>;
|
8942
8887
|
PreDefinedRole: IPreDefinedRole;
|
8943
8888
|
PreferenceItem: ResolverTypeWrapper<IPreferenceItem>;
|
8889
|
+
Preference_Account: ResolverTypeWrapper<IPreference_Account>;
|
8890
|
+
Preference_Default: ResolverTypeWrapper<IPreference_Default>;
|
8891
|
+
Preference_Global: ResolverTypeWrapper<IPreference_Global>;
|
8892
|
+
Preference_Global_User: ResolverTypeWrapper<IPreference_Global_User>;
|
8893
|
+
Preference_Notification: ResolverTypeWrapper<IPreference_Notification>;
|
8894
|
+
Preference_Organization: ResolverTypeWrapper<IPreference_Organization>;
|
8895
|
+
Preference_Project: ResolverTypeWrapper<IPreference_Project>;
|
8896
|
+
Preference_Teams: ResolverTypeWrapper<IPreference_Teams>;
|
8897
|
+
Preferences: ResolverTypeWrapper<IPreferences>;
|
8898
|
+
PreferencesInput: ResolverTypeWrapper<IPreferencesInput>;
|
8899
|
+
PreferencesInput_Input: IPreferencesInput_Input;
|
8900
|
+
PreferencesOpenOptions_Input: IPreferencesOpenOptions_Input;
|
8901
|
+
PreferencesResponse: ResolverTypeWrapper<IPreferencesResponse>;
|
8902
|
+
PreferencesType: ResolverTypeWrapper<IPreferencesType>;
|
8903
|
+
ProjectAddRequest: IProjectAddRequest;
|
8944
8904
|
ProjectCreatedEvent: ResolverTypeWrapper<IProjectCreatedEvent>;
|
8945
8905
|
ProjectDeletedEvent: ResolverTypeWrapper<IProjectDeletedEvent>;
|
8906
|
+
ProjectInvoice: ResolverTypeWrapper<IProjectInvoice>;
|
8907
|
+
ProjectInvoice_Input: IProjectInvoice_Input;
|
8908
|
+
ProjectParameters: ResolverTypeWrapper<IProjectParameters>;
|
8946
8909
|
ProjectParameters_Input: IProjectParameters_Input;
|
8910
|
+
ProjectSource: ResolverTypeWrapper<IProjectSource>;
|
8911
|
+
ProjectSourceProviders: IProjectSourceProviders;
|
8912
|
+
ProjectSourceType: IProjectSourceType;
|
8947
8913
|
ProjectSource_Input: IProjectSource_Input;
|
8914
|
+
ProjectType: IProjectType;
|
8915
|
+
ProjectWhereInput: IProjectWhereInput;
|
8948
8916
|
Project_Input: IProject_Input;
|
8917
|
+
Project_Output: ResolverTypeWrapper<IProject_Output>;
|
8918
|
+
Projects: ResolverTypeWrapper<IProjects>;
|
8919
|
+
Query: ResolverTypeWrapper<{}>;
|
8920
|
+
Range: ResolverTypeWrapper<IRange>;
|
8949
8921
|
RegistryExtensions: IRegistryExtensions;
|
8922
|
+
ResourceAccessRole: ResolverTypeWrapper<Omit<IResourceAccessRole, 'accessRoles'> & {
|
8923
|
+
accessRoles?: Maybe<Array<Maybe<IResolversTypes['AccessRole']>>>;
|
8924
|
+
}>;
|
8950
8925
|
ResourceAuthority: IResourceAuthority;
|
8951
8926
|
ResourceCreatedEvent: ResolverTypeWrapper<IResourceCreatedEvent>;
|
8927
|
+
ResourceCreationData_Input: IResourceCreationData_Input;
|
8928
|
+
ResourceData: IResolversTypes['OrganizationResourceData'] | IResolversTypes['ExternalResourceData'];
|
8952
8929
|
ResourceDeletedEvent: ResolverTypeWrapper<IResourceDeletedEvent>;
|
8930
|
+
ResourcePolicy: ResolverTypeWrapper<IResourcePolicy>;
|
8931
|
+
ResourceRole: ResolverTypeWrapper<IResourceRole>;
|
8932
|
+
ResourceUser: ResolverTypeWrapper<IResourceUser>;
|
8953
8933
|
Role: IRole;
|
8934
|
+
RoleInput: IRoleInput;
|
8954
8935
|
RouteData: ResolverTypeWrapper<IRouteData>;
|
8955
8936
|
RouteParams: IRouteParams;
|
8956
8937
|
SettingValueType: ISettingValueType;
|
8938
|
+
Settings: ResolverTypeWrapper<ISettings>;
|
8939
|
+
SettingsCascade: ResolverTypeWrapper<Omit<ISettingsCascade, 'subjects'> & {
|
8940
|
+
subjects?: Maybe<Array<Maybe<IResolversTypes['SettingsSubject']>>>;
|
8941
|
+
}>;
|
8942
|
+
SettingsGroup: ResolverTypeWrapper<ISettingsGroup>;
|
8943
|
+
SettingsSection: ResolverTypeWrapper<ISettingsSection>;
|
8944
|
+
SettingsSubject: IResolversTypes['UserSettings'] | IResolversTypes['ApplicationSettings'] | IResolversTypes['MachineSettings'] | IResolversTypes['OrganizationResourceSettings'] | IResolversTypes['GlobalSettings'] | IResolversTypes['OrganizationSettings'] | IResolversTypes['MemorySettings'] | IResolversTypes['DefaultSettings'];
|
8945
|
+
SocialConnect: ResolverTypeWrapper<ISocialConnect>;
|
8946
|
+
SocialConnect_Input: ISocialConnect_Input;
|
8947
|
+
SshKey: ResolverTypeWrapper<ISshKey>;
|
8948
|
+
SshKeyInput: ISshKeyInput;
|
8957
8949
|
SshKeyModel: ResolverTypeWrapper<ISshKeyModel>;
|
8958
8950
|
SshKeyService: ResolverTypeWrapper<ISshKeyService>;
|
8959
8951
|
SshKeyServiceAction: ISshKeyServiceAction;
|
8960
8952
|
SshKeySettings: ResolverTypeWrapper<ISshKeySettings>;
|
8953
|
+
SshKeyType: ISshKeyType;
|
8954
|
+
SubscribedOrganizationData: ResolverTypeWrapper<Omit<ISubscribedOrganizationData, 'resources'> & {
|
8955
|
+
resources?: Maybe<Array<Maybe<IResolversTypes['ResourceData']>>>;
|
8956
|
+
}>;
|
8957
|
+
Subscription: ResolverTypeWrapper<{}>;
|
8958
|
+
Task: ResolverTypeWrapper<ITask>;
|
8959
|
+
TaskRequest: ITaskRequest;
|
8961
8960
|
TeamCreateRequest: ITeamCreateRequest;
|
8961
|
+
TeamCreationRequest: ITeamCreationRequest;
|
8962
8962
|
TeamInvitationEmailVariables: ResolverTypeWrapper<ITeamInvitationEmailVariables>;
|
8963
|
+
TeamMember: ResolverTypeWrapper<ITeamMember>;
|
8964
|
+
TeamMember_Input: ITeamMember_Input;
|
8963
8965
|
TeamRemoveRequest: ITeamRemoveRequest;
|
8964
8966
|
TeamService: ResolverTypeWrapper<ITeamService>;
|
8965
|
-
TeamUpdateRequest: ITeamUpdateRequest;
|
8966
8967
|
TeamServiceAction: ITeamServiceAction;
|
8968
|
+
TeamType: ITeamType;
|
8969
|
+
TeamUpdateRequest: ITeamUpdateRequest;
|
8970
|
+
Template: ITemplate;
|
8971
|
+
TerritorialStateInput: ITerritorialStateInput;
|
8972
|
+
TerritorialStateUpdateInput: ITerritorialStateUpdateInput;
|
8967
8973
|
Time: ResolverTypeWrapper<Scalars['Time']>;
|
8974
|
+
TokenTypesEnum: ITokenTypesEnum;
|
8975
|
+
URI: ResolverTypeWrapper<Scalars['URI']>;
|
8976
|
+
URIInput: ResolverTypeWrapper<Scalars['URIInput']>;
|
8977
|
+
UpdateProject_Input: IUpdateProject_Input;
|
8978
|
+
UpdatedClient_Input: IUpdatedClient_Input;
|
8979
|
+
UserAccount: ResolverTypeWrapper<IUserAccount>;
|
8980
|
+
UserAccountCreateRequest: IUserAccountCreateRequest;
|
8968
8981
|
UserAccountCreatedDetailedEvent: ResolverTypeWrapper<IUserAccountCreatedDetailedEvent>;
|
8969
8982
|
UserAccountCreatedEvent: ResolverTypeWrapper<IUserAccountCreatedEvent>;
|
8983
|
+
UserAccountRemoveRequest: IUserAccountRemoveRequest;
|
8970
8984
|
UserAccountRemovedEvent: ResolverTypeWrapper<IUserAccountRemovedEvent>;
|
8985
|
+
UserAccountUpdateRequest: IUserAccountUpdateRequest;
|
8986
|
+
UserAccountWhere: IUserAccountWhere;
|
8987
|
+
UserAccount_Input: IUserAccount_Input;
|
8988
|
+
UserAuth0Info: ResolverTypeWrapper<IUserAuth0Info>;
|
8989
|
+
UserAuth0SessionDeviceInfo: ResolverTypeWrapper<IUserAuth0SessionDeviceInfo>;
|
8990
|
+
UserAuth0SessionInfo: ResolverTypeWrapper<IUserAuth0SessionInfo>;
|
8991
|
+
UserAuth0UpdateFields: IUserAuth0UpdateFields;
|
8971
8992
|
UserBroadcasterAction: IUserBroadcasterAction;
|
8993
|
+
UserConfiguration: ResolverTypeWrapper<IUserConfiguration>;
|
8994
|
+
UserContext: ResolverTypeWrapper<IUserContext>;
|
8995
|
+
UserDevice: ResolverTypeWrapper<IUserDevice>;
|
8996
|
+
UserMetadata: ResolverTypeWrapper<IUserMetadata>;
|
8972
8997
|
UserOrderBy: IUserOrderBy;
|
8973
8998
|
UserOrg: ResolverTypeWrapper<IUserOrg>;
|
8974
8999
|
UserOrg_Input: IUserOrg_Input;
|
9000
|
+
UserPasswordResetInput: IUserPasswordResetInput;
|
8975
9001
|
UserPreviousValues: ResolverTypeWrapper<IUserPreviousValues>;
|
9002
|
+
UserProfile: ResolverTypeWrapper<IUserProfile>;
|
9003
|
+
UserSettings: ResolverTypeWrapper<IUserSettings>;
|
8976
9004
|
UserState: ResolverTypeWrapper<IUserState>;
|
9005
|
+
UserToken: ResolverTypeWrapper<IUserToken>;
|
9006
|
+
UserTokenInput: IUserTokenInput;
|
9007
|
+
ViewerPoliciesInput: IViewerPoliciesInput;
|
9008
|
+
ViewerSettingsInput: IViewerSettingsInput;
|
9009
|
+
ViewerSettingsSubject: ResolverTypeWrapper<IViewerSettingsSubject>;
|
9010
|
+
Visibility: IVisibility;
|
8977
9011
|
ZipkinRoutes: IZipkinRoutes;
|
8978
9012
|
};
|
8979
9013
|
/** Mapping between all available schema types and the resolvers parents */
|
8980
|
-
export declare type IResolversParentTypes = {
|
8981
|
-
|
8982
|
-
|
8983
|
-
|
8984
|
-
|
8985
|
-
|
8986
|
-
|
8987
|
-
SettingsGroup: ISettingsGroup;
|
8988
|
-
Range: IRange;
|
8989
|
-
Position: IPosition;
|
8990
|
-
SettingsSection: ISettingsSection;
|
8991
|
-
ContributionSettings: IContributionSettings;
|
8992
|
-
AnyObject: Scalars['AnyObject'];
|
8993
|
-
Boolean: Scalars['Boolean'];
|
8994
|
-
ConfigurationExtensionInfo: IConfigurationExtensionInfo;
|
8995
|
-
ContributionSettingsProperties: IContributionSettingsProperties;
|
8996
|
-
PreferencesResponse: IPreferencesResponse;
|
8997
|
-
PreferencesType: IPreferencesType;
|
8998
|
-
DefaultSettings: IDefaultSettings;
|
8999
|
-
ISettingsSubject: IResolversParentTypes['DefaultSettings'] | IResolversParentTypes['UserSettings'] | IResolversParentTypes['ApplicationSettings'] | IResolversParentTypes['MachineSettings'] | IResolversParentTypes['OrganizationResourceSettings'] | IResolversParentTypes['GlobalSettings'] | IResolversParentTypes['OrganizationSettings'] | IResolversParentTypes['MemorySettings'];
|
9000
|
-
Settings: ISettings;
|
9001
|
-
URI: Scalars['URI'];
|
9002
|
-
SettingsCascade: Omit<ISettingsCascade, 'subjects'> & {
|
9003
|
-
subjects?: Maybe<Array<Maybe<IResolversParentTypes['SettingsSubject']>>>;
|
9004
|
-
};
|
9005
|
-
SettingsSubject: IResolversParentTypes['UserSettings'] | IResolversParentTypes['ApplicationSettings'] | IResolversParentTypes['MachineSettings'] | IResolversParentTypes['OrganizationResourceSettings'] | IResolversParentTypes['GlobalSettings'] | IResolversParentTypes['OrganizationSettings'] | IResolversParentTypes['MemorySettings'] | IResolversParentTypes['DefaultSettings'];
|
9006
|
-
UserSettings: IUserSettings;
|
9007
|
-
ApplicationSettings: IApplicationSettings;
|
9008
|
-
MachineSettings: IMachineSettings;
|
9009
|
-
OrganizationResourceSettings: IOrganizationResourceSettings;
|
9010
|
-
GlobalSettings: IGlobalSettings;
|
9011
|
-
OrganizationSettings: IOrganizationSettings;
|
9012
|
-
MemorySettings: IMemorySettings;
|
9013
|
-
Preferences: IPreferences;
|
9014
|
-
Preference_Account: IPreference_Account;
|
9015
|
-
Preference_Default: IPreference_Default;
|
9016
|
-
Preference_Notification: IPreference_Notification;
|
9017
|
-
Preference_Global: IPreference_Global;
|
9018
|
-
Preference_Global_User: IPreference_Global_User;
|
9019
|
-
Preference_Organization: IPreference_Organization;
|
9020
|
-
Preference_Teams: IPreference_Teams;
|
9021
|
-
Preference_Project: IPreference_Project;
|
9022
|
-
UserProfile: IUserProfile;
|
9023
|
-
IAuth0User: IResolversParentTypes['UserProfile'];
|
9024
|
-
IAuth0UserProfile: IResolversParentTypes['UserProfile'];
|
9025
|
-
IUserMetadata: IResolversParentTypes['UserMetadata'];
|
9026
|
-
Date: Scalars['Date'];
|
9027
|
-
IAuth0Token: IResolversParentTypes['UserProfile'];
|
9028
|
-
Auth0Identity: IAuth0Identity;
|
9029
|
-
Auth0IdentityProfileData: IAuth0IdentityProfileData;
|
9030
|
-
UserMetadata: IUserMetadata;
|
9031
|
-
UserDevice: IUserDevice;
|
9032
|
-
IntegrationConfigurationFilterInput: IIntegrationConfigurationFilterInput;
|
9033
|
-
IntegrationConfiguration: IIntegrationConfiguration;
|
9034
|
-
DateTime: Scalars['DateTime'];
|
9035
|
-
JSON: Scalars['JSON'];
|
9036
|
-
UserAccountWhere: IUserAccountWhere;
|
9037
|
-
UserAccount: IUserAccount;
|
9038
|
-
Node: IResolversParentTypes['UserAccount'] | IResolversParentTypes['OrgUserAccunt'];
|
9039
|
-
PhoneNumber: IPhoneNumber;
|
9040
|
-
UserToken: IUserToken;
|
9041
|
-
Country: ICountry;
|
9042
|
-
AsanaConnection: IAsanaConnection;
|
9043
|
-
AsanaConnectionState: IAsanaConnectionState;
|
9044
|
-
AsanaUser: IAsanaUser;
|
9045
|
-
AsanaProjects: IAsanaProjects;
|
9046
|
-
AsanaWorkspaces: IAsanaWorkspaces;
|
9047
|
-
ConfigurationInput: IConfigurationInput;
|
9048
|
-
URIInput: Scalars['URIInput'];
|
9049
|
-
Configuration: IResolversParentTypes['DefaultConfiguration'] | IResolversParentTypes['MachineConfiguration'] | IResolversParentTypes['UserConfiguration'] | IResolversParentTypes['OrganizationConfiguration'] | IResolversParentTypes['OrganizationResourceConfiguration'];
|
9050
|
-
DefaultConfiguration: IDefaultConfiguration;
|
9051
|
-
IConfigurationModel: IResolversParentTypes['DefaultConfiguration'] | IResolversParentTypes['MachineConfiguration'] | IResolversParentTypes['UserConfiguration'] | IResolversParentTypes['OrganizationConfiguration'] | IResolversParentTypes['OrganizationResourceConfiguration'] | IResolversParentTypes['DefaultPolicy'] | IResolversParentTypes['OrganizationPolicy'] | IResolversParentTypes['ResourcePolicy'] | IResolversParentTypes['ApplicationPolicy'] | IResolversParentTypes['DefaultRole'] | IResolversParentTypes['OrganizationRole'] | IResolversParentTypes['ResourceRole'] | IResolversParentTypes['ApplicationRolePermission'];
|
9052
|
-
Overrides: IOverrides;
|
9053
|
-
MachineConfiguration: IMachineConfiguration;
|
9054
|
-
UserConfiguration: IUserConfiguration;
|
9055
|
-
OrganizationConfiguration: IOrganizationConfiguration;
|
9056
|
-
OrganizationResourceConfiguration: IOrganizationResourceConfiguration;
|
9057
|
-
ConfigurationData: IConfigurationData;
|
9058
|
-
ConfigurationPolicy: IResolversParentTypes['DefaultPolicy'] | IResolversParentTypes['OrganizationPolicy'] | IResolversParentTypes['ResourcePolicy'] | IResolversParentTypes['ApplicationPolicy'];
|
9059
|
-
DefaultPolicy: IDefaultPolicy;
|
9060
|
-
OrganizationPolicy: IOrganizationPolicy;
|
9061
|
-
ResourcePolicy: IResourcePolicy;
|
9062
|
-
ApplicationPolicy: IApplicationPolicy;
|
9063
|
-
Context: IContext;
|
9064
|
-
ContributionRoles: Omit<IContributionRoles, 'permissions'> & {
|
9065
|
-
permissions?: Maybe<IResolversParentTypes['AccessRole']>;
|
9066
|
-
};
|
9067
|
-
AccessRole: IResolversParentTypes['DefaultRole'] | IResolversParentTypes['OrganizationRole'] | IResolversParentTypes['ResourceRole'] | IResolversParentTypes['ApplicationRolePermission'];
|
9068
|
-
DefaultRole: IDefaultRole;
|
9069
|
-
OrganizationRole: IOrganizationRole;
|
9070
|
-
ResourceRole: IResourceRole;
|
9071
|
-
ApplicationRolePermission: IApplicationRolePermission;
|
9072
|
-
Environment: IEnvironment;
|
9073
|
-
ProjectWhereInput: IProjectWhereInput;
|
9074
|
-
Projects: IProjects;
|
9075
|
-
ProjectSource: IProjectSource;
|
9076
|
-
ProjectParameters: IProjectParameters;
|
9077
|
-
InvoiceType: IInvoiceType;
|
9078
|
-
Float: Scalars['Float'];
|
9079
|
-
MemberInvoice: IMemberInvoice;
|
9080
|
-
ClientPhone: IClientPhone;
|
9081
|
-
AddressType: IAddressType;
|
9082
|
-
ProjectInvoice: IProjectInvoice;
|
9083
|
-
CustomerInvoice: ICustomerInvoice;
|
9084
|
-
Organization: IOrganization;
|
9085
|
-
OrgUser: IOrgUser;
|
9086
|
-
IOrgUser: IResolversParentTypes['OrgUser'];
|
9087
|
-
OrgUserAccunt: IOrgUserAccunt;
|
9088
|
-
OrganizationInvitation: IOrganizationInvitation;
|
9089
|
-
InviteMember: IInviteMember;
|
9090
|
-
Client: IClient;
|
9091
|
-
NameType: INameType;
|
9092
|
-
SocialConnect: ISocialConnect;
|
9093
|
-
OrganizationConfigValue_Input: IOrganizationConfigValue_Input;
|
9094
|
-
ConfigurationOverrides_Input: IConfigurationOverrides_Input;
|
9095
|
-
OrgDetailWhere: IOrgDetailWhere;
|
9096
|
-
OrgMember: IOrgMember;
|
9097
|
-
OrganizationData: Omit<IOrganizationData, 'resources'> & {
|
9098
|
-
resources: Array<Maybe<IResolversParentTypes['ResourceData']>>;
|
9099
|
-
};
|
9100
|
-
ResourceData: IResolversParentTypes['OrganizationResourceData'] | IResolversParentTypes['ExternalResourceData'];
|
9101
|
-
OrganizationResourceData: IOrganizationResourceData;
|
9102
|
-
IResourceData: IResolversParentTypes['OrganizationResourceData'] | IResolversParentTypes['ExternalResourceData'];
|
9103
|
-
ExternalResourceData: IExternalResourceData;
|
9104
|
-
AccountTeam: IAccountTeam;
|
9105
|
-
TeamMember: ITeamMember;
|
9106
|
-
Project_Output: IProject_Output;
|
9107
|
-
RoleInput: IRoleInput;
|
9108
|
-
Task: ITask;
|
9109
|
-
ResourceAccessRole: Omit<IResourceAccessRole, 'accessRoles'> & {
|
9110
|
-
accessRoles?: Maybe<Array<Maybe<IResolversParentTypes['AccessRole']>>>;
|
9111
|
-
};
|
9112
|
-
ResourceUser: IResourceUser;
|
9113
|
-
IResourceUserRole: IResolversParentTypes['ResourceUser'];
|
9114
|
-
UserContext: IUserContext;
|
9115
|
-
PermissionSubject: IPermissionSubject;
|
9116
|
-
ViewerPoliciesInput: IViewerPoliciesInput;
|
9117
|
-
PolicySubject: IPolicySubject;
|
9118
|
-
PreferencesOpenOptions_Input: IPreferencesOpenOptions_Input;
|
9119
|
-
PreferencesInput: IPreferencesInput;
|
9120
|
-
PreferencesInput_Input: IPreferencesInput_Input;
|
9121
|
-
ViewerSettingsInput: IViewerSettingsInput;
|
9122
|
-
ViewerSettingsSubject: IViewerSettingsSubject;
|
9123
|
-
Mutation: {};
|
9124
|
-
SshKeyInput: ISshKeyInput;
|
9125
|
-
OrganizationNotificationValues: IOrganizationNotificationValues;
|
9126
|
-
IOnBoardingParams: IIOnBoardingParams;
|
9127
|
-
OrgType: IOrgType;
|
9128
|
-
TeamType: ITeamType;
|
9129
|
-
ClientAddRequest: IClientAddRequest;
|
9130
|
-
Name_Input: IName_Input;
|
9131
|
-
ClientPhone_Input: IClientPhone_Input;
|
9132
|
-
SocialConnect_Input: ISocialConnect_Input;
|
9133
|
-
AddressType_Input: IAddressType_Input;
|
9134
|
-
ProjectAddRequest: IProjectAddRequest;
|
9135
|
-
ResourceCreationData_Input: IResourceCreationData_Input;
|
9136
|
-
ActivityCollectRequest: IActivityCollectRequest;
|
9137
|
-
IntegrationConfigurationInput: IIntegrationConfigurationInput;
|
9138
|
-
IntegraitonConfigurationId: IIntegraitonConfigurationId;
|
9139
|
-
InvoiceCreateRequest: IInvoiceCreateRequest;
|
9140
|
-
MemberInvoice_Input: IMemberInvoice_Input;
|
9141
|
-
ProjectInvoice_Input: IProjectInvoice_Input;
|
9142
|
-
CustomerInvoice_Input: ICustomerInvoice_Input;
|
9143
|
-
IntegrationConfigurationCreateOrUpdateInput: IIntegrationConfigurationCreateOrUpdateInput;
|
9144
|
-
OrganizationCreateRequest: IOrganizationCreateRequest;
|
9145
|
-
OrgUser_Input: IOrgUser_Input;
|
9146
|
-
OrganizationInvitation_Input: IOrganizationInvitation_Input;
|
9147
|
-
TaskRequest: ITaskRequest;
|
9148
|
-
TeamCreationRequest: ITeamCreationRequest;
|
9149
|
-
AuthTokens: IAuthTokens;
|
9150
|
-
UserAuth0UpdateFields: IUserAuth0UpdateFields;
|
9151
|
-
PhoneNumberInput: IPhoneNumberInput;
|
9152
|
-
OrganizationRemoveRequest: IOrganizationRemoveRequest;
|
9153
|
-
UserPasswordResetInput: IUserPasswordResetInput;
|
9154
|
-
InvoiceMailRequest: IInvoiceMailRequest;
|
9155
|
-
Template: ITemplate;
|
9156
|
-
OrganizationInvitationRequest: IOrganizationInvitationRequest;
|
9157
|
-
InvoiceUpdateRequest: IInvoiceUpdateRequest;
|
9158
|
-
ClientUpdateRequest: IClientUpdateRequest;
|
9159
|
-
UpdatedClient_Input: IUpdatedClient_Input;
|
9160
|
-
UpdateProject_Input: IUpdateProject_Input;
|
9161
|
-
OrganizationUpdateRequest: IOrganizationUpdateRequest;
|
9162
|
-
Organization_Input: IOrganization_Input;
|
9163
|
-
Subscription: {};
|
9164
|
-
ConfigurationUpdateEvent: IConfigurationUpdateEvent;
|
9165
|
-
ConfigurationOverrides: IConfigurationOverrides;
|
9166
|
-
SubscribedOrganizationData: Omit<ISubscribedOrganizationData, 'resources'> & {
|
9167
|
-
resources?: Maybe<Array<Maybe<IResolversParentTypes['ResourceData']>>>;
|
9168
|
-
};
|
9169
|
-
AccountService: IAccountService;
|
9170
|
-
UserAccountCreateRequest: IUserAccountCreateRequest;
|
9171
|
-
UserTokenInput: IUserTokenInput;
|
9172
|
-
UserAccountUpdateRequest: IUserAccountUpdateRequest;
|
9173
|
-
UserAccount_Input: IUserAccount_Input;
|
9174
|
-
UserAccountRemoveRequest: IUserAccountRemoveRequest;
|
9014
|
+
export declare type IResolversParentTypes = {
|
9015
|
+
AccessRole: IResolversParentTypes['DefaultRole'] | IResolversParentTypes['OrganizationRole'] | IResolversParentTypes['ResourceRole'] | IResolversParentTypes['ApplicationRolePermission'];
|
9016
|
+
AccountService: IAccountService;
|
9017
|
+
String: Scalars['String'];
|
9018
|
+
Boolean: Scalars['Boolean'];
|
9019
|
+
AccountTeam: IAccountTeam;
|
9020
|
+
ID: Scalars['ID'];
|
9175
9021
|
AccountTeam_Input: IAccountTeam_Input;
|
9176
|
-
|
9022
|
+
ActivityCollectRequest: IActivityCollectRequest;
|
9023
|
+
Int: Scalars['Int'];
|
9177
9024
|
ActivityRecord: IActivityRecord;
|
9178
9025
|
ActivityRecordInput: IActivityRecordInput;
|
9026
|
+
AddressType: IAddressType;
|
9027
|
+
AddressType_Input: IAddressType_Input;
|
9179
9028
|
AdminIdeSettings: IAdminIdeSettings;
|
9180
|
-
|
9029
|
+
AnyObject: Scalars['AnyObject'];
|
9030
|
+
ApplicationPolicy: IApplicationPolicy;
|
9031
|
+
ApplicationRolePermission: IApplicationRolePermission;
|
9032
|
+
ApplicationSettings: IApplicationSettings;
|
9033
|
+
AsanaConnection: IAsanaConnection;
|
9034
|
+
AsanaConnectionState: IAsanaConnectionState;
|
9035
|
+
AsanaProjects: IAsanaProjects;
|
9036
|
+
AsanaUser: IAsanaUser;
|
9037
|
+
AsanaWorkspaces: IAsanaWorkspaces;
|
9038
|
+
Auth0Identity: IAuth0Identity;
|
9039
|
+
Auth0IdentityProfileData: IAuth0IdentityProfileData;
|
9040
|
+
AuthTokens: IAuthTokens;
|
9181
9041
|
AuthUser: IAuthUser;
|
9182
|
-
IUser: IResolversParentTypes['AuthUser'];
|
9183
9042
|
AuthUser_Input: IAuthUser_Input;
|
9184
9043
|
CityInput: ICityInput;
|
9185
|
-
TerritorialStateInput: ITerritorialStateInput;
|
9186
9044
|
CityUpdateInput: ICityUpdateInput;
|
9187
|
-
|
9045
|
+
Client: IClient;
|
9046
|
+
ClientAddRequest: IClientAddRequest;
|
9188
9047
|
ClientCreatedEvent: IClientCreatedEvent;
|
9189
9048
|
ClientDeletedEvent: IClientDeletedEvent;
|
9049
|
+
ClientPhone: IClientPhone;
|
9050
|
+
ClientPhone_Input: IClientPhone_Input;
|
9051
|
+
ClientUpdateRequest: IClientUpdateRequest;
|
9052
|
+
Configuration: IResolversParentTypes['DefaultConfiguration'] | IResolversParentTypes['MachineConfiguration'] | IResolversParentTypes['UserConfiguration'] | IResolversParentTypes['OrganizationConfiguration'] | IResolversParentTypes['OrganizationResourceConfiguration'];
|
9053
|
+
ConfigurationData: IConfigurationData;
|
9054
|
+
ConfigurationExtensionInfo: IConfigurationExtensionInfo;
|
9055
|
+
ConfigurationInput: IConfigurationInput;
|
9190
9056
|
ConfigurationModel: IConfigurationModel;
|
9057
|
+
ConfigurationOverrides: IConfigurationOverrides;
|
9058
|
+
ConfigurationOverrides_Input: IConfigurationOverrides_Input;
|
9059
|
+
ConfigurationPolicy: IResolversParentTypes['DefaultPolicy'] | IResolversParentTypes['OrganizationPolicy'] | IResolversParentTypes['ResourcePolicy'] | IResolversParentTypes['ApplicationPolicy'];
|
9060
|
+
ConfigurationUpdateEvent: IConfigurationUpdateEvent;
|
9061
|
+
Context: IContext;
|
9062
|
+
ContributionRoles: Omit<IContributionRoles, 'permissions'> & {
|
9063
|
+
permissions?: Maybe<IResolversParentTypes['AccessRole']>;
|
9064
|
+
};
|
9065
|
+
ContributionSettings: IContributionSettings;
|
9066
|
+
ContributionSettingsProperties: IContributionSettingsProperties;
|
9067
|
+
Country: ICountry;
|
9191
9068
|
CountryInput: ICountryInput;
|
9069
|
+
CustomerInvoice: ICustomerInvoice;
|
9070
|
+
CustomerInvoice_Input: ICustomerInvoice_Input;
|
9071
|
+
Date: Scalars['Date'];
|
9072
|
+
DateTime: Scalars['DateTime'];
|
9073
|
+
DefaultConfiguration: IDefaultConfiguration;
|
9074
|
+
DefaultPolicy: IDefaultPolicy;
|
9075
|
+
DefaultRole: IDefaultRole;
|
9076
|
+
DefaultSettings: IDefaultSettings;
|
9077
|
+
DeviceInfoInput: IDeviceInfoInput;
|
9192
9078
|
EmptyResponse: IEmptyResponse;
|
9079
|
+
Environment: IEnvironment;
|
9193
9080
|
EnvironmentPayload: IEnvironmentPayload;
|
9081
|
+
ExternalResourceData: IExternalResourceData;
|
9194
9082
|
FieldError: IFieldError;
|
9195
9083
|
GenerateSSHKeysRequest: IGenerateSSHKeysRequest;
|
9196
9084
|
GeoLocation: IGeoLocation;
|
9085
|
+
Float: Scalars['Float'];
|
9086
|
+
GlobalSettings: IGlobalSettings;
|
9087
|
+
IActivitySettings: IResolversParentTypes['AdminIdeSettings'];
|
9197
9088
|
IAuth0Identity: never;
|
9089
|
+
IAuth0Token: IResolversParentTypes['UserProfile'];
|
9090
|
+
IAuth0User: IResolversParentTypes['UserProfile'];
|
9091
|
+
IAuth0UserProfile: IResolversParentTypes['UserProfile'];
|
9198
9092
|
ICity: never;
|
9199
|
-
ITerritorialState: never;
|
9200
|
-
ICountry: never;
|
9201
9093
|
IConfigurationChangeEvent: Omit<IIConfigurationChangeEvent, 'changedConfiguration'> & {
|
9202
9094
|
changedConfiguration?: Maybe<IResolversParentTypes['Configuration']>;
|
9203
9095
|
};
|
9096
|
+
IConfigurationModel: IResolversParentTypes['ApplicationPolicy'] | IResolversParentTypes['ApplicationRolePermission'] | IResolversParentTypes['DefaultConfiguration'] | IResolversParentTypes['DefaultPolicy'] | IResolversParentTypes['DefaultRole'] | IResolversParentTypes['MachineConfiguration'] | IResolversParentTypes['OrganizationConfiguration'] | IResolversParentTypes['OrganizationPolicy'] | IResolversParentTypes['OrganizationResourceConfiguration'] | IResolversParentTypes['OrganizationRole'] | IResolversParentTypes['ResourcePolicy'] | IResolversParentTypes['ResourceRole'] | IResolversParentTypes['UserConfiguration'];
|
9204
9097
|
IConfigurationService: never;
|
9098
|
+
ICountry: never;
|
9205
9099
|
IEventWithContext: IResolversParentTypes['OrganizationCreatedEvent'] | IResolversParentTypes['OrganizationDeletedEvent'];
|
9100
|
+
IOnBoardingParams: IIOnBoardingParams;
|
9101
|
+
IOrgUser: IResolversParentTypes['OrgUser'];
|
9102
|
+
IResourceData: IResolversParentTypes['ExternalResourceData'] | IResolversParentTypes['OrganizationResourceData'];
|
9103
|
+
IResourceUserRole: IResolversParentTypes['ResourceUser'];
|
9206
9104
|
IResourceUtilizationSettings: never;
|
9105
|
+
ISettingsSubject: IResolversParentTypes['ApplicationSettings'] | IResolversParentTypes['DefaultSettings'] | IResolversParentTypes['GlobalSettings'] | IResolversParentTypes['MachineSettings'] | IResolversParentTypes['MemorySettings'] | IResolversParentTypes['OrganizationResourceSettings'] | IResolversParentTypes['OrganizationSettings'] | IResolversParentTypes['UserSettings'];
|
9207
9106
|
ISshKeySettings: IResolversParentTypes['SshKeySettings'];
|
9107
|
+
ITerritorialState: never;
|
9108
|
+
IUser: IResolversParentTypes['AuthUser'];
|
9109
|
+
IUserMetadata: IResolversParentTypes['UserMetadata'];
|
9110
|
+
IntegraitonConfigurationId: IIntegraitonConfigurationId;
|
9111
|
+
IntegrationConfiguration: IIntegrationConfiguration;
|
9112
|
+
IntegrationConfigurationCreateOrUpdateInput: IIntegrationConfigurationCreateOrUpdateInput;
|
9113
|
+
IntegrationConfigurationFilterInput: IIntegrationConfigurationFilterInput;
|
9114
|
+
IntegrationConfigurationInput: IIntegrationConfigurationInput;
|
9115
|
+
InviteMember: IInviteMember;
|
9116
|
+
InvoiceCreateRequest: IInvoiceCreateRequest;
|
9208
9117
|
InvoiceCreatedEvent: IInvoiceCreatedEvent;
|
9209
9118
|
InvoiceDeletedEvent: IInvoiceDeletedEvent;
|
9119
|
+
InvoiceMailRequest: IInvoiceMailRequest;
|
9120
|
+
InvoiceType: IInvoiceType;
|
9121
|
+
InvoiceUpdateRequest: IInvoiceUpdateRequest;
|
9122
|
+
JSON: Scalars['JSON'];
|
9210
9123
|
JSONObject: Scalars['JSONObject'];
|
9211
9124
|
KeyPathSegment: IKeyPathSegment;
|
9212
9125
|
LoginError: ILoginError;
|
9126
|
+
MachineConfiguration: IMachineConfiguration;
|
9127
|
+
MachineSettings: IMachineSettings;
|
9128
|
+
MemberInvoice: IMemberInvoice;
|
9129
|
+
MemberInvoice_Input: IMemberInvoice_Input;
|
9130
|
+
MemorySettings: IMemorySettings;
|
9213
9131
|
MenuItem: IMenuItem;
|
9132
|
+
Mutation: {};
|
9133
|
+
NameType: INameType;
|
9134
|
+
Name_Input: IName_Input;
|
9135
|
+
Node: IResolversParentTypes['OrgUserAccunt'] | IResolversParentTypes['UserAccount'];
|
9214
9136
|
Observable: Scalars['Observable'];
|
9137
|
+
OrgDetailWhere: IOrgDetailWhere;
|
9138
|
+
OrgMember: IOrgMember;
|
9139
|
+
OrgType: IOrgType;
|
9140
|
+
OrgUser: IOrgUser;
|
9141
|
+
OrgUserAccunt: IOrgUserAccunt;
|
9142
|
+
OrgUser_Input: IOrgUser_Input;
|
9143
|
+
Organization: IOrganization;
|
9144
|
+
OrganizationConfigValue_Input: IOrganizationConfigValue_Input;
|
9145
|
+
OrganizationConfiguration: IOrganizationConfiguration;
|
9146
|
+
OrganizationCreateRequest: IOrganizationCreateRequest;
|
9215
9147
|
OrganizationCreatedEvent: IOrganizationCreatedEvent;
|
9148
|
+
OrganizationData: Omit<IOrganizationData, 'resources'> & {
|
9149
|
+
resources: Array<Maybe<IResolversParentTypes['ResourceData']>>;
|
9150
|
+
};
|
9216
9151
|
OrganizationDeletedEvent: IOrganizationDeletedEvent;
|
9217
9152
|
OrganizationIdentifier: IOrganizationIdentifier;
|
9153
|
+
OrganizationInvitation: IOrganizationInvitation;
|
9154
|
+
OrganizationInvitationDecode: IOrganizationInvitationDecode;
|
9155
|
+
OrganizationInvitationRequest: IOrganizationInvitationRequest;
|
9156
|
+
OrganizationInvitation_Input: IOrganizationInvitation_Input;
|
9218
9157
|
OrganizationMember: IOrganizationMember;
|
9158
|
+
OrganizationNotificationValues: IOrganizationNotificationValues;
|
9159
|
+
OrganizationPolicy: IOrganizationPolicy;
|
9160
|
+
OrganizationRemoveRequest: IOrganizationRemoveRequest;
|
9161
|
+
OrganizationResourceConfiguration: IOrganizationResourceConfiguration;
|
9162
|
+
OrganizationResourceData: IOrganizationResourceData;
|
9163
|
+
OrganizationResourceSettings: IOrganizationResourceSettings;
|
9164
|
+
OrganizationRole: IOrganizationRole;
|
9219
9165
|
OrganizationService: IOrganizationService;
|
9166
|
+
OrganizationSettings: IOrganizationSettings;
|
9167
|
+
OrganizationUpdateRequest: IOrganizationUpdateRequest;
|
9168
|
+
Organization_Input: IOrganization_Input;
|
9220
9169
|
OrganizationsDeactivatedEvent: IOrganizationsDeactivatedEvent;
|
9221
9170
|
OrganizationsDeletedEvent: IOrganizationsDeletedEvent;
|
9171
|
+
Overrides: IOverrides;
|
9222
9172
|
PageInfo: IPageInfo;
|
9173
|
+
PermissionSubject: IPermissionSubject;
|
9174
|
+
PhoneNumber: IPhoneNumber;
|
9175
|
+
PhoneNumberInput: IPhoneNumberInput;
|
9176
|
+
PolicySubject: IPolicySubject;
|
9177
|
+
Position: IPosition;
|
9223
9178
|
PreferenceItem: IPreferenceItem;
|
9179
|
+
Preference_Account: IPreference_Account;
|
9180
|
+
Preference_Default: IPreference_Default;
|
9181
|
+
Preference_Global: IPreference_Global;
|
9182
|
+
Preference_Global_User: IPreference_Global_User;
|
9183
|
+
Preference_Notification: IPreference_Notification;
|
9184
|
+
Preference_Organization: IPreference_Organization;
|
9185
|
+
Preference_Project: IPreference_Project;
|
9186
|
+
Preference_Teams: IPreference_Teams;
|
9187
|
+
Preferences: IPreferences;
|
9188
|
+
PreferencesInput: IPreferencesInput;
|
9189
|
+
PreferencesInput_Input: IPreferencesInput_Input;
|
9190
|
+
PreferencesOpenOptions_Input: IPreferencesOpenOptions_Input;
|
9191
|
+
PreferencesResponse: IPreferencesResponse;
|
9192
|
+
PreferencesType: IPreferencesType;
|
9193
|
+
ProjectAddRequest: IProjectAddRequest;
|
9224
9194
|
ProjectCreatedEvent: IProjectCreatedEvent;
|
9225
9195
|
ProjectDeletedEvent: IProjectDeletedEvent;
|
9196
|
+
ProjectInvoice: IProjectInvoice;
|
9197
|
+
ProjectInvoice_Input: IProjectInvoice_Input;
|
9198
|
+
ProjectParameters: IProjectParameters;
|
9226
9199
|
ProjectParameters_Input: IProjectParameters_Input;
|
9200
|
+
ProjectSource: IProjectSource;
|
9227
9201
|
ProjectSource_Input: IProjectSource_Input;
|
9202
|
+
ProjectWhereInput: IProjectWhereInput;
|
9228
9203
|
Project_Input: IProject_Input;
|
9204
|
+
Project_Output: IProject_Output;
|
9205
|
+
Projects: IProjects;
|
9206
|
+
Query: {};
|
9207
|
+
Range: IRange;
|
9208
|
+
ResourceAccessRole: Omit<IResourceAccessRole, 'accessRoles'> & {
|
9209
|
+
accessRoles?: Maybe<Array<Maybe<IResolversParentTypes['AccessRole']>>>;
|
9210
|
+
};
|
9229
9211
|
ResourceCreatedEvent: IResourceCreatedEvent;
|
9212
|
+
ResourceCreationData_Input: IResourceCreationData_Input;
|
9213
|
+
ResourceData: IResolversParentTypes['OrganizationResourceData'] | IResolversParentTypes['ExternalResourceData'];
|
9230
9214
|
ResourceDeletedEvent: IResourceDeletedEvent;
|
9215
|
+
ResourcePolicy: IResourcePolicy;
|
9216
|
+
ResourceRole: IResourceRole;
|
9217
|
+
ResourceUser: IResourceUser;
|
9218
|
+
RoleInput: IRoleInput;
|
9231
9219
|
RouteData: IRouteData;
|
9220
|
+
Settings: ISettings;
|
9221
|
+
SettingsCascade: Omit<ISettingsCascade, 'subjects'> & {
|
9222
|
+
subjects?: Maybe<Array<Maybe<IResolversParentTypes['SettingsSubject']>>>;
|
9223
|
+
};
|
9224
|
+
SettingsGroup: ISettingsGroup;
|
9225
|
+
SettingsSection: ISettingsSection;
|
9226
|
+
SettingsSubject: IResolversParentTypes['UserSettings'] | IResolversParentTypes['ApplicationSettings'] | IResolversParentTypes['MachineSettings'] | IResolversParentTypes['OrganizationResourceSettings'] | IResolversParentTypes['GlobalSettings'] | IResolversParentTypes['OrganizationSettings'] | IResolversParentTypes['MemorySettings'] | IResolversParentTypes['DefaultSettings'];
|
9227
|
+
SocialConnect: ISocialConnect;
|
9228
|
+
SocialConnect_Input: ISocialConnect_Input;
|
9229
|
+
SshKey: ISshKey;
|
9230
|
+
SshKeyInput: ISshKeyInput;
|
9232
9231
|
SshKeyModel: ISshKeyModel;
|
9233
9232
|
SshKeyService: ISshKeyService;
|
9234
9233
|
SshKeySettings: ISshKeySettings;
|
9234
|
+
SubscribedOrganizationData: Omit<ISubscribedOrganizationData, 'resources'> & {
|
9235
|
+
resources?: Maybe<Array<Maybe<IResolversParentTypes['ResourceData']>>>;
|
9236
|
+
};
|
9237
|
+
Subscription: {};
|
9238
|
+
Task: ITask;
|
9239
|
+
TaskRequest: ITaskRequest;
|
9235
9240
|
TeamCreateRequest: ITeamCreateRequest;
|
9241
|
+
TeamCreationRequest: ITeamCreationRequest;
|
9236
9242
|
TeamInvitationEmailVariables: ITeamInvitationEmailVariables;
|
9243
|
+
TeamMember: ITeamMember;
|
9244
|
+
TeamMember_Input: ITeamMember_Input;
|
9237
9245
|
TeamRemoveRequest: ITeamRemoveRequest;
|
9238
9246
|
TeamService: ITeamService;
|
9247
|
+
TeamType: ITeamType;
|
9239
9248
|
TeamUpdateRequest: ITeamUpdateRequest;
|
9249
|
+
Template: ITemplate;
|
9250
|
+
TerritorialStateInput: ITerritorialStateInput;
|
9251
|
+
TerritorialStateUpdateInput: ITerritorialStateUpdateInput;
|
9240
9252
|
Time: Scalars['Time'];
|
9253
|
+
URI: Scalars['URI'];
|
9254
|
+
URIInput: Scalars['URIInput'];
|
9255
|
+
UpdateProject_Input: IUpdateProject_Input;
|
9256
|
+
UpdatedClient_Input: IUpdatedClient_Input;
|
9257
|
+
UserAccount: IUserAccount;
|
9258
|
+
UserAccountCreateRequest: IUserAccountCreateRequest;
|
9241
9259
|
UserAccountCreatedDetailedEvent: IUserAccountCreatedDetailedEvent;
|
9242
9260
|
UserAccountCreatedEvent: IUserAccountCreatedEvent;
|
9261
|
+
UserAccountRemoveRequest: IUserAccountRemoveRequest;
|
9243
9262
|
UserAccountRemovedEvent: IUserAccountRemovedEvent;
|
9263
|
+
UserAccountUpdateRequest: IUserAccountUpdateRequest;
|
9264
|
+
UserAccountWhere: IUserAccountWhere;
|
9265
|
+
UserAccount_Input: IUserAccount_Input;
|
9266
|
+
UserAuth0Info: IUserAuth0Info;
|
9267
|
+
UserAuth0SessionDeviceInfo: IUserAuth0SessionDeviceInfo;
|
9268
|
+
UserAuth0SessionInfo: IUserAuth0SessionInfo;
|
9269
|
+
UserAuth0UpdateFields: IUserAuth0UpdateFields;
|
9270
|
+
UserConfiguration: IUserConfiguration;
|
9271
|
+
UserContext: IUserContext;
|
9272
|
+
UserDevice: IUserDevice;
|
9273
|
+
UserMetadata: IUserMetadata;
|
9244
9274
|
UserOrg: IUserOrg;
|
9245
9275
|
UserOrg_Input: IUserOrg_Input;
|
9276
|
+
UserPasswordResetInput: IUserPasswordResetInput;
|
9246
9277
|
UserPreviousValues: IUserPreviousValues;
|
9278
|
+
UserProfile: IUserProfile;
|
9279
|
+
UserSettings: IUserSettings;
|
9247
9280
|
UserState: IUserState;
|
9281
|
+
UserToken: IUserToken;
|
9282
|
+
UserTokenInput: IUserTokenInput;
|
9283
|
+
ViewerPoliciesInput: IViewerPoliciesInput;
|
9284
|
+
ViewerSettingsInput: IViewerSettingsInput;
|
9285
|
+
ViewerSettingsSubject: IViewerSettingsSubject;
|
9248
9286
|
};
|
9249
9287
|
export declare type IaddAccountContextDirectiveArgs = {};
|
9250
9288
|
export declare type IaddAccountContextDirectiveResolver<Result, Parent, ContextType = MyContext, Args = IaddAccountContextDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
@@ -9383,7 +9421,8 @@ export declare type IAuth0IdentityProfileDataResolvers<ContextType = MyContext,
|
|
9383
9421
|
};
|
9384
9422
|
export declare type IAuthTokensResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AuthTokens'] = IResolversParentTypes['AuthTokens']> = {
|
9385
9423
|
idToken?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9386
|
-
|
9424
|
+
sessionId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9425
|
+
accessToken?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9387
9426
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9388
9427
|
};
|
9389
9428
|
export declare type IAuthUserResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AuthUser'] = IResolversParentTypes['AuthUser']> = {
|
@@ -9712,7 +9751,7 @@ export declare type IIConfigurationChangeEventResolvers<ContextType = MyContext,
|
|
9712
9751
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9713
9752
|
};
|
9714
9753
|
export declare type IIConfigurationModelResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IConfigurationModel'] = IResolversParentTypes['IConfigurationModel']> = {
|
9715
|
-
__resolveType: TypeResolveFn<'
|
9754
|
+
__resolveType: TypeResolveFn<'ApplicationPolicy' | 'ApplicationRolePermission' | 'DefaultConfiguration' | 'DefaultPolicy' | 'DefaultRole' | 'MachineConfiguration' | 'OrganizationConfiguration' | 'OrganizationPolicy' | 'OrganizationResourceConfiguration' | 'OrganizationRole' | 'ResourcePolicy' | 'ResourceRole' | 'UserConfiguration', ParentType, ContextType>;
|
9716
9755
|
resource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
9717
9756
|
target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
9718
9757
|
contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
@@ -9723,21 +9762,85 @@ export declare type IIConfigurationServiceResolvers<ContextType = MyContext, Par
|
|
9723
9762
|
__resolveType: TypeResolveFn<null, ParentType, ContextType>;
|
9724
9763
|
updateValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IIConfigurationServiceupdateValueArgs, 'key' | 'value' | 'overrides'>>;
|
9725
9764
|
};
|
9726
|
-
export declare type IICountryResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ICountry'] = IResolversParentTypes['ICountry']> = {
|
9765
|
+
export declare type IICountryResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ICountry'] = IResolversParentTypes['ICountry']> = {
|
9766
|
+
__resolveType: TypeResolveFn<null, ParentType, ContextType>;
|
9767
|
+
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
9768
|
+
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
9769
|
+
phone_code?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
9770
|
+
currency?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9771
|
+
currency_symbol?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9772
|
+
emoji?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9773
|
+
location?: Resolver<Maybe<IResolversTypes['GeoLocation']>, ParentType, ContextType>;
|
9774
|
+
createdAt?: Resolver<IResolversTypes['Date'], ParentType, ContextType>;
|
9775
|
+
updatedAt?: Resolver<Maybe<IResolversTypes['Date']>, ParentType, ContextType>;
|
9776
|
+
};
|
9777
|
+
export declare type IIEventWithContextResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IEventWithContext'] = IResolversParentTypes['IEventWithContext']> = {
|
9778
|
+
__resolveType: TypeResolveFn<'OrganizationCreatedEvent' | 'OrganizationDeletedEvent', ParentType, ContextType>;
|
9779
|
+
userContext?: Resolver<Maybe<IResolversTypes['UserContext']>, ParentType, ContextType>;
|
9780
|
+
};
|
9781
|
+
export declare type IIOrgUserResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IOrgUser'] = IResolversParentTypes['IOrgUser']> = {
|
9782
|
+
__resolveType: TypeResolveFn<'OrgUser', ParentType, ContextType>;
|
9783
|
+
role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
|
9784
|
+
isSelf?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
9785
|
+
orgName?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
9786
|
+
};
|
9787
|
+
export declare type IIResourceDataResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IResourceData'] = IResolversParentTypes['IResourceData']> = {
|
9788
|
+
__resolveType: TypeResolveFn<'ExternalResourceData' | 'OrganizationResourceData', ParentType, ContextType>;
|
9789
|
+
uri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
9790
|
+
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9791
|
+
index?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
9792
|
+
};
|
9793
|
+
export declare type IIResourceUserRoleResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IResourceUserRole'] = IResolversParentTypes['IResourceUserRole']> = {
|
9794
|
+
__resolveType: TypeResolveFn<'ResourceUser', ParentType, ContextType>;
|
9795
|
+
role?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9796
|
+
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9797
|
+
isSelf?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9798
|
+
orgName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9799
|
+
};
|
9800
|
+
export declare type IIResourceUtilizationSettingsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IResourceUtilizationSettings'] = IResolversParentTypes['IResourceUtilizationSettings']> = {
|
9801
|
+
__resolveType: TypeResolveFn<null, ParentType, ContextType>;
|
9802
|
+
subTopic?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9803
|
+
adminApiNamespace?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9804
|
+
};
|
9805
|
+
export declare type IISettingsSubjectResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ISettingsSubject'] = IResolversParentTypes['ISettingsSubject']> = {
|
9806
|
+
__resolveType: TypeResolveFn<'ApplicationSettings' | 'DefaultSettings' | 'GlobalSettings' | 'MachineSettings' | 'MemorySettings' | 'OrganizationResourceSettings' | 'OrganizationSettings' | 'UserSettings', ParentType, ContextType>;
|
9807
|
+
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
9808
|
+
latestSettings?: Resolver<Maybe<IResolversTypes['Settings']>, ParentType, ContextType>;
|
9809
|
+
settingsURL?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
|
9810
|
+
viewerCanAdminister?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
9811
|
+
settingsCascade?: Resolver<IResolversTypes['SettingsCascade'], ParentType, ContextType>;
|
9812
|
+
};
|
9813
|
+
export declare type IISshKeySettingsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ISshKeySettings'] = IResolversParentTypes['ISshKeySettings']> = {
|
9814
|
+
__resolveType: TypeResolveFn<'SshKeySettings', ParentType, ContextType>;
|
9815
|
+
subTopic?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9816
|
+
sshNamespace?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9817
|
+
};
|
9818
|
+
export declare type IITerritorialStateResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ITerritorialState'] = IResolversParentTypes['ITerritorialState']> = {
|
9727
9819
|
__resolveType: TypeResolveFn<null, ParentType, ContextType>;
|
9728
9820
|
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
9729
9821
|
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
9730
|
-
|
9731
|
-
currency?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9732
|
-
currency_symbol?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9733
|
-
emoji?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9822
|
+
country?: Resolver<IResolversTypes['ICountry'], ParentType, ContextType>;
|
9734
9823
|
location?: Resolver<Maybe<IResolversTypes['GeoLocation']>, ParentType, ContextType>;
|
9735
9824
|
createdAt?: Resolver<IResolversTypes['Date'], ParentType, ContextType>;
|
9736
9825
|
updatedAt?: Resolver<Maybe<IResolversTypes['Date']>, ParentType, ContextType>;
|
9737
9826
|
};
|
9738
|
-
export declare type
|
9739
|
-
__resolveType: TypeResolveFn<'
|
9740
|
-
|
9827
|
+
export declare type IIUserResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IUser'] = IResolversParentTypes['IUser']> = {
|
9828
|
+
__resolveType: TypeResolveFn<'AuthUser', ParentType, ContextType>;
|
9829
|
+
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
9830
|
+
username?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9831
|
+
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9832
|
+
};
|
9833
|
+
export declare type IIUserMetadataResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IUserMetadata'] = IResolversParentTypes['IUserMetadata']> = {
|
9834
|
+
__resolveType: TypeResolveFn<'UserMetadata', ParentType, ContextType>;
|
9835
|
+
last_name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9836
|
+
first_name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9837
|
+
username?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9838
|
+
phone_number?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9839
|
+
work_email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9840
|
+
country?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9841
|
+
company_name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9842
|
+
dob?: Resolver<Maybe<IResolversTypes['Date']>, ParentType, ContextType>;
|
9843
|
+
zip_code?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
9741
9844
|
};
|
9742
9845
|
export declare type IIntegraitonConfigurationIdResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IntegraitonConfigurationId'] = IResolversParentTypes['IntegraitonConfigurationId']> = {
|
9743
9846
|
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -9800,70 +9903,6 @@ export declare type IInvoiceTypeResolvers<ContextType = MyContext, ParentType ex
|
|
9800
9903
|
updatedAt?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
|
9801
9904
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9802
9905
|
};
|
9803
|
-
export declare type IIOrgUserResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IOrgUser'] = IResolversParentTypes['IOrgUser']> = {
|
9804
|
-
__resolveType: TypeResolveFn<'OrgUser', ParentType, ContextType>;
|
9805
|
-
role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
|
9806
|
-
isSelf?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
9807
|
-
orgName?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
9808
|
-
};
|
9809
|
-
export declare type IIResourceDataResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IResourceData'] = IResolversParentTypes['IResourceData']> = {
|
9810
|
-
__resolveType: TypeResolveFn<'OrganizationResourceData' | 'ExternalResourceData', ParentType, ContextType>;
|
9811
|
-
uri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
9812
|
-
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9813
|
-
index?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
9814
|
-
};
|
9815
|
-
export declare type IIResourceUserRoleResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IResourceUserRole'] = IResolversParentTypes['IResourceUserRole']> = {
|
9816
|
-
__resolveType: TypeResolveFn<'ResourceUser', ParentType, ContextType>;
|
9817
|
-
role?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9818
|
-
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9819
|
-
isSelf?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9820
|
-
orgName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9821
|
-
};
|
9822
|
-
export declare type IIResourceUtilizationSettingsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IResourceUtilizationSettings'] = IResolversParentTypes['IResourceUtilizationSettings']> = {
|
9823
|
-
__resolveType: TypeResolveFn<null, ParentType, ContextType>;
|
9824
|
-
subTopic?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9825
|
-
adminApiNamespace?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9826
|
-
};
|
9827
|
-
export declare type IISettingsSubjectResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ISettingsSubject'] = IResolversParentTypes['ISettingsSubject']> = {
|
9828
|
-
__resolveType: TypeResolveFn<'DefaultSettings' | 'UserSettings' | 'ApplicationSettings' | 'MachineSettings' | 'OrganizationResourceSettings' | 'GlobalSettings' | 'OrganizationSettings' | 'MemorySettings', ParentType, ContextType>;
|
9829
|
-
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
9830
|
-
latestSettings?: Resolver<Maybe<IResolversTypes['Settings']>, ParentType, ContextType>;
|
9831
|
-
settingsURL?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
|
9832
|
-
viewerCanAdminister?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
9833
|
-
settingsCascade?: Resolver<IResolversTypes['SettingsCascade'], ParentType, ContextType>;
|
9834
|
-
};
|
9835
|
-
export declare type IISshKeySettingsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ISshKeySettings'] = IResolversParentTypes['ISshKeySettings']> = {
|
9836
|
-
__resolveType: TypeResolveFn<'SshKeySettings', ParentType, ContextType>;
|
9837
|
-
subTopic?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9838
|
-
sshNamespace?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9839
|
-
};
|
9840
|
-
export declare type IITerritorialStateResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ITerritorialState'] = IResolversParentTypes['ITerritorialState']> = {
|
9841
|
-
__resolveType: TypeResolveFn<null, ParentType, ContextType>;
|
9842
|
-
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
9843
|
-
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
9844
|
-
country?: Resolver<IResolversTypes['ICountry'], ParentType, ContextType>;
|
9845
|
-
location?: Resolver<Maybe<IResolversTypes['GeoLocation']>, ParentType, ContextType>;
|
9846
|
-
createdAt?: Resolver<IResolversTypes['Date'], ParentType, ContextType>;
|
9847
|
-
updatedAt?: Resolver<Maybe<IResolversTypes['Date']>, ParentType, ContextType>;
|
9848
|
-
};
|
9849
|
-
export declare type IIUserResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IUser'] = IResolversParentTypes['IUser']> = {
|
9850
|
-
__resolveType: TypeResolveFn<'AuthUser', ParentType, ContextType>;
|
9851
|
-
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
9852
|
-
username?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9853
|
-
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9854
|
-
};
|
9855
|
-
export declare type IIUserMetadataResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IUserMetadata'] = IResolversParentTypes['IUserMetadata']> = {
|
9856
|
-
__resolveType: TypeResolveFn<'UserMetadata', ParentType, ContextType>;
|
9857
|
-
last_name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9858
|
-
first_name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9859
|
-
username?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9860
|
-
phone_number?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9861
|
-
work_email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9862
|
-
country?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9863
|
-
company_name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9864
|
-
dob?: Resolver<Maybe<IResolversTypes['Date']>, ParentType, ContextType>;
|
9865
|
-
zip_code?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
9866
|
-
};
|
9867
9906
|
export interface IJSONScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['JSON'], any> {
|
9868
9907
|
name: 'JSON';
|
9869
9908
|
}
|
@@ -9942,12 +9981,12 @@ export declare type IMutationResolvers<ContextType = MyContext, ParentType exten
|
|
9942
9981
|
createOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IMutationcreateOrganizationArgs, 'organization'>>;
|
9943
9982
|
createTask?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationcreateTaskArgs, never>>;
|
9944
9983
|
createTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IMutationcreateTeamArgs, 'request'>>;
|
9945
|
-
createTokens?: Resolver<Maybe<IResolversTypes['AuthTokens']>, ParentType, ContextType, RequireFields<IMutationcreateTokensArgs, never>>;
|
9946
9984
|
declineOrganizationInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationdeclineOrganizationInvitationArgs, 'id'>>;
|
9947
9985
|
deleteIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationdeleteIntegrationConfigurationArgs, 'id'>>;
|
9948
9986
|
deleteUserAccount?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9949
9987
|
deleteUserAuthorizedDevice?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationdeleteUserAuthorizedDeviceArgs, 'deviceId'>>;
|
9950
9988
|
dummy?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
9989
|
+
initializeAuthorizationCodeFlow?: Resolver<Maybe<IResolversTypes['AuthTokens']>, ParentType, ContextType, RequireFields<IMutationinitializeAuthorizationCodeFlowArgs, 'deviceInfo'>>;
|
9951
9990
|
initializeOrgNameInContext?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationinitializeOrgNameInContextArgs, never>>;
|
9952
9991
|
initializeTeamInContext?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationinitializeTeamInContextArgs, never>>;
|
9953
9992
|
initiateConfigurationValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationinitiateConfigurationValueArgs, never>>;
|
@@ -9962,6 +10001,7 @@ export declare type IMutationResolvers<ContextType = MyContext, ParentType exten
|
|
9962
10001
|
removeTask?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationremoveTaskArgs, 'id'>>;
|
9963
10002
|
removeTeam?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationremoveTeamArgs, 'teamId'>>;
|
9964
10003
|
removeTeamMember?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationremoveTeamMemberArgs, 'orgName' | 'teamName' | 'memberId'>>;
|
10004
|
+
removeUserAuthSession?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationremoveUserAuthSessionArgs, never>>;
|
9965
10005
|
renewAuthToken?: Resolver<Maybe<IResolversTypes['AuthTokens']>, ParentType, ContextType, RequireFields<IMutationrenewAuthTokenArgs, never>>;
|
9966
10006
|
resendOrganizationInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationresendOrganizationInvitationArgs, 'id'>>;
|
9967
10007
|
resendUserEmailVerificationEmail?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
@@ -10001,12 +10041,41 @@ export declare type INameTypeResolvers<ContextType = MyContext, ParentType exten
|
|
10001
10041
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10002
10042
|
};
|
10003
10043
|
export declare type INodeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Node'] = IResolversParentTypes['Node']> = {
|
10004
|
-
__resolveType: TypeResolveFn<'
|
10044
|
+
__resolveType: TypeResolveFn<'OrgUserAccunt' | 'UserAccount', ParentType, ContextType>;
|
10005
10045
|
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
10006
10046
|
};
|
10007
10047
|
export interface IObservableScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Observable'], any> {
|
10008
10048
|
name: 'Observable';
|
10009
10049
|
}
|
10050
|
+
export declare type IOrgMemberResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrgMember'] = IResolversParentTypes['OrgMember']> = {
|
10051
|
+
_id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10052
|
+
userId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10053
|
+
role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
|
10054
|
+
inactive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
10055
|
+
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10056
|
+
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10057
|
+
crossCheckEmail?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10058
|
+
teamNames?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
10059
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10060
|
+
};
|
10061
|
+
export declare type IOrgUserResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrgUser'] = IResolversParentTypes['OrgUser']> = {
|
10062
|
+
userId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
10063
|
+
role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
|
10064
|
+
inactive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
10065
|
+
orgName?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
10066
|
+
user?: Resolver<IResolversTypes['OrgUserAccunt'], ParentType, ContextType>;
|
10067
|
+
isSelf?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
10068
|
+
crossCheckEmail?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10069
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10070
|
+
};
|
10071
|
+
export declare type IOrgUserAccuntResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrgUserAccunt'] = IResolversParentTypes['OrgUserAccunt']> = {
|
10072
|
+
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
10073
|
+
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10074
|
+
alias?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
10075
|
+
username?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10076
|
+
emailVerified?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
10077
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10078
|
+
};
|
10010
10079
|
export declare type IOrganizationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Organization'] = IResolversParentTypes['Organization']> = {
|
10011
10080
|
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
10012
10081
|
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -10130,14 +10199,6 @@ export declare type IOrganizationRoleResolvers<ContextType = MyContext, ParentTy
|
|
10130
10199
|
overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
|
10131
10200
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10132
10201
|
};
|
10133
|
-
export declare type IOrganizationsDeactivatedEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrganizationsDeactivatedEvent'] = IResolversParentTypes['OrganizationsDeactivatedEvent']> = {
|
10134
|
-
deactivatedOrganizationsIds?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
10135
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10136
|
-
};
|
10137
|
-
export declare type IOrganizationsDeletedEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrganizationsDeletedEvent'] = IResolversParentTypes['OrganizationsDeletedEvent']> = {
|
10138
|
-
deletedOrganizationIds?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
10139
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10140
|
-
};
|
10141
10202
|
export declare type IOrganizationServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrganizationService'] = IResolversParentTypes['OrganizationService']> = {
|
10142
10203
|
getOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IOrganizationServicegetOrganizationArgs, never>>;
|
10143
10204
|
createDefaultOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IOrganizationServicecreateDefaultOrganizationArgs, never>>;
|
@@ -10158,33 +10219,12 @@ export declare type IOrganizationSettingsResolvers<ContextType = MyContext, Pare
|
|
10158
10219
|
settingsCascade?: Resolver<IResolversTypes['SettingsCascade'], ParentType, ContextType>;
|
10159
10220
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10160
10221
|
};
|
10161
|
-
export declare type
|
10162
|
-
|
10163
|
-
userId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10164
|
-
role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
|
10165
|
-
inactive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
10166
|
-
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10167
|
-
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10168
|
-
crossCheckEmail?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10169
|
-
teamNames?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
10170
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10171
|
-
};
|
10172
|
-
export declare type IOrgUserResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrgUser'] = IResolversParentTypes['OrgUser']> = {
|
10173
|
-
userId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
10174
|
-
role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
|
10175
|
-
inactive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
10176
|
-
orgName?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
10177
|
-
user?: Resolver<IResolversTypes['OrgUserAccunt'], ParentType, ContextType>;
|
10178
|
-
isSelf?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
10179
|
-
crossCheckEmail?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10222
|
+
export declare type IOrganizationsDeactivatedEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrganizationsDeactivatedEvent'] = IResolversParentTypes['OrganizationsDeactivatedEvent']> = {
|
10223
|
+
deactivatedOrganizationsIds?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
10180
10224
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10181
10225
|
};
|
10182
|
-
export declare type
|
10183
|
-
|
10184
|
-
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10185
|
-
alias?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
10186
|
-
username?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10187
|
-
emailVerified?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
10226
|
+
export declare type IOrganizationsDeletedEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrganizationsDeletedEvent'] = IResolversParentTypes['OrganizationsDeletedEvent']> = {
|
10227
|
+
deletedOrganizationIds?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
10188
10228
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10189
10229
|
};
|
10190
10230
|
export declare type IOverridesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Overrides'] = IResolversParentTypes['Overrides']> = {
|
@@ -10218,6 +10258,17 @@ export declare type IPositionResolvers<ContextType = MyContext, ParentType exten
|
|
10218
10258
|
character?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
10219
10259
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10220
10260
|
};
|
10261
|
+
export declare type IPreferenceItemResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['PreferenceItem'] = IResolversParentTypes['PreferenceItem']> = {
|
10262
|
+
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10263
|
+
type?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10264
|
+
default?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10265
|
+
description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10266
|
+
categoryType?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10267
|
+
settings?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10268
|
+
enum?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
10269
|
+
enumDescriptions?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
10270
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10271
|
+
};
|
10221
10272
|
export declare type IPreference_AccountResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Preference_Account'] = IResolversParentTypes['Preference_Account']> = {
|
10222
10273
|
default?: Resolver<Maybe<IResolversTypes['Preference_Default']>, ParentType, ContextType>;
|
10223
10274
|
notification?: Resolver<Maybe<IResolversTypes['Preference_Notification']>, ParentType, ContextType>;
|
@@ -10257,17 +10308,6 @@ export declare type IPreference_TeamsResolvers<ContextType = MyContext, ParentTy
|
|
10257
10308
|
visibility?: Resolver<Maybe<IResolversTypes['Visibility']>, ParentType, ContextType>;
|
10258
10309
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10259
10310
|
};
|
10260
|
-
export declare type IPreferenceItemResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['PreferenceItem'] = IResolversParentTypes['PreferenceItem']> = {
|
10261
|
-
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10262
|
-
type?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10263
|
-
default?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10264
|
-
description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10265
|
-
categoryType?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10266
|
-
settings?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10267
|
-
enum?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
10268
|
-
enumDescriptions?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
10269
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10270
|
-
};
|
10271
10311
|
export declare type IPreferencesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Preferences'] = IResolversParentTypes['Preferences']> = {
|
10272
10312
|
account?: Resolver<Maybe<IResolversTypes['Preference_Account']>, ParentType, ContextType>;
|
10273
10313
|
defaultSetting?: Resolver<Maybe<Array<Maybe<IResolversTypes['SettingsGroup']>>>, ParentType, ContextType>;
|
@@ -10290,16 +10330,6 @@ export declare type IPreferencesTypeResolvers<ContextType = MyContext, ParentTyp
|
|
10290
10330
|
data?: Resolver<Maybe<Array<Maybe<IResolversTypes['ContributionSettings']>>>, ParentType, ContextType>;
|
10291
10331
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10292
10332
|
};
|
10293
|
-
export declare type IProject_OutputResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Project_Output'] = IResolversParentTypes['Project_Output']> = {
|
10294
|
-
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10295
|
-
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
10296
|
-
clientId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10297
|
-
teams?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
10298
|
-
status?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10299
|
-
orgName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10300
|
-
integrationConfigurationId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10301
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10302
|
-
};
|
10303
10333
|
export declare type IProjectCreatedEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ProjectCreatedEvent'] = IResolversParentTypes['ProjectCreatedEvent']> = {
|
10304
10334
|
createdProject?: Resolver<Maybe<IResolversTypes['Projects']>, ParentType, ContextType>;
|
10305
10335
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
@@ -10322,6 +10352,24 @@ export declare type IProjectParametersResolvers<ContextType = MyContext, ParentT
|
|
10322
10352
|
isPrivate?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
10323
10353
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10324
10354
|
};
|
10355
|
+
export declare type IProjectSourceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ProjectSource'] = IResolversParentTypes['ProjectSource']> = {
|
10356
|
+
location?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10357
|
+
type?: Resolver<Maybe<IResolversTypes['ProjectSourceType']>, ParentType, ContextType>;
|
10358
|
+
parameters?: Resolver<Maybe<IResolversTypes['ProjectParameters']>, ParentType, ContextType>;
|
10359
|
+
providers?: Resolver<Maybe<IResolversTypes['ProjectSourceProviders']>, ParentType, ContextType>;
|
10360
|
+
language?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10361
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10362
|
+
};
|
10363
|
+
export declare type IProject_OutputResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Project_Output'] = IResolversParentTypes['Project_Output']> = {
|
10364
|
+
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10365
|
+
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
10366
|
+
clientId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10367
|
+
teams?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
10368
|
+
status?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10369
|
+
orgName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10370
|
+
integrationConfigurationId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10371
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10372
|
+
};
|
10325
10373
|
export declare type IProjectsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Projects'] = IResolversParentTypes['Projects']> = {
|
10326
10374
|
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
10327
10375
|
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
@@ -10339,14 +10387,6 @@ export declare type IProjectsResolvers<ContextType = MyContext, ParentType exten
|
|
10339
10387
|
createdAt?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
|
10340
10388
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10341
10389
|
};
|
10342
|
-
export declare type IProjectSourceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ProjectSource'] = IResolversParentTypes['ProjectSource']> = {
|
10343
|
-
location?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10344
|
-
type?: Resolver<Maybe<IResolversTypes['ProjectSourceType']>, ParentType, ContextType>;
|
10345
|
-
parameters?: Resolver<Maybe<IResolversTypes['ProjectParameters']>, ParentType, ContextType>;
|
10346
|
-
providers?: Resolver<Maybe<IResolversTypes['ProjectSourceProviders']>, ParentType, ContextType>;
|
10347
|
-
language?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10348
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10349
|
-
};
|
10350
10390
|
export declare type IQueryResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Query'] = IResolversParentTypes['Query']> = {
|
10351
10391
|
GetSshKey?: Resolver<Maybe<IResolversTypes['SshKey']>, ParentType, ContextType, RequireFields<IQueryGetSshKeyArgs, 'id'>>;
|
10352
10392
|
decodeOrganizationInvitation?: Resolver<Maybe<IResolversTypes['OrganizationInvitationDecode']>, ParentType, ContextType, RequireFields<IQuerydecodeOrganizationInvitationArgs, 'token'>>;
|
@@ -10627,12 +10667,33 @@ export declare type IUserAccountCreatedEventResolvers<ContextType = MyContext, P
|
|
10627
10667
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10628
10668
|
};
|
10629
10669
|
export declare type IUserAccountRemovedEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserAccountRemovedEvent'] = IResolversParentTypes['UserAccountRemovedEvent']> = {
|
10630
|
-
id?: Resolver<
|
10670
|
+
id?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
10671
|
+
userId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
10631
10672
|
email?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
10632
10673
|
username?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
10633
10674
|
notificationEmail?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10634
10675
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10635
10676
|
};
|
10677
|
+
export declare type IUserAuth0InfoResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserAuth0Info'] = IResolversParentTypes['UserAuth0Info']> = {
|
10678
|
+
auth0Id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10679
|
+
sessionInfo?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserAuth0SessionInfo']>>>, ParentType, ContextType>;
|
10680
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10681
|
+
};
|
10682
|
+
export declare type IUserAuth0SessionDeviceInfoResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserAuth0SessionDeviceInfo'] = IResolversParentTypes['UserAuth0SessionDeviceInfo']> = {
|
10683
|
+
os?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10684
|
+
deviceName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10685
|
+
browserName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10686
|
+
isMobile?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
10687
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10688
|
+
};
|
10689
|
+
export declare type IUserAuth0SessionInfoResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserAuth0SessionInfo'] = IResolversParentTypes['UserAuth0SessionInfo']> = {
|
10690
|
+
sessionId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10691
|
+
deviceInfo?: Resolver<Maybe<IResolversTypes['UserAuth0SessionDeviceInfo']>, ParentType, ContextType>;
|
10692
|
+
lastLoginAt?: Resolver<Maybe<IResolversTypes['Date']>, ParentType, ContextType>;
|
10693
|
+
lastLoginIp?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10694
|
+
refreshToken?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10695
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10696
|
+
};
|
10636
10697
|
export declare type IUserConfigurationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserConfiguration'] = IResolversParentTypes['UserConfiguration']> = {
|
10637
10698
|
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
10638
10699
|
resource?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
|
@@ -10827,12 +10888,6 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
10827
10888
|
IConfigurationService?: IIConfigurationServiceResolvers<ContextType>;
|
10828
10889
|
ICountry?: IICountryResolvers<ContextType>;
|
10829
10890
|
IEventWithContext?: IIEventWithContextResolvers<ContextType>;
|
10830
|
-
IntegraitonConfigurationId?: IIntegraitonConfigurationIdResolvers<ContextType>;
|
10831
|
-
IntegrationConfiguration?: IIntegrationConfigurationResolvers<ContextType>;
|
10832
|
-
InviteMember?: IInviteMemberResolvers<ContextType>;
|
10833
|
-
InvoiceCreatedEvent?: IInvoiceCreatedEventResolvers<ContextType>;
|
10834
|
-
InvoiceDeletedEvent?: IInvoiceDeletedEventResolvers<ContextType>;
|
10835
|
-
InvoiceType?: IInvoiceTypeResolvers<ContextType>;
|
10836
10891
|
IOrgUser?: IIOrgUserResolvers<ContextType>;
|
10837
10892
|
IResourceData?: IIResourceDataResolvers<ContextType>;
|
10838
10893
|
IResourceUserRole?: IIResourceUserRoleResolvers<ContextType>;
|
@@ -10842,6 +10897,12 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
10842
10897
|
ITerritorialState?: IITerritorialStateResolvers<ContextType>;
|
10843
10898
|
IUser?: IIUserResolvers<ContextType>;
|
10844
10899
|
IUserMetadata?: IIUserMetadataResolvers<ContextType>;
|
10900
|
+
IntegraitonConfigurationId?: IIntegraitonConfigurationIdResolvers<ContextType>;
|
10901
|
+
IntegrationConfiguration?: IIntegrationConfigurationResolvers<ContextType>;
|
10902
|
+
InviteMember?: IInviteMemberResolvers<ContextType>;
|
10903
|
+
InvoiceCreatedEvent?: IInvoiceCreatedEventResolvers<ContextType>;
|
10904
|
+
InvoiceDeletedEvent?: IInvoiceDeletedEventResolvers<ContextType>;
|
10905
|
+
InvoiceType?: IInvoiceTypeResolvers<ContextType>;
|
10845
10906
|
JSON?: GraphQLScalarType;
|
10846
10907
|
JSONObject?: GraphQLScalarType;
|
10847
10908
|
LoginError?: ILoginErrorResolvers<ContextType>;
|
@@ -10854,6 +10915,9 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
10854
10915
|
NameType?: INameTypeResolvers<ContextType>;
|
10855
10916
|
Node?: INodeResolvers<ContextType>;
|
10856
10917
|
Observable?: GraphQLScalarType;
|
10918
|
+
OrgMember?: IOrgMemberResolvers<ContextType>;
|
10919
|
+
OrgUser?: IOrgUserResolvers<ContextType>;
|
10920
|
+
OrgUserAccunt?: IOrgUserAccuntResolvers<ContextType>;
|
10857
10921
|
Organization?: IOrganizationResolvers<ContextType>;
|
10858
10922
|
OrganizationConfiguration?: IOrganizationConfigurationResolvers<ContextType>;
|
10859
10923
|
OrganizationCreatedEvent?: IOrganizationCreatedEventResolvers<ContextType>;
|
@@ -10868,19 +10932,17 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
10868
10932
|
OrganizationResourceData?: IOrganizationResourceDataResolvers<ContextType>;
|
10869
10933
|
OrganizationResourceSettings?: IOrganizationResourceSettingsResolvers<ContextType>;
|
10870
10934
|
OrganizationRole?: IOrganizationRoleResolvers<ContextType>;
|
10871
|
-
OrganizationsDeactivatedEvent?: IOrganizationsDeactivatedEventResolvers<ContextType>;
|
10872
|
-
OrganizationsDeletedEvent?: IOrganizationsDeletedEventResolvers<ContextType>;
|
10873
10935
|
OrganizationService?: IOrganizationServiceResolvers<ContextType>;
|
10874
10936
|
OrganizationSettings?: IOrganizationSettingsResolvers<ContextType>;
|
10875
|
-
|
10876
|
-
|
10877
|
-
OrgUserAccunt?: IOrgUserAccuntResolvers<ContextType>;
|
10937
|
+
OrganizationsDeactivatedEvent?: IOrganizationsDeactivatedEventResolvers<ContextType>;
|
10938
|
+
OrganizationsDeletedEvent?: IOrganizationsDeletedEventResolvers<ContextType>;
|
10878
10939
|
Overrides?: IOverridesResolvers<ContextType>;
|
10879
10940
|
PageInfo?: IPageInfoResolvers<ContextType>;
|
10880
10941
|
PermissionSubject?: IPermissionSubjectResolvers<ContextType>;
|
10881
10942
|
PhoneNumber?: IPhoneNumberResolvers<ContextType>;
|
10882
10943
|
PolicySubject?: IPolicySubjectResolvers<ContextType>;
|
10883
10944
|
Position?: IPositionResolvers<ContextType>;
|
10945
|
+
PreferenceItem?: IPreferenceItemResolvers<ContextType>;
|
10884
10946
|
Preference_Account?: IPreference_AccountResolvers<ContextType>;
|
10885
10947
|
Preference_Default?: IPreference_DefaultResolvers<ContextType>;
|
10886
10948
|
Preference_Global?: IPreference_GlobalResolvers<ContextType>;
|
@@ -10889,18 +10951,17 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
10889
10951
|
Preference_Organization?: IPreference_OrganizationResolvers<ContextType>;
|
10890
10952
|
Preference_Project?: IPreference_ProjectResolvers<ContextType>;
|
10891
10953
|
Preference_Teams?: IPreference_TeamsResolvers<ContextType>;
|
10892
|
-
PreferenceItem?: IPreferenceItemResolvers<ContextType>;
|
10893
10954
|
Preferences?: IPreferencesResolvers<ContextType>;
|
10894
10955
|
PreferencesInput?: IPreferencesInputResolvers<ContextType>;
|
10895
10956
|
PreferencesResponse?: IPreferencesResponseResolvers<ContextType>;
|
10896
10957
|
PreferencesType?: IPreferencesTypeResolvers<ContextType>;
|
10897
|
-
Project_Output?: IProject_OutputResolvers<ContextType>;
|
10898
10958
|
ProjectCreatedEvent?: IProjectCreatedEventResolvers<ContextType>;
|
10899
10959
|
ProjectDeletedEvent?: IProjectDeletedEventResolvers<ContextType>;
|
10900
10960
|
ProjectInvoice?: IProjectInvoiceResolvers<ContextType>;
|
10901
10961
|
ProjectParameters?: IProjectParametersResolvers<ContextType>;
|
10902
|
-
Projects?: IProjectsResolvers<ContextType>;
|
10903
10962
|
ProjectSource?: IProjectSourceResolvers<ContextType>;
|
10963
|
+
Project_Output?: IProject_OutputResolvers<ContextType>;
|
10964
|
+
Projects?: IProjectsResolvers<ContextType>;
|
10904
10965
|
Query?: IQueryResolvers<ContextType>;
|
10905
10966
|
Range?: IRangeResolvers<ContextType>;
|
10906
10967
|
ResourceAccessRole?: IResourceAccessRoleResolvers<ContextType>;
|
@@ -10934,6 +10995,9 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
10934
10995
|
UserAccountCreatedDetailedEvent?: IUserAccountCreatedDetailedEventResolvers<ContextType>;
|
10935
10996
|
UserAccountCreatedEvent?: IUserAccountCreatedEventResolvers<ContextType>;
|
10936
10997
|
UserAccountRemovedEvent?: IUserAccountRemovedEventResolvers<ContextType>;
|
10998
|
+
UserAuth0Info?: IUserAuth0InfoResolvers<ContextType>;
|
10999
|
+
UserAuth0SessionDeviceInfo?: IUserAuth0SessionDeviceInfoResolvers<ContextType>;
|
11000
|
+
UserAuth0SessionInfo?: IUserAuth0SessionInfoResolvers<ContextType>;
|
10937
11001
|
UserConfiguration?: IUserConfigurationResolvers<ContextType>;
|
10938
11002
|
UserContext?: IUserContextResolvers<ContextType>;
|
10939
11003
|
UserDevice?: IUserDeviceResolvers<ContextType>;
|