@messenger-box/platform-client 0.0.1-alpha.275 → 0.0.1-alpha.276
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/CHANGELOG.md +4 -0
- package/lib/generated-model.d.ts +110 -208
- package/lib/index.js +12 -4
- package/lib/index.js.map +1 -1
- package/package.json +3 -3
- package/src/generated-model.tsx +115 -233
package/src/generated-model.tsx
CHANGED
|
@@ -89,7 +89,7 @@ export type IAccountTeam = {
|
|
|
89
89
|
teamMembers?: Maybe<Array<Maybe<ITeamMember>>>;
|
|
90
90
|
};
|
|
91
91
|
|
|
92
|
-
export type
|
|
92
|
+
export type IAccountTeamInput = {
|
|
93
93
|
id?: Maybe<Scalars['ID']>;
|
|
94
94
|
_id?: Maybe<Scalars['String']>;
|
|
95
95
|
name?: Maybe<Scalars['String']>;
|
|
@@ -97,8 +97,8 @@ export type IAccountTeam_Input = {
|
|
|
97
97
|
orgName?: Maybe<Scalars['String']>;
|
|
98
98
|
tags?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
99
99
|
description?: Maybe<Scalars['String']>;
|
|
100
|
-
parentTeam?: Maybe<
|
|
101
|
-
teamMembers?: Maybe<Array<Maybe<
|
|
100
|
+
parentTeam?: Maybe<IAccountTeamInput>;
|
|
101
|
+
teamMembers?: Maybe<Array<Maybe<ITeamMemberInput>>>;
|
|
102
102
|
};
|
|
103
103
|
|
|
104
104
|
export type IAdminIdeSettings = {
|
|
@@ -130,7 +130,7 @@ export enum IApplicationRoles {
|
|
|
130
130
|
Admin = 'ADMIN',
|
|
131
131
|
/** Project Contributors */
|
|
132
132
|
Contributors = 'CONTRIBUTORS',
|
|
133
|
-
/** Guest
|
|
133
|
+
/** Guest */
|
|
134
134
|
Guest = 'GUEST',
|
|
135
135
|
Member = 'MEMBER',
|
|
136
136
|
/** organization member */
|
|
@@ -201,7 +201,7 @@ export type IAuthUser = IIUser & {
|
|
|
201
201
|
phoneNo?: Maybe<Scalars['Int']>;
|
|
202
202
|
};
|
|
203
203
|
|
|
204
|
-
export type
|
|
204
|
+
export type IAuthUserInput = {
|
|
205
205
|
auth0UserId?: Maybe<Scalars['String']>;
|
|
206
206
|
username?: Maybe<Scalars['String']>;
|
|
207
207
|
email?: Maybe<Scalars['String']>;
|
|
@@ -391,7 +391,9 @@ export enum IConfigCollectionName {
|
|
|
391
391
|
Workspaces = 'workspaces',
|
|
392
392
|
Teams = 'teams',
|
|
393
393
|
Projects = 'projects',
|
|
394
|
-
Clients = 'clients'
|
|
394
|
+
Clients = 'clients',
|
|
395
|
+
Tasks = 'tasks',
|
|
396
|
+
Tags = 'tags'
|
|
395
397
|
}
|
|
396
398
|
|
|
397
399
|
export enum IConfigFragmentName {
|
|
@@ -411,6 +413,12 @@ export enum IConfigFragmentName {
|
|
|
411
413
|
|
|
412
414
|
export type IConfiguration = IDefaultConfiguration | IMachineConfiguration | IUserConfiguration | IOrganizationConfiguration | IOrganizationResourceConfiguration;
|
|
413
415
|
|
|
416
|
+
export enum IConfigurationContributionNames {
|
|
417
|
+
DefaultPermissions = 'defaultPermissions',
|
|
418
|
+
DefaultSettings = 'defaultSettings',
|
|
419
|
+
DefaultPolicies = 'defaultPolicies'
|
|
420
|
+
}
|
|
421
|
+
|
|
414
422
|
export type IConfigurationData = {
|
|
415
423
|
__typename?: 'ConfigurationData';
|
|
416
424
|
defaults?: Maybe<IIConfigurationModel>;
|
|
@@ -450,7 +458,7 @@ export type IConfigurationOverrides = {
|
|
|
450
458
|
externalResource?: Maybe<Scalars['URI']>;
|
|
451
459
|
};
|
|
452
460
|
|
|
453
|
-
export type
|
|
461
|
+
export type IConfigurationOverridesInput = {
|
|
454
462
|
resource?: Maybe<Scalars['URI']>;
|
|
455
463
|
overrideIdentifier?: Maybe<Scalars['String']>;
|
|
456
464
|
externalResource?: Maybe<Scalars['URI']>;
|
|
@@ -629,7 +637,7 @@ export type ICountryInput = {
|
|
|
629
637
|
|
|
630
638
|
export type IDefaultConfiguration = IIConfigurationModel & {
|
|
631
639
|
__typename?: 'DefaultConfiguration';
|
|
632
|
-
/**
|
|
640
|
+
/** The ID. */
|
|
633
641
|
id?: Maybe<Scalars['ID']>;
|
|
634
642
|
/** The URL to the user's settings. */
|
|
635
643
|
resource: Scalars['URI'];
|
|
@@ -917,7 +925,7 @@ export type IIConfigurationService = {
|
|
|
917
925
|
export type IIConfigurationServiceUpdateValueArgs = {
|
|
918
926
|
key: Scalars['String'];
|
|
919
927
|
value: Scalars['AnyObject'];
|
|
920
|
-
overrides:
|
|
928
|
+
overrides: IConfigurationOverridesInput;
|
|
921
929
|
target?: Maybe<IConfigurationTarget>;
|
|
922
930
|
donotNotifyError?: Maybe<Scalars['Boolean']>;
|
|
923
931
|
};
|
|
@@ -1035,53 +1043,6 @@ export type IImageDimensionsConfigInput = {
|
|
|
1035
1043
|
thumbnailImageHeight?: Maybe<Scalars['Int']>;
|
|
1036
1044
|
};
|
|
1037
1045
|
|
|
1038
|
-
export type IIntegraitonConfigurationId = {
|
|
1039
|
-
__typename?: 'IntegraitonConfigurationId';
|
|
1040
|
-
id?: Maybe<Scalars['String']>;
|
|
1041
|
-
};
|
|
1042
|
-
|
|
1043
|
-
export type IIntegrationConfiguration = {
|
|
1044
|
-
__typename?: 'IntegrationConfiguration';
|
|
1045
|
-
id?: Maybe<Scalars['ID']>;
|
|
1046
|
-
name?: Maybe<Scalars['String']>;
|
|
1047
|
-
userId?: Maybe<Scalars['ID']>;
|
|
1048
|
-
integrationName?: Maybe<Scalars['String']>;
|
|
1049
|
-
status?: Maybe<Scalars['String']>;
|
|
1050
|
-
updatedAt?: Maybe<Scalars['DateTime']>;
|
|
1051
|
-
integrationInfo?: Maybe<Scalars['JSON']>;
|
|
1052
|
-
};
|
|
1053
|
-
|
|
1054
|
-
export type IIntegrationConfigurationCreateOrUpdateInput = {
|
|
1055
|
-
id?: Maybe<Scalars['ID']>;
|
|
1056
|
-
name?: Maybe<Scalars['String']>;
|
|
1057
|
-
integrationName?: Maybe<Scalars['String']>;
|
|
1058
|
-
status?: Maybe<Scalars['String']>;
|
|
1059
|
-
integrationInfo?: Maybe<Scalars['JSON']>;
|
|
1060
|
-
userId?: Maybe<Scalars['ID']>;
|
|
1061
|
-
};
|
|
1062
|
-
|
|
1063
|
-
export type IIntegrationConfigurationFilterInput = {
|
|
1064
|
-
id?: Maybe<Scalars['ID']>;
|
|
1065
|
-
name?: Maybe<Scalars['String']>;
|
|
1066
|
-
integrationName?: Maybe<Scalars['String']>;
|
|
1067
|
-
status?: Maybe<Scalars['String']>;
|
|
1068
|
-
userId?: Maybe<Scalars['ID']>;
|
|
1069
|
-
};
|
|
1070
|
-
|
|
1071
|
-
export type IIntegrationConfigurationInput = {
|
|
1072
|
-
name?: Maybe<Scalars['String']>;
|
|
1073
|
-
integrationName?: Maybe<Scalars['String']>;
|
|
1074
|
-
status?: Maybe<Scalars['String']>;
|
|
1075
|
-
integrationInfo?: Maybe<Scalars['JSON']>;
|
|
1076
|
-
userId?: Maybe<Scalars['ID']>;
|
|
1077
|
-
};
|
|
1078
|
-
|
|
1079
|
-
export type IIntegrationConfigurationsOutput = {
|
|
1080
|
-
__typename?: 'IntegrationConfigurationsOutput';
|
|
1081
|
-
totalCount?: Maybe<Scalars['Int']>;
|
|
1082
|
-
data?: Maybe<Array<Maybe<IIntegrationConfiguration>>>;
|
|
1083
|
-
};
|
|
1084
|
-
|
|
1085
1046
|
export type IInviteMember = {
|
|
1086
1047
|
__typename?: 'InviteMember';
|
|
1087
1048
|
id?: Maybe<Scalars['String']>;
|
|
@@ -1143,7 +1104,7 @@ export type ILoginError = {
|
|
|
1143
1104
|
|
|
1144
1105
|
export type IMachineConfiguration = IIConfigurationModel & {
|
|
1145
1106
|
__typename?: 'MachineConfiguration';
|
|
1146
|
-
/**
|
|
1107
|
+
/** The ID. */
|
|
1147
1108
|
id?: Maybe<Scalars['ID']>;
|
|
1148
1109
|
/** The URL to the machine's settings. */
|
|
1149
1110
|
resource: Scalars['URI'];
|
|
@@ -1279,18 +1240,15 @@ export type IMutation = {
|
|
|
1279
1240
|
createContact: IContact;
|
|
1280
1241
|
createDirectChannel?: Maybe<IChannel>;
|
|
1281
1242
|
createFileUploadLinks: Array<Scalars['String']>;
|
|
1282
|
-
createIntegrationConfiguration?: Maybe<IIntegraitonConfigurationId>;
|
|
1283
1243
|
createLanguage: ILanguage;
|
|
1284
1244
|
/** Attach Post File */
|
|
1285
1245
|
createMessageFileUploadLink: Scalars['String'];
|
|
1286
1246
|
createMessageFilesUploadLink: Array<Scalars['String']>;
|
|
1287
|
-
createOrUpdateIntegrationConfiguration?: Maybe<IIntegraitonConfigurationId>;
|
|
1288
1247
|
createOrganization?: Maybe<IOrganization>;
|
|
1289
1248
|
createTeam?: Maybe<IAccountTeam>;
|
|
1290
1249
|
declineOrganizationInvitation?: Maybe<Scalars['Boolean']>;
|
|
1291
1250
|
deleteChannel?: Maybe<Scalars['Boolean']>;
|
|
1292
1251
|
deleteContact: Scalars['Boolean'];
|
|
1293
|
-
deleteIntegrationConfiguration?: Maybe<Scalars['Boolean']>;
|
|
1294
1252
|
deleteLanguage: Scalars['Boolean'];
|
|
1295
1253
|
deleteMessage?: Maybe<Scalars['Boolean']>;
|
|
1296
1254
|
/** Detach Post File */
|
|
@@ -1340,7 +1298,7 @@ export type IMutation = {
|
|
|
1340
1298
|
setGender: IUserAccount;
|
|
1341
1299
|
setName: IUserAccount;
|
|
1342
1300
|
setSettingsValueByResource?: Maybe<Scalars['Boolean']>;
|
|
1343
|
-
/**
|
|
1301
|
+
/** Triggers onUserLoggedIn events */
|
|
1344
1302
|
updateAuth0UserPassword?: Maybe<Scalars['Boolean']>;
|
|
1345
1303
|
updateConfigurationPolicyValue?: Maybe<Scalars['Boolean']>;
|
|
1346
1304
|
updateConfigurationPolicyValueByUri?: Maybe<Scalars['Boolean']>;
|
|
@@ -1465,11 +1423,6 @@ export type IMutationCreateFileUploadLinksArgs = {
|
|
|
1465
1423
|
};
|
|
1466
1424
|
|
|
1467
1425
|
|
|
1468
|
-
export type IMutationCreateIntegrationConfigurationArgs = {
|
|
1469
|
-
data?: Maybe<IIntegrationConfigurationInput>;
|
|
1470
|
-
};
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
1426
|
export type IMutationCreateLanguageArgs = {
|
|
1474
1427
|
country: ILanguageInput;
|
|
1475
1428
|
};
|
|
@@ -1487,11 +1440,6 @@ export type IMutationCreateMessageFilesUploadLinkArgs = {
|
|
|
1487
1440
|
};
|
|
1488
1441
|
|
|
1489
1442
|
|
|
1490
|
-
export type IMutationCreateOrUpdateIntegrationConfigurationArgs = {
|
|
1491
|
-
data?: Maybe<IIntegrationConfigurationCreateOrUpdateInput>;
|
|
1492
|
-
};
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
1443
|
export type IMutationCreateOrganizationArgs = {
|
|
1496
1444
|
organization: IOrganizationCreateRequest;
|
|
1497
1445
|
};
|
|
@@ -1517,11 +1465,6 @@ export type IMutationDeleteContactArgs = {
|
|
|
1517
1465
|
};
|
|
1518
1466
|
|
|
1519
1467
|
|
|
1520
|
-
export type IMutationDeleteIntegrationConfigurationArgs = {
|
|
1521
|
-
id: Scalars['String'];
|
|
1522
|
-
};
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
1468
|
export type IMutationDeleteLanguageArgs = {
|
|
1526
1469
|
id: Scalars['ID'];
|
|
1527
1470
|
};
|
|
@@ -1773,7 +1716,7 @@ export type IMutationUpdateAuth0UserPasswordArgs = {
|
|
|
1773
1716
|
export type IMutationUpdateConfigurationPolicyValueArgs = {
|
|
1774
1717
|
key: Scalars['String'];
|
|
1775
1718
|
value: Scalars['AnyObject'];
|
|
1776
|
-
overrides?: Maybe<
|
|
1719
|
+
overrides?: Maybe<IConfigurationOverridesInput>;
|
|
1777
1720
|
target?: Maybe<Scalars['Int']>;
|
|
1778
1721
|
donotNotifyError?: Maybe<Scalars['Boolean']>;
|
|
1779
1722
|
};
|
|
@@ -1783,7 +1726,7 @@ export type IMutationUpdateConfigurationPolicyValueByUriArgs = {
|
|
|
1783
1726
|
resource?: Maybe<Scalars['URI']>;
|
|
1784
1727
|
key: Scalars['String'];
|
|
1785
1728
|
value: Scalars['AnyObject'];
|
|
1786
|
-
overrides?: Maybe<
|
|
1729
|
+
overrides?: Maybe<IConfigurationOverridesInput>;
|
|
1787
1730
|
target?: Maybe<Scalars['Int']>;
|
|
1788
1731
|
donotNotifyError?: Maybe<Scalars['Boolean']>;
|
|
1789
1732
|
};
|
|
@@ -1792,7 +1735,7 @@ export type IMutationUpdateConfigurationPolicyValueByUriArgs = {
|
|
|
1792
1735
|
export type IMutationUpdateConfigurationValueArgs = {
|
|
1793
1736
|
key: Scalars['String'];
|
|
1794
1737
|
value: Scalars['AnyObject'];
|
|
1795
|
-
overrides?: Maybe<
|
|
1738
|
+
overrides?: Maybe<IConfigurationOverridesInput>;
|
|
1796
1739
|
target?: Maybe<Scalars['Int']>;
|
|
1797
1740
|
donotNotifyError?: Maybe<Scalars['Boolean']>;
|
|
1798
1741
|
};
|
|
@@ -1802,7 +1745,7 @@ export type IMutationUpdateConfigurationValueByUriArgs = {
|
|
|
1802
1745
|
resource?: Maybe<Scalars['URI']>;
|
|
1803
1746
|
key: Scalars['String'];
|
|
1804
1747
|
value: Scalars['AnyObject'];
|
|
1805
|
-
overrides?: Maybe<
|
|
1748
|
+
overrides?: Maybe<IConfigurationOverridesInput>;
|
|
1806
1749
|
target?: Maybe<Scalars['Int']>;
|
|
1807
1750
|
donotNotifyError?: Maybe<Scalars['Boolean']>;
|
|
1808
1751
|
};
|
|
@@ -1835,7 +1778,7 @@ export type IMutationUpdateOrganizationArgs = {
|
|
|
1835
1778
|
|
|
1836
1779
|
export type IMutationUpdateOrganizationContextAddResourcesArgs = {
|
|
1837
1780
|
orgId?: Maybe<Scalars['String']>;
|
|
1838
|
-
resourcesToAdd: Array<Maybe<
|
|
1781
|
+
resourcesToAdd: Array<Maybe<IResourceCreationDataInput>>;
|
|
1839
1782
|
index?: Maybe<Scalars['Int']>;
|
|
1840
1783
|
};
|
|
1841
1784
|
|
|
@@ -1846,7 +1789,7 @@ export type IMutationUpdateOrganizationContextRemoveResourcesArgs = {
|
|
|
1846
1789
|
|
|
1847
1790
|
|
|
1848
1791
|
export type IMutationUpdateOrganizationContextUpdateResourcesArgs = {
|
|
1849
|
-
resourcesToAdd: Array<Maybe<
|
|
1792
|
+
resourcesToAdd: Array<Maybe<IResourceCreationDataInput>>;
|
|
1850
1793
|
resourcesToRemove: Array<Maybe<Scalars['URI']>>;
|
|
1851
1794
|
index?: Maybe<Scalars['Int']>;
|
|
1852
1795
|
};
|
|
@@ -1867,7 +1810,7 @@ export type IMutationUpdateReactionToMessageArgs = {
|
|
|
1867
1810
|
export type IMutationUpdateRoleValueArgs = {
|
|
1868
1811
|
key: Scalars['String'];
|
|
1869
1812
|
value: Scalars['AnyObject'];
|
|
1870
|
-
overrides?: Maybe<
|
|
1813
|
+
overrides?: Maybe<IConfigurationOverridesInput>;
|
|
1871
1814
|
target?: Maybe<Scalars['Int']>;
|
|
1872
1815
|
donotNotifyError?: Maybe<Scalars['Boolean']>;
|
|
1873
1816
|
};
|
|
@@ -1925,6 +1868,7 @@ export type IOrgMember = {
|
|
|
1925
1868
|
_id?: Maybe<Scalars['String']>;
|
|
1926
1869
|
userId?: Maybe<Scalars['String']>;
|
|
1927
1870
|
role?: Maybe<IApplicationRoles>;
|
|
1871
|
+
isSelf?: Maybe<Scalars['Boolean']>;
|
|
1928
1872
|
inactive?: Maybe<Scalars['Boolean']>;
|
|
1929
1873
|
name?: Maybe<Scalars['String']>;
|
|
1930
1874
|
email?: Maybe<Scalars['String']>;
|
|
@@ -1963,6 +1907,13 @@ export type IOrgUserAccunt = INode & {
|
|
|
1963
1907
|
emailVerified?: Maybe<Scalars['Boolean']>;
|
|
1964
1908
|
};
|
|
1965
1909
|
|
|
1910
|
+
export type IOrgUserInput = {
|
|
1911
|
+
userId?: Maybe<Scalars['String']>;
|
|
1912
|
+
role?: Maybe<IApplicationRoles>;
|
|
1913
|
+
inactive?: Maybe<Scalars['Boolean']>;
|
|
1914
|
+
crossCheckEmail?: Maybe<Scalars['String']>;
|
|
1915
|
+
};
|
|
1916
|
+
|
|
1966
1917
|
export enum IOrgUserRole {
|
|
1967
1918
|
BillingLeader = 'BILLING_LEADER',
|
|
1968
1919
|
Member = 'MEMBER',
|
|
@@ -1970,13 +1921,6 @@ export enum IOrgUserRole {
|
|
|
1970
1921
|
Owner = 'OWNER'
|
|
1971
1922
|
}
|
|
1972
1923
|
|
|
1973
|
-
export type IOrgUser_Input = {
|
|
1974
|
-
userId?: Maybe<Scalars['String']>;
|
|
1975
|
-
role?: Maybe<IApplicationRoles>;
|
|
1976
|
-
inactive?: Maybe<Scalars['Boolean']>;
|
|
1977
|
-
crossCheckEmail?: Maybe<Scalars['String']>;
|
|
1978
|
-
};
|
|
1979
|
-
|
|
1980
1924
|
/**
|
|
1981
1925
|
* OrganizationInvitationRole: The possible organization invitation roles.
|
|
1982
1926
|
*
|
|
@@ -2042,14 +1986,14 @@ export type IOrganization = {
|
|
|
2042
1986
|
invitations?: Maybe<Array<Maybe<IOrganizationInvitation>>>;
|
|
2043
1987
|
};
|
|
2044
1988
|
|
|
2045
|
-
export type
|
|
1989
|
+
export type IOrganizationConfigValueInput = {
|
|
2046
1990
|
section?: Maybe<Scalars['String']>;
|
|
2047
|
-
overrides?: Maybe<
|
|
1991
|
+
overrides?: Maybe<IConfigurationOverridesInput>;
|
|
2048
1992
|
};
|
|
2049
1993
|
|
|
2050
1994
|
export type IOrganizationConfiguration = IIConfigurationModel & {
|
|
2051
1995
|
__typename?: 'OrganizationConfiguration';
|
|
2052
|
-
/**
|
|
1996
|
+
/** The ID. */
|
|
2053
1997
|
id?: Maybe<Scalars['ID']>;
|
|
2054
1998
|
resource: Scalars['URI'];
|
|
2055
1999
|
target?: Maybe<Scalars['Int']>;
|
|
@@ -2072,14 +2016,14 @@ export type IOrganizationCreateRequest = {
|
|
|
2072
2016
|
description?: Maybe<Scalars['String']>;
|
|
2073
2017
|
namespace?: Maybe<Scalars['String']>;
|
|
2074
2018
|
picture?: Maybe<Scalars['String']>;
|
|
2075
|
-
orgMembers?: Maybe<Array<Maybe<
|
|
2019
|
+
orgMembers?: Maybe<Array<Maybe<IOrgUserInput>>>;
|
|
2076
2020
|
billingLeaders?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
2077
2021
|
mainBillingLeaderId?: Maybe<Scalars['String']>;
|
|
2078
2022
|
periodStart?: Maybe<Scalars['DateTime']>;
|
|
2079
2023
|
periodStop?: Maybe<Scalars['DateTime']>;
|
|
2080
2024
|
stripeId?: Maybe<Scalars['String']>;
|
|
2081
2025
|
stripeSubscriptionId?: Maybe<Scalars['String']>;
|
|
2082
|
-
invitations?: Maybe<Array<Maybe<
|
|
2026
|
+
invitations?: Maybe<Array<Maybe<IOrganizationInvitationInput>>>;
|
|
2083
2027
|
};
|
|
2084
2028
|
|
|
2085
2029
|
export type IOrganizationData = {
|
|
@@ -2100,6 +2044,29 @@ export type IOrganizationIdentifier = {
|
|
|
2100
2044
|
configPath?: Maybe<Scalars['URI']>;
|
|
2101
2045
|
};
|
|
2102
2046
|
|
|
2047
|
+
export type IOrganizationInput = {
|
|
2048
|
+
id?: Maybe<Scalars['ID']>;
|
|
2049
|
+
name: Scalars['String'];
|
|
2050
|
+
title?: Maybe<Scalars['String']>;
|
|
2051
|
+
description?: Maybe<Scalars['String']>;
|
|
2052
|
+
picture?: Maybe<Scalars['String']>;
|
|
2053
|
+
stripeId?: Maybe<Scalars['String']>;
|
|
2054
|
+
namespace?: Maybe<Scalars['String']>;
|
|
2055
|
+
orgUserCount?: Maybe<Scalars['Int']>;
|
|
2056
|
+
createdAt?: Maybe<Scalars['DateTime']>;
|
|
2057
|
+
updatedAt?: Maybe<Scalars['DateTime']>;
|
|
2058
|
+
orgMembers?: Maybe<Array<Maybe<IOrgUserInput>>>;
|
|
2059
|
+
periodStart?: Maybe<Scalars['DateTime']>;
|
|
2060
|
+
periodStop?: Maybe<Scalars['DateTime']>;
|
|
2061
|
+
billingLeaders?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
2062
|
+
billingEmail?: Maybe<Scalars['String']>;
|
|
2063
|
+
isBillingLeader?: Maybe<Scalars['Boolean']>;
|
|
2064
|
+
mainBilingLeaderId?: Maybe<Scalars['String']>;
|
|
2065
|
+
stripeSubscriptionId?: Maybe<Scalars['String']>;
|
|
2066
|
+
invitations?: Maybe<Array<Maybe<IOrganizationInvitationInput>>>;
|
|
2067
|
+
status?: Maybe<Scalars['String']>;
|
|
2068
|
+
};
|
|
2069
|
+
|
|
2103
2070
|
export type IOrganizationInvitation = {
|
|
2104
2071
|
__typename?: 'OrganizationInvitation';
|
|
2105
2072
|
id: Scalars['ID'];
|
|
@@ -2125,15 +2092,7 @@ export type IOrganizationInvitationDecode = {
|
|
|
2125
2092
|
invitedBy?: Maybe<Scalars['String']>;
|
|
2126
2093
|
};
|
|
2127
2094
|
|
|
2128
|
-
export type
|
|
2129
|
-
teamId?: Maybe<Scalars['String']>;
|
|
2130
|
-
emails?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
2131
|
-
invitedBy?: Maybe<Scalars['String']>;
|
|
2132
|
-
orgName?: Maybe<Scalars['String']>;
|
|
2133
|
-
role?: Maybe<Scalars['String']>;
|
|
2134
|
-
};
|
|
2135
|
-
|
|
2136
|
-
export type IOrganizationInvitation_Input = {
|
|
2095
|
+
export type IOrganizationInvitationInput = {
|
|
2137
2096
|
email?: Maybe<Scalars['String']>;
|
|
2138
2097
|
teamId?: Maybe<Scalars['String']>;
|
|
2139
2098
|
role?: Maybe<IApplicationRoles>;
|
|
@@ -2147,6 +2106,14 @@ export type IOrganizationInvitation_Input = {
|
|
|
2147
2106
|
tokenExpiration?: Maybe<Scalars['DateTime']>;
|
|
2148
2107
|
};
|
|
2149
2108
|
|
|
2109
|
+
export type IOrganizationInvitationRequest = {
|
|
2110
|
+
teamId?: Maybe<Scalars['String']>;
|
|
2111
|
+
emails?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
2112
|
+
invitedBy?: Maybe<Scalars['String']>;
|
|
2113
|
+
orgName?: Maybe<Scalars['String']>;
|
|
2114
|
+
role?: Maybe<Scalars['String']>;
|
|
2115
|
+
};
|
|
2116
|
+
|
|
2150
2117
|
export type IOrganizationMember = {
|
|
2151
2118
|
__typename?: 'OrganizationMember';
|
|
2152
2119
|
id?: Maybe<Scalars['String']>;
|
|
@@ -2176,7 +2143,7 @@ export type IOrganizationRemoveRequest = {
|
|
|
2176
2143
|
|
|
2177
2144
|
export type IOrganizationResourceConfiguration = IIConfigurationModel & {
|
|
2178
2145
|
__typename?: 'OrganizationResourceConfiguration';
|
|
2179
|
-
/**
|
|
2146
|
+
/** The ID. */
|
|
2180
2147
|
id?: Maybe<Scalars['ID']>;
|
|
2181
2148
|
resource: Scalars['URI'];
|
|
2182
2149
|
target?: Maybe<Scalars['Int']>;
|
|
@@ -2241,30 +2208,7 @@ export type IOrganizationSettings = IISettingsSubject & {
|
|
|
2241
2208
|
export type IOrganizationUpdateRequest = {
|
|
2242
2209
|
id?: Maybe<Scalars['String']>;
|
|
2243
2210
|
requestedUserId?: Maybe<Scalars['String']>;
|
|
2244
|
-
payload?: Maybe<
|
|
2245
|
-
};
|
|
2246
|
-
|
|
2247
|
-
export type IOrganization_Input = {
|
|
2248
|
-
id?: Maybe<Scalars['ID']>;
|
|
2249
|
-
name: Scalars['String'];
|
|
2250
|
-
title?: Maybe<Scalars['String']>;
|
|
2251
|
-
description?: Maybe<Scalars['String']>;
|
|
2252
|
-
picture?: Maybe<Scalars['String']>;
|
|
2253
|
-
stripeId?: Maybe<Scalars['String']>;
|
|
2254
|
-
namespace?: Maybe<Scalars['String']>;
|
|
2255
|
-
orgUserCount?: Maybe<Scalars['Int']>;
|
|
2256
|
-
createdAt?: Maybe<Scalars['DateTime']>;
|
|
2257
|
-
updatedAt?: Maybe<Scalars['DateTime']>;
|
|
2258
|
-
orgMembers?: Maybe<Array<Maybe<IOrgUser_Input>>>;
|
|
2259
|
-
periodStart?: Maybe<Scalars['DateTime']>;
|
|
2260
|
-
periodStop?: Maybe<Scalars['DateTime']>;
|
|
2261
|
-
billingLeaders?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
2262
|
-
billingEmail?: Maybe<Scalars['String']>;
|
|
2263
|
-
isBillingLeader?: Maybe<Scalars['Boolean']>;
|
|
2264
|
-
mainBilingLeaderId?: Maybe<Scalars['String']>;
|
|
2265
|
-
stripeSubscriptionId?: Maybe<Scalars['String']>;
|
|
2266
|
-
invitations?: Maybe<Array<Maybe<IOrganizationInvitation_Input>>>;
|
|
2267
|
-
status?: Maybe<Scalars['String']>;
|
|
2211
|
+
payload?: Maybe<IOrganizationInput>;
|
|
2268
2212
|
};
|
|
2269
2213
|
|
|
2270
2214
|
export type IOverrides = {
|
|
@@ -2325,7 +2269,7 @@ export type IPhoneNumberInput = {
|
|
|
2325
2269
|
|
|
2326
2270
|
export type IPolicySubject = {
|
|
2327
2271
|
__typename?: 'PolicySubject';
|
|
2328
|
-
/**
|
|
2272
|
+
/** The URL to the policies. */
|
|
2329
2273
|
policyURL: Scalars['URI'];
|
|
2330
2274
|
/** The time when this was created. */
|
|
2331
2275
|
createdAt?: Maybe<Scalars['String']>;
|
|
@@ -2644,18 +2588,16 @@ export type IQuery = {
|
|
|
2644
2588
|
defaultViewerSettingsSubject: IDefaultSettings;
|
|
2645
2589
|
directChannel?: Maybe<IChannel>;
|
|
2646
2590
|
dummy?: Maybe<Scalars['Int']>;
|
|
2647
|
-
/**
|
|
2591
|
+
/** Fetches a User from Auth0 Service */
|
|
2648
2592
|
fetchAuth0User?: Maybe<IUserProfile>;
|
|
2649
2593
|
fetchUserAuthorizedDevices?: Maybe<Array<Maybe<IUserDevice>>>;
|
|
2650
2594
|
fileInfo: IFileInfo;
|
|
2651
2595
|
filesInfo: IFilesInfo;
|
|
2652
|
-
filterIntegrationConfiguration?: Maybe<Array<Maybe<IIntegrationConfiguration>>>;
|
|
2653
2596
|
getAccounts?: Maybe<Array<Maybe<IUserAccount>>>;
|
|
2654
2597
|
getAllCountries?: Maybe<Array<Maybe<ICountry>>>;
|
|
2655
2598
|
getAllDeviceToken?: Maybe<IDeviceTokens>;
|
|
2656
2599
|
getAllDeviceTokenById?: Maybe<Array<Maybe<IUserAccount>>>;
|
|
2657
2600
|
getAllGovernmentId?: Maybe<IUserAccounts>;
|
|
2658
|
-
getAllIntegrationConfigurations?: Maybe<IIntegrationConfigurationsOutput>;
|
|
2659
2601
|
getConfiguration?: Maybe<Array<Maybe<IConfiguration>>>;
|
|
2660
2602
|
getConfigurationData?: Maybe<IConfigurationData>;
|
|
2661
2603
|
getConfigurationPolicies?: Maybe<Array<Maybe<IConfigurationPolicy>>>;
|
|
@@ -2663,7 +2605,6 @@ export type IQuery = {
|
|
|
2663
2605
|
getDeviceToken?: Maybe<IDeviceToken>;
|
|
2664
2606
|
getEnvironment?: Maybe<IEnvironment>;
|
|
2665
2607
|
getExtendedUserAccount: IUserAccount;
|
|
2666
|
-
getIntegrationConfiguration?: Maybe<IIntegrationConfiguration>;
|
|
2667
2608
|
getManageableOrganizations?: Maybe<Array<Maybe<IOrganization>>>;
|
|
2668
2609
|
getOrgInvitationMembers?: Maybe<IOrgInvitationMembers>;
|
|
2669
2610
|
getOrgTeamInvitations?: Maybe<Array<Maybe<IOrganizationInvitation>>>;
|
|
@@ -2834,11 +2775,6 @@ export type IQueryFilesInfoArgs = {
|
|
|
2834
2775
|
};
|
|
2835
2776
|
|
|
2836
2777
|
|
|
2837
|
-
export type IQueryFilterIntegrationConfigurationArgs = {
|
|
2838
|
-
filter?: Maybe<IIntegrationConfigurationFilterInput>;
|
|
2839
|
-
};
|
|
2840
|
-
|
|
2841
|
-
|
|
2842
2778
|
export type IQueryGetAccountsArgs = {
|
|
2843
2779
|
where?: Maybe<IUserAccountWhere>;
|
|
2844
2780
|
};
|
|
@@ -2854,14 +2790,6 @@ export type IQueryGetAllDeviceTokenByIdArgs = {
|
|
|
2854
2790
|
};
|
|
2855
2791
|
|
|
2856
2792
|
|
|
2857
|
-
export type IQueryGetAllIntegrationConfigurationsArgs = {
|
|
2858
|
-
criteria?: Maybe<Scalars['AnyObject']>;
|
|
2859
|
-
limit?: Maybe<Scalars['Int']>;
|
|
2860
|
-
skip?: Maybe<Scalars['Int']>;
|
|
2861
|
-
sort?: Maybe<ISort>;
|
|
2862
|
-
};
|
|
2863
|
-
|
|
2864
|
-
|
|
2865
2793
|
export type IQueryGetConfigurationArgs = {
|
|
2866
2794
|
input?: Maybe<Array<Maybe<IConfigurationInput>>>;
|
|
2867
2795
|
};
|
|
@@ -2877,11 +2805,6 @@ export type IQueryGetExtendedUserAccountArgs = {
|
|
|
2877
2805
|
};
|
|
2878
2806
|
|
|
2879
2807
|
|
|
2880
|
-
export type IQueryGetIntegrationConfigurationArgs = {
|
|
2881
|
-
id: Scalars['String'];
|
|
2882
|
-
};
|
|
2883
|
-
|
|
2884
|
-
|
|
2885
2808
|
export type IQueryGetOrgInvitationMembersArgs = {
|
|
2886
2809
|
offset?: Maybe<Scalars['Int']>;
|
|
2887
2810
|
limit?: Maybe<Scalars['Int']>;
|
|
@@ -2894,7 +2817,7 @@ export type IQueryGetOrgTeamInvitationsArgs = {
|
|
|
2894
2817
|
|
|
2895
2818
|
|
|
2896
2819
|
export type IQueryGetOrganizationConfigValueArgs = {
|
|
2897
|
-
value?: Maybe<
|
|
2820
|
+
value?: Maybe<IOrganizationConfigValueInput>;
|
|
2898
2821
|
};
|
|
2899
2822
|
|
|
2900
2823
|
|
|
@@ -3078,7 +3001,7 @@ export type IResourceAccessRole = {
|
|
|
3078
3001
|
resourceUserRoles?: Maybe<Array<Maybe<IResourceUser>>>;
|
|
3079
3002
|
};
|
|
3080
3003
|
|
|
3081
|
-
export type
|
|
3004
|
+
export type IResourceCreationDataInput = {
|
|
3082
3005
|
uri: Scalars['URI'];
|
|
3083
3006
|
name?: Maybe<Scalars['String']>;
|
|
3084
3007
|
};
|
|
@@ -3263,7 +3186,7 @@ export type ITeamCreateRequest = {
|
|
|
3263
3186
|
orgName: Scalars['String'];
|
|
3264
3187
|
tags?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
3265
3188
|
emails?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
3266
|
-
teamMembers?: Maybe<Array<Maybe<
|
|
3189
|
+
teamMembers?: Maybe<Array<Maybe<ITeamMemberInput>>>;
|
|
3267
3190
|
parentTeam?: Maybe<Scalars['String']>;
|
|
3268
3191
|
description?: Maybe<Scalars['String']>;
|
|
3269
3192
|
};
|
|
@@ -3290,7 +3213,7 @@ export type ITeamMember = {
|
|
|
3290
3213
|
status?: Maybe<Scalars['String']>;
|
|
3291
3214
|
};
|
|
3292
3215
|
|
|
3293
|
-
export type
|
|
3216
|
+
export type ITeamMemberInput = {
|
|
3294
3217
|
id?: Maybe<Scalars['String']>;
|
|
3295
3218
|
email?: Maybe<Scalars['String']>;
|
|
3296
3219
|
userId?: Maybe<Scalars['String']>;
|
|
@@ -3314,7 +3237,7 @@ export type ITeamType = {
|
|
|
3314
3237
|
|
|
3315
3238
|
export type ITeamUpdateRequest = {
|
|
3316
3239
|
id: Scalars['String'];
|
|
3317
|
-
payload?: Maybe<
|
|
3240
|
+
payload?: Maybe<IAccountTeamInput>;
|
|
3318
3241
|
requestedUserId?: Maybe<Scalars['String']>;
|
|
3319
3242
|
};
|
|
3320
3243
|
|
|
@@ -3427,6 +3350,14 @@ export type IUserAccountCreatedEvent = {
|
|
|
3427
3350
|
sourceUser?: Maybe<IUserProfile>;
|
|
3428
3351
|
};
|
|
3429
3352
|
|
|
3353
|
+
export type IUserAccountInput = {
|
|
3354
|
+
id?: Maybe<Scalars['String']>;
|
|
3355
|
+
email?: Maybe<Scalars['String']>;
|
|
3356
|
+
alias?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
3357
|
+
username?: Maybe<Scalars['String']>;
|
|
3358
|
+
tokens?: Maybe<Array<Maybe<IUserTokenInput>>>;
|
|
3359
|
+
};
|
|
3360
|
+
|
|
3430
3361
|
export type IUserAccountRemoveRequest = {
|
|
3431
3362
|
id?: Maybe<Scalars['String']>;
|
|
3432
3363
|
};
|
|
@@ -3442,7 +3373,7 @@ export type IUserAccountRemovedEvent = {
|
|
|
3442
3373
|
|
|
3443
3374
|
export type IUserAccountUpdateRequest = {
|
|
3444
3375
|
id: Scalars['String'];
|
|
3445
|
-
payload?: Maybe<
|
|
3376
|
+
payload?: Maybe<IUserAccountInput>;
|
|
3446
3377
|
};
|
|
3447
3378
|
|
|
3448
3379
|
export type IUserAccountWhere = {
|
|
@@ -3452,14 +3383,6 @@ export type IUserAccountWhere = {
|
|
|
3452
3383
|
username?: Maybe<Scalars['String']>;
|
|
3453
3384
|
};
|
|
3454
3385
|
|
|
3455
|
-
export type IUserAccount_Input = {
|
|
3456
|
-
id?: Maybe<Scalars['String']>;
|
|
3457
|
-
email?: Maybe<Scalars['String']>;
|
|
3458
|
-
alias?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
3459
|
-
username?: Maybe<Scalars['String']>;
|
|
3460
|
-
tokens?: Maybe<Array<Maybe<IUserTokenInput>>>;
|
|
3461
|
-
};
|
|
3462
|
-
|
|
3463
3386
|
export type IUserAccounts = {
|
|
3464
3387
|
__typename?: 'UserAccounts';
|
|
3465
3388
|
data?: Maybe<Array<Maybe<IUserAccount>>>;
|
|
@@ -3511,7 +3434,7 @@ export type IUserAuth0UpdateFields = {
|
|
|
3511
3434
|
|
|
3512
3435
|
export type IUserConfiguration = IIConfigurationModel & {
|
|
3513
3436
|
__typename?: 'UserConfiguration';
|
|
3514
|
-
/**
|
|
3437
|
+
/** The ID. */
|
|
3515
3438
|
id?: Maybe<Scalars['ID']>;
|
|
3516
3439
|
/** The URL to the user's settings. */
|
|
3517
3440
|
resource: Scalars['URI'];
|
|
@@ -3562,7 +3485,7 @@ export type IUserOrg = {
|
|
|
3562
3485
|
inactive?: Maybe<Scalars['Boolean']>;
|
|
3563
3486
|
};
|
|
3564
3487
|
|
|
3565
|
-
export type
|
|
3488
|
+
export type IUserOrgInput = {
|
|
3566
3489
|
userId: Scalars['String'];
|
|
3567
3490
|
role?: Maybe<IApplicationRoles>;
|
|
3568
3491
|
inactive?: Maybe<Scalars['Boolean']>;
|
|
@@ -4430,7 +4353,7 @@ export type IResolversTypes = {
|
|
|
4430
4353
|
AccountAddressInput: IAccountAddressInput;
|
|
4431
4354
|
ID: ResolverTypeWrapper<Scalars['ID']>;
|
|
4432
4355
|
AccountTeam: ResolverTypeWrapper<IAccountTeam>;
|
|
4433
|
-
|
|
4356
|
+
AccountTeamInput: IAccountTeamInput;
|
|
4434
4357
|
AdminIdeSettings: ResolverTypeWrapper<IAdminIdeSettings>;
|
|
4435
4358
|
Int: ResolverTypeWrapper<Scalars['Int']>;
|
|
4436
4359
|
AnyObject: ResolverTypeWrapper<Scalars['AnyObject']>;
|
|
@@ -4443,7 +4366,7 @@ export type IResolversTypes = {
|
|
|
4443
4366
|
Auth0IdentityProfileData: ResolverTypeWrapper<IAuth0IdentityProfileData>;
|
|
4444
4367
|
AuthTokens: ResolverTypeWrapper<IAuthTokens>;
|
|
4445
4368
|
AuthUser: ResolverTypeWrapper<IAuthUser>;
|
|
4446
|
-
|
|
4369
|
+
AuthUserInput: IAuthUserInput;
|
|
4447
4370
|
BaseServiceCommands: IBaseServiceCommands;
|
|
4448
4371
|
CardImage: ResolverTypeWrapper<ICardImage>;
|
|
4449
4372
|
Channel: ResolverTypeWrapper<IChannel>;
|
|
@@ -4463,12 +4386,13 @@ export type IResolversTypes = {
|
|
|
4463
4386
|
ConfigCollectionName: IConfigCollectionName;
|
|
4464
4387
|
ConfigFragmentName: IConfigFragmentName;
|
|
4465
4388
|
Configuration: IResolversTypes['DefaultConfiguration'] | IResolversTypes['MachineConfiguration'] | IResolversTypes['UserConfiguration'] | IResolversTypes['OrganizationConfiguration'] | IResolversTypes['OrganizationResourceConfiguration'];
|
|
4389
|
+
ConfigurationContributionNames: IConfigurationContributionNames;
|
|
4466
4390
|
ConfigurationData: ResolverTypeWrapper<IConfigurationData>;
|
|
4467
4391
|
ConfigurationExtensionInfo: ResolverTypeWrapper<IConfigurationExtensionInfo>;
|
|
4468
4392
|
ConfigurationInput: IConfigurationInput;
|
|
4469
4393
|
ConfigurationModel: ResolverTypeWrapper<IConfigurationModel>;
|
|
4470
4394
|
ConfigurationOverrides: ResolverTypeWrapper<IConfigurationOverrides>;
|
|
4471
|
-
|
|
4395
|
+
ConfigurationOverridesInput: IConfigurationOverridesInput;
|
|
4472
4396
|
ConfigurationPolicy: IResolversTypes['DefaultPolicy'] | IResolversTypes['OrganizationPolicy'] | IResolversTypes['ResourcePolicy'] | IResolversTypes['ApplicationPolicy'];
|
|
4473
4397
|
ConfigurationScope: IConfigurationScope;
|
|
4474
4398
|
ConfigurationTarget: IConfigurationTarget;
|
|
@@ -4533,12 +4457,6 @@ export type IResolversTypes = {
|
|
|
4533
4457
|
IUser: IResolversTypes['AuthUser'] | IResolversTypes['MessengerUser'];
|
|
4534
4458
|
IUserMetadata: IResolversTypes['UserMetadata'];
|
|
4535
4459
|
ImageDimensionsConfigInput: IImageDimensionsConfigInput;
|
|
4536
|
-
IntegraitonConfigurationId: ResolverTypeWrapper<IIntegraitonConfigurationId>;
|
|
4537
|
-
IntegrationConfiguration: ResolverTypeWrapper<IIntegrationConfiguration>;
|
|
4538
|
-
IntegrationConfigurationCreateOrUpdateInput: IIntegrationConfigurationCreateOrUpdateInput;
|
|
4539
|
-
IntegrationConfigurationFilterInput: IIntegrationConfigurationFilterInput;
|
|
4540
|
-
IntegrationConfigurationInput: IIntegrationConfigurationInput;
|
|
4541
|
-
IntegrationConfigurationsOutput: ResolverTypeWrapper<IIntegrationConfigurationsOutput>;
|
|
4542
4460
|
InviteMember: ResolverTypeWrapper<IInviteMember>;
|
|
4543
4461
|
InviteStatus: IInviteStatus;
|
|
4544
4462
|
JSON: ResolverTypeWrapper<Scalars['JSON']>;
|
|
@@ -4571,20 +4489,21 @@ export type IResolversTypes = {
|
|
|
4571
4489
|
OrgType: IOrgType;
|
|
4572
4490
|
OrgUser: ResolverTypeWrapper<IOrgUser>;
|
|
4573
4491
|
OrgUserAccunt: ResolverTypeWrapper<IOrgUserAccunt>;
|
|
4492
|
+
OrgUserInput: IOrgUserInput;
|
|
4574
4493
|
OrgUserRole: IOrgUserRole;
|
|
4575
|
-
OrgUser_Input: IOrgUser_Input;
|
|
4576
4494
|
OrgainizationInvitationRole: IOrgainizationInvitationRole;
|
|
4577
4495
|
Organization: ResolverTypeWrapper<IOrganization>;
|
|
4578
|
-
|
|
4496
|
+
OrganizationConfigValueInput: IOrganizationConfigValueInput;
|
|
4579
4497
|
OrganizationConfiguration: ResolverTypeWrapper<IOrganizationConfiguration>;
|
|
4580
4498
|
OrganizationContextPubSubEvents: IOrganizationContextPubSubEvents;
|
|
4581
4499
|
OrganizationCreateRequest: IOrganizationCreateRequest;
|
|
4582
4500
|
OrganizationData: ResolverTypeWrapper<Omit<IOrganizationData, 'resources'> & { resources: Array<Maybe<IResolversTypes['ResourceData']>> }>;
|
|
4583
4501
|
OrganizationIdentifier: ResolverTypeWrapper<IOrganizationIdentifier>;
|
|
4502
|
+
OrganizationInput: IOrganizationInput;
|
|
4584
4503
|
OrganizationInvitation: ResolverTypeWrapper<IOrganizationInvitation>;
|
|
4585
4504
|
OrganizationInvitationDecode: ResolverTypeWrapper<IOrganizationInvitationDecode>;
|
|
4505
|
+
OrganizationInvitationInput: IOrganizationInvitationInput;
|
|
4586
4506
|
OrganizationInvitationRequest: IOrganizationInvitationRequest;
|
|
4587
|
-
OrganizationInvitation_Input: IOrganizationInvitation_Input;
|
|
4588
4507
|
OrganizationMember: ResolverTypeWrapper<IOrganizationMember>;
|
|
4589
4508
|
OrganizationNotificationValues: IOrganizationNotificationValues;
|
|
4590
4509
|
OrganizationPolicy: ResolverTypeWrapper<IOrganizationPolicy>;
|
|
@@ -4595,7 +4514,6 @@ export type IResolversTypes = {
|
|
|
4595
4514
|
OrganizationRole: ResolverTypeWrapper<IOrganizationRole>;
|
|
4596
4515
|
OrganizationSettings: ResolverTypeWrapper<IOrganizationSettings>;
|
|
4597
4516
|
OrganizationUpdateRequest: IOrganizationUpdateRequest;
|
|
4598
|
-
Organization_Input: IOrganization_Input;
|
|
4599
4517
|
Overrides: ResolverTypeWrapper<IOverrides>;
|
|
4600
4518
|
PermissionAction: IPermissionAction;
|
|
4601
4519
|
PermissionResource: IPermissionResource;
|
|
@@ -4636,7 +4554,7 @@ export type IResolversTypes = {
|
|
|
4636
4554
|
Reaction: ResolverTypeWrapper<IReaction>;
|
|
4637
4555
|
ReactionInput: IReactionInput;
|
|
4638
4556
|
ResourceAccessRole: ResolverTypeWrapper<Omit<IResourceAccessRole, 'accessRoles'> & { accessRoles?: Maybe<Array<Maybe<IResolversTypes['AccessRole']>>> }>;
|
|
4639
|
-
|
|
4557
|
+
ResourceCreationDataInput: IResourceCreationDataInput;
|
|
4640
4558
|
ResourceData: IResolversTypes['OrganizationResourceData'] | IResolversTypes['ExternalResourceData'];
|
|
4641
4559
|
ResourcePolicy: ResolverTypeWrapper<IResourcePolicy>;
|
|
4642
4560
|
ResourceRole: ResolverTypeWrapper<IResourceRole>;
|
|
@@ -4659,7 +4577,7 @@ export type IResolversTypes = {
|
|
|
4659
4577
|
TeamCreateRequest: ITeamCreateRequest;
|
|
4660
4578
|
TeamCreationRequest: ITeamCreationRequest;
|
|
4661
4579
|
TeamMember: ResolverTypeWrapper<ITeamMember>;
|
|
4662
|
-
|
|
4580
|
+
TeamMemberInput: ITeamMemberInput;
|
|
4663
4581
|
TeamRemoveRequest: ITeamRemoveRequest;
|
|
4664
4582
|
TeamType: ITeamType;
|
|
4665
4583
|
TeamUpdateRequest: ITeamUpdateRequest;
|
|
@@ -4675,11 +4593,11 @@ export type IResolversTypes = {
|
|
|
4675
4593
|
UserAccountCreateRequest: IUserAccountCreateRequest;
|
|
4676
4594
|
UserAccountCreatedDetailedEvent: ResolverTypeWrapper<IUserAccountCreatedDetailedEvent>;
|
|
4677
4595
|
UserAccountCreatedEvent: ResolverTypeWrapper<IUserAccountCreatedEvent>;
|
|
4596
|
+
UserAccountInput: IUserAccountInput;
|
|
4678
4597
|
UserAccountRemoveRequest: IUserAccountRemoveRequest;
|
|
4679
4598
|
UserAccountRemovedEvent: ResolverTypeWrapper<IUserAccountRemovedEvent>;
|
|
4680
4599
|
UserAccountUpdateRequest: IUserAccountUpdateRequest;
|
|
4681
4600
|
UserAccountWhere: IUserAccountWhere;
|
|
4682
|
-
UserAccount_Input: IUserAccount_Input;
|
|
4683
4601
|
UserAccounts: ResolverTypeWrapper<IUserAccounts>;
|
|
4684
4602
|
UserAuth0Info: ResolverTypeWrapper<IUserAuth0Info>;
|
|
4685
4603
|
UserAuth0Integrations: ResolverTypeWrapper<IUserAuth0Integrations>;
|
|
@@ -4691,7 +4609,7 @@ export type IResolversTypes = {
|
|
|
4691
4609
|
UserMetadata: ResolverTypeWrapper<IUserMetadata>;
|
|
4692
4610
|
UserOrderBy: IUserOrderBy;
|
|
4693
4611
|
UserOrg: ResolverTypeWrapper<IUserOrg>;
|
|
4694
|
-
|
|
4612
|
+
UserOrgInput: IUserOrgInput;
|
|
4695
4613
|
UserPasswordResetInput: IUserPasswordResetInput;
|
|
4696
4614
|
UserPreviousValues: ResolverTypeWrapper<IUserPreviousValues>;
|
|
4697
4615
|
UserProfile: ResolverTypeWrapper<IUserProfile>;
|
|
@@ -4713,7 +4631,7 @@ export type IResolversParentTypes = {
|
|
|
4713
4631
|
AccountAddressInput: IAccountAddressInput;
|
|
4714
4632
|
ID: Scalars['ID'];
|
|
4715
4633
|
AccountTeam: IAccountTeam;
|
|
4716
|
-
|
|
4634
|
+
AccountTeamInput: IAccountTeamInput;
|
|
4717
4635
|
AdminIdeSettings: IAdminIdeSettings;
|
|
4718
4636
|
Int: Scalars['Int'];
|
|
4719
4637
|
AnyObject: Scalars['AnyObject'];
|
|
@@ -4725,7 +4643,7 @@ export type IResolversParentTypes = {
|
|
|
4725
4643
|
Auth0IdentityProfileData: IAuth0IdentityProfileData;
|
|
4726
4644
|
AuthTokens: IAuthTokens;
|
|
4727
4645
|
AuthUser: IAuthUser;
|
|
4728
|
-
|
|
4646
|
+
AuthUserInput: IAuthUserInput;
|
|
4729
4647
|
CardImage: ICardImage;
|
|
4730
4648
|
Channel: IChannel;
|
|
4731
4649
|
ChannelFilterInput: IChannelFilterInput;
|
|
@@ -4742,7 +4660,7 @@ export type IResolversParentTypes = {
|
|
|
4742
4660
|
ConfigurationInput: IConfigurationInput;
|
|
4743
4661
|
ConfigurationModel: IConfigurationModel;
|
|
4744
4662
|
ConfigurationOverrides: IConfigurationOverrides;
|
|
4745
|
-
|
|
4663
|
+
ConfigurationOverridesInput: IConfigurationOverridesInput;
|
|
4746
4664
|
ConfigurationPolicy: IResolversParentTypes['DefaultPolicy'] | IResolversParentTypes['OrganizationPolicy'] | IResolversParentTypes['ResourcePolicy'] | IResolversParentTypes['ApplicationPolicy'];
|
|
4747
4665
|
ConfigurationUpdateEvent: IConfigurationUpdateEvent;
|
|
4748
4666
|
Contact: IContact;
|
|
@@ -4798,12 +4716,6 @@ export type IResolversParentTypes = {
|
|
|
4798
4716
|
IUser: IResolversParentTypes['AuthUser'] | IResolversParentTypes['MessengerUser'];
|
|
4799
4717
|
IUserMetadata: IResolversParentTypes['UserMetadata'];
|
|
4800
4718
|
ImageDimensionsConfigInput: IImageDimensionsConfigInput;
|
|
4801
|
-
IntegraitonConfigurationId: IIntegraitonConfigurationId;
|
|
4802
|
-
IntegrationConfiguration: IIntegrationConfiguration;
|
|
4803
|
-
IntegrationConfigurationCreateOrUpdateInput: IIntegrationConfigurationCreateOrUpdateInput;
|
|
4804
|
-
IntegrationConfigurationFilterInput: IIntegrationConfigurationFilterInput;
|
|
4805
|
-
IntegrationConfigurationInput: IIntegrationConfigurationInput;
|
|
4806
|
-
IntegrationConfigurationsOutput: IIntegrationConfigurationsOutput;
|
|
4807
4719
|
InviteMember: IInviteMember;
|
|
4808
4720
|
JSON: Scalars['JSON'];
|
|
4809
4721
|
JSONObject: Scalars['JSONObject'];
|
|
@@ -4829,17 +4741,18 @@ export type IResolversParentTypes = {
|
|
|
4829
4741
|
OrgType: IOrgType;
|
|
4830
4742
|
OrgUser: IOrgUser;
|
|
4831
4743
|
OrgUserAccunt: IOrgUserAccunt;
|
|
4832
|
-
|
|
4744
|
+
OrgUserInput: IOrgUserInput;
|
|
4833
4745
|
Organization: IOrganization;
|
|
4834
|
-
|
|
4746
|
+
OrganizationConfigValueInput: IOrganizationConfigValueInput;
|
|
4835
4747
|
OrganizationConfiguration: IOrganizationConfiguration;
|
|
4836
4748
|
OrganizationCreateRequest: IOrganizationCreateRequest;
|
|
4837
4749
|
OrganizationData: Omit<IOrganizationData, 'resources'> & { resources: Array<Maybe<IResolversParentTypes['ResourceData']>> };
|
|
4838
4750
|
OrganizationIdentifier: IOrganizationIdentifier;
|
|
4751
|
+
OrganizationInput: IOrganizationInput;
|
|
4839
4752
|
OrganizationInvitation: IOrganizationInvitation;
|
|
4840
4753
|
OrganizationInvitationDecode: IOrganizationInvitationDecode;
|
|
4754
|
+
OrganizationInvitationInput: IOrganizationInvitationInput;
|
|
4841
4755
|
OrganizationInvitationRequest: IOrganizationInvitationRequest;
|
|
4842
|
-
OrganizationInvitation_Input: IOrganizationInvitation_Input;
|
|
4843
4756
|
OrganizationMember: IOrganizationMember;
|
|
4844
4757
|
OrganizationNotificationValues: IOrganizationNotificationValues;
|
|
4845
4758
|
OrganizationPolicy: IOrganizationPolicy;
|
|
@@ -4850,7 +4763,6 @@ export type IResolversParentTypes = {
|
|
|
4850
4763
|
OrganizationRole: IOrganizationRole;
|
|
4851
4764
|
OrganizationSettings: IOrganizationSettings;
|
|
4852
4765
|
OrganizationUpdateRequest: IOrganizationUpdateRequest;
|
|
4853
|
-
Organization_Input: IOrganization_Input;
|
|
4854
4766
|
Overrides: IOverrides;
|
|
4855
4767
|
PermissionSubject: IPermissionSubject;
|
|
4856
4768
|
PhoneNumber: IPhoneNumber;
|
|
@@ -4884,7 +4796,7 @@ export type IResolversParentTypes = {
|
|
|
4884
4796
|
Reaction: IReaction;
|
|
4885
4797
|
ReactionInput: IReactionInput;
|
|
4886
4798
|
ResourceAccessRole: Omit<IResourceAccessRole, 'accessRoles'> & { accessRoles?: Maybe<Array<Maybe<IResolversParentTypes['AccessRole']>>> };
|
|
4887
|
-
|
|
4799
|
+
ResourceCreationDataInput: IResourceCreationDataInput;
|
|
4888
4800
|
ResourceData: IResolversParentTypes['OrganizationResourceData'] | IResolversParentTypes['ExternalResourceData'];
|
|
4889
4801
|
ResourcePolicy: IResourcePolicy;
|
|
4890
4802
|
ResourceRole: IResourceRole;
|
|
@@ -4902,7 +4814,7 @@ export type IResolversParentTypes = {
|
|
|
4902
4814
|
TeamCreateRequest: ITeamCreateRequest;
|
|
4903
4815
|
TeamCreationRequest: ITeamCreationRequest;
|
|
4904
4816
|
TeamMember: ITeamMember;
|
|
4905
|
-
|
|
4817
|
+
TeamMemberInput: ITeamMemberInput;
|
|
4906
4818
|
TeamRemoveRequest: ITeamRemoveRequest;
|
|
4907
4819
|
TeamType: ITeamType;
|
|
4908
4820
|
TeamUpdateRequest: ITeamUpdateRequest;
|
|
@@ -4917,11 +4829,11 @@ export type IResolversParentTypes = {
|
|
|
4917
4829
|
UserAccountCreateRequest: IUserAccountCreateRequest;
|
|
4918
4830
|
UserAccountCreatedDetailedEvent: IUserAccountCreatedDetailedEvent;
|
|
4919
4831
|
UserAccountCreatedEvent: IUserAccountCreatedEvent;
|
|
4832
|
+
UserAccountInput: IUserAccountInput;
|
|
4920
4833
|
UserAccountRemoveRequest: IUserAccountRemoveRequest;
|
|
4921
4834
|
UserAccountRemovedEvent: IUserAccountRemovedEvent;
|
|
4922
4835
|
UserAccountUpdateRequest: IUserAccountUpdateRequest;
|
|
4923
4836
|
UserAccountWhere: IUserAccountWhere;
|
|
4924
|
-
UserAccount_Input: IUserAccount_Input;
|
|
4925
4837
|
UserAccounts: IUserAccounts;
|
|
4926
4838
|
UserAuth0Info: IUserAuth0Info;
|
|
4927
4839
|
UserAuth0Integrations: IUserAuth0Integrations;
|
|
@@ -4932,7 +4844,7 @@ export type IResolversParentTypes = {
|
|
|
4932
4844
|
UserDevice: IUserDevice;
|
|
4933
4845
|
UserMetadata: IUserMetadata;
|
|
4934
4846
|
UserOrg: IUserOrg;
|
|
4935
|
-
|
|
4847
|
+
UserOrgInput: IUserOrgInput;
|
|
4936
4848
|
UserPasswordResetInput: IUserPasswordResetInput;
|
|
4937
4849
|
UserPreviousValues: IUserPreviousValues;
|
|
4938
4850
|
UserProfile: IUserProfile;
|
|
@@ -5566,28 +5478,6 @@ export type IIUserMetadataResolvers<ContextType = any, ParentType extends IResol
|
|
|
5566
5478
|
zip_code?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
5567
5479
|
};
|
|
5568
5480
|
|
|
5569
|
-
export type IIntegraitonConfigurationIdResolvers<ContextType = any, ParentType extends IResolversParentTypes['IntegraitonConfigurationId'] = IResolversParentTypes['IntegraitonConfigurationId']> = {
|
|
5570
|
-
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
5571
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
5572
|
-
};
|
|
5573
|
-
|
|
5574
|
-
export type IIntegrationConfigurationResolvers<ContextType = any, ParentType extends IResolversParentTypes['IntegrationConfiguration'] = IResolversParentTypes['IntegrationConfiguration']> = {
|
|
5575
|
-
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
|
5576
|
-
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
5577
|
-
userId?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
|
5578
|
-
integrationName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
5579
|
-
status?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
5580
|
-
updatedAt?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
|
|
5581
|
-
integrationInfo?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
|
|
5582
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
5583
|
-
};
|
|
5584
|
-
|
|
5585
|
-
export type IIntegrationConfigurationsOutputResolvers<ContextType = any, ParentType extends IResolversParentTypes['IntegrationConfigurationsOutput'] = IResolversParentTypes['IntegrationConfigurationsOutput']> = {
|
|
5586
|
-
totalCount?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
5587
|
-
data?: Resolver<Maybe<Array<Maybe<IResolversTypes['IntegrationConfiguration']>>>, ParentType, ContextType>;
|
|
5588
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
5589
|
-
};
|
|
5590
|
-
|
|
5591
5481
|
export type IInviteMemberResolvers<ContextType = any, ParentType extends IResolversParentTypes['InviteMember'] = IResolversParentTypes['InviteMember']> = {
|
|
5592
5482
|
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
5593
5483
|
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
@@ -5693,17 +5583,14 @@ export type IMutationResolvers<ContextType = any, ParentType extends IResolversP
|
|
|
5693
5583
|
createContact?: Resolver<IResolversTypes['Contact'], ParentType, ContextType, RequireFields<IMutationCreateContactArgs, 'contact'>>;
|
|
5694
5584
|
createDirectChannel?: Resolver<Maybe<IResolversTypes['Channel']>, ParentType, ContextType, RequireFields<IMutationCreateDirectChannelArgs, 'receiver' | 'displayName'>>;
|
|
5695
5585
|
createFileUploadLinks?: Resolver<Array<IResolversTypes['String']>, ParentType, ContextType, RequireFields<IMutationCreateFileUploadLinksArgs, 'filenames'>>;
|
|
5696
|
-
createIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['IntegraitonConfigurationId']>, ParentType, ContextType, RequireFields<IMutationCreateIntegrationConfigurationArgs, never>>;
|
|
5697
5586
|
createLanguage?: Resolver<IResolversTypes['Language'], ParentType, ContextType, RequireFields<IMutationCreateLanguageArgs, 'country'>>;
|
|
5698
5587
|
createMessageFileUploadLink?: Resolver<IResolversTypes['String'], ParentType, ContextType, RequireFields<IMutationCreateMessageFileUploadLinkArgs, 'postId' | 'filename'>>;
|
|
5699
5588
|
createMessageFilesUploadLink?: Resolver<Array<IResolversTypes['String']>, ParentType, ContextType, RequireFields<IMutationCreateMessageFilesUploadLinkArgs, 'postId' | 'filenames'>>;
|
|
5700
|
-
createOrUpdateIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['IntegraitonConfigurationId']>, ParentType, ContextType, RequireFields<IMutationCreateOrUpdateIntegrationConfigurationArgs, never>>;
|
|
5701
5589
|
createOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IMutationCreateOrganizationArgs, 'organization'>>;
|
|
5702
5590
|
createTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IMutationCreateTeamArgs, 'request'>>;
|
|
5703
5591
|
declineOrganizationInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationDeclineOrganizationInvitationArgs, 'id'>>;
|
|
5704
5592
|
deleteChannel?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationDeleteChannelArgs, 'id'>>;
|
|
5705
5593
|
deleteContact?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationDeleteContactArgs, 'id'>>;
|
|
5706
|
-
deleteIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationDeleteIntegrationConfigurationArgs, 'id'>>;
|
|
5707
5594
|
deleteLanguage?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationDeleteLanguageArgs, 'id'>>;
|
|
5708
5595
|
deleteMessage?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationDeleteMessageArgs, 'messageId'>>;
|
|
5709
5596
|
deleteMessageFile?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationDeleteMessageFileArgs, 'url'>>;
|
|
@@ -5794,6 +5681,7 @@ export type IOrgMemberResolvers<ContextType = any, ParentType extends IResolvers
|
|
|
5794
5681
|
_id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
5795
5682
|
userId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
5796
5683
|
role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
|
|
5684
|
+
isSelf?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
5797
5685
|
inactive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
5798
5686
|
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
5799
5687
|
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
@@ -6217,13 +6105,11 @@ export type IQueryResolvers<ContextType = any, ParentType extends IResolversPare
|
|
|
6217
6105
|
fetchUserAuthorizedDevices?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserDevice']>>>, ParentType, ContextType, RequireFields<IQueryFetchUserAuthorizedDevicesArgs, 'auth0UserId'>>;
|
|
6218
6106
|
fileInfo?: Resolver<IResolversTypes['FileInfo'], ParentType, ContextType, RequireFields<IQueryFileInfoArgs, 'id'>>;
|
|
6219
6107
|
filesInfo?: Resolver<IResolversTypes['FilesInfo'], ParentType, ContextType, RequireFields<IQueryFilesInfoArgs, never>>;
|
|
6220
|
-
filterIntegrationConfiguration?: Resolver<Maybe<Array<Maybe<IResolversTypes['IntegrationConfiguration']>>>, ParentType, ContextType, RequireFields<IQueryFilterIntegrationConfigurationArgs, never>>;
|
|
6221
6108
|
getAccounts?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserAccount']>>>, ParentType, ContextType, RequireFields<IQueryGetAccountsArgs, never>>;
|
|
6222
6109
|
getAllCountries?: Resolver<Maybe<Array<Maybe<IResolversTypes['Country']>>>, ParentType, ContextType, RequireFields<IQueryGetAllCountriesArgs, never>>;
|
|
6223
6110
|
getAllDeviceToken?: Resolver<Maybe<IResolversTypes['DeviceTokens']>, ParentType, ContextType>;
|
|
6224
6111
|
getAllDeviceTokenById?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserAccount']>>>, ParentType, ContextType, RequireFields<IQueryGetAllDeviceTokenByIdArgs, 'id'>>;
|
|
6225
6112
|
getAllGovernmentId?: Resolver<Maybe<IResolversTypes['UserAccounts']>, ParentType, ContextType>;
|
|
6226
|
-
getAllIntegrationConfigurations?: Resolver<Maybe<IResolversTypes['IntegrationConfigurationsOutput']>, ParentType, ContextType, RequireFields<IQueryGetAllIntegrationConfigurationsArgs, never>>;
|
|
6227
6113
|
getConfiguration?: Resolver<Maybe<Array<Maybe<IResolversTypes['Configuration']>>>, ParentType, ContextType, RequireFields<IQueryGetConfigurationArgs, never>>;
|
|
6228
6114
|
getConfigurationData?: Resolver<Maybe<IResolversTypes['ConfigurationData']>, ParentType, ContextType>;
|
|
6229
6115
|
getConfigurationPolicies?: Resolver<Maybe<Array<Maybe<IResolversTypes['ConfigurationPolicy']>>>, ParentType, ContextType, RequireFields<IQueryGetConfigurationPoliciesArgs, never>>;
|
|
@@ -6231,7 +6117,6 @@ export type IQueryResolvers<ContextType = any, ParentType extends IResolversPare
|
|
|
6231
6117
|
getDeviceToken?: Resolver<Maybe<IResolversTypes['DeviceToken']>, ParentType, ContextType>;
|
|
6232
6118
|
getEnvironment?: Resolver<Maybe<IResolversTypes['Environment']>, ParentType, ContextType>;
|
|
6233
6119
|
getExtendedUserAccount?: Resolver<IResolversTypes['UserAccount'], ParentType, ContextType, RequireFields<IQueryGetExtendedUserAccountArgs, never>>;
|
|
6234
|
-
getIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['IntegrationConfiguration']>, ParentType, ContextType, RequireFields<IQueryGetIntegrationConfigurationArgs, 'id'>>;
|
|
6235
6120
|
getManageableOrganizations?: Resolver<Maybe<Array<Maybe<IResolversTypes['Organization']>>>, ParentType, ContextType>;
|
|
6236
6121
|
getOrgInvitationMembers?: Resolver<Maybe<IResolversTypes['OrgInvitationMembers']>, ParentType, ContextType, RequireFields<IQueryGetOrgInvitationMembersArgs, never>>;
|
|
6237
6122
|
getOrgTeamInvitations?: Resolver<Maybe<Array<Maybe<IResolversTypes['OrganizationInvitation']>>>, ParentType, ContextType, RequireFields<IQueryGetOrgTeamInvitationsArgs, never>>;
|
|
@@ -6661,9 +6546,6 @@ export type IResolvers<ContextType = any> = {
|
|
|
6661
6546
|
ITerritorialState?: IITerritorialStateResolvers<ContextType>;
|
|
6662
6547
|
IUser?: IIUserResolvers<ContextType>;
|
|
6663
6548
|
IUserMetadata?: IIUserMetadataResolvers<ContextType>;
|
|
6664
|
-
IntegraitonConfigurationId?: IIntegraitonConfigurationIdResolvers<ContextType>;
|
|
6665
|
-
IntegrationConfiguration?: IIntegrationConfigurationResolvers<ContextType>;
|
|
6666
|
-
IntegrationConfigurationsOutput?: IIntegrationConfigurationsOutputResolvers<ContextType>;
|
|
6667
6549
|
InviteMember?: IInviteMemberResolvers<ContextType>;
|
|
6668
6550
|
JSON?: GraphQLScalarType;
|
|
6669
6551
|
JSONObject?: GraphQLScalarType;
|