@messenger-box/core 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.
|
@@ -89,7 +89,7 @@ export declare type IAccountTeam = {
|
|
|
89
89
|
description?: Maybe<Scalars['String']>;
|
|
90
90
|
teamMembers?: Maybe<Array<Maybe<ITeamMember>>>;
|
|
91
91
|
};
|
|
92
|
-
export declare type
|
|
92
|
+
export declare 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 declare 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
|
export declare type IAdminIdeSettings = {
|
|
104
104
|
__typename?: 'AdminIdeSettings';
|
|
@@ -125,7 +125,7 @@ export declare const enum IApplicationRoles {
|
|
|
125
125
|
Admin = "ADMIN",
|
|
126
126
|
/** Project Contributors */
|
|
127
127
|
Contributors = "CONTRIBUTORS",
|
|
128
|
-
/** Guest
|
|
128
|
+
/** Guest */
|
|
129
129
|
Guest = "GUEST",
|
|
130
130
|
Member = "MEMBER",
|
|
131
131
|
/** organization member */
|
|
@@ -190,7 +190,7 @@ export declare type IAuthUser = IIUser & {
|
|
|
190
190
|
picture?: Maybe<Scalars['String']>;
|
|
191
191
|
phoneNo?: Maybe<Scalars['Int']>;
|
|
192
192
|
};
|
|
193
|
-
export declare type
|
|
193
|
+
export declare type IAuthUserInput = {
|
|
194
194
|
auth0UserId?: Maybe<Scalars['String']>;
|
|
195
195
|
username?: Maybe<Scalars['String']>;
|
|
196
196
|
email?: Maybe<Scalars['String']>;
|
|
@@ -363,7 +363,9 @@ export declare const enum IConfigCollectionName {
|
|
|
363
363
|
Workspaces = "workspaces",
|
|
364
364
|
Teams = "teams",
|
|
365
365
|
Projects = "projects",
|
|
366
|
-
Clients = "clients"
|
|
366
|
+
Clients = "clients",
|
|
367
|
+
Tasks = "tasks",
|
|
368
|
+
Tags = "tags"
|
|
367
369
|
}
|
|
368
370
|
export declare const enum IConfigFragmentName {
|
|
369
371
|
Resources = "resources",
|
|
@@ -380,6 +382,11 @@ export declare const enum IConfigFragmentName {
|
|
|
380
382
|
BillingPlanPolicies = "billingPlanPolicies"
|
|
381
383
|
}
|
|
382
384
|
export declare type IConfiguration = IDefaultConfiguration | IMachineConfiguration | IUserConfiguration | IOrganizationConfiguration | IOrganizationResourceConfiguration;
|
|
385
|
+
export declare const enum IConfigurationContributionNames {
|
|
386
|
+
DefaultPermissions = "defaultPermissions",
|
|
387
|
+
DefaultSettings = "defaultSettings",
|
|
388
|
+
DefaultPolicies = "defaultPolicies"
|
|
389
|
+
}
|
|
383
390
|
export declare type IConfigurationData = {
|
|
384
391
|
__typename?: 'ConfigurationData';
|
|
385
392
|
defaults?: Maybe<IIConfigurationModel>;
|
|
@@ -414,7 +421,7 @@ export declare type IConfigurationOverrides = {
|
|
|
414
421
|
overrideIdentifier?: Maybe<Scalars['String']>;
|
|
415
422
|
externalResource?: Maybe<Scalars['URI']>;
|
|
416
423
|
};
|
|
417
|
-
export declare type
|
|
424
|
+
export declare type IConfigurationOverridesInput = {
|
|
418
425
|
resource?: Maybe<Scalars['URI']>;
|
|
419
426
|
overrideIdentifier?: Maybe<Scalars['String']>;
|
|
420
427
|
externalResource?: Maybe<Scalars['URI']>;
|
|
@@ -576,7 +583,7 @@ export declare type ICountryInput = {
|
|
|
576
583
|
};
|
|
577
584
|
export declare type IDefaultConfiguration = IIConfigurationModel & {
|
|
578
585
|
__typename?: 'DefaultConfiguration';
|
|
579
|
-
/**
|
|
586
|
+
/** The ID. */
|
|
580
587
|
id?: Maybe<Scalars['ID']>;
|
|
581
588
|
/** The URL to the user's settings. */
|
|
582
589
|
resource: Scalars['URI'];
|
|
@@ -829,7 +836,7 @@ export declare type IIConfigurationService = {
|
|
|
829
836
|
export declare type IIConfigurationServiceUpdateValueArgs = {
|
|
830
837
|
key: Scalars['String'];
|
|
831
838
|
value: Scalars['AnyObject'];
|
|
832
|
-
overrides:
|
|
839
|
+
overrides: IConfigurationOverridesInput;
|
|
833
840
|
target?: Maybe<IConfigurationTarget>;
|
|
834
841
|
donotNotifyError?: Maybe<Scalars['Boolean']>;
|
|
835
842
|
};
|
|
@@ -933,47 +940,6 @@ export declare type IImageDimensionsConfigInput = {
|
|
|
933
940
|
thumbnailImageWidth?: Maybe<Scalars['Int']>;
|
|
934
941
|
thumbnailImageHeight?: Maybe<Scalars['Int']>;
|
|
935
942
|
};
|
|
936
|
-
export declare type IIntegraitonConfigurationId = {
|
|
937
|
-
__typename?: 'IntegraitonConfigurationId';
|
|
938
|
-
id?: Maybe<Scalars['String']>;
|
|
939
|
-
};
|
|
940
|
-
export declare type IIntegrationConfiguration = {
|
|
941
|
-
__typename?: 'IntegrationConfiguration';
|
|
942
|
-
id?: Maybe<Scalars['ID']>;
|
|
943
|
-
name?: Maybe<Scalars['String']>;
|
|
944
|
-
userId?: Maybe<Scalars['ID']>;
|
|
945
|
-
integrationName?: Maybe<Scalars['String']>;
|
|
946
|
-
status?: Maybe<Scalars['String']>;
|
|
947
|
-
updatedAt?: Maybe<Scalars['DateTime']>;
|
|
948
|
-
integrationInfo?: Maybe<Scalars['JSON']>;
|
|
949
|
-
};
|
|
950
|
-
export declare type IIntegrationConfigurationCreateOrUpdateInput = {
|
|
951
|
-
id?: Maybe<Scalars['ID']>;
|
|
952
|
-
name?: Maybe<Scalars['String']>;
|
|
953
|
-
integrationName?: Maybe<Scalars['String']>;
|
|
954
|
-
status?: Maybe<Scalars['String']>;
|
|
955
|
-
integrationInfo?: Maybe<Scalars['JSON']>;
|
|
956
|
-
userId?: Maybe<Scalars['ID']>;
|
|
957
|
-
};
|
|
958
|
-
export declare type IIntegrationConfigurationFilterInput = {
|
|
959
|
-
id?: Maybe<Scalars['ID']>;
|
|
960
|
-
name?: Maybe<Scalars['String']>;
|
|
961
|
-
integrationName?: Maybe<Scalars['String']>;
|
|
962
|
-
status?: Maybe<Scalars['String']>;
|
|
963
|
-
userId?: Maybe<Scalars['ID']>;
|
|
964
|
-
};
|
|
965
|
-
export declare type IIntegrationConfigurationInput = {
|
|
966
|
-
name?: Maybe<Scalars['String']>;
|
|
967
|
-
integrationName?: Maybe<Scalars['String']>;
|
|
968
|
-
status?: Maybe<Scalars['String']>;
|
|
969
|
-
integrationInfo?: Maybe<Scalars['JSON']>;
|
|
970
|
-
userId?: Maybe<Scalars['ID']>;
|
|
971
|
-
};
|
|
972
|
-
export declare type IIntegrationConfigurationsOutput = {
|
|
973
|
-
__typename?: 'IntegrationConfigurationsOutput';
|
|
974
|
-
totalCount?: Maybe<Scalars['Int']>;
|
|
975
|
-
data?: Maybe<Array<Maybe<IIntegrationConfiguration>>>;
|
|
976
|
-
};
|
|
977
943
|
export declare type IInviteMember = {
|
|
978
944
|
__typename?: 'InviteMember';
|
|
979
945
|
id?: Maybe<Scalars['String']>;
|
|
@@ -1026,7 +992,7 @@ export declare type ILoginError = {
|
|
|
1026
992
|
};
|
|
1027
993
|
export declare type IMachineConfiguration = IIConfigurationModel & {
|
|
1028
994
|
__typename?: 'MachineConfiguration';
|
|
1029
|
-
/**
|
|
995
|
+
/** The ID. */
|
|
1030
996
|
id?: Maybe<Scalars['ID']>;
|
|
1031
997
|
/** The URL to the machine's settings. */
|
|
1032
998
|
resource: Scalars['URI'];
|
|
@@ -1149,18 +1115,15 @@ export declare type IMutation = {
|
|
|
1149
1115
|
createContact: IContact;
|
|
1150
1116
|
createDirectChannel?: Maybe<IChannel>;
|
|
1151
1117
|
createFileUploadLinks: Array<Scalars['String']>;
|
|
1152
|
-
createIntegrationConfiguration?: Maybe<IIntegraitonConfigurationId>;
|
|
1153
1118
|
createLanguage: ILanguage;
|
|
1154
1119
|
/** Attach Post File */
|
|
1155
1120
|
createMessageFileUploadLink: Scalars['String'];
|
|
1156
1121
|
createMessageFilesUploadLink: Array<Scalars['String']>;
|
|
1157
|
-
createOrUpdateIntegrationConfiguration?: Maybe<IIntegraitonConfigurationId>;
|
|
1158
1122
|
createOrganization?: Maybe<IOrganization>;
|
|
1159
1123
|
createTeam?: Maybe<IAccountTeam>;
|
|
1160
1124
|
declineOrganizationInvitation?: Maybe<Scalars['Boolean']>;
|
|
1161
1125
|
deleteChannel?: Maybe<Scalars['Boolean']>;
|
|
1162
1126
|
deleteContact: Scalars['Boolean'];
|
|
1163
|
-
deleteIntegrationConfiguration?: Maybe<Scalars['Boolean']>;
|
|
1164
1127
|
deleteLanguage: Scalars['Boolean'];
|
|
1165
1128
|
deleteMessage?: Maybe<Scalars['Boolean']>;
|
|
1166
1129
|
/** Detach Post File */
|
|
@@ -1210,7 +1173,7 @@ export declare type IMutation = {
|
|
|
1210
1173
|
setGender: IUserAccount;
|
|
1211
1174
|
setName: IUserAccount;
|
|
1212
1175
|
setSettingsValueByResource?: Maybe<Scalars['Boolean']>;
|
|
1213
|
-
/**
|
|
1176
|
+
/** Triggers onUserLoggedIn events */
|
|
1214
1177
|
updateAuth0UserPassword?: Maybe<Scalars['Boolean']>;
|
|
1215
1178
|
updateConfigurationPolicyValue?: Maybe<Scalars['Boolean']>;
|
|
1216
1179
|
updateConfigurationPolicyValueByUri?: Maybe<Scalars['Boolean']>;
|
|
@@ -1299,9 +1262,6 @@ export declare type IMutationCreateDirectChannelArgs = {
|
|
|
1299
1262
|
export declare type IMutationCreateFileUploadLinksArgs = {
|
|
1300
1263
|
filenames: Array<Scalars['String']>;
|
|
1301
1264
|
};
|
|
1302
|
-
export declare type IMutationCreateIntegrationConfigurationArgs = {
|
|
1303
|
-
data?: Maybe<IIntegrationConfigurationInput>;
|
|
1304
|
-
};
|
|
1305
1265
|
export declare type IMutationCreateLanguageArgs = {
|
|
1306
1266
|
country: ILanguageInput;
|
|
1307
1267
|
};
|
|
@@ -1313,9 +1273,6 @@ export declare type IMutationCreateMessageFilesUploadLinkArgs = {
|
|
|
1313
1273
|
postId: Scalars['ID'];
|
|
1314
1274
|
filenames: Array<Scalars['String']>;
|
|
1315
1275
|
};
|
|
1316
|
-
export declare type IMutationCreateOrUpdateIntegrationConfigurationArgs = {
|
|
1317
|
-
data?: Maybe<IIntegrationConfigurationCreateOrUpdateInput>;
|
|
1318
|
-
};
|
|
1319
1276
|
export declare type IMutationCreateOrganizationArgs = {
|
|
1320
1277
|
organization: IOrganizationCreateRequest;
|
|
1321
1278
|
};
|
|
@@ -1331,9 +1288,6 @@ export declare type IMutationDeleteChannelArgs = {
|
|
|
1331
1288
|
export declare type IMutationDeleteContactArgs = {
|
|
1332
1289
|
id: Scalars['ID'];
|
|
1333
1290
|
};
|
|
1334
|
-
export declare type IMutationDeleteIntegrationConfigurationArgs = {
|
|
1335
|
-
id: Scalars['String'];
|
|
1336
|
-
};
|
|
1337
1291
|
export declare type IMutationDeleteLanguageArgs = {
|
|
1338
1292
|
id: Scalars['ID'];
|
|
1339
1293
|
};
|
|
@@ -1493,7 +1447,7 @@ export declare type IMutationUpdateAuth0UserPasswordArgs = {
|
|
|
1493
1447
|
export declare type IMutationUpdateConfigurationPolicyValueArgs = {
|
|
1494
1448
|
key: Scalars['String'];
|
|
1495
1449
|
value: Scalars['AnyObject'];
|
|
1496
|
-
overrides?: Maybe<
|
|
1450
|
+
overrides?: Maybe<IConfigurationOverridesInput>;
|
|
1497
1451
|
target?: Maybe<Scalars['Int']>;
|
|
1498
1452
|
donotNotifyError?: Maybe<Scalars['Boolean']>;
|
|
1499
1453
|
};
|
|
@@ -1501,14 +1455,14 @@ export declare type IMutationUpdateConfigurationPolicyValueByUriArgs = {
|
|
|
1501
1455
|
resource?: Maybe<Scalars['URI']>;
|
|
1502
1456
|
key: Scalars['String'];
|
|
1503
1457
|
value: Scalars['AnyObject'];
|
|
1504
|
-
overrides?: Maybe<
|
|
1458
|
+
overrides?: Maybe<IConfigurationOverridesInput>;
|
|
1505
1459
|
target?: Maybe<Scalars['Int']>;
|
|
1506
1460
|
donotNotifyError?: Maybe<Scalars['Boolean']>;
|
|
1507
1461
|
};
|
|
1508
1462
|
export declare type IMutationUpdateConfigurationValueArgs = {
|
|
1509
1463
|
key: Scalars['String'];
|
|
1510
1464
|
value: Scalars['AnyObject'];
|
|
1511
|
-
overrides?: Maybe<
|
|
1465
|
+
overrides?: Maybe<IConfigurationOverridesInput>;
|
|
1512
1466
|
target?: Maybe<Scalars['Int']>;
|
|
1513
1467
|
donotNotifyError?: Maybe<Scalars['Boolean']>;
|
|
1514
1468
|
};
|
|
@@ -1516,7 +1470,7 @@ export declare type IMutationUpdateConfigurationValueByUriArgs = {
|
|
|
1516
1470
|
resource?: Maybe<Scalars['URI']>;
|
|
1517
1471
|
key: Scalars['String'];
|
|
1518
1472
|
value: Scalars['AnyObject'];
|
|
1519
|
-
overrides?: Maybe<
|
|
1473
|
+
overrides?: Maybe<IConfigurationOverridesInput>;
|
|
1520
1474
|
target?: Maybe<Scalars['Int']>;
|
|
1521
1475
|
donotNotifyError?: Maybe<Scalars['Boolean']>;
|
|
1522
1476
|
};
|
|
@@ -1539,14 +1493,14 @@ export declare type IMutationUpdateOrganizationArgs = {
|
|
|
1539
1493
|
};
|
|
1540
1494
|
export declare type IMutationUpdateOrganizationContextAddResourcesArgs = {
|
|
1541
1495
|
orgId?: Maybe<Scalars['String']>;
|
|
1542
|
-
resourcesToAdd: Array<Maybe<
|
|
1496
|
+
resourcesToAdd: Array<Maybe<IResourceCreationDataInput>>;
|
|
1543
1497
|
index?: Maybe<Scalars['Int']>;
|
|
1544
1498
|
};
|
|
1545
1499
|
export declare type IMutationUpdateOrganizationContextRemoveResourcesArgs = {
|
|
1546
1500
|
resourcesToRemove: Array<Scalars['URI']>;
|
|
1547
1501
|
};
|
|
1548
1502
|
export declare type IMutationUpdateOrganizationContextUpdateResourcesArgs = {
|
|
1549
|
-
resourcesToAdd: Array<Maybe<
|
|
1503
|
+
resourcesToAdd: Array<Maybe<IResourceCreationDataInput>>;
|
|
1550
1504
|
resourcesToRemove: Array<Maybe<Scalars['URI']>>;
|
|
1551
1505
|
index?: Maybe<Scalars['Int']>;
|
|
1552
1506
|
};
|
|
@@ -1561,7 +1515,7 @@ export declare type IMutationUpdateReactionToMessageArgs = {
|
|
|
1561
1515
|
export declare type IMutationUpdateRoleValueArgs = {
|
|
1562
1516
|
key: Scalars['String'];
|
|
1563
1517
|
value: Scalars['AnyObject'];
|
|
1564
|
-
overrides?: Maybe<
|
|
1518
|
+
overrides?: Maybe<IConfigurationOverridesInput>;
|
|
1565
1519
|
target?: Maybe<Scalars['Int']>;
|
|
1566
1520
|
donotNotifyError?: Maybe<Scalars['Boolean']>;
|
|
1567
1521
|
};
|
|
@@ -1602,6 +1556,7 @@ export declare type IOrgMember = {
|
|
|
1602
1556
|
_id?: Maybe<Scalars['String']>;
|
|
1603
1557
|
userId?: Maybe<Scalars['String']>;
|
|
1604
1558
|
role?: Maybe<IApplicationRoles>;
|
|
1559
|
+
isSelf?: Maybe<Scalars['Boolean']>;
|
|
1605
1560
|
inactive?: Maybe<Scalars['Boolean']>;
|
|
1606
1561
|
name?: Maybe<Scalars['String']>;
|
|
1607
1562
|
email?: Maybe<Scalars['String']>;
|
|
@@ -1635,18 +1590,18 @@ export declare type IOrgUserAccunt = INode & {
|
|
|
1635
1590
|
username?: Maybe<Scalars['String']>;
|
|
1636
1591
|
emailVerified?: Maybe<Scalars['Boolean']>;
|
|
1637
1592
|
};
|
|
1593
|
+
export declare type IOrgUserInput = {
|
|
1594
|
+
userId?: Maybe<Scalars['String']>;
|
|
1595
|
+
role?: Maybe<IApplicationRoles>;
|
|
1596
|
+
inactive?: Maybe<Scalars['Boolean']>;
|
|
1597
|
+
crossCheckEmail?: Maybe<Scalars['String']>;
|
|
1598
|
+
};
|
|
1638
1599
|
export declare const enum IOrgUserRole {
|
|
1639
1600
|
BillingLeader = "BILLING_LEADER",
|
|
1640
1601
|
Member = "MEMBER",
|
|
1641
1602
|
Admin = "ADMIN",
|
|
1642
1603
|
Owner = "OWNER"
|
|
1643
1604
|
}
|
|
1644
|
-
export declare type IOrgUser_Input = {
|
|
1645
|
-
userId?: Maybe<Scalars['String']>;
|
|
1646
|
-
role?: Maybe<IApplicationRoles>;
|
|
1647
|
-
inactive?: Maybe<Scalars['Boolean']>;
|
|
1648
|
-
crossCheckEmail?: Maybe<Scalars['String']>;
|
|
1649
|
-
};
|
|
1650
1605
|
/**
|
|
1651
1606
|
* OrganizationInvitationRole: The possible organization invitation roles.
|
|
1652
1607
|
*
|
|
@@ -1710,13 +1665,13 @@ export declare type IOrganization = {
|
|
|
1710
1665
|
stripeSubscriptionId?: Maybe<Scalars['String']>;
|
|
1711
1666
|
invitations?: Maybe<Array<Maybe<IOrganizationInvitation>>>;
|
|
1712
1667
|
};
|
|
1713
|
-
export declare type
|
|
1668
|
+
export declare type IOrganizationConfigValueInput = {
|
|
1714
1669
|
section?: Maybe<Scalars['String']>;
|
|
1715
|
-
overrides?: Maybe<
|
|
1670
|
+
overrides?: Maybe<IConfigurationOverridesInput>;
|
|
1716
1671
|
};
|
|
1717
1672
|
export declare type IOrganizationConfiguration = IIConfigurationModel & {
|
|
1718
1673
|
__typename?: 'OrganizationConfiguration';
|
|
1719
|
-
/**
|
|
1674
|
+
/** The ID. */
|
|
1720
1675
|
id?: Maybe<Scalars['ID']>;
|
|
1721
1676
|
resource: Scalars['URI'];
|
|
1722
1677
|
target?: Maybe<Scalars['Int']>;
|
|
@@ -1737,14 +1692,14 @@ export declare type IOrganizationCreateRequest = {
|
|
|
1737
1692
|
description?: Maybe<Scalars['String']>;
|
|
1738
1693
|
namespace?: Maybe<Scalars['String']>;
|
|
1739
1694
|
picture?: Maybe<Scalars['String']>;
|
|
1740
|
-
orgMembers?: Maybe<Array<Maybe<
|
|
1695
|
+
orgMembers?: Maybe<Array<Maybe<IOrgUserInput>>>;
|
|
1741
1696
|
billingLeaders?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
1742
1697
|
mainBillingLeaderId?: Maybe<Scalars['String']>;
|
|
1743
1698
|
periodStart?: Maybe<Scalars['DateTime']>;
|
|
1744
1699
|
periodStop?: Maybe<Scalars['DateTime']>;
|
|
1745
1700
|
stripeId?: Maybe<Scalars['String']>;
|
|
1746
1701
|
stripeSubscriptionId?: Maybe<Scalars['String']>;
|
|
1747
|
-
invitations?: Maybe<Array<Maybe<
|
|
1702
|
+
invitations?: Maybe<Array<Maybe<IOrganizationInvitationInput>>>;
|
|
1748
1703
|
};
|
|
1749
1704
|
export declare type IOrganizationData = {
|
|
1750
1705
|
__typename?: 'OrganizationData';
|
|
@@ -1762,6 +1717,28 @@ export declare type IOrganizationIdentifier = {
|
|
|
1762
1717
|
id?: Maybe<Scalars['String']>;
|
|
1763
1718
|
configPath?: Maybe<Scalars['URI']>;
|
|
1764
1719
|
};
|
|
1720
|
+
export declare type IOrganizationInput = {
|
|
1721
|
+
id?: Maybe<Scalars['ID']>;
|
|
1722
|
+
name: Scalars['String'];
|
|
1723
|
+
title?: Maybe<Scalars['String']>;
|
|
1724
|
+
description?: Maybe<Scalars['String']>;
|
|
1725
|
+
picture?: Maybe<Scalars['String']>;
|
|
1726
|
+
stripeId?: Maybe<Scalars['String']>;
|
|
1727
|
+
namespace?: Maybe<Scalars['String']>;
|
|
1728
|
+
orgUserCount?: Maybe<Scalars['Int']>;
|
|
1729
|
+
createdAt?: Maybe<Scalars['DateTime']>;
|
|
1730
|
+
updatedAt?: Maybe<Scalars['DateTime']>;
|
|
1731
|
+
orgMembers?: Maybe<Array<Maybe<IOrgUserInput>>>;
|
|
1732
|
+
periodStart?: Maybe<Scalars['DateTime']>;
|
|
1733
|
+
periodStop?: Maybe<Scalars['DateTime']>;
|
|
1734
|
+
billingLeaders?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
1735
|
+
billingEmail?: Maybe<Scalars['String']>;
|
|
1736
|
+
isBillingLeader?: Maybe<Scalars['Boolean']>;
|
|
1737
|
+
mainBilingLeaderId?: Maybe<Scalars['String']>;
|
|
1738
|
+
stripeSubscriptionId?: Maybe<Scalars['String']>;
|
|
1739
|
+
invitations?: Maybe<Array<Maybe<IOrganizationInvitationInput>>>;
|
|
1740
|
+
status?: Maybe<Scalars['String']>;
|
|
1741
|
+
};
|
|
1765
1742
|
export declare type IOrganizationInvitation = {
|
|
1766
1743
|
__typename?: 'OrganizationInvitation';
|
|
1767
1744
|
id: Scalars['ID'];
|
|
@@ -1785,14 +1762,7 @@ export declare type IOrganizationInvitationDecode = {
|
|
|
1785
1762
|
invitationId?: Maybe<Scalars['String']>;
|
|
1786
1763
|
invitedBy?: Maybe<Scalars['String']>;
|
|
1787
1764
|
};
|
|
1788
|
-
export declare type
|
|
1789
|
-
teamId?: Maybe<Scalars['String']>;
|
|
1790
|
-
emails?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
1791
|
-
invitedBy?: Maybe<Scalars['String']>;
|
|
1792
|
-
orgName?: Maybe<Scalars['String']>;
|
|
1793
|
-
role?: Maybe<Scalars['String']>;
|
|
1794
|
-
};
|
|
1795
|
-
export declare type IOrganizationInvitation_Input = {
|
|
1765
|
+
export declare type IOrganizationInvitationInput = {
|
|
1796
1766
|
email?: Maybe<Scalars['String']>;
|
|
1797
1767
|
teamId?: Maybe<Scalars['String']>;
|
|
1798
1768
|
role?: Maybe<IApplicationRoles>;
|
|
@@ -1805,6 +1775,13 @@ export declare type IOrganizationInvitation_Input = {
|
|
|
1805
1775
|
acceptedAt?: Maybe<Scalars['DateTime']>;
|
|
1806
1776
|
tokenExpiration?: Maybe<Scalars['DateTime']>;
|
|
1807
1777
|
};
|
|
1778
|
+
export declare type IOrganizationInvitationRequest = {
|
|
1779
|
+
teamId?: Maybe<Scalars['String']>;
|
|
1780
|
+
emails?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
1781
|
+
invitedBy?: Maybe<Scalars['String']>;
|
|
1782
|
+
orgName?: Maybe<Scalars['String']>;
|
|
1783
|
+
role?: Maybe<Scalars['String']>;
|
|
1784
|
+
};
|
|
1808
1785
|
export declare type IOrganizationMember = {
|
|
1809
1786
|
__typename?: 'OrganizationMember';
|
|
1810
1787
|
id?: Maybe<Scalars['String']>;
|
|
@@ -1830,7 +1807,7 @@ export declare type IOrganizationRemoveRequest = {
|
|
|
1830
1807
|
};
|
|
1831
1808
|
export declare type IOrganizationResourceConfiguration = IIConfigurationModel & {
|
|
1832
1809
|
__typename?: 'OrganizationResourceConfiguration';
|
|
1833
|
-
/**
|
|
1810
|
+
/** The ID. */
|
|
1834
1811
|
id?: Maybe<Scalars['ID']>;
|
|
1835
1812
|
resource: Scalars['URI'];
|
|
1836
1813
|
target?: Maybe<Scalars['Int']>;
|
|
@@ -1890,29 +1867,7 @@ export declare type IOrganizationSettings = IISettingsSubject & {
|
|
|
1890
1867
|
export declare type IOrganizationUpdateRequest = {
|
|
1891
1868
|
id?: Maybe<Scalars['String']>;
|
|
1892
1869
|
requestedUserId?: Maybe<Scalars['String']>;
|
|
1893
|
-
payload?: Maybe<
|
|
1894
|
-
};
|
|
1895
|
-
export declare type IOrganization_Input = {
|
|
1896
|
-
id?: Maybe<Scalars['ID']>;
|
|
1897
|
-
name: Scalars['String'];
|
|
1898
|
-
title?: Maybe<Scalars['String']>;
|
|
1899
|
-
description?: Maybe<Scalars['String']>;
|
|
1900
|
-
picture?: Maybe<Scalars['String']>;
|
|
1901
|
-
stripeId?: Maybe<Scalars['String']>;
|
|
1902
|
-
namespace?: Maybe<Scalars['String']>;
|
|
1903
|
-
orgUserCount?: Maybe<Scalars['Int']>;
|
|
1904
|
-
createdAt?: Maybe<Scalars['DateTime']>;
|
|
1905
|
-
updatedAt?: Maybe<Scalars['DateTime']>;
|
|
1906
|
-
orgMembers?: Maybe<Array<Maybe<IOrgUser_Input>>>;
|
|
1907
|
-
periodStart?: Maybe<Scalars['DateTime']>;
|
|
1908
|
-
periodStop?: Maybe<Scalars['DateTime']>;
|
|
1909
|
-
billingLeaders?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
1910
|
-
billingEmail?: Maybe<Scalars['String']>;
|
|
1911
|
-
isBillingLeader?: Maybe<Scalars['Boolean']>;
|
|
1912
|
-
mainBilingLeaderId?: Maybe<Scalars['String']>;
|
|
1913
|
-
stripeSubscriptionId?: Maybe<Scalars['String']>;
|
|
1914
|
-
invitations?: Maybe<Array<Maybe<IOrganizationInvitation_Input>>>;
|
|
1915
|
-
status?: Maybe<Scalars['String']>;
|
|
1870
|
+
payload?: Maybe<IOrganizationInput>;
|
|
1916
1871
|
};
|
|
1917
1872
|
export declare type IOverrides = {
|
|
1918
1873
|
__typename?: 'Overrides';
|
|
@@ -1965,7 +1920,7 @@ export declare type IPhoneNumberInput = {
|
|
|
1965
1920
|
};
|
|
1966
1921
|
export declare type IPolicySubject = {
|
|
1967
1922
|
__typename?: 'PolicySubject';
|
|
1968
|
-
/**
|
|
1923
|
+
/** The URL to the policies. */
|
|
1969
1924
|
policyURL: Scalars['URI'];
|
|
1970
1925
|
/** The time when this was created. */
|
|
1971
1926
|
createdAt?: Maybe<Scalars['String']>;
|
|
@@ -2254,18 +2209,16 @@ export declare type IQuery = {
|
|
|
2254
2209
|
defaultViewerSettingsSubject: IDefaultSettings;
|
|
2255
2210
|
directChannel?: Maybe<IChannel>;
|
|
2256
2211
|
dummy?: Maybe<Scalars['Int']>;
|
|
2257
|
-
/**
|
|
2212
|
+
/** Fetches a User from Auth0 Service */
|
|
2258
2213
|
fetchAuth0User?: Maybe<IUserProfile>;
|
|
2259
2214
|
fetchUserAuthorizedDevices?: Maybe<Array<Maybe<IUserDevice>>>;
|
|
2260
2215
|
fileInfo: IFileInfo;
|
|
2261
2216
|
filesInfo: IFilesInfo;
|
|
2262
|
-
filterIntegrationConfiguration?: Maybe<Array<Maybe<IIntegrationConfiguration>>>;
|
|
2263
2217
|
getAccounts?: Maybe<Array<Maybe<IUserAccount>>>;
|
|
2264
2218
|
getAllCountries?: Maybe<Array<Maybe<ICountry>>>;
|
|
2265
2219
|
getAllDeviceToken?: Maybe<IDeviceTokens>;
|
|
2266
2220
|
getAllDeviceTokenById?: Maybe<Array<Maybe<IUserAccount>>>;
|
|
2267
2221
|
getAllGovernmentId?: Maybe<IUserAccounts>;
|
|
2268
|
-
getAllIntegrationConfigurations?: Maybe<IIntegrationConfigurationsOutput>;
|
|
2269
2222
|
getConfiguration?: Maybe<Array<Maybe<IConfiguration>>>;
|
|
2270
2223
|
getConfigurationData?: Maybe<IConfigurationData>;
|
|
2271
2224
|
getConfigurationPolicies?: Maybe<Array<Maybe<IConfigurationPolicy>>>;
|
|
@@ -2273,7 +2226,6 @@ export declare type IQuery = {
|
|
|
2273
2226
|
getDeviceToken?: Maybe<IDeviceToken>;
|
|
2274
2227
|
getEnvironment?: Maybe<IEnvironment>;
|
|
2275
2228
|
getExtendedUserAccount: IUserAccount;
|
|
2276
|
-
getIntegrationConfiguration?: Maybe<IIntegrationConfiguration>;
|
|
2277
2229
|
getManageableOrganizations?: Maybe<Array<Maybe<IOrganization>>>;
|
|
2278
2230
|
getOrgInvitationMembers?: Maybe<IOrgInvitationMembers>;
|
|
2279
2231
|
getOrgTeamInvitations?: Maybe<Array<Maybe<IOrganizationInvitation>>>;
|
|
@@ -2400,9 +2352,6 @@ export declare type IQueryFilesInfoArgs = {
|
|
|
2400
2352
|
skip?: Maybe<Scalars['Int']>;
|
|
2401
2353
|
sort?: Maybe<ISort>;
|
|
2402
2354
|
};
|
|
2403
|
-
export declare type IQueryFilterIntegrationConfigurationArgs = {
|
|
2404
|
-
filter?: Maybe<IIntegrationConfigurationFilterInput>;
|
|
2405
|
-
};
|
|
2406
2355
|
export declare type IQueryGetAccountsArgs = {
|
|
2407
2356
|
where?: Maybe<IUserAccountWhere>;
|
|
2408
2357
|
};
|
|
@@ -2412,12 +2361,6 @@ export declare type IQueryGetAllCountriesArgs = {
|
|
|
2412
2361
|
export declare type IQueryGetAllDeviceTokenByIdArgs = {
|
|
2413
2362
|
id: Array<Scalars['String']>;
|
|
2414
2363
|
};
|
|
2415
|
-
export declare type IQueryGetAllIntegrationConfigurationsArgs = {
|
|
2416
|
-
criteria?: Maybe<Scalars['AnyObject']>;
|
|
2417
|
-
limit?: Maybe<Scalars['Int']>;
|
|
2418
|
-
skip?: Maybe<Scalars['Int']>;
|
|
2419
|
-
sort?: Maybe<ISort>;
|
|
2420
|
-
};
|
|
2421
2364
|
export declare type IQueryGetConfigurationArgs = {
|
|
2422
2365
|
input?: Maybe<Array<Maybe<IConfigurationInput>>>;
|
|
2423
2366
|
};
|
|
@@ -2427,9 +2370,6 @@ export declare type IQueryGetConfigurationPoliciesArgs = {
|
|
|
2427
2370
|
export declare type IQueryGetExtendedUserAccountArgs = {
|
|
2428
2371
|
accountId?: Maybe<Scalars['String']>;
|
|
2429
2372
|
};
|
|
2430
|
-
export declare type IQueryGetIntegrationConfigurationArgs = {
|
|
2431
|
-
id: Scalars['String'];
|
|
2432
|
-
};
|
|
2433
2373
|
export declare type IQueryGetOrgInvitationMembersArgs = {
|
|
2434
2374
|
offset?: Maybe<Scalars['Int']>;
|
|
2435
2375
|
limit?: Maybe<Scalars['Int']>;
|
|
@@ -2438,7 +2378,7 @@ export declare type IQueryGetOrgTeamInvitationsArgs = {
|
|
|
2438
2378
|
teamId?: Maybe<Scalars['String']>;
|
|
2439
2379
|
};
|
|
2440
2380
|
export declare type IQueryGetOrganizationConfigValueArgs = {
|
|
2441
|
-
value?: Maybe<
|
|
2381
|
+
value?: Maybe<IOrganizationConfigValueInput>;
|
|
2442
2382
|
};
|
|
2443
2383
|
export declare type IQueryGetOrganizationDetailArgs = {
|
|
2444
2384
|
where: IOrgDetailWhere;
|
|
@@ -2563,7 +2503,7 @@ export declare type IResourceAccessRole = {
|
|
|
2563
2503
|
accessRoles?: Maybe<Array<Maybe<IAccessRole>>>;
|
|
2564
2504
|
resourceUserRoles?: Maybe<Array<Maybe<IResourceUser>>>;
|
|
2565
2505
|
};
|
|
2566
|
-
export declare type
|
|
2506
|
+
export declare type IResourceCreationDataInput = {
|
|
2567
2507
|
uri: Scalars['URI'];
|
|
2568
2508
|
name?: Maybe<Scalars['String']>;
|
|
2569
2509
|
};
|
|
@@ -2718,7 +2658,7 @@ export declare type ITeamCreateRequest = {
|
|
|
2718
2658
|
orgName: Scalars['String'];
|
|
2719
2659
|
tags?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
2720
2660
|
emails?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
2721
|
-
teamMembers?: Maybe<Array<Maybe<
|
|
2661
|
+
teamMembers?: Maybe<Array<Maybe<ITeamMemberInput>>>;
|
|
2722
2662
|
parentTeam?: Maybe<Scalars['String']>;
|
|
2723
2663
|
description?: Maybe<Scalars['String']>;
|
|
2724
2664
|
};
|
|
@@ -2742,7 +2682,7 @@ export declare type ITeamMember = {
|
|
|
2742
2682
|
role?: Maybe<IApplicationRoles>;
|
|
2743
2683
|
status?: Maybe<Scalars['String']>;
|
|
2744
2684
|
};
|
|
2745
|
-
export declare type
|
|
2685
|
+
export declare type ITeamMemberInput = {
|
|
2746
2686
|
id?: Maybe<Scalars['String']>;
|
|
2747
2687
|
email?: Maybe<Scalars['String']>;
|
|
2748
2688
|
userId?: Maybe<Scalars['String']>;
|
|
@@ -2763,7 +2703,7 @@ export declare type ITeamType = {
|
|
|
2763
2703
|
};
|
|
2764
2704
|
export declare type ITeamUpdateRequest = {
|
|
2765
2705
|
id: Scalars['String'];
|
|
2766
|
-
payload?: Maybe<
|
|
2706
|
+
payload?: Maybe<IAccountTeamInput>;
|
|
2767
2707
|
requestedUserId?: Maybe<Scalars['String']>;
|
|
2768
2708
|
};
|
|
2769
2709
|
/** Address State Create Input */
|
|
@@ -2863,6 +2803,13 @@ export declare type IUserAccountCreatedEvent = {
|
|
|
2863
2803
|
createdUser?: Maybe<IUserAccountCreatedDetailedEvent>;
|
|
2864
2804
|
sourceUser?: Maybe<IUserProfile>;
|
|
2865
2805
|
};
|
|
2806
|
+
export declare type IUserAccountInput = {
|
|
2807
|
+
id?: Maybe<Scalars['String']>;
|
|
2808
|
+
email?: Maybe<Scalars['String']>;
|
|
2809
|
+
alias?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
2810
|
+
username?: Maybe<Scalars['String']>;
|
|
2811
|
+
tokens?: Maybe<Array<Maybe<IUserTokenInput>>>;
|
|
2812
|
+
};
|
|
2866
2813
|
export declare type IUserAccountRemoveRequest = {
|
|
2867
2814
|
id?: Maybe<Scalars['String']>;
|
|
2868
2815
|
};
|
|
@@ -2876,7 +2823,7 @@ export declare type IUserAccountRemovedEvent = {
|
|
|
2876
2823
|
};
|
|
2877
2824
|
export declare type IUserAccountUpdateRequest = {
|
|
2878
2825
|
id: Scalars['String'];
|
|
2879
|
-
payload?: Maybe<
|
|
2826
|
+
payload?: Maybe<IUserAccountInput>;
|
|
2880
2827
|
};
|
|
2881
2828
|
export declare type IUserAccountWhere = {
|
|
2882
2829
|
id?: Maybe<Scalars['String']>;
|
|
@@ -2884,13 +2831,6 @@ export declare type IUserAccountWhere = {
|
|
|
2884
2831
|
alias?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
2885
2832
|
username?: Maybe<Scalars['String']>;
|
|
2886
2833
|
};
|
|
2887
|
-
export declare type IUserAccount_Input = {
|
|
2888
|
-
id?: Maybe<Scalars['String']>;
|
|
2889
|
-
email?: Maybe<Scalars['String']>;
|
|
2890
|
-
alias?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
2891
|
-
username?: Maybe<Scalars['String']>;
|
|
2892
|
-
tokens?: Maybe<Array<Maybe<IUserTokenInput>>>;
|
|
2893
|
-
};
|
|
2894
2834
|
export declare type IUserAccounts = {
|
|
2895
2835
|
__typename?: 'UserAccounts';
|
|
2896
2836
|
data?: Maybe<Array<Maybe<IUserAccount>>>;
|
|
@@ -2936,7 +2876,7 @@ export declare type IUserAuth0UpdateFields = {
|
|
|
2936
2876
|
};
|
|
2937
2877
|
export declare type IUserConfiguration = IIConfigurationModel & {
|
|
2938
2878
|
__typename?: 'UserConfiguration';
|
|
2939
|
-
/**
|
|
2879
|
+
/** The ID. */
|
|
2940
2880
|
id?: Maybe<Scalars['ID']>;
|
|
2941
2881
|
/** The URL to the user's settings. */
|
|
2942
2882
|
resource: Scalars['URI'];
|
|
@@ -2982,7 +2922,7 @@ export declare type IUserOrg = {
|
|
|
2982
2922
|
role?: Maybe<IApplicationRoles>;
|
|
2983
2923
|
inactive?: Maybe<Scalars['Boolean']>;
|
|
2984
2924
|
};
|
|
2985
|
-
export declare type
|
|
2925
|
+
export declare type IUserOrgInput = {
|
|
2986
2926
|
userId: Scalars['String'];
|
|
2987
2927
|
role?: Maybe<IApplicationRoles>;
|
|
2988
2928
|
inactive?: Maybe<Scalars['Boolean']>;
|
|
@@ -3664,7 +3604,7 @@ export declare type IResolversTypes = {
|
|
|
3664
3604
|
AccountAddressInput: IAccountAddressInput;
|
|
3665
3605
|
ID: ResolverTypeWrapper<Scalars['ID']>;
|
|
3666
3606
|
AccountTeam: ResolverTypeWrapper<IAccountTeam>;
|
|
3667
|
-
|
|
3607
|
+
AccountTeamInput: IAccountTeamInput;
|
|
3668
3608
|
AdminIdeSettings: ResolverTypeWrapper<IAdminIdeSettings>;
|
|
3669
3609
|
Int: ResolverTypeWrapper<Scalars['Int']>;
|
|
3670
3610
|
AnyObject: ResolverTypeWrapper<Scalars['AnyObject']>;
|
|
@@ -3677,7 +3617,7 @@ export declare type IResolversTypes = {
|
|
|
3677
3617
|
Auth0IdentityProfileData: ResolverTypeWrapper<IAuth0IdentityProfileData>;
|
|
3678
3618
|
AuthTokens: ResolverTypeWrapper<IAuthTokens>;
|
|
3679
3619
|
AuthUser: ResolverTypeWrapper<IAuthUser>;
|
|
3680
|
-
|
|
3620
|
+
AuthUserInput: IAuthUserInput;
|
|
3681
3621
|
BaseServiceCommands: IBaseServiceCommands;
|
|
3682
3622
|
CardImage: ResolverTypeWrapper<ICardImage>;
|
|
3683
3623
|
Channel: ResolverTypeWrapper<IChannel>;
|
|
@@ -3697,12 +3637,13 @@ export declare type IResolversTypes = {
|
|
|
3697
3637
|
ConfigCollectionName: IConfigCollectionName;
|
|
3698
3638
|
ConfigFragmentName: IConfigFragmentName;
|
|
3699
3639
|
Configuration: IResolversTypes['DefaultConfiguration'] | IResolversTypes['MachineConfiguration'] | IResolversTypes['UserConfiguration'] | IResolversTypes['OrganizationConfiguration'] | IResolversTypes['OrganizationResourceConfiguration'];
|
|
3640
|
+
ConfigurationContributionNames: IConfigurationContributionNames;
|
|
3700
3641
|
ConfigurationData: ResolverTypeWrapper<IConfigurationData>;
|
|
3701
3642
|
ConfigurationExtensionInfo: ResolverTypeWrapper<IConfigurationExtensionInfo>;
|
|
3702
3643
|
ConfigurationInput: IConfigurationInput;
|
|
3703
3644
|
ConfigurationModel: ResolverTypeWrapper<IConfigurationModel>;
|
|
3704
3645
|
ConfigurationOverrides: ResolverTypeWrapper<IConfigurationOverrides>;
|
|
3705
|
-
|
|
3646
|
+
ConfigurationOverridesInput: IConfigurationOverridesInput;
|
|
3706
3647
|
ConfigurationPolicy: IResolversTypes['DefaultPolicy'] | IResolversTypes['OrganizationPolicy'] | IResolversTypes['ResourcePolicy'] | IResolversTypes['ApplicationPolicy'];
|
|
3707
3648
|
ConfigurationScope: IConfigurationScope;
|
|
3708
3649
|
ConfigurationTarget: IConfigurationTarget;
|
|
@@ -3771,12 +3712,6 @@ export declare type IResolversTypes = {
|
|
|
3771
3712
|
IUser: IResolversTypes['AuthUser'] | IResolversTypes['MessengerUser'];
|
|
3772
3713
|
IUserMetadata: IResolversTypes['UserMetadata'];
|
|
3773
3714
|
ImageDimensionsConfigInput: IImageDimensionsConfigInput;
|
|
3774
|
-
IntegraitonConfigurationId: ResolverTypeWrapper<IIntegraitonConfigurationId>;
|
|
3775
|
-
IntegrationConfiguration: ResolverTypeWrapper<IIntegrationConfiguration>;
|
|
3776
|
-
IntegrationConfigurationCreateOrUpdateInput: IIntegrationConfigurationCreateOrUpdateInput;
|
|
3777
|
-
IntegrationConfigurationFilterInput: IIntegrationConfigurationFilterInput;
|
|
3778
|
-
IntegrationConfigurationInput: IIntegrationConfigurationInput;
|
|
3779
|
-
IntegrationConfigurationsOutput: ResolverTypeWrapper<IIntegrationConfigurationsOutput>;
|
|
3780
3715
|
InviteMember: ResolverTypeWrapper<IInviteMember>;
|
|
3781
3716
|
InviteStatus: IInviteStatus;
|
|
3782
3717
|
JSON: ResolverTypeWrapper<Scalars['JSON']>;
|
|
@@ -3809,11 +3744,11 @@ export declare type IResolversTypes = {
|
|
|
3809
3744
|
OrgType: IOrgType;
|
|
3810
3745
|
OrgUser: ResolverTypeWrapper<IOrgUser>;
|
|
3811
3746
|
OrgUserAccunt: ResolverTypeWrapper<IOrgUserAccunt>;
|
|
3747
|
+
OrgUserInput: IOrgUserInput;
|
|
3812
3748
|
OrgUserRole: IOrgUserRole;
|
|
3813
|
-
OrgUser_Input: IOrgUser_Input;
|
|
3814
3749
|
OrgainizationInvitationRole: IOrgainizationInvitationRole;
|
|
3815
3750
|
Organization: ResolverTypeWrapper<IOrganization>;
|
|
3816
|
-
|
|
3751
|
+
OrganizationConfigValueInput: IOrganizationConfigValueInput;
|
|
3817
3752
|
OrganizationConfiguration: ResolverTypeWrapper<IOrganizationConfiguration>;
|
|
3818
3753
|
OrganizationContextPubSubEvents: IOrganizationContextPubSubEvents;
|
|
3819
3754
|
OrganizationCreateRequest: IOrganizationCreateRequest;
|
|
@@ -3821,10 +3756,11 @@ export declare type IResolversTypes = {
|
|
|
3821
3756
|
resources: Array<Maybe<IResolversTypes['ResourceData']>>;
|
|
3822
3757
|
}>;
|
|
3823
3758
|
OrganizationIdentifier: ResolverTypeWrapper<IOrganizationIdentifier>;
|
|
3759
|
+
OrganizationInput: IOrganizationInput;
|
|
3824
3760
|
OrganizationInvitation: ResolverTypeWrapper<IOrganizationInvitation>;
|
|
3825
3761
|
OrganizationInvitationDecode: ResolverTypeWrapper<IOrganizationInvitationDecode>;
|
|
3762
|
+
OrganizationInvitationInput: IOrganizationInvitationInput;
|
|
3826
3763
|
OrganizationInvitationRequest: IOrganizationInvitationRequest;
|
|
3827
|
-
OrganizationInvitation_Input: IOrganizationInvitation_Input;
|
|
3828
3764
|
OrganizationMember: ResolverTypeWrapper<IOrganizationMember>;
|
|
3829
3765
|
OrganizationNotificationValues: IOrganizationNotificationValues;
|
|
3830
3766
|
OrganizationPolicy: ResolverTypeWrapper<IOrganizationPolicy>;
|
|
@@ -3835,7 +3771,6 @@ export declare type IResolversTypes = {
|
|
|
3835
3771
|
OrganizationRole: ResolverTypeWrapper<IOrganizationRole>;
|
|
3836
3772
|
OrganizationSettings: ResolverTypeWrapper<IOrganizationSettings>;
|
|
3837
3773
|
OrganizationUpdateRequest: IOrganizationUpdateRequest;
|
|
3838
|
-
Organization_Input: IOrganization_Input;
|
|
3839
3774
|
Overrides: ResolverTypeWrapper<IOverrides>;
|
|
3840
3775
|
PermissionAction: IPermissionAction;
|
|
3841
3776
|
PermissionResource: IPermissionResource;
|
|
@@ -3878,7 +3813,7 @@ export declare type IResolversTypes = {
|
|
|
3878
3813
|
ResourceAccessRole: ResolverTypeWrapper<Omit<IResourceAccessRole, 'accessRoles'> & {
|
|
3879
3814
|
accessRoles?: Maybe<Array<Maybe<IResolversTypes['AccessRole']>>>;
|
|
3880
3815
|
}>;
|
|
3881
|
-
|
|
3816
|
+
ResourceCreationDataInput: IResourceCreationDataInput;
|
|
3882
3817
|
ResourceData: IResolversTypes['OrganizationResourceData'] | IResolversTypes['ExternalResourceData'];
|
|
3883
3818
|
ResourcePolicy: ResolverTypeWrapper<IResourcePolicy>;
|
|
3884
3819
|
ResourceRole: ResolverTypeWrapper<IResourceRole>;
|
|
@@ -3905,7 +3840,7 @@ export declare type IResolversTypes = {
|
|
|
3905
3840
|
TeamCreateRequest: ITeamCreateRequest;
|
|
3906
3841
|
TeamCreationRequest: ITeamCreationRequest;
|
|
3907
3842
|
TeamMember: ResolverTypeWrapper<ITeamMember>;
|
|
3908
|
-
|
|
3843
|
+
TeamMemberInput: ITeamMemberInput;
|
|
3909
3844
|
TeamRemoveRequest: ITeamRemoveRequest;
|
|
3910
3845
|
TeamType: ITeamType;
|
|
3911
3846
|
TeamUpdateRequest: ITeamUpdateRequest;
|
|
@@ -3921,11 +3856,11 @@ export declare type IResolversTypes = {
|
|
|
3921
3856
|
UserAccountCreateRequest: IUserAccountCreateRequest;
|
|
3922
3857
|
UserAccountCreatedDetailedEvent: ResolverTypeWrapper<IUserAccountCreatedDetailedEvent>;
|
|
3923
3858
|
UserAccountCreatedEvent: ResolverTypeWrapper<IUserAccountCreatedEvent>;
|
|
3859
|
+
UserAccountInput: IUserAccountInput;
|
|
3924
3860
|
UserAccountRemoveRequest: IUserAccountRemoveRequest;
|
|
3925
3861
|
UserAccountRemovedEvent: ResolverTypeWrapper<IUserAccountRemovedEvent>;
|
|
3926
3862
|
UserAccountUpdateRequest: IUserAccountUpdateRequest;
|
|
3927
3863
|
UserAccountWhere: IUserAccountWhere;
|
|
3928
|
-
UserAccount_Input: IUserAccount_Input;
|
|
3929
3864
|
UserAccounts: ResolverTypeWrapper<IUserAccounts>;
|
|
3930
3865
|
UserAuth0Info: ResolverTypeWrapper<IUserAuth0Info>;
|
|
3931
3866
|
UserAuth0Integrations: ResolverTypeWrapper<IUserAuth0Integrations>;
|
|
@@ -3937,7 +3872,7 @@ export declare type IResolversTypes = {
|
|
|
3937
3872
|
UserMetadata: ResolverTypeWrapper<IUserMetadata>;
|
|
3938
3873
|
UserOrderBy: IUserOrderBy;
|
|
3939
3874
|
UserOrg: ResolverTypeWrapper<IUserOrg>;
|
|
3940
|
-
|
|
3875
|
+
UserOrgInput: IUserOrgInput;
|
|
3941
3876
|
UserPasswordResetInput: IUserPasswordResetInput;
|
|
3942
3877
|
UserPreviousValues: ResolverTypeWrapper<IUserPreviousValues>;
|
|
3943
3878
|
UserProfile: ResolverTypeWrapper<IUserProfile>;
|
|
@@ -3958,7 +3893,7 @@ export declare type IResolversParentTypes = {
|
|
|
3958
3893
|
AccountAddressInput: IAccountAddressInput;
|
|
3959
3894
|
ID: Scalars['ID'];
|
|
3960
3895
|
AccountTeam: IAccountTeam;
|
|
3961
|
-
|
|
3896
|
+
AccountTeamInput: IAccountTeamInput;
|
|
3962
3897
|
AdminIdeSettings: IAdminIdeSettings;
|
|
3963
3898
|
Int: Scalars['Int'];
|
|
3964
3899
|
AnyObject: Scalars['AnyObject'];
|
|
@@ -3970,7 +3905,7 @@ export declare type IResolversParentTypes = {
|
|
|
3970
3905
|
Auth0IdentityProfileData: IAuth0IdentityProfileData;
|
|
3971
3906
|
AuthTokens: IAuthTokens;
|
|
3972
3907
|
AuthUser: IAuthUser;
|
|
3973
|
-
|
|
3908
|
+
AuthUserInput: IAuthUserInput;
|
|
3974
3909
|
CardImage: ICardImage;
|
|
3975
3910
|
Channel: IChannel;
|
|
3976
3911
|
ChannelFilterInput: IChannelFilterInput;
|
|
@@ -3987,7 +3922,7 @@ export declare type IResolversParentTypes = {
|
|
|
3987
3922
|
ConfigurationInput: IConfigurationInput;
|
|
3988
3923
|
ConfigurationModel: IConfigurationModel;
|
|
3989
3924
|
ConfigurationOverrides: IConfigurationOverrides;
|
|
3990
|
-
|
|
3925
|
+
ConfigurationOverridesInput: IConfigurationOverridesInput;
|
|
3991
3926
|
ConfigurationPolicy: IResolversParentTypes['DefaultPolicy'] | IResolversParentTypes['OrganizationPolicy'] | IResolversParentTypes['ResourcePolicy'] | IResolversParentTypes['ApplicationPolicy'];
|
|
3992
3927
|
ConfigurationUpdateEvent: IConfigurationUpdateEvent;
|
|
3993
3928
|
Contact: IContact;
|
|
@@ -4047,12 +3982,6 @@ export declare type IResolversParentTypes = {
|
|
|
4047
3982
|
IUser: IResolversParentTypes['AuthUser'] | IResolversParentTypes['MessengerUser'];
|
|
4048
3983
|
IUserMetadata: IResolversParentTypes['UserMetadata'];
|
|
4049
3984
|
ImageDimensionsConfigInput: IImageDimensionsConfigInput;
|
|
4050
|
-
IntegraitonConfigurationId: IIntegraitonConfigurationId;
|
|
4051
|
-
IntegrationConfiguration: IIntegrationConfiguration;
|
|
4052
|
-
IntegrationConfigurationCreateOrUpdateInput: IIntegrationConfigurationCreateOrUpdateInput;
|
|
4053
|
-
IntegrationConfigurationFilterInput: IIntegrationConfigurationFilterInput;
|
|
4054
|
-
IntegrationConfigurationInput: IIntegrationConfigurationInput;
|
|
4055
|
-
IntegrationConfigurationsOutput: IIntegrationConfigurationsOutput;
|
|
4056
3985
|
InviteMember: IInviteMember;
|
|
4057
3986
|
JSON: Scalars['JSON'];
|
|
4058
3987
|
JSONObject: Scalars['JSONObject'];
|
|
@@ -4078,19 +4007,20 @@ export declare type IResolversParentTypes = {
|
|
|
4078
4007
|
OrgType: IOrgType;
|
|
4079
4008
|
OrgUser: IOrgUser;
|
|
4080
4009
|
OrgUserAccunt: IOrgUserAccunt;
|
|
4081
|
-
|
|
4010
|
+
OrgUserInput: IOrgUserInput;
|
|
4082
4011
|
Organization: IOrganization;
|
|
4083
|
-
|
|
4012
|
+
OrganizationConfigValueInput: IOrganizationConfigValueInput;
|
|
4084
4013
|
OrganizationConfiguration: IOrganizationConfiguration;
|
|
4085
4014
|
OrganizationCreateRequest: IOrganizationCreateRequest;
|
|
4086
4015
|
OrganizationData: Omit<IOrganizationData, 'resources'> & {
|
|
4087
4016
|
resources: Array<Maybe<IResolversParentTypes['ResourceData']>>;
|
|
4088
4017
|
};
|
|
4089
4018
|
OrganizationIdentifier: IOrganizationIdentifier;
|
|
4019
|
+
OrganizationInput: IOrganizationInput;
|
|
4090
4020
|
OrganizationInvitation: IOrganizationInvitation;
|
|
4091
4021
|
OrganizationInvitationDecode: IOrganizationInvitationDecode;
|
|
4022
|
+
OrganizationInvitationInput: IOrganizationInvitationInput;
|
|
4092
4023
|
OrganizationInvitationRequest: IOrganizationInvitationRequest;
|
|
4093
|
-
OrganizationInvitation_Input: IOrganizationInvitation_Input;
|
|
4094
4024
|
OrganizationMember: IOrganizationMember;
|
|
4095
4025
|
OrganizationNotificationValues: IOrganizationNotificationValues;
|
|
4096
4026
|
OrganizationPolicy: IOrganizationPolicy;
|
|
@@ -4101,7 +4031,6 @@ export declare type IResolversParentTypes = {
|
|
|
4101
4031
|
OrganizationRole: IOrganizationRole;
|
|
4102
4032
|
OrganizationSettings: IOrganizationSettings;
|
|
4103
4033
|
OrganizationUpdateRequest: IOrganizationUpdateRequest;
|
|
4104
|
-
Organization_Input: IOrganization_Input;
|
|
4105
4034
|
Overrides: IOverrides;
|
|
4106
4035
|
PermissionSubject: IPermissionSubject;
|
|
4107
4036
|
PhoneNumber: IPhoneNumber;
|
|
@@ -4137,7 +4066,7 @@ export declare type IResolversParentTypes = {
|
|
|
4137
4066
|
ResourceAccessRole: Omit<IResourceAccessRole, 'accessRoles'> & {
|
|
4138
4067
|
accessRoles?: Maybe<Array<Maybe<IResolversParentTypes['AccessRole']>>>;
|
|
4139
4068
|
};
|
|
4140
|
-
|
|
4069
|
+
ResourceCreationDataInput: IResourceCreationDataInput;
|
|
4141
4070
|
ResourceData: IResolversParentTypes['OrganizationResourceData'] | IResolversParentTypes['ExternalResourceData'];
|
|
4142
4071
|
ResourcePolicy: IResourcePolicy;
|
|
4143
4072
|
ResourceRole: IResourceRole;
|
|
@@ -4159,7 +4088,7 @@ export declare type IResolversParentTypes = {
|
|
|
4159
4088
|
TeamCreateRequest: ITeamCreateRequest;
|
|
4160
4089
|
TeamCreationRequest: ITeamCreationRequest;
|
|
4161
4090
|
TeamMember: ITeamMember;
|
|
4162
|
-
|
|
4091
|
+
TeamMemberInput: ITeamMemberInput;
|
|
4163
4092
|
TeamRemoveRequest: ITeamRemoveRequest;
|
|
4164
4093
|
TeamType: ITeamType;
|
|
4165
4094
|
TeamUpdateRequest: ITeamUpdateRequest;
|
|
@@ -4174,11 +4103,11 @@ export declare type IResolversParentTypes = {
|
|
|
4174
4103
|
UserAccountCreateRequest: IUserAccountCreateRequest;
|
|
4175
4104
|
UserAccountCreatedDetailedEvent: IUserAccountCreatedDetailedEvent;
|
|
4176
4105
|
UserAccountCreatedEvent: IUserAccountCreatedEvent;
|
|
4106
|
+
UserAccountInput: IUserAccountInput;
|
|
4177
4107
|
UserAccountRemoveRequest: IUserAccountRemoveRequest;
|
|
4178
4108
|
UserAccountRemovedEvent: IUserAccountRemovedEvent;
|
|
4179
4109
|
UserAccountUpdateRequest: IUserAccountUpdateRequest;
|
|
4180
4110
|
UserAccountWhere: IUserAccountWhere;
|
|
4181
|
-
UserAccount_Input: IUserAccount_Input;
|
|
4182
4111
|
UserAccounts: IUserAccounts;
|
|
4183
4112
|
UserAuth0Info: IUserAuth0Info;
|
|
4184
4113
|
UserAuth0Integrations: IUserAuth0Integrations;
|
|
@@ -4189,7 +4118,7 @@ export declare type IResolversParentTypes = {
|
|
|
4189
4118
|
UserDevice: IUserDevice;
|
|
4190
4119
|
UserMetadata: IUserMetadata;
|
|
4191
4120
|
UserOrg: IUserOrg;
|
|
4192
|
-
|
|
4121
|
+
UserOrgInput: IUserOrgInput;
|
|
4193
4122
|
UserPasswordResetInput: IUserPasswordResetInput;
|
|
4194
4123
|
UserPreviousValues: IUserPreviousValues;
|
|
4195
4124
|
UserProfile: IUserProfile;
|
|
@@ -4748,25 +4677,6 @@ export declare type IIUserMetadataResolvers<ContextType = any, ParentType extend
|
|
|
4748
4677
|
dob?: Resolver<Maybe<IResolversTypes['Date']>, ParentType, ContextType>;
|
|
4749
4678
|
zip_code?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
4750
4679
|
};
|
|
4751
|
-
export declare type IIntegraitonConfigurationIdResolvers<ContextType = any, ParentType extends IResolversParentTypes['IntegraitonConfigurationId'] = IResolversParentTypes['IntegraitonConfigurationId']> = {
|
|
4752
|
-
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
4753
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
4754
|
-
};
|
|
4755
|
-
export declare type IIntegrationConfigurationResolvers<ContextType = any, ParentType extends IResolversParentTypes['IntegrationConfiguration'] = IResolversParentTypes['IntegrationConfiguration']> = {
|
|
4756
|
-
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
|
4757
|
-
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
4758
|
-
userId?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
|
4759
|
-
integrationName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
4760
|
-
status?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
4761
|
-
updatedAt?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
|
|
4762
|
-
integrationInfo?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
|
|
4763
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
4764
|
-
};
|
|
4765
|
-
export declare type IIntegrationConfigurationsOutputResolvers<ContextType = any, ParentType extends IResolversParentTypes['IntegrationConfigurationsOutput'] = IResolversParentTypes['IntegrationConfigurationsOutput']> = {
|
|
4766
|
-
totalCount?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
4767
|
-
data?: Resolver<Maybe<Array<Maybe<IResolversTypes['IntegrationConfiguration']>>>, ParentType, ContextType>;
|
|
4768
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
4769
|
-
};
|
|
4770
4680
|
export declare type IInviteMemberResolvers<ContextType = any, ParentType extends IResolversParentTypes['InviteMember'] = IResolversParentTypes['InviteMember']> = {
|
|
4771
4681
|
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
4772
4682
|
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
@@ -4861,17 +4771,14 @@ export declare type IMutationResolvers<ContextType = any, ParentType extends IRe
|
|
|
4861
4771
|
createContact?: Resolver<IResolversTypes['Contact'], ParentType, ContextType, RequireFields<IMutationCreateContactArgs, 'contact'>>;
|
|
4862
4772
|
createDirectChannel?: Resolver<Maybe<IResolversTypes['Channel']>, ParentType, ContextType, RequireFields<IMutationCreateDirectChannelArgs, 'receiver' | 'displayName'>>;
|
|
4863
4773
|
createFileUploadLinks?: Resolver<Array<IResolversTypes['String']>, ParentType, ContextType, RequireFields<IMutationCreateFileUploadLinksArgs, 'filenames'>>;
|
|
4864
|
-
createIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['IntegraitonConfigurationId']>, ParentType, ContextType, RequireFields<IMutationCreateIntegrationConfigurationArgs, never>>;
|
|
4865
4774
|
createLanguage?: Resolver<IResolversTypes['Language'], ParentType, ContextType, RequireFields<IMutationCreateLanguageArgs, 'country'>>;
|
|
4866
4775
|
createMessageFileUploadLink?: Resolver<IResolversTypes['String'], ParentType, ContextType, RequireFields<IMutationCreateMessageFileUploadLinkArgs, 'postId' | 'filename'>>;
|
|
4867
4776
|
createMessageFilesUploadLink?: Resolver<Array<IResolversTypes['String']>, ParentType, ContextType, RequireFields<IMutationCreateMessageFilesUploadLinkArgs, 'postId' | 'filenames'>>;
|
|
4868
|
-
createOrUpdateIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['IntegraitonConfigurationId']>, ParentType, ContextType, RequireFields<IMutationCreateOrUpdateIntegrationConfigurationArgs, never>>;
|
|
4869
4777
|
createOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IMutationCreateOrganizationArgs, 'organization'>>;
|
|
4870
4778
|
createTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IMutationCreateTeamArgs, 'request'>>;
|
|
4871
4779
|
declineOrganizationInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationDeclineOrganizationInvitationArgs, 'id'>>;
|
|
4872
4780
|
deleteChannel?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationDeleteChannelArgs, 'id'>>;
|
|
4873
4781
|
deleteContact?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationDeleteContactArgs, 'id'>>;
|
|
4874
|
-
deleteIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationDeleteIntegrationConfigurationArgs, 'id'>>;
|
|
4875
4782
|
deleteLanguage?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationDeleteLanguageArgs, 'id'>>;
|
|
4876
4783
|
deleteMessage?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationDeleteMessageArgs, 'messageId'>>;
|
|
4877
4784
|
deleteMessageFile?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationDeleteMessageFileArgs, 'url'>>;
|
|
@@ -4958,6 +4865,7 @@ export declare type IOrgMemberResolvers<ContextType = any, ParentType extends IR
|
|
|
4958
4865
|
_id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
4959
4866
|
userId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
4960
4867
|
role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
|
|
4868
|
+
isSelf?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
4961
4869
|
inactive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
4962
4870
|
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
4963
4871
|
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
@@ -5339,13 +5247,11 @@ export declare type IQueryResolvers<ContextType = any, ParentType extends IResol
|
|
|
5339
5247
|
fetchUserAuthorizedDevices?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserDevice']>>>, ParentType, ContextType, RequireFields<IQueryFetchUserAuthorizedDevicesArgs, 'auth0UserId'>>;
|
|
5340
5248
|
fileInfo?: Resolver<IResolversTypes['FileInfo'], ParentType, ContextType, RequireFields<IQueryFileInfoArgs, 'id'>>;
|
|
5341
5249
|
filesInfo?: Resolver<IResolversTypes['FilesInfo'], ParentType, ContextType, RequireFields<IQueryFilesInfoArgs, never>>;
|
|
5342
|
-
filterIntegrationConfiguration?: Resolver<Maybe<Array<Maybe<IResolversTypes['IntegrationConfiguration']>>>, ParentType, ContextType, RequireFields<IQueryFilterIntegrationConfigurationArgs, never>>;
|
|
5343
5250
|
getAccounts?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserAccount']>>>, ParentType, ContextType, RequireFields<IQueryGetAccountsArgs, never>>;
|
|
5344
5251
|
getAllCountries?: Resolver<Maybe<Array<Maybe<IResolversTypes['Country']>>>, ParentType, ContextType, RequireFields<IQueryGetAllCountriesArgs, never>>;
|
|
5345
5252
|
getAllDeviceToken?: Resolver<Maybe<IResolversTypes['DeviceTokens']>, ParentType, ContextType>;
|
|
5346
5253
|
getAllDeviceTokenById?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserAccount']>>>, ParentType, ContextType, RequireFields<IQueryGetAllDeviceTokenByIdArgs, 'id'>>;
|
|
5347
5254
|
getAllGovernmentId?: Resolver<Maybe<IResolversTypes['UserAccounts']>, ParentType, ContextType>;
|
|
5348
|
-
getAllIntegrationConfigurations?: Resolver<Maybe<IResolversTypes['IntegrationConfigurationsOutput']>, ParentType, ContextType, RequireFields<IQueryGetAllIntegrationConfigurationsArgs, never>>;
|
|
5349
5255
|
getConfiguration?: Resolver<Maybe<Array<Maybe<IResolversTypes['Configuration']>>>, ParentType, ContextType, RequireFields<IQueryGetConfigurationArgs, never>>;
|
|
5350
5256
|
getConfigurationData?: Resolver<Maybe<IResolversTypes['ConfigurationData']>, ParentType, ContextType>;
|
|
5351
5257
|
getConfigurationPolicies?: Resolver<Maybe<Array<Maybe<IResolversTypes['ConfigurationPolicy']>>>, ParentType, ContextType, RequireFields<IQueryGetConfigurationPoliciesArgs, never>>;
|
|
@@ -5353,7 +5259,6 @@ export declare type IQueryResolvers<ContextType = any, ParentType extends IResol
|
|
|
5353
5259
|
getDeviceToken?: Resolver<Maybe<IResolversTypes['DeviceToken']>, ParentType, ContextType>;
|
|
5354
5260
|
getEnvironment?: Resolver<Maybe<IResolversTypes['Environment']>, ParentType, ContextType>;
|
|
5355
5261
|
getExtendedUserAccount?: Resolver<IResolversTypes['UserAccount'], ParentType, ContextType, RequireFields<IQueryGetExtendedUserAccountArgs, never>>;
|
|
5356
|
-
getIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['IntegrationConfiguration']>, ParentType, ContextType, RequireFields<IQueryGetIntegrationConfigurationArgs, 'id'>>;
|
|
5357
5262
|
getManageableOrganizations?: Resolver<Maybe<Array<Maybe<IResolversTypes['Organization']>>>, ParentType, ContextType>;
|
|
5358
5263
|
getOrgInvitationMembers?: Resolver<Maybe<IResolversTypes['OrgInvitationMembers']>, ParentType, ContextType, RequireFields<IQueryGetOrgInvitationMembersArgs, never>>;
|
|
5359
5264
|
getOrgTeamInvitations?: Resolver<Maybe<Array<Maybe<IResolversTypes['OrganizationInvitation']>>>, ParentType, ContextType, RequireFields<IQueryGetOrgTeamInvitationsArgs, never>>;
|
|
@@ -5744,9 +5649,6 @@ export declare type IResolvers<ContextType = any> = {
|
|
|
5744
5649
|
ITerritorialState?: IITerritorialStateResolvers<ContextType>;
|
|
5745
5650
|
IUser?: IIUserResolvers<ContextType>;
|
|
5746
5651
|
IUserMetadata?: IIUserMetadataResolvers<ContextType>;
|
|
5747
|
-
IntegraitonConfigurationId?: IIntegraitonConfigurationIdResolvers<ContextType>;
|
|
5748
|
-
IntegrationConfiguration?: IIntegrationConfigurationResolvers<ContextType>;
|
|
5749
|
-
IntegrationConfigurationsOutput?: IIntegrationConfigurationsOutputResolvers<ContextType>;
|
|
5750
5652
|
InviteMember?: IInviteMemberResolvers<ContextType>;
|
|
5751
5653
|
JSON?: GraphQLScalarType;
|
|
5752
5654
|
JSONObject?: GraphQLScalarType;
|