@adminide-stack/core 1.1.3-alpha.35 → 1.1.3-alpha.48
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 +1011 -1012
- package/lib/interfaces/generated/generated-models.js +18 -11
- 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 {
|
@@ -49,7 +49,8 @@ export declare const enum IAccountBroadcasterActions {
|
|
49
49
|
onAccountUpdated = "onAccountUpdated",
|
50
50
|
onEmailVerified = "onEmailVerified",
|
51
51
|
onAccountDeleted = "onAccountDeleted",
|
52
|
-
onPasswordReset = "onPasswordReset"
|
52
|
+
onPasswordReset = "onPasswordReset",
|
53
|
+
onPictureChanged = "onPictureChanged"
|
53
54
|
}
|
54
55
|
export declare type IAccountService = {
|
55
56
|
__typename?: 'AccountService';
|
@@ -596,10 +597,7 @@ export declare type IContributionSettings = {
|
|
596
597
|
/** dependency to parent setting key */
|
597
598
|
settingDependencies?: Maybe<Array<Maybe<Scalars['String']>>>;
|
598
599
|
allKeysAreBoolean?: Maybe<Scalars['Boolean']>;
|
599
|
-
/**
|
600
|
-
* Edit Presentation for controlling whether a single-line inputbox or multi-line
|
601
|
-
* textarea is rendered for the string setting in Settings editor
|
602
|
-
*/
|
600
|
+
/** Edit Presentation for controlling whether a single-line inputbox or multi-line textarea is rendered for the string setting in Settings editor */
|
603
601
|
editPresentation?: Maybe<IEditPresentationTypes>;
|
604
602
|
defaultValueSource?: Maybe<Scalars['AnyObject']>;
|
605
603
|
isLanguageTagSetting?: Maybe<Scalars['Boolean']>;
|
@@ -872,6 +870,82 @@ export declare type IICountry = {
|
|
872
870
|
export declare type IIEventWithContext = {
|
873
871
|
userContext?: Maybe<IUserContext>;
|
874
872
|
};
|
873
|
+
export declare type IIOnBoardingParams = {
|
874
|
+
org?: Maybe<IOrgType>;
|
875
|
+
team?: Maybe<ITeamType>;
|
876
|
+
};
|
877
|
+
/** Organization Template to be used */
|
878
|
+
export declare type IIOrgUser = {
|
879
|
+
role?: Maybe<IApplicationRoles>;
|
880
|
+
isSelf: Scalars['Boolean'];
|
881
|
+
orgName: Scalars['String'];
|
882
|
+
};
|
883
|
+
export declare type IIResourceData = {
|
884
|
+
/** The associated URI for this resource. */
|
885
|
+
uri?: Maybe<Scalars['URI']>;
|
886
|
+
/** The name of this resource. Defaults to the basename its [uri-path](#Uri.path) */
|
887
|
+
name?: Maybe<Scalars['String']>;
|
888
|
+
/** The ordinal number of this resource. */
|
889
|
+
index?: Maybe<Scalars['Int']>;
|
890
|
+
};
|
891
|
+
export declare type IIResourceUserRole = {
|
892
|
+
role?: Maybe<Scalars['String']>;
|
893
|
+
name?: Maybe<Scalars['String']>;
|
894
|
+
isSelf?: Maybe<Scalars['Boolean']>;
|
895
|
+
orgName?: Maybe<Scalars['String']>;
|
896
|
+
};
|
897
|
+
export declare type IIResourceUtilizationSettings = {
|
898
|
+
subTopic?: Maybe<Scalars['String']>;
|
899
|
+
adminApiNamespace?: Maybe<Scalars['String']>;
|
900
|
+
};
|
901
|
+
/**
|
902
|
+
* ISettingsSubject is something that can have settings: a site ("global settings", which is different from "site
|
903
|
+
* configuration"), an organization, or a user.
|
904
|
+
*/
|
905
|
+
export declare type IISettingsSubject = {
|
906
|
+
/** The ID. */
|
907
|
+
id?: Maybe<Scalars['ID']>;
|
908
|
+
/** The latest settings. */
|
909
|
+
latestSettings?: Maybe<ISettings>;
|
910
|
+
/** The URL to the settings. */
|
911
|
+
settingsURL: Scalars['URI'];
|
912
|
+
/** Whether the viewer can modify the subject's settings. */
|
913
|
+
viewerCanAdminister: Scalars['Boolean'];
|
914
|
+
/**
|
915
|
+
* All settings for this subject, and the individual levels in the settings cascade (global > organization > user)
|
916
|
+
* that were merged to produce the final merged settings.
|
917
|
+
*/
|
918
|
+
settingsCascade: ISettingsCascade;
|
919
|
+
};
|
920
|
+
export declare type IISshKeySettings = {
|
921
|
+
subTopic?: Maybe<Scalars['String']>;
|
922
|
+
sshNamespace?: Maybe<Scalars['String']>;
|
923
|
+
};
|
924
|
+
/** Territorial State */
|
925
|
+
export declare type IITerritorialState = {
|
926
|
+
id: Scalars['ID'];
|
927
|
+
name: Scalars['String'];
|
928
|
+
country: IICountry;
|
929
|
+
location?: Maybe<IGeoLocation>;
|
930
|
+
createdAt: Scalars['Date'];
|
931
|
+
updatedAt?: Maybe<Scalars['Date']>;
|
932
|
+
};
|
933
|
+
export declare type IIUser = {
|
934
|
+
id: Scalars['ID'];
|
935
|
+
username?: Maybe<Scalars['String']>;
|
936
|
+
email?: Maybe<Scalars['String']>;
|
937
|
+
};
|
938
|
+
export declare type IIUserMetadata = {
|
939
|
+
last_name?: Maybe<Scalars['String']>;
|
940
|
+
first_name?: Maybe<Scalars['String']>;
|
941
|
+
username?: Maybe<Scalars['String']>;
|
942
|
+
phone_number?: Maybe<Scalars['String']>;
|
943
|
+
work_email?: Maybe<Scalars['String']>;
|
944
|
+
country?: Maybe<Scalars['String']>;
|
945
|
+
company_name?: Maybe<Scalars['String']>;
|
946
|
+
dob?: Maybe<Scalars['Date']>;
|
947
|
+
zip_code?: Maybe<Scalars['Int']>;
|
948
|
+
};
|
875
949
|
export declare type IIntegraitonConfigurationId = {
|
876
950
|
__typename?: 'IntegraitonConfigurationId';
|
877
951
|
id?: Maybe<Scalars['String']>;
|
@@ -925,10 +999,6 @@ export declare const enum IInviteStatus {
|
|
925
999
|
ACCEPTED = "ACCEPTED",
|
926
1000
|
DECLINED = "DECLINED"
|
927
1001
|
}
|
928
|
-
export declare type IInvoiceCreatedEvent = {
|
929
|
-
__typename?: 'InvoiceCreatedEvent';
|
930
|
-
createdInvoice?: Maybe<IInvoiceType>;
|
931
|
-
};
|
932
1002
|
export declare type IInvoiceCreateRequest = {
|
933
1003
|
comment?: Maybe<Scalars['String']>;
|
934
1004
|
currency?: Maybe<Scalars['String']>;
|
@@ -951,6 +1021,10 @@ export declare type IInvoiceCreateRequest = {
|
|
951
1021
|
to?: Maybe<ICustomerInvoice_Input>;
|
952
1022
|
total?: Maybe<Scalars['Float']>;
|
953
1023
|
};
|
1024
|
+
export declare type IInvoiceCreatedEvent = {
|
1025
|
+
__typename?: 'InvoiceCreatedEvent';
|
1026
|
+
createdInvoice?: Maybe<IInvoiceType>;
|
1027
|
+
};
|
954
1028
|
export declare type IInvoiceDeletedEvent = {
|
955
1029
|
__typename?: 'InvoiceDeletedEvent';
|
956
1030
|
deletedInvoice?: Maybe<IInvoiceType>;
|
@@ -1016,82 +1090,6 @@ export declare type IInvoiceUpdateRequest = {
|
|
1016
1090
|
to?: Maybe<ICustomerInvoice_Input>;
|
1017
1091
|
total?: Maybe<Scalars['Float']>;
|
1018
1092
|
};
|
1019
|
-
export declare type IIOnBoardingParams = {
|
1020
|
-
org?: Maybe<IOrgType>;
|
1021
|
-
team?: Maybe<ITeamType>;
|
1022
|
-
};
|
1023
|
-
/** Organization Template to be used */
|
1024
|
-
export declare type IIOrgUser = {
|
1025
|
-
role?: Maybe<IApplicationRoles>;
|
1026
|
-
isSelf: Scalars['Boolean'];
|
1027
|
-
orgName: Scalars['String'];
|
1028
|
-
};
|
1029
|
-
export declare type IIResourceData = {
|
1030
|
-
/** The associated URI for this resource. */
|
1031
|
-
uri?: Maybe<Scalars['URI']>;
|
1032
|
-
/** The name of this resource. Defaults to the basename its [uri-path](#Uri.path) */
|
1033
|
-
name?: Maybe<Scalars['String']>;
|
1034
|
-
/** The ordinal number of this resource. */
|
1035
|
-
index?: Maybe<Scalars['Int']>;
|
1036
|
-
};
|
1037
|
-
export declare type IIResourceUserRole = {
|
1038
|
-
role?: Maybe<Scalars['String']>;
|
1039
|
-
name?: Maybe<Scalars['String']>;
|
1040
|
-
isSelf?: Maybe<Scalars['Boolean']>;
|
1041
|
-
orgName?: Maybe<Scalars['String']>;
|
1042
|
-
};
|
1043
|
-
export declare type IIResourceUtilizationSettings = {
|
1044
|
-
subTopic?: Maybe<Scalars['String']>;
|
1045
|
-
adminApiNamespace?: Maybe<Scalars['String']>;
|
1046
|
-
};
|
1047
|
-
/**
|
1048
|
-
* ISettingsSubject is something that can have settings: a site ("global settings", which is different from "site
|
1049
|
-
* configuration"), an organization, or a user.
|
1050
|
-
*/
|
1051
|
-
export declare type IISettingsSubject = {
|
1052
|
-
/** The ID. */
|
1053
|
-
id?: Maybe<Scalars['ID']>;
|
1054
|
-
/** The latest settings. */
|
1055
|
-
latestSettings?: Maybe<ISettings>;
|
1056
|
-
/** The URL to the settings. */
|
1057
|
-
settingsURL: Scalars['URI'];
|
1058
|
-
/** Whether the viewer can modify the subject's settings. */
|
1059
|
-
viewerCanAdminister: Scalars['Boolean'];
|
1060
|
-
/**
|
1061
|
-
* All settings for this subject, and the individual levels in the settings cascade (global > organization > user)
|
1062
|
-
* that were merged to produce the final merged settings.
|
1063
|
-
*/
|
1064
|
-
settingsCascade: ISettingsCascade;
|
1065
|
-
};
|
1066
|
-
export declare type IISshKeySettings = {
|
1067
|
-
subTopic?: Maybe<Scalars['String']>;
|
1068
|
-
sshNamespace?: Maybe<Scalars['String']>;
|
1069
|
-
};
|
1070
|
-
/** Territorial State */
|
1071
|
-
export declare type IITerritorialState = {
|
1072
|
-
id: Scalars['ID'];
|
1073
|
-
name: Scalars['String'];
|
1074
|
-
country: IICountry;
|
1075
|
-
location?: Maybe<IGeoLocation>;
|
1076
|
-
createdAt: Scalars['Date'];
|
1077
|
-
updatedAt?: Maybe<Scalars['Date']>;
|
1078
|
-
};
|
1079
|
-
export declare type IIUser = {
|
1080
|
-
id: Scalars['ID'];
|
1081
|
-
username?: Maybe<Scalars['String']>;
|
1082
|
-
email?: Maybe<Scalars['String']>;
|
1083
|
-
};
|
1084
|
-
export declare type IIUserMetadata = {
|
1085
|
-
last_name?: Maybe<Scalars['String']>;
|
1086
|
-
first_name?: Maybe<Scalars['String']>;
|
1087
|
-
username?: Maybe<Scalars['String']>;
|
1088
|
-
phone_number?: Maybe<Scalars['String']>;
|
1089
|
-
work_email?: Maybe<Scalars['String']>;
|
1090
|
-
country?: Maybe<Scalars['String']>;
|
1091
|
-
company_name?: Maybe<Scalars['String']>;
|
1092
|
-
dob?: Maybe<Scalars['Date']>;
|
1093
|
-
zip_code?: Maybe<Scalars['Int']>;
|
1094
|
-
};
|
1095
1093
|
/**
|
1096
1094
|
* A segment of a key path that locates a nested JSON value in a root JSON value. Exactly one field in each
|
1097
1095
|
* KeyPathSegment must be non-null.
|
@@ -1220,7 +1218,9 @@ export declare const enum IMoleculerServiceName {
|
|
1220
1218
|
SshKeyService = "SshKeyService",
|
1221
1219
|
StripeService = "StripeService",
|
1222
1220
|
UserBroadcaster = "UserBroadcaster",
|
1223
|
-
dummy = "dummy"
|
1221
|
+
dummy = "dummy",
|
1222
|
+
/** Actions */
|
1223
|
+
onConfigurationUpdated = "onConfigurationUpdated"
|
1224
1224
|
}
|
1225
1225
|
export declare type IMutation = {
|
1226
1226
|
__typename?: 'Mutation';
|
@@ -1430,7 +1430,7 @@ export declare type IMutationsendOrganizationInvitationArgs = {
|
|
1430
1430
|
request?: Maybe<IOrganizationInvitationRequest>;
|
1431
1431
|
};
|
1432
1432
|
export declare type IMutationsendUserPasswordResetEmailArgs = {
|
1433
|
-
|
1433
|
+
email: Scalars['String'];
|
1434
1434
|
};
|
1435
1435
|
export declare type IMutationsetSettingsValueByResourceArgs = {
|
1436
1436
|
uri?: Maybe<Scalars['URI']>;
|
@@ -1549,13 +1549,13 @@ export declare type IMutationupsertProjectThroughIntegrationArgs = {
|
|
1549
1549
|
export declare type IMutationverifyUserEmailVerificationTokenArgs = {
|
1550
1550
|
token?: Maybe<Scalars['String']>;
|
1551
1551
|
};
|
1552
|
-
export declare type
|
1552
|
+
export declare type INameType = {
|
1553
|
+
__typename?: 'NameType';
|
1553
1554
|
salutation?: Maybe<Scalars['String']>;
|
1554
1555
|
firstName?: Maybe<Scalars['String']>;
|
1555
1556
|
lastName?: Maybe<Scalars['String']>;
|
1556
1557
|
};
|
1557
|
-
export declare type
|
1558
|
-
__typename?: 'NameType';
|
1558
|
+
export declare type IName_Input = {
|
1559
1559
|
salutation?: Maybe<Scalars['String']>;
|
1560
1560
|
firstName?: Maybe<Scalars['String']>;
|
1561
1561
|
lastName?: Maybe<Scalars['String']>;
|
@@ -1565,6 +1565,55 @@ export declare type INode = {
|
|
1565
1565
|
/** The ID of the node. */
|
1566
1566
|
id: Scalars['ID'];
|
1567
1567
|
};
|
1568
|
+
export declare type IOrgDetailWhere = {
|
1569
|
+
id?: Maybe<Scalars['String']>;
|
1570
|
+
name?: Maybe<Scalars['String']>;
|
1571
|
+
};
|
1572
|
+
export declare type IOrgMember = {
|
1573
|
+
__typename?: 'OrgMember';
|
1574
|
+
_id?: Maybe<Scalars['String']>;
|
1575
|
+
userId?: Maybe<Scalars['String']>;
|
1576
|
+
role?: Maybe<IApplicationRoles>;
|
1577
|
+
inactive?: Maybe<Scalars['Boolean']>;
|
1578
|
+
name?: Maybe<Scalars['String']>;
|
1579
|
+
email?: Maybe<Scalars['String']>;
|
1580
|
+
crossCheckEmail?: Maybe<Scalars['String']>;
|
1581
|
+
teamNames?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1582
|
+
};
|
1583
|
+
export declare type IOrgType = {
|
1584
|
+
name?: Maybe<Scalars['String']>;
|
1585
|
+
settings?: Maybe<Scalars['AnyObject']>;
|
1586
|
+
};
|
1587
|
+
export declare type IOrgUser = IIOrgUser & {
|
1588
|
+
__typename?: 'OrgUser';
|
1589
|
+
userId: Scalars['String'];
|
1590
|
+
role?: Maybe<IApplicationRoles>;
|
1591
|
+
inactive?: Maybe<Scalars['Boolean']>;
|
1592
|
+
orgName: Scalars['String'];
|
1593
|
+
user: IOrgUserAccunt;
|
1594
|
+
isSelf: Scalars['Boolean'];
|
1595
|
+
crossCheckEmail?: Maybe<Scalars['String']>;
|
1596
|
+
};
|
1597
|
+
export declare type IOrgUserAccunt = INode & {
|
1598
|
+
__typename?: 'OrgUserAccunt';
|
1599
|
+
id: Scalars['ID'];
|
1600
|
+
email?: Maybe<Scalars['String']>;
|
1601
|
+
alias?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1602
|
+
username?: Maybe<Scalars['String']>;
|
1603
|
+
emailVerified?: Maybe<Scalars['Boolean']>;
|
1604
|
+
};
|
1605
|
+
export declare const enum IOrgUserRole {
|
1606
|
+
BILLING_LEADER = "BILLING_LEADER",
|
1607
|
+
MEMBER = "MEMBER",
|
1608
|
+
ADMIN = "ADMIN",
|
1609
|
+
OWNER = "OWNER"
|
1610
|
+
}
|
1611
|
+
export declare type IOrgUser_Input = {
|
1612
|
+
userId?: Maybe<Scalars['String']>;
|
1613
|
+
role?: Maybe<IApplicationRoles>;
|
1614
|
+
inactive?: Maybe<Scalars['Boolean']>;
|
1615
|
+
crossCheckEmail?: Maybe<Scalars['String']>;
|
1616
|
+
};
|
1568
1617
|
/**
|
1569
1618
|
* OrganizationInvitationRole: The possible organization invitation roles.
|
1570
1619
|
*
|
@@ -1628,27 +1677,9 @@ export declare type IOrganization = {
|
|
1628
1677
|
stripeSubscriptionId?: Maybe<Scalars['String']>;
|
1629
1678
|
invitations?: Maybe<Array<Maybe<IOrganizationInvitation>>>;
|
1630
1679
|
};
|
1631
|
-
export declare type
|
1632
|
-
|
1633
|
-
|
1634
|
-
title?: Maybe<Scalars['String']>;
|
1635
|
-
description?: Maybe<Scalars['String']>;
|
1636
|
-
picture?: Maybe<Scalars['String']>;
|
1637
|
-
stripeId?: Maybe<Scalars['String']>;
|
1638
|
-
namespace?: Maybe<Scalars['String']>;
|
1639
|
-
orgUserCount?: Maybe<Scalars['Int']>;
|
1640
|
-
createdAt?: Maybe<Scalars['DateTime']>;
|
1641
|
-
updatedAt?: Maybe<Scalars['DateTime']>;
|
1642
|
-
orgMembers?: Maybe<Array<Maybe<IOrgUser_Input>>>;
|
1643
|
-
periodStart?: Maybe<Scalars['DateTime']>;
|
1644
|
-
periodStop?: Maybe<Scalars['DateTime']>;
|
1645
|
-
billingLeaders?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1646
|
-
billingEmail?: Maybe<Scalars['String']>;
|
1647
|
-
isBillingLeader?: Maybe<Scalars['Boolean']>;
|
1648
|
-
mainBilingLeaderId?: Maybe<Scalars['String']>;
|
1649
|
-
stripeSubscriptionId?: Maybe<Scalars['String']>;
|
1650
|
-
invitations?: Maybe<Array<Maybe<IOrganizationInvitation_Input>>>;
|
1651
|
-
status?: Maybe<Scalars['String']>;
|
1680
|
+
export declare type IOrganizationConfigValue_Input = {
|
1681
|
+
section?: Maybe<Scalars['String']>;
|
1682
|
+
overrides?: Maybe<IConfigurationOverrides_Input>;
|
1652
1683
|
};
|
1653
1684
|
export declare type IOrganizationConfiguration = IIConfigurationModel & {
|
1654
1685
|
__typename?: 'OrganizationConfiguration';
|
@@ -1660,10 +1691,6 @@ export declare type IOrganizationConfiguration = IIConfigurationModel & {
|
|
1660
1691
|
keys?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1661
1692
|
overrides?: Maybe<Array<Maybe<IOverrides>>>;
|
1662
1693
|
};
|
1663
|
-
export declare type IOrganizationConfigValue_Input = {
|
1664
|
-
section?: Maybe<Scalars['String']>;
|
1665
|
-
overrides?: Maybe<IConfigurationOverrides_Input>;
|
1666
|
-
};
|
1667
1694
|
/** Subscription event for context */
|
1668
1695
|
export declare const enum IOrganizationContextPubSubEvents {
|
1669
1696
|
OrganizationContextUpdated = "OrganizationContextUpdated",
|
@@ -1671,11 +1698,6 @@ export declare const enum IOrganizationContextPubSubEvents {
|
|
1671
1698
|
OrganizationConfigurationUpdated = "OrganizationConfigurationUpdated",
|
1672
1699
|
OrganizationPermissionUpdated = "OrganizationPermissionUpdated"
|
1673
1700
|
}
|
1674
|
-
export declare type IOrganizationCreatedEvent = IIEventWithContext & {
|
1675
|
-
__typename?: 'OrganizationCreatedEvent';
|
1676
|
-
createdOrganization?: Maybe<IOrganization>;
|
1677
|
-
userContext?: Maybe<IUserContext>;
|
1678
|
-
};
|
1679
1701
|
export declare type IOrganizationCreateRequest = {
|
1680
1702
|
name?: Maybe<Scalars['String']>;
|
1681
1703
|
title?: Maybe<Scalars['String']>;
|
@@ -1691,6 +1713,11 @@ export declare type IOrganizationCreateRequest = {
|
|
1691
1713
|
stripeSubscriptionId?: Maybe<Scalars['String']>;
|
1692
1714
|
invitations?: Maybe<Array<Maybe<IOrganizationInvitation_Input>>>;
|
1693
1715
|
};
|
1716
|
+
export declare type IOrganizationCreatedEvent = IIEventWithContext & {
|
1717
|
+
__typename?: 'OrganizationCreatedEvent';
|
1718
|
+
createdOrganization?: Maybe<IOrganization>;
|
1719
|
+
userContext?: Maybe<IUserContext>;
|
1720
|
+
};
|
1694
1721
|
export declare type IOrganizationData = {
|
1695
1722
|
__typename?: 'OrganizationData';
|
1696
1723
|
/** The unique identifier of the workspace. */
|
@@ -1727,19 +1754,6 @@ export declare type IOrganizationInvitation = {
|
|
1727
1754
|
acceptedAt?: Maybe<Scalars['DateTime']>;
|
1728
1755
|
tokenExpiration?: Maybe<Scalars['DateTime']>;
|
1729
1756
|
};
|
1730
|
-
export declare type IOrganizationInvitation_Input = {
|
1731
|
-
email?: Maybe<Scalars['String']>;
|
1732
|
-
teamId?: Maybe<Scalars['String']>;
|
1733
|
-
role?: Maybe<IApplicationRoles>;
|
1734
|
-
active?: Maybe<Scalars['Boolean']>;
|
1735
|
-
fullName?: Maybe<Scalars['String']>;
|
1736
|
-
inviteCount?: Maybe<Scalars['Int']>;
|
1737
|
-
invitedBy?: Maybe<Scalars['String']>;
|
1738
|
-
createdAt?: Maybe<Scalars['DateTime']>;
|
1739
|
-
updatedAt?: Maybe<Scalars['DateTime']>;
|
1740
|
-
acceptedAt?: Maybe<Scalars['DateTime']>;
|
1741
|
-
tokenExpiration?: Maybe<Scalars['DateTime']>;
|
1742
|
-
};
|
1743
1757
|
export declare type IOrganizationInvitationDecode = {
|
1744
1758
|
__typename?: 'OrganizationInvitationDecode';
|
1745
1759
|
orgName?: Maybe<Scalars['String']>;
|
@@ -1755,6 +1769,19 @@ export declare type IOrganizationInvitationRequest = {
|
|
1755
1769
|
orgName?: Maybe<Scalars['String']>;
|
1756
1770
|
role?: Maybe<Scalars['String']>;
|
1757
1771
|
};
|
1772
|
+
export declare type IOrganizationInvitation_Input = {
|
1773
|
+
email?: Maybe<Scalars['String']>;
|
1774
|
+
teamId?: Maybe<Scalars['String']>;
|
1775
|
+
role?: Maybe<IApplicationRoles>;
|
1776
|
+
active?: Maybe<Scalars['Boolean']>;
|
1777
|
+
fullName?: Maybe<Scalars['String']>;
|
1778
|
+
inviteCount?: Maybe<Scalars['Int']>;
|
1779
|
+
invitedBy?: Maybe<Scalars['String']>;
|
1780
|
+
createdAt?: Maybe<Scalars['DateTime']>;
|
1781
|
+
updatedAt?: Maybe<Scalars['DateTime']>;
|
1782
|
+
acceptedAt?: Maybe<Scalars['DateTime']>;
|
1783
|
+
tokenExpiration?: Maybe<Scalars['DateTime']>;
|
1784
|
+
};
|
1758
1785
|
export declare type IOrganizationMember = {
|
1759
1786
|
__typename?: 'OrganizationMember';
|
1760
1787
|
id?: Maybe<Scalars['String']>;
|
@@ -1821,14 +1848,6 @@ export declare type IOrganizationRole = IIConfigurationModel & {
|
|
1821
1848
|
keys?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1822
1849
|
overrides?: Maybe<Array<Maybe<IOverrides>>>;
|
1823
1850
|
};
|
1824
|
-
export declare type IOrganizationsDeactivatedEvent = {
|
1825
|
-
__typename?: 'OrganizationsDeactivatedEvent';
|
1826
|
-
deactivatedOrganizationsIds?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1827
|
-
};
|
1828
|
-
export declare type IOrganizationsDeletedEvent = {
|
1829
|
-
__typename?: 'OrganizationsDeletedEvent';
|
1830
|
-
deletedOrganizationIds?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1831
|
-
};
|
1832
1851
|
export declare type IOrganizationService = {
|
1833
1852
|
__typename?: 'OrganizationService';
|
1834
1853
|
getOrganization?: Maybe<IOrganization>;
|
@@ -1910,55 +1929,36 @@ export declare type IOrganizationUpdateRequest = {
|
|
1910
1929
|
requestedUserId?: Maybe<Scalars['String']>;
|
1911
1930
|
payload?: Maybe<IOrganization_Input>;
|
1912
1931
|
};
|
1913
|
-
export declare type
|
1914
|
-
id?: Maybe<Scalars['
|
1915
|
-
name
|
1916
|
-
|
1917
|
-
|
1918
|
-
|
1919
|
-
|
1920
|
-
|
1921
|
-
|
1922
|
-
|
1923
|
-
|
1924
|
-
|
1925
|
-
|
1926
|
-
|
1927
|
-
|
1928
|
-
|
1929
|
-
|
1930
|
-
|
1931
|
-
|
1932
|
-
|
1933
|
-
|
1934
|
-
userId: Scalars['String'];
|
1935
|
-
role?: Maybe<IApplicationRoles>;
|
1936
|
-
inactive?: Maybe<Scalars['Boolean']>;
|
1937
|
-
orgName: Scalars['String'];
|
1938
|
-
user: IOrgUserAccunt;
|
1939
|
-
isSelf: Scalars['Boolean'];
|
1940
|
-
crossCheckEmail?: Maybe<Scalars['String']>;
|
1932
|
+
export declare type IOrganization_Input = {
|
1933
|
+
id?: Maybe<Scalars['ID']>;
|
1934
|
+
name: Scalars['String'];
|
1935
|
+
title?: Maybe<Scalars['String']>;
|
1936
|
+
description?: Maybe<Scalars['String']>;
|
1937
|
+
picture?: Maybe<Scalars['String']>;
|
1938
|
+
stripeId?: Maybe<Scalars['String']>;
|
1939
|
+
namespace?: Maybe<Scalars['String']>;
|
1940
|
+
orgUserCount?: Maybe<Scalars['Int']>;
|
1941
|
+
createdAt?: Maybe<Scalars['DateTime']>;
|
1942
|
+
updatedAt?: Maybe<Scalars['DateTime']>;
|
1943
|
+
orgMembers?: Maybe<Array<Maybe<IOrgUser_Input>>>;
|
1944
|
+
periodStart?: Maybe<Scalars['DateTime']>;
|
1945
|
+
periodStop?: Maybe<Scalars['DateTime']>;
|
1946
|
+
billingLeaders?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1947
|
+
billingEmail?: Maybe<Scalars['String']>;
|
1948
|
+
isBillingLeader?: Maybe<Scalars['Boolean']>;
|
1949
|
+
mainBilingLeaderId?: Maybe<Scalars['String']>;
|
1950
|
+
stripeSubscriptionId?: Maybe<Scalars['String']>;
|
1951
|
+
invitations?: Maybe<Array<Maybe<IOrganizationInvitation_Input>>>;
|
1952
|
+
status?: Maybe<Scalars['String']>;
|
1941
1953
|
};
|
1942
|
-
export declare type
|
1943
|
-
|
1944
|
-
|
1945
|
-
inactive?: Maybe<Scalars['Boolean']>;
|
1946
|
-
crossCheckEmail?: Maybe<Scalars['String']>;
|
1954
|
+
export declare type IOrganizationsDeactivatedEvent = {
|
1955
|
+
__typename?: 'OrganizationsDeactivatedEvent';
|
1956
|
+
deactivatedOrganizationsIds?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1947
1957
|
};
|
1948
|
-
export declare type
|
1949
|
-
__typename?: '
|
1950
|
-
|
1951
|
-
email?: Maybe<Scalars['String']>;
|
1952
|
-
alias?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1953
|
-
username?: Maybe<Scalars['String']>;
|
1954
|
-
emailVerified?: Maybe<Scalars['Boolean']>;
|
1958
|
+
export declare type IOrganizationsDeletedEvent = {
|
1959
|
+
__typename?: 'OrganizationsDeletedEvent';
|
1960
|
+
deletedOrganizationIds?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1955
1961
|
};
|
1956
|
-
export declare const enum IOrgUserRole {
|
1957
|
-
BILLING_LEADER = "BILLING_LEADER",
|
1958
|
-
MEMBER = "MEMBER",
|
1959
|
-
ADMIN = "ADMIN",
|
1960
|
-
OWNER = "OWNER"
|
1961
|
-
}
|
1962
1962
|
export declare type IOverrides = {
|
1963
1963
|
__typename?: 'Overrides';
|
1964
1964
|
contents?: Maybe<Scalars['AnyObject']>;
|
@@ -2045,6 +2045,17 @@ export declare const enum IPreDefinedRole {
|
|
2045
2045
|
GUEST = "GUEST",
|
2046
2046
|
CONTRIBUTORS = "CONTRIBUTORS"
|
2047
2047
|
}
|
2048
|
+
export declare type IPreferenceItem = {
|
2049
|
+
__typename?: 'PreferenceItem';
|
2050
|
+
name?: Maybe<Scalars['String']>;
|
2051
|
+
type?: Maybe<Scalars['String']>;
|
2052
|
+
default?: Maybe<Scalars['String']>;
|
2053
|
+
description?: Maybe<Scalars['String']>;
|
2054
|
+
categoryType?: Maybe<Scalars['String']>;
|
2055
|
+
settings?: Maybe<Scalars['String']>;
|
2056
|
+
enum?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2057
|
+
enumDescriptions?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2058
|
+
};
|
2048
2059
|
export declare type IPreference_Account = {
|
2049
2060
|
__typename?: 'Preference_Account';
|
2050
2061
|
default?: Maybe<IPreference_Default>;
|
@@ -2084,17 +2095,6 @@ export declare type IPreference_Teams = {
|
|
2084
2095
|
__typename?: 'Preference_Teams';
|
2085
2096
|
visibility?: Maybe<IVisibility>;
|
2086
2097
|
};
|
2087
|
-
export declare type IPreferenceItem = {
|
2088
|
-
__typename?: 'PreferenceItem';
|
2089
|
-
name?: Maybe<Scalars['String']>;
|
2090
|
-
type?: Maybe<Scalars['String']>;
|
2091
|
-
default?: Maybe<Scalars['String']>;
|
2092
|
-
description?: Maybe<Scalars['String']>;
|
2093
|
-
categoryType?: Maybe<Scalars['String']>;
|
2094
|
-
settings?: Maybe<Scalars['String']>;
|
2095
|
-
enum?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2096
|
-
enumDescriptions?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2097
|
-
};
|
2098
2098
|
export declare type IPreferences = {
|
2099
2099
|
__typename?: 'Preferences';
|
2100
2100
|
account?: Maybe<IPreference_Account>;
|
@@ -2137,25 +2137,6 @@ export declare type IPreferencesType = {
|
|
2137
2137
|
type?: Maybe<Scalars['String']>;
|
2138
2138
|
data?: Maybe<Array<Maybe<IContributionSettings>>>;
|
2139
2139
|
};
|
2140
|
-
export declare type IProject_Input = {
|
2141
|
-
id?: Maybe<Scalars['String']>;
|
2142
|
-
_id?: Maybe<Scalars['String']>;
|
2143
|
-
name?: Maybe<Scalars['String']>;
|
2144
|
-
description?: Maybe<Scalars['String']>;
|
2145
|
-
path?: Maybe<Scalars['String']>;
|
2146
|
-
source?: Maybe<IProjectSource_Input>;
|
2147
|
-
problems?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2148
|
-
};
|
2149
|
-
export declare type IProject_Output = {
|
2150
|
-
__typename?: 'Project_Output';
|
2151
|
-
id?: Maybe<Scalars['String']>;
|
2152
|
-
name: Scalars['String'];
|
2153
|
-
clientId?: Maybe<Scalars['String']>;
|
2154
|
-
teams?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2155
|
-
status?: Maybe<Scalars['String']>;
|
2156
|
-
orgName?: Maybe<Scalars['String']>;
|
2157
|
-
integrationConfigurationId?: Maybe<Scalars['String']>;
|
2158
|
-
};
|
2159
2140
|
export declare type IProjectAddRequest = {
|
2160
2141
|
name: Scalars['String'];
|
2161
2142
|
clientId?: Maybe<Scalars['String']>;
|
@@ -2196,6 +2177,65 @@ export declare type IProjectParameters_Input = {
|
|
2196
2177
|
httpsUrl?: Maybe<Scalars['String']>;
|
2197
2178
|
isPrivate?: Maybe<Scalars['Boolean']>;
|
2198
2179
|
};
|
2180
|
+
export declare type IProjectSource = {
|
2181
|
+
__typename?: 'ProjectSource';
|
2182
|
+
location?: Maybe<Scalars['String']>;
|
2183
|
+
type?: Maybe<IProjectSourceType>;
|
2184
|
+
parameters?: Maybe<IProjectParameters>;
|
2185
|
+
providers?: Maybe<IProjectSourceProviders>;
|
2186
|
+
language?: Maybe<Scalars['String']>;
|
2187
|
+
};
|
2188
|
+
/** Various Source Providers for Projects Source. */
|
2189
|
+
export declare const enum IProjectSourceProviders {
|
2190
|
+
Github = "Github",
|
2191
|
+
Bitbucket = "Bitbucket",
|
2192
|
+
Gitlab = "Gitlab",
|
2193
|
+
Vsts = "Vsts",
|
2194
|
+
None = "None"
|
2195
|
+
}
|
2196
|
+
/** Various types of sources. */
|
2197
|
+
export declare const enum IProjectSourceType {
|
2198
|
+
Blank = "Blank",
|
2199
|
+
Zip = "Zip",
|
2200
|
+
Git = "Git"
|
2201
|
+
}
|
2202
|
+
export declare type IProjectSource_Input = {
|
2203
|
+
location?: Maybe<Scalars['String']>;
|
2204
|
+
type?: Maybe<IProjectSourceType>;
|
2205
|
+
parameters?: Maybe<IProjectParameters_Input>;
|
2206
|
+
providers?: Maybe<IProjectSourceProviders>;
|
2207
|
+
language?: Maybe<Scalars['String']>;
|
2208
|
+
};
|
2209
|
+
export declare const enum IProjectType {
|
2210
|
+
internal = "internal",
|
2211
|
+
others = "others",
|
2212
|
+
asana = "asana"
|
2213
|
+
}
|
2214
|
+
export declare type IProjectWhereInput = {
|
2215
|
+
id?: Maybe<Scalars['String']>;
|
2216
|
+
integrationConfigurationId?: Maybe<Scalars['String']>;
|
2217
|
+
name?: Maybe<Scalars['String']>;
|
2218
|
+
orgName?: Maybe<Scalars['String']>;
|
2219
|
+
};
|
2220
|
+
export declare type IProject_Input = {
|
2221
|
+
id?: Maybe<Scalars['String']>;
|
2222
|
+
_id?: Maybe<Scalars['String']>;
|
2223
|
+
name?: Maybe<Scalars['String']>;
|
2224
|
+
description?: Maybe<Scalars['String']>;
|
2225
|
+
path?: Maybe<Scalars['String']>;
|
2226
|
+
source?: Maybe<IProjectSource_Input>;
|
2227
|
+
problems?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2228
|
+
};
|
2229
|
+
export declare type IProject_Output = {
|
2230
|
+
__typename?: 'Project_Output';
|
2231
|
+
id?: Maybe<Scalars['String']>;
|
2232
|
+
name: Scalars['String'];
|
2233
|
+
clientId?: Maybe<Scalars['String']>;
|
2234
|
+
teams?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2235
|
+
status?: Maybe<Scalars['String']>;
|
2236
|
+
orgName?: Maybe<Scalars['String']>;
|
2237
|
+
integrationConfigurationId?: Maybe<Scalars['String']>;
|
2238
|
+
};
|
2199
2239
|
/**
|
2200
2240
|
* * Project can be any of the following:
|
2201
2241
|
* * i. Git Repository
|
@@ -2231,46 +2271,6 @@ export declare type IProjects = {
|
|
2231
2271
|
updatedAt?: Maybe<Scalars['DateTime']>;
|
2232
2272
|
createdAt?: Maybe<Scalars['DateTime']>;
|
2233
2273
|
};
|
2234
|
-
export declare type IProjectSource = {
|
2235
|
-
__typename?: 'ProjectSource';
|
2236
|
-
location?: Maybe<Scalars['String']>;
|
2237
|
-
type?: Maybe<IProjectSourceType>;
|
2238
|
-
parameters?: Maybe<IProjectParameters>;
|
2239
|
-
providers?: Maybe<IProjectSourceProviders>;
|
2240
|
-
language?: Maybe<Scalars['String']>;
|
2241
|
-
};
|
2242
|
-
export declare type IProjectSource_Input = {
|
2243
|
-
location?: Maybe<Scalars['String']>;
|
2244
|
-
type?: Maybe<IProjectSourceType>;
|
2245
|
-
parameters?: Maybe<IProjectParameters_Input>;
|
2246
|
-
providers?: Maybe<IProjectSourceProviders>;
|
2247
|
-
language?: Maybe<Scalars['String']>;
|
2248
|
-
};
|
2249
|
-
/** Various Source Providers for Projects Source. */
|
2250
|
-
export declare const enum IProjectSourceProviders {
|
2251
|
-
Github = "Github",
|
2252
|
-
Bitbucket = "Bitbucket",
|
2253
|
-
Gitlab = "Gitlab",
|
2254
|
-
Vsts = "Vsts",
|
2255
|
-
None = "None"
|
2256
|
-
}
|
2257
|
-
/** Various types of sources. */
|
2258
|
-
export declare const enum IProjectSourceType {
|
2259
|
-
Blank = "Blank",
|
2260
|
-
Zip = "Zip",
|
2261
|
-
Git = "Git"
|
2262
|
-
}
|
2263
|
-
export declare const enum IProjectType {
|
2264
|
-
internal = "internal",
|
2265
|
-
others = "others",
|
2266
|
-
asana = "asana"
|
2267
|
-
}
|
2268
|
-
export declare type IProjectWhereInput = {
|
2269
|
-
id?: Maybe<Scalars['String']>;
|
2270
|
-
integrationConfigurationId?: Maybe<Scalars['String']>;
|
2271
|
-
name?: Maybe<Scalars['String']>;
|
2272
|
-
orgName?: Maybe<Scalars['String']>;
|
2273
|
-
};
|
2274
2274
|
export declare type IQuery = {
|
2275
2275
|
__typename?: 'Query';
|
2276
2276
|
GetSshKey?: Maybe<ISshKey>;
|
@@ -2616,9 +2616,21 @@ export declare const enum IRouteParams {
|
|
2616
2616
|
orgName = "orgName",
|
2617
2617
|
teamName = "teamName"
|
2618
2618
|
}
|
2619
|
-
|
2620
|
-
|
2621
|
-
|
2619
|
+
export declare const enum ISettingValueType {
|
2620
|
+
Null = "Null",
|
2621
|
+
Enum = "Enum",
|
2622
|
+
String = "String",
|
2623
|
+
Integer = "Integer",
|
2624
|
+
Number = "Number",
|
2625
|
+
Boolean = "Boolean",
|
2626
|
+
Exclude = "Exclude",
|
2627
|
+
Complex = "Complex",
|
2628
|
+
NullableInteger = "NullableInteger",
|
2629
|
+
NullableNumber = "NullableNumber"
|
2630
|
+
}
|
2631
|
+
/** Settings is a version of a configuration settings file. */
|
2632
|
+
export declare type ISettings = {
|
2633
|
+
__typename?: 'Settings';
|
2622
2634
|
/** The time when this was created. */
|
2623
2635
|
createdAt?: Maybe<Scalars['String']>;
|
2624
2636
|
/**
|
@@ -2660,18 +2672,6 @@ export declare type ISettingsSection = {
|
|
2660
2672
|
settings?: Maybe<Array<Maybe<IContributionSettings>>>;
|
2661
2673
|
};
|
2662
2674
|
export declare type ISettingsSubject = IUserSettings | IApplicationSettings | IMachineSettings | IOrganizationResourceSettings | IGlobalSettings | IOrganizationSettings | IMemorySettings | IDefaultSettings;
|
2663
|
-
export declare const enum ISettingValueType {
|
2664
|
-
Null = "Null",
|
2665
|
-
Enum = "Enum",
|
2666
|
-
String = "String",
|
2667
|
-
Integer = "Integer",
|
2668
|
-
Number = "Number",
|
2669
|
-
Boolean = "Boolean",
|
2670
|
-
Exclude = "Exclude",
|
2671
|
-
Complex = "Complex",
|
2672
|
-
NullableInteger = "NullableInteger",
|
2673
|
-
NullableNumber = "NullableNumber"
|
2674
|
-
}
|
2675
2675
|
export declare type ISocialConnect = {
|
2676
2676
|
__typename?: 'SocialConnect';
|
2677
2677
|
facebook?: Maybe<Scalars['String']>;
|
@@ -2938,6 +2938,13 @@ export declare const enum ITokenTypesEnum {
|
|
2938
2938
|
EMAIL_VERIFICATION = "EMAIL_VERIFICATION",
|
2939
2939
|
PASSWORD_RESET = "PASSWORD_RESET"
|
2940
2940
|
}
|
2941
|
+
export declare type IUpdateProject_Input = {
|
2942
|
+
name: Scalars['String'];
|
2943
|
+
clientId?: Maybe<Scalars['String']>;
|
2944
|
+
teams?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2945
|
+
orgName?: Maybe<Scalars['String']>;
|
2946
|
+
integrationConfigurationId?: Maybe<Scalars['String']>;
|
2947
|
+
};
|
2941
2948
|
export declare type IUpdatedClient_Input = {
|
2942
2949
|
name?: Maybe<IName_Input>;
|
2943
2950
|
companyName?: Maybe<Scalars['String']>;
|
@@ -2951,13 +2958,6 @@ export declare type IUpdatedClient_Input = {
|
|
2951
2958
|
shippingAddress?: Maybe<IAddressType_Input>;
|
2952
2959
|
orgName?: Maybe<Scalars['String']>;
|
2953
2960
|
};
|
2954
|
-
export declare type IUpdateProject_Input = {
|
2955
|
-
name: Scalars['String'];
|
2956
|
-
clientId?: Maybe<Scalars['String']>;
|
2957
|
-
teams?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2958
|
-
orgName?: Maybe<Scalars['String']>;
|
2959
|
-
integrationConfigurationId?: Maybe<Scalars['String']>;
|
2960
|
-
};
|
2961
2961
|
export declare type IUserAccount = INode & {
|
2962
2962
|
__typename?: 'UserAccount';
|
2963
2963
|
id: Scalars['ID'];
|
@@ -2972,11 +2972,19 @@ export declare type IUserAccount = INode & {
|
|
2972
2972
|
phoneNumber?: Maybe<Array<IPhoneNumber>>;
|
2973
2973
|
tokens?: Maybe<Array<Maybe<IUserToken>>>;
|
2974
2974
|
};
|
2975
|
-
export declare type
|
2976
|
-
|
2977
|
-
|
2975
|
+
export declare type IUserAccountCreateRequest = {
|
2976
|
+
email: Scalars['String'];
|
2977
|
+
username: Scalars['String'];
|
2978
2978
|
alias?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2979
|
-
|
2979
|
+
emailVerified?: Maybe<Scalars['Boolean']>;
|
2980
|
+
notificationEmail?: Maybe<Scalars['String']>;
|
2981
|
+
familyName?: Maybe<Scalars['String']>;
|
2982
|
+
givenName?: Maybe<Scalars['String']>;
|
2983
|
+
picture?: Maybe<Scalars['String']>;
|
2984
|
+
workEmail?: Maybe<Scalars['String']>;
|
2985
|
+
country?: Maybe<Scalars['String']>;
|
2986
|
+
companyName?: Maybe<Scalars['String']>;
|
2987
|
+
phoneNumber?: Maybe<Scalars['String']>;
|
2980
2988
|
tokens?: Maybe<Array<Maybe<IUserTokenInput>>>;
|
2981
2989
|
};
|
2982
2990
|
export declare type IUserAccountCreatedDetailedEvent = {
|
@@ -2994,20 +3002,8 @@ export declare type IUserAccountCreatedEvent = {
|
|
2994
3002
|
createdUser?: Maybe<IUserAccountCreatedDetailedEvent>;
|
2995
3003
|
sourceUser?: Maybe<IUserProfile>;
|
2996
3004
|
};
|
2997
|
-
export declare type
|
2998
|
-
|
2999
|
-
username: Scalars['String'];
|
3000
|
-
alias?: Maybe<Array<Maybe<Scalars['String']>>>;
|
3001
|
-
emailVerified?: Maybe<Scalars['Boolean']>;
|
3002
|
-
notificationEmail?: Maybe<Scalars['String']>;
|
3003
|
-
familyName?: Maybe<Scalars['String']>;
|
3004
|
-
givenName?: Maybe<Scalars['String']>;
|
3005
|
-
picture?: Maybe<Scalars['String']>;
|
3006
|
-
workEmail?: Maybe<Scalars['String']>;
|
3007
|
-
country?: Maybe<Scalars['String']>;
|
3008
|
-
companyName?: Maybe<Scalars['String']>;
|
3009
|
-
phoneNumber?: Maybe<Scalars['String']>;
|
3010
|
-
tokens?: Maybe<Array<Maybe<IUserTokenInput>>>;
|
3005
|
+
export declare type IUserAccountRemoveRequest = {
|
3006
|
+
id?: Maybe<Scalars['String']>;
|
3011
3007
|
};
|
3012
3008
|
export declare type IUserAccountRemovedEvent = {
|
3013
3009
|
__typename?: 'UserAccountRemovedEvent';
|
@@ -3016,9 +3012,6 @@ export declare type IUserAccountRemovedEvent = {
|
|
3016
3012
|
username: Scalars['String'];
|
3017
3013
|
notificationEmail?: Maybe<Scalars['String']>;
|
3018
3014
|
};
|
3019
|
-
export declare type IUserAccountRemoveRequest = {
|
3020
|
-
id?: Maybe<Scalars['String']>;
|
3021
|
-
};
|
3022
3015
|
export declare type IUserAccountUpdateRequest = {
|
3023
3016
|
id: Scalars['String'];
|
3024
3017
|
payload?: Maybe<IUserAccount_Input>;
|
@@ -3029,6 +3022,13 @@ export declare type IUserAccountWhere = {
|
|
3029
3022
|
alias?: Maybe<Array<Maybe<Scalars['String']>>>;
|
3030
3023
|
username?: Maybe<Scalars['String']>;
|
3031
3024
|
};
|
3025
|
+
export declare type IUserAccount_Input = {
|
3026
|
+
id?: Maybe<Scalars['String']>;
|
3027
|
+
email?: Maybe<Scalars['String']>;
|
3028
|
+
alias?: Maybe<Array<Maybe<Scalars['String']>>>;
|
3029
|
+
username?: Maybe<Scalars['String']>;
|
3030
|
+
tokens?: Maybe<Array<Maybe<IUserTokenInput>>>;
|
3031
|
+
};
|
3032
3032
|
export declare type IUserAuth0UpdateFields = {
|
3033
3033
|
family_name?: Maybe<Scalars['String']>;
|
3034
3034
|
given_name?: Maybe<Scalars['String']>;
|
@@ -3123,7 +3123,6 @@ export declare type IUserOrg_Input = {
|
|
3123
3123
|
inactive?: Maybe<Scalars['Boolean']>;
|
3124
3124
|
};
|
3125
3125
|
export declare type IUserPasswordResetInput = {
|
3126
|
-
userId: Scalars['String'];
|
3127
3126
|
password: Scalars['String'];
|
3128
3127
|
token: Scalars['String'];
|
3129
3128
|
};
|
@@ -3454,7 +3453,7 @@ export declare type IResetUserPasswordMutation = ({
|
|
3454
3453
|
__typename?: 'Mutation';
|
3455
3454
|
} & Pick<IMutation, 'resetUserPassword'>);
|
3456
3455
|
export declare type ISendUserPasswordResetEmailMutationVariables = Exact<{
|
3457
|
-
|
3456
|
+
email: Scalars['String'];
|
3458
3457
|
}>;
|
3459
3458
|
export declare type ISendUserPasswordResetEmailMutation = ({
|
3460
3459
|
__typename?: 'Mutation';
|
@@ -4132,79 +4131,79 @@ export declare type IDefaultSettingFragment = ({
|
|
4132
4131
|
export declare type IOverWriteRoleValueFragment = ({
|
4133
4132
|
__typename?: 'ContributionSettings';
|
4134
4133
|
} & Pick<IContributionSettings, 'key' | 'value'>);
|
4135
|
-
declare type
|
4136
|
-
__typename: '
|
4137
|
-
} & Pick<
|
4134
|
+
declare type IConfiguration_ApplicationPolicy_Fragment = ({
|
4135
|
+
__typename: 'ApplicationPolicy';
|
4136
|
+
} & Pick<IApplicationPolicy, 'resource' | 'target' | 'contents' | 'keys'> & {
|
4138
4137
|
overrides?: Maybe<Array<Maybe<({
|
4139
4138
|
__typename?: 'Overrides';
|
4140
4139
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
4141
4140
|
});
|
4142
|
-
declare type
|
4143
|
-
__typename: '
|
4144
|
-
} & Pick<
|
4141
|
+
declare type IConfiguration_ApplicationRolePermission_Fragment = ({
|
4142
|
+
__typename: 'ApplicationRolePermission';
|
4143
|
+
} & Pick<IApplicationRolePermission, 'resource' | 'target' | 'contents' | 'keys'> & {
|
4145
4144
|
overrides?: Maybe<Array<Maybe<({
|
4146
4145
|
__typename?: 'Overrides';
|
4147
4146
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
4148
4147
|
});
|
4149
|
-
declare type
|
4150
|
-
__typename: '
|
4151
|
-
} & Pick<
|
4148
|
+
declare type IConfiguration_DefaultConfiguration_Fragment = ({
|
4149
|
+
__typename: 'DefaultConfiguration';
|
4150
|
+
} & Pick<IDefaultConfiguration, 'resource' | 'target' | 'contents' | 'keys'> & {
|
4152
4151
|
overrides?: Maybe<Array<Maybe<({
|
4153
4152
|
__typename?: 'Overrides';
|
4154
4153
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
4155
4154
|
});
|
4156
|
-
declare type
|
4157
|
-
__typename: '
|
4158
|
-
} & Pick<
|
4155
|
+
declare type IConfiguration_DefaultPolicy_Fragment = ({
|
4156
|
+
__typename: 'DefaultPolicy';
|
4157
|
+
} & Pick<IDefaultPolicy, 'resource' | 'target' | 'contents' | 'keys'> & {
|
4159
4158
|
overrides?: Maybe<Array<Maybe<({
|
4160
4159
|
__typename?: 'Overrides';
|
4161
4160
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
4162
4161
|
});
|
4163
|
-
declare type
|
4164
|
-
__typename: '
|
4165
|
-
} & Pick<
|
4162
|
+
declare type IConfiguration_DefaultRole_Fragment = ({
|
4163
|
+
__typename: 'DefaultRole';
|
4164
|
+
} & Pick<IDefaultRole, 'resource' | 'target' | 'contents' | 'keys'> & {
|
4166
4165
|
overrides?: Maybe<Array<Maybe<({
|
4167
4166
|
__typename?: 'Overrides';
|
4168
4167
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
4169
4168
|
});
|
4170
|
-
declare type
|
4171
|
-
__typename: '
|
4172
|
-
} & Pick<
|
4169
|
+
declare type IConfiguration_MachineConfiguration_Fragment = ({
|
4170
|
+
__typename: 'MachineConfiguration';
|
4171
|
+
} & Pick<IMachineConfiguration, 'resource' | 'target' | 'contents' | 'keys'> & {
|
4173
4172
|
overrides?: Maybe<Array<Maybe<({
|
4174
4173
|
__typename?: 'Overrides';
|
4175
4174
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
4176
4175
|
});
|
4177
|
-
declare type
|
4178
|
-
__typename: '
|
4179
|
-
} & Pick<
|
4176
|
+
declare type IConfiguration_OrganizationConfiguration_Fragment = ({
|
4177
|
+
__typename: 'OrganizationConfiguration';
|
4178
|
+
} & Pick<IOrganizationConfiguration, 'resource' | 'target' | 'contents' | 'keys'> & {
|
4180
4179
|
overrides?: Maybe<Array<Maybe<({
|
4181
4180
|
__typename?: 'Overrides';
|
4182
4181
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
4183
4182
|
});
|
4184
|
-
declare type
|
4185
|
-
__typename: '
|
4186
|
-
} & Pick<
|
4183
|
+
declare type IConfiguration_OrganizationPolicy_Fragment = ({
|
4184
|
+
__typename: 'OrganizationPolicy';
|
4185
|
+
} & Pick<IOrganizationPolicy, 'resource' | 'target' | 'contents' | 'keys'> & {
|
4187
4186
|
overrides?: Maybe<Array<Maybe<({
|
4188
4187
|
__typename?: 'Overrides';
|
4189
4188
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
4190
4189
|
});
|
4191
|
-
declare type
|
4192
|
-
__typename: '
|
4193
|
-
} & Pick<
|
4190
|
+
declare type IConfiguration_OrganizationResourceConfiguration_Fragment = ({
|
4191
|
+
__typename: 'OrganizationResourceConfiguration';
|
4192
|
+
} & Pick<IOrganizationResourceConfiguration, 'resource' | 'target' | 'contents' | 'keys'> & {
|
4194
4193
|
overrides?: Maybe<Array<Maybe<({
|
4195
4194
|
__typename?: 'Overrides';
|
4196
4195
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
4197
4196
|
});
|
4198
|
-
declare type
|
4199
|
-
__typename: '
|
4200
|
-
} & Pick<
|
4197
|
+
declare type IConfiguration_OrganizationRole_Fragment = ({
|
4198
|
+
__typename: 'OrganizationRole';
|
4199
|
+
} & Pick<IOrganizationRole, 'resource' | 'target' | 'contents' | 'keys'> & {
|
4201
4200
|
overrides?: Maybe<Array<Maybe<({
|
4202
4201
|
__typename?: 'Overrides';
|
4203
4202
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
4204
4203
|
});
|
4205
|
-
declare type
|
4206
|
-
__typename: '
|
4207
|
-
} & Pick<
|
4204
|
+
declare type IConfiguration_ResourcePolicy_Fragment = ({
|
4205
|
+
__typename: 'ResourcePolicy';
|
4206
|
+
} & Pick<IResourcePolicy, 'resource' | 'target' | 'contents' | 'keys'> & {
|
4208
4207
|
overrides?: Maybe<Array<Maybe<({
|
4209
4208
|
__typename?: 'Overrides';
|
4210
4209
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
@@ -4216,14 +4215,14 @@ declare type IConfiguration_ResourceRole_Fragment = ({
|
|
4216
4215
|
__typename?: 'Overrides';
|
4217
4216
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
4218
4217
|
});
|
4219
|
-
declare type
|
4220
|
-
__typename: '
|
4221
|
-
} & Pick<
|
4218
|
+
declare type IConfiguration_UserConfiguration_Fragment = ({
|
4219
|
+
__typename: 'UserConfiguration';
|
4220
|
+
} & Pick<IUserConfiguration, 'resource' | 'target' | 'contents' | 'keys'> & {
|
4222
4221
|
overrides?: Maybe<Array<Maybe<({
|
4223
4222
|
__typename?: 'Overrides';
|
4224
4223
|
} & Pick<IOverrides, 'contents' | 'identifiers'>)>>>;
|
4225
4224
|
});
|
4226
|
-
export declare type IConfigurationFragment =
|
4225
|
+
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;
|
4227
4226
|
export declare type IContextConfigurationFragment = ({
|
4228
4227
|
__typename?: 'OrganizationData';
|
4229
4228
|
} & Pick<IOrganizationData, 'id' | 'name' | 'configuration'> & {
|
@@ -4248,13 +4247,13 @@ export declare type IOrgContextFragment = ({
|
|
4248
4247
|
export declare type IOrganizationUserFragment = ({
|
4249
4248
|
__typename?: 'OrgUser';
|
4250
4249
|
} & Pick<IOrgUser, 'role' | 'orgName' | 'isSelf'>);
|
4251
|
-
declare type IResourceData_OrganizationResourceData_Fragment = ({
|
4252
|
-
__typename?: 'OrganizationResourceData';
|
4253
|
-
} & Pick<IOrganizationResourceData, 'uri' | 'name' | 'index'>);
|
4254
4250
|
declare type IResourceData_ExternalResourceData_Fragment = ({
|
4255
4251
|
__typename?: 'ExternalResourceData';
|
4256
4252
|
} & Pick<IExternalResourceData, 'uri' | 'name' | 'index'>);
|
4257
|
-
|
4253
|
+
declare type IResourceData_OrganizationResourceData_Fragment = ({
|
4254
|
+
__typename?: 'OrganizationResourceData';
|
4255
|
+
} & Pick<IOrganizationResourceData, 'uri' | 'name' | 'index'>);
|
4256
|
+
export declare type IResourceDataFragment = IResourceData_ExternalResourceData_Fragment | IResourceData_OrganizationResourceData_Fragment;
|
4258
4257
|
export declare type IResourceUserRoleFragment = ({
|
4259
4258
|
__typename?: 'ResourceUser';
|
4260
4259
|
} & Pick<IResourceUser, 'role' | 'name' | 'isSelf' | 'orgName'>);
|
@@ -4955,140 +4954,140 @@ export declare type IgetConfigurationDataQuery = ({
|
|
4955
4954
|
__typename?: 'ConfigurationData';
|
4956
4955
|
} & Pick<IConfigurationData, 'isComplete'> & {
|
4957
4956
|
defaults?: Maybe<({
|
4957
|
+
__typename?: 'ApplicationPolicy';
|
4958
|
+
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
4959
|
+
__typename?: 'ApplicationRolePermission';
|
4960
|
+
} & IConfiguration_ApplicationRolePermission_Fragment) | ({
|
4958
4961
|
__typename?: 'DefaultConfiguration';
|
4959
4962
|
} & IConfiguration_DefaultConfiguration_Fragment) | ({
|
4963
|
+
__typename?: 'DefaultPolicy';
|
4964
|
+
} & IConfiguration_DefaultPolicy_Fragment) | ({
|
4965
|
+
__typename?: 'DefaultRole';
|
4966
|
+
} & IConfiguration_DefaultRole_Fragment) | ({
|
4960
4967
|
__typename?: 'MachineConfiguration';
|
4961
4968
|
} & IConfiguration_MachineConfiguration_Fragment) | ({
|
4962
|
-
__typename?: 'UserConfiguration';
|
4963
|
-
} & IConfiguration_UserConfiguration_Fragment) | ({
|
4964
4969
|
__typename?: 'OrganizationConfiguration';
|
4965
4970
|
} & IConfiguration_OrganizationConfiguration_Fragment) | ({
|
4966
|
-
__typename?: 'OrganizationResourceConfiguration';
|
4967
|
-
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
4968
|
-
__typename?: 'DefaultPolicy';
|
4969
|
-
} & IConfiguration_DefaultPolicy_Fragment) | ({
|
4970
4971
|
__typename?: 'OrganizationPolicy';
|
4971
4972
|
} & IConfiguration_OrganizationPolicy_Fragment) | ({
|
4972
|
-
__typename?: '
|
4973
|
-
} &
|
4974
|
-
__typename?: 'ApplicationPolicy';
|
4975
|
-
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
4976
|
-
__typename?: 'DefaultRole';
|
4977
|
-
} & IConfiguration_DefaultRole_Fragment) | ({
|
4973
|
+
__typename?: 'OrganizationResourceConfiguration';
|
4974
|
+
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
4978
4975
|
__typename?: 'OrganizationRole';
|
4979
4976
|
} & IConfiguration_OrganizationRole_Fragment) | ({
|
4977
|
+
__typename?: 'ResourcePolicy';
|
4978
|
+
} & IConfiguration_ResourcePolicy_Fragment) | ({
|
4980
4979
|
__typename?: 'ResourceRole';
|
4981
4980
|
} & IConfiguration_ResourceRole_Fragment) | ({
|
4982
|
-
__typename?: '
|
4983
|
-
} &
|
4981
|
+
__typename?: 'UserConfiguration';
|
4982
|
+
} & IConfiguration_UserConfiguration_Fragment)>;
|
4984
4983
|
user?: Maybe<({
|
4984
|
+
__typename?: 'ApplicationPolicy';
|
4985
|
+
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
4986
|
+
__typename?: 'ApplicationRolePermission';
|
4987
|
+
} & IConfiguration_ApplicationRolePermission_Fragment) | ({
|
4985
4988
|
__typename?: 'DefaultConfiguration';
|
4986
4989
|
} & IConfiguration_DefaultConfiguration_Fragment) | ({
|
4990
|
+
__typename?: 'DefaultPolicy';
|
4991
|
+
} & IConfiguration_DefaultPolicy_Fragment) | ({
|
4992
|
+
__typename?: 'DefaultRole';
|
4993
|
+
} & IConfiguration_DefaultRole_Fragment) | ({
|
4987
4994
|
__typename?: 'MachineConfiguration';
|
4988
4995
|
} & IConfiguration_MachineConfiguration_Fragment) | ({
|
4989
|
-
__typename?: 'UserConfiguration';
|
4990
|
-
} & IConfiguration_UserConfiguration_Fragment) | ({
|
4991
4996
|
__typename?: 'OrganizationConfiguration';
|
4992
4997
|
} & IConfiguration_OrganizationConfiguration_Fragment) | ({
|
4993
|
-
__typename?: 'OrganizationResourceConfiguration';
|
4994
|
-
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
4995
|
-
__typename?: 'DefaultPolicy';
|
4996
|
-
} & IConfiguration_DefaultPolicy_Fragment) | ({
|
4997
4998
|
__typename?: 'OrganizationPolicy';
|
4998
4999
|
} & IConfiguration_OrganizationPolicy_Fragment) | ({
|
4999
|
-
__typename?: '
|
5000
|
-
} &
|
5001
|
-
__typename?: 'ApplicationPolicy';
|
5002
|
-
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
5003
|
-
__typename?: 'DefaultRole';
|
5004
|
-
} & IConfiguration_DefaultRole_Fragment) | ({
|
5000
|
+
__typename?: 'OrganizationResourceConfiguration';
|
5001
|
+
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
5005
5002
|
__typename?: 'OrganizationRole';
|
5006
5003
|
} & IConfiguration_OrganizationRole_Fragment) | ({
|
5004
|
+
__typename?: 'ResourcePolicy';
|
5005
|
+
} & IConfiguration_ResourcePolicy_Fragment) | ({
|
5007
5006
|
__typename?: 'ResourceRole';
|
5008
5007
|
} & IConfiguration_ResourceRole_Fragment) | ({
|
5009
|
-
__typename?: '
|
5010
|
-
} &
|
5008
|
+
__typename?: 'UserConfiguration';
|
5009
|
+
} & IConfiguration_UserConfiguration_Fragment)>;
|
5011
5010
|
machine?: Maybe<({
|
5011
|
+
__typename?: 'ApplicationPolicy';
|
5012
|
+
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
5013
|
+
__typename?: 'ApplicationRolePermission';
|
5014
|
+
} & IConfiguration_ApplicationRolePermission_Fragment) | ({
|
5012
5015
|
__typename?: 'DefaultConfiguration';
|
5013
5016
|
} & IConfiguration_DefaultConfiguration_Fragment) | ({
|
5017
|
+
__typename?: 'DefaultPolicy';
|
5018
|
+
} & IConfiguration_DefaultPolicy_Fragment) | ({
|
5019
|
+
__typename?: 'DefaultRole';
|
5020
|
+
} & IConfiguration_DefaultRole_Fragment) | ({
|
5014
5021
|
__typename?: 'MachineConfiguration';
|
5015
5022
|
} & IConfiguration_MachineConfiguration_Fragment) | ({
|
5016
|
-
__typename?: 'UserConfiguration';
|
5017
|
-
} & IConfiguration_UserConfiguration_Fragment) | ({
|
5018
5023
|
__typename?: 'OrganizationConfiguration';
|
5019
5024
|
} & IConfiguration_OrganizationConfiguration_Fragment) | ({
|
5020
|
-
__typename?: 'OrganizationResourceConfiguration';
|
5021
|
-
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
5022
|
-
__typename?: 'DefaultPolicy';
|
5023
|
-
} & IConfiguration_DefaultPolicy_Fragment) | ({
|
5024
5025
|
__typename?: 'OrganizationPolicy';
|
5025
5026
|
} & IConfiguration_OrganizationPolicy_Fragment) | ({
|
5026
|
-
__typename?: '
|
5027
|
-
} &
|
5028
|
-
__typename?: 'ApplicationPolicy';
|
5029
|
-
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
5030
|
-
__typename?: 'DefaultRole';
|
5031
|
-
} & IConfiguration_DefaultRole_Fragment) | ({
|
5027
|
+
__typename?: 'OrganizationResourceConfiguration';
|
5028
|
+
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
5032
5029
|
__typename?: 'OrganizationRole';
|
5033
5030
|
} & IConfiguration_OrganizationRole_Fragment) | ({
|
5031
|
+
__typename?: 'ResourcePolicy';
|
5032
|
+
} & IConfiguration_ResourcePolicy_Fragment) | ({
|
5034
5033
|
__typename?: 'ResourceRole';
|
5035
5034
|
} & IConfiguration_ResourceRole_Fragment) | ({
|
5036
|
-
__typename?: '
|
5037
|
-
} &
|
5035
|
+
__typename?: 'UserConfiguration';
|
5036
|
+
} & IConfiguration_UserConfiguration_Fragment)>;
|
5038
5037
|
organization?: Maybe<({
|
5038
|
+
__typename?: 'ApplicationPolicy';
|
5039
|
+
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
5040
|
+
__typename?: 'ApplicationRolePermission';
|
5041
|
+
} & IConfiguration_ApplicationRolePermission_Fragment) | ({
|
5039
5042
|
__typename?: 'DefaultConfiguration';
|
5040
5043
|
} & IConfiguration_DefaultConfiguration_Fragment) | ({
|
5044
|
+
__typename?: 'DefaultPolicy';
|
5045
|
+
} & IConfiguration_DefaultPolicy_Fragment) | ({
|
5046
|
+
__typename?: 'DefaultRole';
|
5047
|
+
} & IConfiguration_DefaultRole_Fragment) | ({
|
5041
5048
|
__typename?: 'MachineConfiguration';
|
5042
5049
|
} & IConfiguration_MachineConfiguration_Fragment) | ({
|
5043
|
-
__typename?: 'UserConfiguration';
|
5044
|
-
} & IConfiguration_UserConfiguration_Fragment) | ({
|
5045
5050
|
__typename?: 'OrganizationConfiguration';
|
5046
5051
|
} & IConfiguration_OrganizationConfiguration_Fragment) | ({
|
5047
|
-
__typename?: 'OrganizationResourceConfiguration';
|
5048
|
-
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
5049
|
-
__typename?: 'DefaultPolicy';
|
5050
|
-
} & IConfiguration_DefaultPolicy_Fragment) | ({
|
5051
5052
|
__typename?: 'OrganizationPolicy';
|
5052
5053
|
} & IConfiguration_OrganizationPolicy_Fragment) | ({
|
5054
|
+
__typename?: 'OrganizationResourceConfiguration';
|
5055
|
+
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
5056
|
+
__typename?: 'OrganizationRole';
|
5057
|
+
} & IConfiguration_OrganizationRole_Fragment) | ({
|
5053
5058
|
__typename?: 'ResourcePolicy';
|
5054
5059
|
} & IConfiguration_ResourcePolicy_Fragment) | ({
|
5060
|
+
__typename?: 'ResourceRole';
|
5061
|
+
} & IConfiguration_ResourceRole_Fragment) | ({
|
5062
|
+
__typename?: 'UserConfiguration';
|
5063
|
+
} & IConfiguration_UserConfiguration_Fragment)>;
|
5064
|
+
resources?: Maybe<Array<Maybe<({
|
5055
5065
|
__typename?: 'ApplicationPolicy';
|
5056
5066
|
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
5057
|
-
__typename?: 'DefaultRole';
|
5058
|
-
} & IConfiguration_DefaultRole_Fragment) | ({
|
5059
|
-
__typename?: 'OrganizationRole';
|
5060
|
-
} & IConfiguration_OrganizationRole_Fragment) | ({
|
5061
|
-
__typename?: 'ResourceRole';
|
5062
|
-
} & IConfiguration_ResourceRole_Fragment) | ({
|
5063
5067
|
__typename?: 'ApplicationRolePermission';
|
5064
|
-
} & IConfiguration_ApplicationRolePermission_Fragment)
|
5065
|
-
resources?: Maybe<Array<Maybe<({
|
5068
|
+
} & IConfiguration_ApplicationRolePermission_Fragment) | ({
|
5066
5069
|
__typename?: 'DefaultConfiguration';
|
5067
5070
|
} & IConfiguration_DefaultConfiguration_Fragment) | ({
|
5071
|
+
__typename?: 'DefaultPolicy';
|
5072
|
+
} & IConfiguration_DefaultPolicy_Fragment) | ({
|
5073
|
+
__typename?: 'DefaultRole';
|
5074
|
+
} & IConfiguration_DefaultRole_Fragment) | ({
|
5068
5075
|
__typename?: 'MachineConfiguration';
|
5069
5076
|
} & IConfiguration_MachineConfiguration_Fragment) | ({
|
5070
|
-
__typename?: 'UserConfiguration';
|
5071
|
-
} & IConfiguration_UserConfiguration_Fragment) | ({
|
5072
5077
|
__typename?: 'OrganizationConfiguration';
|
5073
5078
|
} & IConfiguration_OrganizationConfiguration_Fragment) | ({
|
5074
|
-
__typename?: 'OrganizationResourceConfiguration';
|
5075
|
-
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
5076
|
-
__typename?: 'DefaultPolicy';
|
5077
|
-
} & IConfiguration_DefaultPolicy_Fragment) | ({
|
5078
5079
|
__typename?: 'OrganizationPolicy';
|
5079
5080
|
} & IConfiguration_OrganizationPolicy_Fragment) | ({
|
5080
|
-
__typename?: '
|
5081
|
-
} &
|
5082
|
-
__typename?: 'ApplicationPolicy';
|
5083
|
-
} & IConfiguration_ApplicationPolicy_Fragment) | ({
|
5084
|
-
__typename?: 'DefaultRole';
|
5085
|
-
} & IConfiguration_DefaultRole_Fragment) | ({
|
5081
|
+
__typename?: 'OrganizationResourceConfiguration';
|
5082
|
+
} & IConfiguration_OrganizationResourceConfiguration_Fragment) | ({
|
5086
5083
|
__typename?: 'OrganizationRole';
|
5087
5084
|
} & IConfiguration_OrganizationRole_Fragment) | ({
|
5085
|
+
__typename?: 'ResourcePolicy';
|
5086
|
+
} & IConfiguration_ResourcePolicy_Fragment) | ({
|
5088
5087
|
__typename?: 'ResourceRole';
|
5089
5088
|
} & IConfiguration_ResourceRole_Fragment) | ({
|
5090
|
-
__typename?: '
|
5091
|
-
} &
|
5089
|
+
__typename?: 'UserConfiguration';
|
5090
|
+
} & IConfiguration_UserConfiguration_Fragment)>>>;
|
5092
5091
|
})>;
|
5093
5092
|
});
|
5094
5093
|
export declare type IOrganizationResourceContextQueryVariables = Exact<{
|
@@ -5743,12 +5742,12 @@ export declare const SendUserPasswordResetEmailDocument: DocumentNode;
|
|
5743
5742
|
* @example
|
5744
5743
|
* const [sendUserPasswordResetEmailMutation, { data, loading, error }] = useSendUserPasswordResetEmailMutation({
|
5745
5744
|
* variables: {
|
5746
|
-
*
|
5745
|
+
* email: // value for 'email'
|
5747
5746
|
* },
|
5748
5747
|
* });
|
5749
5748
|
*/
|
5750
5749
|
export declare function useSendUserPasswordResetEmailMutation(baseOptions?: Apollo.MutationHookOptions<ISendUserPasswordResetEmailMutation, ISendUserPasswordResetEmailMutationVariables>): Apollo.MutationTuple<ISendUserPasswordResetEmailMutation, Exact<{
|
5751
|
-
|
5750
|
+
email: string;
|
5752
5751
|
}>>;
|
5753
5752
|
export declare type SendUserPasswordResetEmailMutationHookResult = ReturnType<typeof useSendUserPasswordResetEmailMutation>;
|
5754
5753
|
export declare type SendUserPasswordResetEmailMutationResult = Apollo.MutationResult<ISendUserPasswordResetEmailMutation>;
|
@@ -8643,591 +8642,591 @@ export declare type NextResolverFn<T> = () => Promise<T>;
|
|
8643
8642
|
export declare type DirectiveResolverFn<TResult = {}, TParent = {}, TContext = {}, TArgs = {}> = (next: NextResolverFn<TResult>, parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => TResult | Promise<TResult>;
|
8644
8643
|
/** Mapping between all available schema types and the resolvers types */
|
8645
8644
|
export declare type IResolversTypes = {
|
8646
|
-
|
8647
|
-
|
8648
|
-
|
8645
|
+
AccessRole: IResolversTypes['DefaultRole'] | IResolversTypes['OrganizationRole'] | IResolversTypes['ResourceRole'] | IResolversTypes['ApplicationRolePermission'];
|
8646
|
+
AccountBroadcasterActions: IAccountBroadcasterActions;
|
8647
|
+
AccountService: ResolverTypeWrapper<IAccountService>;
|
8649
8648
|
String: ResolverTypeWrapper<Scalars['String']>;
|
8650
|
-
|
8649
|
+
Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
|
8650
|
+
AccountServiceAction: IAccountServiceAction;
|
8651
|
+
AccountTeam: ResolverTypeWrapper<IAccountTeam>;
|
8652
|
+
ID: ResolverTypeWrapper<Scalars['ID']>;
|
8653
|
+
AccountTeam_Input: IAccountTeam_Input;
|
8654
|
+
ActivityCollectRequest: IActivityCollectRequest;
|
8651
8655
|
Int: ResolverTypeWrapper<Scalars['Int']>;
|
8652
|
-
|
8653
|
-
|
8654
|
-
|
8655
|
-
|
8656
|
-
|
8656
|
+
ActivityRecord: ResolverTypeWrapper<IActivityRecord>;
|
8657
|
+
ActivityRecordInput: IActivityRecordInput;
|
8658
|
+
ActivityServiceCommands: IActivityServiceCommands;
|
8659
|
+
AddressType: ResolverTypeWrapper<IAddressType>;
|
8660
|
+
AddressType_Input: IAddressType_Input;
|
8661
|
+
AdminIdeSettings: ResolverTypeWrapper<IAdminIdeSettings>;
|
8657
8662
|
AnyObject: ResolverTypeWrapper<Scalars['AnyObject']>;
|
8658
|
-
|
8659
|
-
|
8660
|
-
|
8661
|
-
|
8662
|
-
EditPresentationTypes: IEditPresentationTypes;
|
8663
|
-
PreferencesResponse: ResolverTypeWrapper<IPreferencesResponse>;
|
8664
|
-
PreferencesType: ResolverTypeWrapper<IPreferencesType>;
|
8665
|
-
DefaultSettings: ResolverTypeWrapper<IDefaultSettings>;
|
8666
|
-
ISettingsSubject: IResolversTypes['DefaultSettings'] | IResolversTypes['UserSettings'] | IResolversTypes['ApplicationSettings'] | IResolversTypes['MachineSettings'] | IResolversTypes['OrganizationResourceSettings'] | IResolversTypes['GlobalSettings'] | IResolversTypes['OrganizationSettings'] | IResolversTypes['MemorySettings'];
|
8667
|
-
Settings: ResolverTypeWrapper<ISettings>;
|
8668
|
-
URI: ResolverTypeWrapper<Scalars['URI']>;
|
8669
|
-
SettingsCascade: ResolverTypeWrapper<Omit<ISettingsCascade, 'subjects'> & {
|
8670
|
-
subjects?: Maybe<Array<Maybe<IResolversTypes['SettingsSubject']>>>;
|
8671
|
-
}>;
|
8672
|
-
SettingsSubject: IResolversTypes['UserSettings'] | IResolversTypes['ApplicationSettings'] | IResolversTypes['MachineSettings'] | IResolversTypes['OrganizationResourceSettings'] | IResolversTypes['GlobalSettings'] | IResolversTypes['OrganizationSettings'] | IResolversTypes['MemorySettings'] | IResolversTypes['DefaultSettings'];
|
8673
|
-
UserSettings: ResolverTypeWrapper<IUserSettings>;
|
8663
|
+
ApplicationBillingPlanPolicy: IApplicationBillingPlanPolicy;
|
8664
|
+
ApplicationPolicy: ResolverTypeWrapper<IApplicationPolicy>;
|
8665
|
+
ApplicationRolePermission: ResolverTypeWrapper<IApplicationRolePermission>;
|
8666
|
+
ApplicationRoles: IApplicationRoles;
|
8674
8667
|
ApplicationSettings: ResolverTypeWrapper<IApplicationSettings>;
|
8675
|
-
MachineSettings: ResolverTypeWrapper<IMachineSettings>;
|
8676
|
-
OrganizationResourceSettings: ResolverTypeWrapper<IOrganizationResourceSettings>;
|
8677
|
-
GlobalSettings: ResolverTypeWrapper<IGlobalSettings>;
|
8678
|
-
OrganizationSettings: ResolverTypeWrapper<IOrganizationSettings>;
|
8679
|
-
MemorySettings: ResolverTypeWrapper<IMemorySettings>;
|
8680
|
-
Preferences: ResolverTypeWrapper<IPreferences>;
|
8681
|
-
Preference_Account: ResolverTypeWrapper<IPreference_Account>;
|
8682
|
-
Preference_Default: ResolverTypeWrapper<IPreference_Default>;
|
8683
|
-
Preference_Notification: ResolverTypeWrapper<IPreference_Notification>;
|
8684
|
-
Preference_Global: ResolverTypeWrapper<IPreference_Global>;
|
8685
|
-
Preference_Global_User: ResolverTypeWrapper<IPreference_Global_User>;
|
8686
|
-
GlobalLanguages: IGlobalLanguages;
|
8687
|
-
GlobalCurrencies: IGlobalCurrencies;
|
8688
|
-
Preference_Organization: ResolverTypeWrapper<IPreference_Organization>;
|
8689
|
-
Preference_Teams: ResolverTypeWrapper<IPreference_Teams>;
|
8690
|
-
Visibility: IVisibility;
|
8691
|
-
Preference_Project: ResolverTypeWrapper<IPreference_Project>;
|
8692
|
-
UserProfile: ResolverTypeWrapper<IUserProfile>;
|
8693
|
-
IAuth0User: IResolversTypes['UserProfile'];
|
8694
|
-
IAuth0UserProfile: IResolversTypes['UserProfile'];
|
8695
|
-
IUserMetadata: IResolversTypes['UserMetadata'];
|
8696
|
-
Date: ResolverTypeWrapper<Scalars['Date']>;
|
8697
|
-
IAuth0Token: IResolversTypes['UserProfile'];
|
8698
|
-
Auth0Identity: ResolverTypeWrapper<IAuth0Identity>;
|
8699
|
-
Auth0IdentityProfileData: ResolverTypeWrapper<IAuth0IdentityProfileData>;
|
8700
|
-
UserMetadata: ResolverTypeWrapper<IUserMetadata>;
|
8701
|
-
UserDevice: ResolverTypeWrapper<IUserDevice>;
|
8702
|
-
IntegrationConfigurationFilterInput: IIntegrationConfigurationFilterInput;
|
8703
|
-
IntegrationConfiguration: ResolverTypeWrapper<IIntegrationConfiguration>;
|
8704
|
-
DateTime: ResolverTypeWrapper<Scalars['DateTime']>;
|
8705
|
-
JSON: ResolverTypeWrapper<Scalars['JSON']>;
|
8706
|
-
UserAccountWhere: IUserAccountWhere;
|
8707
|
-
UserAccount: ResolverTypeWrapper<IUserAccount>;
|
8708
|
-
Node: IResolversTypes['UserAccount'] | IResolversTypes['OrgUserAccunt'];
|
8709
|
-
PhoneNumber: ResolverTypeWrapper<IPhoneNumber>;
|
8710
|
-
UserToken: ResolverTypeWrapper<IUserToken>;
|
8711
|
-
TokenTypesEnum: ITokenTypesEnum;
|
8712
|
-
Country: ResolverTypeWrapper<ICountry>;
|
8713
8668
|
AsanaConnection: ResolverTypeWrapper<IAsanaConnection>;
|
8714
8669
|
AsanaConnectionState: ResolverTypeWrapper<IAsanaConnectionState>;
|
8715
|
-
AsanaUser: ResolverTypeWrapper<IAsanaUser>;
|
8716
8670
|
AsanaProjects: ResolverTypeWrapper<IAsanaProjects>;
|
8671
|
+
AsanaUser: ResolverTypeWrapper<IAsanaUser>;
|
8717
8672
|
AsanaWorkspaces: ResolverTypeWrapper<IAsanaWorkspaces>;
|
8718
|
-
|
8719
|
-
|
8673
|
+
Auth0Identity: ResolverTypeWrapper<IAuth0Identity>;
|
8674
|
+
Auth0IdentityProfileData: ResolverTypeWrapper<IAuth0IdentityProfileData>;
|
8675
|
+
AuthErrorCodes: IAuthErrorCodes;
|
8676
|
+
AuthUser: ResolverTypeWrapper<IAuthUser>;
|
8677
|
+
AuthUser_Input: IAuthUser_Input;
|
8678
|
+
CacheControlScope: ICacheControlScope;
|
8679
|
+
CityInput: ICityInput;
|
8680
|
+
CityUpdateInput: ICityUpdateInput;
|
8681
|
+
Client: ResolverTypeWrapper<IClient>;
|
8682
|
+
ClientAddRequest: IClientAddRequest;
|
8683
|
+
ClientCacheTypeNames: IClientCacheTypeNames;
|
8684
|
+
ClientContainerService: IClientContainerService;
|
8685
|
+
ClientCreatedEvent: ResolverTypeWrapper<IClientCreatedEvent>;
|
8686
|
+
ClientDeletedEvent: ResolverTypeWrapper<IClientDeletedEvent>;
|
8687
|
+
ClientPhone: ResolverTypeWrapper<IClientPhone>;
|
8688
|
+
ClientPhone_Input: IClientPhone_Input;
|
8689
|
+
ClientTypes: IClientTypes;
|
8690
|
+
ClientUpdateRequest: IClientUpdateRequest;
|
8691
|
+
ConfigCollectionName: IConfigCollectionName;
|
8692
|
+
ConfigFragmentName: IConfigFragmentName;
|
8720
8693
|
Configuration: IResolversTypes['DefaultConfiguration'] | IResolversTypes['MachineConfiguration'] | IResolversTypes['UserConfiguration'] | IResolversTypes['OrganizationConfiguration'] | IResolversTypes['OrganizationResourceConfiguration'];
|
8721
|
-
|
8722
|
-
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'];
|
8723
|
-
Overrides: ResolverTypeWrapper<IOverrides>;
|
8724
|
-
MachineConfiguration: ResolverTypeWrapper<IMachineConfiguration>;
|
8725
|
-
UserConfiguration: ResolverTypeWrapper<IUserConfiguration>;
|
8726
|
-
OrganizationConfiguration: ResolverTypeWrapper<IOrganizationConfiguration>;
|
8727
|
-
OrganizationResourceConfiguration: ResolverTypeWrapper<IOrganizationResourceConfiguration>;
|
8694
|
+
ConfigurationContributionNames: IConfigurationContributionNames;
|
8728
8695
|
ConfigurationData: ResolverTypeWrapper<IConfigurationData>;
|
8696
|
+
ConfigurationExtensionInfo: ResolverTypeWrapper<IConfigurationExtensionInfo>;
|
8697
|
+
ConfigurationInput: IConfigurationInput;
|
8698
|
+
ConfigurationModel: ResolverTypeWrapper<IConfigurationModel>;
|
8699
|
+
ConfigurationOverrides: ResolverTypeWrapper<IConfigurationOverrides>;
|
8700
|
+
ConfigurationOverrides_Input: IConfigurationOverrides_Input;
|
8729
8701
|
ConfigurationPolicy: IResolversTypes['DefaultPolicy'] | IResolversTypes['OrganizationPolicy'] | IResolversTypes['ResourcePolicy'] | IResolversTypes['ApplicationPolicy'];
|
8730
|
-
|
8731
|
-
|
8732
|
-
|
8733
|
-
ApplicationPolicy: ResolverTypeWrapper<IApplicationPolicy>;
|
8702
|
+
ConfigurationScope: ConfigurationScope;
|
8703
|
+
ConfigurationTarget: ConfigurationTarget;
|
8704
|
+
ConfigurationUpdateEvent: ResolverTypeWrapper<IConfigurationUpdateEvent>;
|
8734
8705
|
Context: ResolverTypeWrapper<IContext>;
|
8706
|
+
ContextServiceAction: IContextServiceAction;
|
8735
8707
|
ContributionRoles: ResolverTypeWrapper<Omit<IContributionRoles, 'permissions'> & {
|
8736
8708
|
permissions?: Maybe<IResolversTypes['AccessRole']>;
|
8737
8709
|
}>;
|
8738
|
-
|
8710
|
+
ContributionSettings: ResolverTypeWrapper<IContributionSettings>;
|
8711
|
+
ContributionSettingsProperties: ResolverTypeWrapper<IContributionSettingsProperties>;
|
8712
|
+
Country: ResolverTypeWrapper<ICountry>;
|
8713
|
+
CountryInput: ICountryInput;
|
8714
|
+
CustomerInvoice: ResolverTypeWrapper<ICustomerInvoice>;
|
8715
|
+
CustomerInvoice_Input: ICustomerInvoice_Input;
|
8716
|
+
Date: ResolverTypeWrapper<Scalars['Date']>;
|
8717
|
+
DateTime: ResolverTypeWrapper<Scalars['DateTime']>;
|
8718
|
+
DefaultConfiguration: ResolverTypeWrapper<IDefaultConfiguration>;
|
8719
|
+
DefaultPolicy: ResolverTypeWrapper<IDefaultPolicy>;
|
8739
8720
|
DefaultRole: ResolverTypeWrapper<IDefaultRole>;
|
8740
|
-
|
8741
|
-
|
8742
|
-
|
8721
|
+
DefaultSettings: ResolverTypeWrapper<IDefaultSettings>;
|
8722
|
+
EActivityScopes: IEActivityScopes;
|
8723
|
+
EditPresentationTypes: IEditPresentationTypes;
|
8724
|
+
EmptyResponse: ResolverTypeWrapper<IEmptyResponse>;
|
8743
8725
|
Environment: ResolverTypeWrapper<IEnvironment>;
|
8744
|
-
|
8745
|
-
|
8746
|
-
|
8747
|
-
|
8748
|
-
|
8749
|
-
ProjectSourceProviders: IProjectSourceProviders;
|
8750
|
-
ProjectType: IProjectType;
|
8751
|
-
InvoiceType: ResolverTypeWrapper<IInvoiceType>;
|
8726
|
+
EnvironmentPayload: IEnvironmentPayload;
|
8727
|
+
ExternalResourceData: ResolverTypeWrapper<IExternalResourceData>;
|
8728
|
+
FieldError: ResolverTypeWrapper<IFieldError>;
|
8729
|
+
GenerateSSHKeysRequest: IGenerateSSHKeysRequest;
|
8730
|
+
GeoLocation: ResolverTypeWrapper<IGeoLocation>;
|
8752
8731
|
Float: ResolverTypeWrapper<Scalars['Float']>;
|
8753
|
-
|
8754
|
-
|
8755
|
-
|
8756
|
-
|
8757
|
-
|
8758
|
-
|
8759
|
-
|
8732
|
+
GlobalCurrencies: IGlobalCurrencies;
|
8733
|
+
GlobalLanguages: IGlobalLanguages;
|
8734
|
+
GlobalSettings: ResolverTypeWrapper<IGlobalSettings>;
|
8735
|
+
IActivitySettings: IResolversTypes['AdminIdeSettings'];
|
8736
|
+
IAuth0Identity: never;
|
8737
|
+
IAuth0Token: IResolversTypes['UserProfile'];
|
8738
|
+
IAuth0User: IResolversTypes['UserProfile'];
|
8739
|
+
IAuth0UserProfile: IResolversTypes['UserProfile'];
|
8740
|
+
ICity: never;
|
8741
|
+
IConfigurationChangeEvent: ResolverTypeWrapper<Omit<IIConfigurationChangeEvent, 'changedConfiguration'> & {
|
8742
|
+
changedConfiguration?: Maybe<IResolversTypes['Configuration']>;
|
8743
|
+
}>;
|
8744
|
+
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'];
|
8745
|
+
IConfigurationService: never;
|
8746
|
+
ICountry: never;
|
8747
|
+
IEventWithContext: IResolversTypes['OrganizationCreatedEvent'] | IResolversTypes['OrganizationDeletedEvent'];
|
8748
|
+
IOnBoardingParams: IIOnBoardingParams;
|
8760
8749
|
IOrgUser: IResolversTypes['OrgUser'];
|
8761
|
-
|
8762
|
-
|
8763
|
-
|
8750
|
+
IResourceData: IResolversTypes['ExternalResourceData'] | IResolversTypes['OrganizationResourceData'];
|
8751
|
+
IResourceUserRole: IResolversTypes['ResourceUser'];
|
8752
|
+
IResourceUtilizationSettings: never;
|
8753
|
+
ISettingsSubject: IResolversTypes['ApplicationSettings'] | IResolversTypes['DefaultSettings'] | IResolversTypes['GlobalSettings'] | IResolversTypes['MachineSettings'] | IResolversTypes['MemorySettings'] | IResolversTypes['OrganizationResourceSettings'] | IResolversTypes['OrganizationSettings'] | IResolversTypes['UserSettings'];
|
8754
|
+
ISshKeySettings: IResolversTypes['SshKeySettings'];
|
8755
|
+
ITerritorialState: never;
|
8756
|
+
IUser: IResolversTypes['AuthUser'];
|
8757
|
+
IUserMetadata: IResolversTypes['UserMetadata'];
|
8758
|
+
IntegraitonConfigurationId: ResolverTypeWrapper<IIntegraitonConfigurationId>;
|
8759
|
+
IntegrationConfigServiceAction: IIntegrationConfigServiceAction;
|
8760
|
+
IntegrationConfiguration: ResolverTypeWrapper<IIntegrationConfiguration>;
|
8761
|
+
IntegrationConfigurationCreateOrUpdateInput: IIntegrationConfigurationCreateOrUpdateInput;
|
8762
|
+
IntegrationConfigurationFilterInput: IIntegrationConfigurationFilterInput;
|
8763
|
+
IntegrationConfigurationInput: IIntegrationConfigurationInput;
|
8764
8764
|
InviteMember: ResolverTypeWrapper<IInviteMember>;
|
8765
8765
|
InviteStatus: IInviteStatus;
|
8766
|
-
|
8766
|
+
InvoiceCreateRequest: IInvoiceCreateRequest;
|
8767
|
+
InvoiceCreatedEvent: ResolverTypeWrapper<IInvoiceCreatedEvent>;
|
8768
|
+
InvoiceDeletedEvent: ResolverTypeWrapper<IInvoiceDeletedEvent>;
|
8769
|
+
InvoiceMailRequest: IInvoiceMailRequest;
|
8770
|
+
InvoiceType: ResolverTypeWrapper<IInvoiceType>;
|
8771
|
+
InvoiceUpdateRequest: IInvoiceUpdateRequest;
|
8772
|
+
JSON: ResolverTypeWrapper<Scalars['JSON']>;
|
8773
|
+
JSONObject: ResolverTypeWrapper<Scalars['JSONObject']>;
|
8774
|
+
KeyPathSegment: IKeyPathSegment;
|
8775
|
+
LoginError: ResolverTypeWrapper<ILoginError>;
|
8776
|
+
MachineConfiguration: ResolverTypeWrapper<IMachineConfiguration>;
|
8777
|
+
MachineSettings: ResolverTypeWrapper<IMachineSettings>;
|
8778
|
+
MailTemplateId: IMailTemplateId;
|
8779
|
+
MemberInvoice: ResolverTypeWrapper<IMemberInvoice>;
|
8780
|
+
MemberInvoice_Input: IMemberInvoice_Input;
|
8781
|
+
MemorySettings: ResolverTypeWrapper<IMemorySettings>;
|
8782
|
+
MenuItem: ResolverTypeWrapper<IMenuItem>;
|
8783
|
+
MenuPosition: IMenuPosition;
|
8784
|
+
MoleculerServiceName: IMoleculerServiceName;
|
8785
|
+
Mutation: ResolverTypeWrapper<{}>;
|
8767
8786
|
NameType: ResolverTypeWrapper<INameType>;
|
8768
|
-
|
8769
|
-
|
8770
|
-
|
8787
|
+
Name_Input: IName_Input;
|
8788
|
+
Node: IResolversTypes['OrgUserAccunt'] | IResolversTypes['UserAccount'];
|
8789
|
+
Observable: ResolverTypeWrapper<Scalars['Observable']>;
|
8771
8790
|
OrgDetailWhere: IOrgDetailWhere;
|
8772
8791
|
OrgMember: ResolverTypeWrapper<IOrgMember>;
|
8773
|
-
OrganizationData: ResolverTypeWrapper<Omit<IOrganizationData, 'resources'> & {
|
8774
|
-
resources: Array<Maybe<IResolversTypes['ResourceData']>>;
|
8775
|
-
}>;
|
8776
|
-
ResourceData: IResolversTypes['OrganizationResourceData'] | IResolversTypes['ExternalResourceData'];
|
8777
|
-
OrganizationResourceData: ResolverTypeWrapper<IOrganizationResourceData>;
|
8778
|
-
IResourceData: IResolversTypes['OrganizationResourceData'] | IResolversTypes['ExternalResourceData'];
|
8779
|
-
ExternalResourceData: ResolverTypeWrapper<IExternalResourceData>;
|
8780
|
-
AccountTeam: ResolverTypeWrapper<IAccountTeam>;
|
8781
|
-
TeamMember: ResolverTypeWrapper<ITeamMember>;
|
8782
|
-
Project_Output: ResolverTypeWrapper<IProject_Output>;
|
8783
|
-
RoleInput: IRoleInput;
|
8784
|
-
Task: ResolverTypeWrapper<ITask>;
|
8785
|
-
ResourceAccessRole: ResolverTypeWrapper<Omit<IResourceAccessRole, 'accessRoles'> & {
|
8786
|
-
accessRoles?: Maybe<Array<Maybe<IResolversTypes['AccessRole']>>>;
|
8787
|
-
}>;
|
8788
|
-
ResourceUser: ResolverTypeWrapper<IResourceUser>;
|
8789
|
-
IResourceUserRole: IResolversTypes['ResourceUser'];
|
8790
|
-
UserContext: ResolverTypeWrapper<IUserContext>;
|
8791
|
-
PermissionSubject: ResolverTypeWrapper<IPermissionSubject>;
|
8792
|
-
ViewerPoliciesInput: IViewerPoliciesInput;
|
8793
|
-
PolicySubject: ResolverTypeWrapper<IPolicySubject>;
|
8794
|
-
PreferencesOpenOptions_Input: IPreferencesOpenOptions_Input;
|
8795
|
-
PreferencesInput: ResolverTypeWrapper<IPreferencesInput>;
|
8796
|
-
PreferencesInput_Input: IPreferencesInput_Input;
|
8797
|
-
ViewerSettingsInput: IViewerSettingsInput;
|
8798
|
-
ViewerSettingsSubject: ResolverTypeWrapper<IViewerSettingsSubject>;
|
8799
|
-
Mutation: ResolverTypeWrapper<{}>;
|
8800
|
-
SshKeyInput: ISshKeyInput;
|
8801
|
-
SshKeyType: ISshKeyType;
|
8802
|
-
OrganizationNotificationValues: IOrganizationNotificationValues;
|
8803
|
-
IOnBoardingParams: IIOnBoardingParams;
|
8804
8792
|
OrgType: IOrgType;
|
8805
|
-
|
8806
|
-
|
8807
|
-
Name_Input: IName_Input;
|
8808
|
-
ClientPhone_Input: IClientPhone_Input;
|
8809
|
-
SocialConnect_Input: ISocialConnect_Input;
|
8810
|
-
AddressType_Input: IAddressType_Input;
|
8811
|
-
ProjectAddRequest: IProjectAddRequest;
|
8812
|
-
ResourceCreationData_Input: IResourceCreationData_Input;
|
8813
|
-
ActivityCollectRequest: IActivityCollectRequest;
|
8814
|
-
EActivityScopes: IEActivityScopes;
|
8815
|
-
IntegrationConfigurationInput: IIntegrationConfigurationInput;
|
8816
|
-
IntegraitonConfigurationId: ResolverTypeWrapper<IIntegraitonConfigurationId>;
|
8817
|
-
InvoiceCreateRequest: IInvoiceCreateRequest;
|
8818
|
-
MemberInvoice_Input: IMemberInvoice_Input;
|
8819
|
-
ProjectInvoice_Input: IProjectInvoice_Input;
|
8820
|
-
CustomerInvoice_Input: ICustomerInvoice_Input;
|
8821
|
-
IntegrationConfigurationCreateOrUpdateInput: IIntegrationConfigurationCreateOrUpdateInput;
|
8822
|
-
OrganizationCreateRequest: IOrganizationCreateRequest;
|
8823
|
-
OrgUser_Input: IOrgUser_Input;
|
8824
|
-
OrganizationInvitation_Input: IOrganizationInvitation_Input;
|
8825
|
-
TaskRequest: ITaskRequest;
|
8826
|
-
TeamCreationRequest: ITeamCreationRequest;
|
8827
|
-
UserAuth0UpdateFields: IUserAuth0UpdateFields;
|
8828
|
-
PhoneNumberInput: IPhoneNumberInput;
|
8829
|
-
OrganizationRemoveRequest: IOrganizationRemoveRequest;
|
8830
|
-
UserPasswordResetInput: IUserPasswordResetInput;
|
8831
|
-
InvoiceMailRequest: IInvoiceMailRequest;
|
8832
|
-
Template: ITemplate;
|
8833
|
-
OrganizationInvitationRequest: IOrganizationInvitationRequest;
|
8834
|
-
InvoiceUpdateRequest: IInvoiceUpdateRequest;
|
8835
|
-
ClientUpdateRequest: IClientUpdateRequest;
|
8836
|
-
UpdatedClient_Input: IUpdatedClient_Input;
|
8837
|
-
UpdateProject_Input: IUpdateProject_Input;
|
8838
|
-
OrganizationUpdateRequest: IOrganizationUpdateRequest;
|
8839
|
-
Organization_Input: IOrganization_Input;
|
8840
|
-
Subscription: ResolverTypeWrapper<{}>;
|
8841
|
-
ConfigurationUpdateEvent: ResolverTypeWrapper<IConfigurationUpdateEvent>;
|
8842
|
-
ConfigurationOverrides: ResolverTypeWrapper<IConfigurationOverrides>;
|
8843
|
-
SubscribedOrganizationData: ResolverTypeWrapper<Omit<ISubscribedOrganizationData, 'resources'> & {
|
8844
|
-
resources?: Maybe<Array<Maybe<IResolversTypes['ResourceData']>>>;
|
8845
|
-
}>;
|
8846
|
-
AccountBroadcasterActions: IAccountBroadcasterActions;
|
8847
|
-
AccountService: ResolverTypeWrapper<IAccountService>;
|
8848
|
-
UserAccountCreateRequest: IUserAccountCreateRequest;
|
8849
|
-
UserTokenInput: IUserTokenInput;
|
8850
|
-
UserAccountUpdateRequest: IUserAccountUpdateRequest;
|
8851
|
-
UserAccount_Input: IUserAccount_Input;
|
8852
|
-
UserAccountRemoveRequest: IUserAccountRemoveRequest;
|
8853
|
-
AccountServiceAction: IAccountServiceAction;
|
8854
|
-
AccountTeam_Input: IAccountTeam_Input;
|
8855
|
-
TeamMember_Input: ITeamMember_Input;
|
8856
|
-
ActivityRecord: ResolverTypeWrapper<IActivityRecord>;
|
8857
|
-
ActivityRecordInput: IActivityRecordInput;
|
8858
|
-
ActivityServiceCommands: IActivityServiceCommands;
|
8859
|
-
AdminIdeSettings: ResolverTypeWrapper<IAdminIdeSettings>;
|
8860
|
-
IActivitySettings: IResolversTypes['AdminIdeSettings'];
|
8861
|
-
ApplicationBillingPlanPolicy: IApplicationBillingPlanPolicy;
|
8862
|
-
AuthErrorCodes: IAuthErrorCodes;
|
8863
|
-
AuthUser: ResolverTypeWrapper<IAuthUser>;
|
8864
|
-
IUser: IResolversTypes['AuthUser'];
|
8865
|
-
AuthUser_Input: IAuthUser_Input;
|
8866
|
-
CacheControlScope: ICacheControlScope;
|
8867
|
-
CityInput: ICityInput;
|
8868
|
-
TerritorialStateInput: ITerritorialStateInput;
|
8869
|
-
CityUpdateInput: ICityUpdateInput;
|
8870
|
-
TerritorialStateUpdateInput: ITerritorialStateUpdateInput;
|
8871
|
-
ClientCacheTypeNames: IClientCacheTypeNames;
|
8872
|
-
ClientContainerService: IClientContainerService;
|
8873
|
-
ClientCreatedEvent: ResolverTypeWrapper<IClientCreatedEvent>;
|
8874
|
-
ClientDeletedEvent: ResolverTypeWrapper<IClientDeletedEvent>;
|
8875
|
-
ClientTypes: IClientTypes;
|
8876
|
-
ConfigCollectionName: IConfigCollectionName;
|
8877
|
-
ConfigFragmentName: IConfigFragmentName;
|
8878
|
-
ConfigurationContributionNames: IConfigurationContributionNames;
|
8879
|
-
ConfigurationModel: ResolverTypeWrapper<IConfigurationModel>;
|
8880
|
-
ConfigurationTarget: ConfigurationTarget;
|
8881
|
-
ContextServiceAction: IContextServiceAction;
|
8882
|
-
CountryInput: ICountryInput;
|
8883
|
-
EmptyResponse: ResolverTypeWrapper<IEmptyResponse>;
|
8884
|
-
EnvironmentPayload: IEnvironmentPayload;
|
8885
|
-
FieldError: ResolverTypeWrapper<IFieldError>;
|
8886
|
-
GenerateSSHKeysRequest: IGenerateSSHKeysRequest;
|
8887
|
-
GeoLocation: ResolverTypeWrapper<IGeoLocation>;
|
8888
|
-
IAuth0Identity: never;
|
8889
|
-
ICity: never;
|
8890
|
-
ITerritorialState: never;
|
8891
|
-
ICountry: never;
|
8892
|
-
IConfigurationChangeEvent: ResolverTypeWrapper<Omit<IIConfigurationChangeEvent, 'changedConfiguration'> & {
|
8893
|
-
changedConfiguration?: Maybe<IResolversTypes['Configuration']>;
|
8894
|
-
}>;
|
8895
|
-
IConfigurationService: never;
|
8896
|
-
IEventWithContext: IResolversTypes['OrganizationCreatedEvent'] | IResolversTypes['OrganizationDeletedEvent'];
|
8897
|
-
IResourceUtilizationSettings: never;
|
8898
|
-
ISshKeySettings: IResolversTypes['SshKeySettings'];
|
8899
|
-
IntegrationConfigServiceAction: IIntegrationConfigServiceAction;
|
8900
|
-
InvoiceCreatedEvent: ResolverTypeWrapper<IInvoiceCreatedEvent>;
|
8901
|
-
InvoiceDeletedEvent: ResolverTypeWrapper<IInvoiceDeletedEvent>;
|
8902
|
-
JSONObject: ResolverTypeWrapper<Scalars['JSONObject']>;
|
8903
|
-
KeyPathSegment: IKeyPathSegment;
|
8904
|
-
LoginError: ResolverTypeWrapper<ILoginError>;
|
8905
|
-
MailTemplateId: IMailTemplateId;
|
8906
|
-
MenuItem: ResolverTypeWrapper<IMenuItem>;
|
8907
|
-
MenuPosition: IMenuPosition;
|
8908
|
-
MoleculerServiceName: IMoleculerServiceName;
|
8909
|
-
Observable: ResolverTypeWrapper<Scalars['Observable']>;
|
8793
|
+
OrgUser: ResolverTypeWrapper<IOrgUser>;
|
8794
|
+
OrgUserAccunt: ResolverTypeWrapper<IOrgUserAccunt>;
|
8910
8795
|
OrgUserRole: IOrgUserRole;
|
8796
|
+
OrgUser_Input: IOrgUser_Input;
|
8911
8797
|
OrgainizationInvitationRole: IOrgainizationInvitationRole;
|
8798
|
+
Organization: ResolverTypeWrapper<IOrganization>;
|
8799
|
+
OrganizationConfigValue_Input: IOrganizationConfigValue_Input;
|
8800
|
+
OrganizationConfiguration: ResolverTypeWrapper<IOrganizationConfiguration>;
|
8912
8801
|
OrganizationContextPubSubEvents: IOrganizationContextPubSubEvents;
|
8802
|
+
OrganizationCreateRequest: IOrganizationCreateRequest;
|
8913
8803
|
OrganizationCreatedEvent: ResolverTypeWrapper<IOrganizationCreatedEvent>;
|
8804
|
+
OrganizationData: ResolverTypeWrapper<Omit<IOrganizationData, 'resources'> & {
|
8805
|
+
resources: Array<Maybe<IResolversTypes['ResourceData']>>;
|
8806
|
+
}>;
|
8914
8807
|
OrganizationDeletedEvent: ResolverTypeWrapper<IOrganizationDeletedEvent>;
|
8915
8808
|
OrganizationIdentifier: ResolverTypeWrapper<IOrganizationIdentifier>;
|
8809
|
+
OrganizationInvitation: ResolverTypeWrapper<IOrganizationInvitation>;
|
8810
|
+
OrganizationInvitationDecode: ResolverTypeWrapper<IOrganizationInvitationDecode>;
|
8811
|
+
OrganizationInvitationRequest: IOrganizationInvitationRequest;
|
8812
|
+
OrganizationInvitation_Input: IOrganizationInvitation_Input;
|
8916
8813
|
OrganizationMember: ResolverTypeWrapper<IOrganizationMember>;
|
8814
|
+
OrganizationNotificationValues: IOrganizationNotificationValues;
|
8815
|
+
OrganizationPolicy: ResolverTypeWrapper<IOrganizationPolicy>;
|
8816
|
+
OrganizationRemoveRequest: IOrganizationRemoveRequest;
|
8817
|
+
OrganizationResourceConfiguration: ResolverTypeWrapper<IOrganizationResourceConfiguration>;
|
8818
|
+
OrganizationResourceData: ResolverTypeWrapper<IOrganizationResourceData>;
|
8819
|
+
OrganizationResourceSettings: ResolverTypeWrapper<IOrganizationResourceSettings>;
|
8820
|
+
OrganizationRole: ResolverTypeWrapper<IOrganizationRole>;
|
8917
8821
|
OrganizationService: ResolverTypeWrapper<IOrganizationService>;
|
8918
8822
|
OrganizationServiceAction: IOrganizationServiceAction;
|
8823
|
+
OrganizationSettings: ResolverTypeWrapper<IOrganizationSettings>;
|
8824
|
+
OrganizationUpdateRequest: IOrganizationUpdateRequest;
|
8825
|
+
Organization_Input: IOrganization_Input;
|
8919
8826
|
OrganizationsDeactivatedEvent: ResolverTypeWrapper<IOrganizationsDeactivatedEvent>;
|
8920
8827
|
OrganizationsDeletedEvent: ResolverTypeWrapper<IOrganizationsDeletedEvent>;
|
8828
|
+
Overrides: ResolverTypeWrapper<IOverrides>;
|
8921
8829
|
PageInfo: ResolverTypeWrapper<IPageInfo>;
|
8922
8830
|
PermissionAction: IPermissionAction;
|
8923
8831
|
PermissionResource: IPermissionResource;
|
8832
|
+
PermissionSubject: ResolverTypeWrapper<IPermissionSubject>;
|
8924
8833
|
PermissionType: IPermissionType;
|
8834
|
+
PhoneNumber: ResolverTypeWrapper<IPhoneNumber>;
|
8835
|
+
PhoneNumberInput: IPhoneNumberInput;
|
8836
|
+
PolicySubject: ResolverTypeWrapper<IPolicySubject>;
|
8925
8837
|
PortalLanguage: IPortalLanguage;
|
8838
|
+
Position: ResolverTypeWrapper<IPosition>;
|
8926
8839
|
PreDefinedRole: IPreDefinedRole;
|
8927
8840
|
PreferenceItem: ResolverTypeWrapper<IPreferenceItem>;
|
8841
|
+
Preference_Account: ResolverTypeWrapper<IPreference_Account>;
|
8842
|
+
Preference_Default: ResolverTypeWrapper<IPreference_Default>;
|
8843
|
+
Preference_Global: ResolverTypeWrapper<IPreference_Global>;
|
8844
|
+
Preference_Global_User: ResolverTypeWrapper<IPreference_Global_User>;
|
8845
|
+
Preference_Notification: ResolverTypeWrapper<IPreference_Notification>;
|
8846
|
+
Preference_Organization: ResolverTypeWrapper<IPreference_Organization>;
|
8847
|
+
Preference_Project: ResolverTypeWrapper<IPreference_Project>;
|
8848
|
+
Preference_Teams: ResolverTypeWrapper<IPreference_Teams>;
|
8849
|
+
Preferences: ResolverTypeWrapper<IPreferences>;
|
8850
|
+
PreferencesInput: ResolverTypeWrapper<IPreferencesInput>;
|
8851
|
+
PreferencesInput_Input: IPreferencesInput_Input;
|
8852
|
+
PreferencesOpenOptions_Input: IPreferencesOpenOptions_Input;
|
8853
|
+
PreferencesResponse: ResolverTypeWrapper<IPreferencesResponse>;
|
8854
|
+
PreferencesType: ResolverTypeWrapper<IPreferencesType>;
|
8855
|
+
ProjectAddRequest: IProjectAddRequest;
|
8928
8856
|
ProjectCreatedEvent: ResolverTypeWrapper<IProjectCreatedEvent>;
|
8929
8857
|
ProjectDeletedEvent: ResolverTypeWrapper<IProjectDeletedEvent>;
|
8858
|
+
ProjectInvoice: ResolverTypeWrapper<IProjectInvoice>;
|
8859
|
+
ProjectInvoice_Input: IProjectInvoice_Input;
|
8860
|
+
ProjectParameters: ResolverTypeWrapper<IProjectParameters>;
|
8930
8861
|
ProjectParameters_Input: IProjectParameters_Input;
|
8862
|
+
ProjectSource: ResolverTypeWrapper<IProjectSource>;
|
8863
|
+
ProjectSourceProviders: IProjectSourceProviders;
|
8864
|
+
ProjectSourceType: IProjectSourceType;
|
8931
8865
|
ProjectSource_Input: IProjectSource_Input;
|
8866
|
+
ProjectType: IProjectType;
|
8867
|
+
ProjectWhereInput: IProjectWhereInput;
|
8932
8868
|
Project_Input: IProject_Input;
|
8869
|
+
Project_Output: ResolverTypeWrapper<IProject_Output>;
|
8870
|
+
Projects: ResolverTypeWrapper<IProjects>;
|
8871
|
+
Query: ResolverTypeWrapper<{}>;
|
8872
|
+
Range: ResolverTypeWrapper<IRange>;
|
8933
8873
|
RegistryExtensions: IRegistryExtensions;
|
8874
|
+
ResourceAccessRole: ResolverTypeWrapper<Omit<IResourceAccessRole, 'accessRoles'> & {
|
8875
|
+
accessRoles?: Maybe<Array<Maybe<IResolversTypes['AccessRole']>>>;
|
8876
|
+
}>;
|
8934
8877
|
ResourceAuthority: IResourceAuthority;
|
8935
8878
|
ResourceCreatedEvent: ResolverTypeWrapper<IResourceCreatedEvent>;
|
8879
|
+
ResourceCreationData_Input: IResourceCreationData_Input;
|
8880
|
+
ResourceData: IResolversTypes['OrganizationResourceData'] | IResolversTypes['ExternalResourceData'];
|
8936
8881
|
ResourceDeletedEvent: ResolverTypeWrapper<IResourceDeletedEvent>;
|
8882
|
+
ResourcePolicy: ResolverTypeWrapper<IResourcePolicy>;
|
8883
|
+
ResourceRole: ResolverTypeWrapper<IResourceRole>;
|
8884
|
+
ResourceUser: ResolverTypeWrapper<IResourceUser>;
|
8937
8885
|
Role: IRole;
|
8886
|
+
RoleInput: IRoleInput;
|
8938
8887
|
RouteData: ResolverTypeWrapper<IRouteData>;
|
8939
8888
|
RouteParams: IRouteParams;
|
8940
8889
|
SettingValueType: ISettingValueType;
|
8890
|
+
Settings: ResolverTypeWrapper<ISettings>;
|
8891
|
+
SettingsCascade: ResolverTypeWrapper<Omit<ISettingsCascade, 'subjects'> & {
|
8892
|
+
subjects?: Maybe<Array<Maybe<IResolversTypes['SettingsSubject']>>>;
|
8893
|
+
}>;
|
8894
|
+
SettingsGroup: ResolverTypeWrapper<ISettingsGroup>;
|
8895
|
+
SettingsSection: ResolverTypeWrapper<ISettingsSection>;
|
8896
|
+
SettingsSubject: IResolversTypes['UserSettings'] | IResolversTypes['ApplicationSettings'] | IResolversTypes['MachineSettings'] | IResolversTypes['OrganizationResourceSettings'] | IResolversTypes['GlobalSettings'] | IResolversTypes['OrganizationSettings'] | IResolversTypes['MemorySettings'] | IResolversTypes['DefaultSettings'];
|
8897
|
+
SocialConnect: ResolverTypeWrapper<ISocialConnect>;
|
8898
|
+
SocialConnect_Input: ISocialConnect_Input;
|
8899
|
+
SshKey: ResolverTypeWrapper<ISshKey>;
|
8900
|
+
SshKeyInput: ISshKeyInput;
|
8941
8901
|
SshKeyModel: ResolverTypeWrapper<ISshKeyModel>;
|
8942
8902
|
SshKeyService: ResolverTypeWrapper<ISshKeyService>;
|
8943
8903
|
SshKeyServiceAction: ISshKeyServiceAction;
|
8944
8904
|
SshKeySettings: ResolverTypeWrapper<ISshKeySettings>;
|
8905
|
+
SshKeyType: ISshKeyType;
|
8906
|
+
SubscribedOrganizationData: ResolverTypeWrapper<Omit<ISubscribedOrganizationData, 'resources'> & {
|
8907
|
+
resources?: Maybe<Array<Maybe<IResolversTypes['ResourceData']>>>;
|
8908
|
+
}>;
|
8909
|
+
Subscription: ResolverTypeWrapper<{}>;
|
8910
|
+
Task: ResolverTypeWrapper<ITask>;
|
8911
|
+
TaskRequest: ITaskRequest;
|
8945
8912
|
TeamCreateRequest: ITeamCreateRequest;
|
8913
|
+
TeamCreationRequest: ITeamCreationRequest;
|
8946
8914
|
TeamInvitationEmailVariables: ResolverTypeWrapper<ITeamInvitationEmailVariables>;
|
8915
|
+
TeamMember: ResolverTypeWrapper<ITeamMember>;
|
8916
|
+
TeamMember_Input: ITeamMember_Input;
|
8947
8917
|
TeamRemoveRequest: ITeamRemoveRequest;
|
8948
8918
|
TeamService: ResolverTypeWrapper<ITeamService>;
|
8949
|
-
TeamUpdateRequest: ITeamUpdateRequest;
|
8950
8919
|
TeamServiceAction: ITeamServiceAction;
|
8920
|
+
TeamType: ITeamType;
|
8921
|
+
TeamUpdateRequest: ITeamUpdateRequest;
|
8922
|
+
Template: ITemplate;
|
8923
|
+
TerritorialStateInput: ITerritorialStateInput;
|
8924
|
+
TerritorialStateUpdateInput: ITerritorialStateUpdateInput;
|
8951
8925
|
Time: ResolverTypeWrapper<Scalars['Time']>;
|
8926
|
+
TokenTypesEnum: ITokenTypesEnum;
|
8927
|
+
URI: ResolverTypeWrapper<Scalars['URI']>;
|
8928
|
+
URIInput: ResolverTypeWrapper<Scalars['URIInput']>;
|
8929
|
+
UpdateProject_Input: IUpdateProject_Input;
|
8930
|
+
UpdatedClient_Input: IUpdatedClient_Input;
|
8931
|
+
UserAccount: ResolverTypeWrapper<IUserAccount>;
|
8932
|
+
UserAccountCreateRequest: IUserAccountCreateRequest;
|
8952
8933
|
UserAccountCreatedDetailedEvent: ResolverTypeWrapper<IUserAccountCreatedDetailedEvent>;
|
8953
8934
|
UserAccountCreatedEvent: ResolverTypeWrapper<IUserAccountCreatedEvent>;
|
8935
|
+
UserAccountRemoveRequest: IUserAccountRemoveRequest;
|
8954
8936
|
UserAccountRemovedEvent: ResolverTypeWrapper<IUserAccountRemovedEvent>;
|
8937
|
+
UserAccountUpdateRequest: IUserAccountUpdateRequest;
|
8938
|
+
UserAccountWhere: IUserAccountWhere;
|
8939
|
+
UserAccount_Input: IUserAccount_Input;
|
8940
|
+
UserAuth0UpdateFields: IUserAuth0UpdateFields;
|
8955
8941
|
UserBroadcasterAction: IUserBroadcasterAction;
|
8942
|
+
UserConfiguration: ResolverTypeWrapper<IUserConfiguration>;
|
8943
|
+
UserContext: ResolverTypeWrapper<IUserContext>;
|
8944
|
+
UserDevice: ResolverTypeWrapper<IUserDevice>;
|
8945
|
+
UserMetadata: ResolverTypeWrapper<IUserMetadata>;
|
8956
8946
|
UserOrderBy: IUserOrderBy;
|
8957
8947
|
UserOrg: ResolverTypeWrapper<IUserOrg>;
|
8958
8948
|
UserOrg_Input: IUserOrg_Input;
|
8949
|
+
UserPasswordResetInput: IUserPasswordResetInput;
|
8959
8950
|
UserPreviousValues: ResolverTypeWrapper<IUserPreviousValues>;
|
8951
|
+
UserProfile: ResolverTypeWrapper<IUserProfile>;
|
8952
|
+
UserSettings: ResolverTypeWrapper<IUserSettings>;
|
8960
8953
|
UserState: ResolverTypeWrapper<IUserState>;
|
8961
|
-
|
8962
|
-
|
8963
|
-
/** Mapping between all available schema types and the resolvers parents */
|
8964
|
-
export declare type IResolversParentTypes = {
|
8965
|
-
Query: {};
|
8966
|
-
ID: Scalars['ID'];
|
8967
|
-
SshKey: ISshKey;
|
8968
|
-
String: Scalars['String'];
|
8969
|
-
OrganizationInvitationDecode: IOrganizationInvitationDecode;
|
8970
|
-
Int: Scalars['Int'];
|
8971
|
-
SettingsGroup: ISettingsGroup;
|
8972
|
-
Range: IRange;
|
8973
|
-
Position: IPosition;
|
8974
|
-
SettingsSection: ISettingsSection;
|
8975
|
-
ContributionSettings: IContributionSettings;
|
8976
|
-
AnyObject: Scalars['AnyObject'];
|
8977
|
-
Boolean: Scalars['Boolean'];
|
8978
|
-
ConfigurationExtensionInfo: IConfigurationExtensionInfo;
|
8979
|
-
ContributionSettingsProperties: IContributionSettingsProperties;
|
8980
|
-
PreferencesResponse: IPreferencesResponse;
|
8981
|
-
PreferencesType: IPreferencesType;
|
8982
|
-
DefaultSettings: IDefaultSettings;
|
8983
|
-
ISettingsSubject: IResolversParentTypes['DefaultSettings'] | IResolversParentTypes['UserSettings'] | IResolversParentTypes['ApplicationSettings'] | IResolversParentTypes['MachineSettings'] | IResolversParentTypes['OrganizationResourceSettings'] | IResolversParentTypes['GlobalSettings'] | IResolversParentTypes['OrganizationSettings'] | IResolversParentTypes['MemorySettings'];
|
8984
|
-
Settings: ISettings;
|
8985
|
-
URI: Scalars['URI'];
|
8986
|
-
SettingsCascade: Omit<ISettingsCascade, 'subjects'> & {
|
8987
|
-
subjects?: Maybe<Array<Maybe<IResolversParentTypes['SettingsSubject']>>>;
|
8988
|
-
};
|
8989
|
-
SettingsSubject: IResolversParentTypes['UserSettings'] | IResolversParentTypes['ApplicationSettings'] | IResolversParentTypes['MachineSettings'] | IResolversParentTypes['OrganizationResourceSettings'] | IResolversParentTypes['GlobalSettings'] | IResolversParentTypes['OrganizationSettings'] | IResolversParentTypes['MemorySettings'] | IResolversParentTypes['DefaultSettings'];
|
8990
|
-
UserSettings: IUserSettings;
|
8991
|
-
ApplicationSettings: IApplicationSettings;
|
8992
|
-
MachineSettings: IMachineSettings;
|
8993
|
-
OrganizationResourceSettings: IOrganizationResourceSettings;
|
8994
|
-
GlobalSettings: IGlobalSettings;
|
8995
|
-
OrganizationSettings: IOrganizationSettings;
|
8996
|
-
MemorySettings: IMemorySettings;
|
8997
|
-
Preferences: IPreferences;
|
8998
|
-
Preference_Account: IPreference_Account;
|
8999
|
-
Preference_Default: IPreference_Default;
|
9000
|
-
Preference_Notification: IPreference_Notification;
|
9001
|
-
Preference_Global: IPreference_Global;
|
9002
|
-
Preference_Global_User: IPreference_Global_User;
|
9003
|
-
Preference_Organization: IPreference_Organization;
|
9004
|
-
Preference_Teams: IPreference_Teams;
|
9005
|
-
Preference_Project: IPreference_Project;
|
9006
|
-
UserProfile: IUserProfile;
|
9007
|
-
IAuth0User: IResolversParentTypes['UserProfile'];
|
9008
|
-
IAuth0UserProfile: IResolversParentTypes['UserProfile'];
|
9009
|
-
IUserMetadata: IResolversParentTypes['UserMetadata'];
|
9010
|
-
Date: Scalars['Date'];
|
9011
|
-
IAuth0Token: IResolversParentTypes['UserProfile'];
|
9012
|
-
Auth0Identity: IAuth0Identity;
|
9013
|
-
Auth0IdentityProfileData: IAuth0IdentityProfileData;
|
9014
|
-
UserMetadata: IUserMetadata;
|
9015
|
-
UserDevice: IUserDevice;
|
9016
|
-
IntegrationConfigurationFilterInput: IIntegrationConfigurationFilterInput;
|
9017
|
-
IntegrationConfiguration: IIntegrationConfiguration;
|
9018
|
-
DateTime: Scalars['DateTime'];
|
9019
|
-
JSON: Scalars['JSON'];
|
9020
|
-
UserAccountWhere: IUserAccountWhere;
|
9021
|
-
UserAccount: IUserAccount;
|
9022
|
-
Node: IResolversParentTypes['UserAccount'] | IResolversParentTypes['OrgUserAccunt'];
|
9023
|
-
PhoneNumber: IPhoneNumber;
|
9024
|
-
UserToken: IUserToken;
|
9025
|
-
Country: ICountry;
|
9026
|
-
AsanaConnection: IAsanaConnection;
|
9027
|
-
AsanaConnectionState: IAsanaConnectionState;
|
9028
|
-
AsanaUser: IAsanaUser;
|
9029
|
-
AsanaProjects: IAsanaProjects;
|
9030
|
-
AsanaWorkspaces: IAsanaWorkspaces;
|
9031
|
-
ConfigurationInput: IConfigurationInput;
|
9032
|
-
URIInput: Scalars['URIInput'];
|
9033
|
-
Configuration: IResolversParentTypes['DefaultConfiguration'] | IResolversParentTypes['MachineConfiguration'] | IResolversParentTypes['UserConfiguration'] | IResolversParentTypes['OrganizationConfiguration'] | IResolversParentTypes['OrganizationResourceConfiguration'];
|
9034
|
-
DefaultConfiguration: IDefaultConfiguration;
|
9035
|
-
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'];
|
9036
|
-
Overrides: IOverrides;
|
9037
|
-
MachineConfiguration: IMachineConfiguration;
|
9038
|
-
UserConfiguration: IUserConfiguration;
|
9039
|
-
OrganizationConfiguration: IOrganizationConfiguration;
|
9040
|
-
OrganizationResourceConfiguration: IOrganizationResourceConfiguration;
|
9041
|
-
ConfigurationData: IConfigurationData;
|
9042
|
-
ConfigurationPolicy: IResolversParentTypes['DefaultPolicy'] | IResolversParentTypes['OrganizationPolicy'] | IResolversParentTypes['ResourcePolicy'] | IResolversParentTypes['ApplicationPolicy'];
|
9043
|
-
DefaultPolicy: IDefaultPolicy;
|
9044
|
-
OrganizationPolicy: IOrganizationPolicy;
|
9045
|
-
ResourcePolicy: IResourcePolicy;
|
9046
|
-
ApplicationPolicy: IApplicationPolicy;
|
9047
|
-
Context: IContext;
|
9048
|
-
ContributionRoles: Omit<IContributionRoles, 'permissions'> & {
|
9049
|
-
permissions?: Maybe<IResolversParentTypes['AccessRole']>;
|
9050
|
-
};
|
9051
|
-
AccessRole: IResolversParentTypes['DefaultRole'] | IResolversParentTypes['OrganizationRole'] | IResolversParentTypes['ResourceRole'] | IResolversParentTypes['ApplicationRolePermission'];
|
9052
|
-
DefaultRole: IDefaultRole;
|
9053
|
-
OrganizationRole: IOrganizationRole;
|
9054
|
-
ResourceRole: IResourceRole;
|
9055
|
-
ApplicationRolePermission: IApplicationRolePermission;
|
9056
|
-
Environment: IEnvironment;
|
9057
|
-
ProjectWhereInput: IProjectWhereInput;
|
9058
|
-
Projects: IProjects;
|
9059
|
-
ProjectSource: IProjectSource;
|
9060
|
-
ProjectParameters: IProjectParameters;
|
9061
|
-
InvoiceType: IInvoiceType;
|
9062
|
-
Float: Scalars['Float'];
|
9063
|
-
MemberInvoice: IMemberInvoice;
|
9064
|
-
ClientPhone: IClientPhone;
|
9065
|
-
AddressType: IAddressType;
|
9066
|
-
ProjectInvoice: IProjectInvoice;
|
9067
|
-
CustomerInvoice: ICustomerInvoice;
|
9068
|
-
Organization: IOrganization;
|
9069
|
-
OrgUser: IOrgUser;
|
9070
|
-
IOrgUser: IResolversParentTypes['OrgUser'];
|
9071
|
-
OrgUserAccunt: IOrgUserAccunt;
|
9072
|
-
OrganizationInvitation: IOrganizationInvitation;
|
9073
|
-
InviteMember: IInviteMember;
|
9074
|
-
Client: IClient;
|
9075
|
-
NameType: INameType;
|
9076
|
-
SocialConnect: ISocialConnect;
|
9077
|
-
OrganizationConfigValue_Input: IOrganizationConfigValue_Input;
|
9078
|
-
ConfigurationOverrides_Input: IConfigurationOverrides_Input;
|
9079
|
-
OrgDetailWhere: IOrgDetailWhere;
|
9080
|
-
OrgMember: IOrgMember;
|
9081
|
-
OrganizationData: Omit<IOrganizationData, 'resources'> & {
|
9082
|
-
resources: Array<Maybe<IResolversParentTypes['ResourceData']>>;
|
9083
|
-
};
|
9084
|
-
ResourceData: IResolversParentTypes['OrganizationResourceData'] | IResolversParentTypes['ExternalResourceData'];
|
9085
|
-
OrganizationResourceData: IOrganizationResourceData;
|
9086
|
-
IResourceData: IResolversParentTypes['OrganizationResourceData'] | IResolversParentTypes['ExternalResourceData'];
|
9087
|
-
ExternalResourceData: IExternalResourceData;
|
9088
|
-
AccountTeam: IAccountTeam;
|
9089
|
-
TeamMember: ITeamMember;
|
9090
|
-
Project_Output: IProject_Output;
|
9091
|
-
RoleInput: IRoleInput;
|
9092
|
-
Task: ITask;
|
9093
|
-
ResourceAccessRole: Omit<IResourceAccessRole, 'accessRoles'> & {
|
9094
|
-
accessRoles?: Maybe<Array<Maybe<IResolversParentTypes['AccessRole']>>>;
|
9095
|
-
};
|
9096
|
-
ResourceUser: IResourceUser;
|
9097
|
-
IResourceUserRole: IResolversParentTypes['ResourceUser'];
|
9098
|
-
UserContext: IUserContext;
|
9099
|
-
PermissionSubject: IPermissionSubject;
|
8954
|
+
UserToken: ResolverTypeWrapper<IUserToken>;
|
8955
|
+
UserTokenInput: IUserTokenInput;
|
9100
8956
|
ViewerPoliciesInput: IViewerPoliciesInput;
|
9101
|
-
PolicySubject: IPolicySubject;
|
9102
|
-
PreferencesOpenOptions_Input: IPreferencesOpenOptions_Input;
|
9103
|
-
PreferencesInput: IPreferencesInput;
|
9104
|
-
PreferencesInput_Input: IPreferencesInput_Input;
|
9105
8957
|
ViewerSettingsInput: IViewerSettingsInput;
|
9106
|
-
ViewerSettingsSubject: IViewerSettingsSubject
|
9107
|
-
|
9108
|
-
|
9109
|
-
|
9110
|
-
|
9111
|
-
|
9112
|
-
|
9113
|
-
ClientAddRequest: IClientAddRequest;
|
9114
|
-
Name_Input: IName_Input;
|
9115
|
-
ClientPhone_Input: IClientPhone_Input;
|
9116
|
-
SocialConnect_Input: ISocialConnect_Input;
|
9117
|
-
AddressType_Input: IAddressType_Input;
|
9118
|
-
ProjectAddRequest: IProjectAddRequest;
|
9119
|
-
ResourceCreationData_Input: IResourceCreationData_Input;
|
9120
|
-
ActivityCollectRequest: IActivityCollectRequest;
|
9121
|
-
IntegrationConfigurationInput: IIntegrationConfigurationInput;
|
9122
|
-
IntegraitonConfigurationId: IIntegraitonConfigurationId;
|
9123
|
-
InvoiceCreateRequest: IInvoiceCreateRequest;
|
9124
|
-
MemberInvoice_Input: IMemberInvoice_Input;
|
9125
|
-
ProjectInvoice_Input: IProjectInvoice_Input;
|
9126
|
-
CustomerInvoice_Input: ICustomerInvoice_Input;
|
9127
|
-
IntegrationConfigurationCreateOrUpdateInput: IIntegrationConfigurationCreateOrUpdateInput;
|
9128
|
-
OrganizationCreateRequest: IOrganizationCreateRequest;
|
9129
|
-
OrgUser_Input: IOrgUser_Input;
|
9130
|
-
OrganizationInvitation_Input: IOrganizationInvitation_Input;
|
9131
|
-
TaskRequest: ITaskRequest;
|
9132
|
-
TeamCreationRequest: ITeamCreationRequest;
|
9133
|
-
UserAuth0UpdateFields: IUserAuth0UpdateFields;
|
9134
|
-
PhoneNumberInput: IPhoneNumberInput;
|
9135
|
-
OrganizationRemoveRequest: IOrganizationRemoveRequest;
|
9136
|
-
UserPasswordResetInput: IUserPasswordResetInput;
|
9137
|
-
InvoiceMailRequest: IInvoiceMailRequest;
|
9138
|
-
Template: ITemplate;
|
9139
|
-
OrganizationInvitationRequest: IOrganizationInvitationRequest;
|
9140
|
-
InvoiceUpdateRequest: IInvoiceUpdateRequest;
|
9141
|
-
ClientUpdateRequest: IClientUpdateRequest;
|
9142
|
-
UpdatedClient_Input: IUpdatedClient_Input;
|
9143
|
-
UpdateProject_Input: IUpdateProject_Input;
|
9144
|
-
OrganizationUpdateRequest: IOrganizationUpdateRequest;
|
9145
|
-
Organization_Input: IOrganization_Input;
|
9146
|
-
Subscription: {};
|
9147
|
-
ConfigurationUpdateEvent: IConfigurationUpdateEvent;
|
9148
|
-
ConfigurationOverrides: IConfigurationOverrides;
|
9149
|
-
SubscribedOrganizationData: Omit<ISubscribedOrganizationData, 'resources'> & {
|
9150
|
-
resources?: Maybe<Array<Maybe<IResolversParentTypes['ResourceData']>>>;
|
9151
|
-
};
|
8958
|
+
ViewerSettingsSubject: ResolverTypeWrapper<IViewerSettingsSubject>;
|
8959
|
+
Visibility: IVisibility;
|
8960
|
+
ZipkinRoutes: IZipkinRoutes;
|
8961
|
+
};
|
8962
|
+
/** Mapping between all available schema types and the resolvers parents */
|
8963
|
+
export declare type IResolversParentTypes = {
|
8964
|
+
AccessRole: IResolversParentTypes['DefaultRole'] | IResolversParentTypes['OrganizationRole'] | IResolversParentTypes['ResourceRole'] | IResolversParentTypes['ApplicationRolePermission'];
|
9152
8965
|
AccountService: IAccountService;
|
9153
|
-
|
9154
|
-
|
9155
|
-
|
9156
|
-
|
9157
|
-
UserAccountRemoveRequest: IUserAccountRemoveRequest;
|
8966
|
+
String: Scalars['String'];
|
8967
|
+
Boolean: Scalars['Boolean'];
|
8968
|
+
AccountTeam: IAccountTeam;
|
8969
|
+
ID: Scalars['ID'];
|
9158
8970
|
AccountTeam_Input: IAccountTeam_Input;
|
9159
|
-
|
8971
|
+
ActivityCollectRequest: IActivityCollectRequest;
|
8972
|
+
Int: Scalars['Int'];
|
9160
8973
|
ActivityRecord: IActivityRecord;
|
9161
8974
|
ActivityRecordInput: IActivityRecordInput;
|
8975
|
+
AddressType: IAddressType;
|
8976
|
+
AddressType_Input: IAddressType_Input;
|
9162
8977
|
AdminIdeSettings: IAdminIdeSettings;
|
9163
|
-
|
8978
|
+
AnyObject: Scalars['AnyObject'];
|
8979
|
+
ApplicationPolicy: IApplicationPolicy;
|
8980
|
+
ApplicationRolePermission: IApplicationRolePermission;
|
8981
|
+
ApplicationSettings: IApplicationSettings;
|
8982
|
+
AsanaConnection: IAsanaConnection;
|
8983
|
+
AsanaConnectionState: IAsanaConnectionState;
|
8984
|
+
AsanaProjects: IAsanaProjects;
|
8985
|
+
AsanaUser: IAsanaUser;
|
8986
|
+
AsanaWorkspaces: IAsanaWorkspaces;
|
8987
|
+
Auth0Identity: IAuth0Identity;
|
8988
|
+
Auth0IdentityProfileData: IAuth0IdentityProfileData;
|
9164
8989
|
AuthUser: IAuthUser;
|
9165
|
-
IUser: IResolversParentTypes['AuthUser'];
|
9166
8990
|
AuthUser_Input: IAuthUser_Input;
|
9167
8991
|
CityInput: ICityInput;
|
9168
|
-
TerritorialStateInput: ITerritorialStateInput;
|
9169
8992
|
CityUpdateInput: ICityUpdateInput;
|
9170
|
-
|
8993
|
+
Client: IClient;
|
8994
|
+
ClientAddRequest: IClientAddRequest;
|
9171
8995
|
ClientCreatedEvent: IClientCreatedEvent;
|
9172
8996
|
ClientDeletedEvent: IClientDeletedEvent;
|
8997
|
+
ClientPhone: IClientPhone;
|
8998
|
+
ClientPhone_Input: IClientPhone_Input;
|
8999
|
+
ClientUpdateRequest: IClientUpdateRequest;
|
9000
|
+
Configuration: IResolversParentTypes['DefaultConfiguration'] | IResolversParentTypes['MachineConfiguration'] | IResolversParentTypes['UserConfiguration'] | IResolversParentTypes['OrganizationConfiguration'] | IResolversParentTypes['OrganizationResourceConfiguration'];
|
9001
|
+
ConfigurationData: IConfigurationData;
|
9002
|
+
ConfigurationExtensionInfo: IConfigurationExtensionInfo;
|
9003
|
+
ConfigurationInput: IConfigurationInput;
|
9173
9004
|
ConfigurationModel: IConfigurationModel;
|
9005
|
+
ConfigurationOverrides: IConfigurationOverrides;
|
9006
|
+
ConfigurationOverrides_Input: IConfigurationOverrides_Input;
|
9007
|
+
ConfigurationPolicy: IResolversParentTypes['DefaultPolicy'] | IResolversParentTypes['OrganizationPolicy'] | IResolversParentTypes['ResourcePolicy'] | IResolversParentTypes['ApplicationPolicy'];
|
9008
|
+
ConfigurationUpdateEvent: IConfigurationUpdateEvent;
|
9009
|
+
Context: IContext;
|
9010
|
+
ContributionRoles: Omit<IContributionRoles, 'permissions'> & {
|
9011
|
+
permissions?: Maybe<IResolversParentTypes['AccessRole']>;
|
9012
|
+
};
|
9013
|
+
ContributionSettings: IContributionSettings;
|
9014
|
+
ContributionSettingsProperties: IContributionSettingsProperties;
|
9015
|
+
Country: ICountry;
|
9174
9016
|
CountryInput: ICountryInput;
|
9017
|
+
CustomerInvoice: ICustomerInvoice;
|
9018
|
+
CustomerInvoice_Input: ICustomerInvoice_Input;
|
9019
|
+
Date: Scalars['Date'];
|
9020
|
+
DateTime: Scalars['DateTime'];
|
9021
|
+
DefaultConfiguration: IDefaultConfiguration;
|
9022
|
+
DefaultPolicy: IDefaultPolicy;
|
9023
|
+
DefaultRole: IDefaultRole;
|
9024
|
+
DefaultSettings: IDefaultSettings;
|
9175
9025
|
EmptyResponse: IEmptyResponse;
|
9026
|
+
Environment: IEnvironment;
|
9176
9027
|
EnvironmentPayload: IEnvironmentPayload;
|
9028
|
+
ExternalResourceData: IExternalResourceData;
|
9177
9029
|
FieldError: IFieldError;
|
9178
9030
|
GenerateSSHKeysRequest: IGenerateSSHKeysRequest;
|
9179
9031
|
GeoLocation: IGeoLocation;
|
9032
|
+
Float: Scalars['Float'];
|
9033
|
+
GlobalSettings: IGlobalSettings;
|
9034
|
+
IActivitySettings: IResolversParentTypes['AdminIdeSettings'];
|
9180
9035
|
IAuth0Identity: never;
|
9036
|
+
IAuth0Token: IResolversParentTypes['UserProfile'];
|
9037
|
+
IAuth0User: IResolversParentTypes['UserProfile'];
|
9038
|
+
IAuth0UserProfile: IResolversParentTypes['UserProfile'];
|
9181
9039
|
ICity: never;
|
9182
|
-
ITerritorialState: never;
|
9183
|
-
ICountry: never;
|
9184
9040
|
IConfigurationChangeEvent: Omit<IIConfigurationChangeEvent, 'changedConfiguration'> & {
|
9185
9041
|
changedConfiguration?: Maybe<IResolversParentTypes['Configuration']>;
|
9186
9042
|
};
|
9043
|
+
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'];
|
9187
9044
|
IConfigurationService: never;
|
9045
|
+
ICountry: never;
|
9188
9046
|
IEventWithContext: IResolversParentTypes['OrganizationCreatedEvent'] | IResolversParentTypes['OrganizationDeletedEvent'];
|
9047
|
+
IOnBoardingParams: IIOnBoardingParams;
|
9048
|
+
IOrgUser: IResolversParentTypes['OrgUser'];
|
9049
|
+
IResourceData: IResolversParentTypes['ExternalResourceData'] | IResolversParentTypes['OrganizationResourceData'];
|
9050
|
+
IResourceUserRole: IResolversParentTypes['ResourceUser'];
|
9189
9051
|
IResourceUtilizationSettings: never;
|
9052
|
+
ISettingsSubject: IResolversParentTypes['ApplicationSettings'] | IResolversParentTypes['DefaultSettings'] | IResolversParentTypes['GlobalSettings'] | IResolversParentTypes['MachineSettings'] | IResolversParentTypes['MemorySettings'] | IResolversParentTypes['OrganizationResourceSettings'] | IResolversParentTypes['OrganizationSettings'] | IResolversParentTypes['UserSettings'];
|
9190
9053
|
ISshKeySettings: IResolversParentTypes['SshKeySettings'];
|
9054
|
+
ITerritorialState: never;
|
9055
|
+
IUser: IResolversParentTypes['AuthUser'];
|
9056
|
+
IUserMetadata: IResolversParentTypes['UserMetadata'];
|
9057
|
+
IntegraitonConfigurationId: IIntegraitonConfigurationId;
|
9058
|
+
IntegrationConfiguration: IIntegrationConfiguration;
|
9059
|
+
IntegrationConfigurationCreateOrUpdateInput: IIntegrationConfigurationCreateOrUpdateInput;
|
9060
|
+
IntegrationConfigurationFilterInput: IIntegrationConfigurationFilterInput;
|
9061
|
+
IntegrationConfigurationInput: IIntegrationConfigurationInput;
|
9062
|
+
InviteMember: IInviteMember;
|
9063
|
+
InvoiceCreateRequest: IInvoiceCreateRequest;
|
9191
9064
|
InvoiceCreatedEvent: IInvoiceCreatedEvent;
|
9192
9065
|
InvoiceDeletedEvent: IInvoiceDeletedEvent;
|
9066
|
+
InvoiceMailRequest: IInvoiceMailRequest;
|
9067
|
+
InvoiceType: IInvoiceType;
|
9068
|
+
InvoiceUpdateRequest: IInvoiceUpdateRequest;
|
9069
|
+
JSON: Scalars['JSON'];
|
9193
9070
|
JSONObject: Scalars['JSONObject'];
|
9194
9071
|
KeyPathSegment: IKeyPathSegment;
|
9195
9072
|
LoginError: ILoginError;
|
9073
|
+
MachineConfiguration: IMachineConfiguration;
|
9074
|
+
MachineSettings: IMachineSettings;
|
9075
|
+
MemberInvoice: IMemberInvoice;
|
9076
|
+
MemberInvoice_Input: IMemberInvoice_Input;
|
9077
|
+
MemorySettings: IMemorySettings;
|
9196
9078
|
MenuItem: IMenuItem;
|
9079
|
+
Mutation: {};
|
9080
|
+
NameType: INameType;
|
9081
|
+
Name_Input: IName_Input;
|
9082
|
+
Node: IResolversParentTypes['OrgUserAccunt'] | IResolversParentTypes['UserAccount'];
|
9197
9083
|
Observable: Scalars['Observable'];
|
9084
|
+
OrgDetailWhere: IOrgDetailWhere;
|
9085
|
+
OrgMember: IOrgMember;
|
9086
|
+
OrgType: IOrgType;
|
9087
|
+
OrgUser: IOrgUser;
|
9088
|
+
OrgUserAccunt: IOrgUserAccunt;
|
9089
|
+
OrgUser_Input: IOrgUser_Input;
|
9090
|
+
Organization: IOrganization;
|
9091
|
+
OrganizationConfigValue_Input: IOrganizationConfigValue_Input;
|
9092
|
+
OrganizationConfiguration: IOrganizationConfiguration;
|
9093
|
+
OrganizationCreateRequest: IOrganizationCreateRequest;
|
9198
9094
|
OrganizationCreatedEvent: IOrganizationCreatedEvent;
|
9095
|
+
OrganizationData: Omit<IOrganizationData, 'resources'> & {
|
9096
|
+
resources: Array<Maybe<IResolversParentTypes['ResourceData']>>;
|
9097
|
+
};
|
9199
9098
|
OrganizationDeletedEvent: IOrganizationDeletedEvent;
|
9200
9099
|
OrganizationIdentifier: IOrganizationIdentifier;
|
9100
|
+
OrganizationInvitation: IOrganizationInvitation;
|
9101
|
+
OrganizationInvitationDecode: IOrganizationInvitationDecode;
|
9102
|
+
OrganizationInvitationRequest: IOrganizationInvitationRequest;
|
9103
|
+
OrganizationInvitation_Input: IOrganizationInvitation_Input;
|
9201
9104
|
OrganizationMember: IOrganizationMember;
|
9105
|
+
OrganizationNotificationValues: IOrganizationNotificationValues;
|
9106
|
+
OrganizationPolicy: IOrganizationPolicy;
|
9107
|
+
OrganizationRemoveRequest: IOrganizationRemoveRequest;
|
9108
|
+
OrganizationResourceConfiguration: IOrganizationResourceConfiguration;
|
9109
|
+
OrganizationResourceData: IOrganizationResourceData;
|
9110
|
+
OrganizationResourceSettings: IOrganizationResourceSettings;
|
9111
|
+
OrganizationRole: IOrganizationRole;
|
9202
9112
|
OrganizationService: IOrganizationService;
|
9113
|
+
OrganizationSettings: IOrganizationSettings;
|
9114
|
+
OrganizationUpdateRequest: IOrganizationUpdateRequest;
|
9115
|
+
Organization_Input: IOrganization_Input;
|
9203
9116
|
OrganizationsDeactivatedEvent: IOrganizationsDeactivatedEvent;
|
9204
9117
|
OrganizationsDeletedEvent: IOrganizationsDeletedEvent;
|
9118
|
+
Overrides: IOverrides;
|
9205
9119
|
PageInfo: IPageInfo;
|
9120
|
+
PermissionSubject: IPermissionSubject;
|
9121
|
+
PhoneNumber: IPhoneNumber;
|
9122
|
+
PhoneNumberInput: IPhoneNumberInput;
|
9123
|
+
PolicySubject: IPolicySubject;
|
9124
|
+
Position: IPosition;
|
9206
9125
|
PreferenceItem: IPreferenceItem;
|
9126
|
+
Preference_Account: IPreference_Account;
|
9127
|
+
Preference_Default: IPreference_Default;
|
9128
|
+
Preference_Global: IPreference_Global;
|
9129
|
+
Preference_Global_User: IPreference_Global_User;
|
9130
|
+
Preference_Notification: IPreference_Notification;
|
9131
|
+
Preference_Organization: IPreference_Organization;
|
9132
|
+
Preference_Project: IPreference_Project;
|
9133
|
+
Preference_Teams: IPreference_Teams;
|
9134
|
+
Preferences: IPreferences;
|
9135
|
+
PreferencesInput: IPreferencesInput;
|
9136
|
+
PreferencesInput_Input: IPreferencesInput_Input;
|
9137
|
+
PreferencesOpenOptions_Input: IPreferencesOpenOptions_Input;
|
9138
|
+
PreferencesResponse: IPreferencesResponse;
|
9139
|
+
PreferencesType: IPreferencesType;
|
9140
|
+
ProjectAddRequest: IProjectAddRequest;
|
9207
9141
|
ProjectCreatedEvent: IProjectCreatedEvent;
|
9208
9142
|
ProjectDeletedEvent: IProjectDeletedEvent;
|
9143
|
+
ProjectInvoice: IProjectInvoice;
|
9144
|
+
ProjectInvoice_Input: IProjectInvoice_Input;
|
9145
|
+
ProjectParameters: IProjectParameters;
|
9209
9146
|
ProjectParameters_Input: IProjectParameters_Input;
|
9147
|
+
ProjectSource: IProjectSource;
|
9210
9148
|
ProjectSource_Input: IProjectSource_Input;
|
9149
|
+
ProjectWhereInput: IProjectWhereInput;
|
9211
9150
|
Project_Input: IProject_Input;
|
9151
|
+
Project_Output: IProject_Output;
|
9152
|
+
Projects: IProjects;
|
9153
|
+
Query: {};
|
9154
|
+
Range: IRange;
|
9155
|
+
ResourceAccessRole: Omit<IResourceAccessRole, 'accessRoles'> & {
|
9156
|
+
accessRoles?: Maybe<Array<Maybe<IResolversParentTypes['AccessRole']>>>;
|
9157
|
+
};
|
9212
9158
|
ResourceCreatedEvent: IResourceCreatedEvent;
|
9159
|
+
ResourceCreationData_Input: IResourceCreationData_Input;
|
9160
|
+
ResourceData: IResolversParentTypes['OrganizationResourceData'] | IResolversParentTypes['ExternalResourceData'];
|
9213
9161
|
ResourceDeletedEvent: IResourceDeletedEvent;
|
9162
|
+
ResourcePolicy: IResourcePolicy;
|
9163
|
+
ResourceRole: IResourceRole;
|
9164
|
+
ResourceUser: IResourceUser;
|
9165
|
+
RoleInput: IRoleInput;
|
9214
9166
|
RouteData: IRouteData;
|
9167
|
+
Settings: ISettings;
|
9168
|
+
SettingsCascade: Omit<ISettingsCascade, 'subjects'> & {
|
9169
|
+
subjects?: Maybe<Array<Maybe<IResolversParentTypes['SettingsSubject']>>>;
|
9170
|
+
};
|
9171
|
+
SettingsGroup: ISettingsGroup;
|
9172
|
+
SettingsSection: ISettingsSection;
|
9173
|
+
SettingsSubject: IResolversParentTypes['UserSettings'] | IResolversParentTypes['ApplicationSettings'] | IResolversParentTypes['MachineSettings'] | IResolversParentTypes['OrganizationResourceSettings'] | IResolversParentTypes['GlobalSettings'] | IResolversParentTypes['OrganizationSettings'] | IResolversParentTypes['MemorySettings'] | IResolversParentTypes['DefaultSettings'];
|
9174
|
+
SocialConnect: ISocialConnect;
|
9175
|
+
SocialConnect_Input: ISocialConnect_Input;
|
9176
|
+
SshKey: ISshKey;
|
9177
|
+
SshKeyInput: ISshKeyInput;
|
9215
9178
|
SshKeyModel: ISshKeyModel;
|
9216
9179
|
SshKeyService: ISshKeyService;
|
9217
9180
|
SshKeySettings: ISshKeySettings;
|
9181
|
+
SubscribedOrganizationData: Omit<ISubscribedOrganizationData, 'resources'> & {
|
9182
|
+
resources?: Maybe<Array<Maybe<IResolversParentTypes['ResourceData']>>>;
|
9183
|
+
};
|
9184
|
+
Subscription: {};
|
9185
|
+
Task: ITask;
|
9186
|
+
TaskRequest: ITaskRequest;
|
9218
9187
|
TeamCreateRequest: ITeamCreateRequest;
|
9188
|
+
TeamCreationRequest: ITeamCreationRequest;
|
9219
9189
|
TeamInvitationEmailVariables: ITeamInvitationEmailVariables;
|
9190
|
+
TeamMember: ITeamMember;
|
9191
|
+
TeamMember_Input: ITeamMember_Input;
|
9220
9192
|
TeamRemoveRequest: ITeamRemoveRequest;
|
9221
9193
|
TeamService: ITeamService;
|
9194
|
+
TeamType: ITeamType;
|
9222
9195
|
TeamUpdateRequest: ITeamUpdateRequest;
|
9196
|
+
Template: ITemplate;
|
9197
|
+
TerritorialStateInput: ITerritorialStateInput;
|
9198
|
+
TerritorialStateUpdateInput: ITerritorialStateUpdateInput;
|
9223
9199
|
Time: Scalars['Time'];
|
9200
|
+
URI: Scalars['URI'];
|
9201
|
+
URIInput: Scalars['URIInput'];
|
9202
|
+
UpdateProject_Input: IUpdateProject_Input;
|
9203
|
+
UpdatedClient_Input: IUpdatedClient_Input;
|
9204
|
+
UserAccount: IUserAccount;
|
9205
|
+
UserAccountCreateRequest: IUserAccountCreateRequest;
|
9224
9206
|
UserAccountCreatedDetailedEvent: IUserAccountCreatedDetailedEvent;
|
9225
9207
|
UserAccountCreatedEvent: IUserAccountCreatedEvent;
|
9208
|
+
UserAccountRemoveRequest: IUserAccountRemoveRequest;
|
9226
9209
|
UserAccountRemovedEvent: IUserAccountRemovedEvent;
|
9210
|
+
UserAccountUpdateRequest: IUserAccountUpdateRequest;
|
9211
|
+
UserAccountWhere: IUserAccountWhere;
|
9212
|
+
UserAccount_Input: IUserAccount_Input;
|
9213
|
+
UserAuth0UpdateFields: IUserAuth0UpdateFields;
|
9214
|
+
UserConfiguration: IUserConfiguration;
|
9215
|
+
UserContext: IUserContext;
|
9216
|
+
UserDevice: IUserDevice;
|
9217
|
+
UserMetadata: IUserMetadata;
|
9227
9218
|
UserOrg: IUserOrg;
|
9228
9219
|
UserOrg_Input: IUserOrg_Input;
|
9220
|
+
UserPasswordResetInput: IUserPasswordResetInput;
|
9229
9221
|
UserPreviousValues: IUserPreviousValues;
|
9222
|
+
UserProfile: IUserProfile;
|
9223
|
+
UserSettings: IUserSettings;
|
9230
9224
|
UserState: IUserState;
|
9225
|
+
UserToken: IUserToken;
|
9226
|
+
UserTokenInput: IUserTokenInput;
|
9227
|
+
ViewerPoliciesInput: IViewerPoliciesInput;
|
9228
|
+
ViewerSettingsInput: IViewerSettingsInput;
|
9229
|
+
ViewerSettingsSubject: IViewerSettingsSubject;
|
9231
9230
|
};
|
9232
9231
|
export declare type IaddAccountContextDirectiveArgs = {};
|
9233
9232
|
export declare type IaddAccountContextDirectiveResolver<Result, Parent, ContextType = MyContext, Args = IaddAccountContextDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
@@ -9690,32 +9689,96 @@ export declare type IIConfigurationChangeEventResolvers<ContextType = MyContext,
|
|
9690
9689
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9691
9690
|
};
|
9692
9691
|
export declare type IIConfigurationModelResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IConfigurationModel'] = IResolversParentTypes['IConfigurationModel']> = {
|
9693
|
-
__resolveType: TypeResolveFn<'
|
9692
|
+
__resolveType: TypeResolveFn<'ApplicationPolicy' | 'ApplicationRolePermission' | 'DefaultConfiguration' | 'DefaultPolicy' | 'DefaultRole' | 'MachineConfiguration' | 'OrganizationConfiguration' | 'OrganizationPolicy' | 'OrganizationResourceConfiguration' | 'OrganizationRole' | 'ResourcePolicy' | 'ResourceRole' | 'UserConfiguration', ParentType, ContextType>;
|
9694
9693
|
resource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
9695
9694
|
target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
9696
9695
|
contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
9697
9696
|
keys?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
9698
9697
|
overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
|
9699
9698
|
};
|
9700
|
-
export declare type IIConfigurationServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IConfigurationService'] = IResolversParentTypes['IConfigurationService']> = {
|
9701
|
-
__resolveType: TypeResolveFn<null, ParentType, ContextType>;
|
9702
|
-
updateValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IIConfigurationServiceupdateValueArgs, 'key' | 'value' | 'overrides'>>;
|
9699
|
+
export declare type IIConfigurationServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IConfigurationService'] = IResolversParentTypes['IConfigurationService']> = {
|
9700
|
+
__resolveType: TypeResolveFn<null, ParentType, ContextType>;
|
9701
|
+
updateValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IIConfigurationServiceupdateValueArgs, 'key' | 'value' | 'overrides'>>;
|
9702
|
+
};
|
9703
|
+
export declare type IICountryResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ICountry'] = IResolversParentTypes['ICountry']> = {
|
9704
|
+
__resolveType: TypeResolveFn<null, ParentType, ContextType>;
|
9705
|
+
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
9706
|
+
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
9707
|
+
phone_code?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
9708
|
+
currency?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9709
|
+
currency_symbol?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9710
|
+
emoji?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9711
|
+
location?: Resolver<Maybe<IResolversTypes['GeoLocation']>, ParentType, ContextType>;
|
9712
|
+
createdAt?: Resolver<IResolversTypes['Date'], ParentType, ContextType>;
|
9713
|
+
updatedAt?: Resolver<Maybe<IResolversTypes['Date']>, ParentType, ContextType>;
|
9714
|
+
};
|
9715
|
+
export declare type IIEventWithContextResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IEventWithContext'] = IResolversParentTypes['IEventWithContext']> = {
|
9716
|
+
__resolveType: TypeResolveFn<'OrganizationCreatedEvent' | 'OrganizationDeletedEvent', ParentType, ContextType>;
|
9717
|
+
userContext?: Resolver<Maybe<IResolversTypes['UserContext']>, ParentType, ContextType>;
|
9718
|
+
};
|
9719
|
+
export declare type IIOrgUserResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IOrgUser'] = IResolversParentTypes['IOrgUser']> = {
|
9720
|
+
__resolveType: TypeResolveFn<'OrgUser', ParentType, ContextType>;
|
9721
|
+
role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
|
9722
|
+
isSelf?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
9723
|
+
orgName?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
9724
|
+
};
|
9725
|
+
export declare type IIResourceDataResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IResourceData'] = IResolversParentTypes['IResourceData']> = {
|
9726
|
+
__resolveType: TypeResolveFn<'ExternalResourceData' | 'OrganizationResourceData', ParentType, ContextType>;
|
9727
|
+
uri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
9728
|
+
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9729
|
+
index?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
9730
|
+
};
|
9731
|
+
export declare type IIResourceUserRoleResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IResourceUserRole'] = IResolversParentTypes['IResourceUserRole']> = {
|
9732
|
+
__resolveType: TypeResolveFn<'ResourceUser', ParentType, ContextType>;
|
9733
|
+
role?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9734
|
+
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9735
|
+
isSelf?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9736
|
+
orgName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9737
|
+
};
|
9738
|
+
export declare type IIResourceUtilizationSettingsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IResourceUtilizationSettings'] = IResolversParentTypes['IResourceUtilizationSettings']> = {
|
9739
|
+
__resolveType: TypeResolveFn<null, ParentType, ContextType>;
|
9740
|
+
subTopic?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9741
|
+
adminApiNamespace?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9742
|
+
};
|
9743
|
+
export declare type IISettingsSubjectResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ISettingsSubject'] = IResolversParentTypes['ISettingsSubject']> = {
|
9744
|
+
__resolveType: TypeResolveFn<'ApplicationSettings' | 'DefaultSettings' | 'GlobalSettings' | 'MachineSettings' | 'MemorySettings' | 'OrganizationResourceSettings' | 'OrganizationSettings' | 'UserSettings', ParentType, ContextType>;
|
9745
|
+
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
9746
|
+
latestSettings?: Resolver<Maybe<IResolversTypes['Settings']>, ParentType, ContextType>;
|
9747
|
+
settingsURL?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
|
9748
|
+
viewerCanAdminister?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
9749
|
+
settingsCascade?: Resolver<IResolversTypes['SettingsCascade'], ParentType, ContextType>;
|
9703
9750
|
};
|
9704
|
-
export declare type
|
9751
|
+
export declare type IISshKeySettingsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ISshKeySettings'] = IResolversParentTypes['ISshKeySettings']> = {
|
9752
|
+
__resolveType: TypeResolveFn<'SshKeySettings', ParentType, ContextType>;
|
9753
|
+
subTopic?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9754
|
+
sshNamespace?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9755
|
+
};
|
9756
|
+
export declare type IITerritorialStateResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ITerritorialState'] = IResolversParentTypes['ITerritorialState']> = {
|
9705
9757
|
__resolveType: TypeResolveFn<null, ParentType, ContextType>;
|
9706
9758
|
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
9707
9759
|
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
9708
|
-
|
9709
|
-
currency?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9710
|
-
currency_symbol?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9711
|
-
emoji?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9760
|
+
country?: Resolver<IResolversTypes['ICountry'], ParentType, ContextType>;
|
9712
9761
|
location?: Resolver<Maybe<IResolversTypes['GeoLocation']>, ParentType, ContextType>;
|
9713
9762
|
createdAt?: Resolver<IResolversTypes['Date'], ParentType, ContextType>;
|
9714
9763
|
updatedAt?: Resolver<Maybe<IResolversTypes['Date']>, ParentType, ContextType>;
|
9715
9764
|
};
|
9716
|
-
export declare type
|
9717
|
-
__resolveType: TypeResolveFn<'
|
9718
|
-
|
9765
|
+
export declare type IIUserResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IUser'] = IResolversParentTypes['IUser']> = {
|
9766
|
+
__resolveType: TypeResolveFn<'AuthUser', ParentType, ContextType>;
|
9767
|
+
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
9768
|
+
username?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9769
|
+
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9770
|
+
};
|
9771
|
+
export declare type IIUserMetadataResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IUserMetadata'] = IResolversParentTypes['IUserMetadata']> = {
|
9772
|
+
__resolveType: TypeResolveFn<'UserMetadata', ParentType, ContextType>;
|
9773
|
+
last_name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9774
|
+
first_name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9775
|
+
username?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9776
|
+
phone_number?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9777
|
+
work_email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9778
|
+
country?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9779
|
+
company_name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9780
|
+
dob?: Resolver<Maybe<IResolversTypes['Date']>, ParentType, ContextType>;
|
9781
|
+
zip_code?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
9719
9782
|
};
|
9720
9783
|
export declare type IIntegraitonConfigurationIdResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IntegraitonConfigurationId'] = IResolversParentTypes['IntegraitonConfigurationId']> = {
|
9721
9784
|
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -9778,70 +9841,6 @@ export declare type IInvoiceTypeResolvers<ContextType = MyContext, ParentType ex
|
|
9778
9841
|
updatedAt?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
|
9779
9842
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9780
9843
|
};
|
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<'OrganizationResourceData' | 'ExternalResourceData', 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<'DefaultSettings' | 'UserSettings' | 'ApplicationSettings' | 'MachineSettings' | 'OrganizationResourceSettings' | 'GlobalSettings' | 'OrganizationSettings' | 'MemorySettings', 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']> = {
|
9819
|
-
__resolveType: TypeResolveFn<null, ParentType, ContextType>;
|
9820
|
-
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
9821
|
-
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
9822
|
-
country?: Resolver<IResolversTypes['ICountry'], ParentType, ContextType>;
|
9823
|
-
location?: Resolver<Maybe<IResolversTypes['GeoLocation']>, ParentType, ContextType>;
|
9824
|
-
createdAt?: Resolver<IResolversTypes['Date'], ParentType, ContextType>;
|
9825
|
-
updatedAt?: Resolver<Maybe<IResolversTypes['Date']>, ParentType, ContextType>;
|
9826
|
-
};
|
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>;
|
9844
|
-
};
|
9845
9844
|
export interface IJSONScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['JSON'], any> {
|
9846
9845
|
name: 'JSON';
|
9847
9846
|
}
|
@@ -9944,7 +9943,7 @@ export declare type IMutationResolvers<ContextType = MyContext, ParentType exten
|
|
9944
9943
|
resetUserPassword?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationresetUserPasswordArgs, 'input'>>;
|
9945
9944
|
sendInvoiceMail?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationsendInvoiceMailArgs, 'request'>>;
|
9946
9945
|
sendOrganizationInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationsendOrganizationInvitationArgs, never>>;
|
9947
|
-
sendUserPasswordResetEmail?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationsendUserPasswordResetEmailArgs, '
|
9946
|
+
sendUserPasswordResetEmail?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationsendUserPasswordResetEmailArgs, 'email'>>;
|
9948
9947
|
setSettingsValueByResource?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationsetSettingsValueByResourceArgs, never>>;
|
9949
9948
|
toggleSidebar?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationtoggleSidebarArgs, 'state'>>;
|
9950
9949
|
updateAuth0UserPassword?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationupdateAuth0UserPasswordArgs, never>>;
|
@@ -9977,12 +9976,41 @@ export declare type INameTypeResolvers<ContextType = MyContext, ParentType exten
|
|
9977
9976
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9978
9977
|
};
|
9979
9978
|
export declare type INodeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Node'] = IResolversParentTypes['Node']> = {
|
9980
|
-
__resolveType: TypeResolveFn<'
|
9979
|
+
__resolveType: TypeResolveFn<'OrgUserAccunt' | 'UserAccount', ParentType, ContextType>;
|
9981
9980
|
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
9982
9981
|
};
|
9983
9982
|
export interface IObservableScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Observable'], any> {
|
9984
9983
|
name: 'Observable';
|
9985
9984
|
}
|
9985
|
+
export declare type IOrgMemberResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrgMember'] = IResolversParentTypes['OrgMember']> = {
|
9986
|
+
_id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9987
|
+
userId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9988
|
+
role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
|
9989
|
+
inactive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9990
|
+
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9991
|
+
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9992
|
+
crossCheckEmail?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9993
|
+
teamNames?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
9994
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9995
|
+
};
|
9996
|
+
export declare type IOrgUserResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrgUser'] = IResolversParentTypes['OrgUser']> = {
|
9997
|
+
userId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
9998
|
+
role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
|
9999
|
+
inactive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
10000
|
+
orgName?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
10001
|
+
user?: Resolver<IResolversTypes['OrgUserAccunt'], ParentType, ContextType>;
|
10002
|
+
isSelf?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
10003
|
+
crossCheckEmail?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10004
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10005
|
+
};
|
10006
|
+
export declare type IOrgUserAccuntResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrgUserAccunt'] = IResolversParentTypes['OrgUserAccunt']> = {
|
10007
|
+
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
10008
|
+
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10009
|
+
alias?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
10010
|
+
username?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10011
|
+
emailVerified?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
10012
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10013
|
+
};
|
9986
10014
|
export declare type IOrganizationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Organization'] = IResolversParentTypes['Organization']> = {
|
9987
10015
|
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
9988
10016
|
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -10106,14 +10134,6 @@ export declare type IOrganizationRoleResolvers<ContextType = MyContext, ParentTy
|
|
10106
10134
|
overrides?: Resolver<Maybe<Array<Maybe<IResolversTypes['Overrides']>>>, ParentType, ContextType>;
|
10107
10135
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10108
10136
|
};
|
10109
|
-
export declare type IOrganizationsDeactivatedEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrganizationsDeactivatedEvent'] = IResolversParentTypes['OrganizationsDeactivatedEvent']> = {
|
10110
|
-
deactivatedOrganizationsIds?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
10111
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10112
|
-
};
|
10113
|
-
export declare type IOrganizationsDeletedEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrganizationsDeletedEvent'] = IResolversParentTypes['OrganizationsDeletedEvent']> = {
|
10114
|
-
deletedOrganizationIds?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
10115
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10116
|
-
};
|
10117
10137
|
export declare type IOrganizationServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrganizationService'] = IResolversParentTypes['OrganizationService']> = {
|
10118
10138
|
getOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IOrganizationServicegetOrganizationArgs, never>>;
|
10119
10139
|
createDefaultOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IOrganizationServicecreateDefaultOrganizationArgs, never>>;
|
@@ -10134,33 +10154,12 @@ export declare type IOrganizationSettingsResolvers<ContextType = MyContext, Pare
|
|
10134
10154
|
settingsCascade?: Resolver<IResolversTypes['SettingsCascade'], ParentType, ContextType>;
|
10135
10155
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10136
10156
|
};
|
10137
|
-
export declare type
|
10138
|
-
|
10139
|
-
userId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10140
|
-
role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
|
10141
|
-
inactive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
10142
|
-
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10143
|
-
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10144
|
-
crossCheckEmail?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10145
|
-
teamNames?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
10146
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10147
|
-
};
|
10148
|
-
export declare type IOrgUserResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrgUser'] = IResolversParentTypes['OrgUser']> = {
|
10149
|
-
userId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
10150
|
-
role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
|
10151
|
-
inactive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
10152
|
-
orgName?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
10153
|
-
user?: Resolver<IResolversTypes['OrgUserAccunt'], ParentType, ContextType>;
|
10154
|
-
isSelf?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
10155
|
-
crossCheckEmail?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10157
|
+
export declare type IOrganizationsDeactivatedEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrganizationsDeactivatedEvent'] = IResolversParentTypes['OrganizationsDeactivatedEvent']> = {
|
10158
|
+
deactivatedOrganizationsIds?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
10156
10159
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10157
10160
|
};
|
10158
|
-
export declare type
|
10159
|
-
|
10160
|
-
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10161
|
-
alias?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
10162
|
-
username?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10163
|
-
emailVerified?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
10161
|
+
export declare type IOrganizationsDeletedEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrganizationsDeletedEvent'] = IResolversParentTypes['OrganizationsDeletedEvent']> = {
|
10162
|
+
deletedOrganizationIds?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
10164
10163
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10165
10164
|
};
|
10166
10165
|
export declare type IOverridesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Overrides'] = IResolversParentTypes['Overrides']> = {
|
@@ -10194,6 +10193,17 @@ export declare type IPositionResolvers<ContextType = MyContext, ParentType exten
|
|
10194
10193
|
character?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
10195
10194
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10196
10195
|
};
|
10196
|
+
export declare type IPreferenceItemResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['PreferenceItem'] = IResolversParentTypes['PreferenceItem']> = {
|
10197
|
+
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10198
|
+
type?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10199
|
+
default?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10200
|
+
description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10201
|
+
categoryType?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10202
|
+
settings?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10203
|
+
enum?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
10204
|
+
enumDescriptions?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
10205
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10206
|
+
};
|
10197
10207
|
export declare type IPreference_AccountResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Preference_Account'] = IResolversParentTypes['Preference_Account']> = {
|
10198
10208
|
default?: Resolver<Maybe<IResolversTypes['Preference_Default']>, ParentType, ContextType>;
|
10199
10209
|
notification?: Resolver<Maybe<IResolversTypes['Preference_Notification']>, ParentType, ContextType>;
|
@@ -10233,17 +10243,6 @@ export declare type IPreference_TeamsResolvers<ContextType = MyContext, ParentTy
|
|
10233
10243
|
visibility?: Resolver<Maybe<IResolversTypes['Visibility']>, ParentType, ContextType>;
|
10234
10244
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10235
10245
|
};
|
10236
|
-
export declare type IPreferenceItemResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['PreferenceItem'] = IResolversParentTypes['PreferenceItem']> = {
|
10237
|
-
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10238
|
-
type?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10239
|
-
default?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10240
|
-
description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10241
|
-
categoryType?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10242
|
-
settings?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10243
|
-
enum?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
10244
|
-
enumDescriptions?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
10245
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10246
|
-
};
|
10247
10246
|
export declare type IPreferencesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Preferences'] = IResolversParentTypes['Preferences']> = {
|
10248
10247
|
account?: Resolver<Maybe<IResolversTypes['Preference_Account']>, ParentType, ContextType>;
|
10249
10248
|
defaultSetting?: Resolver<Maybe<Array<Maybe<IResolversTypes['SettingsGroup']>>>, ParentType, ContextType>;
|
@@ -10266,16 +10265,6 @@ export declare type IPreferencesTypeResolvers<ContextType = MyContext, ParentTyp
|
|
10266
10265
|
data?: Resolver<Maybe<Array<Maybe<IResolversTypes['ContributionSettings']>>>, ParentType, ContextType>;
|
10267
10266
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10268
10267
|
};
|
10269
|
-
export declare type IProject_OutputResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Project_Output'] = IResolversParentTypes['Project_Output']> = {
|
10270
|
-
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10271
|
-
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
10272
|
-
clientId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10273
|
-
teams?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
10274
|
-
status?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10275
|
-
orgName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10276
|
-
integrationConfigurationId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10277
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10278
|
-
};
|
10279
10268
|
export declare type IProjectCreatedEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ProjectCreatedEvent'] = IResolversParentTypes['ProjectCreatedEvent']> = {
|
10280
10269
|
createdProject?: Resolver<Maybe<IResolversTypes['Projects']>, ParentType, ContextType>;
|
10281
10270
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
@@ -10298,6 +10287,24 @@ export declare type IProjectParametersResolvers<ContextType = MyContext, ParentT
|
|
10298
10287
|
isPrivate?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
10299
10288
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10300
10289
|
};
|
10290
|
+
export declare type IProjectSourceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ProjectSource'] = IResolversParentTypes['ProjectSource']> = {
|
10291
|
+
location?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10292
|
+
type?: Resolver<Maybe<IResolversTypes['ProjectSourceType']>, ParentType, ContextType>;
|
10293
|
+
parameters?: Resolver<Maybe<IResolversTypes['ProjectParameters']>, ParentType, ContextType>;
|
10294
|
+
providers?: Resolver<Maybe<IResolversTypes['ProjectSourceProviders']>, ParentType, ContextType>;
|
10295
|
+
language?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10296
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10297
|
+
};
|
10298
|
+
export declare type IProject_OutputResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Project_Output'] = IResolversParentTypes['Project_Output']> = {
|
10299
|
+
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10300
|
+
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
10301
|
+
clientId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10302
|
+
teams?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
10303
|
+
status?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10304
|
+
orgName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10305
|
+
integrationConfigurationId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10306
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10307
|
+
};
|
10301
10308
|
export declare type IProjectsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Projects'] = IResolversParentTypes['Projects']> = {
|
10302
10309
|
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
10303
10310
|
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
@@ -10315,14 +10322,6 @@ export declare type IProjectsResolvers<ContextType = MyContext, ParentType exten
|
|
10315
10322
|
createdAt?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
|
10316
10323
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10317
10324
|
};
|
10318
|
-
export declare type IProjectSourceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ProjectSource'] = IResolversParentTypes['ProjectSource']> = {
|
10319
|
-
location?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10320
|
-
type?: Resolver<Maybe<IResolversTypes['ProjectSourceType']>, ParentType, ContextType>;
|
10321
|
-
parameters?: Resolver<Maybe<IResolversTypes['ProjectParameters']>, ParentType, ContextType>;
|
10322
|
-
providers?: Resolver<Maybe<IResolversTypes['ProjectSourceProviders']>, ParentType, ContextType>;
|
10323
|
-
language?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10324
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10325
|
-
};
|
10326
10325
|
export declare type IQueryResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Query'] = IResolversParentTypes['Query']> = {
|
10327
10326
|
GetSshKey?: Resolver<Maybe<IResolversTypes['SshKey']>, ParentType, ContextType, RequireFields<IQueryGetSshKeyArgs, 'id'>>;
|
10328
10327
|
decodeOrganizationInvitation?: Resolver<Maybe<IResolversTypes['OrganizationInvitationDecode']>, ParentType, ContextType, RequireFields<IQuerydecodeOrganizationInvitationArgs, 'token'>>;
|
@@ -10802,12 +10801,6 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
10802
10801
|
IConfigurationService?: IIConfigurationServiceResolvers<ContextType>;
|
10803
10802
|
ICountry?: IICountryResolvers<ContextType>;
|
10804
10803
|
IEventWithContext?: IIEventWithContextResolvers<ContextType>;
|
10805
|
-
IntegraitonConfigurationId?: IIntegraitonConfigurationIdResolvers<ContextType>;
|
10806
|
-
IntegrationConfiguration?: IIntegrationConfigurationResolvers<ContextType>;
|
10807
|
-
InviteMember?: IInviteMemberResolvers<ContextType>;
|
10808
|
-
InvoiceCreatedEvent?: IInvoiceCreatedEventResolvers<ContextType>;
|
10809
|
-
InvoiceDeletedEvent?: IInvoiceDeletedEventResolvers<ContextType>;
|
10810
|
-
InvoiceType?: IInvoiceTypeResolvers<ContextType>;
|
10811
10804
|
IOrgUser?: IIOrgUserResolvers<ContextType>;
|
10812
10805
|
IResourceData?: IIResourceDataResolvers<ContextType>;
|
10813
10806
|
IResourceUserRole?: IIResourceUserRoleResolvers<ContextType>;
|
@@ -10817,6 +10810,12 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
10817
10810
|
ITerritorialState?: IITerritorialStateResolvers<ContextType>;
|
10818
10811
|
IUser?: IIUserResolvers<ContextType>;
|
10819
10812
|
IUserMetadata?: IIUserMetadataResolvers<ContextType>;
|
10813
|
+
IntegraitonConfigurationId?: IIntegraitonConfigurationIdResolvers<ContextType>;
|
10814
|
+
IntegrationConfiguration?: IIntegrationConfigurationResolvers<ContextType>;
|
10815
|
+
InviteMember?: IInviteMemberResolvers<ContextType>;
|
10816
|
+
InvoiceCreatedEvent?: IInvoiceCreatedEventResolvers<ContextType>;
|
10817
|
+
InvoiceDeletedEvent?: IInvoiceDeletedEventResolvers<ContextType>;
|
10818
|
+
InvoiceType?: IInvoiceTypeResolvers<ContextType>;
|
10820
10819
|
JSON?: GraphQLScalarType;
|
10821
10820
|
JSONObject?: GraphQLScalarType;
|
10822
10821
|
LoginError?: ILoginErrorResolvers<ContextType>;
|
@@ -10829,6 +10828,9 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
10829
10828
|
NameType?: INameTypeResolvers<ContextType>;
|
10830
10829
|
Node?: INodeResolvers<ContextType>;
|
10831
10830
|
Observable?: GraphQLScalarType;
|
10831
|
+
OrgMember?: IOrgMemberResolvers<ContextType>;
|
10832
|
+
OrgUser?: IOrgUserResolvers<ContextType>;
|
10833
|
+
OrgUserAccunt?: IOrgUserAccuntResolvers<ContextType>;
|
10832
10834
|
Organization?: IOrganizationResolvers<ContextType>;
|
10833
10835
|
OrganizationConfiguration?: IOrganizationConfigurationResolvers<ContextType>;
|
10834
10836
|
OrganizationCreatedEvent?: IOrganizationCreatedEventResolvers<ContextType>;
|
@@ -10843,19 +10845,17 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
10843
10845
|
OrganizationResourceData?: IOrganizationResourceDataResolvers<ContextType>;
|
10844
10846
|
OrganizationResourceSettings?: IOrganizationResourceSettingsResolvers<ContextType>;
|
10845
10847
|
OrganizationRole?: IOrganizationRoleResolvers<ContextType>;
|
10846
|
-
OrganizationsDeactivatedEvent?: IOrganizationsDeactivatedEventResolvers<ContextType>;
|
10847
|
-
OrganizationsDeletedEvent?: IOrganizationsDeletedEventResolvers<ContextType>;
|
10848
10848
|
OrganizationService?: IOrganizationServiceResolvers<ContextType>;
|
10849
10849
|
OrganizationSettings?: IOrganizationSettingsResolvers<ContextType>;
|
10850
|
-
|
10851
|
-
|
10852
|
-
OrgUserAccunt?: IOrgUserAccuntResolvers<ContextType>;
|
10850
|
+
OrganizationsDeactivatedEvent?: IOrganizationsDeactivatedEventResolvers<ContextType>;
|
10851
|
+
OrganizationsDeletedEvent?: IOrganizationsDeletedEventResolvers<ContextType>;
|
10853
10852
|
Overrides?: IOverridesResolvers<ContextType>;
|
10854
10853
|
PageInfo?: IPageInfoResolvers<ContextType>;
|
10855
10854
|
PermissionSubject?: IPermissionSubjectResolvers<ContextType>;
|
10856
10855
|
PhoneNumber?: IPhoneNumberResolvers<ContextType>;
|
10857
10856
|
PolicySubject?: IPolicySubjectResolvers<ContextType>;
|
10858
10857
|
Position?: IPositionResolvers<ContextType>;
|
10858
|
+
PreferenceItem?: IPreferenceItemResolvers<ContextType>;
|
10859
10859
|
Preference_Account?: IPreference_AccountResolvers<ContextType>;
|
10860
10860
|
Preference_Default?: IPreference_DefaultResolvers<ContextType>;
|
10861
10861
|
Preference_Global?: IPreference_GlobalResolvers<ContextType>;
|
@@ -10864,18 +10864,17 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
10864
10864
|
Preference_Organization?: IPreference_OrganizationResolvers<ContextType>;
|
10865
10865
|
Preference_Project?: IPreference_ProjectResolvers<ContextType>;
|
10866
10866
|
Preference_Teams?: IPreference_TeamsResolvers<ContextType>;
|
10867
|
-
PreferenceItem?: IPreferenceItemResolvers<ContextType>;
|
10868
10867
|
Preferences?: IPreferencesResolvers<ContextType>;
|
10869
10868
|
PreferencesInput?: IPreferencesInputResolvers<ContextType>;
|
10870
10869
|
PreferencesResponse?: IPreferencesResponseResolvers<ContextType>;
|
10871
10870
|
PreferencesType?: IPreferencesTypeResolvers<ContextType>;
|
10872
|
-
Project_Output?: IProject_OutputResolvers<ContextType>;
|
10873
10871
|
ProjectCreatedEvent?: IProjectCreatedEventResolvers<ContextType>;
|
10874
10872
|
ProjectDeletedEvent?: IProjectDeletedEventResolvers<ContextType>;
|
10875
10873
|
ProjectInvoice?: IProjectInvoiceResolvers<ContextType>;
|
10876
10874
|
ProjectParameters?: IProjectParametersResolvers<ContextType>;
|
10877
|
-
Projects?: IProjectsResolvers<ContextType>;
|
10878
10875
|
ProjectSource?: IProjectSourceResolvers<ContextType>;
|
10876
|
+
Project_Output?: IProject_OutputResolvers<ContextType>;
|
10877
|
+
Projects?: IProjectsResolvers<ContextType>;
|
10879
10878
|
Query?: IQueryResolvers<ContextType>;
|
10880
10879
|
Range?: IRangeResolvers<ContextType>;
|
10881
10880
|
ResourceAccessRole?: IResourceAccessRoleResolvers<ContextType>;
|