@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/lib/generated-model.d.ts
CHANGED
|
@@ -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 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 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 enum IConfigFragmentName {
|
|
369
371
|
Resources = "resources",
|
|
@@ -380,6 +382,11 @@ export declare enum IConfigFragmentName {
|
|
|
380
382
|
BillingPlanPolicies = "billingPlanPolicies"
|
|
381
383
|
}
|
|
382
384
|
export declare type IConfiguration = IDefaultConfiguration | IMachineConfiguration | IUserConfiguration | IOrganizationConfiguration | IOrganizationResourceConfiguration;
|
|
385
|
+
export declare 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'];
|
|
@@ -621,8 +628,13 @@ export declare type IDeviceInfoInput = {
|
|
|
621
628
|
os: Scalars['String'];
|
|
622
629
|
deviceName?: Maybe<Scalars['String']>;
|
|
623
630
|
browserName?: Maybe<Scalars['String']>;
|
|
624
|
-
|
|
631
|
+
platform: IDeviceInfoPlatform;
|
|
625
632
|
};
|
|
633
|
+
export declare enum IDeviceInfoPlatform {
|
|
634
|
+
Mobile = "MOBILE",
|
|
635
|
+
Web = "WEB",
|
|
636
|
+
Extension = "EXTENSION"
|
|
637
|
+
}
|
|
626
638
|
export declare type IDeviceToken = {
|
|
627
639
|
__typename?: 'DeviceToken';
|
|
628
640
|
deviceToken?: Maybe<Scalars['String']>;
|
|
@@ -829,7 +841,7 @@ export declare type IIConfigurationService = {
|
|
|
829
841
|
export declare type IIConfigurationServiceUpdateValueArgs = {
|
|
830
842
|
key: Scalars['String'];
|
|
831
843
|
value: Scalars['AnyObject'];
|
|
832
|
-
overrides:
|
|
844
|
+
overrides: IConfigurationOverridesInput;
|
|
833
845
|
target?: Maybe<IConfigurationTarget>;
|
|
834
846
|
donotNotifyError?: Maybe<Scalars['Boolean']>;
|
|
835
847
|
};
|
|
@@ -933,47 +945,6 @@ export declare type IImageDimensionsConfigInput = {
|
|
|
933
945
|
thumbnailImageWidth?: Maybe<Scalars['Int']>;
|
|
934
946
|
thumbnailImageHeight?: Maybe<Scalars['Int']>;
|
|
935
947
|
};
|
|
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
948
|
export declare type IInviteMember = {
|
|
978
949
|
__typename?: 'InviteMember';
|
|
979
950
|
id?: Maybe<Scalars['String']>;
|
|
@@ -1006,8 +977,8 @@ export declare type ILanguage = {
|
|
|
1006
977
|
code: Scalars['String'];
|
|
1007
978
|
name: Scalars['String'];
|
|
1008
979
|
nativeName: Scalars['String'];
|
|
1009
|
-
createdAt: Scalars['
|
|
1010
|
-
updatedAt?: Maybe<Scalars['
|
|
980
|
+
createdAt: Scalars['DateTime'];
|
|
981
|
+
updatedAt?: Maybe<Scalars['DateTime']>;
|
|
1011
982
|
};
|
|
1012
983
|
export declare type ILanguageInput = {
|
|
1013
984
|
code: Scalars['String'];
|
|
@@ -1026,7 +997,7 @@ export declare type ILoginError = {
|
|
|
1026
997
|
};
|
|
1027
998
|
export declare type IMachineConfiguration = IIConfigurationModel & {
|
|
1028
999
|
__typename?: 'MachineConfiguration';
|
|
1029
|
-
/**
|
|
1000
|
+
/** The ID. */
|
|
1030
1001
|
id?: Maybe<Scalars['ID']>;
|
|
1031
1002
|
/** The URL to the machine's settings. */
|
|
1032
1003
|
resource: Scalars['URI'];
|
|
@@ -1149,18 +1120,15 @@ export declare type IMutation = {
|
|
|
1149
1120
|
createContact: IContact;
|
|
1150
1121
|
createDirectChannel?: Maybe<IChannel>;
|
|
1151
1122
|
createFileUploadLinks: Array<Scalars['String']>;
|
|
1152
|
-
createIntegrationConfiguration?: Maybe<IIntegraitonConfigurationId>;
|
|
1153
1123
|
createLanguage: ILanguage;
|
|
1154
1124
|
/** Attach Post File */
|
|
1155
1125
|
createMessageFileUploadLink: Scalars['String'];
|
|
1156
1126
|
createMessageFilesUploadLink: Array<Scalars['String']>;
|
|
1157
|
-
createOrUpdateIntegrationConfiguration?: Maybe<IIntegraitonConfigurationId>;
|
|
1158
1127
|
createOrganization?: Maybe<IOrganization>;
|
|
1159
1128
|
createTeam?: Maybe<IAccountTeam>;
|
|
1160
1129
|
declineOrganizationInvitation?: Maybe<Scalars['Boolean']>;
|
|
1161
1130
|
deleteChannel?: Maybe<Scalars['Boolean']>;
|
|
1162
1131
|
deleteContact: Scalars['Boolean'];
|
|
1163
|
-
deleteIntegrationConfiguration?: Maybe<Scalars['Boolean']>;
|
|
1164
1132
|
deleteLanguage: Scalars['Boolean'];
|
|
1165
1133
|
deleteMessage?: Maybe<Scalars['Boolean']>;
|
|
1166
1134
|
/** Detach Post File */
|
|
@@ -1210,7 +1178,7 @@ export declare type IMutation = {
|
|
|
1210
1178
|
setGender: IUserAccount;
|
|
1211
1179
|
setName: IUserAccount;
|
|
1212
1180
|
setSettingsValueByResource?: Maybe<Scalars['Boolean']>;
|
|
1213
|
-
/**
|
|
1181
|
+
/** Triggers onUserLoggedIn events */
|
|
1214
1182
|
updateAuth0UserPassword?: Maybe<Scalars['Boolean']>;
|
|
1215
1183
|
updateConfigurationPolicyValue?: Maybe<Scalars['Boolean']>;
|
|
1216
1184
|
updateConfigurationPolicyValueByUri?: Maybe<Scalars['Boolean']>;
|
|
@@ -1299,9 +1267,6 @@ export declare type IMutationCreateDirectChannelArgs = {
|
|
|
1299
1267
|
export declare type IMutationCreateFileUploadLinksArgs = {
|
|
1300
1268
|
filenames: Array<Scalars['String']>;
|
|
1301
1269
|
};
|
|
1302
|
-
export declare type IMutationCreateIntegrationConfigurationArgs = {
|
|
1303
|
-
data?: Maybe<IIntegrationConfigurationInput>;
|
|
1304
|
-
};
|
|
1305
1270
|
export declare type IMutationCreateLanguageArgs = {
|
|
1306
1271
|
country: ILanguageInput;
|
|
1307
1272
|
};
|
|
@@ -1313,9 +1278,6 @@ export declare type IMutationCreateMessageFilesUploadLinkArgs = {
|
|
|
1313
1278
|
postId: Scalars['ID'];
|
|
1314
1279
|
filenames: Array<Scalars['String']>;
|
|
1315
1280
|
};
|
|
1316
|
-
export declare type IMutationCreateOrUpdateIntegrationConfigurationArgs = {
|
|
1317
|
-
data?: Maybe<IIntegrationConfigurationCreateOrUpdateInput>;
|
|
1318
|
-
};
|
|
1319
1281
|
export declare type IMutationCreateOrganizationArgs = {
|
|
1320
1282
|
organization: IOrganizationCreateRequest;
|
|
1321
1283
|
};
|
|
@@ -1331,9 +1293,6 @@ export declare type IMutationDeleteChannelArgs = {
|
|
|
1331
1293
|
export declare type IMutationDeleteContactArgs = {
|
|
1332
1294
|
id: Scalars['ID'];
|
|
1333
1295
|
};
|
|
1334
|
-
export declare type IMutationDeleteIntegrationConfigurationArgs = {
|
|
1335
|
-
id: Scalars['String'];
|
|
1336
|
-
};
|
|
1337
1296
|
export declare type IMutationDeleteLanguageArgs = {
|
|
1338
1297
|
id: Scalars['ID'];
|
|
1339
1298
|
};
|
|
@@ -1424,14 +1383,14 @@ export declare type IMutationRemoveTeamMemberArgs = {
|
|
|
1424
1383
|
};
|
|
1425
1384
|
export declare type IMutationRemoveUserAuthSessionArgs = {
|
|
1426
1385
|
sessionId?: Maybe<Scalars['String']>;
|
|
1427
|
-
|
|
1386
|
+
platform?: Maybe<IDeviceInfoPlatform>;
|
|
1428
1387
|
};
|
|
1429
1388
|
export declare type IMutationRemovedUserAuthIntegrationArgs = {
|
|
1430
1389
|
provider?: Maybe<Scalars['String']>;
|
|
1431
1390
|
};
|
|
1432
1391
|
export declare type IMutationRenewAuthTokenArgs = {
|
|
1433
1392
|
sessionId?: Maybe<Scalars['String']>;
|
|
1434
|
-
|
|
1393
|
+
platform?: Maybe<IDeviceInfoPlatform>;
|
|
1435
1394
|
};
|
|
1436
1395
|
export declare type IMutationResendOrganizationInvitationArgs = {
|
|
1437
1396
|
id: Scalars['ID'];
|
|
@@ -1493,7 +1452,7 @@ export declare type IMutationUpdateAuth0UserPasswordArgs = {
|
|
|
1493
1452
|
export declare type IMutationUpdateConfigurationPolicyValueArgs = {
|
|
1494
1453
|
key: Scalars['String'];
|
|
1495
1454
|
value: Scalars['AnyObject'];
|
|
1496
|
-
overrides?: Maybe<
|
|
1455
|
+
overrides?: Maybe<IConfigurationOverridesInput>;
|
|
1497
1456
|
target?: Maybe<Scalars['Int']>;
|
|
1498
1457
|
donotNotifyError?: Maybe<Scalars['Boolean']>;
|
|
1499
1458
|
};
|
|
@@ -1501,14 +1460,14 @@ export declare type IMutationUpdateConfigurationPolicyValueByUriArgs = {
|
|
|
1501
1460
|
resource?: Maybe<Scalars['URI']>;
|
|
1502
1461
|
key: Scalars['String'];
|
|
1503
1462
|
value: Scalars['AnyObject'];
|
|
1504
|
-
overrides?: Maybe<
|
|
1463
|
+
overrides?: Maybe<IConfigurationOverridesInput>;
|
|
1505
1464
|
target?: Maybe<Scalars['Int']>;
|
|
1506
1465
|
donotNotifyError?: Maybe<Scalars['Boolean']>;
|
|
1507
1466
|
};
|
|
1508
1467
|
export declare type IMutationUpdateConfigurationValueArgs = {
|
|
1509
1468
|
key: Scalars['String'];
|
|
1510
1469
|
value: Scalars['AnyObject'];
|
|
1511
|
-
overrides?: Maybe<
|
|
1470
|
+
overrides?: Maybe<IConfigurationOverridesInput>;
|
|
1512
1471
|
target?: Maybe<Scalars['Int']>;
|
|
1513
1472
|
donotNotifyError?: Maybe<Scalars['Boolean']>;
|
|
1514
1473
|
};
|
|
@@ -1516,7 +1475,7 @@ export declare type IMutationUpdateConfigurationValueByUriArgs = {
|
|
|
1516
1475
|
resource?: Maybe<Scalars['URI']>;
|
|
1517
1476
|
key: Scalars['String'];
|
|
1518
1477
|
value: Scalars['AnyObject'];
|
|
1519
|
-
overrides?: Maybe<
|
|
1478
|
+
overrides?: Maybe<IConfigurationOverridesInput>;
|
|
1520
1479
|
target?: Maybe<Scalars['Int']>;
|
|
1521
1480
|
donotNotifyError?: Maybe<Scalars['Boolean']>;
|
|
1522
1481
|
};
|
|
@@ -1539,14 +1498,14 @@ export declare type IMutationUpdateOrganizationArgs = {
|
|
|
1539
1498
|
};
|
|
1540
1499
|
export declare type IMutationUpdateOrganizationContextAddResourcesArgs = {
|
|
1541
1500
|
orgId?: Maybe<Scalars['String']>;
|
|
1542
|
-
resourcesToAdd: Array<Maybe<
|
|
1501
|
+
resourcesToAdd: Array<Maybe<IResourceCreationDataInput>>;
|
|
1543
1502
|
index?: Maybe<Scalars['Int']>;
|
|
1544
1503
|
};
|
|
1545
1504
|
export declare type IMutationUpdateOrganizationContextRemoveResourcesArgs = {
|
|
1546
1505
|
resourcesToRemove: Array<Scalars['URI']>;
|
|
1547
1506
|
};
|
|
1548
1507
|
export declare type IMutationUpdateOrganizationContextUpdateResourcesArgs = {
|
|
1549
|
-
resourcesToAdd: Array<Maybe<
|
|
1508
|
+
resourcesToAdd: Array<Maybe<IResourceCreationDataInput>>;
|
|
1550
1509
|
resourcesToRemove: Array<Maybe<Scalars['URI']>>;
|
|
1551
1510
|
index?: Maybe<Scalars['Int']>;
|
|
1552
1511
|
};
|
|
@@ -1561,7 +1520,7 @@ export declare type IMutationUpdateReactionToMessageArgs = {
|
|
|
1561
1520
|
export declare type IMutationUpdateRoleValueArgs = {
|
|
1562
1521
|
key: Scalars['String'];
|
|
1563
1522
|
value: Scalars['AnyObject'];
|
|
1564
|
-
overrides?: Maybe<
|
|
1523
|
+
overrides?: Maybe<IConfigurationOverridesInput>;
|
|
1565
1524
|
target?: Maybe<Scalars['Int']>;
|
|
1566
1525
|
donotNotifyError?: Maybe<Scalars['Boolean']>;
|
|
1567
1526
|
};
|
|
@@ -1602,6 +1561,7 @@ export declare type IOrgMember = {
|
|
|
1602
1561
|
_id?: Maybe<Scalars['String']>;
|
|
1603
1562
|
userId?: Maybe<Scalars['String']>;
|
|
1604
1563
|
role?: Maybe<IApplicationRoles>;
|
|
1564
|
+
isSelf?: Maybe<Scalars['Boolean']>;
|
|
1605
1565
|
inactive?: Maybe<Scalars['Boolean']>;
|
|
1606
1566
|
name?: Maybe<Scalars['String']>;
|
|
1607
1567
|
email?: Maybe<Scalars['String']>;
|
|
@@ -1635,18 +1595,18 @@ export declare type IOrgUserAccunt = INode & {
|
|
|
1635
1595
|
username?: Maybe<Scalars['String']>;
|
|
1636
1596
|
emailVerified?: Maybe<Scalars['Boolean']>;
|
|
1637
1597
|
};
|
|
1598
|
+
export declare type IOrgUserInput = {
|
|
1599
|
+
userId?: Maybe<Scalars['String']>;
|
|
1600
|
+
role?: Maybe<IApplicationRoles>;
|
|
1601
|
+
inactive?: Maybe<Scalars['Boolean']>;
|
|
1602
|
+
crossCheckEmail?: Maybe<Scalars['String']>;
|
|
1603
|
+
};
|
|
1638
1604
|
export declare enum IOrgUserRole {
|
|
1639
1605
|
BillingLeader = "BILLING_LEADER",
|
|
1640
1606
|
Member = "MEMBER",
|
|
1641
1607
|
Admin = "ADMIN",
|
|
1642
1608
|
Owner = "OWNER"
|
|
1643
1609
|
}
|
|
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
1610
|
/**
|
|
1651
1611
|
* OrganizationInvitationRole: The possible organization invitation roles.
|
|
1652
1612
|
*
|
|
@@ -1710,13 +1670,13 @@ export declare type IOrganization = {
|
|
|
1710
1670
|
stripeSubscriptionId?: Maybe<Scalars['String']>;
|
|
1711
1671
|
invitations?: Maybe<Array<Maybe<IOrganizationInvitation>>>;
|
|
1712
1672
|
};
|
|
1713
|
-
export declare type
|
|
1673
|
+
export declare type IOrganizationConfigValueInput = {
|
|
1714
1674
|
section?: Maybe<Scalars['String']>;
|
|
1715
|
-
overrides?: Maybe<
|
|
1675
|
+
overrides?: Maybe<IConfigurationOverridesInput>;
|
|
1716
1676
|
};
|
|
1717
1677
|
export declare type IOrganizationConfiguration = IIConfigurationModel & {
|
|
1718
1678
|
__typename?: 'OrganizationConfiguration';
|
|
1719
|
-
/**
|
|
1679
|
+
/** The ID. */
|
|
1720
1680
|
id?: Maybe<Scalars['ID']>;
|
|
1721
1681
|
resource: Scalars['URI'];
|
|
1722
1682
|
target?: Maybe<Scalars['Int']>;
|
|
@@ -1737,14 +1697,14 @@ export declare type IOrganizationCreateRequest = {
|
|
|
1737
1697
|
description?: Maybe<Scalars['String']>;
|
|
1738
1698
|
namespace?: Maybe<Scalars['String']>;
|
|
1739
1699
|
picture?: Maybe<Scalars['String']>;
|
|
1740
|
-
orgMembers?: Maybe<Array<Maybe<
|
|
1700
|
+
orgMembers?: Maybe<Array<Maybe<IOrgUserInput>>>;
|
|
1741
1701
|
billingLeaders?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
1742
1702
|
mainBillingLeaderId?: Maybe<Scalars['String']>;
|
|
1743
1703
|
periodStart?: Maybe<Scalars['DateTime']>;
|
|
1744
1704
|
periodStop?: Maybe<Scalars['DateTime']>;
|
|
1745
1705
|
stripeId?: Maybe<Scalars['String']>;
|
|
1746
1706
|
stripeSubscriptionId?: Maybe<Scalars['String']>;
|
|
1747
|
-
invitations?: Maybe<Array<Maybe<
|
|
1707
|
+
invitations?: Maybe<Array<Maybe<IOrganizationInvitationInput>>>;
|
|
1748
1708
|
};
|
|
1749
1709
|
export declare type IOrganizationData = {
|
|
1750
1710
|
__typename?: 'OrganizationData';
|
|
@@ -1762,6 +1722,28 @@ export declare type IOrganizationIdentifier = {
|
|
|
1762
1722
|
id?: Maybe<Scalars['String']>;
|
|
1763
1723
|
configPath?: Maybe<Scalars['URI']>;
|
|
1764
1724
|
};
|
|
1725
|
+
export declare type IOrganizationInput = {
|
|
1726
|
+
id?: Maybe<Scalars['ID']>;
|
|
1727
|
+
name: Scalars['String'];
|
|
1728
|
+
title?: Maybe<Scalars['String']>;
|
|
1729
|
+
description?: Maybe<Scalars['String']>;
|
|
1730
|
+
picture?: Maybe<Scalars['String']>;
|
|
1731
|
+
stripeId?: Maybe<Scalars['String']>;
|
|
1732
|
+
namespace?: Maybe<Scalars['String']>;
|
|
1733
|
+
orgUserCount?: Maybe<Scalars['Int']>;
|
|
1734
|
+
createdAt?: Maybe<Scalars['DateTime']>;
|
|
1735
|
+
updatedAt?: Maybe<Scalars['DateTime']>;
|
|
1736
|
+
orgMembers?: Maybe<Array<Maybe<IOrgUserInput>>>;
|
|
1737
|
+
periodStart?: Maybe<Scalars['DateTime']>;
|
|
1738
|
+
periodStop?: Maybe<Scalars['DateTime']>;
|
|
1739
|
+
billingLeaders?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
1740
|
+
billingEmail?: Maybe<Scalars['String']>;
|
|
1741
|
+
isBillingLeader?: Maybe<Scalars['Boolean']>;
|
|
1742
|
+
mainBilingLeaderId?: Maybe<Scalars['String']>;
|
|
1743
|
+
stripeSubscriptionId?: Maybe<Scalars['String']>;
|
|
1744
|
+
invitations?: Maybe<Array<Maybe<IOrganizationInvitationInput>>>;
|
|
1745
|
+
status?: Maybe<Scalars['String']>;
|
|
1746
|
+
};
|
|
1765
1747
|
export declare type IOrganizationInvitation = {
|
|
1766
1748
|
__typename?: 'OrganizationInvitation';
|
|
1767
1749
|
id: Scalars['ID'];
|
|
@@ -1785,14 +1767,7 @@ export declare type IOrganizationInvitationDecode = {
|
|
|
1785
1767
|
invitationId?: Maybe<Scalars['String']>;
|
|
1786
1768
|
invitedBy?: Maybe<Scalars['String']>;
|
|
1787
1769
|
};
|
|
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 = {
|
|
1770
|
+
export declare type IOrganizationInvitationInput = {
|
|
1796
1771
|
email?: Maybe<Scalars['String']>;
|
|
1797
1772
|
teamId?: Maybe<Scalars['String']>;
|
|
1798
1773
|
role?: Maybe<IApplicationRoles>;
|
|
@@ -1805,6 +1780,13 @@ export declare type IOrganizationInvitation_Input = {
|
|
|
1805
1780
|
acceptedAt?: Maybe<Scalars['DateTime']>;
|
|
1806
1781
|
tokenExpiration?: Maybe<Scalars['DateTime']>;
|
|
1807
1782
|
};
|
|
1783
|
+
export declare type IOrganizationInvitationRequest = {
|
|
1784
|
+
teamId?: Maybe<Scalars['String']>;
|
|
1785
|
+
emails?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
1786
|
+
invitedBy?: Maybe<Scalars['String']>;
|
|
1787
|
+
orgName?: Maybe<Scalars['String']>;
|
|
1788
|
+
role?: Maybe<Scalars['String']>;
|
|
1789
|
+
};
|
|
1808
1790
|
export declare type IOrganizationMember = {
|
|
1809
1791
|
__typename?: 'OrganizationMember';
|
|
1810
1792
|
id?: Maybe<Scalars['String']>;
|
|
@@ -1830,7 +1812,7 @@ export declare type IOrganizationRemoveRequest = {
|
|
|
1830
1812
|
};
|
|
1831
1813
|
export declare type IOrganizationResourceConfiguration = IIConfigurationModel & {
|
|
1832
1814
|
__typename?: 'OrganizationResourceConfiguration';
|
|
1833
|
-
/**
|
|
1815
|
+
/** The ID. */
|
|
1834
1816
|
id?: Maybe<Scalars['ID']>;
|
|
1835
1817
|
resource: Scalars['URI'];
|
|
1836
1818
|
target?: Maybe<Scalars['Int']>;
|
|
@@ -1890,29 +1872,7 @@ export declare type IOrganizationSettings = IISettingsSubject & {
|
|
|
1890
1872
|
export declare type IOrganizationUpdateRequest = {
|
|
1891
1873
|
id?: Maybe<Scalars['String']>;
|
|
1892
1874
|
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']>;
|
|
1875
|
+
payload?: Maybe<IOrganizationInput>;
|
|
1916
1876
|
};
|
|
1917
1877
|
export declare type IOverrides = {
|
|
1918
1878
|
__typename?: 'Overrides';
|
|
@@ -1965,7 +1925,7 @@ export declare type IPhoneNumberInput = {
|
|
|
1965
1925
|
};
|
|
1966
1926
|
export declare type IPolicySubject = {
|
|
1967
1927
|
__typename?: 'PolicySubject';
|
|
1968
|
-
/**
|
|
1928
|
+
/** The URL to the policies. */
|
|
1969
1929
|
policyURL: Scalars['URI'];
|
|
1970
1930
|
/** The time when this was created. */
|
|
1971
1931
|
createdAt?: Maybe<Scalars['String']>;
|
|
@@ -2203,8 +2163,8 @@ export declare type IProfile = {
|
|
|
2203
2163
|
location?: Maybe<Scalars['String']>;
|
|
2204
2164
|
work?: Maybe<Scalars['String']>;
|
|
2205
2165
|
languages?: Maybe<Array<ILanguage>>;
|
|
2206
|
-
createdAt: Scalars['
|
|
2207
|
-
updatedAt: Scalars['
|
|
2166
|
+
createdAt: Scalars['DateTime'];
|
|
2167
|
+
updatedAt: Scalars['DateTime'];
|
|
2208
2168
|
};
|
|
2209
2169
|
export declare type IProfileInput = {
|
|
2210
2170
|
about?: Maybe<Scalars['String']>;
|
|
@@ -2254,18 +2214,16 @@ export declare type IQuery = {
|
|
|
2254
2214
|
defaultViewerSettingsSubject: IDefaultSettings;
|
|
2255
2215
|
directChannel?: Maybe<IChannel>;
|
|
2256
2216
|
dummy?: Maybe<Scalars['Int']>;
|
|
2257
|
-
/**
|
|
2217
|
+
/** Fetches a User from Auth0 Service */
|
|
2258
2218
|
fetchAuth0User?: Maybe<IUserProfile>;
|
|
2259
2219
|
fetchUserAuthorizedDevices?: Maybe<Array<Maybe<IUserDevice>>>;
|
|
2260
2220
|
fileInfo: IFileInfo;
|
|
2261
2221
|
filesInfo: IFilesInfo;
|
|
2262
|
-
filterIntegrationConfiguration?: Maybe<Array<Maybe<IIntegrationConfiguration>>>;
|
|
2263
2222
|
getAccounts?: Maybe<Array<Maybe<IUserAccount>>>;
|
|
2264
2223
|
getAllCountries?: Maybe<Array<Maybe<ICountry>>>;
|
|
2265
2224
|
getAllDeviceToken?: Maybe<IDeviceTokens>;
|
|
2266
2225
|
getAllDeviceTokenById?: Maybe<Array<Maybe<IUserAccount>>>;
|
|
2267
2226
|
getAllGovernmentId?: Maybe<IUserAccounts>;
|
|
2268
|
-
getAllIntegrationConfigurations?: Maybe<IIntegrationConfigurationsOutput>;
|
|
2269
2227
|
getConfiguration?: Maybe<Array<Maybe<IConfiguration>>>;
|
|
2270
2228
|
getConfigurationData?: Maybe<IConfigurationData>;
|
|
2271
2229
|
getConfigurationPolicies?: Maybe<Array<Maybe<IConfigurationPolicy>>>;
|
|
@@ -2273,7 +2231,6 @@ export declare type IQuery = {
|
|
|
2273
2231
|
getDeviceToken?: Maybe<IDeviceToken>;
|
|
2274
2232
|
getEnvironment?: Maybe<IEnvironment>;
|
|
2275
2233
|
getExtendedUserAccount: IUserAccount;
|
|
2276
|
-
getIntegrationConfiguration?: Maybe<IIntegrationConfiguration>;
|
|
2277
2234
|
getManageableOrganizations?: Maybe<Array<Maybe<IOrganization>>>;
|
|
2278
2235
|
getOrgInvitationMembers?: Maybe<IOrgInvitationMembers>;
|
|
2279
2236
|
getOrgTeamInvitations?: Maybe<Array<Maybe<IOrganizationInvitation>>>;
|
|
@@ -2400,9 +2357,6 @@ export declare type IQueryFilesInfoArgs = {
|
|
|
2400
2357
|
skip?: Maybe<Scalars['Int']>;
|
|
2401
2358
|
sort?: Maybe<ISort>;
|
|
2402
2359
|
};
|
|
2403
|
-
export declare type IQueryFilterIntegrationConfigurationArgs = {
|
|
2404
|
-
filter?: Maybe<IIntegrationConfigurationFilterInput>;
|
|
2405
|
-
};
|
|
2406
2360
|
export declare type IQueryGetAccountsArgs = {
|
|
2407
2361
|
where?: Maybe<IUserAccountWhere>;
|
|
2408
2362
|
};
|
|
@@ -2412,12 +2366,6 @@ export declare type IQueryGetAllCountriesArgs = {
|
|
|
2412
2366
|
export declare type IQueryGetAllDeviceTokenByIdArgs = {
|
|
2413
2367
|
id: Array<Scalars['String']>;
|
|
2414
2368
|
};
|
|
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
2369
|
export declare type IQueryGetConfigurationArgs = {
|
|
2422
2370
|
input?: Maybe<Array<Maybe<IConfigurationInput>>>;
|
|
2423
2371
|
};
|
|
@@ -2427,9 +2375,6 @@ export declare type IQueryGetConfigurationPoliciesArgs = {
|
|
|
2427
2375
|
export declare type IQueryGetExtendedUserAccountArgs = {
|
|
2428
2376
|
accountId?: Maybe<Scalars['String']>;
|
|
2429
2377
|
};
|
|
2430
|
-
export declare type IQueryGetIntegrationConfigurationArgs = {
|
|
2431
|
-
id: Scalars['String'];
|
|
2432
|
-
};
|
|
2433
2378
|
export declare type IQueryGetOrgInvitationMembersArgs = {
|
|
2434
2379
|
offset?: Maybe<Scalars['Int']>;
|
|
2435
2380
|
limit?: Maybe<Scalars['Int']>;
|
|
@@ -2438,7 +2383,7 @@ export declare type IQueryGetOrgTeamInvitationsArgs = {
|
|
|
2438
2383
|
teamId?: Maybe<Scalars['String']>;
|
|
2439
2384
|
};
|
|
2440
2385
|
export declare type IQueryGetOrganizationConfigValueArgs = {
|
|
2441
|
-
value?: Maybe<
|
|
2386
|
+
value?: Maybe<IOrganizationConfigValueInput>;
|
|
2442
2387
|
};
|
|
2443
2388
|
export declare type IQueryGetOrganizationDetailArgs = {
|
|
2444
2389
|
where: IOrgDetailWhere;
|
|
@@ -2563,7 +2508,7 @@ export declare type IResourceAccessRole = {
|
|
|
2563
2508
|
accessRoles?: Maybe<Array<Maybe<IAccessRole>>>;
|
|
2564
2509
|
resourceUserRoles?: Maybe<Array<Maybe<IResourceUser>>>;
|
|
2565
2510
|
};
|
|
2566
|
-
export declare type
|
|
2511
|
+
export declare type IResourceCreationDataInput = {
|
|
2567
2512
|
uri: Scalars['URI'];
|
|
2568
2513
|
name?: Maybe<Scalars['String']>;
|
|
2569
2514
|
};
|
|
@@ -2718,7 +2663,7 @@ export declare type ITeamCreateRequest = {
|
|
|
2718
2663
|
orgName: Scalars['String'];
|
|
2719
2664
|
tags?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
2720
2665
|
emails?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
2721
|
-
teamMembers?: Maybe<Array<Maybe<
|
|
2666
|
+
teamMembers?: Maybe<Array<Maybe<ITeamMemberInput>>>;
|
|
2722
2667
|
parentTeam?: Maybe<Scalars['String']>;
|
|
2723
2668
|
description?: Maybe<Scalars['String']>;
|
|
2724
2669
|
};
|
|
@@ -2742,7 +2687,7 @@ export declare type ITeamMember = {
|
|
|
2742
2687
|
role?: Maybe<IApplicationRoles>;
|
|
2743
2688
|
status?: Maybe<Scalars['String']>;
|
|
2744
2689
|
};
|
|
2745
|
-
export declare type
|
|
2690
|
+
export declare type ITeamMemberInput = {
|
|
2746
2691
|
id?: Maybe<Scalars['String']>;
|
|
2747
2692
|
email?: Maybe<Scalars['String']>;
|
|
2748
2693
|
userId?: Maybe<Scalars['String']>;
|
|
@@ -2763,7 +2708,7 @@ export declare type ITeamType = {
|
|
|
2763
2708
|
};
|
|
2764
2709
|
export declare type ITeamUpdateRequest = {
|
|
2765
2710
|
id: Scalars['String'];
|
|
2766
|
-
payload?: Maybe<
|
|
2711
|
+
payload?: Maybe<IAccountTeamInput>;
|
|
2767
2712
|
requestedUserId?: Maybe<Scalars['String']>;
|
|
2768
2713
|
};
|
|
2769
2714
|
/** Address State Create Input */
|
|
@@ -2863,6 +2808,13 @@ export declare type IUserAccountCreatedEvent = {
|
|
|
2863
2808
|
createdUser?: Maybe<IUserAccountCreatedDetailedEvent>;
|
|
2864
2809
|
sourceUser?: Maybe<IUserProfile>;
|
|
2865
2810
|
};
|
|
2811
|
+
export declare type IUserAccountInput = {
|
|
2812
|
+
id?: Maybe<Scalars['String']>;
|
|
2813
|
+
email?: Maybe<Scalars['String']>;
|
|
2814
|
+
alias?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
2815
|
+
username?: Maybe<Scalars['String']>;
|
|
2816
|
+
tokens?: Maybe<Array<Maybe<IUserTokenInput>>>;
|
|
2817
|
+
};
|
|
2866
2818
|
export declare type IUserAccountRemoveRequest = {
|
|
2867
2819
|
id?: Maybe<Scalars['String']>;
|
|
2868
2820
|
};
|
|
@@ -2876,7 +2828,7 @@ export declare type IUserAccountRemovedEvent = {
|
|
|
2876
2828
|
};
|
|
2877
2829
|
export declare type IUserAccountUpdateRequest = {
|
|
2878
2830
|
id: Scalars['String'];
|
|
2879
|
-
payload?: Maybe<
|
|
2831
|
+
payload?: Maybe<IUserAccountInput>;
|
|
2880
2832
|
};
|
|
2881
2833
|
export declare type IUserAccountWhere = {
|
|
2882
2834
|
id?: Maybe<Scalars['String']>;
|
|
@@ -2884,13 +2836,6 @@ export declare type IUserAccountWhere = {
|
|
|
2884
2836
|
alias?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
2885
2837
|
username?: Maybe<Scalars['String']>;
|
|
2886
2838
|
};
|
|
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
2839
|
export declare type IUserAccounts = {
|
|
2895
2840
|
__typename?: 'UserAccounts';
|
|
2896
2841
|
data?: Maybe<Array<Maybe<IUserAccount>>>;
|
|
@@ -2912,7 +2857,7 @@ export declare type IUserAuth0SessionDeviceInfo = {
|
|
|
2912
2857
|
os?: Maybe<Scalars['String']>;
|
|
2913
2858
|
deviceName?: Maybe<Scalars['String']>;
|
|
2914
2859
|
browserName?: Maybe<Scalars['String']>;
|
|
2915
|
-
|
|
2860
|
+
platform: IDeviceInfoPlatform;
|
|
2916
2861
|
};
|
|
2917
2862
|
export declare type IUserAuth0SessionInfo = {
|
|
2918
2863
|
__typename?: 'UserAuth0SessionInfo';
|
|
@@ -2936,7 +2881,7 @@ export declare type IUserAuth0UpdateFields = {
|
|
|
2936
2881
|
};
|
|
2937
2882
|
export declare type IUserConfiguration = IIConfigurationModel & {
|
|
2938
2883
|
__typename?: 'UserConfiguration';
|
|
2939
|
-
/**
|
|
2884
|
+
/** The ID. */
|
|
2940
2885
|
id?: Maybe<Scalars['ID']>;
|
|
2941
2886
|
/** The URL to the user's settings. */
|
|
2942
2887
|
resource: Scalars['URI'];
|
|
@@ -2982,7 +2927,7 @@ export declare type IUserOrg = {
|
|
|
2982
2927
|
role?: Maybe<IApplicationRoles>;
|
|
2983
2928
|
inactive?: Maybe<Scalars['Boolean']>;
|
|
2984
2929
|
};
|
|
2985
|
-
export declare type
|
|
2930
|
+
export declare type IUserOrgInput = {
|
|
2986
2931
|
userId: Scalars['String'];
|
|
2987
2932
|
role?: Maybe<IApplicationRoles>;
|
|
2988
2933
|
inactive?: Maybe<Scalars['Boolean']>;
|
|
@@ -3664,7 +3609,7 @@ export declare type IResolversTypes = {
|
|
|
3664
3609
|
AccountAddressInput: IAccountAddressInput;
|
|
3665
3610
|
ID: ResolverTypeWrapper<Scalars['ID']>;
|
|
3666
3611
|
AccountTeam: ResolverTypeWrapper<IAccountTeam>;
|
|
3667
|
-
|
|
3612
|
+
AccountTeamInput: IAccountTeamInput;
|
|
3668
3613
|
AdminIdeSettings: ResolverTypeWrapper<IAdminIdeSettings>;
|
|
3669
3614
|
Int: ResolverTypeWrapper<Scalars['Int']>;
|
|
3670
3615
|
AnyObject: ResolverTypeWrapper<Scalars['AnyObject']>;
|
|
@@ -3677,7 +3622,7 @@ export declare type IResolversTypes = {
|
|
|
3677
3622
|
Auth0IdentityProfileData: ResolverTypeWrapper<IAuth0IdentityProfileData>;
|
|
3678
3623
|
AuthTokens: ResolverTypeWrapper<IAuthTokens>;
|
|
3679
3624
|
AuthUser: ResolverTypeWrapper<IAuthUser>;
|
|
3680
|
-
|
|
3625
|
+
AuthUserInput: IAuthUserInput;
|
|
3681
3626
|
BaseServiceCommands: IBaseServiceCommands;
|
|
3682
3627
|
CardImage: ResolverTypeWrapper<ICardImage>;
|
|
3683
3628
|
Channel: ResolverTypeWrapper<IChannel>;
|
|
@@ -3697,12 +3642,13 @@ export declare type IResolversTypes = {
|
|
|
3697
3642
|
ConfigCollectionName: IConfigCollectionName;
|
|
3698
3643
|
ConfigFragmentName: IConfigFragmentName;
|
|
3699
3644
|
Configuration: IResolversTypes['DefaultConfiguration'] | IResolversTypes['MachineConfiguration'] | IResolversTypes['UserConfiguration'] | IResolversTypes['OrganizationConfiguration'] | IResolversTypes['OrganizationResourceConfiguration'];
|
|
3645
|
+
ConfigurationContributionNames: IConfigurationContributionNames;
|
|
3700
3646
|
ConfigurationData: ResolverTypeWrapper<IConfigurationData>;
|
|
3701
3647
|
ConfigurationExtensionInfo: ResolverTypeWrapper<IConfigurationExtensionInfo>;
|
|
3702
3648
|
ConfigurationInput: IConfigurationInput;
|
|
3703
3649
|
ConfigurationModel: ResolverTypeWrapper<IConfigurationModel>;
|
|
3704
3650
|
ConfigurationOverrides: ResolverTypeWrapper<IConfigurationOverrides>;
|
|
3705
|
-
|
|
3651
|
+
ConfigurationOverridesInput: IConfigurationOverridesInput;
|
|
3706
3652
|
ConfigurationPolicy: IResolversTypes['DefaultPolicy'] | IResolversTypes['OrganizationPolicy'] | IResolversTypes['ResourcePolicy'] | IResolversTypes['ApplicationPolicy'];
|
|
3707
3653
|
ConfigurationScope: IConfigurationScope;
|
|
3708
3654
|
ConfigurationTarget: IConfigurationTarget;
|
|
@@ -3726,6 +3672,7 @@ export declare type IResolversTypes = {
|
|
|
3726
3672
|
DefaultRole: ResolverTypeWrapper<IDefaultRole>;
|
|
3727
3673
|
DefaultSettings: ResolverTypeWrapper<IDefaultSettings>;
|
|
3728
3674
|
DeviceInfoInput: IDeviceInfoInput;
|
|
3675
|
+
DeviceInfoPlatform: IDeviceInfoPlatform;
|
|
3729
3676
|
DeviceToken: ResolverTypeWrapper<IDeviceToken>;
|
|
3730
3677
|
DeviceTokens: ResolverTypeWrapper<IDeviceTokens>;
|
|
3731
3678
|
EditPresentationTypes: IEditPresentationTypes;
|
|
@@ -3771,12 +3718,6 @@ export declare type IResolversTypes = {
|
|
|
3771
3718
|
IUser: IResolversTypes['AuthUser'] | IResolversTypes['MessengerUser'];
|
|
3772
3719
|
IUserMetadata: IResolversTypes['UserMetadata'];
|
|
3773
3720
|
ImageDimensionsConfigInput: IImageDimensionsConfigInput;
|
|
3774
|
-
IntegraitonConfigurationId: ResolverTypeWrapper<IIntegraitonConfigurationId>;
|
|
3775
|
-
IntegrationConfiguration: ResolverTypeWrapper<IIntegrationConfiguration>;
|
|
3776
|
-
IntegrationConfigurationCreateOrUpdateInput: IIntegrationConfigurationCreateOrUpdateInput;
|
|
3777
|
-
IntegrationConfigurationFilterInput: IIntegrationConfigurationFilterInput;
|
|
3778
|
-
IntegrationConfigurationInput: IIntegrationConfigurationInput;
|
|
3779
|
-
IntegrationConfigurationsOutput: ResolverTypeWrapper<IIntegrationConfigurationsOutput>;
|
|
3780
3721
|
InviteMember: ResolverTypeWrapper<IInviteMember>;
|
|
3781
3722
|
InviteStatus: IInviteStatus;
|
|
3782
3723
|
JSON: ResolverTypeWrapper<Scalars['JSON']>;
|
|
@@ -3809,11 +3750,11 @@ export declare type IResolversTypes = {
|
|
|
3809
3750
|
OrgType: IOrgType;
|
|
3810
3751
|
OrgUser: ResolverTypeWrapper<IOrgUser>;
|
|
3811
3752
|
OrgUserAccunt: ResolverTypeWrapper<IOrgUserAccunt>;
|
|
3753
|
+
OrgUserInput: IOrgUserInput;
|
|
3812
3754
|
OrgUserRole: IOrgUserRole;
|
|
3813
|
-
OrgUser_Input: IOrgUser_Input;
|
|
3814
3755
|
OrgainizationInvitationRole: IOrgainizationInvitationRole;
|
|
3815
3756
|
Organization: ResolverTypeWrapper<IOrganization>;
|
|
3816
|
-
|
|
3757
|
+
OrganizationConfigValueInput: IOrganizationConfigValueInput;
|
|
3817
3758
|
OrganizationConfiguration: ResolverTypeWrapper<IOrganizationConfiguration>;
|
|
3818
3759
|
OrganizationContextPubSubEvents: IOrganizationContextPubSubEvents;
|
|
3819
3760
|
OrganizationCreateRequest: IOrganizationCreateRequest;
|
|
@@ -3821,10 +3762,11 @@ export declare type IResolversTypes = {
|
|
|
3821
3762
|
resources: Array<Maybe<IResolversTypes['ResourceData']>>;
|
|
3822
3763
|
}>;
|
|
3823
3764
|
OrganizationIdentifier: ResolverTypeWrapper<IOrganizationIdentifier>;
|
|
3765
|
+
OrganizationInput: IOrganizationInput;
|
|
3824
3766
|
OrganizationInvitation: ResolverTypeWrapper<IOrganizationInvitation>;
|
|
3825
3767
|
OrganizationInvitationDecode: ResolverTypeWrapper<IOrganizationInvitationDecode>;
|
|
3768
|
+
OrganizationInvitationInput: IOrganizationInvitationInput;
|
|
3826
3769
|
OrganizationInvitationRequest: IOrganizationInvitationRequest;
|
|
3827
|
-
OrganizationInvitation_Input: IOrganizationInvitation_Input;
|
|
3828
3770
|
OrganizationMember: ResolverTypeWrapper<IOrganizationMember>;
|
|
3829
3771
|
OrganizationNotificationValues: IOrganizationNotificationValues;
|
|
3830
3772
|
OrganizationPolicy: ResolverTypeWrapper<IOrganizationPolicy>;
|
|
@@ -3835,7 +3777,6 @@ export declare type IResolversTypes = {
|
|
|
3835
3777
|
OrganizationRole: ResolverTypeWrapper<IOrganizationRole>;
|
|
3836
3778
|
OrganizationSettings: ResolverTypeWrapper<IOrganizationSettings>;
|
|
3837
3779
|
OrganizationUpdateRequest: IOrganizationUpdateRequest;
|
|
3838
|
-
Organization_Input: IOrganization_Input;
|
|
3839
3780
|
Overrides: ResolverTypeWrapper<IOverrides>;
|
|
3840
3781
|
PermissionAction: IPermissionAction;
|
|
3841
3782
|
PermissionResource: IPermissionResource;
|
|
@@ -3878,7 +3819,7 @@ export declare type IResolversTypes = {
|
|
|
3878
3819
|
ResourceAccessRole: ResolverTypeWrapper<Omit<IResourceAccessRole, 'accessRoles'> & {
|
|
3879
3820
|
accessRoles?: Maybe<Array<Maybe<IResolversTypes['AccessRole']>>>;
|
|
3880
3821
|
}>;
|
|
3881
|
-
|
|
3822
|
+
ResourceCreationDataInput: IResourceCreationDataInput;
|
|
3882
3823
|
ResourceData: IResolversTypes['OrganizationResourceData'] | IResolversTypes['ExternalResourceData'];
|
|
3883
3824
|
ResourcePolicy: ResolverTypeWrapper<IResourcePolicy>;
|
|
3884
3825
|
ResourceRole: ResolverTypeWrapper<IResourceRole>;
|
|
@@ -3905,7 +3846,7 @@ export declare type IResolversTypes = {
|
|
|
3905
3846
|
TeamCreateRequest: ITeamCreateRequest;
|
|
3906
3847
|
TeamCreationRequest: ITeamCreationRequest;
|
|
3907
3848
|
TeamMember: ResolverTypeWrapper<ITeamMember>;
|
|
3908
|
-
|
|
3849
|
+
TeamMemberInput: ITeamMemberInput;
|
|
3909
3850
|
TeamRemoveRequest: ITeamRemoveRequest;
|
|
3910
3851
|
TeamType: ITeamType;
|
|
3911
3852
|
TeamUpdateRequest: ITeamUpdateRequest;
|
|
@@ -3921,11 +3862,11 @@ export declare type IResolversTypes = {
|
|
|
3921
3862
|
UserAccountCreateRequest: IUserAccountCreateRequest;
|
|
3922
3863
|
UserAccountCreatedDetailedEvent: ResolverTypeWrapper<IUserAccountCreatedDetailedEvent>;
|
|
3923
3864
|
UserAccountCreatedEvent: ResolverTypeWrapper<IUserAccountCreatedEvent>;
|
|
3865
|
+
UserAccountInput: IUserAccountInput;
|
|
3924
3866
|
UserAccountRemoveRequest: IUserAccountRemoveRequest;
|
|
3925
3867
|
UserAccountRemovedEvent: ResolverTypeWrapper<IUserAccountRemovedEvent>;
|
|
3926
3868
|
UserAccountUpdateRequest: IUserAccountUpdateRequest;
|
|
3927
3869
|
UserAccountWhere: IUserAccountWhere;
|
|
3928
|
-
UserAccount_Input: IUserAccount_Input;
|
|
3929
3870
|
UserAccounts: ResolverTypeWrapper<IUserAccounts>;
|
|
3930
3871
|
UserAuth0Info: ResolverTypeWrapper<IUserAuth0Info>;
|
|
3931
3872
|
UserAuth0Integrations: ResolverTypeWrapper<IUserAuth0Integrations>;
|
|
@@ -3937,7 +3878,7 @@ export declare type IResolversTypes = {
|
|
|
3937
3878
|
UserMetadata: ResolverTypeWrapper<IUserMetadata>;
|
|
3938
3879
|
UserOrderBy: IUserOrderBy;
|
|
3939
3880
|
UserOrg: ResolverTypeWrapper<IUserOrg>;
|
|
3940
|
-
|
|
3881
|
+
UserOrgInput: IUserOrgInput;
|
|
3941
3882
|
UserPasswordResetInput: IUserPasswordResetInput;
|
|
3942
3883
|
UserPreviousValues: ResolverTypeWrapper<IUserPreviousValues>;
|
|
3943
3884
|
UserProfile: ResolverTypeWrapper<IUserProfile>;
|
|
@@ -3958,7 +3899,7 @@ export declare type IResolversParentTypes = {
|
|
|
3958
3899
|
AccountAddressInput: IAccountAddressInput;
|
|
3959
3900
|
ID: Scalars['ID'];
|
|
3960
3901
|
AccountTeam: IAccountTeam;
|
|
3961
|
-
|
|
3902
|
+
AccountTeamInput: IAccountTeamInput;
|
|
3962
3903
|
AdminIdeSettings: IAdminIdeSettings;
|
|
3963
3904
|
Int: Scalars['Int'];
|
|
3964
3905
|
AnyObject: Scalars['AnyObject'];
|
|
@@ -3970,7 +3911,7 @@ export declare type IResolversParentTypes = {
|
|
|
3970
3911
|
Auth0IdentityProfileData: IAuth0IdentityProfileData;
|
|
3971
3912
|
AuthTokens: IAuthTokens;
|
|
3972
3913
|
AuthUser: IAuthUser;
|
|
3973
|
-
|
|
3914
|
+
AuthUserInput: IAuthUserInput;
|
|
3974
3915
|
CardImage: ICardImage;
|
|
3975
3916
|
Channel: IChannel;
|
|
3976
3917
|
ChannelFilterInput: IChannelFilterInput;
|
|
@@ -3987,7 +3928,7 @@ export declare type IResolversParentTypes = {
|
|
|
3987
3928
|
ConfigurationInput: IConfigurationInput;
|
|
3988
3929
|
ConfigurationModel: IConfigurationModel;
|
|
3989
3930
|
ConfigurationOverrides: IConfigurationOverrides;
|
|
3990
|
-
|
|
3931
|
+
ConfigurationOverridesInput: IConfigurationOverridesInput;
|
|
3991
3932
|
ConfigurationPolicy: IResolversParentTypes['DefaultPolicy'] | IResolversParentTypes['OrganizationPolicy'] | IResolversParentTypes['ResourcePolicy'] | IResolversParentTypes['ApplicationPolicy'];
|
|
3992
3933
|
ConfigurationUpdateEvent: IConfigurationUpdateEvent;
|
|
3993
3934
|
Contact: IContact;
|
|
@@ -4047,12 +3988,6 @@ export declare type IResolversParentTypes = {
|
|
|
4047
3988
|
IUser: IResolversParentTypes['AuthUser'] | IResolversParentTypes['MessengerUser'];
|
|
4048
3989
|
IUserMetadata: IResolversParentTypes['UserMetadata'];
|
|
4049
3990
|
ImageDimensionsConfigInput: IImageDimensionsConfigInput;
|
|
4050
|
-
IntegraitonConfigurationId: IIntegraitonConfigurationId;
|
|
4051
|
-
IntegrationConfiguration: IIntegrationConfiguration;
|
|
4052
|
-
IntegrationConfigurationCreateOrUpdateInput: IIntegrationConfigurationCreateOrUpdateInput;
|
|
4053
|
-
IntegrationConfigurationFilterInput: IIntegrationConfigurationFilterInput;
|
|
4054
|
-
IntegrationConfigurationInput: IIntegrationConfigurationInput;
|
|
4055
|
-
IntegrationConfigurationsOutput: IIntegrationConfigurationsOutput;
|
|
4056
3991
|
InviteMember: IInviteMember;
|
|
4057
3992
|
JSON: Scalars['JSON'];
|
|
4058
3993
|
JSONObject: Scalars['JSONObject'];
|
|
@@ -4078,19 +4013,20 @@ export declare type IResolversParentTypes = {
|
|
|
4078
4013
|
OrgType: IOrgType;
|
|
4079
4014
|
OrgUser: IOrgUser;
|
|
4080
4015
|
OrgUserAccunt: IOrgUserAccunt;
|
|
4081
|
-
|
|
4016
|
+
OrgUserInput: IOrgUserInput;
|
|
4082
4017
|
Organization: IOrganization;
|
|
4083
|
-
|
|
4018
|
+
OrganizationConfigValueInput: IOrganizationConfigValueInput;
|
|
4084
4019
|
OrganizationConfiguration: IOrganizationConfiguration;
|
|
4085
4020
|
OrganizationCreateRequest: IOrganizationCreateRequest;
|
|
4086
4021
|
OrganizationData: Omit<IOrganizationData, 'resources'> & {
|
|
4087
4022
|
resources: Array<Maybe<IResolversParentTypes['ResourceData']>>;
|
|
4088
4023
|
};
|
|
4089
4024
|
OrganizationIdentifier: IOrganizationIdentifier;
|
|
4025
|
+
OrganizationInput: IOrganizationInput;
|
|
4090
4026
|
OrganizationInvitation: IOrganizationInvitation;
|
|
4091
4027
|
OrganizationInvitationDecode: IOrganizationInvitationDecode;
|
|
4028
|
+
OrganizationInvitationInput: IOrganizationInvitationInput;
|
|
4092
4029
|
OrganizationInvitationRequest: IOrganizationInvitationRequest;
|
|
4093
|
-
OrganizationInvitation_Input: IOrganizationInvitation_Input;
|
|
4094
4030
|
OrganizationMember: IOrganizationMember;
|
|
4095
4031
|
OrganizationNotificationValues: IOrganizationNotificationValues;
|
|
4096
4032
|
OrganizationPolicy: IOrganizationPolicy;
|
|
@@ -4101,7 +4037,6 @@ export declare type IResolversParentTypes = {
|
|
|
4101
4037
|
OrganizationRole: IOrganizationRole;
|
|
4102
4038
|
OrganizationSettings: IOrganizationSettings;
|
|
4103
4039
|
OrganizationUpdateRequest: IOrganizationUpdateRequest;
|
|
4104
|
-
Organization_Input: IOrganization_Input;
|
|
4105
4040
|
Overrides: IOverrides;
|
|
4106
4041
|
PermissionSubject: IPermissionSubject;
|
|
4107
4042
|
PhoneNumber: IPhoneNumber;
|
|
@@ -4137,7 +4072,7 @@ export declare type IResolversParentTypes = {
|
|
|
4137
4072
|
ResourceAccessRole: Omit<IResourceAccessRole, 'accessRoles'> & {
|
|
4138
4073
|
accessRoles?: Maybe<Array<Maybe<IResolversParentTypes['AccessRole']>>>;
|
|
4139
4074
|
};
|
|
4140
|
-
|
|
4075
|
+
ResourceCreationDataInput: IResourceCreationDataInput;
|
|
4141
4076
|
ResourceData: IResolversParentTypes['OrganizationResourceData'] | IResolversParentTypes['ExternalResourceData'];
|
|
4142
4077
|
ResourcePolicy: IResourcePolicy;
|
|
4143
4078
|
ResourceRole: IResourceRole;
|
|
@@ -4159,7 +4094,7 @@ export declare type IResolversParentTypes = {
|
|
|
4159
4094
|
TeamCreateRequest: ITeamCreateRequest;
|
|
4160
4095
|
TeamCreationRequest: ITeamCreationRequest;
|
|
4161
4096
|
TeamMember: ITeamMember;
|
|
4162
|
-
|
|
4097
|
+
TeamMemberInput: ITeamMemberInput;
|
|
4163
4098
|
TeamRemoveRequest: ITeamRemoveRequest;
|
|
4164
4099
|
TeamType: ITeamType;
|
|
4165
4100
|
TeamUpdateRequest: ITeamUpdateRequest;
|
|
@@ -4174,11 +4109,11 @@ export declare type IResolversParentTypes = {
|
|
|
4174
4109
|
UserAccountCreateRequest: IUserAccountCreateRequest;
|
|
4175
4110
|
UserAccountCreatedDetailedEvent: IUserAccountCreatedDetailedEvent;
|
|
4176
4111
|
UserAccountCreatedEvent: IUserAccountCreatedEvent;
|
|
4112
|
+
UserAccountInput: IUserAccountInput;
|
|
4177
4113
|
UserAccountRemoveRequest: IUserAccountRemoveRequest;
|
|
4178
4114
|
UserAccountRemovedEvent: IUserAccountRemovedEvent;
|
|
4179
4115
|
UserAccountUpdateRequest: IUserAccountUpdateRequest;
|
|
4180
4116
|
UserAccountWhere: IUserAccountWhere;
|
|
4181
|
-
UserAccount_Input: IUserAccount_Input;
|
|
4182
4117
|
UserAccounts: IUserAccounts;
|
|
4183
4118
|
UserAuth0Info: IUserAuth0Info;
|
|
4184
4119
|
UserAuth0Integrations: IUserAuth0Integrations;
|
|
@@ -4189,7 +4124,7 @@ export declare type IResolversParentTypes = {
|
|
|
4189
4124
|
UserDevice: IUserDevice;
|
|
4190
4125
|
UserMetadata: IUserMetadata;
|
|
4191
4126
|
UserOrg: IUserOrg;
|
|
4192
|
-
|
|
4127
|
+
UserOrgInput: IUserOrgInput;
|
|
4193
4128
|
UserPasswordResetInput: IUserPasswordResetInput;
|
|
4194
4129
|
UserPreviousValues: IUserPreviousValues;
|
|
4195
4130
|
UserProfile: IUserProfile;
|
|
@@ -4748,25 +4683,6 @@ export declare type IIUserMetadataResolvers<ContextType = any, ParentType extend
|
|
|
4748
4683
|
dob?: Resolver<Maybe<IResolversTypes['Date']>, ParentType, ContextType>;
|
|
4749
4684
|
zip_code?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
4750
4685
|
};
|
|
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
4686
|
export declare type IInviteMemberResolvers<ContextType = any, ParentType extends IResolversParentTypes['InviteMember'] = IResolversParentTypes['InviteMember']> = {
|
|
4771
4687
|
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
4772
4688
|
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
@@ -4787,8 +4703,8 @@ export declare type ILanguageResolvers<ContextType = any, ParentType extends IRe
|
|
|
4787
4703
|
code?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
4788
4704
|
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
4789
4705
|
nativeName?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
4790
|
-
createdAt?: Resolver<IResolversTypes['
|
|
4791
|
-
updatedAt?: Resolver<Maybe<IResolversTypes['
|
|
4706
|
+
createdAt?: Resolver<IResolversTypes['DateTime'], ParentType, ContextType>;
|
|
4707
|
+
updatedAt?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
|
|
4792
4708
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
4793
4709
|
};
|
|
4794
4710
|
export declare type ILanguagesResolvers<ContextType = any, ParentType extends IResolversParentTypes['Languages'] = IResolversParentTypes['Languages']> = {
|
|
@@ -4861,17 +4777,14 @@ export declare type IMutationResolvers<ContextType = any, ParentType extends IRe
|
|
|
4861
4777
|
createContact?: Resolver<IResolversTypes['Contact'], ParentType, ContextType, RequireFields<IMutationCreateContactArgs, 'contact'>>;
|
|
4862
4778
|
createDirectChannel?: Resolver<Maybe<IResolversTypes['Channel']>, ParentType, ContextType, RequireFields<IMutationCreateDirectChannelArgs, 'receiver' | 'displayName'>>;
|
|
4863
4779
|
createFileUploadLinks?: Resolver<Array<IResolversTypes['String']>, ParentType, ContextType, RequireFields<IMutationCreateFileUploadLinksArgs, 'filenames'>>;
|
|
4864
|
-
createIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['IntegraitonConfigurationId']>, ParentType, ContextType, RequireFields<IMutationCreateIntegrationConfigurationArgs, never>>;
|
|
4865
4780
|
createLanguage?: Resolver<IResolversTypes['Language'], ParentType, ContextType, RequireFields<IMutationCreateLanguageArgs, 'country'>>;
|
|
4866
4781
|
createMessageFileUploadLink?: Resolver<IResolversTypes['String'], ParentType, ContextType, RequireFields<IMutationCreateMessageFileUploadLinkArgs, 'postId' | 'filename'>>;
|
|
4867
4782
|
createMessageFilesUploadLink?: Resolver<Array<IResolversTypes['String']>, ParentType, ContextType, RequireFields<IMutationCreateMessageFilesUploadLinkArgs, 'postId' | 'filenames'>>;
|
|
4868
|
-
createOrUpdateIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['IntegraitonConfigurationId']>, ParentType, ContextType, RequireFields<IMutationCreateOrUpdateIntegrationConfigurationArgs, never>>;
|
|
4869
4783
|
createOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IMutationCreateOrganizationArgs, 'organization'>>;
|
|
4870
4784
|
createTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IMutationCreateTeamArgs, 'request'>>;
|
|
4871
4785
|
declineOrganizationInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationDeclineOrganizationInvitationArgs, 'id'>>;
|
|
4872
4786
|
deleteChannel?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationDeleteChannelArgs, 'id'>>;
|
|
4873
4787
|
deleteContact?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationDeleteContactArgs, 'id'>>;
|
|
4874
|
-
deleteIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationDeleteIntegrationConfigurationArgs, 'id'>>;
|
|
4875
4788
|
deleteLanguage?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationDeleteLanguageArgs, 'id'>>;
|
|
4876
4789
|
deleteMessage?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationDeleteMessageArgs, 'messageId'>>;
|
|
4877
4790
|
deleteMessageFile?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationDeleteMessageFileArgs, 'url'>>;
|
|
@@ -4958,6 +4871,7 @@ export declare type IOrgMemberResolvers<ContextType = any, ParentType extends IR
|
|
|
4958
4871
|
_id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
4959
4872
|
userId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
4960
4873
|
role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
|
|
4874
|
+
isSelf?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
4961
4875
|
inactive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
4962
4876
|
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
4963
4877
|
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
@@ -5310,8 +5224,8 @@ export declare type IProfileResolvers<ContextType = any, ParentType extends IRes
|
|
|
5310
5224
|
location?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
5311
5225
|
work?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
5312
5226
|
languages?: Resolver<Maybe<Array<IResolversTypes['Language']>>, ParentType, ContextType>;
|
|
5313
|
-
createdAt?: Resolver<IResolversTypes['
|
|
5314
|
-
updatedAt?: Resolver<IResolversTypes['
|
|
5227
|
+
createdAt?: Resolver<IResolversTypes['DateTime'], ParentType, ContextType>;
|
|
5228
|
+
updatedAt?: Resolver<IResolversTypes['DateTime'], ParentType, ContextType>;
|
|
5315
5229
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
5316
5230
|
};
|
|
5317
5231
|
export declare type IQueryResolvers<ContextType = any, ParentType extends IResolversParentTypes['Query'] = IResolversParentTypes['Query']> = {
|
|
@@ -5339,13 +5253,11 @@ export declare type IQueryResolvers<ContextType = any, ParentType extends IResol
|
|
|
5339
5253
|
fetchUserAuthorizedDevices?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserDevice']>>>, ParentType, ContextType, RequireFields<IQueryFetchUserAuthorizedDevicesArgs, 'auth0UserId'>>;
|
|
5340
5254
|
fileInfo?: Resolver<IResolversTypes['FileInfo'], ParentType, ContextType, RequireFields<IQueryFileInfoArgs, 'id'>>;
|
|
5341
5255
|
filesInfo?: Resolver<IResolversTypes['FilesInfo'], ParentType, ContextType, RequireFields<IQueryFilesInfoArgs, never>>;
|
|
5342
|
-
filterIntegrationConfiguration?: Resolver<Maybe<Array<Maybe<IResolversTypes['IntegrationConfiguration']>>>, ParentType, ContextType, RequireFields<IQueryFilterIntegrationConfigurationArgs, never>>;
|
|
5343
5256
|
getAccounts?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserAccount']>>>, ParentType, ContextType, RequireFields<IQueryGetAccountsArgs, never>>;
|
|
5344
5257
|
getAllCountries?: Resolver<Maybe<Array<Maybe<IResolversTypes['Country']>>>, ParentType, ContextType, RequireFields<IQueryGetAllCountriesArgs, never>>;
|
|
5345
5258
|
getAllDeviceToken?: Resolver<Maybe<IResolversTypes['DeviceTokens']>, ParentType, ContextType>;
|
|
5346
5259
|
getAllDeviceTokenById?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserAccount']>>>, ParentType, ContextType, RequireFields<IQueryGetAllDeviceTokenByIdArgs, 'id'>>;
|
|
5347
5260
|
getAllGovernmentId?: Resolver<Maybe<IResolversTypes['UserAccounts']>, ParentType, ContextType>;
|
|
5348
|
-
getAllIntegrationConfigurations?: Resolver<Maybe<IResolversTypes['IntegrationConfigurationsOutput']>, ParentType, ContextType, RequireFields<IQueryGetAllIntegrationConfigurationsArgs, never>>;
|
|
5349
5261
|
getConfiguration?: Resolver<Maybe<Array<Maybe<IResolversTypes['Configuration']>>>, ParentType, ContextType, RequireFields<IQueryGetConfigurationArgs, never>>;
|
|
5350
5262
|
getConfigurationData?: Resolver<Maybe<IResolversTypes['ConfigurationData']>, ParentType, ContextType>;
|
|
5351
5263
|
getConfigurationPolicies?: Resolver<Maybe<Array<Maybe<IResolversTypes['ConfigurationPolicy']>>>, ParentType, ContextType, RequireFields<IQueryGetConfigurationPoliciesArgs, never>>;
|
|
@@ -5353,7 +5265,6 @@ export declare type IQueryResolvers<ContextType = any, ParentType extends IResol
|
|
|
5353
5265
|
getDeviceToken?: Resolver<Maybe<IResolversTypes['DeviceToken']>, ParentType, ContextType>;
|
|
5354
5266
|
getEnvironment?: Resolver<Maybe<IResolversTypes['Environment']>, ParentType, ContextType>;
|
|
5355
5267
|
getExtendedUserAccount?: Resolver<IResolversTypes['UserAccount'], ParentType, ContextType, RequireFields<IQueryGetExtendedUserAccountArgs, never>>;
|
|
5356
|
-
getIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['IntegrationConfiguration']>, ParentType, ContextType, RequireFields<IQueryGetIntegrationConfigurationArgs, 'id'>>;
|
|
5357
5268
|
getManageableOrganizations?: Resolver<Maybe<Array<Maybe<IResolversTypes['Organization']>>>, ParentType, ContextType>;
|
|
5358
5269
|
getOrgInvitationMembers?: Resolver<Maybe<IResolversTypes['OrgInvitationMembers']>, ParentType, ContextType, RequireFields<IQueryGetOrgInvitationMembersArgs, never>>;
|
|
5359
5270
|
getOrgTeamInvitations?: Resolver<Maybe<Array<Maybe<IResolversTypes['OrganizationInvitation']>>>, ParentType, ContextType, RequireFields<IQueryGetOrgTeamInvitationsArgs, never>>;
|
|
@@ -5568,7 +5479,7 @@ export declare type IUserAuth0SessionDeviceInfoResolvers<ContextType = any, Pare
|
|
|
5568
5479
|
os?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
5569
5480
|
deviceName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
5570
5481
|
browserName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
5571
|
-
|
|
5482
|
+
platform?: Resolver<IResolversTypes['DeviceInfoPlatform'], ParentType, ContextType>;
|
|
5572
5483
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
5573
5484
|
};
|
|
5574
5485
|
export declare type IUserAuth0SessionInfoResolvers<ContextType = any, ParentType extends IResolversParentTypes['UserAuth0SessionInfo'] = IResolversParentTypes['UserAuth0SessionInfo']> = {
|
|
@@ -5744,9 +5655,6 @@ export declare type IResolvers<ContextType = any> = {
|
|
|
5744
5655
|
ITerritorialState?: IITerritorialStateResolvers<ContextType>;
|
|
5745
5656
|
IUser?: IIUserResolvers<ContextType>;
|
|
5746
5657
|
IUserMetadata?: IIUserMetadataResolvers<ContextType>;
|
|
5747
|
-
IntegraitonConfigurationId?: IIntegraitonConfigurationIdResolvers<ContextType>;
|
|
5748
|
-
IntegrationConfiguration?: IIntegrationConfigurationResolvers<ContextType>;
|
|
5749
|
-
IntegrationConfigurationsOutput?: IIntegrationConfigurationsOutputResolvers<ContextType>;
|
|
5750
5658
|
InviteMember?: IInviteMemberResolvers<ContextType>;
|
|
5751
5659
|
JSON?: GraphQLScalarType;
|
|
5752
5660
|
JSONObject?: GraphQLScalarType;
|