@messenger-box/platform-client 0.0.1-alpha.275 → 0.0.1-alpha.291
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 +19 -0
- package/lib/generated-model.d.ts +129 -221
- package/lib/index.js +18 -4
- package/lib/index.js.map +1 -1
- package/package.json +4 -4
- package/src/generated-model.tsx +135 -246
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'];
|
|
@@ -678,9 +686,15 @@ export type IDeviceInfoInput = {
|
|
|
678
686
|
os: Scalars['String'];
|
|
679
687
|
deviceName?: Maybe<Scalars['String']>;
|
|
680
688
|
browserName?: Maybe<Scalars['String']>;
|
|
681
|
-
|
|
689
|
+
platform: IDeviceInfoPlatform;
|
|
682
690
|
};
|
|
683
691
|
|
|
692
|
+
export enum IDeviceInfoPlatform {
|
|
693
|
+
Mobile = 'MOBILE',
|
|
694
|
+
Web = 'WEB',
|
|
695
|
+
Extension = 'EXTENSION'
|
|
696
|
+
}
|
|
697
|
+
|
|
684
698
|
export type IDeviceToken = {
|
|
685
699
|
__typename?: 'DeviceToken';
|
|
686
700
|
deviceToken?: Maybe<Scalars['String']>;
|
|
@@ -917,7 +931,7 @@ export type IIConfigurationService = {
|
|
|
917
931
|
export type IIConfigurationServiceUpdateValueArgs = {
|
|
918
932
|
key: Scalars['String'];
|
|
919
933
|
value: Scalars['AnyObject'];
|
|
920
|
-
overrides:
|
|
934
|
+
overrides: IConfigurationOverridesInput;
|
|
921
935
|
target?: Maybe<IConfigurationTarget>;
|
|
922
936
|
donotNotifyError?: Maybe<Scalars['Boolean']>;
|
|
923
937
|
};
|
|
@@ -1035,53 +1049,6 @@ export type IImageDimensionsConfigInput = {
|
|
|
1035
1049
|
thumbnailImageHeight?: Maybe<Scalars['Int']>;
|
|
1036
1050
|
};
|
|
1037
1051
|
|
|
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
1052
|
export type IInviteMember = {
|
|
1086
1053
|
__typename?: 'InviteMember';
|
|
1087
1054
|
id?: Maybe<Scalars['String']>;
|
|
@@ -1119,8 +1086,8 @@ export type ILanguage = {
|
|
|
1119
1086
|
code: Scalars['String'];
|
|
1120
1087
|
name: Scalars['String'];
|
|
1121
1088
|
nativeName: Scalars['String'];
|
|
1122
|
-
createdAt: Scalars['
|
|
1123
|
-
updatedAt?: Maybe<Scalars['
|
|
1089
|
+
createdAt: Scalars['DateTime'];
|
|
1090
|
+
updatedAt?: Maybe<Scalars['DateTime']>;
|
|
1124
1091
|
};
|
|
1125
1092
|
|
|
1126
1093
|
export type ILanguageInput = {
|
|
@@ -1143,7 +1110,7 @@ export type ILoginError = {
|
|
|
1143
1110
|
|
|
1144
1111
|
export type IMachineConfiguration = IIConfigurationModel & {
|
|
1145
1112
|
__typename?: 'MachineConfiguration';
|
|
1146
|
-
/**
|
|
1113
|
+
/** The ID. */
|
|
1147
1114
|
id?: Maybe<Scalars['ID']>;
|
|
1148
1115
|
/** The URL to the machine's settings. */
|
|
1149
1116
|
resource: Scalars['URI'];
|
|
@@ -1279,18 +1246,15 @@ export type IMutation = {
|
|
|
1279
1246
|
createContact: IContact;
|
|
1280
1247
|
createDirectChannel?: Maybe<IChannel>;
|
|
1281
1248
|
createFileUploadLinks: Array<Scalars['String']>;
|
|
1282
|
-
createIntegrationConfiguration?: Maybe<IIntegraitonConfigurationId>;
|
|
1283
1249
|
createLanguage: ILanguage;
|
|
1284
1250
|
/** Attach Post File */
|
|
1285
1251
|
createMessageFileUploadLink: Scalars['String'];
|
|
1286
1252
|
createMessageFilesUploadLink: Array<Scalars['String']>;
|
|
1287
|
-
createOrUpdateIntegrationConfiguration?: Maybe<IIntegraitonConfigurationId>;
|
|
1288
1253
|
createOrganization?: Maybe<IOrganization>;
|
|
1289
1254
|
createTeam?: Maybe<IAccountTeam>;
|
|
1290
1255
|
declineOrganizationInvitation?: Maybe<Scalars['Boolean']>;
|
|
1291
1256
|
deleteChannel?: Maybe<Scalars['Boolean']>;
|
|
1292
1257
|
deleteContact: Scalars['Boolean'];
|
|
1293
|
-
deleteIntegrationConfiguration?: Maybe<Scalars['Boolean']>;
|
|
1294
1258
|
deleteLanguage: Scalars['Boolean'];
|
|
1295
1259
|
deleteMessage?: Maybe<Scalars['Boolean']>;
|
|
1296
1260
|
/** Detach Post File */
|
|
@@ -1340,7 +1304,7 @@ export type IMutation = {
|
|
|
1340
1304
|
setGender: IUserAccount;
|
|
1341
1305
|
setName: IUserAccount;
|
|
1342
1306
|
setSettingsValueByResource?: Maybe<Scalars['Boolean']>;
|
|
1343
|
-
/**
|
|
1307
|
+
/** Triggers onUserLoggedIn events */
|
|
1344
1308
|
updateAuth0UserPassword?: Maybe<Scalars['Boolean']>;
|
|
1345
1309
|
updateConfigurationPolicyValue?: Maybe<Scalars['Boolean']>;
|
|
1346
1310
|
updateConfigurationPolicyValueByUri?: Maybe<Scalars['Boolean']>;
|
|
@@ -1465,11 +1429,6 @@ export type IMutationCreateFileUploadLinksArgs = {
|
|
|
1465
1429
|
};
|
|
1466
1430
|
|
|
1467
1431
|
|
|
1468
|
-
export type IMutationCreateIntegrationConfigurationArgs = {
|
|
1469
|
-
data?: Maybe<IIntegrationConfigurationInput>;
|
|
1470
|
-
};
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
1432
|
export type IMutationCreateLanguageArgs = {
|
|
1474
1433
|
country: ILanguageInput;
|
|
1475
1434
|
};
|
|
@@ -1487,11 +1446,6 @@ export type IMutationCreateMessageFilesUploadLinkArgs = {
|
|
|
1487
1446
|
};
|
|
1488
1447
|
|
|
1489
1448
|
|
|
1490
|
-
export type IMutationCreateOrUpdateIntegrationConfigurationArgs = {
|
|
1491
|
-
data?: Maybe<IIntegrationConfigurationCreateOrUpdateInput>;
|
|
1492
|
-
};
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
1449
|
export type IMutationCreateOrganizationArgs = {
|
|
1496
1450
|
organization: IOrganizationCreateRequest;
|
|
1497
1451
|
};
|
|
@@ -1517,11 +1471,6 @@ export type IMutationDeleteContactArgs = {
|
|
|
1517
1471
|
};
|
|
1518
1472
|
|
|
1519
1473
|
|
|
1520
|
-
export type IMutationDeleteIntegrationConfigurationArgs = {
|
|
1521
|
-
id: Scalars['String'];
|
|
1522
|
-
};
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
1474
|
export type IMutationDeleteLanguageArgs = {
|
|
1526
1475
|
id: Scalars['ID'];
|
|
1527
1476
|
};
|
|
@@ -1666,7 +1615,7 @@ export type IMutationRemoveTeamMemberArgs = {
|
|
|
1666
1615
|
|
|
1667
1616
|
export type IMutationRemoveUserAuthSessionArgs = {
|
|
1668
1617
|
sessionId?: Maybe<Scalars['String']>;
|
|
1669
|
-
|
|
1618
|
+
platform?: Maybe<IDeviceInfoPlatform>;
|
|
1670
1619
|
};
|
|
1671
1620
|
|
|
1672
1621
|
|
|
@@ -1677,7 +1626,7 @@ export type IMutationRemovedUserAuthIntegrationArgs = {
|
|
|
1677
1626
|
|
|
1678
1627
|
export type IMutationRenewAuthTokenArgs = {
|
|
1679
1628
|
sessionId?: Maybe<Scalars['String']>;
|
|
1680
|
-
|
|
1629
|
+
platform?: Maybe<IDeviceInfoPlatform>;
|
|
1681
1630
|
};
|
|
1682
1631
|
|
|
1683
1632
|
|
|
@@ -1773,7 +1722,7 @@ export type IMutationUpdateAuth0UserPasswordArgs = {
|
|
|
1773
1722
|
export type IMutationUpdateConfigurationPolicyValueArgs = {
|
|
1774
1723
|
key: Scalars['String'];
|
|
1775
1724
|
value: Scalars['AnyObject'];
|
|
1776
|
-
overrides?: Maybe<
|
|
1725
|
+
overrides?: Maybe<IConfigurationOverridesInput>;
|
|
1777
1726
|
target?: Maybe<Scalars['Int']>;
|
|
1778
1727
|
donotNotifyError?: Maybe<Scalars['Boolean']>;
|
|
1779
1728
|
};
|
|
@@ -1783,7 +1732,7 @@ export type IMutationUpdateConfigurationPolicyValueByUriArgs = {
|
|
|
1783
1732
|
resource?: Maybe<Scalars['URI']>;
|
|
1784
1733
|
key: Scalars['String'];
|
|
1785
1734
|
value: Scalars['AnyObject'];
|
|
1786
|
-
overrides?: Maybe<
|
|
1735
|
+
overrides?: Maybe<IConfigurationOverridesInput>;
|
|
1787
1736
|
target?: Maybe<Scalars['Int']>;
|
|
1788
1737
|
donotNotifyError?: Maybe<Scalars['Boolean']>;
|
|
1789
1738
|
};
|
|
@@ -1792,7 +1741,7 @@ export type IMutationUpdateConfigurationPolicyValueByUriArgs = {
|
|
|
1792
1741
|
export type IMutationUpdateConfigurationValueArgs = {
|
|
1793
1742
|
key: Scalars['String'];
|
|
1794
1743
|
value: Scalars['AnyObject'];
|
|
1795
|
-
overrides?: Maybe<
|
|
1744
|
+
overrides?: Maybe<IConfigurationOverridesInput>;
|
|
1796
1745
|
target?: Maybe<Scalars['Int']>;
|
|
1797
1746
|
donotNotifyError?: Maybe<Scalars['Boolean']>;
|
|
1798
1747
|
};
|
|
@@ -1802,7 +1751,7 @@ export type IMutationUpdateConfigurationValueByUriArgs = {
|
|
|
1802
1751
|
resource?: Maybe<Scalars['URI']>;
|
|
1803
1752
|
key: Scalars['String'];
|
|
1804
1753
|
value: Scalars['AnyObject'];
|
|
1805
|
-
overrides?: Maybe<
|
|
1754
|
+
overrides?: Maybe<IConfigurationOverridesInput>;
|
|
1806
1755
|
target?: Maybe<Scalars['Int']>;
|
|
1807
1756
|
donotNotifyError?: Maybe<Scalars['Boolean']>;
|
|
1808
1757
|
};
|
|
@@ -1835,7 +1784,7 @@ export type IMutationUpdateOrganizationArgs = {
|
|
|
1835
1784
|
|
|
1836
1785
|
export type IMutationUpdateOrganizationContextAddResourcesArgs = {
|
|
1837
1786
|
orgId?: Maybe<Scalars['String']>;
|
|
1838
|
-
resourcesToAdd: Array<Maybe<
|
|
1787
|
+
resourcesToAdd: Array<Maybe<IResourceCreationDataInput>>;
|
|
1839
1788
|
index?: Maybe<Scalars['Int']>;
|
|
1840
1789
|
};
|
|
1841
1790
|
|
|
@@ -1846,7 +1795,7 @@ export type IMutationUpdateOrganizationContextRemoveResourcesArgs = {
|
|
|
1846
1795
|
|
|
1847
1796
|
|
|
1848
1797
|
export type IMutationUpdateOrganizationContextUpdateResourcesArgs = {
|
|
1849
|
-
resourcesToAdd: Array<Maybe<
|
|
1798
|
+
resourcesToAdd: Array<Maybe<IResourceCreationDataInput>>;
|
|
1850
1799
|
resourcesToRemove: Array<Maybe<Scalars['URI']>>;
|
|
1851
1800
|
index?: Maybe<Scalars['Int']>;
|
|
1852
1801
|
};
|
|
@@ -1867,7 +1816,7 @@ export type IMutationUpdateReactionToMessageArgs = {
|
|
|
1867
1816
|
export type IMutationUpdateRoleValueArgs = {
|
|
1868
1817
|
key: Scalars['String'];
|
|
1869
1818
|
value: Scalars['AnyObject'];
|
|
1870
|
-
overrides?: Maybe<
|
|
1819
|
+
overrides?: Maybe<IConfigurationOverridesInput>;
|
|
1871
1820
|
target?: Maybe<Scalars['Int']>;
|
|
1872
1821
|
donotNotifyError?: Maybe<Scalars['Boolean']>;
|
|
1873
1822
|
};
|
|
@@ -1925,6 +1874,7 @@ export type IOrgMember = {
|
|
|
1925
1874
|
_id?: Maybe<Scalars['String']>;
|
|
1926
1875
|
userId?: Maybe<Scalars['String']>;
|
|
1927
1876
|
role?: Maybe<IApplicationRoles>;
|
|
1877
|
+
isSelf?: Maybe<Scalars['Boolean']>;
|
|
1928
1878
|
inactive?: Maybe<Scalars['Boolean']>;
|
|
1929
1879
|
name?: Maybe<Scalars['String']>;
|
|
1930
1880
|
email?: Maybe<Scalars['String']>;
|
|
@@ -1963,6 +1913,13 @@ export type IOrgUserAccunt = INode & {
|
|
|
1963
1913
|
emailVerified?: Maybe<Scalars['Boolean']>;
|
|
1964
1914
|
};
|
|
1965
1915
|
|
|
1916
|
+
export type IOrgUserInput = {
|
|
1917
|
+
userId?: Maybe<Scalars['String']>;
|
|
1918
|
+
role?: Maybe<IApplicationRoles>;
|
|
1919
|
+
inactive?: Maybe<Scalars['Boolean']>;
|
|
1920
|
+
crossCheckEmail?: Maybe<Scalars['String']>;
|
|
1921
|
+
};
|
|
1922
|
+
|
|
1966
1923
|
export enum IOrgUserRole {
|
|
1967
1924
|
BillingLeader = 'BILLING_LEADER',
|
|
1968
1925
|
Member = 'MEMBER',
|
|
@@ -1970,13 +1927,6 @@ export enum IOrgUserRole {
|
|
|
1970
1927
|
Owner = 'OWNER'
|
|
1971
1928
|
}
|
|
1972
1929
|
|
|
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
1930
|
/**
|
|
1981
1931
|
* OrganizationInvitationRole: The possible organization invitation roles.
|
|
1982
1932
|
*
|
|
@@ -2042,14 +1992,14 @@ export type IOrganization = {
|
|
|
2042
1992
|
invitations?: Maybe<Array<Maybe<IOrganizationInvitation>>>;
|
|
2043
1993
|
};
|
|
2044
1994
|
|
|
2045
|
-
export type
|
|
1995
|
+
export type IOrganizationConfigValueInput = {
|
|
2046
1996
|
section?: Maybe<Scalars['String']>;
|
|
2047
|
-
overrides?: Maybe<
|
|
1997
|
+
overrides?: Maybe<IConfigurationOverridesInput>;
|
|
2048
1998
|
};
|
|
2049
1999
|
|
|
2050
2000
|
export type IOrganizationConfiguration = IIConfigurationModel & {
|
|
2051
2001
|
__typename?: 'OrganizationConfiguration';
|
|
2052
|
-
/**
|
|
2002
|
+
/** The ID. */
|
|
2053
2003
|
id?: Maybe<Scalars['ID']>;
|
|
2054
2004
|
resource: Scalars['URI'];
|
|
2055
2005
|
target?: Maybe<Scalars['Int']>;
|
|
@@ -2072,14 +2022,14 @@ export type IOrganizationCreateRequest = {
|
|
|
2072
2022
|
description?: Maybe<Scalars['String']>;
|
|
2073
2023
|
namespace?: Maybe<Scalars['String']>;
|
|
2074
2024
|
picture?: Maybe<Scalars['String']>;
|
|
2075
|
-
orgMembers?: Maybe<Array<Maybe<
|
|
2025
|
+
orgMembers?: Maybe<Array<Maybe<IOrgUserInput>>>;
|
|
2076
2026
|
billingLeaders?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
2077
2027
|
mainBillingLeaderId?: Maybe<Scalars['String']>;
|
|
2078
2028
|
periodStart?: Maybe<Scalars['DateTime']>;
|
|
2079
2029
|
periodStop?: Maybe<Scalars['DateTime']>;
|
|
2080
2030
|
stripeId?: Maybe<Scalars['String']>;
|
|
2081
2031
|
stripeSubscriptionId?: Maybe<Scalars['String']>;
|
|
2082
|
-
invitations?: Maybe<Array<Maybe<
|
|
2032
|
+
invitations?: Maybe<Array<Maybe<IOrganizationInvitationInput>>>;
|
|
2083
2033
|
};
|
|
2084
2034
|
|
|
2085
2035
|
export type IOrganizationData = {
|
|
@@ -2100,6 +2050,29 @@ export type IOrganizationIdentifier = {
|
|
|
2100
2050
|
configPath?: Maybe<Scalars['URI']>;
|
|
2101
2051
|
};
|
|
2102
2052
|
|
|
2053
|
+
export type IOrganizationInput = {
|
|
2054
|
+
id?: Maybe<Scalars['ID']>;
|
|
2055
|
+
name: Scalars['String'];
|
|
2056
|
+
title?: Maybe<Scalars['String']>;
|
|
2057
|
+
description?: Maybe<Scalars['String']>;
|
|
2058
|
+
picture?: Maybe<Scalars['String']>;
|
|
2059
|
+
stripeId?: Maybe<Scalars['String']>;
|
|
2060
|
+
namespace?: Maybe<Scalars['String']>;
|
|
2061
|
+
orgUserCount?: Maybe<Scalars['Int']>;
|
|
2062
|
+
createdAt?: Maybe<Scalars['DateTime']>;
|
|
2063
|
+
updatedAt?: Maybe<Scalars['DateTime']>;
|
|
2064
|
+
orgMembers?: Maybe<Array<Maybe<IOrgUserInput>>>;
|
|
2065
|
+
periodStart?: Maybe<Scalars['DateTime']>;
|
|
2066
|
+
periodStop?: Maybe<Scalars['DateTime']>;
|
|
2067
|
+
billingLeaders?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
2068
|
+
billingEmail?: Maybe<Scalars['String']>;
|
|
2069
|
+
isBillingLeader?: Maybe<Scalars['Boolean']>;
|
|
2070
|
+
mainBilingLeaderId?: Maybe<Scalars['String']>;
|
|
2071
|
+
stripeSubscriptionId?: Maybe<Scalars['String']>;
|
|
2072
|
+
invitations?: Maybe<Array<Maybe<IOrganizationInvitationInput>>>;
|
|
2073
|
+
status?: Maybe<Scalars['String']>;
|
|
2074
|
+
};
|
|
2075
|
+
|
|
2103
2076
|
export type IOrganizationInvitation = {
|
|
2104
2077
|
__typename?: 'OrganizationInvitation';
|
|
2105
2078
|
id: Scalars['ID'];
|
|
@@ -2125,15 +2098,7 @@ export type IOrganizationInvitationDecode = {
|
|
|
2125
2098
|
invitedBy?: Maybe<Scalars['String']>;
|
|
2126
2099
|
};
|
|
2127
2100
|
|
|
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 = {
|
|
2101
|
+
export type IOrganizationInvitationInput = {
|
|
2137
2102
|
email?: Maybe<Scalars['String']>;
|
|
2138
2103
|
teamId?: Maybe<Scalars['String']>;
|
|
2139
2104
|
role?: Maybe<IApplicationRoles>;
|
|
@@ -2147,6 +2112,14 @@ export type IOrganizationInvitation_Input = {
|
|
|
2147
2112
|
tokenExpiration?: Maybe<Scalars['DateTime']>;
|
|
2148
2113
|
};
|
|
2149
2114
|
|
|
2115
|
+
export type IOrganizationInvitationRequest = {
|
|
2116
|
+
teamId?: Maybe<Scalars['String']>;
|
|
2117
|
+
emails?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
2118
|
+
invitedBy?: Maybe<Scalars['String']>;
|
|
2119
|
+
orgName?: Maybe<Scalars['String']>;
|
|
2120
|
+
role?: Maybe<Scalars['String']>;
|
|
2121
|
+
};
|
|
2122
|
+
|
|
2150
2123
|
export type IOrganizationMember = {
|
|
2151
2124
|
__typename?: 'OrganizationMember';
|
|
2152
2125
|
id?: Maybe<Scalars['String']>;
|
|
@@ -2176,7 +2149,7 @@ export type IOrganizationRemoveRequest = {
|
|
|
2176
2149
|
|
|
2177
2150
|
export type IOrganizationResourceConfiguration = IIConfigurationModel & {
|
|
2178
2151
|
__typename?: 'OrganizationResourceConfiguration';
|
|
2179
|
-
/**
|
|
2152
|
+
/** The ID. */
|
|
2180
2153
|
id?: Maybe<Scalars['ID']>;
|
|
2181
2154
|
resource: Scalars['URI'];
|
|
2182
2155
|
target?: Maybe<Scalars['Int']>;
|
|
@@ -2241,30 +2214,7 @@ export type IOrganizationSettings = IISettingsSubject & {
|
|
|
2241
2214
|
export type IOrganizationUpdateRequest = {
|
|
2242
2215
|
id?: Maybe<Scalars['String']>;
|
|
2243
2216
|
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']>;
|
|
2217
|
+
payload?: Maybe<IOrganizationInput>;
|
|
2268
2218
|
};
|
|
2269
2219
|
|
|
2270
2220
|
export type IOverrides = {
|
|
@@ -2325,7 +2275,7 @@ export type IPhoneNumberInput = {
|
|
|
2325
2275
|
|
|
2326
2276
|
export type IPolicySubject = {
|
|
2327
2277
|
__typename?: 'PolicySubject';
|
|
2328
|
-
/**
|
|
2278
|
+
/** The URL to the policies. */
|
|
2329
2279
|
policyURL: Scalars['URI'];
|
|
2330
2280
|
/** The time when this was created. */
|
|
2331
2281
|
createdAt?: Maybe<Scalars['String']>;
|
|
@@ -2590,8 +2540,8 @@ export type IProfile = {
|
|
|
2590
2540
|
location?: Maybe<Scalars['String']>;
|
|
2591
2541
|
work?: Maybe<Scalars['String']>;
|
|
2592
2542
|
languages?: Maybe<Array<ILanguage>>;
|
|
2593
|
-
createdAt: Scalars['
|
|
2594
|
-
updatedAt: Scalars['
|
|
2543
|
+
createdAt: Scalars['DateTime'];
|
|
2544
|
+
updatedAt: Scalars['DateTime'];
|
|
2595
2545
|
};
|
|
2596
2546
|
|
|
2597
2547
|
export type IProfileInput = {
|
|
@@ -2644,18 +2594,16 @@ export type IQuery = {
|
|
|
2644
2594
|
defaultViewerSettingsSubject: IDefaultSettings;
|
|
2645
2595
|
directChannel?: Maybe<IChannel>;
|
|
2646
2596
|
dummy?: Maybe<Scalars['Int']>;
|
|
2647
|
-
/**
|
|
2597
|
+
/** Fetches a User from Auth0 Service */
|
|
2648
2598
|
fetchAuth0User?: Maybe<IUserProfile>;
|
|
2649
2599
|
fetchUserAuthorizedDevices?: Maybe<Array<Maybe<IUserDevice>>>;
|
|
2650
2600
|
fileInfo: IFileInfo;
|
|
2651
2601
|
filesInfo: IFilesInfo;
|
|
2652
|
-
filterIntegrationConfiguration?: Maybe<Array<Maybe<IIntegrationConfiguration>>>;
|
|
2653
2602
|
getAccounts?: Maybe<Array<Maybe<IUserAccount>>>;
|
|
2654
2603
|
getAllCountries?: Maybe<Array<Maybe<ICountry>>>;
|
|
2655
2604
|
getAllDeviceToken?: Maybe<IDeviceTokens>;
|
|
2656
2605
|
getAllDeviceTokenById?: Maybe<Array<Maybe<IUserAccount>>>;
|
|
2657
2606
|
getAllGovernmentId?: Maybe<IUserAccounts>;
|
|
2658
|
-
getAllIntegrationConfigurations?: Maybe<IIntegrationConfigurationsOutput>;
|
|
2659
2607
|
getConfiguration?: Maybe<Array<Maybe<IConfiguration>>>;
|
|
2660
2608
|
getConfigurationData?: Maybe<IConfigurationData>;
|
|
2661
2609
|
getConfigurationPolicies?: Maybe<Array<Maybe<IConfigurationPolicy>>>;
|
|
@@ -2663,7 +2611,6 @@ export type IQuery = {
|
|
|
2663
2611
|
getDeviceToken?: Maybe<IDeviceToken>;
|
|
2664
2612
|
getEnvironment?: Maybe<IEnvironment>;
|
|
2665
2613
|
getExtendedUserAccount: IUserAccount;
|
|
2666
|
-
getIntegrationConfiguration?: Maybe<IIntegrationConfiguration>;
|
|
2667
2614
|
getManageableOrganizations?: Maybe<Array<Maybe<IOrganization>>>;
|
|
2668
2615
|
getOrgInvitationMembers?: Maybe<IOrgInvitationMembers>;
|
|
2669
2616
|
getOrgTeamInvitations?: Maybe<Array<Maybe<IOrganizationInvitation>>>;
|
|
@@ -2834,11 +2781,6 @@ export type IQueryFilesInfoArgs = {
|
|
|
2834
2781
|
};
|
|
2835
2782
|
|
|
2836
2783
|
|
|
2837
|
-
export type IQueryFilterIntegrationConfigurationArgs = {
|
|
2838
|
-
filter?: Maybe<IIntegrationConfigurationFilterInput>;
|
|
2839
|
-
};
|
|
2840
|
-
|
|
2841
|
-
|
|
2842
2784
|
export type IQueryGetAccountsArgs = {
|
|
2843
2785
|
where?: Maybe<IUserAccountWhere>;
|
|
2844
2786
|
};
|
|
@@ -2854,14 +2796,6 @@ export type IQueryGetAllDeviceTokenByIdArgs = {
|
|
|
2854
2796
|
};
|
|
2855
2797
|
|
|
2856
2798
|
|
|
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
2799
|
export type IQueryGetConfigurationArgs = {
|
|
2866
2800
|
input?: Maybe<Array<Maybe<IConfigurationInput>>>;
|
|
2867
2801
|
};
|
|
@@ -2877,11 +2811,6 @@ export type IQueryGetExtendedUserAccountArgs = {
|
|
|
2877
2811
|
};
|
|
2878
2812
|
|
|
2879
2813
|
|
|
2880
|
-
export type IQueryGetIntegrationConfigurationArgs = {
|
|
2881
|
-
id: Scalars['String'];
|
|
2882
|
-
};
|
|
2883
|
-
|
|
2884
|
-
|
|
2885
2814
|
export type IQueryGetOrgInvitationMembersArgs = {
|
|
2886
2815
|
offset?: Maybe<Scalars['Int']>;
|
|
2887
2816
|
limit?: Maybe<Scalars['Int']>;
|
|
@@ -2894,7 +2823,7 @@ export type IQueryGetOrgTeamInvitationsArgs = {
|
|
|
2894
2823
|
|
|
2895
2824
|
|
|
2896
2825
|
export type IQueryGetOrganizationConfigValueArgs = {
|
|
2897
|
-
value?: Maybe<
|
|
2826
|
+
value?: Maybe<IOrganizationConfigValueInput>;
|
|
2898
2827
|
};
|
|
2899
2828
|
|
|
2900
2829
|
|
|
@@ -3078,7 +3007,7 @@ export type IResourceAccessRole = {
|
|
|
3078
3007
|
resourceUserRoles?: Maybe<Array<Maybe<IResourceUser>>>;
|
|
3079
3008
|
};
|
|
3080
3009
|
|
|
3081
|
-
export type
|
|
3010
|
+
export type IResourceCreationDataInput = {
|
|
3082
3011
|
uri: Scalars['URI'];
|
|
3083
3012
|
name?: Maybe<Scalars['String']>;
|
|
3084
3013
|
};
|
|
@@ -3263,7 +3192,7 @@ export type ITeamCreateRequest = {
|
|
|
3263
3192
|
orgName: Scalars['String'];
|
|
3264
3193
|
tags?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
3265
3194
|
emails?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
3266
|
-
teamMembers?: Maybe<Array<Maybe<
|
|
3195
|
+
teamMembers?: Maybe<Array<Maybe<ITeamMemberInput>>>;
|
|
3267
3196
|
parentTeam?: Maybe<Scalars['String']>;
|
|
3268
3197
|
description?: Maybe<Scalars['String']>;
|
|
3269
3198
|
};
|
|
@@ -3290,7 +3219,7 @@ export type ITeamMember = {
|
|
|
3290
3219
|
status?: Maybe<Scalars['String']>;
|
|
3291
3220
|
};
|
|
3292
3221
|
|
|
3293
|
-
export type
|
|
3222
|
+
export type ITeamMemberInput = {
|
|
3294
3223
|
id?: Maybe<Scalars['String']>;
|
|
3295
3224
|
email?: Maybe<Scalars['String']>;
|
|
3296
3225
|
userId?: Maybe<Scalars['String']>;
|
|
@@ -3314,7 +3243,7 @@ export type ITeamType = {
|
|
|
3314
3243
|
|
|
3315
3244
|
export type ITeamUpdateRequest = {
|
|
3316
3245
|
id: Scalars['String'];
|
|
3317
|
-
payload?: Maybe<
|
|
3246
|
+
payload?: Maybe<IAccountTeamInput>;
|
|
3318
3247
|
requestedUserId?: Maybe<Scalars['String']>;
|
|
3319
3248
|
};
|
|
3320
3249
|
|
|
@@ -3427,6 +3356,14 @@ export type IUserAccountCreatedEvent = {
|
|
|
3427
3356
|
sourceUser?: Maybe<IUserProfile>;
|
|
3428
3357
|
};
|
|
3429
3358
|
|
|
3359
|
+
export type IUserAccountInput = {
|
|
3360
|
+
id?: Maybe<Scalars['String']>;
|
|
3361
|
+
email?: Maybe<Scalars['String']>;
|
|
3362
|
+
alias?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
3363
|
+
username?: Maybe<Scalars['String']>;
|
|
3364
|
+
tokens?: Maybe<Array<Maybe<IUserTokenInput>>>;
|
|
3365
|
+
};
|
|
3366
|
+
|
|
3430
3367
|
export type IUserAccountRemoveRequest = {
|
|
3431
3368
|
id?: Maybe<Scalars['String']>;
|
|
3432
3369
|
};
|
|
@@ -3442,7 +3379,7 @@ export type IUserAccountRemovedEvent = {
|
|
|
3442
3379
|
|
|
3443
3380
|
export type IUserAccountUpdateRequest = {
|
|
3444
3381
|
id: Scalars['String'];
|
|
3445
|
-
payload?: Maybe<
|
|
3382
|
+
payload?: Maybe<IUserAccountInput>;
|
|
3446
3383
|
};
|
|
3447
3384
|
|
|
3448
3385
|
export type IUserAccountWhere = {
|
|
@@ -3452,14 +3389,6 @@ export type IUserAccountWhere = {
|
|
|
3452
3389
|
username?: Maybe<Scalars['String']>;
|
|
3453
3390
|
};
|
|
3454
3391
|
|
|
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
3392
|
export type IUserAccounts = {
|
|
3464
3393
|
__typename?: 'UserAccounts';
|
|
3465
3394
|
data?: Maybe<Array<Maybe<IUserAccount>>>;
|
|
@@ -3484,7 +3413,7 @@ export type IUserAuth0SessionDeviceInfo = {
|
|
|
3484
3413
|
os?: Maybe<Scalars['String']>;
|
|
3485
3414
|
deviceName?: Maybe<Scalars['String']>;
|
|
3486
3415
|
browserName?: Maybe<Scalars['String']>;
|
|
3487
|
-
|
|
3416
|
+
platform: IDeviceInfoPlatform;
|
|
3488
3417
|
};
|
|
3489
3418
|
|
|
3490
3419
|
export type IUserAuth0SessionInfo = {
|
|
@@ -3511,7 +3440,7 @@ export type IUserAuth0UpdateFields = {
|
|
|
3511
3440
|
|
|
3512
3441
|
export type IUserConfiguration = IIConfigurationModel & {
|
|
3513
3442
|
__typename?: 'UserConfiguration';
|
|
3514
|
-
/**
|
|
3443
|
+
/** The ID. */
|
|
3515
3444
|
id?: Maybe<Scalars['ID']>;
|
|
3516
3445
|
/** The URL to the user's settings. */
|
|
3517
3446
|
resource: Scalars['URI'];
|
|
@@ -3562,7 +3491,7 @@ export type IUserOrg = {
|
|
|
3562
3491
|
inactive?: Maybe<Scalars['Boolean']>;
|
|
3563
3492
|
};
|
|
3564
3493
|
|
|
3565
|
-
export type
|
|
3494
|
+
export type IUserOrgInput = {
|
|
3566
3495
|
userId: Scalars['String'];
|
|
3567
3496
|
role?: Maybe<IApplicationRoles>;
|
|
3568
3497
|
inactive?: Maybe<Scalars['Boolean']>;
|
|
@@ -4430,7 +4359,7 @@ export type IResolversTypes = {
|
|
|
4430
4359
|
AccountAddressInput: IAccountAddressInput;
|
|
4431
4360
|
ID: ResolverTypeWrapper<Scalars['ID']>;
|
|
4432
4361
|
AccountTeam: ResolverTypeWrapper<IAccountTeam>;
|
|
4433
|
-
|
|
4362
|
+
AccountTeamInput: IAccountTeamInput;
|
|
4434
4363
|
AdminIdeSettings: ResolverTypeWrapper<IAdminIdeSettings>;
|
|
4435
4364
|
Int: ResolverTypeWrapper<Scalars['Int']>;
|
|
4436
4365
|
AnyObject: ResolverTypeWrapper<Scalars['AnyObject']>;
|
|
@@ -4443,7 +4372,7 @@ export type IResolversTypes = {
|
|
|
4443
4372
|
Auth0IdentityProfileData: ResolverTypeWrapper<IAuth0IdentityProfileData>;
|
|
4444
4373
|
AuthTokens: ResolverTypeWrapper<IAuthTokens>;
|
|
4445
4374
|
AuthUser: ResolverTypeWrapper<IAuthUser>;
|
|
4446
|
-
|
|
4375
|
+
AuthUserInput: IAuthUserInput;
|
|
4447
4376
|
BaseServiceCommands: IBaseServiceCommands;
|
|
4448
4377
|
CardImage: ResolverTypeWrapper<ICardImage>;
|
|
4449
4378
|
Channel: ResolverTypeWrapper<IChannel>;
|
|
@@ -4463,12 +4392,13 @@ export type IResolversTypes = {
|
|
|
4463
4392
|
ConfigCollectionName: IConfigCollectionName;
|
|
4464
4393
|
ConfigFragmentName: IConfigFragmentName;
|
|
4465
4394
|
Configuration: IResolversTypes['DefaultConfiguration'] | IResolversTypes['MachineConfiguration'] | IResolversTypes['UserConfiguration'] | IResolversTypes['OrganizationConfiguration'] | IResolversTypes['OrganizationResourceConfiguration'];
|
|
4395
|
+
ConfigurationContributionNames: IConfigurationContributionNames;
|
|
4466
4396
|
ConfigurationData: ResolverTypeWrapper<IConfigurationData>;
|
|
4467
4397
|
ConfigurationExtensionInfo: ResolverTypeWrapper<IConfigurationExtensionInfo>;
|
|
4468
4398
|
ConfigurationInput: IConfigurationInput;
|
|
4469
4399
|
ConfigurationModel: ResolverTypeWrapper<IConfigurationModel>;
|
|
4470
4400
|
ConfigurationOverrides: ResolverTypeWrapper<IConfigurationOverrides>;
|
|
4471
|
-
|
|
4401
|
+
ConfigurationOverridesInput: IConfigurationOverridesInput;
|
|
4472
4402
|
ConfigurationPolicy: IResolversTypes['DefaultPolicy'] | IResolversTypes['OrganizationPolicy'] | IResolversTypes['ResourcePolicy'] | IResolversTypes['ApplicationPolicy'];
|
|
4473
4403
|
ConfigurationScope: IConfigurationScope;
|
|
4474
4404
|
ConfigurationTarget: IConfigurationTarget;
|
|
@@ -4490,6 +4420,7 @@ export type IResolversTypes = {
|
|
|
4490
4420
|
DefaultRole: ResolverTypeWrapper<IDefaultRole>;
|
|
4491
4421
|
DefaultSettings: ResolverTypeWrapper<IDefaultSettings>;
|
|
4492
4422
|
DeviceInfoInput: IDeviceInfoInput;
|
|
4423
|
+
DeviceInfoPlatform: IDeviceInfoPlatform;
|
|
4493
4424
|
DeviceToken: ResolverTypeWrapper<IDeviceToken>;
|
|
4494
4425
|
DeviceTokens: ResolverTypeWrapper<IDeviceTokens>;
|
|
4495
4426
|
EditPresentationTypes: IEditPresentationTypes;
|
|
@@ -4533,12 +4464,6 @@ export type IResolversTypes = {
|
|
|
4533
4464
|
IUser: IResolversTypes['AuthUser'] | IResolversTypes['MessengerUser'];
|
|
4534
4465
|
IUserMetadata: IResolversTypes['UserMetadata'];
|
|
4535
4466
|
ImageDimensionsConfigInput: IImageDimensionsConfigInput;
|
|
4536
|
-
IntegraitonConfigurationId: ResolverTypeWrapper<IIntegraitonConfigurationId>;
|
|
4537
|
-
IntegrationConfiguration: ResolverTypeWrapper<IIntegrationConfiguration>;
|
|
4538
|
-
IntegrationConfigurationCreateOrUpdateInput: IIntegrationConfigurationCreateOrUpdateInput;
|
|
4539
|
-
IntegrationConfigurationFilterInput: IIntegrationConfigurationFilterInput;
|
|
4540
|
-
IntegrationConfigurationInput: IIntegrationConfigurationInput;
|
|
4541
|
-
IntegrationConfigurationsOutput: ResolverTypeWrapper<IIntegrationConfigurationsOutput>;
|
|
4542
4467
|
InviteMember: ResolverTypeWrapper<IInviteMember>;
|
|
4543
4468
|
InviteStatus: IInviteStatus;
|
|
4544
4469
|
JSON: ResolverTypeWrapper<Scalars['JSON']>;
|
|
@@ -4571,20 +4496,21 @@ export type IResolversTypes = {
|
|
|
4571
4496
|
OrgType: IOrgType;
|
|
4572
4497
|
OrgUser: ResolverTypeWrapper<IOrgUser>;
|
|
4573
4498
|
OrgUserAccunt: ResolverTypeWrapper<IOrgUserAccunt>;
|
|
4499
|
+
OrgUserInput: IOrgUserInput;
|
|
4574
4500
|
OrgUserRole: IOrgUserRole;
|
|
4575
|
-
OrgUser_Input: IOrgUser_Input;
|
|
4576
4501
|
OrgainizationInvitationRole: IOrgainizationInvitationRole;
|
|
4577
4502
|
Organization: ResolverTypeWrapper<IOrganization>;
|
|
4578
|
-
|
|
4503
|
+
OrganizationConfigValueInput: IOrganizationConfigValueInput;
|
|
4579
4504
|
OrganizationConfiguration: ResolverTypeWrapper<IOrganizationConfiguration>;
|
|
4580
4505
|
OrganizationContextPubSubEvents: IOrganizationContextPubSubEvents;
|
|
4581
4506
|
OrganizationCreateRequest: IOrganizationCreateRequest;
|
|
4582
4507
|
OrganizationData: ResolverTypeWrapper<Omit<IOrganizationData, 'resources'> & { resources: Array<Maybe<IResolversTypes['ResourceData']>> }>;
|
|
4583
4508
|
OrganizationIdentifier: ResolverTypeWrapper<IOrganizationIdentifier>;
|
|
4509
|
+
OrganizationInput: IOrganizationInput;
|
|
4584
4510
|
OrganizationInvitation: ResolverTypeWrapper<IOrganizationInvitation>;
|
|
4585
4511
|
OrganizationInvitationDecode: ResolverTypeWrapper<IOrganizationInvitationDecode>;
|
|
4512
|
+
OrganizationInvitationInput: IOrganizationInvitationInput;
|
|
4586
4513
|
OrganizationInvitationRequest: IOrganizationInvitationRequest;
|
|
4587
|
-
OrganizationInvitation_Input: IOrganizationInvitation_Input;
|
|
4588
4514
|
OrganizationMember: ResolverTypeWrapper<IOrganizationMember>;
|
|
4589
4515
|
OrganizationNotificationValues: IOrganizationNotificationValues;
|
|
4590
4516
|
OrganizationPolicy: ResolverTypeWrapper<IOrganizationPolicy>;
|
|
@@ -4595,7 +4521,6 @@ export type IResolversTypes = {
|
|
|
4595
4521
|
OrganizationRole: ResolverTypeWrapper<IOrganizationRole>;
|
|
4596
4522
|
OrganizationSettings: ResolverTypeWrapper<IOrganizationSettings>;
|
|
4597
4523
|
OrganizationUpdateRequest: IOrganizationUpdateRequest;
|
|
4598
|
-
Organization_Input: IOrganization_Input;
|
|
4599
4524
|
Overrides: ResolverTypeWrapper<IOverrides>;
|
|
4600
4525
|
PermissionAction: IPermissionAction;
|
|
4601
4526
|
PermissionResource: IPermissionResource;
|
|
@@ -4636,7 +4561,7 @@ export type IResolversTypes = {
|
|
|
4636
4561
|
Reaction: ResolverTypeWrapper<IReaction>;
|
|
4637
4562
|
ReactionInput: IReactionInput;
|
|
4638
4563
|
ResourceAccessRole: ResolverTypeWrapper<Omit<IResourceAccessRole, 'accessRoles'> & { accessRoles?: Maybe<Array<Maybe<IResolversTypes['AccessRole']>>> }>;
|
|
4639
|
-
|
|
4564
|
+
ResourceCreationDataInput: IResourceCreationDataInput;
|
|
4640
4565
|
ResourceData: IResolversTypes['OrganizationResourceData'] | IResolversTypes['ExternalResourceData'];
|
|
4641
4566
|
ResourcePolicy: ResolverTypeWrapper<IResourcePolicy>;
|
|
4642
4567
|
ResourceRole: ResolverTypeWrapper<IResourceRole>;
|
|
@@ -4659,7 +4584,7 @@ export type IResolversTypes = {
|
|
|
4659
4584
|
TeamCreateRequest: ITeamCreateRequest;
|
|
4660
4585
|
TeamCreationRequest: ITeamCreationRequest;
|
|
4661
4586
|
TeamMember: ResolverTypeWrapper<ITeamMember>;
|
|
4662
|
-
|
|
4587
|
+
TeamMemberInput: ITeamMemberInput;
|
|
4663
4588
|
TeamRemoveRequest: ITeamRemoveRequest;
|
|
4664
4589
|
TeamType: ITeamType;
|
|
4665
4590
|
TeamUpdateRequest: ITeamUpdateRequest;
|
|
@@ -4675,11 +4600,11 @@ export type IResolversTypes = {
|
|
|
4675
4600
|
UserAccountCreateRequest: IUserAccountCreateRequest;
|
|
4676
4601
|
UserAccountCreatedDetailedEvent: ResolverTypeWrapper<IUserAccountCreatedDetailedEvent>;
|
|
4677
4602
|
UserAccountCreatedEvent: ResolverTypeWrapper<IUserAccountCreatedEvent>;
|
|
4603
|
+
UserAccountInput: IUserAccountInput;
|
|
4678
4604
|
UserAccountRemoveRequest: IUserAccountRemoveRequest;
|
|
4679
4605
|
UserAccountRemovedEvent: ResolverTypeWrapper<IUserAccountRemovedEvent>;
|
|
4680
4606
|
UserAccountUpdateRequest: IUserAccountUpdateRequest;
|
|
4681
4607
|
UserAccountWhere: IUserAccountWhere;
|
|
4682
|
-
UserAccount_Input: IUserAccount_Input;
|
|
4683
4608
|
UserAccounts: ResolverTypeWrapper<IUserAccounts>;
|
|
4684
4609
|
UserAuth0Info: ResolverTypeWrapper<IUserAuth0Info>;
|
|
4685
4610
|
UserAuth0Integrations: ResolverTypeWrapper<IUserAuth0Integrations>;
|
|
@@ -4691,7 +4616,7 @@ export type IResolversTypes = {
|
|
|
4691
4616
|
UserMetadata: ResolverTypeWrapper<IUserMetadata>;
|
|
4692
4617
|
UserOrderBy: IUserOrderBy;
|
|
4693
4618
|
UserOrg: ResolverTypeWrapper<IUserOrg>;
|
|
4694
|
-
|
|
4619
|
+
UserOrgInput: IUserOrgInput;
|
|
4695
4620
|
UserPasswordResetInput: IUserPasswordResetInput;
|
|
4696
4621
|
UserPreviousValues: ResolverTypeWrapper<IUserPreviousValues>;
|
|
4697
4622
|
UserProfile: ResolverTypeWrapper<IUserProfile>;
|
|
@@ -4713,7 +4638,7 @@ export type IResolversParentTypes = {
|
|
|
4713
4638
|
AccountAddressInput: IAccountAddressInput;
|
|
4714
4639
|
ID: Scalars['ID'];
|
|
4715
4640
|
AccountTeam: IAccountTeam;
|
|
4716
|
-
|
|
4641
|
+
AccountTeamInput: IAccountTeamInput;
|
|
4717
4642
|
AdminIdeSettings: IAdminIdeSettings;
|
|
4718
4643
|
Int: Scalars['Int'];
|
|
4719
4644
|
AnyObject: Scalars['AnyObject'];
|
|
@@ -4725,7 +4650,7 @@ export type IResolversParentTypes = {
|
|
|
4725
4650
|
Auth0IdentityProfileData: IAuth0IdentityProfileData;
|
|
4726
4651
|
AuthTokens: IAuthTokens;
|
|
4727
4652
|
AuthUser: IAuthUser;
|
|
4728
|
-
|
|
4653
|
+
AuthUserInput: IAuthUserInput;
|
|
4729
4654
|
CardImage: ICardImage;
|
|
4730
4655
|
Channel: IChannel;
|
|
4731
4656
|
ChannelFilterInput: IChannelFilterInput;
|
|
@@ -4742,7 +4667,7 @@ export type IResolversParentTypes = {
|
|
|
4742
4667
|
ConfigurationInput: IConfigurationInput;
|
|
4743
4668
|
ConfigurationModel: IConfigurationModel;
|
|
4744
4669
|
ConfigurationOverrides: IConfigurationOverrides;
|
|
4745
|
-
|
|
4670
|
+
ConfigurationOverridesInput: IConfigurationOverridesInput;
|
|
4746
4671
|
ConfigurationPolicy: IResolversParentTypes['DefaultPolicy'] | IResolversParentTypes['OrganizationPolicy'] | IResolversParentTypes['ResourcePolicy'] | IResolversParentTypes['ApplicationPolicy'];
|
|
4747
4672
|
ConfigurationUpdateEvent: IConfigurationUpdateEvent;
|
|
4748
4673
|
Contact: IContact;
|
|
@@ -4798,12 +4723,6 @@ export type IResolversParentTypes = {
|
|
|
4798
4723
|
IUser: IResolversParentTypes['AuthUser'] | IResolversParentTypes['MessengerUser'];
|
|
4799
4724
|
IUserMetadata: IResolversParentTypes['UserMetadata'];
|
|
4800
4725
|
ImageDimensionsConfigInput: IImageDimensionsConfigInput;
|
|
4801
|
-
IntegraitonConfigurationId: IIntegraitonConfigurationId;
|
|
4802
|
-
IntegrationConfiguration: IIntegrationConfiguration;
|
|
4803
|
-
IntegrationConfigurationCreateOrUpdateInput: IIntegrationConfigurationCreateOrUpdateInput;
|
|
4804
|
-
IntegrationConfigurationFilterInput: IIntegrationConfigurationFilterInput;
|
|
4805
|
-
IntegrationConfigurationInput: IIntegrationConfigurationInput;
|
|
4806
|
-
IntegrationConfigurationsOutput: IIntegrationConfigurationsOutput;
|
|
4807
4726
|
InviteMember: IInviteMember;
|
|
4808
4727
|
JSON: Scalars['JSON'];
|
|
4809
4728
|
JSONObject: Scalars['JSONObject'];
|
|
@@ -4829,17 +4748,18 @@ export type IResolversParentTypes = {
|
|
|
4829
4748
|
OrgType: IOrgType;
|
|
4830
4749
|
OrgUser: IOrgUser;
|
|
4831
4750
|
OrgUserAccunt: IOrgUserAccunt;
|
|
4832
|
-
|
|
4751
|
+
OrgUserInput: IOrgUserInput;
|
|
4833
4752
|
Organization: IOrganization;
|
|
4834
|
-
|
|
4753
|
+
OrganizationConfigValueInput: IOrganizationConfigValueInput;
|
|
4835
4754
|
OrganizationConfiguration: IOrganizationConfiguration;
|
|
4836
4755
|
OrganizationCreateRequest: IOrganizationCreateRequest;
|
|
4837
4756
|
OrganizationData: Omit<IOrganizationData, 'resources'> & { resources: Array<Maybe<IResolversParentTypes['ResourceData']>> };
|
|
4838
4757
|
OrganizationIdentifier: IOrganizationIdentifier;
|
|
4758
|
+
OrganizationInput: IOrganizationInput;
|
|
4839
4759
|
OrganizationInvitation: IOrganizationInvitation;
|
|
4840
4760
|
OrganizationInvitationDecode: IOrganizationInvitationDecode;
|
|
4761
|
+
OrganizationInvitationInput: IOrganizationInvitationInput;
|
|
4841
4762
|
OrganizationInvitationRequest: IOrganizationInvitationRequest;
|
|
4842
|
-
OrganizationInvitation_Input: IOrganizationInvitation_Input;
|
|
4843
4763
|
OrganizationMember: IOrganizationMember;
|
|
4844
4764
|
OrganizationNotificationValues: IOrganizationNotificationValues;
|
|
4845
4765
|
OrganizationPolicy: IOrganizationPolicy;
|
|
@@ -4850,7 +4770,6 @@ export type IResolversParentTypes = {
|
|
|
4850
4770
|
OrganizationRole: IOrganizationRole;
|
|
4851
4771
|
OrganizationSettings: IOrganizationSettings;
|
|
4852
4772
|
OrganizationUpdateRequest: IOrganizationUpdateRequest;
|
|
4853
|
-
Organization_Input: IOrganization_Input;
|
|
4854
4773
|
Overrides: IOverrides;
|
|
4855
4774
|
PermissionSubject: IPermissionSubject;
|
|
4856
4775
|
PhoneNumber: IPhoneNumber;
|
|
@@ -4884,7 +4803,7 @@ export type IResolversParentTypes = {
|
|
|
4884
4803
|
Reaction: IReaction;
|
|
4885
4804
|
ReactionInput: IReactionInput;
|
|
4886
4805
|
ResourceAccessRole: Omit<IResourceAccessRole, 'accessRoles'> & { accessRoles?: Maybe<Array<Maybe<IResolversParentTypes['AccessRole']>>> };
|
|
4887
|
-
|
|
4806
|
+
ResourceCreationDataInput: IResourceCreationDataInput;
|
|
4888
4807
|
ResourceData: IResolversParentTypes['OrganizationResourceData'] | IResolversParentTypes['ExternalResourceData'];
|
|
4889
4808
|
ResourcePolicy: IResourcePolicy;
|
|
4890
4809
|
ResourceRole: IResourceRole;
|
|
@@ -4902,7 +4821,7 @@ export type IResolversParentTypes = {
|
|
|
4902
4821
|
TeamCreateRequest: ITeamCreateRequest;
|
|
4903
4822
|
TeamCreationRequest: ITeamCreationRequest;
|
|
4904
4823
|
TeamMember: ITeamMember;
|
|
4905
|
-
|
|
4824
|
+
TeamMemberInput: ITeamMemberInput;
|
|
4906
4825
|
TeamRemoveRequest: ITeamRemoveRequest;
|
|
4907
4826
|
TeamType: ITeamType;
|
|
4908
4827
|
TeamUpdateRequest: ITeamUpdateRequest;
|
|
@@ -4917,11 +4836,11 @@ export type IResolversParentTypes = {
|
|
|
4917
4836
|
UserAccountCreateRequest: IUserAccountCreateRequest;
|
|
4918
4837
|
UserAccountCreatedDetailedEvent: IUserAccountCreatedDetailedEvent;
|
|
4919
4838
|
UserAccountCreatedEvent: IUserAccountCreatedEvent;
|
|
4839
|
+
UserAccountInput: IUserAccountInput;
|
|
4920
4840
|
UserAccountRemoveRequest: IUserAccountRemoveRequest;
|
|
4921
4841
|
UserAccountRemovedEvent: IUserAccountRemovedEvent;
|
|
4922
4842
|
UserAccountUpdateRequest: IUserAccountUpdateRequest;
|
|
4923
4843
|
UserAccountWhere: IUserAccountWhere;
|
|
4924
|
-
UserAccount_Input: IUserAccount_Input;
|
|
4925
4844
|
UserAccounts: IUserAccounts;
|
|
4926
4845
|
UserAuth0Info: IUserAuth0Info;
|
|
4927
4846
|
UserAuth0Integrations: IUserAuth0Integrations;
|
|
@@ -4932,7 +4851,7 @@ export type IResolversParentTypes = {
|
|
|
4932
4851
|
UserDevice: IUserDevice;
|
|
4933
4852
|
UserMetadata: IUserMetadata;
|
|
4934
4853
|
UserOrg: IUserOrg;
|
|
4935
|
-
|
|
4854
|
+
UserOrgInput: IUserOrgInput;
|
|
4936
4855
|
UserPasswordResetInput: IUserPasswordResetInput;
|
|
4937
4856
|
UserPreviousValues: IUserPreviousValues;
|
|
4938
4857
|
UserProfile: IUserProfile;
|
|
@@ -5566,28 +5485,6 @@ export type IIUserMetadataResolvers<ContextType = any, ParentType extends IResol
|
|
|
5566
5485
|
zip_code?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
5567
5486
|
};
|
|
5568
5487
|
|
|
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
5488
|
export type IInviteMemberResolvers<ContextType = any, ParentType extends IResolversParentTypes['InviteMember'] = IResolversParentTypes['InviteMember']> = {
|
|
5592
5489
|
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
5593
5490
|
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
@@ -5611,8 +5508,8 @@ export type ILanguageResolvers<ContextType = any, ParentType extends IResolversP
|
|
|
5611
5508
|
code?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
5612
5509
|
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
5613
5510
|
nativeName?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
5614
|
-
createdAt?: Resolver<IResolversTypes['
|
|
5615
|
-
updatedAt?: Resolver<Maybe<IResolversTypes['
|
|
5511
|
+
createdAt?: Resolver<IResolversTypes['DateTime'], ParentType, ContextType>;
|
|
5512
|
+
updatedAt?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
|
|
5616
5513
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
5617
5514
|
};
|
|
5618
5515
|
|
|
@@ -5693,17 +5590,14 @@ export type IMutationResolvers<ContextType = any, ParentType extends IResolversP
|
|
|
5693
5590
|
createContact?: Resolver<IResolversTypes['Contact'], ParentType, ContextType, RequireFields<IMutationCreateContactArgs, 'contact'>>;
|
|
5694
5591
|
createDirectChannel?: Resolver<Maybe<IResolversTypes['Channel']>, ParentType, ContextType, RequireFields<IMutationCreateDirectChannelArgs, 'receiver' | 'displayName'>>;
|
|
5695
5592
|
createFileUploadLinks?: Resolver<Array<IResolversTypes['String']>, ParentType, ContextType, RequireFields<IMutationCreateFileUploadLinksArgs, 'filenames'>>;
|
|
5696
|
-
createIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['IntegraitonConfigurationId']>, ParentType, ContextType, RequireFields<IMutationCreateIntegrationConfigurationArgs, never>>;
|
|
5697
5593
|
createLanguage?: Resolver<IResolversTypes['Language'], ParentType, ContextType, RequireFields<IMutationCreateLanguageArgs, 'country'>>;
|
|
5698
5594
|
createMessageFileUploadLink?: Resolver<IResolversTypes['String'], ParentType, ContextType, RequireFields<IMutationCreateMessageFileUploadLinkArgs, 'postId' | 'filename'>>;
|
|
5699
5595
|
createMessageFilesUploadLink?: Resolver<Array<IResolversTypes['String']>, ParentType, ContextType, RequireFields<IMutationCreateMessageFilesUploadLinkArgs, 'postId' | 'filenames'>>;
|
|
5700
|
-
createOrUpdateIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['IntegraitonConfigurationId']>, ParentType, ContextType, RequireFields<IMutationCreateOrUpdateIntegrationConfigurationArgs, never>>;
|
|
5701
5596
|
createOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IMutationCreateOrganizationArgs, 'organization'>>;
|
|
5702
5597
|
createTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IMutationCreateTeamArgs, 'request'>>;
|
|
5703
5598
|
declineOrganizationInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationDeclineOrganizationInvitationArgs, 'id'>>;
|
|
5704
5599
|
deleteChannel?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationDeleteChannelArgs, 'id'>>;
|
|
5705
5600
|
deleteContact?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationDeleteContactArgs, 'id'>>;
|
|
5706
|
-
deleteIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationDeleteIntegrationConfigurationArgs, 'id'>>;
|
|
5707
5601
|
deleteLanguage?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationDeleteLanguageArgs, 'id'>>;
|
|
5708
5602
|
deleteMessage?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationDeleteMessageArgs, 'messageId'>>;
|
|
5709
5603
|
deleteMessageFile?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationDeleteMessageFileArgs, 'url'>>;
|
|
@@ -5794,6 +5688,7 @@ export type IOrgMemberResolvers<ContextType = any, ParentType extends IResolvers
|
|
|
5794
5688
|
_id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
5795
5689
|
userId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
5796
5690
|
role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
|
|
5691
|
+
isSelf?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
5797
5692
|
inactive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
5798
5693
|
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
5799
5694
|
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
@@ -6187,8 +6082,8 @@ export type IProfileResolvers<ContextType = any, ParentType extends IResolversPa
|
|
|
6187
6082
|
location?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
6188
6083
|
work?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
6189
6084
|
languages?: Resolver<Maybe<Array<IResolversTypes['Language']>>, ParentType, ContextType>;
|
|
6190
|
-
createdAt?: Resolver<IResolversTypes['
|
|
6191
|
-
updatedAt?: Resolver<IResolversTypes['
|
|
6085
|
+
createdAt?: Resolver<IResolversTypes['DateTime'], ParentType, ContextType>;
|
|
6086
|
+
updatedAt?: Resolver<IResolversTypes['DateTime'], ParentType, ContextType>;
|
|
6192
6087
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
6193
6088
|
};
|
|
6194
6089
|
|
|
@@ -6217,13 +6112,11 @@ export type IQueryResolvers<ContextType = any, ParentType extends IResolversPare
|
|
|
6217
6112
|
fetchUserAuthorizedDevices?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserDevice']>>>, ParentType, ContextType, RequireFields<IQueryFetchUserAuthorizedDevicesArgs, 'auth0UserId'>>;
|
|
6218
6113
|
fileInfo?: Resolver<IResolversTypes['FileInfo'], ParentType, ContextType, RequireFields<IQueryFileInfoArgs, 'id'>>;
|
|
6219
6114
|
filesInfo?: Resolver<IResolversTypes['FilesInfo'], ParentType, ContextType, RequireFields<IQueryFilesInfoArgs, never>>;
|
|
6220
|
-
filterIntegrationConfiguration?: Resolver<Maybe<Array<Maybe<IResolversTypes['IntegrationConfiguration']>>>, ParentType, ContextType, RequireFields<IQueryFilterIntegrationConfigurationArgs, never>>;
|
|
6221
6115
|
getAccounts?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserAccount']>>>, ParentType, ContextType, RequireFields<IQueryGetAccountsArgs, never>>;
|
|
6222
6116
|
getAllCountries?: Resolver<Maybe<Array<Maybe<IResolversTypes['Country']>>>, ParentType, ContextType, RequireFields<IQueryGetAllCountriesArgs, never>>;
|
|
6223
6117
|
getAllDeviceToken?: Resolver<Maybe<IResolversTypes['DeviceTokens']>, ParentType, ContextType>;
|
|
6224
6118
|
getAllDeviceTokenById?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserAccount']>>>, ParentType, ContextType, RequireFields<IQueryGetAllDeviceTokenByIdArgs, 'id'>>;
|
|
6225
6119
|
getAllGovernmentId?: Resolver<Maybe<IResolversTypes['UserAccounts']>, ParentType, ContextType>;
|
|
6226
|
-
getAllIntegrationConfigurations?: Resolver<Maybe<IResolversTypes['IntegrationConfigurationsOutput']>, ParentType, ContextType, RequireFields<IQueryGetAllIntegrationConfigurationsArgs, never>>;
|
|
6227
6120
|
getConfiguration?: Resolver<Maybe<Array<Maybe<IResolversTypes['Configuration']>>>, ParentType, ContextType, RequireFields<IQueryGetConfigurationArgs, never>>;
|
|
6228
6121
|
getConfigurationData?: Resolver<Maybe<IResolversTypes['ConfigurationData']>, ParentType, ContextType>;
|
|
6229
6122
|
getConfigurationPolicies?: Resolver<Maybe<Array<Maybe<IResolversTypes['ConfigurationPolicy']>>>, ParentType, ContextType, RequireFields<IQueryGetConfigurationPoliciesArgs, never>>;
|
|
@@ -6231,7 +6124,6 @@ export type IQueryResolvers<ContextType = any, ParentType extends IResolversPare
|
|
|
6231
6124
|
getDeviceToken?: Resolver<Maybe<IResolversTypes['DeviceToken']>, ParentType, ContextType>;
|
|
6232
6125
|
getEnvironment?: Resolver<Maybe<IResolversTypes['Environment']>, ParentType, ContextType>;
|
|
6233
6126
|
getExtendedUserAccount?: Resolver<IResolversTypes['UserAccount'], ParentType, ContextType, RequireFields<IQueryGetExtendedUserAccountArgs, never>>;
|
|
6234
|
-
getIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['IntegrationConfiguration']>, ParentType, ContextType, RequireFields<IQueryGetIntegrationConfigurationArgs, 'id'>>;
|
|
6235
6127
|
getManageableOrganizations?: Resolver<Maybe<Array<Maybe<IResolversTypes['Organization']>>>, ParentType, ContextType>;
|
|
6236
6128
|
getOrgInvitationMembers?: Resolver<Maybe<IResolversTypes['OrgInvitationMembers']>, ParentType, ContextType, RequireFields<IQueryGetOrgInvitationMembersArgs, never>>;
|
|
6237
6129
|
getOrgTeamInvitations?: Resolver<Maybe<Array<Maybe<IResolversTypes['OrganizationInvitation']>>>, ParentType, ContextType, RequireFields<IQueryGetOrgTeamInvitationsArgs, never>>;
|
|
@@ -6473,7 +6365,7 @@ export type IUserAuth0SessionDeviceInfoResolvers<ContextType = any, ParentType e
|
|
|
6473
6365
|
os?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
6474
6366
|
deviceName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
6475
6367
|
browserName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
6476
|
-
|
|
6368
|
+
platform?: Resolver<IResolversTypes['DeviceInfoPlatform'], ParentType, ContextType>;
|
|
6477
6369
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
6478
6370
|
};
|
|
6479
6371
|
|
|
@@ -6661,9 +6553,6 @@ export type IResolvers<ContextType = any> = {
|
|
|
6661
6553
|
ITerritorialState?: IITerritorialStateResolvers<ContextType>;
|
|
6662
6554
|
IUser?: IIUserResolvers<ContextType>;
|
|
6663
6555
|
IUserMetadata?: IIUserMetadataResolvers<ContextType>;
|
|
6664
|
-
IntegraitonConfigurationId?: IIntegraitonConfigurationIdResolvers<ContextType>;
|
|
6665
|
-
IntegrationConfiguration?: IIntegrationConfigurationResolvers<ContextType>;
|
|
6666
|
-
IntegrationConfigurationsOutput?: IIntegrationConfigurationsOutputResolvers<ContextType>;
|
|
6667
6556
|
InviteMember?: IInviteMemberResolvers<ContextType>;
|
|
6668
6557
|
JSON?: GraphQLScalarType;
|
|
6669
6558
|
JSONObject?: GraphQLScalarType;
|