@adminide-stack/core 1.0.201-alpha.2 → 1.0.204-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/enums/integrations-configuration-steps.d.ts +4 -3
- package/lib/enums/integrations-configuration-steps.js +4 -3
- package/lib/enums/integrations-configuration-steps.js.map +1 -1
- package/lib/interfaces/generated/generated-models.d.ts +132 -1676
- package/lib/interfaces/generated/generated-models.js +8 -600
- package/lib/interfaces/generated/generated-models.js.map +1 -1
- package/package.json +3 -3
@@ -183,23 +183,6 @@ export declare const enum IActivityServiceCommands {
|
|
183
183
|
notify = "notify",
|
184
184
|
collect = "collect"
|
185
185
|
}
|
186
|
-
export declare type IAddressType = {
|
187
|
-
__typename?: 'AddressType';
|
188
|
-
attention?: Maybe<Scalars['String']>;
|
189
|
-
address?: Maybe<Scalars['String']>;
|
190
|
-
city?: Maybe<Scalars['String']>;
|
191
|
-
state?: Maybe<Scalars['String']>;
|
192
|
-
country?: Maybe<Scalars['String']>;
|
193
|
-
zip?: Maybe<Scalars['String']>;
|
194
|
-
};
|
195
|
-
export declare type IAddressType_Input = {
|
196
|
-
attention?: Maybe<Scalars['String']>;
|
197
|
-
address?: Maybe<Scalars['String']>;
|
198
|
-
city?: Maybe<Scalars['String']>;
|
199
|
-
state?: Maybe<Scalars['String']>;
|
200
|
-
country?: Maybe<Scalars['String']>;
|
201
|
-
zip?: Maybe<Scalars['String']>;
|
202
|
-
};
|
203
186
|
export declare type IAdminIdeSettings = IIActivitySettings & {
|
204
187
|
__typename?: 'AdminIdeSettings';
|
205
188
|
activityNamespace?: Maybe<Scalars['String']>;
|
@@ -267,30 +250,6 @@ export declare type IApplicationSettings = IISettingsSubject & {
|
|
267
250
|
*/
|
268
251
|
settingsCascade: ISettingsCascade;
|
269
252
|
};
|
270
|
-
export declare type IAsanaConnection = {
|
271
|
-
__typename?: 'AsanaConnection';
|
272
|
-
asana?: Maybe<IAsanaConnectionState>;
|
273
|
-
};
|
274
|
-
export declare type IAsanaConnectionState = {
|
275
|
-
__typename?: 'AsanaConnectionState';
|
276
|
-
status?: Maybe<Scalars['String']>;
|
277
|
-
user?: Maybe<IAsanaUser>;
|
278
|
-
};
|
279
|
-
export declare type IAsanaProjects = {
|
280
|
-
__typename?: 'AsanaProjects';
|
281
|
-
gid?: Maybe<Scalars['String']>;
|
282
|
-
name?: Maybe<Scalars['String']>;
|
283
|
-
};
|
284
|
-
export declare type IAsanaUser = {
|
285
|
-
__typename?: 'AsanaUser';
|
286
|
-
user_id?: Maybe<Scalars['String']>;
|
287
|
-
username?: Maybe<Scalars['String']>;
|
288
|
-
};
|
289
|
-
export declare type IAsanaWorkspaces = {
|
290
|
-
__typename?: 'AsanaWorkspaces';
|
291
|
-
gid?: Maybe<Scalars['String']>;
|
292
|
-
name?: Maybe<Scalars['String']>;
|
293
|
-
};
|
294
253
|
export declare type IAuth0Identity = {
|
295
254
|
__typename?: 'Auth0Identity';
|
296
255
|
connection?: Maybe<Scalars['String']>;
|
@@ -312,7 +271,8 @@ export declare const enum IAuthErrorCodes {
|
|
312
271
|
export declare type IAuthTokens = {
|
313
272
|
__typename?: 'AuthTokens';
|
314
273
|
idToken?: Maybe<Scalars['String']>;
|
315
|
-
|
274
|
+
sessionId?: Maybe<Scalars['String']>;
|
275
|
+
accessToken?: Maybe<Scalars['String']>;
|
316
276
|
};
|
317
277
|
/** AuthUser */
|
318
278
|
export declare type IAuthUser = IIUser & {
|
@@ -353,36 +313,6 @@ export declare type ICityUpdateInput = {
|
|
353
313
|
name?: Maybe<Scalars['String']>;
|
354
314
|
state: ITerritorialStateUpdateInput;
|
355
315
|
};
|
356
|
-
export declare type IClient = {
|
357
|
-
__typename?: 'Client';
|
358
|
-
id?: Maybe<Scalars['ID']>;
|
359
|
-
name: INameType;
|
360
|
-
companyName?: Maybe<Scalars['String']>;
|
361
|
-
displayName: Scalars['String'];
|
362
|
-
email?: Maybe<Scalars['String']>;
|
363
|
-
clientPhone?: Maybe<IClientPhone>;
|
364
|
-
website?: Maybe<Scalars['String']>;
|
365
|
-
currency: Scalars['String'];
|
366
|
-
socialConnect?: Maybe<ISocialConnect>;
|
367
|
-
billingAddress?: Maybe<IAddressType>;
|
368
|
-
shippingAddress?: Maybe<IAddressType>;
|
369
|
-
orgName?: Maybe<Scalars['String']>;
|
370
|
-
createdAt?: Maybe<Scalars['DateTime']>;
|
371
|
-
updatedAt?: Maybe<Scalars['DateTime']>;
|
372
|
-
};
|
373
|
-
export declare type IClientAddRequest = {
|
374
|
-
name: IName_Input;
|
375
|
-
companyName?: Maybe<Scalars['String']>;
|
376
|
-
displayName: Scalars['String'];
|
377
|
-
email?: Maybe<Scalars['String']>;
|
378
|
-
clientPhone?: Maybe<IClientPhone_Input>;
|
379
|
-
website?: Maybe<Scalars['String']>;
|
380
|
-
currency: Scalars['String'];
|
381
|
-
socialConnect?: Maybe<ISocialConnect_Input>;
|
382
|
-
billingAddress?: Maybe<IAddressType_Input>;
|
383
|
-
shippingAddress?: Maybe<IAddressType_Input>;
|
384
|
-
orgName?: Maybe<Scalars['String']>;
|
385
|
-
};
|
386
316
|
export declare const enum IClientCacheTypeNames {
|
387
317
|
ApplicationPolicy = "ApplicationPolicy",
|
388
318
|
ApplicationRolePermission = "ApplicationRolePermission",
|
@@ -429,31 +359,10 @@ export declare const enum IClientContainerService {
|
|
429
359
|
IPreferenceService = "IPreferenceService",
|
430
360
|
ITeamKeyContextService = "ITeamKeyContextService"
|
431
361
|
}
|
432
|
-
export declare type IClientCreatedEvent = {
|
433
|
-
__typename?: 'ClientCreatedEvent';
|
434
|
-
createdClient?: Maybe<IClient>;
|
435
|
-
};
|
436
|
-
export declare type IClientDeletedEvent = {
|
437
|
-
__typename?: 'ClientDeletedEvent';
|
438
|
-
deletedClient?: Maybe<IClient>;
|
439
|
-
};
|
440
|
-
export declare type IClientPhone = {
|
441
|
-
__typename?: 'ClientPhone';
|
442
|
-
workPhone?: Maybe<Scalars['String']>;
|
443
|
-
mobile?: Maybe<Scalars['String']>;
|
444
|
-
};
|
445
|
-
export declare type IClientPhone_Input = {
|
446
|
-
workPhone?: Maybe<Scalars['String']>;
|
447
|
-
mobile?: Maybe<Scalars['String']>;
|
448
|
-
};
|
449
362
|
export declare const enum IClientTypes {
|
450
363
|
Business = "Business",
|
451
364
|
Individuals = "Individuals"
|
452
365
|
}
|
453
|
-
export declare type IClientUpdateRequest = {
|
454
|
-
id?: Maybe<Scalars['String']>;
|
455
|
-
payload?: Maybe<IUpdatedClient_Input>;
|
456
|
-
};
|
457
366
|
export declare const enum IConfigCollectionName {
|
458
367
|
application = "application",
|
459
368
|
accounts = "accounts",
|
@@ -641,25 +550,6 @@ export declare type ICountry = {
|
|
641
550
|
export declare type ICountryInput = {
|
642
551
|
name: Scalars['String'];
|
643
552
|
};
|
644
|
-
export declare type ICustomerInvoice = {
|
645
|
-
__typename?: 'CustomerInvoice';
|
646
|
-
id?: Maybe<Scalars['String']>;
|
647
|
-
username?: Maybe<Scalars['String']>;
|
648
|
-
companyName?: Maybe<Scalars['String']>;
|
649
|
-
email?: Maybe<Scalars['String']>;
|
650
|
-
phone?: Maybe<IClientPhone>;
|
651
|
-
billingAddress?: Maybe<IAddressType>;
|
652
|
-
shippingAddress?: Maybe<IAddressType>;
|
653
|
-
};
|
654
|
-
export declare type ICustomerInvoice_Input = {
|
655
|
-
id?: Maybe<Scalars['String']>;
|
656
|
-
username?: Maybe<Scalars['String']>;
|
657
|
-
companyName?: Maybe<Scalars['String']>;
|
658
|
-
email?: Maybe<Scalars['String']>;
|
659
|
-
phone?: Maybe<IClientPhone_Input>;
|
660
|
-
billingAddress?: Maybe<IAddressType_Input>;
|
661
|
-
shippingAddress?: Maybe<IAddressType_Input>;
|
662
|
-
};
|
663
553
|
export declare type IDefaultConfiguration = IIConfigurationModel & {
|
664
554
|
__typename?: 'DefaultConfiguration';
|
665
555
|
/** The ID. */
|
@@ -703,6 +593,12 @@ export declare type IDefaultSettings = IISettingsSubject & {
|
|
703
593
|
*/
|
704
594
|
settingsCascade: ISettingsCascade;
|
705
595
|
};
|
596
|
+
export declare type IDeviceInfoInput = {
|
597
|
+
os: Scalars['String'];
|
598
|
+
deviceName?: Maybe<Scalars['String']>;
|
599
|
+
browserName?: Maybe<Scalars['String']>;
|
600
|
+
isMobile: Scalars['Boolean'];
|
601
|
+
};
|
706
602
|
export declare const enum IEActivityScopes {
|
707
603
|
User = "User",
|
708
604
|
Team = "Team",
|
@@ -1004,97 +900,6 @@ export declare const enum IInviteStatus {
|
|
1004
900
|
ACCEPTED = "ACCEPTED",
|
1005
901
|
DECLINED = "DECLINED"
|
1006
902
|
}
|
1007
|
-
export declare type IInvoiceCreateRequest = {
|
1008
|
-
comment?: Maybe<Scalars['String']>;
|
1009
|
-
currency?: Maybe<Scalars['String']>;
|
1010
|
-
discount?: Maybe<Scalars['Float']>;
|
1011
|
-
from?: Maybe<IMemberInvoice_Input>;
|
1012
|
-
invoiceDate?: Maybe<Scalars['String']>;
|
1013
|
-
terms?: Maybe<Scalars['String']>;
|
1014
|
-
dueDate?: Maybe<Scalars['String']>;
|
1015
|
-
invoiceNumber?: Maybe<Scalars['String']>;
|
1016
|
-
orderNumber?: Maybe<Scalars['String']>;
|
1017
|
-
invoiceVendor?: Maybe<IMemberInvoice_Input>;
|
1018
|
-
logo?: Maybe<Scalars['String']>;
|
1019
|
-
paymentStatus?: Maybe<Scalars['Boolean']>;
|
1020
|
-
projects?: Maybe<Array<Maybe<IProjectInvoice_Input>>>;
|
1021
|
-
subTotal?: Maybe<Scalars['Float']>;
|
1022
|
-
tax?: Maybe<Scalars['Float']>;
|
1023
|
-
subject?: Maybe<Scalars['String']>;
|
1024
|
-
conditions?: Maybe<Scalars['String']>;
|
1025
|
-
timezoneOffset?: Maybe<Scalars['Int']>;
|
1026
|
-
to?: Maybe<ICustomerInvoice_Input>;
|
1027
|
-
total?: Maybe<Scalars['Float']>;
|
1028
|
-
};
|
1029
|
-
export declare type IInvoiceCreatedEvent = {
|
1030
|
-
__typename?: 'InvoiceCreatedEvent';
|
1031
|
-
createdInvoice?: Maybe<IInvoiceType>;
|
1032
|
-
};
|
1033
|
-
export declare type IInvoiceDeletedEvent = {
|
1034
|
-
__typename?: 'InvoiceDeletedEvent';
|
1035
|
-
deletedInvoice?: Maybe<IInvoiceType>;
|
1036
|
-
};
|
1037
|
-
export declare type IInvoiceMailRequest = {
|
1038
|
-
template: ITemplate;
|
1039
|
-
to: Scalars['String'];
|
1040
|
-
from: Scalars['String'];
|
1041
|
-
cc?: Maybe<Scalars['String']>;
|
1042
|
-
bcc?: Maybe<Scalars['String']>;
|
1043
|
-
attachments?: Maybe<Array<Maybe<Scalars['AnyObject']>>>;
|
1044
|
-
subject?: Maybe<Scalars['String']>;
|
1045
|
-
};
|
1046
|
-
export declare type IInvoiceType = {
|
1047
|
-
__typename?: 'InvoiceType';
|
1048
|
-
id?: Maybe<Scalars['ID']>;
|
1049
|
-
comment?: Maybe<Scalars['String']>;
|
1050
|
-
currency?: Maybe<Scalars['String']>;
|
1051
|
-
discount?: Maybe<Scalars['Float']>;
|
1052
|
-
from?: Maybe<IMemberInvoice>;
|
1053
|
-
invoiceDate?: Maybe<Scalars['DateTime']>;
|
1054
|
-
terms?: Maybe<Scalars['String']>;
|
1055
|
-
dueDate?: Maybe<Scalars['DateTime']>;
|
1056
|
-
invoiceNumber?: Maybe<Scalars['String']>;
|
1057
|
-
orderNumber?: Maybe<Scalars['String']>;
|
1058
|
-
invoiceVendor?: Maybe<IMemberInvoice>;
|
1059
|
-
logo?: Maybe<Scalars['String']>;
|
1060
|
-
overdue?: Maybe<Scalars['Boolean']>;
|
1061
|
-
paymentStatus?: Maybe<Scalars['Boolean']>;
|
1062
|
-
projects?: Maybe<Array<Maybe<IProjectInvoice>>>;
|
1063
|
-
sendingStatus?: Maybe<Scalars['Boolean']>;
|
1064
|
-
status?: Maybe<Scalars['String']>;
|
1065
|
-
subTotal?: Maybe<Scalars['Float']>;
|
1066
|
-
tax?: Maybe<Scalars['Float']>;
|
1067
|
-
subject?: Maybe<Scalars['String']>;
|
1068
|
-
conditions?: Maybe<Scalars['String']>;
|
1069
|
-
timezoneOffset?: Maybe<Scalars['Int']>;
|
1070
|
-
to?: Maybe<ICustomerInvoice>;
|
1071
|
-
total?: Maybe<Scalars['Float']>;
|
1072
|
-
orgName?: Maybe<Scalars['String']>;
|
1073
|
-
createdAt?: Maybe<Scalars['DateTime']>;
|
1074
|
-
updatedAt?: Maybe<Scalars['DateTime']>;
|
1075
|
-
};
|
1076
|
-
export declare type IInvoiceUpdateRequest = {
|
1077
|
-
comment?: Maybe<Scalars['String']>;
|
1078
|
-
currency?: Maybe<Scalars['String']>;
|
1079
|
-
discount?: Maybe<Scalars['Float']>;
|
1080
|
-
from?: Maybe<IMemberInvoice_Input>;
|
1081
|
-
invoiceDate?: Maybe<Scalars['String']>;
|
1082
|
-
terms?: Maybe<Scalars['String']>;
|
1083
|
-
dueDate?: Maybe<Scalars['String']>;
|
1084
|
-
invoiceNumber?: Maybe<Scalars['String']>;
|
1085
|
-
orderNumber?: Maybe<Scalars['String']>;
|
1086
|
-
invoiceVendor?: Maybe<IMemberInvoice_Input>;
|
1087
|
-
logo?: Maybe<Scalars['String']>;
|
1088
|
-
paymentStatus?: Maybe<Scalars['Boolean']>;
|
1089
|
-
projects?: Maybe<Array<Maybe<IProjectInvoice_Input>>>;
|
1090
|
-
subTotal?: Maybe<Scalars['Float']>;
|
1091
|
-
tax?: Maybe<Scalars['Float']>;
|
1092
|
-
subject?: Maybe<Scalars['String']>;
|
1093
|
-
conditions?: Maybe<Scalars['String']>;
|
1094
|
-
timezoneOffset?: Maybe<Scalars['Int']>;
|
1095
|
-
to?: Maybe<ICustomerInvoice_Input>;
|
1096
|
-
total?: Maybe<Scalars['Float']>;
|
1097
|
-
};
|
1098
903
|
/**
|
1099
904
|
* A segment of a key path that locates a nested JSON value in a root JSON value. Exactly one field in each
|
1100
905
|
* KeyPathSegment must be non-null.
|
@@ -1152,23 +957,6 @@ export declare const enum IMailTemplateId {
|
|
1152
957
|
USER_PASSWORD_RESET = "USER_PASSWORD_RESET",
|
1153
958
|
dummy = "dummy"
|
1154
959
|
}
|
1155
|
-
export declare type IMemberInvoice = {
|
1156
|
-
__typename?: 'MemberInvoice';
|
1157
|
-
id?: Maybe<Scalars['String']>;
|
1158
|
-
name?: Maybe<Scalars['String']>;
|
1159
|
-
companyName?: Maybe<Scalars['String']>;
|
1160
|
-
email?: Maybe<Scalars['String']>;
|
1161
|
-
phone?: Maybe<IClientPhone>;
|
1162
|
-
address?: Maybe<IAddressType>;
|
1163
|
-
};
|
1164
|
-
export declare type IMemberInvoice_Input = {
|
1165
|
-
id?: Maybe<Scalars['String']>;
|
1166
|
-
name?: Maybe<Scalars['String']>;
|
1167
|
-
companyName?: Maybe<Scalars['String']>;
|
1168
|
-
email?: Maybe<Scalars['String']>;
|
1169
|
-
phone?: Maybe<IClientPhone_Input>;
|
1170
|
-
address?: Maybe<IAddressType_Input>;
|
1171
|
-
};
|
1172
960
|
export declare type IMemorySettings = IISettingsSubject & {
|
1173
961
|
__typename?: 'MemorySettings';
|
1174
962
|
/** The ID. */
|
@@ -1212,14 +1000,11 @@ export declare const enum IMoleculerServiceName {
|
|
1212
1000
|
AccountsPostEventsService = "AccountsPostEventsService",
|
1213
1001
|
ActivityCollector = "ActivityCollector",
|
1214
1002
|
ActivityStorage = "ActivityStorage",
|
1215
|
-
AsanaService = "AsanaService",
|
1216
1003
|
AuthUserService = "AuthUserService",
|
1217
|
-
GithubMoleculerService = "GithubMoleculerService",
|
1218
1004
|
OrganizationContextService = "OrganizationContextService",
|
1219
1005
|
PaymentEventListener = "PaymentEventListener",
|
1220
1006
|
PaymentService = "PaymentService",
|
1221
1007
|
PaypalService = "PaypalService",
|
1222
|
-
ProjectService = "ProjectService",
|
1223
1008
|
SshKeyService = "SshKeyService",
|
1224
1009
|
StripeService = "StripeService",
|
1225
1010
|
UserBroadcaster = "UserBroadcaster",
|
@@ -1234,9 +1019,7 @@ export declare type IMutation = {
|
|
1234
1019
|
UpdateSshKey?: Maybe<ISshKey>;
|
1235
1020
|
acceptOrganizationInvitation?: Maybe<Scalars['Boolean']>;
|
1236
1021
|
accountOnBoarding?: Maybe<Scalars['Boolean']>;
|
1237
|
-
addClient?: Maybe<Scalars['Boolean']>;
|
1238
1022
|
addContributionRole?: Maybe<Scalars['Boolean']>;
|
1239
|
-
addOrgProject?: Maybe<Scalars['Boolean']>;
|
1240
1023
|
addResourceToContext?: Maybe<Scalars['Boolean']>;
|
1241
1024
|
addTeamMembers?: Maybe<Scalars['Boolean']>;
|
1242
1025
|
changeMemberRole?: Maybe<Scalars['Boolean']>;
|
@@ -1244,36 +1027,34 @@ export declare type IMutation = {
|
|
1244
1027
|
changeOrganization?: Maybe<Scalars['String']>;
|
1245
1028
|
collect?: Maybe<Scalars['Boolean']>;
|
1246
1029
|
createIntegrationConfiguration?: Maybe<IIntegraitonConfigurationId>;
|
1247
|
-
createInvoice?: Maybe<Scalars['Boolean']>;
|
1248
1030
|
createOrUpdateIntegrationConfiguration?: Maybe<IIntegraitonConfigurationId>;
|
1249
1031
|
createOrganization?: Maybe<IOrganization>;
|
1250
|
-
createTask?: Maybe<Scalars['Boolean']>;
|
1251
1032
|
createTeam?: Maybe<IAccountTeam>;
|
1252
|
-
createTokens?: Maybe<IAuthTokens>;
|
1253
1033
|
declineOrganizationInvitation?: Maybe<Scalars['Boolean']>;
|
1254
1034
|
deleteIntegrationConfiguration?: Maybe<Scalars['Boolean']>;
|
1255
1035
|
deleteUserAccount?: Maybe<Scalars['Boolean']>;
|
1256
1036
|
deleteUserAuthorizedDevice?: Maybe<Scalars['Boolean']>;
|
1257
1037
|
dummy?: Maybe<Scalars['Int']>;
|
1038
|
+
initializeAuthorizationCodeFlow?: Maybe<IAuthTokens>;
|
1258
1039
|
initializeOrgNameInContext?: Maybe<Scalars['Boolean']>;
|
1040
|
+
initializePopupIntegrationAuthorization?: Maybe<IPopupIntegrationAuthorization>;
|
1259
1041
|
initializeTeamInContext?: Maybe<Scalars['Boolean']>;
|
1042
|
+
initializeUserSession?: Maybe<IUserSessionId>;
|
1260
1043
|
initiateConfigurationValue?: Maybe<Scalars['Boolean']>;
|
1261
1044
|
initiatePolicyValue?: Maybe<Scalars['Boolean']>;
|
1262
1045
|
reassignRole?: Maybe<Scalars['Boolean']>;
|
1263
1046
|
registerAccountUser?: Maybe<IUserAccount>;
|
1264
1047
|
registerUserInAuth0?: Maybe<IUserProfile>;
|
1265
|
-
removeInvoice?: Maybe<Scalars['Boolean']>;
|
1266
|
-
removeOrgClient?: Maybe<Scalars['Boolean']>;
|
1267
1048
|
removeOrgMember?: Maybe<Scalars['Boolean']>;
|
1268
1049
|
removeOrganization?: Maybe<Scalars['Boolean']>;
|
1269
|
-
removeTask?: Maybe<Scalars['Boolean']>;
|
1270
1050
|
removeTeam?: Maybe<Scalars['Boolean']>;
|
1271
1051
|
removeTeamMember?: Maybe<Scalars['Boolean']>;
|
1052
|
+
removeUserAuthSession?: Maybe<Scalars['Boolean']>;
|
1053
|
+
removedUserAuthIntegration?: Maybe<Scalars['Boolean']>;
|
1272
1054
|
renewAuthToken?: Maybe<IAuthTokens>;
|
1273
1055
|
resendOrganizationInvitation?: Maybe<Scalars['Boolean']>;
|
1274
1056
|
resendUserEmailVerificationEmail?: Maybe<Scalars['Boolean']>;
|
1275
1057
|
resetUserPassword?: Maybe<Scalars['Boolean']>;
|
1276
|
-
sendInvoiceMail?: Maybe<Scalars['Boolean']>;
|
1277
1058
|
sendOrganizationInvitation?: Maybe<Scalars['Boolean']>;
|
1278
1059
|
sendUserPasswordResetEmail?: Maybe<Scalars['Boolean']>;
|
1279
1060
|
setSettingsValueByResource?: Maybe<Scalars['Boolean']>;
|
@@ -1286,20 +1067,14 @@ export declare type IMutation = {
|
|
1286
1067
|
updateConfigurationValue?: Maybe<Scalars['Boolean']>;
|
1287
1068
|
updateConfigurationValueByUri?: Maybe<Scalars['Boolean']>;
|
1288
1069
|
updateContext?: Maybe<Scalars['Boolean']>;
|
1289
|
-
updateInvoice?: Maybe<Scalars['Boolean']>;
|
1290
|
-
updateOrgClient?: Maybe<IClient>;
|
1291
1070
|
updateOrgMemberTeams?: Maybe<Scalars['Boolean']>;
|
1292
|
-
updateOrgProject?: Maybe<Scalars['Boolean']>;
|
1293
1071
|
updateOrganization?: Maybe<IOrganization>;
|
1294
1072
|
updateOrganizationContextAddResources?: Maybe<Array<Maybe<IResourceData>>>;
|
1295
1073
|
updateOrganizationContextRemoveResources?: Maybe<Array<Maybe<IResourceData>>>;
|
1296
1074
|
updateOrganizationContextUpdateResources?: Maybe<Array<Maybe<IResourceData>>>;
|
1297
|
-
updateProjectStatus?: Maybe<Scalars['Boolean']>;
|
1298
1075
|
updateRoleValue?: Maybe<Scalars['Boolean']>;
|
1299
1076
|
updateSelectedOrgResource?: Maybe<Scalars['Boolean']>;
|
1300
|
-
updateTask?: Maybe<Scalars['Boolean']>;
|
1301
1077
|
updateUserAccount?: Maybe<Scalars['Boolean']>;
|
1302
|
-
upsertProjectThroughIntegration?: Maybe<IProjects>;
|
1303
1078
|
verifyUserEmailVerificationToken?: Maybe<Scalars['Boolean']>;
|
1304
1079
|
};
|
1305
1080
|
export declare type IMutationAddSshKeyArgs = {
|
@@ -1319,16 +1094,10 @@ export declare type IMutationacceptOrganizationInvitationArgs = {
|
|
1319
1094
|
export declare type IMutationaccountOnBoardingArgs = {
|
1320
1095
|
input?: Maybe<IIOnBoardingParams>;
|
1321
1096
|
};
|
1322
|
-
export declare type IMutationaddClientArgs = {
|
1323
|
-
client: IClientAddRequest;
|
1324
|
-
};
|
1325
1097
|
export declare type IMutationaddContributionRoleArgs = {
|
1326
1098
|
name: Scalars['String'];
|
1327
1099
|
description?: Maybe<Scalars['String']>;
|
1328
1100
|
};
|
1329
|
-
export declare type IMutationaddOrgProjectArgs = {
|
1330
|
-
project: IProjectAddRequest;
|
1331
|
-
};
|
1332
1101
|
export declare type IMutationaddResourceToContextArgs = {
|
1333
1102
|
resourcesToAdd: Array<Maybe<IResourceCreationData_Input>>;
|
1334
1103
|
};
|
@@ -1357,24 +1126,15 @@ export declare type IMutationcollectArgs = {
|
|
1357
1126
|
export declare type IMutationcreateIntegrationConfigurationArgs = {
|
1358
1127
|
data?: Maybe<IIntegrationConfigurationInput>;
|
1359
1128
|
};
|
1360
|
-
export declare type IMutationcreateInvoiceArgs = {
|
1361
|
-
invoice: IInvoiceCreateRequest;
|
1362
|
-
};
|
1363
1129
|
export declare type IMutationcreateOrUpdateIntegrationConfigurationArgs = {
|
1364
1130
|
data?: Maybe<IIntegrationConfigurationCreateOrUpdateInput>;
|
1365
1131
|
};
|
1366
1132
|
export declare type IMutationcreateOrganizationArgs = {
|
1367
1133
|
organization: IOrganizationCreateRequest;
|
1368
1134
|
};
|
1369
|
-
export declare type IMutationcreateTaskArgs = {
|
1370
|
-
request?: Maybe<ITaskRequest>;
|
1371
|
-
};
|
1372
1135
|
export declare type IMutationcreateTeamArgs = {
|
1373
1136
|
request: ITeamCreationRequest;
|
1374
1137
|
};
|
1375
|
-
export declare type IMutationcreateTokensArgs = {
|
1376
|
-
code?: Maybe<Scalars['String']>;
|
1377
|
-
};
|
1378
1138
|
export declare type IMutationdeclineOrganizationInvitationArgs = {
|
1379
1139
|
id: Scalars['ID'];
|
1380
1140
|
};
|
@@ -1384,13 +1144,25 @@ export declare type IMutationdeleteIntegrationConfigurationArgs = {
|
|
1384
1144
|
export declare type IMutationdeleteUserAuthorizedDeviceArgs = {
|
1385
1145
|
deviceId: Scalars['String'];
|
1386
1146
|
};
|
1147
|
+
export declare type IMutationinitializeAuthorizationCodeFlowArgs = {
|
1148
|
+
deviceInfo: IDeviceInfoInput;
|
1149
|
+
code?: Maybe<Scalars['String']>;
|
1150
|
+
codeVerifier?: Maybe<Scalars['String']>;
|
1151
|
+
};
|
1387
1152
|
export declare type IMutationinitializeOrgNameInContextArgs = {
|
1388
1153
|
orgName?: Maybe<Scalars['String']>;
|
1389
1154
|
};
|
1155
|
+
export declare type IMutationinitializePopupIntegrationAuthorizationArgs = {
|
1156
|
+
code?: Maybe<Scalars['String']>;
|
1157
|
+
};
|
1390
1158
|
export declare type IMutationinitializeTeamInContextArgs = {
|
1391
1159
|
teamName?: Maybe<Scalars['String']>;
|
1392
1160
|
orgName?: Maybe<Scalars['String']>;
|
1393
1161
|
};
|
1162
|
+
export declare type IMutationinitializeUserSessionArgs = {
|
1163
|
+
deviceInfo: IDeviceInfoInput;
|
1164
|
+
refreshToken?: Maybe<Scalars['String']>;
|
1165
|
+
};
|
1394
1166
|
export declare type IMutationinitiateConfigurationValueArgs = {
|
1395
1167
|
resource?: Maybe<Scalars['URI']>;
|
1396
1168
|
};
|
@@ -1404,21 +1176,12 @@ export declare type IMutationregisterUserInAuth0Args = {
|
|
1404
1176
|
email: Scalars['String'];
|
1405
1177
|
password: Scalars['String'];
|
1406
1178
|
};
|
1407
|
-
export declare type IMutationremoveInvoiceArgs = {
|
1408
|
-
id?: Maybe<Scalars['String']>;
|
1409
|
-
};
|
1410
|
-
export declare type IMutationremoveOrgClientArgs = {
|
1411
|
-
clientId: Scalars['String'];
|
1412
|
-
};
|
1413
1179
|
export declare type IMutationremoveOrgMemberArgs = {
|
1414
1180
|
memberId: Scalars['String'];
|
1415
1181
|
};
|
1416
1182
|
export declare type IMutationremoveOrganizationArgs = {
|
1417
1183
|
organization: IOrganizationRemoveRequest;
|
1418
1184
|
};
|
1419
|
-
export declare type IMutationremoveTaskArgs = {
|
1420
|
-
id: Scalars['String'];
|
1421
|
-
};
|
1422
1185
|
export declare type IMutationremoveTeamArgs = {
|
1423
1186
|
teamId: Scalars['String'];
|
1424
1187
|
};
|
@@ -1427,8 +1190,14 @@ export declare type IMutationremoveTeamMemberArgs = {
|
|
1427
1190
|
teamName: Scalars['String'];
|
1428
1191
|
memberId: Scalars['String'];
|
1429
1192
|
};
|
1193
|
+
export declare type IMutationremoveUserAuthSessionArgs = {
|
1194
|
+
sessionId?: Maybe<Scalars['String']>;
|
1195
|
+
};
|
1196
|
+
export declare type IMutationremovedUserAuthIntegrationArgs = {
|
1197
|
+
provider?: Maybe<Scalars['String']>;
|
1198
|
+
};
|
1430
1199
|
export declare type IMutationrenewAuthTokenArgs = {
|
1431
|
-
|
1200
|
+
sessionId?: Maybe<Scalars['String']>;
|
1432
1201
|
};
|
1433
1202
|
export declare type IMutationresendOrganizationInvitationArgs = {
|
1434
1203
|
id: Scalars['ID'];
|
@@ -1436,9 +1205,6 @@ export declare type IMutationresendOrganizationInvitationArgs = {
|
|
1436
1205
|
export declare type IMutationresetUserPasswordArgs = {
|
1437
1206
|
input: IUserPasswordResetInput;
|
1438
1207
|
};
|
1439
|
-
export declare type IMutationsendInvoiceMailArgs = {
|
1440
|
-
request: IInvoiceMailRequest;
|
1441
|
-
};
|
1442
1208
|
export declare type IMutationsendOrganizationInvitationArgs = {
|
1443
1209
|
request?: Maybe<IOrganizationInvitationRequest>;
|
1444
1210
|
};
|
@@ -1501,23 +1267,12 @@ export declare type IMutationupdateContextArgs = {
|
|
1501
1267
|
key?: Maybe<Scalars['String']>;
|
1502
1268
|
value?: Maybe<Scalars['AnyObject']>;
|
1503
1269
|
};
|
1504
|
-
export declare type IMutationupdateInvoiceArgs = {
|
1505
|
-
id?: Maybe<Scalars['String']>;
|
1506
|
-
invoice?: Maybe<IInvoiceUpdateRequest>;
|
1507
|
-
};
|
1508
|
-
export declare type IMutationupdateOrgClientArgs = {
|
1509
|
-
updateRequest?: Maybe<IClientUpdateRequest>;
|
1510
|
-
};
|
1511
1270
|
export declare type IMutationupdateOrgMemberTeamsArgs = {
|
1512
1271
|
userId: Scalars['String'];
|
1513
1272
|
orgName: Scalars['String'];
|
1514
1273
|
addToTeams?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1515
1274
|
removeFromTeams?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1516
1275
|
};
|
1517
|
-
export declare type IMutationupdateOrgProjectArgs = {
|
1518
|
-
where: IProjectWhereInput;
|
1519
|
-
project?: Maybe<IUpdateProject_Input>;
|
1520
|
-
};
|
1521
1276
|
export declare type IMutationupdateOrganizationArgs = {
|
1522
1277
|
organization: IOrganizationUpdateRequest;
|
1523
1278
|
};
|
@@ -1534,10 +1289,6 @@ export declare type IMutationupdateOrganizationContextUpdateResourcesArgs = {
|
|
1534
1289
|
resourcesToRemove: Array<Maybe<Scalars['URI']>>;
|
1535
1290
|
index?: Maybe<Scalars['Int']>;
|
1536
1291
|
};
|
1537
|
-
export declare type IMutationupdateProjectStatusArgs = {
|
1538
|
-
id: Scalars['String'];
|
1539
|
-
status?: Maybe<Scalars['String']>;
|
1540
|
-
};
|
1541
1292
|
export declare type IMutationupdateRoleValueArgs = {
|
1542
1293
|
key: Scalars['String'];
|
1543
1294
|
value: Scalars['AnyObject'];
|
@@ -1548,31 +1299,12 @@ export declare type IMutationupdateRoleValueArgs = {
|
|
1548
1299
|
export declare type IMutationupdateSelectedOrgResourceArgs = {
|
1549
1300
|
resource: Scalars['URI'];
|
1550
1301
|
};
|
1551
|
-
export declare type IMutationupdateTaskArgs = {
|
1552
|
-
id: Scalars['String'];
|
1553
|
-
request?: Maybe<ITaskRequest>;
|
1554
|
-
};
|
1555
1302
|
export declare type IMutationupdateUserAccountArgs = {
|
1556
1303
|
userInfo?: Maybe<IUserAuth0UpdateFields>;
|
1557
1304
|
};
|
1558
|
-
export declare type IMutationupsertProjectThroughIntegrationArgs = {
|
1559
|
-
where: IProjectWhereInput;
|
1560
|
-
project?: Maybe<IUpdateProject_Input>;
|
1561
|
-
};
|
1562
1305
|
export declare type IMutationverifyUserEmailVerificationTokenArgs = {
|
1563
1306
|
token?: Maybe<Scalars['String']>;
|
1564
1307
|
};
|
1565
|
-
export declare type INameType = {
|
1566
|
-
__typename?: 'NameType';
|
1567
|
-
salutation?: Maybe<Scalars['String']>;
|
1568
|
-
firstName?: Maybe<Scalars['String']>;
|
1569
|
-
lastName?: Maybe<Scalars['String']>;
|
1570
|
-
};
|
1571
|
-
export declare type IName_Input = {
|
1572
|
-
salutation?: Maybe<Scalars['String']>;
|
1573
|
-
firstName?: Maybe<Scalars['String']>;
|
1574
|
-
lastName?: Maybe<Scalars['String']>;
|
1575
|
-
};
|
1576
1308
|
/** An object with an ID. */
|
1577
1309
|
export declare type INode = {
|
1578
1310
|
/** The ID of the node. */
|
@@ -2034,6 +1766,10 @@ export declare type IPolicySubject = {
|
|
2034
1766
|
/** The stringified JSON contents of the permissions. */
|
2035
1767
|
policies: Scalars['AnyObject'];
|
2036
1768
|
};
|
1769
|
+
export declare type IPopupIntegrationAuthorization = {
|
1770
|
+
__typename?: 'PopupIntegrationAuthorization';
|
1771
|
+
idToken?: Maybe<Scalars['String']>;
|
1772
|
+
};
|
2037
1773
|
export declare const enum IPortalLanguage {
|
2038
1774
|
English = "English",
|
2039
1775
|
Hindi = "Hindi",
|
@@ -2150,140 +1886,6 @@ export declare type IPreferencesType = {
|
|
2150
1886
|
type?: Maybe<Scalars['String']>;
|
2151
1887
|
data?: Maybe<Array<Maybe<IContributionSettings>>>;
|
2152
1888
|
};
|
2153
|
-
export declare type IProjectAddRequest = {
|
2154
|
-
name: Scalars['String'];
|
2155
|
-
clientId?: Maybe<Scalars['String']>;
|
2156
|
-
teams?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2157
|
-
orgName?: Maybe<Scalars['String']>;
|
2158
|
-
integrationConfigurationId?: Maybe<Scalars['String']>;
|
2159
|
-
};
|
2160
|
-
export declare type IProjectCreatedEvent = {
|
2161
|
-
__typename?: 'ProjectCreatedEvent';
|
2162
|
-
createdProject?: Maybe<IProjects>;
|
2163
|
-
};
|
2164
|
-
export declare type IProjectDeletedEvent = {
|
2165
|
-
__typename?: 'ProjectDeletedEvent';
|
2166
|
-
deletedProject?: Maybe<IProjects>;
|
2167
|
-
};
|
2168
|
-
export declare type IProjectInvoice = {
|
2169
|
-
__typename?: 'ProjectInvoice';
|
2170
|
-
id?: Maybe<Scalars['ID']>;
|
2171
|
-
hours?: Maybe<Scalars['Int']>;
|
2172
|
-
projectName?: Maybe<Scalars['String']>;
|
2173
|
-
rate?: Maybe<Scalars['Float']>;
|
2174
|
-
subTotal?: Maybe<Scalars['Float']>;
|
2175
|
-
};
|
2176
|
-
export declare type IProjectInvoice_Input = {
|
2177
|
-
hours?: Maybe<Scalars['Int']>;
|
2178
|
-
projectName?: Maybe<Scalars['String']>;
|
2179
|
-
rate?: Maybe<Scalars['Float']>;
|
2180
|
-
subTotal?: Maybe<Scalars['Float']>;
|
2181
|
-
};
|
2182
|
-
export declare type IProjectParameters = {
|
2183
|
-
__typename?: 'ProjectParameters';
|
2184
|
-
branch?: Maybe<Scalars['String']>;
|
2185
|
-
httpsUrl?: Maybe<Scalars['String']>;
|
2186
|
-
isPrivate?: Maybe<Scalars['Boolean']>;
|
2187
|
-
};
|
2188
|
-
export declare type IProjectParameters_Input = {
|
2189
|
-
branch?: Maybe<Scalars['String']>;
|
2190
|
-
httpsUrl?: Maybe<Scalars['String']>;
|
2191
|
-
isPrivate?: Maybe<Scalars['Boolean']>;
|
2192
|
-
};
|
2193
|
-
export declare type IProjectSource = {
|
2194
|
-
__typename?: 'ProjectSource';
|
2195
|
-
location?: Maybe<Scalars['String']>;
|
2196
|
-
type?: Maybe<IProjectSourceType>;
|
2197
|
-
parameters?: Maybe<IProjectParameters>;
|
2198
|
-
providers?: Maybe<IProjectSourceProviders>;
|
2199
|
-
language?: Maybe<Scalars['String']>;
|
2200
|
-
};
|
2201
|
-
/** Various Source Providers for Projects Source. */
|
2202
|
-
export declare const enum IProjectSourceProviders {
|
2203
|
-
Github = "Github",
|
2204
|
-
Bitbucket = "Bitbucket",
|
2205
|
-
Gitlab = "Gitlab",
|
2206
|
-
Vsts = "Vsts",
|
2207
|
-
None = "None"
|
2208
|
-
}
|
2209
|
-
/** Various types of sources. */
|
2210
|
-
export declare const enum IProjectSourceType {
|
2211
|
-
Blank = "Blank",
|
2212
|
-
Zip = "Zip",
|
2213
|
-
Git = "Git"
|
2214
|
-
}
|
2215
|
-
export declare type IProjectSource_Input = {
|
2216
|
-
location?: Maybe<Scalars['String']>;
|
2217
|
-
type?: Maybe<IProjectSourceType>;
|
2218
|
-
parameters?: Maybe<IProjectParameters_Input>;
|
2219
|
-
providers?: Maybe<IProjectSourceProviders>;
|
2220
|
-
language?: Maybe<Scalars['String']>;
|
2221
|
-
};
|
2222
|
-
export declare const enum IProjectType {
|
2223
|
-
internal = "internal",
|
2224
|
-
others = "others",
|
2225
|
-
asana = "asana"
|
2226
|
-
}
|
2227
|
-
export declare type IProjectWhereInput = {
|
2228
|
-
id?: Maybe<Scalars['String']>;
|
2229
|
-
integrationConfigurationId?: Maybe<Scalars['String']>;
|
2230
|
-
name?: Maybe<Scalars['String']>;
|
2231
|
-
orgName?: Maybe<Scalars['String']>;
|
2232
|
-
};
|
2233
|
-
export declare type IProject_Input = {
|
2234
|
-
id?: Maybe<Scalars['String']>;
|
2235
|
-
_id?: Maybe<Scalars['String']>;
|
2236
|
-
name?: Maybe<Scalars['String']>;
|
2237
|
-
description?: Maybe<Scalars['String']>;
|
2238
|
-
path?: Maybe<Scalars['String']>;
|
2239
|
-
source?: Maybe<IProjectSource_Input>;
|
2240
|
-
problems?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2241
|
-
};
|
2242
|
-
export declare type IProject_Output = {
|
2243
|
-
__typename?: 'Project_Output';
|
2244
|
-
id?: Maybe<Scalars['String']>;
|
2245
|
-
name: Scalars['String'];
|
2246
|
-
clientId?: Maybe<Scalars['String']>;
|
2247
|
-
teams?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2248
|
-
status?: Maybe<Scalars['String']>;
|
2249
|
-
orgName?: Maybe<Scalars['String']>;
|
2250
|
-
integrationConfigurationId?: Maybe<Scalars['String']>;
|
2251
|
-
};
|
2252
|
-
/**
|
2253
|
-
* * Project can be any of the following:
|
2254
|
-
* * i. Git Repository
|
2255
|
-
* * ii. Blank, in case the source.location is empty
|
2256
|
-
* * iii. Others like upload files or zip files
|
2257
|
-
* *
|
2258
|
-
* * @property
|
2259
|
-
* * name: Project Name
|
2260
|
-
* * @property
|
2261
|
-
* * description: Project description
|
2262
|
-
* * @property
|
2263
|
-
* * path: Path of the project in workspace
|
2264
|
-
* * @property
|
2265
|
-
* * source: Source of the project, it could Git etc. If GIT we define the branch under parameters.
|
2266
|
-
* * @property
|
2267
|
-
* * problems: If the project failed with any issues, we save them to notify the user.
|
2268
|
-
*/
|
2269
|
-
export declare type IProjects = {
|
2270
|
-
__typename?: 'Projects';
|
2271
|
-
id?: Maybe<Scalars['ID']>;
|
2272
|
-
name: Scalars['String'];
|
2273
|
-
description?: Maybe<Scalars['String']>;
|
2274
|
-
clientId?: Maybe<Scalars['String']>;
|
2275
|
-
source?: Maybe<IProjectSource>;
|
2276
|
-
problems?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2277
|
-
teams?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2278
|
-
status?: Maybe<Scalars['String']>;
|
2279
|
-
type?: Maybe<IProjectType>;
|
2280
|
-
integrationConfigurationId?: Maybe<Scalars['String']>;
|
2281
|
-
/** Predefined Project template */
|
2282
|
-
templateId?: Maybe<Scalars['String']>;
|
2283
|
-
orgName?: Maybe<Scalars['String']>;
|
2284
|
-
updatedAt?: Maybe<Scalars['DateTime']>;
|
2285
|
-
createdAt?: Maybe<Scalars['DateTime']>;
|
2286
|
-
};
|
2287
1889
|
export declare type IQuery = {
|
2288
1890
|
__typename?: 'Query';
|
2289
1891
|
GetSshKey?: Maybe<ISshKey>;
|
@@ -2311,9 +1913,6 @@ export declare type IQuery = {
|
|
2311
1913
|
getAccounts?: Maybe<Array<Maybe<IUserAccount>>>;
|
2312
1914
|
getAllCountries?: Maybe<Array<Maybe<ICountry>>>;
|
2313
1915
|
getAllIntegrationConfigurations?: Maybe<Array<Maybe<IIntegrationConfiguration>>>;
|
2314
|
-
getAsanaConnectionState?: Maybe<IAsanaConnection>;
|
2315
|
-
getAsanaWorkspaceProjects?: Maybe<Array<Maybe<IAsanaProjects>>>;
|
2316
|
-
getAsanaWorkspaces?: Maybe<Array<Maybe<IAsanaWorkspaces>>>;
|
2317
1916
|
getConfiguration?: Maybe<Array<Maybe<IConfiguration>>>;
|
2318
1917
|
getConfigurationData?: Maybe<IConfigurationData>;
|
2319
1918
|
getConfigurationPolicies?: Maybe<Array<Maybe<IConfigurationPolicy>>>;
|
@@ -2321,18 +1920,14 @@ export declare type IQuery = {
|
|
2321
1920
|
getContextData?: Maybe<IContext>;
|
2322
1921
|
getContextProperty?: Maybe<Scalars['AnyObject']>;
|
2323
1922
|
getContributionRoles?: Maybe<Array<Maybe<IContributionRoles>>>;
|
2324
|
-
getDefaultInvoiceNumber?: Maybe<Scalars['String']>;
|
2325
1923
|
getEnvironment?: Maybe<IEnvironment>;
|
2326
|
-
getFilteredProjects?: Maybe<Array<Maybe<IProjects>>>;
|
2327
1924
|
getIntegrationConfiguration?: Maybe<IIntegrationConfiguration>;
|
2328
|
-
getInvoices?: Maybe<Array<Maybe<IInvoiceType>>>;
|
2329
1925
|
getManageableOrganizations?: Maybe<Array<Maybe<IOrganization>>>;
|
2330
1926
|
getOrgContext?: Maybe<IContext>;
|
2331
1927
|
getOrgInvitationMembers?: Maybe<Array<Maybe<IInviteMember>>>;
|
2332
1928
|
getOrgNameFromContext?: Maybe<IContext>;
|
2333
1929
|
getOrgTeamInvitations?: Maybe<Array<Maybe<IOrganizationInvitation>>>;
|
2334
1930
|
getOrgUser?: Maybe<IOrgUser>;
|
2335
|
-
getOrganizationClients?: Maybe<Array<Maybe<IClient>>>;
|
2336
1931
|
getOrganizationConfigValue?: Maybe<Scalars['AnyObject']>;
|
2337
1932
|
getOrganizationDetail?: Maybe<IOrganization>;
|
2338
1933
|
getOrganizationDetailUnsecured?: Maybe<IOrganization>;
|
@@ -2340,10 +1935,8 @@ export declare type IQuery = {
|
|
2340
1935
|
getOrganizationMembers?: Maybe<Array<Maybe<IOrgMember>>>;
|
2341
1936
|
getOrganizationResourceContext?: Maybe<IOrganizationData>;
|
2342
1937
|
getOrganizationTeams?: Maybe<Array<Maybe<IAccountTeam>>>;
|
2343
|
-
getProjects?: Maybe<Array<Maybe<IProject_Output>>>;
|
2344
1938
|
getRole?: Maybe<IAccessRole>;
|
2345
1939
|
getRoles?: Maybe<Array<Maybe<IAccessRole>>>;
|
2346
|
-
getTasks?: Maybe<Array<Maybe<ITask>>>;
|
2347
1940
|
getTeam?: Maybe<IAccountTeam>;
|
2348
1941
|
getTeamContext?: Maybe<IContext>;
|
2349
1942
|
getTeamNameFromContext?: Maybe<IContext>;
|
@@ -2413,9 +2006,6 @@ export declare type IQuerygetAccountsArgs = {
|
|
2413
2006
|
export declare type IQuerygetAllCountriesArgs = {
|
2414
2007
|
criteria?: Maybe<Scalars['JSON']>;
|
2415
2008
|
};
|
2416
|
-
export declare type IQuerygetAsanaWorkspaceProjectsArgs = {
|
2417
|
-
workspaceId: Scalars['String'];
|
2418
|
-
};
|
2419
2009
|
export declare type IQuerygetConfigurationArgs = {
|
2420
2010
|
input?: Maybe<Array<Maybe<IConfigurationInput>>>;
|
2421
2011
|
};
|
@@ -2428,9 +2018,6 @@ export declare type IQuerygetConfigurationTargetArgs = {
|
|
2428
2018
|
export declare type IQuerygetContextPropertyArgs = {
|
2429
2019
|
keys?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2430
2020
|
};
|
2431
|
-
export declare type IQuerygetFilteredProjectsArgs = {
|
2432
|
-
filter: IProjectWhereInput;
|
2433
|
-
};
|
2434
2021
|
export declare type IQuerygetIntegrationConfigurationArgs = {
|
2435
2022
|
id: Scalars['String'];
|
2436
2023
|
};
|
@@ -2464,9 +2051,6 @@ export declare type IQuerygetRoleArgs = {
|
|
2464
2051
|
export declare type IQuerygetRolesArgs = {
|
2465
2052
|
input?: Maybe<Array<Maybe<IRoleInput>>>;
|
2466
2053
|
};
|
2467
|
-
export declare type IQuerygetTasksArgs = {
|
2468
|
-
projectId?: Maybe<Scalars['String']>;
|
2469
|
-
};
|
2470
2054
|
export declare type IQuerygetTeamArgs = {
|
2471
2055
|
orgName: Scalars['String'];
|
2472
2056
|
teamName: Scalars['String'];
|
@@ -2685,15 +2269,6 @@ export declare type ISettingsSection = {
|
|
2685
2269
|
settings?: Maybe<Array<Maybe<IContributionSettings>>>;
|
2686
2270
|
};
|
2687
2271
|
export declare type ISettingsSubject = IUserSettings | IApplicationSettings | IMachineSettings | IOrganizationResourceSettings | IGlobalSettings | IOrganizationSettings | IMemorySettings | IDefaultSettings;
|
2688
|
-
export declare type ISocialConnect = {
|
2689
|
-
__typename?: 'SocialConnect';
|
2690
|
-
facebook?: Maybe<Scalars['String']>;
|
2691
|
-
twitter?: Maybe<Scalars['String']>;
|
2692
|
-
};
|
2693
|
-
export declare type ISocialConnect_Input = {
|
2694
|
-
facebook?: Maybe<Scalars['String']>;
|
2695
|
-
twitter?: Maybe<Scalars['String']>;
|
2696
|
-
};
|
2697
2272
|
export declare type ISshKey = {
|
2698
2273
|
__typename?: 'SshKey';
|
2699
2274
|
id?: Maybe<Scalars['String']>;
|
@@ -2783,16 +2358,6 @@ export declare type ISubscriptionSubscribeToPermissionUpdateArgs = {
|
|
2783
2358
|
export declare type ISubscriptionSubscribeToPolicyUpdateArgs = {
|
2784
2359
|
orgName?: Maybe<Scalars['String']>;
|
2785
2360
|
};
|
2786
|
-
export declare type ITask = {
|
2787
|
-
__typename?: 'Task';
|
2788
|
-
id?: Maybe<Scalars['String']>;
|
2789
|
-
projectId?: Maybe<Scalars['String']>;
|
2790
|
-
taskName?: Maybe<Scalars['String']>;
|
2791
|
-
};
|
2792
|
-
export declare type ITaskRequest = {
|
2793
|
-
projectId?: Maybe<Scalars['String']>;
|
2794
|
-
taskName?: Maybe<Scalars['String']>;
|
2795
|
-
};
|
2796
2361
|
export declare type ITeamCreateRequest = {
|
2797
2362
|
name?: Maybe<Scalars['String']>;
|
2798
2363
|
title: Scalars['String'];
|
@@ -2904,16 +2469,6 @@ export declare type ITeamUpdateRequest = {
|
|
2904
2469
|
payload?: Maybe<IAccountTeam_Input>;
|
2905
2470
|
requestedUserId?: Maybe<Scalars['String']>;
|
2906
2471
|
};
|
2907
|
-
export declare type ITemplate = {
|
2908
|
-
templateId?: Maybe<Scalars['String']>;
|
2909
|
-
name?: Maybe<Scalars['String']>;
|
2910
|
-
text?: Maybe<Scalars['String']>;
|
2911
|
-
html?: Maybe<Scalars['String']>;
|
2912
|
-
engine?: Maybe<Scalars['String']>;
|
2913
|
-
topic?: Maybe<Scalars['String']>;
|
2914
|
-
description?: Maybe<Scalars['String']>;
|
2915
|
-
variables?: Maybe<Scalars['AnyObject']>;
|
2916
|
-
};
|
2917
2472
|
/** Address State Create Input */
|
2918
2473
|
export declare type ITerritorialStateInput = {
|
2919
2474
|
/** Name of the country to display */
|
@@ -2951,26 +2506,6 @@ export declare const enum ITokenTypesEnum {
|
|
2951
2506
|
EMAIL_VERIFICATION = "EMAIL_VERIFICATION",
|
2952
2507
|
PASSWORD_RESET = "PASSWORD_RESET"
|
2953
2508
|
}
|
2954
|
-
export declare type IUpdateProject_Input = {
|
2955
|
-
name: Scalars['String'];
|
2956
|
-
clientId?: Maybe<Scalars['String']>;
|
2957
|
-
teams?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2958
|
-
orgName?: Maybe<Scalars['String']>;
|
2959
|
-
integrationConfigurationId?: Maybe<Scalars['String']>;
|
2960
|
-
};
|
2961
|
-
export declare type IUpdatedClient_Input = {
|
2962
|
-
name?: Maybe<IName_Input>;
|
2963
|
-
companyName?: Maybe<Scalars['String']>;
|
2964
|
-
displayName?: Maybe<Scalars['String']>;
|
2965
|
-
email?: Maybe<Scalars['String']>;
|
2966
|
-
clientPhone?: Maybe<IClientPhone_Input>;
|
2967
|
-
website?: Maybe<Scalars['String']>;
|
2968
|
-
currency?: Maybe<Scalars['String']>;
|
2969
|
-
socialConnect?: Maybe<ISocialConnect_Input>;
|
2970
|
-
billingAddress?: Maybe<IAddressType_Input>;
|
2971
|
-
shippingAddress?: Maybe<IAddressType_Input>;
|
2972
|
-
orgName?: Maybe<Scalars['String']>;
|
2973
|
-
};
|
2974
2509
|
export declare type IUserAccount = INode & {
|
2975
2510
|
__typename?: 'UserAccount';
|
2976
2511
|
id: Scalars['ID'];
|
@@ -3020,7 +2555,8 @@ export declare type IUserAccountRemoveRequest = {
|
|
3020
2555
|
};
|
3021
2556
|
export declare type IUserAccountRemovedEvent = {
|
3022
2557
|
__typename?: 'UserAccountRemovedEvent';
|
3023
|
-
id
|
2558
|
+
id: Scalars['String'];
|
2559
|
+
userId: Scalars['String'];
|
3024
2560
|
email: Scalars['String'];
|
3025
2561
|
username: Scalars['String'];
|
3026
2562
|
notificationEmail?: Maybe<Scalars['String']>;
|
@@ -3042,6 +2578,32 @@ export declare type IUserAccount_Input = {
|
|
3042
2578
|
username?: Maybe<Scalars['String']>;
|
3043
2579
|
tokens?: Maybe<Array<Maybe<IUserTokenInput>>>;
|
3044
2580
|
};
|
2581
|
+
export declare type IUserAuth0Info = {
|
2582
|
+
__typename?: 'UserAuth0Info';
|
2583
|
+
auth0Id?: Maybe<Scalars['String']>;
|
2584
|
+
sessionInfo?: Maybe<Array<Maybe<IUserAuth0SessionInfo>>>;
|
2585
|
+
integrations?: Maybe<Array<Maybe<IUserAuth0Integrations>>>;
|
2586
|
+
};
|
2587
|
+
export declare type IUserAuth0Integrations = {
|
2588
|
+
__typename?: 'UserAuth0Integrations';
|
2589
|
+
provider?: Maybe<Scalars['String']>;
|
2590
|
+
refreshToken?: Maybe<Scalars['String']>;
|
2591
|
+
};
|
2592
|
+
export declare type IUserAuth0SessionDeviceInfo = {
|
2593
|
+
__typename?: 'UserAuth0SessionDeviceInfo';
|
2594
|
+
os?: Maybe<Scalars['String']>;
|
2595
|
+
deviceName?: Maybe<Scalars['String']>;
|
2596
|
+
browserName?: Maybe<Scalars['String']>;
|
2597
|
+
isMobile: Scalars['Boolean'];
|
2598
|
+
};
|
2599
|
+
export declare type IUserAuth0SessionInfo = {
|
2600
|
+
__typename?: 'UserAuth0SessionInfo';
|
2601
|
+
sessionId?: Maybe<Scalars['String']>;
|
2602
|
+
deviceInfo?: Maybe<IUserAuth0SessionDeviceInfo>;
|
2603
|
+
lastLoginAt?: Maybe<Scalars['Date']>;
|
2604
|
+
lastLoginIp?: Maybe<Scalars['String']>;
|
2605
|
+
refreshToken?: Maybe<Scalars['String']>;
|
2606
|
+
};
|
3045
2607
|
export declare type IUserAuth0UpdateFields = {
|
3046
2608
|
family_name?: Maybe<Scalars['String']>;
|
3047
2609
|
given_name?: Maybe<Scalars['String']>;
|
@@ -3179,6 +2741,10 @@ export declare type IUserProfile = IIAuth0User & IIAuth0UserProfile & IIAuth0Tok
|
|
3179
2741
|
at_hash?: Maybe<Scalars['String']>;
|
3180
2742
|
nonce?: Maybe<Scalars['String']>;
|
3181
2743
|
};
|
2744
|
+
export declare type IUserSessionId = {
|
2745
|
+
__typename?: 'UserSessionId';
|
2746
|
+
sessionId?: Maybe<Scalars['String']>;
|
2747
|
+
};
|
3182
2748
|
/** UserSettings is a combination of ApplicationSettings and MachineSettings */
|
3183
2749
|
export declare type IUserSettings = IISettingsSubject & {
|
3184
2750
|
__typename?: 'UserSettings';
|
@@ -3313,18 +2879,6 @@ export declare type IAccountOnBoardingMutationVariables = Exact<{
|
|
3313
2879
|
export declare type IAccountOnBoardingMutation = ({
|
3314
2880
|
__typename?: 'Mutation';
|
3315
2881
|
} & Pick<IMutation, 'accountOnBoarding'>);
|
3316
|
-
export declare type IAddClientMutationVariables = Exact<{
|
3317
|
-
client: IClientAddRequest;
|
3318
|
-
}>;
|
3319
|
-
export declare type IAddClientMutation = ({
|
3320
|
-
__typename?: 'Mutation';
|
3321
|
-
} & Pick<IMutation, 'addClient'>);
|
3322
|
-
export declare type IAddOrgProjectMutationVariables = Exact<{
|
3323
|
-
project: IProjectAddRequest;
|
3324
|
-
}>;
|
3325
|
-
export declare type IAddOrgProjectMutation = ({
|
3326
|
-
__typename?: 'Mutation';
|
3327
|
-
} & Pick<IMutation, 'addOrgProject'>);
|
3328
2882
|
export declare type IAddTeamMembersMutationVariables = Exact<{
|
3329
2883
|
orgName: Scalars['String'];
|
3330
2884
|
teamName: Scalars['String'];
|
@@ -3349,12 +2903,6 @@ export declare type IchangeOrgMemberRoleMutationVariables = Exact<{
|
|
3349
2903
|
export declare type IchangeOrgMemberRoleMutation = ({
|
3350
2904
|
__typename?: 'Mutation';
|
3351
2905
|
} & Pick<IMutation, 'changeOrgMemberRole'>);
|
3352
|
-
export declare type ICreateInvoiceMutationVariables = Exact<{
|
3353
|
-
invoice: IInvoiceCreateRequest;
|
3354
|
-
}>;
|
3355
|
-
export declare type ICreateInvoiceMutation = ({
|
3356
|
-
__typename?: 'Mutation';
|
3357
|
-
} & Pick<IMutation, 'createInvoice'>);
|
3358
2906
|
export declare type IcreateOrganizationMutationVariables = Exact<{
|
3359
2907
|
organization: IOrganizationCreateRequest;
|
3360
2908
|
}>;
|
@@ -3365,12 +2913,6 @@ export declare type IcreateOrganizationMutation = ({
|
|
3365
2913
|
__typename?: 'Organization';
|
3366
2914
|
} & Pick<IOrganization, 'id' | 'name' | 'description' | 'picture' | 'namespace' | 'orgUserCount'>)>;
|
3367
2915
|
});
|
3368
|
-
export declare type ICreateTaskMutationVariables = Exact<{
|
3369
|
-
request?: Maybe<ITaskRequest>;
|
3370
|
-
}>;
|
3371
|
-
export declare type ICreateTaskMutation = ({
|
3372
|
-
__typename?: 'Mutation';
|
3373
|
-
} & Pick<IMutation, 'createTask'>);
|
3374
2916
|
export declare type IcreateTeamMutationVariables = Exact<{
|
3375
2917
|
request: ITeamCreationRequest;
|
3376
2918
|
}>;
|
@@ -3403,18 +2945,6 @@ export declare type IregisterAccountUserMutation = ({
|
|
3403
2945
|
__typename?: 'UserAccount';
|
3404
2946
|
} & Pick<IUserAccount, 'id' | 'email' | 'username'>)>;
|
3405
2947
|
});
|
3406
|
-
export declare type IRemoveInvoiceMutationVariables = Exact<{
|
3407
|
-
id?: Maybe<Scalars['String']>;
|
3408
|
-
}>;
|
3409
|
-
export declare type IRemoveInvoiceMutation = ({
|
3410
|
-
__typename?: 'Mutation';
|
3411
|
-
} & Pick<IMutation, 'removeInvoice'>);
|
3412
|
-
export declare type IRemoveOrgClientMutationVariables = Exact<{
|
3413
|
-
clientId: Scalars['String'];
|
3414
|
-
}>;
|
3415
|
-
export declare type IRemoveOrgClientMutation = ({
|
3416
|
-
__typename?: 'Mutation';
|
3417
|
-
} & Pick<IMutation, 'removeOrgClient'>);
|
3418
2948
|
export declare type IRemoveOrgMemberMutationVariables = Exact<{
|
3419
2949
|
memberId: Scalars['String'];
|
3420
2950
|
}>;
|
@@ -3427,12 +2957,6 @@ export declare type IremoveOrganizationMutationVariables = Exact<{
|
|
3427
2957
|
export declare type IremoveOrganizationMutation = ({
|
3428
2958
|
__typename?: 'Mutation';
|
3429
2959
|
} & Pick<IMutation, 'removeOrganization'>);
|
3430
|
-
export declare type IRemoveTaskMutationVariables = Exact<{
|
3431
|
-
id: Scalars['String'];
|
3432
|
-
}>;
|
3433
|
-
export declare type IRemoveTaskMutation = ({
|
3434
|
-
__typename?: 'Mutation';
|
3435
|
-
} & Pick<IMutation, 'removeTask'>);
|
3436
2960
|
export declare type IremoveTeamMutationVariables = Exact<{
|
3437
2961
|
teamId: Scalars['String'];
|
3438
2962
|
}>;
|
@@ -3471,51 +2995,12 @@ export declare type ISendUserPasswordResetEmailMutationVariables = Exact<{
|
|
3471
2995
|
export declare type ISendUserPasswordResetEmailMutation = ({
|
3472
2996
|
__typename?: 'Mutation';
|
3473
2997
|
} & Pick<IMutation, 'sendUserPasswordResetEmail'>);
|
3474
|
-
export declare type ISendInvoiceMailMutationVariables = Exact<{
|
3475
|
-
request: IInvoiceMailRequest;
|
3476
|
-
}>;
|
3477
|
-
export declare type ISendInvoiceMailMutation = ({
|
3478
|
-
__typename?: 'Mutation';
|
3479
|
-
} & Pick<IMutation, 'sendInvoiceMail'>);
|
3480
2998
|
export declare type IsendOrganizationInvitationMutationVariables = Exact<{
|
3481
2999
|
request: IOrganizationInvitationRequest;
|
3482
3000
|
}>;
|
3483
3001
|
export declare type IsendOrganizationInvitationMutation = ({
|
3484
3002
|
__typename?: 'Mutation';
|
3485
3003
|
} & Pick<IMutation, 'sendOrganizationInvitation'>);
|
3486
|
-
export declare type IUpdateInvoiceMutationVariables = Exact<{
|
3487
|
-
id?: Maybe<Scalars['String']>;
|
3488
|
-
invoice?: Maybe<IInvoiceUpdateRequest>;
|
3489
|
-
}>;
|
3490
|
-
export declare type IUpdateInvoiceMutation = ({
|
3491
|
-
__typename?: 'Mutation';
|
3492
|
-
} & Pick<IMutation, 'updateInvoice'>);
|
3493
|
-
export declare type IUpdateOrgClientMutationVariables = Exact<{
|
3494
|
-
updateRequest?: Maybe<IClientUpdateRequest>;
|
3495
|
-
}>;
|
3496
|
-
export declare type IUpdateOrgClientMutation = ({
|
3497
|
-
__typename?: 'Mutation';
|
3498
|
-
} & {
|
3499
|
-
updateOrgClient?: Maybe<({
|
3500
|
-
__typename?: 'Client';
|
3501
|
-
} & Pick<IClient, 'id' | 'companyName' | 'displayName' | 'email' | 'website' | 'currency' | 'orgName'> & {
|
3502
|
-
name: ({
|
3503
|
-
__typename?: 'NameType';
|
3504
|
-
} & Pick<INameType, 'salutation' | 'firstName' | 'lastName'>);
|
3505
|
-
clientPhone?: Maybe<({
|
3506
|
-
__typename?: 'ClientPhone';
|
3507
|
-
} & Pick<IClientPhone, 'workPhone' | 'mobile'>)>;
|
3508
|
-
socialConnect?: Maybe<({
|
3509
|
-
__typename?: 'SocialConnect';
|
3510
|
-
} & Pick<ISocialConnect, 'facebook' | 'twitter'>)>;
|
3511
|
-
billingAddress?: Maybe<({
|
3512
|
-
__typename?: 'AddressType';
|
3513
|
-
} & Pick<IAddressType, 'attention' | 'address' | 'city' | 'state' | 'country' | 'zip'>)>;
|
3514
|
-
shippingAddress?: Maybe<({
|
3515
|
-
__typename?: 'AddressType';
|
3516
|
-
} & Pick<IAddressType, 'attention' | 'address' | 'city' | 'state' | 'country' | 'zip'>)>;
|
3517
|
-
})>;
|
3518
|
-
});
|
3519
3004
|
export declare type IupdateOrgMemberTeamsMutationVariables = Exact<{
|
3520
3005
|
userId: Scalars['String'];
|
3521
3006
|
orgName: Scalars['String'];
|
@@ -3525,13 +3010,6 @@ export declare type IupdateOrgMemberTeamsMutationVariables = Exact<{
|
|
3525
3010
|
export declare type IupdateOrgMemberTeamsMutation = ({
|
3526
3011
|
__typename?: 'Mutation';
|
3527
3012
|
} & Pick<IMutation, 'updateOrgMemberTeams'>);
|
3528
|
-
export declare type IUpdateOrgProjectMutationVariables = Exact<{
|
3529
|
-
where: IProjectWhereInput;
|
3530
|
-
project?: Maybe<IUpdateProject_Input>;
|
3531
|
-
}>;
|
3532
|
-
export declare type IUpdateOrgProjectMutation = ({
|
3533
|
-
__typename?: 'Mutation';
|
3534
|
-
} & Pick<IMutation, 'updateOrgProject'>);
|
3535
3013
|
export declare type IupdateOrganizationMutationVariables = Exact<{
|
3536
3014
|
organization: IOrganizationUpdateRequest;
|
3537
3015
|
}>;
|
@@ -3542,20 +3020,6 @@ export declare type IupdateOrganizationMutation = ({
|
|
3542
3020
|
__typename?: 'Organization';
|
3543
3021
|
} & Pick<IOrganization, 'id' | 'name' | 'description' | 'picture' | 'namespace' | 'orgUserCount'>)>;
|
3544
3022
|
});
|
3545
|
-
export declare type IUpdateProjectStatusMutationVariables = Exact<{
|
3546
|
-
id: Scalars['String'];
|
3547
|
-
status?: Maybe<Scalars['String']>;
|
3548
|
-
}>;
|
3549
|
-
export declare type IUpdateProjectStatusMutation = ({
|
3550
|
-
__typename?: 'Mutation';
|
3551
|
-
} & Pick<IMutation, 'updateProjectStatus'>);
|
3552
|
-
export declare type IUpdateTaskMutationVariables = Exact<{
|
3553
|
-
id: Scalars['String'];
|
3554
|
-
request?: Maybe<ITaskRequest>;
|
3555
|
-
}>;
|
3556
|
-
export declare type IUpdateTaskMutation = ({
|
3557
|
-
__typename?: 'Mutation';
|
3558
|
-
} & Pick<IMutation, 'updateTask'>);
|
3559
3023
|
export declare type IupdateTeamConfigurationMutationVariables = Exact<{
|
3560
3024
|
key: Scalars['String'];
|
3561
3025
|
value: Scalars['AnyObject'];
|
@@ -3572,17 +3036,6 @@ export declare type IupdateUserAccountMutationVariables = Exact<{
|
|
3572
3036
|
export declare type IupdateUserAccountMutation = ({
|
3573
3037
|
__typename?: 'Mutation';
|
3574
3038
|
} & Pick<IMutation, 'updateUserAccount'>);
|
3575
|
-
export declare type IUpsertProjectThroughIntegrationMutationVariables = Exact<{
|
3576
|
-
where: IProjectWhereInput;
|
3577
|
-
project?: Maybe<IUpdateProject_Input>;
|
3578
|
-
}>;
|
3579
|
-
export declare type IUpsertProjectThroughIntegrationMutation = ({
|
3580
|
-
__typename?: 'Mutation';
|
3581
|
-
} & {
|
3582
|
-
upsertProjectThroughIntegration?: Maybe<({
|
3583
|
-
__typename?: 'Projects';
|
3584
|
-
} & Pick<IProjects, 'id' | 'name' | 'clientId' | 'teams' | 'status' | 'orgName' | 'integrationConfigurationId'>)>;
|
3585
|
-
});
|
3586
3039
|
export declare type IVerifyUserEmailVerificationTokenMutationVariables = Exact<{
|
3587
3040
|
token?: Maybe<Scalars['String']>;
|
3588
3041
|
}>;
|
@@ -3633,107 +3086,6 @@ export declare type IGetAllCountriesQuery = ({
|
|
3633
3086
|
__typename?: 'Country';
|
3634
3087
|
} & Pick<ICountry, 'id' | 'name' | 'phoneCode'>)>>>;
|
3635
3088
|
});
|
3636
|
-
export declare type IGetAsanaConnectionStateQueryVariables = Exact<{
|
3637
|
-
[key: string]: never;
|
3638
|
-
}>;
|
3639
|
-
export declare type IGetAsanaConnectionStateQuery = ({
|
3640
|
-
__typename?: 'Query';
|
3641
|
-
} & {
|
3642
|
-
getAsanaConnectionState?: Maybe<({
|
3643
|
-
__typename?: 'AsanaConnection';
|
3644
|
-
} & {
|
3645
|
-
asana?: Maybe<({
|
3646
|
-
__typename?: 'AsanaConnectionState';
|
3647
|
-
} & Pick<IAsanaConnectionState, 'status'> & {
|
3648
|
-
user?: Maybe<({
|
3649
|
-
__typename?: 'AsanaUser';
|
3650
|
-
} & Pick<IAsanaUser, 'user_id' | 'username'>)>;
|
3651
|
-
})>;
|
3652
|
-
})>;
|
3653
|
-
});
|
3654
|
-
export declare type IGetAsanaWorkspaceProjectsQueryVariables = Exact<{
|
3655
|
-
workspaceId: Scalars['String'];
|
3656
|
-
}>;
|
3657
|
-
export declare type IGetAsanaWorkspaceProjectsQuery = ({
|
3658
|
-
__typename?: 'Query';
|
3659
|
-
} & {
|
3660
|
-
getAsanaWorkspaceProjects?: Maybe<Array<Maybe<({
|
3661
|
-
__typename?: 'AsanaProjects';
|
3662
|
-
} & Pick<IAsanaProjects, 'name' | 'gid'>)>>>;
|
3663
|
-
});
|
3664
|
-
export declare type IGetAsanaWorkspacesQueryVariables = Exact<{
|
3665
|
-
[key: string]: never;
|
3666
|
-
}>;
|
3667
|
-
export declare type IGetAsanaWorkspacesQuery = ({
|
3668
|
-
__typename?: 'Query';
|
3669
|
-
} & {
|
3670
|
-
getAsanaWorkspaces?: Maybe<Array<Maybe<({
|
3671
|
-
__typename?: 'AsanaWorkspaces';
|
3672
|
-
} & Pick<IAsanaWorkspaces, 'name' | 'gid'>)>>>;
|
3673
|
-
});
|
3674
|
-
export declare type IGetDefaultInvoiceNumberQueryVariables = Exact<{
|
3675
|
-
[key: string]: never;
|
3676
|
-
}>;
|
3677
|
-
export declare type IGetDefaultInvoiceNumberQuery = ({
|
3678
|
-
__typename?: 'Query';
|
3679
|
-
} & Pick<IQuery, 'getDefaultInvoiceNumber'>);
|
3680
|
-
export declare type IGetFilteredProjectsQueryVariables = Exact<{
|
3681
|
-
filter: IProjectWhereInput;
|
3682
|
-
}>;
|
3683
|
-
export declare type IGetFilteredProjectsQuery = ({
|
3684
|
-
__typename?: 'Query';
|
3685
|
-
} & {
|
3686
|
-
getFilteredProjects?: Maybe<Array<Maybe<({
|
3687
|
-
__typename?: 'Projects';
|
3688
|
-
} & Pick<IProjects, 'id' | 'name' | 'clientId' | 'teams' | 'status' | 'orgName' | 'integrationConfigurationId'>)>>>;
|
3689
|
-
});
|
3690
|
-
export declare type IGetInvoicesQueryVariables = Exact<{
|
3691
|
-
[key: string]: never;
|
3692
|
-
}>;
|
3693
|
-
export declare type IGetInvoicesQuery = ({
|
3694
|
-
__typename?: 'Query';
|
3695
|
-
} & {
|
3696
|
-
getInvoices?: Maybe<Array<Maybe<({
|
3697
|
-
__typename?: 'InvoiceType';
|
3698
|
-
} & Pick<IInvoiceType, 'id' | 'comment' | 'currency' | 'discount' | 'invoiceDate' | 'terms' | 'dueDate' | 'invoiceNumber' | 'orderNumber' | 'logo' | 'overdue' | 'paymentStatus' | 'sendingStatus' | 'subTotal' | 'tax' | 'subject' | 'conditions' | 'status' | 'timezoneOffset' | 'total' | 'orgName'> & {
|
3699
|
-
from?: Maybe<({
|
3700
|
-
__typename?: 'MemberInvoice';
|
3701
|
-
} & Pick<IMemberInvoice, 'id' | 'name' | 'companyName' | 'email'> & {
|
3702
|
-
phone?: Maybe<({
|
3703
|
-
__typename?: 'ClientPhone';
|
3704
|
-
} & Pick<IClientPhone, 'workPhone' | 'mobile'>)>;
|
3705
|
-
address?: Maybe<({
|
3706
|
-
__typename?: 'AddressType';
|
3707
|
-
} & Pick<IAddressType, 'attention' | 'address' | 'city' | 'state' | 'country' | 'zip'>)>;
|
3708
|
-
})>;
|
3709
|
-
invoiceVendor?: Maybe<({
|
3710
|
-
__typename?: 'MemberInvoice';
|
3711
|
-
} & Pick<IMemberInvoice, 'id' | 'name' | 'companyName' | 'email'> & {
|
3712
|
-
phone?: Maybe<({
|
3713
|
-
__typename?: 'ClientPhone';
|
3714
|
-
} & Pick<IClientPhone, 'workPhone' | 'mobile'>)>;
|
3715
|
-
address?: Maybe<({
|
3716
|
-
__typename?: 'AddressType';
|
3717
|
-
} & Pick<IAddressType, 'attention' | 'address' | 'city' | 'state' | 'country' | 'zip'>)>;
|
3718
|
-
})>;
|
3719
|
-
projects?: Maybe<Array<Maybe<({
|
3720
|
-
__typename?: 'ProjectInvoice';
|
3721
|
-
} & Pick<IProjectInvoice, 'id' | 'hours' | 'projectName' | 'rate' | 'subTotal'>)>>>;
|
3722
|
-
to?: Maybe<({
|
3723
|
-
__typename?: 'CustomerInvoice';
|
3724
|
-
} & Pick<ICustomerInvoice, 'id' | 'username' | 'companyName' | 'email'> & {
|
3725
|
-
phone?: Maybe<({
|
3726
|
-
__typename?: 'ClientPhone';
|
3727
|
-
} & Pick<IClientPhone, 'workPhone' | 'mobile'>)>;
|
3728
|
-
billingAddress?: Maybe<({
|
3729
|
-
__typename?: 'AddressType';
|
3730
|
-
} & Pick<IAddressType, 'attention' | 'address' | 'city' | 'state' | 'country' | 'zip'>)>;
|
3731
|
-
shippingAddress?: Maybe<({
|
3732
|
-
__typename?: 'AddressType';
|
3733
|
-
} & Pick<IAddressType, 'attention' | 'address' | 'city' | 'state' | 'country' | 'zip'>)>;
|
3734
|
-
})>;
|
3735
|
-
})>>>;
|
3736
|
-
});
|
3737
3089
|
export declare type IGetManageableOrganizationsQueryVariables = Exact<{
|
3738
3090
|
[key: string]: never;
|
3739
3091
|
}>;
|
@@ -3788,32 +3140,6 @@ export declare type IGetOrgUserQuery = ({
|
|
3788
3140
|
__typename?: 'OrgUser';
|
3789
3141
|
} & IOrgUserFragment)>;
|
3790
3142
|
});
|
3791
|
-
export declare type IGetOrganizationClientsQueryVariables = Exact<{
|
3792
|
-
[key: string]: never;
|
3793
|
-
}>;
|
3794
|
-
export declare type IGetOrganizationClientsQuery = ({
|
3795
|
-
__typename?: 'Query';
|
3796
|
-
} & {
|
3797
|
-
getOrganizationClients?: Maybe<Array<Maybe<({
|
3798
|
-
__typename?: 'Client';
|
3799
|
-
} & Pick<IClient, 'id' | 'companyName' | 'displayName' | 'email' | 'website' | 'currency' | 'orgName'> & {
|
3800
|
-
name: ({
|
3801
|
-
__typename?: 'NameType';
|
3802
|
-
} & Pick<INameType, 'salutation' | 'firstName' | 'lastName'>);
|
3803
|
-
clientPhone?: Maybe<({
|
3804
|
-
__typename?: 'ClientPhone';
|
3805
|
-
} & Pick<IClientPhone, 'workPhone' | 'mobile'>)>;
|
3806
|
-
socialConnect?: Maybe<({
|
3807
|
-
__typename?: 'SocialConnect';
|
3808
|
-
} & Pick<ISocialConnect, 'facebook' | 'twitter'>)>;
|
3809
|
-
billingAddress?: Maybe<({
|
3810
|
-
__typename?: 'AddressType';
|
3811
|
-
} & Pick<IAddressType, 'attention' | 'address' | 'city' | 'state' | 'country' | 'zip'>)>;
|
3812
|
-
shippingAddress?: Maybe<({
|
3813
|
-
__typename?: 'AddressType';
|
3814
|
-
} & Pick<IAddressType, 'attention' | 'address' | 'city' | 'state' | 'country' | 'zip'>)>;
|
3815
|
-
})>>>;
|
3816
|
-
});
|
3817
3143
|
export declare type IGetOrganizationMembersWithNameQueryVariables = Exact<{
|
3818
3144
|
where: IOrgDetailWhere;
|
3819
3145
|
}>;
|
@@ -3846,26 +3172,6 @@ export declare type IgetOrganizationTeamsQuery = ({
|
|
3846
3172
|
} & Pick<ITeamMember, 'id' | 'name' | 'status'>)>>>;
|
3847
3173
|
})>>>;
|
3848
3174
|
});
|
3849
|
-
export declare type IGetProjectsQueryVariables = Exact<{
|
3850
|
-
[key: string]: never;
|
3851
|
-
}>;
|
3852
|
-
export declare type IGetProjectsQuery = ({
|
3853
|
-
__typename?: 'Query';
|
3854
|
-
} & {
|
3855
|
-
getProjects?: Maybe<Array<Maybe<({
|
3856
|
-
__typename?: 'Project_Output';
|
3857
|
-
} & Pick<IProject_Output, 'id' | 'name' | 'clientId' | 'teams' | 'status' | 'orgName'>)>>>;
|
3858
|
-
});
|
3859
|
-
export declare type IGetTasksQueryVariables = Exact<{
|
3860
|
-
[key: string]: never;
|
3861
|
-
}>;
|
3862
|
-
export declare type IGetTasksQuery = ({
|
3863
|
-
__typename?: 'Query';
|
3864
|
-
} & {
|
3865
|
-
getTasks?: Maybe<Array<Maybe<({
|
3866
|
-
__typename?: 'Task';
|
3867
|
-
} & Pick<ITask, 'id' | 'projectId' | 'taskName'>)>>>;
|
3868
|
-
});
|
3869
3175
|
export declare type IgetTeamQueryVariables = Exact<{
|
3870
3176
|
orgName: Scalars['String'];
|
3871
3177
|
teamName: Scalars['String'];
|
@@ -5199,54 +4505,6 @@ export declare function useAccountOnBoardingMutation(baseOptions?: Apollo.Mutati
|
|
5199
4505
|
export declare type AccountOnBoardingMutationHookResult = ReturnType<typeof useAccountOnBoardingMutation>;
|
5200
4506
|
export declare type AccountOnBoardingMutationResult = Apollo.MutationResult<IAccountOnBoardingMutation>;
|
5201
4507
|
export declare type AccountOnBoardingMutationOptions = Apollo.BaseMutationOptions<IAccountOnBoardingMutation, IAccountOnBoardingMutationVariables>;
|
5202
|
-
export declare const AddClientDocument: DocumentNode;
|
5203
|
-
/**
|
5204
|
-
* __useAddClientMutation__
|
5205
|
-
*
|
5206
|
-
* To run a mutation, you first call `useAddClientMutation` within a React component and pass it any options that fit your needs.
|
5207
|
-
* When your component renders, `useAddClientMutation` returns a tuple that includes:
|
5208
|
-
* - A mutate function that you can call at any time to execute the mutation
|
5209
|
-
* - An object with fields that represent the current status of the mutation's execution
|
5210
|
-
*
|
5211
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
5212
|
-
*
|
5213
|
-
* @example
|
5214
|
-
* const [addClientMutation, { data, loading, error }] = useAddClientMutation({
|
5215
|
-
* variables: {
|
5216
|
-
* client: // value for 'client'
|
5217
|
-
* },
|
5218
|
-
* });
|
5219
|
-
*/
|
5220
|
-
export declare function useAddClientMutation(baseOptions?: Apollo.MutationHookOptions<IAddClientMutation, IAddClientMutationVariables>): Apollo.MutationTuple<IAddClientMutation, Exact<{
|
5221
|
-
client: IClientAddRequest;
|
5222
|
-
}>>;
|
5223
|
-
export declare type AddClientMutationHookResult = ReturnType<typeof useAddClientMutation>;
|
5224
|
-
export declare type AddClientMutationResult = Apollo.MutationResult<IAddClientMutation>;
|
5225
|
-
export declare type AddClientMutationOptions = Apollo.BaseMutationOptions<IAddClientMutation, IAddClientMutationVariables>;
|
5226
|
-
export declare const AddOrgProjectDocument: DocumentNode;
|
5227
|
-
/**
|
5228
|
-
* __useAddOrgProjectMutation__
|
5229
|
-
*
|
5230
|
-
* To run a mutation, you first call `useAddOrgProjectMutation` within a React component and pass it any options that fit your needs.
|
5231
|
-
* When your component renders, `useAddOrgProjectMutation` returns a tuple that includes:
|
5232
|
-
* - A mutate function that you can call at any time to execute the mutation
|
5233
|
-
* - An object with fields that represent the current status of the mutation's execution
|
5234
|
-
*
|
5235
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
5236
|
-
*
|
5237
|
-
* @example
|
5238
|
-
* const [addOrgProjectMutation, { data, loading, error }] = useAddOrgProjectMutation({
|
5239
|
-
* variables: {
|
5240
|
-
* project: // value for 'project'
|
5241
|
-
* },
|
5242
|
-
* });
|
5243
|
-
*/
|
5244
|
-
export declare function useAddOrgProjectMutation(baseOptions?: Apollo.MutationHookOptions<IAddOrgProjectMutation, IAddOrgProjectMutationVariables>): Apollo.MutationTuple<IAddOrgProjectMutation, Exact<{
|
5245
|
-
project: IProjectAddRequest;
|
5246
|
-
}>>;
|
5247
|
-
export declare type AddOrgProjectMutationHookResult = ReturnType<typeof useAddOrgProjectMutation>;
|
5248
|
-
export declare type AddOrgProjectMutationResult = Apollo.MutationResult<IAddOrgProjectMutation>;
|
5249
|
-
export declare type AddOrgProjectMutationOptions = Apollo.BaseMutationOptions<IAddOrgProjectMutation, IAddOrgProjectMutationVariables>;
|
5250
4508
|
export declare const AddTeamMembersDocument: DocumentNode;
|
5251
4509
|
/**
|
5252
4510
|
* __useAddTeamMembersMutation__
|
@@ -5331,30 +4589,6 @@ export declare function usechangeOrgMemberRoleMutation(baseOptions?: Apollo.Muta
|
|
5331
4589
|
export declare type changeOrgMemberRoleMutationHookResult = ReturnType<typeof usechangeOrgMemberRoleMutation>;
|
5332
4590
|
export declare type changeOrgMemberRoleMutationResult = Apollo.MutationResult<IchangeOrgMemberRoleMutation>;
|
5333
4591
|
export declare type changeOrgMemberRoleMutationOptions = Apollo.BaseMutationOptions<IchangeOrgMemberRoleMutation, IchangeOrgMemberRoleMutationVariables>;
|
5334
|
-
export declare const CreateInvoiceDocument: DocumentNode;
|
5335
|
-
/**
|
5336
|
-
* __useCreateInvoiceMutation__
|
5337
|
-
*
|
5338
|
-
* To run a mutation, you first call `useCreateInvoiceMutation` within a React component and pass it any options that fit your needs.
|
5339
|
-
* When your component renders, `useCreateInvoiceMutation` returns a tuple that includes:
|
5340
|
-
* - A mutate function that you can call at any time to execute the mutation
|
5341
|
-
* - An object with fields that represent the current status of the mutation's execution
|
5342
|
-
*
|
5343
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
5344
|
-
*
|
5345
|
-
* @example
|
5346
|
-
* const [createInvoiceMutation, { data, loading, error }] = useCreateInvoiceMutation({
|
5347
|
-
* variables: {
|
5348
|
-
* invoice: // value for 'invoice'
|
5349
|
-
* },
|
5350
|
-
* });
|
5351
|
-
*/
|
5352
|
-
export declare function useCreateInvoiceMutation(baseOptions?: Apollo.MutationHookOptions<ICreateInvoiceMutation, ICreateInvoiceMutationVariables>): Apollo.MutationTuple<ICreateInvoiceMutation, Exact<{
|
5353
|
-
invoice: IInvoiceCreateRequest;
|
5354
|
-
}>>;
|
5355
|
-
export declare type CreateInvoiceMutationHookResult = ReturnType<typeof useCreateInvoiceMutation>;
|
5356
|
-
export declare type CreateInvoiceMutationResult = Apollo.MutationResult<ICreateInvoiceMutation>;
|
5357
|
-
export declare type CreateInvoiceMutationOptions = Apollo.BaseMutationOptions<ICreateInvoiceMutation, ICreateInvoiceMutationVariables>;
|
5358
4592
|
export declare const createOrganizationDocument: DocumentNode;
|
5359
4593
|
/**
|
5360
4594
|
* __usecreateOrganizationMutation__
|
@@ -5379,30 +4613,6 @@ export declare function usecreateOrganizationMutation(baseOptions?: Apollo.Mutat
|
|
5379
4613
|
export declare type createOrganizationMutationHookResult = ReturnType<typeof usecreateOrganizationMutation>;
|
5380
4614
|
export declare type createOrganizationMutationResult = Apollo.MutationResult<IcreateOrganizationMutation>;
|
5381
4615
|
export declare type createOrganizationMutationOptions = Apollo.BaseMutationOptions<IcreateOrganizationMutation, IcreateOrganizationMutationVariables>;
|
5382
|
-
export declare const CreateTaskDocument: DocumentNode;
|
5383
|
-
/**
|
5384
|
-
* __useCreateTaskMutation__
|
5385
|
-
*
|
5386
|
-
* To run a mutation, you first call `useCreateTaskMutation` within a React component and pass it any options that fit your needs.
|
5387
|
-
* When your component renders, `useCreateTaskMutation` returns a tuple that includes:
|
5388
|
-
* - A mutate function that you can call at any time to execute the mutation
|
5389
|
-
* - An object with fields that represent the current status of the mutation's execution
|
5390
|
-
*
|
5391
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
5392
|
-
*
|
5393
|
-
* @example
|
5394
|
-
* const [createTaskMutation, { data, loading, error }] = useCreateTaskMutation({
|
5395
|
-
* variables: {
|
5396
|
-
* request: // value for 'request'
|
5397
|
-
* },
|
5398
|
-
* });
|
5399
|
-
*/
|
5400
|
-
export declare function useCreateTaskMutation(baseOptions?: Apollo.MutationHookOptions<ICreateTaskMutation, ICreateTaskMutationVariables>): Apollo.MutationTuple<ICreateTaskMutation, Exact<{
|
5401
|
-
request?: ITaskRequest;
|
5402
|
-
}>>;
|
5403
|
-
export declare type CreateTaskMutationHookResult = ReturnType<typeof useCreateTaskMutation>;
|
5404
|
-
export declare type CreateTaskMutationResult = Apollo.MutationResult<ICreateTaskMutation>;
|
5405
|
-
export declare type CreateTaskMutationOptions = Apollo.BaseMutationOptions<ICreateTaskMutation, ICreateTaskMutationVariables>;
|
5406
4616
|
export declare const createTeamDocument: DocumentNode;
|
5407
4617
|
/**
|
5408
4618
|
* __usecreateTeamMutation__
|
@@ -5498,54 +4708,6 @@ export declare function useregisterAccountUserMutation(baseOptions?: Apollo.Muta
|
|
5498
4708
|
export declare type registerAccountUserMutationHookResult = ReturnType<typeof useregisterAccountUserMutation>;
|
5499
4709
|
export declare type registerAccountUserMutationResult = Apollo.MutationResult<IregisterAccountUserMutation>;
|
5500
4710
|
export declare type registerAccountUserMutationOptions = Apollo.BaseMutationOptions<IregisterAccountUserMutation, IregisterAccountUserMutationVariables>;
|
5501
|
-
export declare const RemoveInvoiceDocument: DocumentNode;
|
5502
|
-
/**
|
5503
|
-
* __useRemoveInvoiceMutation__
|
5504
|
-
*
|
5505
|
-
* To run a mutation, you first call `useRemoveInvoiceMutation` within a React component and pass it any options that fit your needs.
|
5506
|
-
* When your component renders, `useRemoveInvoiceMutation` returns a tuple that includes:
|
5507
|
-
* - A mutate function that you can call at any time to execute the mutation
|
5508
|
-
* - An object with fields that represent the current status of the mutation's execution
|
5509
|
-
*
|
5510
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
5511
|
-
*
|
5512
|
-
* @example
|
5513
|
-
* const [removeInvoiceMutation, { data, loading, error }] = useRemoveInvoiceMutation({
|
5514
|
-
* variables: {
|
5515
|
-
* id: // value for 'id'
|
5516
|
-
* },
|
5517
|
-
* });
|
5518
|
-
*/
|
5519
|
-
export declare function useRemoveInvoiceMutation(baseOptions?: Apollo.MutationHookOptions<IRemoveInvoiceMutation, IRemoveInvoiceMutationVariables>): Apollo.MutationTuple<IRemoveInvoiceMutation, Exact<{
|
5520
|
-
id?: string;
|
5521
|
-
}>>;
|
5522
|
-
export declare type RemoveInvoiceMutationHookResult = ReturnType<typeof useRemoveInvoiceMutation>;
|
5523
|
-
export declare type RemoveInvoiceMutationResult = Apollo.MutationResult<IRemoveInvoiceMutation>;
|
5524
|
-
export declare type RemoveInvoiceMutationOptions = Apollo.BaseMutationOptions<IRemoveInvoiceMutation, IRemoveInvoiceMutationVariables>;
|
5525
|
-
export declare const RemoveOrgClientDocument: DocumentNode;
|
5526
|
-
/**
|
5527
|
-
* __useRemoveOrgClientMutation__
|
5528
|
-
*
|
5529
|
-
* To run a mutation, you first call `useRemoveOrgClientMutation` within a React component and pass it any options that fit your needs.
|
5530
|
-
* When your component renders, `useRemoveOrgClientMutation` returns a tuple that includes:
|
5531
|
-
* - A mutate function that you can call at any time to execute the mutation
|
5532
|
-
* - An object with fields that represent the current status of the mutation's execution
|
5533
|
-
*
|
5534
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
5535
|
-
*
|
5536
|
-
* @example
|
5537
|
-
* const [removeOrgClientMutation, { data, loading, error }] = useRemoveOrgClientMutation({
|
5538
|
-
* variables: {
|
5539
|
-
* clientId: // value for 'clientId'
|
5540
|
-
* },
|
5541
|
-
* });
|
5542
|
-
*/
|
5543
|
-
export declare function useRemoveOrgClientMutation(baseOptions?: Apollo.MutationHookOptions<IRemoveOrgClientMutation, IRemoveOrgClientMutationVariables>): Apollo.MutationTuple<IRemoveOrgClientMutation, Exact<{
|
5544
|
-
clientId: string;
|
5545
|
-
}>>;
|
5546
|
-
export declare type RemoveOrgClientMutationHookResult = ReturnType<typeof useRemoveOrgClientMutation>;
|
5547
|
-
export declare type RemoveOrgClientMutationResult = Apollo.MutationResult<IRemoveOrgClientMutation>;
|
5548
|
-
export declare type RemoveOrgClientMutationOptions = Apollo.BaseMutationOptions<IRemoveOrgClientMutation, IRemoveOrgClientMutationVariables>;
|
5549
4711
|
export declare const RemoveOrgMemberDocument: DocumentNode;
|
5550
4712
|
/**
|
5551
4713
|
* __useRemoveOrgMemberMutation__
|
@@ -5594,30 +4756,6 @@ export declare function useremoveOrganizationMutation(baseOptions?: Apollo.Mutat
|
|
5594
4756
|
export declare type removeOrganizationMutationHookResult = ReturnType<typeof useremoveOrganizationMutation>;
|
5595
4757
|
export declare type removeOrganizationMutationResult = Apollo.MutationResult<IremoveOrganizationMutation>;
|
5596
4758
|
export declare type removeOrganizationMutationOptions = Apollo.BaseMutationOptions<IremoveOrganizationMutation, IremoveOrganizationMutationVariables>;
|
5597
|
-
export declare const RemoveTaskDocument: DocumentNode;
|
5598
|
-
/**
|
5599
|
-
* __useRemoveTaskMutation__
|
5600
|
-
*
|
5601
|
-
* To run a mutation, you first call `useRemoveTaskMutation` within a React component and pass it any options that fit your needs.
|
5602
|
-
* When your component renders, `useRemoveTaskMutation` returns a tuple that includes:
|
5603
|
-
* - A mutate function that you can call at any time to execute the mutation
|
5604
|
-
* - An object with fields that represent the current status of the mutation's execution
|
5605
|
-
*
|
5606
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
5607
|
-
*
|
5608
|
-
* @example
|
5609
|
-
* const [removeTaskMutation, { data, loading, error }] = useRemoveTaskMutation({
|
5610
|
-
* variables: {
|
5611
|
-
* id: // value for 'id'
|
5612
|
-
* },
|
5613
|
-
* });
|
5614
|
-
*/
|
5615
|
-
export declare function useRemoveTaskMutation(baseOptions?: Apollo.MutationHookOptions<IRemoveTaskMutation, IRemoveTaskMutationVariables>): Apollo.MutationTuple<IRemoveTaskMutation, Exact<{
|
5616
|
-
id: string;
|
5617
|
-
}>>;
|
5618
|
-
export declare type RemoveTaskMutationHookResult = ReturnType<typeof useRemoveTaskMutation>;
|
5619
|
-
export declare type RemoveTaskMutationResult = Apollo.MutationResult<IRemoveTaskMutation>;
|
5620
|
-
export declare type RemoveTaskMutationOptions = Apollo.BaseMutationOptions<IRemoveTaskMutation, IRemoveTaskMutationVariables>;
|
5621
4759
|
export declare const removeTeamDocument: DocumentNode;
|
5622
4760
|
/**
|
5623
4761
|
* __useremoveTeamMutation__
|
@@ -5765,30 +4903,6 @@ export declare function useSendUserPasswordResetEmailMutation(baseOptions?: Apol
|
|
5765
4903
|
export declare type SendUserPasswordResetEmailMutationHookResult = ReturnType<typeof useSendUserPasswordResetEmailMutation>;
|
5766
4904
|
export declare type SendUserPasswordResetEmailMutationResult = Apollo.MutationResult<ISendUserPasswordResetEmailMutation>;
|
5767
4905
|
export declare type SendUserPasswordResetEmailMutationOptions = Apollo.BaseMutationOptions<ISendUserPasswordResetEmailMutation, ISendUserPasswordResetEmailMutationVariables>;
|
5768
|
-
export declare const SendInvoiceMailDocument: DocumentNode;
|
5769
|
-
/**
|
5770
|
-
* __useSendInvoiceMailMutation__
|
5771
|
-
*
|
5772
|
-
* To run a mutation, you first call `useSendInvoiceMailMutation` within a React component and pass it any options that fit your needs.
|
5773
|
-
* When your component renders, `useSendInvoiceMailMutation` returns a tuple that includes:
|
5774
|
-
* - A mutate function that you can call at any time to execute the mutation
|
5775
|
-
* - An object with fields that represent the current status of the mutation's execution
|
5776
|
-
*
|
5777
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
5778
|
-
*
|
5779
|
-
* @example
|
5780
|
-
* const [sendInvoiceMailMutation, { data, loading, error }] = useSendInvoiceMailMutation({
|
5781
|
-
* variables: {
|
5782
|
-
* request: // value for 'request'
|
5783
|
-
* },
|
5784
|
-
* });
|
5785
|
-
*/
|
5786
|
-
export declare function useSendInvoiceMailMutation(baseOptions?: Apollo.MutationHookOptions<ISendInvoiceMailMutation, ISendInvoiceMailMutationVariables>): Apollo.MutationTuple<ISendInvoiceMailMutation, Exact<{
|
5787
|
-
request: IInvoiceMailRequest;
|
5788
|
-
}>>;
|
5789
|
-
export declare type SendInvoiceMailMutationHookResult = ReturnType<typeof useSendInvoiceMailMutation>;
|
5790
|
-
export declare type SendInvoiceMailMutationResult = Apollo.MutationResult<ISendInvoiceMailMutation>;
|
5791
|
-
export declare type SendInvoiceMailMutationOptions = Apollo.BaseMutationOptions<ISendInvoiceMailMutation, ISendInvoiceMailMutationVariables>;
|
5792
4906
|
export declare const sendOrganizationInvitationDocument: DocumentNode;
|
5793
4907
|
/**
|
5794
4908
|
* __usesendOrganizationInvitationMutation__
|
@@ -5813,56 +4927,6 @@ export declare function usesendOrganizationInvitationMutation(baseOptions?: Apol
|
|
5813
4927
|
export declare type sendOrganizationInvitationMutationHookResult = ReturnType<typeof usesendOrganizationInvitationMutation>;
|
5814
4928
|
export declare type sendOrganizationInvitationMutationResult = Apollo.MutationResult<IsendOrganizationInvitationMutation>;
|
5815
4929
|
export declare type sendOrganizationInvitationMutationOptions = Apollo.BaseMutationOptions<IsendOrganizationInvitationMutation, IsendOrganizationInvitationMutationVariables>;
|
5816
|
-
export declare const UpdateInvoiceDocument: DocumentNode;
|
5817
|
-
/**
|
5818
|
-
* __useUpdateInvoiceMutation__
|
5819
|
-
*
|
5820
|
-
* To run a mutation, you first call `useUpdateInvoiceMutation` within a React component and pass it any options that fit your needs.
|
5821
|
-
* When your component renders, `useUpdateInvoiceMutation` returns a tuple that includes:
|
5822
|
-
* - A mutate function that you can call at any time to execute the mutation
|
5823
|
-
* - An object with fields that represent the current status of the mutation's execution
|
5824
|
-
*
|
5825
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
5826
|
-
*
|
5827
|
-
* @example
|
5828
|
-
* const [updateInvoiceMutation, { data, loading, error }] = useUpdateInvoiceMutation({
|
5829
|
-
* variables: {
|
5830
|
-
* id: // value for 'id'
|
5831
|
-
* invoice: // value for 'invoice'
|
5832
|
-
* },
|
5833
|
-
* });
|
5834
|
-
*/
|
5835
|
-
export declare function useUpdateInvoiceMutation(baseOptions?: Apollo.MutationHookOptions<IUpdateInvoiceMutation, IUpdateInvoiceMutationVariables>): Apollo.MutationTuple<IUpdateInvoiceMutation, Exact<{
|
5836
|
-
id?: string;
|
5837
|
-
invoice?: IInvoiceUpdateRequest;
|
5838
|
-
}>>;
|
5839
|
-
export declare type UpdateInvoiceMutationHookResult = ReturnType<typeof useUpdateInvoiceMutation>;
|
5840
|
-
export declare type UpdateInvoiceMutationResult = Apollo.MutationResult<IUpdateInvoiceMutation>;
|
5841
|
-
export declare type UpdateInvoiceMutationOptions = Apollo.BaseMutationOptions<IUpdateInvoiceMutation, IUpdateInvoiceMutationVariables>;
|
5842
|
-
export declare const UpdateOrgClientDocument: DocumentNode;
|
5843
|
-
/**
|
5844
|
-
* __useUpdateOrgClientMutation__
|
5845
|
-
*
|
5846
|
-
* To run a mutation, you first call `useUpdateOrgClientMutation` within a React component and pass it any options that fit your needs.
|
5847
|
-
* When your component renders, `useUpdateOrgClientMutation` returns a tuple that includes:
|
5848
|
-
* - A mutate function that you can call at any time to execute the mutation
|
5849
|
-
* - An object with fields that represent the current status of the mutation's execution
|
5850
|
-
*
|
5851
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
5852
|
-
*
|
5853
|
-
* @example
|
5854
|
-
* const [updateOrgClientMutation, { data, loading, error }] = useUpdateOrgClientMutation({
|
5855
|
-
* variables: {
|
5856
|
-
* updateRequest: // value for 'updateRequest'
|
5857
|
-
* },
|
5858
|
-
* });
|
5859
|
-
*/
|
5860
|
-
export declare function useUpdateOrgClientMutation(baseOptions?: Apollo.MutationHookOptions<IUpdateOrgClientMutation, IUpdateOrgClientMutationVariables>): Apollo.MutationTuple<IUpdateOrgClientMutation, Exact<{
|
5861
|
-
updateRequest?: IClientUpdateRequest;
|
5862
|
-
}>>;
|
5863
|
-
export declare type UpdateOrgClientMutationHookResult = ReturnType<typeof useUpdateOrgClientMutation>;
|
5864
|
-
export declare type UpdateOrgClientMutationResult = Apollo.MutationResult<IUpdateOrgClientMutation>;
|
5865
|
-
export declare type UpdateOrgClientMutationOptions = Apollo.BaseMutationOptions<IUpdateOrgClientMutation, IUpdateOrgClientMutationVariables>;
|
5866
4930
|
export declare const updateOrgMemberTeamsDocument: DocumentNode;
|
5867
4931
|
/**
|
5868
4932
|
* __useupdateOrgMemberTeamsMutation__
|
@@ -5893,32 +4957,6 @@ export declare function useupdateOrgMemberTeamsMutation(baseOptions?: Apollo.Mut
|
|
5893
4957
|
export declare type updateOrgMemberTeamsMutationHookResult = ReturnType<typeof useupdateOrgMemberTeamsMutation>;
|
5894
4958
|
export declare type updateOrgMemberTeamsMutationResult = Apollo.MutationResult<IupdateOrgMemberTeamsMutation>;
|
5895
4959
|
export declare type updateOrgMemberTeamsMutationOptions = Apollo.BaseMutationOptions<IupdateOrgMemberTeamsMutation, IupdateOrgMemberTeamsMutationVariables>;
|
5896
|
-
export declare const UpdateOrgProjectDocument: DocumentNode;
|
5897
|
-
/**
|
5898
|
-
* __useUpdateOrgProjectMutation__
|
5899
|
-
*
|
5900
|
-
* To run a mutation, you first call `useUpdateOrgProjectMutation` within a React component and pass it any options that fit your needs.
|
5901
|
-
* When your component renders, `useUpdateOrgProjectMutation` returns a tuple that includes:
|
5902
|
-
* - A mutate function that you can call at any time to execute the mutation
|
5903
|
-
* - An object with fields that represent the current status of the mutation's execution
|
5904
|
-
*
|
5905
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
5906
|
-
*
|
5907
|
-
* @example
|
5908
|
-
* const [updateOrgProjectMutation, { data, loading, error }] = useUpdateOrgProjectMutation({
|
5909
|
-
* variables: {
|
5910
|
-
* where: // value for 'where'
|
5911
|
-
* project: // value for 'project'
|
5912
|
-
* },
|
5913
|
-
* });
|
5914
|
-
*/
|
5915
|
-
export declare function useUpdateOrgProjectMutation(baseOptions?: Apollo.MutationHookOptions<IUpdateOrgProjectMutation, IUpdateOrgProjectMutationVariables>): Apollo.MutationTuple<IUpdateOrgProjectMutation, Exact<{
|
5916
|
-
where: IProjectWhereInput;
|
5917
|
-
project?: IUpdateProject_Input;
|
5918
|
-
}>>;
|
5919
|
-
export declare type UpdateOrgProjectMutationHookResult = ReturnType<typeof useUpdateOrgProjectMutation>;
|
5920
|
-
export declare type UpdateOrgProjectMutationResult = Apollo.MutationResult<IUpdateOrgProjectMutation>;
|
5921
|
-
export declare type UpdateOrgProjectMutationOptions = Apollo.BaseMutationOptions<IUpdateOrgProjectMutation, IUpdateOrgProjectMutationVariables>;
|
5922
4960
|
export declare const updateOrganizationDocument: DocumentNode;
|
5923
4961
|
/**
|
5924
4962
|
* __useupdateOrganizationMutation__
|
@@ -5942,59 +4980,7 @@ export declare function useupdateOrganizationMutation(baseOptions?: Apollo.Mutat
|
|
5942
4980
|
}>>;
|
5943
4981
|
export declare type updateOrganizationMutationHookResult = ReturnType<typeof useupdateOrganizationMutation>;
|
5944
4982
|
export declare type updateOrganizationMutationResult = Apollo.MutationResult<IupdateOrganizationMutation>;
|
5945
|
-
export declare type updateOrganizationMutationOptions = Apollo.BaseMutationOptions<IupdateOrganizationMutation, IupdateOrganizationMutationVariables>;
|
5946
|
-
export declare const UpdateProjectStatusDocument: DocumentNode;
|
5947
|
-
/**
|
5948
|
-
* __useUpdateProjectStatusMutation__
|
5949
|
-
*
|
5950
|
-
* To run a mutation, you first call `useUpdateProjectStatusMutation` within a React component and pass it any options that fit your needs.
|
5951
|
-
* When your component renders, `useUpdateProjectStatusMutation` returns a tuple that includes:
|
5952
|
-
* - A mutate function that you can call at any time to execute the mutation
|
5953
|
-
* - An object with fields that represent the current status of the mutation's execution
|
5954
|
-
*
|
5955
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
5956
|
-
*
|
5957
|
-
* @example
|
5958
|
-
* const [updateProjectStatusMutation, { data, loading, error }] = useUpdateProjectStatusMutation({
|
5959
|
-
* variables: {
|
5960
|
-
* id: // value for 'id'
|
5961
|
-
* status: // value for 'status'
|
5962
|
-
* },
|
5963
|
-
* });
|
5964
|
-
*/
|
5965
|
-
export declare function useUpdateProjectStatusMutation(baseOptions?: Apollo.MutationHookOptions<IUpdateProjectStatusMutation, IUpdateProjectStatusMutationVariables>): Apollo.MutationTuple<IUpdateProjectStatusMutation, Exact<{
|
5966
|
-
id: string;
|
5967
|
-
status?: string;
|
5968
|
-
}>>;
|
5969
|
-
export declare type UpdateProjectStatusMutationHookResult = ReturnType<typeof useUpdateProjectStatusMutation>;
|
5970
|
-
export declare type UpdateProjectStatusMutationResult = Apollo.MutationResult<IUpdateProjectStatusMutation>;
|
5971
|
-
export declare type UpdateProjectStatusMutationOptions = Apollo.BaseMutationOptions<IUpdateProjectStatusMutation, IUpdateProjectStatusMutationVariables>;
|
5972
|
-
export declare const UpdateTaskDocument: DocumentNode;
|
5973
|
-
/**
|
5974
|
-
* __useUpdateTaskMutation__
|
5975
|
-
*
|
5976
|
-
* To run a mutation, you first call `useUpdateTaskMutation` within a React component and pass it any options that fit your needs.
|
5977
|
-
* When your component renders, `useUpdateTaskMutation` returns a tuple that includes:
|
5978
|
-
* - A mutate function that you can call at any time to execute the mutation
|
5979
|
-
* - An object with fields that represent the current status of the mutation's execution
|
5980
|
-
*
|
5981
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
5982
|
-
*
|
5983
|
-
* @example
|
5984
|
-
* const [updateTaskMutation, { data, loading, error }] = useUpdateTaskMutation({
|
5985
|
-
* variables: {
|
5986
|
-
* id: // value for 'id'
|
5987
|
-
* request: // value for 'request'
|
5988
|
-
* },
|
5989
|
-
* });
|
5990
|
-
*/
|
5991
|
-
export declare function useUpdateTaskMutation(baseOptions?: Apollo.MutationHookOptions<IUpdateTaskMutation, IUpdateTaskMutationVariables>): Apollo.MutationTuple<IUpdateTaskMutation, Exact<{
|
5992
|
-
id: string;
|
5993
|
-
request?: ITaskRequest;
|
5994
|
-
}>>;
|
5995
|
-
export declare type UpdateTaskMutationHookResult = ReturnType<typeof useUpdateTaskMutation>;
|
5996
|
-
export declare type UpdateTaskMutationResult = Apollo.MutationResult<IUpdateTaskMutation>;
|
5997
|
-
export declare type UpdateTaskMutationOptions = Apollo.BaseMutationOptions<IUpdateTaskMutation, IUpdateTaskMutationVariables>;
|
4983
|
+
export declare type updateOrganizationMutationOptions = Apollo.BaseMutationOptions<IupdateOrganizationMutation, IupdateOrganizationMutationVariables>;
|
5998
4984
|
export declare const updateTeamConfigurationDocument: DocumentNode;
|
5999
4985
|
/**
|
6000
4986
|
* __useupdateTeamConfigurationMutation__
|
@@ -6051,32 +5037,6 @@ export declare function useupdateUserAccountMutation(baseOptions?: Apollo.Mutati
|
|
6051
5037
|
export declare type updateUserAccountMutationHookResult = ReturnType<typeof useupdateUserAccountMutation>;
|
6052
5038
|
export declare type updateUserAccountMutationResult = Apollo.MutationResult<IupdateUserAccountMutation>;
|
6053
5039
|
export declare type updateUserAccountMutationOptions = Apollo.BaseMutationOptions<IupdateUserAccountMutation, IupdateUserAccountMutationVariables>;
|
6054
|
-
export declare const UpsertProjectThroughIntegrationDocument: DocumentNode;
|
6055
|
-
/**
|
6056
|
-
* __useUpsertProjectThroughIntegrationMutation__
|
6057
|
-
*
|
6058
|
-
* To run a mutation, you first call `useUpsertProjectThroughIntegrationMutation` within a React component and pass it any options that fit your needs.
|
6059
|
-
* When your component renders, `useUpsertProjectThroughIntegrationMutation` returns a tuple that includes:
|
6060
|
-
* - A mutate function that you can call at any time to execute the mutation
|
6061
|
-
* - An object with fields that represent the current status of the mutation's execution
|
6062
|
-
*
|
6063
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
6064
|
-
*
|
6065
|
-
* @example
|
6066
|
-
* const [upsertProjectThroughIntegrationMutation, { data, loading, error }] = useUpsertProjectThroughIntegrationMutation({
|
6067
|
-
* variables: {
|
6068
|
-
* where: // value for 'where'
|
6069
|
-
* project: // value for 'project'
|
6070
|
-
* },
|
6071
|
-
* });
|
6072
|
-
*/
|
6073
|
-
export declare function useUpsertProjectThroughIntegrationMutation(baseOptions?: Apollo.MutationHookOptions<IUpsertProjectThroughIntegrationMutation, IUpsertProjectThroughIntegrationMutationVariables>): Apollo.MutationTuple<IUpsertProjectThroughIntegrationMutation, Exact<{
|
6074
|
-
where: IProjectWhereInput;
|
6075
|
-
project?: IUpdateProject_Input;
|
6076
|
-
}>>;
|
6077
|
-
export declare type UpsertProjectThroughIntegrationMutationHookResult = ReturnType<typeof useUpsertProjectThroughIntegrationMutation>;
|
6078
|
-
export declare type UpsertProjectThroughIntegrationMutationResult = Apollo.MutationResult<IUpsertProjectThroughIntegrationMutation>;
|
6079
|
-
export declare type UpsertProjectThroughIntegrationMutationOptions = Apollo.BaseMutationOptions<IUpsertProjectThroughIntegrationMutation, IUpsertProjectThroughIntegrationMutationVariables>;
|
6080
5040
|
export declare const VerifyUserEmailVerificationTokenDocument: DocumentNode;
|
6081
5041
|
/**
|
6082
5042
|
* __useVerifyUserEmailVerificationTokenMutation__
|
@@ -6204,158 +5164,6 @@ export declare function useGetAllCountriesLazyQuery(baseOptions?: Apollo.LazyQue
|
|
6204
5164
|
export declare type GetAllCountriesQueryHookResult = ReturnType<typeof useGetAllCountriesQuery>;
|
6205
5165
|
export declare type GetAllCountriesLazyQueryHookResult = ReturnType<typeof useGetAllCountriesLazyQuery>;
|
6206
5166
|
export declare type GetAllCountriesQueryResult = Apollo.QueryResult<IGetAllCountriesQuery, IGetAllCountriesQueryVariables>;
|
6207
|
-
export declare const GetAsanaConnectionStateDocument: DocumentNode;
|
6208
|
-
/**
|
6209
|
-
* __useGetAsanaConnectionStateQuery__
|
6210
|
-
*
|
6211
|
-
* To run a query within a React component, call `useGetAsanaConnectionStateQuery` and pass it any options that fit your needs.
|
6212
|
-
* When your component renders, `useGetAsanaConnectionStateQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
6213
|
-
* you can use to render your UI.
|
6214
|
-
*
|
6215
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
6216
|
-
*
|
6217
|
-
* @example
|
6218
|
-
* const { data, loading, error } = useGetAsanaConnectionStateQuery({
|
6219
|
-
* variables: {
|
6220
|
-
* },
|
6221
|
-
* });
|
6222
|
-
*/
|
6223
|
-
export declare function useGetAsanaConnectionStateQuery(baseOptions?: Apollo.QueryHookOptions<IGetAsanaConnectionStateQuery, IGetAsanaConnectionStateQueryVariables>): Apollo.QueryResult<IGetAsanaConnectionStateQuery, Exact<{
|
6224
|
-
[key: string]: never;
|
6225
|
-
}>>;
|
6226
|
-
export declare function useGetAsanaConnectionStateLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetAsanaConnectionStateQuery, IGetAsanaConnectionStateQueryVariables>): Apollo.QueryTuple<IGetAsanaConnectionStateQuery, Exact<{
|
6227
|
-
[key: string]: never;
|
6228
|
-
}>>;
|
6229
|
-
export declare type GetAsanaConnectionStateQueryHookResult = ReturnType<typeof useGetAsanaConnectionStateQuery>;
|
6230
|
-
export declare type GetAsanaConnectionStateLazyQueryHookResult = ReturnType<typeof useGetAsanaConnectionStateLazyQuery>;
|
6231
|
-
export declare type GetAsanaConnectionStateQueryResult = Apollo.QueryResult<IGetAsanaConnectionStateQuery, IGetAsanaConnectionStateQueryVariables>;
|
6232
|
-
export declare const GetAsanaWorkspaceProjectsDocument: DocumentNode;
|
6233
|
-
/**
|
6234
|
-
* __useGetAsanaWorkspaceProjectsQuery__
|
6235
|
-
*
|
6236
|
-
* To run a query within a React component, call `useGetAsanaWorkspaceProjectsQuery` and pass it any options that fit your needs.
|
6237
|
-
* When your component renders, `useGetAsanaWorkspaceProjectsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
6238
|
-
* you can use to render your UI.
|
6239
|
-
*
|
6240
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
6241
|
-
*
|
6242
|
-
* @example
|
6243
|
-
* const { data, loading, error } = useGetAsanaWorkspaceProjectsQuery({
|
6244
|
-
* variables: {
|
6245
|
-
* workspaceId: // value for 'workspaceId'
|
6246
|
-
* },
|
6247
|
-
* });
|
6248
|
-
*/
|
6249
|
-
export declare function useGetAsanaWorkspaceProjectsQuery(baseOptions: Apollo.QueryHookOptions<IGetAsanaWorkspaceProjectsQuery, IGetAsanaWorkspaceProjectsQueryVariables>): Apollo.QueryResult<IGetAsanaWorkspaceProjectsQuery, Exact<{
|
6250
|
-
workspaceId: string;
|
6251
|
-
}>>;
|
6252
|
-
export declare function useGetAsanaWorkspaceProjectsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetAsanaWorkspaceProjectsQuery, IGetAsanaWorkspaceProjectsQueryVariables>): Apollo.QueryTuple<IGetAsanaWorkspaceProjectsQuery, Exact<{
|
6253
|
-
workspaceId: string;
|
6254
|
-
}>>;
|
6255
|
-
export declare type GetAsanaWorkspaceProjectsQueryHookResult = ReturnType<typeof useGetAsanaWorkspaceProjectsQuery>;
|
6256
|
-
export declare type GetAsanaWorkspaceProjectsLazyQueryHookResult = ReturnType<typeof useGetAsanaWorkspaceProjectsLazyQuery>;
|
6257
|
-
export declare type GetAsanaWorkspaceProjectsQueryResult = Apollo.QueryResult<IGetAsanaWorkspaceProjectsQuery, IGetAsanaWorkspaceProjectsQueryVariables>;
|
6258
|
-
export declare const GetAsanaWorkspacesDocument: DocumentNode;
|
6259
|
-
/**
|
6260
|
-
* __useGetAsanaWorkspacesQuery__
|
6261
|
-
*
|
6262
|
-
* To run a query within a React component, call `useGetAsanaWorkspacesQuery` and pass it any options that fit your needs.
|
6263
|
-
* When your component renders, `useGetAsanaWorkspacesQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
6264
|
-
* you can use to render your UI.
|
6265
|
-
*
|
6266
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
6267
|
-
*
|
6268
|
-
* @example
|
6269
|
-
* const { data, loading, error } = useGetAsanaWorkspacesQuery({
|
6270
|
-
* variables: {
|
6271
|
-
* },
|
6272
|
-
* });
|
6273
|
-
*/
|
6274
|
-
export declare function useGetAsanaWorkspacesQuery(baseOptions?: Apollo.QueryHookOptions<IGetAsanaWorkspacesQuery, IGetAsanaWorkspacesQueryVariables>): Apollo.QueryResult<IGetAsanaWorkspacesQuery, Exact<{
|
6275
|
-
[key: string]: never;
|
6276
|
-
}>>;
|
6277
|
-
export declare function useGetAsanaWorkspacesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetAsanaWorkspacesQuery, IGetAsanaWorkspacesQueryVariables>): Apollo.QueryTuple<IGetAsanaWorkspacesQuery, Exact<{
|
6278
|
-
[key: string]: never;
|
6279
|
-
}>>;
|
6280
|
-
export declare type GetAsanaWorkspacesQueryHookResult = ReturnType<typeof useGetAsanaWorkspacesQuery>;
|
6281
|
-
export declare type GetAsanaWorkspacesLazyQueryHookResult = ReturnType<typeof useGetAsanaWorkspacesLazyQuery>;
|
6282
|
-
export declare type GetAsanaWorkspacesQueryResult = Apollo.QueryResult<IGetAsanaWorkspacesQuery, IGetAsanaWorkspacesQueryVariables>;
|
6283
|
-
export declare const GetDefaultInvoiceNumberDocument: DocumentNode;
|
6284
|
-
/**
|
6285
|
-
* __useGetDefaultInvoiceNumberQuery__
|
6286
|
-
*
|
6287
|
-
* To run a query within a React component, call `useGetDefaultInvoiceNumberQuery` and pass it any options that fit your needs.
|
6288
|
-
* When your component renders, `useGetDefaultInvoiceNumberQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
6289
|
-
* you can use to render your UI.
|
6290
|
-
*
|
6291
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
6292
|
-
*
|
6293
|
-
* @example
|
6294
|
-
* const { data, loading, error } = useGetDefaultInvoiceNumberQuery({
|
6295
|
-
* variables: {
|
6296
|
-
* },
|
6297
|
-
* });
|
6298
|
-
*/
|
6299
|
-
export declare function useGetDefaultInvoiceNumberQuery(baseOptions?: Apollo.QueryHookOptions<IGetDefaultInvoiceNumberQuery, IGetDefaultInvoiceNumberQueryVariables>): Apollo.QueryResult<IGetDefaultInvoiceNumberQuery, Exact<{
|
6300
|
-
[key: string]: never;
|
6301
|
-
}>>;
|
6302
|
-
export declare function useGetDefaultInvoiceNumberLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetDefaultInvoiceNumberQuery, IGetDefaultInvoiceNumberQueryVariables>): Apollo.QueryTuple<IGetDefaultInvoiceNumberQuery, Exact<{
|
6303
|
-
[key: string]: never;
|
6304
|
-
}>>;
|
6305
|
-
export declare type GetDefaultInvoiceNumberQueryHookResult = ReturnType<typeof useGetDefaultInvoiceNumberQuery>;
|
6306
|
-
export declare type GetDefaultInvoiceNumberLazyQueryHookResult = ReturnType<typeof useGetDefaultInvoiceNumberLazyQuery>;
|
6307
|
-
export declare type GetDefaultInvoiceNumberQueryResult = Apollo.QueryResult<IGetDefaultInvoiceNumberQuery, IGetDefaultInvoiceNumberQueryVariables>;
|
6308
|
-
export declare const GetFilteredProjectsDocument: DocumentNode;
|
6309
|
-
/**
|
6310
|
-
* __useGetFilteredProjectsQuery__
|
6311
|
-
*
|
6312
|
-
* To run a query within a React component, call `useGetFilteredProjectsQuery` and pass it any options that fit your needs.
|
6313
|
-
* When your component renders, `useGetFilteredProjectsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
6314
|
-
* you can use to render your UI.
|
6315
|
-
*
|
6316
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
6317
|
-
*
|
6318
|
-
* @example
|
6319
|
-
* const { data, loading, error } = useGetFilteredProjectsQuery({
|
6320
|
-
* variables: {
|
6321
|
-
* filter: // value for 'filter'
|
6322
|
-
* },
|
6323
|
-
* });
|
6324
|
-
*/
|
6325
|
-
export declare function useGetFilteredProjectsQuery(baseOptions: Apollo.QueryHookOptions<IGetFilteredProjectsQuery, IGetFilteredProjectsQueryVariables>): Apollo.QueryResult<IGetFilteredProjectsQuery, Exact<{
|
6326
|
-
filter: IProjectWhereInput;
|
6327
|
-
}>>;
|
6328
|
-
export declare function useGetFilteredProjectsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetFilteredProjectsQuery, IGetFilteredProjectsQueryVariables>): Apollo.QueryTuple<IGetFilteredProjectsQuery, Exact<{
|
6329
|
-
filter: IProjectWhereInput;
|
6330
|
-
}>>;
|
6331
|
-
export declare type GetFilteredProjectsQueryHookResult = ReturnType<typeof useGetFilteredProjectsQuery>;
|
6332
|
-
export declare type GetFilteredProjectsLazyQueryHookResult = ReturnType<typeof useGetFilteredProjectsLazyQuery>;
|
6333
|
-
export declare type GetFilteredProjectsQueryResult = Apollo.QueryResult<IGetFilteredProjectsQuery, IGetFilteredProjectsQueryVariables>;
|
6334
|
-
export declare const GetInvoicesDocument: DocumentNode;
|
6335
|
-
/**
|
6336
|
-
* __useGetInvoicesQuery__
|
6337
|
-
*
|
6338
|
-
* To run a query within a React component, call `useGetInvoicesQuery` and pass it any options that fit your needs.
|
6339
|
-
* When your component renders, `useGetInvoicesQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
6340
|
-
* you can use to render your UI.
|
6341
|
-
*
|
6342
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
6343
|
-
*
|
6344
|
-
* @example
|
6345
|
-
* const { data, loading, error } = useGetInvoicesQuery({
|
6346
|
-
* variables: {
|
6347
|
-
* },
|
6348
|
-
* });
|
6349
|
-
*/
|
6350
|
-
export declare function useGetInvoicesQuery(baseOptions?: Apollo.QueryHookOptions<IGetInvoicesQuery, IGetInvoicesQueryVariables>): Apollo.QueryResult<IGetInvoicesQuery, Exact<{
|
6351
|
-
[key: string]: never;
|
6352
|
-
}>>;
|
6353
|
-
export declare function useGetInvoicesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetInvoicesQuery, IGetInvoicesQueryVariables>): Apollo.QueryTuple<IGetInvoicesQuery, Exact<{
|
6354
|
-
[key: string]: never;
|
6355
|
-
}>>;
|
6356
|
-
export declare type GetInvoicesQueryHookResult = ReturnType<typeof useGetInvoicesQuery>;
|
6357
|
-
export declare type GetInvoicesLazyQueryHookResult = ReturnType<typeof useGetInvoicesLazyQuery>;
|
6358
|
-
export declare type GetInvoicesQueryResult = Apollo.QueryResult<IGetInvoicesQuery, IGetInvoicesQueryVariables>;
|
6359
5167
|
export declare const GetManageableOrganizationsDocument: DocumentNode;
|
6360
5168
|
/**
|
6361
5169
|
* __useGetManageableOrganizationsQuery__
|
@@ -6484,31 +5292,6 @@ export declare function useGetOrgUserLazyQuery(baseOptions?: Apollo.LazyQueryHoo
|
|
6484
5292
|
export declare type GetOrgUserQueryHookResult = ReturnType<typeof useGetOrgUserQuery>;
|
6485
5293
|
export declare type GetOrgUserLazyQueryHookResult = ReturnType<typeof useGetOrgUserLazyQuery>;
|
6486
5294
|
export declare type GetOrgUserQueryResult = Apollo.QueryResult<IGetOrgUserQuery, IGetOrgUserQueryVariables>;
|
6487
|
-
export declare const GetOrganizationClientsDocument: DocumentNode;
|
6488
|
-
/**
|
6489
|
-
* __useGetOrganizationClientsQuery__
|
6490
|
-
*
|
6491
|
-
* To run a query within a React component, call `useGetOrganizationClientsQuery` and pass it any options that fit your needs.
|
6492
|
-
* When your component renders, `useGetOrganizationClientsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
6493
|
-
* you can use to render your UI.
|
6494
|
-
*
|
6495
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
6496
|
-
*
|
6497
|
-
* @example
|
6498
|
-
* const { data, loading, error } = useGetOrganizationClientsQuery({
|
6499
|
-
* variables: {
|
6500
|
-
* },
|
6501
|
-
* });
|
6502
|
-
*/
|
6503
|
-
export declare function useGetOrganizationClientsQuery(baseOptions?: Apollo.QueryHookOptions<IGetOrganizationClientsQuery, IGetOrganizationClientsQueryVariables>): Apollo.QueryResult<IGetOrganizationClientsQuery, Exact<{
|
6504
|
-
[key: string]: never;
|
6505
|
-
}>>;
|
6506
|
-
export declare function useGetOrganizationClientsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrganizationClientsQuery, IGetOrganizationClientsQueryVariables>): Apollo.QueryTuple<IGetOrganizationClientsQuery, Exact<{
|
6507
|
-
[key: string]: never;
|
6508
|
-
}>>;
|
6509
|
-
export declare type GetOrganizationClientsQueryHookResult = ReturnType<typeof useGetOrganizationClientsQuery>;
|
6510
|
-
export declare type GetOrganizationClientsLazyQueryHookResult = ReturnType<typeof useGetOrganizationClientsLazyQuery>;
|
6511
|
-
export declare type GetOrganizationClientsQueryResult = Apollo.QueryResult<IGetOrganizationClientsQuery, IGetOrganizationClientsQueryVariables>;
|
6512
5295
|
export declare const GetOrganizationMembersWithNameDocument: DocumentNode;
|
6513
5296
|
/**
|
6514
5297
|
* __useGetOrganizationMembersWithNameQuery__
|
@@ -6561,56 +5344,6 @@ export declare function usegetOrganizationTeamsLazyQuery(baseOptions?: Apollo.La
|
|
6561
5344
|
export declare type getOrganizationTeamsQueryHookResult = ReturnType<typeof usegetOrganizationTeamsQuery>;
|
6562
5345
|
export declare type getOrganizationTeamsLazyQueryHookResult = ReturnType<typeof usegetOrganizationTeamsLazyQuery>;
|
6563
5346
|
export declare type getOrganizationTeamsQueryResult = Apollo.QueryResult<IgetOrganizationTeamsQuery, IgetOrganizationTeamsQueryVariables>;
|
6564
|
-
export declare const GetProjectsDocument: DocumentNode;
|
6565
|
-
/**
|
6566
|
-
* __useGetProjectsQuery__
|
6567
|
-
*
|
6568
|
-
* To run a query within a React component, call `useGetProjectsQuery` and pass it any options that fit your needs.
|
6569
|
-
* When your component renders, `useGetProjectsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
6570
|
-
* you can use to render your UI.
|
6571
|
-
*
|
6572
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
6573
|
-
*
|
6574
|
-
* @example
|
6575
|
-
* const { data, loading, error } = useGetProjectsQuery({
|
6576
|
-
* variables: {
|
6577
|
-
* },
|
6578
|
-
* });
|
6579
|
-
*/
|
6580
|
-
export declare function useGetProjectsQuery(baseOptions?: Apollo.QueryHookOptions<IGetProjectsQuery, IGetProjectsQueryVariables>): Apollo.QueryResult<IGetProjectsQuery, Exact<{
|
6581
|
-
[key: string]: never;
|
6582
|
-
}>>;
|
6583
|
-
export declare function useGetProjectsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetProjectsQuery, IGetProjectsQueryVariables>): Apollo.QueryTuple<IGetProjectsQuery, Exact<{
|
6584
|
-
[key: string]: never;
|
6585
|
-
}>>;
|
6586
|
-
export declare type GetProjectsQueryHookResult = ReturnType<typeof useGetProjectsQuery>;
|
6587
|
-
export declare type GetProjectsLazyQueryHookResult = ReturnType<typeof useGetProjectsLazyQuery>;
|
6588
|
-
export declare type GetProjectsQueryResult = Apollo.QueryResult<IGetProjectsQuery, IGetProjectsQueryVariables>;
|
6589
|
-
export declare const GetTasksDocument: DocumentNode;
|
6590
|
-
/**
|
6591
|
-
* __useGetTasksQuery__
|
6592
|
-
*
|
6593
|
-
* To run a query within a React component, call `useGetTasksQuery` and pass it any options that fit your needs.
|
6594
|
-
* When your component renders, `useGetTasksQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
6595
|
-
* you can use to render your UI.
|
6596
|
-
*
|
6597
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
6598
|
-
*
|
6599
|
-
* @example
|
6600
|
-
* const { data, loading, error } = useGetTasksQuery({
|
6601
|
-
* variables: {
|
6602
|
-
* },
|
6603
|
-
* });
|
6604
|
-
*/
|
6605
|
-
export declare function useGetTasksQuery(baseOptions?: Apollo.QueryHookOptions<IGetTasksQuery, IGetTasksQueryVariables>): Apollo.QueryResult<IGetTasksQuery, Exact<{
|
6606
|
-
[key: string]: never;
|
6607
|
-
}>>;
|
6608
|
-
export declare function useGetTasksLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetTasksQuery, IGetTasksQueryVariables>): Apollo.QueryTuple<IGetTasksQuery, Exact<{
|
6609
|
-
[key: string]: never;
|
6610
|
-
}>>;
|
6611
|
-
export declare type GetTasksQueryHookResult = ReturnType<typeof useGetTasksQuery>;
|
6612
|
-
export declare type GetTasksLazyQueryHookResult = ReturnType<typeof useGetTasksLazyQuery>;
|
6613
|
-
export declare type GetTasksQueryResult = Apollo.QueryResult<IGetTasksQuery, IGetTasksQueryVariables>;
|
6614
5347
|
export declare const getTeamDocument: DocumentNode;
|
6615
5348
|
/**
|
6616
5349
|
* __usegetTeamQuery__
|
@@ -8669,8 +7402,6 @@ export declare type IResolversTypes = {
|
|
8669
7402
|
ActivityRecord: ResolverTypeWrapper<IActivityRecord>;
|
8670
7403
|
ActivityRecordInput: IActivityRecordInput;
|
8671
7404
|
ActivityServiceCommands: IActivityServiceCommands;
|
8672
|
-
AddressType: ResolverTypeWrapper<IAddressType>;
|
8673
|
-
AddressType_Input: IAddressType_Input;
|
8674
7405
|
AdminIdeSettings: ResolverTypeWrapper<IAdminIdeSettings>;
|
8675
7406
|
AnyObject: ResolverTypeWrapper<Scalars['AnyObject']>;
|
8676
7407
|
ApplicationBillingPlanPolicy: IApplicationBillingPlanPolicy;
|
@@ -8678,11 +7409,6 @@ export declare type IResolversTypes = {
|
|
8678
7409
|
ApplicationRolePermission: ResolverTypeWrapper<IApplicationRolePermission>;
|
8679
7410
|
ApplicationRoles: IApplicationRoles;
|
8680
7411
|
ApplicationSettings: ResolverTypeWrapper<IApplicationSettings>;
|
8681
|
-
AsanaConnection: ResolverTypeWrapper<IAsanaConnection>;
|
8682
|
-
AsanaConnectionState: ResolverTypeWrapper<IAsanaConnectionState>;
|
8683
|
-
AsanaProjects: ResolverTypeWrapper<IAsanaProjects>;
|
8684
|
-
AsanaUser: ResolverTypeWrapper<IAsanaUser>;
|
8685
|
-
AsanaWorkspaces: ResolverTypeWrapper<IAsanaWorkspaces>;
|
8686
7412
|
Auth0Identity: ResolverTypeWrapper<IAuth0Identity>;
|
8687
7413
|
Auth0IdentityProfileData: ResolverTypeWrapper<IAuth0IdentityProfileData>;
|
8688
7414
|
AuthErrorCodes: IAuthErrorCodes;
|
@@ -8692,16 +7418,9 @@ export declare type IResolversTypes = {
|
|
8692
7418
|
CacheControlScope: ICacheControlScope;
|
8693
7419
|
CityInput: ICityInput;
|
8694
7420
|
CityUpdateInput: ICityUpdateInput;
|
8695
|
-
Client: ResolverTypeWrapper<IClient>;
|
8696
|
-
ClientAddRequest: IClientAddRequest;
|
8697
7421
|
ClientCacheTypeNames: IClientCacheTypeNames;
|
8698
7422
|
ClientContainerService: IClientContainerService;
|
8699
|
-
ClientCreatedEvent: ResolverTypeWrapper<IClientCreatedEvent>;
|
8700
|
-
ClientDeletedEvent: ResolverTypeWrapper<IClientDeletedEvent>;
|
8701
|
-
ClientPhone: ResolverTypeWrapper<IClientPhone>;
|
8702
|
-
ClientPhone_Input: IClientPhone_Input;
|
8703
7423
|
ClientTypes: IClientTypes;
|
8704
|
-
ClientUpdateRequest: IClientUpdateRequest;
|
8705
7424
|
ConfigCollectionName: IConfigCollectionName;
|
8706
7425
|
ConfigFragmentName: IConfigFragmentName;
|
8707
7426
|
Configuration: IResolversTypes['DefaultConfiguration'] | IResolversTypes['MachineConfiguration'] | IResolversTypes['UserConfiguration'] | IResolversTypes['OrganizationConfiguration'] | IResolversTypes['OrganizationResourceConfiguration'];
|
@@ -8725,14 +7444,13 @@ export declare type IResolversTypes = {
|
|
8725
7444
|
ContributionSettingsProperties: ResolverTypeWrapper<IContributionSettingsProperties>;
|
8726
7445
|
Country: ResolverTypeWrapper<ICountry>;
|
8727
7446
|
CountryInput: ICountryInput;
|
8728
|
-
CustomerInvoice: ResolverTypeWrapper<ICustomerInvoice>;
|
8729
|
-
CustomerInvoice_Input: ICustomerInvoice_Input;
|
8730
7447
|
Date: ResolverTypeWrapper<Scalars['Date']>;
|
8731
7448
|
DateTime: ResolverTypeWrapper<Scalars['DateTime']>;
|
8732
7449
|
DefaultConfiguration: ResolverTypeWrapper<IDefaultConfiguration>;
|
8733
7450
|
DefaultPolicy: ResolverTypeWrapper<IDefaultPolicy>;
|
8734
7451
|
DefaultRole: ResolverTypeWrapper<IDefaultRole>;
|
8735
7452
|
DefaultSettings: ResolverTypeWrapper<IDefaultSettings>;
|
7453
|
+
DeviceInfoInput: IDeviceInfoInput;
|
8736
7454
|
EActivityScopes: IEActivityScopes;
|
8737
7455
|
EditPresentationTypes: IEditPresentationTypes;
|
8738
7456
|
EmptyResponse: ResolverTypeWrapper<IEmptyResponse>;
|
@@ -8777,12 +7495,6 @@ export declare type IResolversTypes = {
|
|
8777
7495
|
IntegrationConfigurationInput: IIntegrationConfigurationInput;
|
8778
7496
|
InviteMember: ResolverTypeWrapper<IInviteMember>;
|
8779
7497
|
InviteStatus: IInviteStatus;
|
8780
|
-
InvoiceCreateRequest: IInvoiceCreateRequest;
|
8781
|
-
InvoiceCreatedEvent: ResolverTypeWrapper<IInvoiceCreatedEvent>;
|
8782
|
-
InvoiceDeletedEvent: ResolverTypeWrapper<IInvoiceDeletedEvent>;
|
8783
|
-
InvoiceMailRequest: IInvoiceMailRequest;
|
8784
|
-
InvoiceType: ResolverTypeWrapper<IInvoiceType>;
|
8785
|
-
InvoiceUpdateRequest: IInvoiceUpdateRequest;
|
8786
7498
|
JSON: ResolverTypeWrapper<Scalars['JSON']>;
|
8787
7499
|
JSONObject: ResolverTypeWrapper<Scalars['JSONObject']>;
|
8788
7500
|
KeyPathSegment: IKeyPathSegment;
|
@@ -8790,15 +7502,11 @@ export declare type IResolversTypes = {
|
|
8790
7502
|
MachineConfiguration: ResolverTypeWrapper<IMachineConfiguration>;
|
8791
7503
|
MachineSettings: ResolverTypeWrapper<IMachineSettings>;
|
8792
7504
|
MailTemplateId: IMailTemplateId;
|
8793
|
-
MemberInvoice: ResolverTypeWrapper<IMemberInvoice>;
|
8794
|
-
MemberInvoice_Input: IMemberInvoice_Input;
|
8795
7505
|
MemorySettings: ResolverTypeWrapper<IMemorySettings>;
|
8796
7506
|
MenuItem: ResolverTypeWrapper<IMenuItem>;
|
8797
7507
|
MenuPosition: IMenuPosition;
|
8798
7508
|
MoleculerServiceName: IMoleculerServiceName;
|
8799
7509
|
Mutation: ResolverTypeWrapper<{}>;
|
8800
|
-
NameType: ResolverTypeWrapper<INameType>;
|
8801
|
-
Name_Input: IName_Input;
|
8802
7510
|
Node: IResolversTypes['OrgUserAccunt'] | IResolversTypes['UserAccount'];
|
8803
7511
|
Observable: ResolverTypeWrapper<Scalars['Observable']>;
|
8804
7512
|
OrgDetailWhere: IOrgDetailWhere;
|
@@ -8848,6 +7556,7 @@ export declare type IResolversTypes = {
|
|
8848
7556
|
PhoneNumber: ResolverTypeWrapper<IPhoneNumber>;
|
8849
7557
|
PhoneNumberInput: IPhoneNumberInput;
|
8850
7558
|
PolicySubject: ResolverTypeWrapper<IPolicySubject>;
|
7559
|
+
PopupIntegrationAuthorization: ResolverTypeWrapper<IPopupIntegrationAuthorization>;
|
8851
7560
|
PortalLanguage: IPortalLanguage;
|
8852
7561
|
Position: ResolverTypeWrapper<IPosition>;
|
8853
7562
|
PreDefinedRole: IPreDefinedRole;
|
@@ -8866,22 +7575,6 @@ export declare type IResolversTypes = {
|
|
8866
7575
|
PreferencesOpenOptions_Input: IPreferencesOpenOptions_Input;
|
8867
7576
|
PreferencesResponse: ResolverTypeWrapper<IPreferencesResponse>;
|
8868
7577
|
PreferencesType: ResolverTypeWrapper<IPreferencesType>;
|
8869
|
-
ProjectAddRequest: IProjectAddRequest;
|
8870
|
-
ProjectCreatedEvent: ResolverTypeWrapper<IProjectCreatedEvent>;
|
8871
|
-
ProjectDeletedEvent: ResolverTypeWrapper<IProjectDeletedEvent>;
|
8872
|
-
ProjectInvoice: ResolverTypeWrapper<IProjectInvoice>;
|
8873
|
-
ProjectInvoice_Input: IProjectInvoice_Input;
|
8874
|
-
ProjectParameters: ResolverTypeWrapper<IProjectParameters>;
|
8875
|
-
ProjectParameters_Input: IProjectParameters_Input;
|
8876
|
-
ProjectSource: ResolverTypeWrapper<IProjectSource>;
|
8877
|
-
ProjectSourceProviders: IProjectSourceProviders;
|
8878
|
-
ProjectSourceType: IProjectSourceType;
|
8879
|
-
ProjectSource_Input: IProjectSource_Input;
|
8880
|
-
ProjectType: IProjectType;
|
8881
|
-
ProjectWhereInput: IProjectWhereInput;
|
8882
|
-
Project_Input: IProject_Input;
|
8883
|
-
Project_Output: ResolverTypeWrapper<IProject_Output>;
|
8884
|
-
Projects: ResolverTypeWrapper<IProjects>;
|
8885
7578
|
Query: ResolverTypeWrapper<{}>;
|
8886
7579
|
Range: ResolverTypeWrapper<IRange>;
|
8887
7580
|
RegistryExtensions: IRegistryExtensions;
|
@@ -8908,8 +7601,6 @@ export declare type IResolversTypes = {
|
|
8908
7601
|
SettingsGroup: ResolverTypeWrapper<ISettingsGroup>;
|
8909
7602
|
SettingsSection: ResolverTypeWrapper<ISettingsSection>;
|
8910
7603
|
SettingsSubject: IResolversTypes['UserSettings'] | IResolversTypes['ApplicationSettings'] | IResolversTypes['MachineSettings'] | IResolversTypes['OrganizationResourceSettings'] | IResolversTypes['GlobalSettings'] | IResolversTypes['OrganizationSettings'] | IResolversTypes['MemorySettings'] | IResolversTypes['DefaultSettings'];
|
8911
|
-
SocialConnect: ResolverTypeWrapper<ISocialConnect>;
|
8912
|
-
SocialConnect_Input: ISocialConnect_Input;
|
8913
7604
|
SshKey: ResolverTypeWrapper<ISshKey>;
|
8914
7605
|
SshKeyInput: ISshKeyInput;
|
8915
7606
|
SshKeyModel: ResolverTypeWrapper<ISshKeyModel>;
|
@@ -8921,8 +7612,6 @@ export declare type IResolversTypes = {
|
|
8921
7612
|
resources?: Maybe<Array<Maybe<IResolversTypes['ResourceData']>>>;
|
8922
7613
|
}>;
|
8923
7614
|
Subscription: ResolverTypeWrapper<{}>;
|
8924
|
-
Task: ResolverTypeWrapper<ITask>;
|
8925
|
-
TaskRequest: ITaskRequest;
|
8926
7615
|
TeamCreateRequest: ITeamCreateRequest;
|
8927
7616
|
TeamCreationRequest: ITeamCreationRequest;
|
8928
7617
|
TeamInvitationEmailVariables: ResolverTypeWrapper<ITeamInvitationEmailVariables>;
|
@@ -8933,15 +7622,12 @@ export declare type IResolversTypes = {
|
|
8933
7622
|
TeamServiceAction: ITeamServiceAction;
|
8934
7623
|
TeamType: ITeamType;
|
8935
7624
|
TeamUpdateRequest: ITeamUpdateRequest;
|
8936
|
-
Template: ITemplate;
|
8937
7625
|
TerritorialStateInput: ITerritorialStateInput;
|
8938
7626
|
TerritorialStateUpdateInput: ITerritorialStateUpdateInput;
|
8939
7627
|
Time: ResolverTypeWrapper<Scalars['Time']>;
|
8940
7628
|
TokenTypesEnum: ITokenTypesEnum;
|
8941
7629
|
URI: ResolverTypeWrapper<Scalars['URI']>;
|
8942
7630
|
URIInput: ResolverTypeWrapper<Scalars['URIInput']>;
|
8943
|
-
UpdateProject_Input: IUpdateProject_Input;
|
8944
|
-
UpdatedClient_Input: IUpdatedClient_Input;
|
8945
7631
|
UserAccount: ResolverTypeWrapper<IUserAccount>;
|
8946
7632
|
UserAccountCreateRequest: IUserAccountCreateRequest;
|
8947
7633
|
UserAccountCreatedDetailedEvent: ResolverTypeWrapper<IUserAccountCreatedDetailedEvent>;
|
@@ -8951,6 +7637,10 @@ export declare type IResolversTypes = {
|
|
8951
7637
|
UserAccountUpdateRequest: IUserAccountUpdateRequest;
|
8952
7638
|
UserAccountWhere: IUserAccountWhere;
|
8953
7639
|
UserAccount_Input: IUserAccount_Input;
|
7640
|
+
UserAuth0Info: ResolverTypeWrapper<IUserAuth0Info>;
|
7641
|
+
UserAuth0Integrations: ResolverTypeWrapper<IUserAuth0Integrations>;
|
7642
|
+
UserAuth0SessionDeviceInfo: ResolverTypeWrapper<IUserAuth0SessionDeviceInfo>;
|
7643
|
+
UserAuth0SessionInfo: ResolverTypeWrapper<IUserAuth0SessionInfo>;
|
8954
7644
|
UserAuth0UpdateFields: IUserAuth0UpdateFields;
|
8955
7645
|
UserBroadcasterAction: IUserBroadcasterAction;
|
8956
7646
|
UserConfiguration: ResolverTypeWrapper<IUserConfiguration>;
|
@@ -8963,6 +7653,7 @@ export declare type IResolversTypes = {
|
|
8963
7653
|
UserPasswordResetInput: IUserPasswordResetInput;
|
8964
7654
|
UserPreviousValues: ResolverTypeWrapper<IUserPreviousValues>;
|
8965
7655
|
UserProfile: ResolverTypeWrapper<IUserProfile>;
|
7656
|
+
UserSessionId: ResolverTypeWrapper<IUserSessionId>;
|
8966
7657
|
UserSettings: ResolverTypeWrapper<IUserSettings>;
|
8967
7658
|
UserState: ResolverTypeWrapper<IUserState>;
|
8968
7659
|
UserToken: ResolverTypeWrapper<IUserToken>;
|
@@ -8986,18 +7677,11 @@ export declare type IResolversParentTypes = {
|
|
8986
7677
|
Int: Scalars['Int'];
|
8987
7678
|
ActivityRecord: IActivityRecord;
|
8988
7679
|
ActivityRecordInput: IActivityRecordInput;
|
8989
|
-
AddressType: IAddressType;
|
8990
|
-
AddressType_Input: IAddressType_Input;
|
8991
7680
|
AdminIdeSettings: IAdminIdeSettings;
|
8992
7681
|
AnyObject: Scalars['AnyObject'];
|
8993
7682
|
ApplicationPolicy: IApplicationPolicy;
|
8994
7683
|
ApplicationRolePermission: IApplicationRolePermission;
|
8995
7684
|
ApplicationSettings: IApplicationSettings;
|
8996
|
-
AsanaConnection: IAsanaConnection;
|
8997
|
-
AsanaConnectionState: IAsanaConnectionState;
|
8998
|
-
AsanaProjects: IAsanaProjects;
|
8999
|
-
AsanaUser: IAsanaUser;
|
9000
|
-
AsanaWorkspaces: IAsanaWorkspaces;
|
9001
7685
|
Auth0Identity: IAuth0Identity;
|
9002
7686
|
Auth0IdentityProfileData: IAuth0IdentityProfileData;
|
9003
7687
|
AuthTokens: IAuthTokens;
|
@@ -9005,13 +7689,6 @@ export declare type IResolversParentTypes = {
|
|
9005
7689
|
AuthUser_Input: IAuthUser_Input;
|
9006
7690
|
CityInput: ICityInput;
|
9007
7691
|
CityUpdateInput: ICityUpdateInput;
|
9008
|
-
Client: IClient;
|
9009
|
-
ClientAddRequest: IClientAddRequest;
|
9010
|
-
ClientCreatedEvent: IClientCreatedEvent;
|
9011
|
-
ClientDeletedEvent: IClientDeletedEvent;
|
9012
|
-
ClientPhone: IClientPhone;
|
9013
|
-
ClientPhone_Input: IClientPhone_Input;
|
9014
|
-
ClientUpdateRequest: IClientUpdateRequest;
|
9015
7692
|
Configuration: IResolversParentTypes['DefaultConfiguration'] | IResolversParentTypes['MachineConfiguration'] | IResolversParentTypes['UserConfiguration'] | IResolversParentTypes['OrganizationConfiguration'] | IResolversParentTypes['OrganizationResourceConfiguration'];
|
9016
7693
|
ConfigurationData: IConfigurationData;
|
9017
7694
|
ConfigurationExtensionInfo: IConfigurationExtensionInfo;
|
@@ -9029,14 +7706,13 @@ export declare type IResolversParentTypes = {
|
|
9029
7706
|
ContributionSettingsProperties: IContributionSettingsProperties;
|
9030
7707
|
Country: ICountry;
|
9031
7708
|
CountryInput: ICountryInput;
|
9032
|
-
CustomerInvoice: ICustomerInvoice;
|
9033
|
-
CustomerInvoice_Input: ICustomerInvoice_Input;
|
9034
7709
|
Date: Scalars['Date'];
|
9035
7710
|
DateTime: Scalars['DateTime'];
|
9036
7711
|
DefaultConfiguration: IDefaultConfiguration;
|
9037
7712
|
DefaultPolicy: IDefaultPolicy;
|
9038
7713
|
DefaultRole: IDefaultRole;
|
9039
7714
|
DefaultSettings: IDefaultSettings;
|
7715
|
+
DeviceInfoInput: IDeviceInfoInput;
|
9040
7716
|
EmptyResponse: IEmptyResponse;
|
9041
7717
|
Environment: IEnvironment;
|
9042
7718
|
EnvironmentPayload: IEnvironmentPayload;
|
@@ -9075,25 +7751,15 @@ export declare type IResolversParentTypes = {
|
|
9075
7751
|
IntegrationConfigurationFilterInput: IIntegrationConfigurationFilterInput;
|
9076
7752
|
IntegrationConfigurationInput: IIntegrationConfigurationInput;
|
9077
7753
|
InviteMember: IInviteMember;
|
9078
|
-
InvoiceCreateRequest: IInvoiceCreateRequest;
|
9079
|
-
InvoiceCreatedEvent: IInvoiceCreatedEvent;
|
9080
|
-
InvoiceDeletedEvent: IInvoiceDeletedEvent;
|
9081
|
-
InvoiceMailRequest: IInvoiceMailRequest;
|
9082
|
-
InvoiceType: IInvoiceType;
|
9083
|
-
InvoiceUpdateRequest: IInvoiceUpdateRequest;
|
9084
7754
|
JSON: Scalars['JSON'];
|
9085
7755
|
JSONObject: Scalars['JSONObject'];
|
9086
7756
|
KeyPathSegment: IKeyPathSegment;
|
9087
7757
|
LoginError: ILoginError;
|
9088
7758
|
MachineConfiguration: IMachineConfiguration;
|
9089
7759
|
MachineSettings: IMachineSettings;
|
9090
|
-
MemberInvoice: IMemberInvoice;
|
9091
|
-
MemberInvoice_Input: IMemberInvoice_Input;
|
9092
7760
|
MemorySettings: IMemorySettings;
|
9093
7761
|
MenuItem: IMenuItem;
|
9094
7762
|
Mutation: {};
|
9095
|
-
NameType: INameType;
|
9096
|
-
Name_Input: IName_Input;
|
9097
7763
|
Node: IResolversParentTypes['OrgUserAccunt'] | IResolversParentTypes['UserAccount'];
|
9098
7764
|
Observable: Scalars['Observable'];
|
9099
7765
|
OrgDetailWhere: IOrgDetailWhere;
|
@@ -9136,6 +7802,7 @@ export declare type IResolversParentTypes = {
|
|
9136
7802
|
PhoneNumber: IPhoneNumber;
|
9137
7803
|
PhoneNumberInput: IPhoneNumberInput;
|
9138
7804
|
PolicySubject: IPolicySubject;
|
7805
|
+
PopupIntegrationAuthorization: IPopupIntegrationAuthorization;
|
9139
7806
|
Position: IPosition;
|
9140
7807
|
PreferenceItem: IPreferenceItem;
|
9141
7808
|
Preference_Account: IPreference_Account;
|
@@ -9152,19 +7819,6 @@ export declare type IResolversParentTypes = {
|
|
9152
7819
|
PreferencesOpenOptions_Input: IPreferencesOpenOptions_Input;
|
9153
7820
|
PreferencesResponse: IPreferencesResponse;
|
9154
7821
|
PreferencesType: IPreferencesType;
|
9155
|
-
ProjectAddRequest: IProjectAddRequest;
|
9156
|
-
ProjectCreatedEvent: IProjectCreatedEvent;
|
9157
|
-
ProjectDeletedEvent: IProjectDeletedEvent;
|
9158
|
-
ProjectInvoice: IProjectInvoice;
|
9159
|
-
ProjectInvoice_Input: IProjectInvoice_Input;
|
9160
|
-
ProjectParameters: IProjectParameters;
|
9161
|
-
ProjectParameters_Input: IProjectParameters_Input;
|
9162
|
-
ProjectSource: IProjectSource;
|
9163
|
-
ProjectSource_Input: IProjectSource_Input;
|
9164
|
-
ProjectWhereInput: IProjectWhereInput;
|
9165
|
-
Project_Input: IProject_Input;
|
9166
|
-
Project_Output: IProject_Output;
|
9167
|
-
Projects: IProjects;
|
9168
7822
|
Query: {};
|
9169
7823
|
Range: IRange;
|
9170
7824
|
ResourceAccessRole: Omit<IResourceAccessRole, 'accessRoles'> & {
|
@@ -9186,8 +7840,6 @@ export declare type IResolversParentTypes = {
|
|
9186
7840
|
SettingsGroup: ISettingsGroup;
|
9187
7841
|
SettingsSection: ISettingsSection;
|
9188
7842
|
SettingsSubject: IResolversParentTypes['UserSettings'] | IResolversParentTypes['ApplicationSettings'] | IResolversParentTypes['MachineSettings'] | IResolversParentTypes['OrganizationResourceSettings'] | IResolversParentTypes['GlobalSettings'] | IResolversParentTypes['OrganizationSettings'] | IResolversParentTypes['MemorySettings'] | IResolversParentTypes['DefaultSettings'];
|
9189
|
-
SocialConnect: ISocialConnect;
|
9190
|
-
SocialConnect_Input: ISocialConnect_Input;
|
9191
7843
|
SshKey: ISshKey;
|
9192
7844
|
SshKeyInput: ISshKeyInput;
|
9193
7845
|
SshKeyModel: ISshKeyModel;
|
@@ -9197,8 +7849,6 @@ export declare type IResolversParentTypes = {
|
|
9197
7849
|
resources?: Maybe<Array<Maybe<IResolversParentTypes['ResourceData']>>>;
|
9198
7850
|
};
|
9199
7851
|
Subscription: {};
|
9200
|
-
Task: ITask;
|
9201
|
-
TaskRequest: ITaskRequest;
|
9202
7852
|
TeamCreateRequest: ITeamCreateRequest;
|
9203
7853
|
TeamCreationRequest: ITeamCreationRequest;
|
9204
7854
|
TeamInvitationEmailVariables: ITeamInvitationEmailVariables;
|
@@ -9208,14 +7858,11 @@ export declare type IResolversParentTypes = {
|
|
9208
7858
|
TeamService: ITeamService;
|
9209
7859
|
TeamType: ITeamType;
|
9210
7860
|
TeamUpdateRequest: ITeamUpdateRequest;
|
9211
|
-
Template: ITemplate;
|
9212
7861
|
TerritorialStateInput: ITerritorialStateInput;
|
9213
7862
|
TerritorialStateUpdateInput: ITerritorialStateUpdateInput;
|
9214
7863
|
Time: Scalars['Time'];
|
9215
7864
|
URI: Scalars['URI'];
|
9216
7865
|
URIInput: Scalars['URIInput'];
|
9217
|
-
UpdateProject_Input: IUpdateProject_Input;
|
9218
|
-
UpdatedClient_Input: IUpdatedClient_Input;
|
9219
7866
|
UserAccount: IUserAccount;
|
9220
7867
|
UserAccountCreateRequest: IUserAccountCreateRequest;
|
9221
7868
|
UserAccountCreatedDetailedEvent: IUserAccountCreatedDetailedEvent;
|
@@ -9225,6 +7872,10 @@ export declare type IResolversParentTypes = {
|
|
9225
7872
|
UserAccountUpdateRequest: IUserAccountUpdateRequest;
|
9226
7873
|
UserAccountWhere: IUserAccountWhere;
|
9227
7874
|
UserAccount_Input: IUserAccount_Input;
|
7875
|
+
UserAuth0Info: IUserAuth0Info;
|
7876
|
+
UserAuth0Integrations: IUserAuth0Integrations;
|
7877
|
+
UserAuth0SessionDeviceInfo: IUserAuth0SessionDeviceInfo;
|
7878
|
+
UserAuth0SessionInfo: IUserAuth0SessionInfo;
|
9228
7879
|
UserAuth0UpdateFields: IUserAuth0UpdateFields;
|
9229
7880
|
UserConfiguration: IUserConfiguration;
|
9230
7881
|
UserContext: IUserContext;
|
@@ -9235,6 +7886,7 @@ export declare type IResolversParentTypes = {
|
|
9235
7886
|
UserPasswordResetInput: IUserPasswordResetInput;
|
9236
7887
|
UserPreviousValues: IUserPreviousValues;
|
9237
7888
|
UserProfile: IUserProfile;
|
7889
|
+
UserSessionId: IUserSessionId;
|
9238
7890
|
UserSettings: IUserSettings;
|
9239
7891
|
UserState: IUserState;
|
9240
7892
|
UserToken: IUserToken;
|
@@ -9299,15 +7951,6 @@ export declare type IActivityRecordResolvers<ContextType = MyContext, ParentType
|
|
9299
7951
|
timestamp?: Resolver<IResolversTypes['Int'], ParentType, ContextType>;
|
9300
7952
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9301
7953
|
};
|
9302
|
-
export declare type IAddressTypeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AddressType'] = IResolversParentTypes['AddressType']> = {
|
9303
|
-
attention?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9304
|
-
address?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9305
|
-
city?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9306
|
-
state?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9307
|
-
country?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9308
|
-
zip?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9309
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9310
|
-
};
|
9311
7954
|
export declare type IAdminIdeSettingsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AdminIdeSettings'] = IResolversParentTypes['AdminIdeSettings']> = {
|
9312
7955
|
activityNamespace?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9313
7956
|
activityVersion?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -9341,30 +7984,6 @@ export declare type IApplicationSettingsResolvers<ContextType = MyContext, Paren
|
|
9341
7984
|
settingsCascade?: Resolver<IResolversTypes['SettingsCascade'], ParentType, ContextType>;
|
9342
7985
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9343
7986
|
};
|
9344
|
-
export declare type IAsanaConnectionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AsanaConnection'] = IResolversParentTypes['AsanaConnection']> = {
|
9345
|
-
asana?: Resolver<Maybe<IResolversTypes['AsanaConnectionState']>, ParentType, ContextType>;
|
9346
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9347
|
-
};
|
9348
|
-
export declare type IAsanaConnectionStateResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AsanaConnectionState'] = IResolversParentTypes['AsanaConnectionState']> = {
|
9349
|
-
status?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9350
|
-
user?: Resolver<Maybe<IResolversTypes['AsanaUser']>, ParentType, ContextType>;
|
9351
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9352
|
-
};
|
9353
|
-
export declare type IAsanaProjectsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AsanaProjects'] = IResolversParentTypes['AsanaProjects']> = {
|
9354
|
-
gid?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9355
|
-
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9356
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9357
|
-
};
|
9358
|
-
export declare type IAsanaUserResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AsanaUser'] = IResolversParentTypes['AsanaUser']> = {
|
9359
|
-
user_id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9360
|
-
username?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9361
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9362
|
-
};
|
9363
|
-
export declare type IAsanaWorkspacesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AsanaWorkspaces'] = IResolversParentTypes['AsanaWorkspaces']> = {
|
9364
|
-
gid?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9365
|
-
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9366
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9367
|
-
};
|
9368
7987
|
export declare type IAuth0IdentityResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Auth0Identity'] = IResolversParentTypes['Auth0Identity']> = {
|
9369
7988
|
connection?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9370
7989
|
isSocial?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
@@ -9380,7 +7999,8 @@ export declare type IAuth0IdentityProfileDataResolvers<ContextType = MyContext,
|
|
9380
7999
|
};
|
9381
8000
|
export declare type IAuthTokensResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AuthTokens'] = IResolversParentTypes['AuthTokens']> = {
|
9382
8001
|
idToken?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9383
|
-
|
8002
|
+
sessionId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8003
|
+
accessToken?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9384
8004
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9385
8005
|
};
|
9386
8006
|
export declare type IAuthUserResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AuthUser'] = IResolversParentTypes['AuthUser']> = {
|
@@ -9395,36 +8015,6 @@ export declare type IAuthUserResolvers<ContextType = MyContext, ParentType exten
|
|
9395
8015
|
phoneNo?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
9396
8016
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9397
8017
|
};
|
9398
|
-
export declare type IClientResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Client'] = IResolversParentTypes['Client']> = {
|
9399
|
-
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
9400
|
-
name?: Resolver<IResolversTypes['NameType'], ParentType, ContextType>;
|
9401
|
-
companyName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9402
|
-
displayName?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
9403
|
-
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9404
|
-
clientPhone?: Resolver<Maybe<IResolversTypes['ClientPhone']>, ParentType, ContextType>;
|
9405
|
-
website?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9406
|
-
currency?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
9407
|
-
socialConnect?: Resolver<Maybe<IResolversTypes['SocialConnect']>, ParentType, ContextType>;
|
9408
|
-
billingAddress?: Resolver<Maybe<IResolversTypes['AddressType']>, ParentType, ContextType>;
|
9409
|
-
shippingAddress?: Resolver<Maybe<IResolversTypes['AddressType']>, ParentType, ContextType>;
|
9410
|
-
orgName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9411
|
-
createdAt?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
|
9412
|
-
updatedAt?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
|
9413
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9414
|
-
};
|
9415
|
-
export declare type IClientCreatedEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ClientCreatedEvent'] = IResolversParentTypes['ClientCreatedEvent']> = {
|
9416
|
-
createdClient?: Resolver<Maybe<IResolversTypes['Client']>, ParentType, ContextType>;
|
9417
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9418
|
-
};
|
9419
|
-
export declare type IClientDeletedEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ClientDeletedEvent'] = IResolversParentTypes['ClientDeletedEvent']> = {
|
9420
|
-
deletedClient?: Resolver<Maybe<IResolversTypes['Client']>, ParentType, ContextType>;
|
9421
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9422
|
-
};
|
9423
|
-
export declare type IClientPhoneResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ClientPhone'] = IResolversParentTypes['ClientPhone']> = {
|
9424
|
-
workPhone?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9425
|
-
mobile?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9426
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9427
|
-
};
|
9428
8018
|
export declare type IConfigurationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Configuration'] = IResolversParentTypes['Configuration']> = {
|
9429
8019
|
__resolveType: TypeResolveFn<'DefaultConfiguration' | 'MachineConfiguration' | 'UserConfiguration' | 'OrganizationConfiguration' | 'OrganizationResourceConfiguration', ParentType, ContextType>;
|
9430
8020
|
};
|
@@ -9563,16 +8153,6 @@ export declare type ICountryResolvers<ContextType = MyContext, ParentType extend
|
|
9563
8153
|
phoneCode?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
9564
8154
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9565
8155
|
};
|
9566
|
-
export declare type ICustomerInvoiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['CustomerInvoice'] = IResolversParentTypes['CustomerInvoice']> = {
|
9567
|
-
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9568
|
-
username?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9569
|
-
companyName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9570
|
-
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9571
|
-
phone?: Resolver<Maybe<IResolversTypes['ClientPhone']>, ParentType, ContextType>;
|
9572
|
-
billingAddress?: Resolver<Maybe<IResolversTypes['AddressType']>, ParentType, ContextType>;
|
9573
|
-
shippingAddress?: Resolver<Maybe<IResolversTypes['AddressType']>, ParentType, ContextType>;
|
9574
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9575
|
-
};
|
9576
8156
|
export interface IDateScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Date'], any> {
|
9577
8157
|
name: 'Date';
|
9578
8158
|
}
|
@@ -9823,44 +8403,6 @@ export declare type IInviteMemberResolvers<ContextType = MyContext, ParentType e
|
|
9823
8403
|
status?: Resolver<Maybe<IResolversTypes['InviteStatus']>, ParentType, ContextType>;
|
9824
8404
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9825
8405
|
};
|
9826
|
-
export declare type IInvoiceCreatedEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['InvoiceCreatedEvent'] = IResolversParentTypes['InvoiceCreatedEvent']> = {
|
9827
|
-
createdInvoice?: Resolver<Maybe<IResolversTypes['InvoiceType']>, ParentType, ContextType>;
|
9828
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9829
|
-
};
|
9830
|
-
export declare type IInvoiceDeletedEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['InvoiceDeletedEvent'] = IResolversParentTypes['InvoiceDeletedEvent']> = {
|
9831
|
-
deletedInvoice?: Resolver<Maybe<IResolversTypes['InvoiceType']>, ParentType, ContextType>;
|
9832
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9833
|
-
};
|
9834
|
-
export declare type IInvoiceTypeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['InvoiceType'] = IResolversParentTypes['InvoiceType']> = {
|
9835
|
-
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
9836
|
-
comment?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9837
|
-
currency?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9838
|
-
discount?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
9839
|
-
from?: Resolver<Maybe<IResolversTypes['MemberInvoice']>, ParentType, ContextType>;
|
9840
|
-
invoiceDate?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
|
9841
|
-
terms?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9842
|
-
dueDate?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
|
9843
|
-
invoiceNumber?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9844
|
-
orderNumber?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9845
|
-
invoiceVendor?: Resolver<Maybe<IResolversTypes['MemberInvoice']>, ParentType, ContextType>;
|
9846
|
-
logo?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9847
|
-
overdue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9848
|
-
paymentStatus?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9849
|
-
projects?: Resolver<Maybe<Array<Maybe<IResolversTypes['ProjectInvoice']>>>, ParentType, ContextType>;
|
9850
|
-
sendingStatus?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9851
|
-
status?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9852
|
-
subTotal?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
9853
|
-
tax?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
9854
|
-
subject?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9855
|
-
conditions?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9856
|
-
timezoneOffset?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
9857
|
-
to?: Resolver<Maybe<IResolversTypes['CustomerInvoice']>, ParentType, ContextType>;
|
9858
|
-
total?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
9859
|
-
orgName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9860
|
-
createdAt?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
|
9861
|
-
updatedAt?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
|
9862
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9863
|
-
};
|
9864
8406
|
export interface IJSONScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['JSON'], any> {
|
9865
8407
|
name: 'JSON';
|
9866
8408
|
}
|
@@ -9889,15 +8431,6 @@ export declare type IMachineSettingsResolvers<ContextType = MyContext, ParentTyp
|
|
9889
8431
|
settingsCascade?: Resolver<IResolversTypes['SettingsCascade'], ParentType, ContextType>;
|
9890
8432
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9891
8433
|
};
|
9892
|
-
export declare type IMemberInvoiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MemberInvoice'] = IResolversParentTypes['MemberInvoice']> = {
|
9893
|
-
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9894
|
-
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9895
|
-
companyName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9896
|
-
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9897
|
-
phone?: Resolver<Maybe<IResolversTypes['ClientPhone']>, ParentType, ContextType>;
|
9898
|
-
address?: Resolver<Maybe<IResolversTypes['AddressType']>, ParentType, ContextType>;
|
9899
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9900
|
-
};
|
9901
8434
|
export declare type IMemorySettingsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MemorySettings'] = IResolversParentTypes['MemorySettings']> = {
|
9902
8435
|
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
9903
8436
|
latestSettings?: Resolver<Maybe<IResolversTypes['Settings']>, ParentType, ContextType>;
|
@@ -9924,9 +8457,7 @@ export declare type IMutationResolvers<ContextType = MyContext, ParentType exten
|
|
9924
8457
|
UpdateSshKey?: Resolver<Maybe<IResolversTypes['SshKey']>, ParentType, ContextType, RequireFields<IMutationUpdateSshKeyArgs, 'id' | 'key'>>;
|
9925
8458
|
acceptOrganizationInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationacceptOrganizationInvitationArgs, 'id'>>;
|
9926
8459
|
accountOnBoarding?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationaccountOnBoardingArgs, never>>;
|
9927
|
-
addClient?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationaddClientArgs, 'client'>>;
|
9928
8460
|
addContributionRole?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationaddContributionRoleArgs, 'name'>>;
|
9929
|
-
addOrgProject?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationaddOrgProjectArgs, 'project'>>;
|
9930
8461
|
addResourceToContext?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationaddResourceToContextArgs, 'resourcesToAdd'>>;
|
9931
8462
|
addTeamMembers?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationaddTeamMembersArgs, 'orgName' | 'teamName' | 'memberIds'>>;
|
9932
8463
|
changeMemberRole?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationchangeMemberRoleArgs, 'orgName' | 'teamName' | 'memberId' | 'role'>>;
|
@@ -9934,36 +8465,34 @@ export declare type IMutationResolvers<ContextType = MyContext, ParentType exten
|
|
9934
8465
|
changeOrganization?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType, RequireFields<IMutationchangeOrganizationArgs, never>>;
|
9935
8466
|
collect?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationcollectArgs, 'request'>>;
|
9936
8467
|
createIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['IntegraitonConfigurationId']>, ParentType, ContextType, RequireFields<IMutationcreateIntegrationConfigurationArgs, never>>;
|
9937
|
-
createInvoice?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationcreateInvoiceArgs, 'invoice'>>;
|
9938
8468
|
createOrUpdateIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['IntegraitonConfigurationId']>, ParentType, ContextType, RequireFields<IMutationcreateOrUpdateIntegrationConfigurationArgs, never>>;
|
9939
8469
|
createOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IMutationcreateOrganizationArgs, 'organization'>>;
|
9940
|
-
createTask?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationcreateTaskArgs, never>>;
|
9941
8470
|
createTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IMutationcreateTeamArgs, 'request'>>;
|
9942
|
-
createTokens?: Resolver<Maybe<IResolversTypes['AuthTokens']>, ParentType, ContextType, RequireFields<IMutationcreateTokensArgs, never>>;
|
9943
8471
|
declineOrganizationInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationdeclineOrganizationInvitationArgs, 'id'>>;
|
9944
8472
|
deleteIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationdeleteIntegrationConfigurationArgs, 'id'>>;
|
9945
8473
|
deleteUserAccount?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9946
8474
|
deleteUserAuthorizedDevice?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationdeleteUserAuthorizedDeviceArgs, 'deviceId'>>;
|
9947
8475
|
dummy?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
8476
|
+
initializeAuthorizationCodeFlow?: Resolver<Maybe<IResolversTypes['AuthTokens']>, ParentType, ContextType, RequireFields<IMutationinitializeAuthorizationCodeFlowArgs, 'deviceInfo'>>;
|
9948
8477
|
initializeOrgNameInContext?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationinitializeOrgNameInContextArgs, never>>;
|
8478
|
+
initializePopupIntegrationAuthorization?: Resolver<Maybe<IResolversTypes['PopupIntegrationAuthorization']>, ParentType, ContextType, RequireFields<IMutationinitializePopupIntegrationAuthorizationArgs, never>>;
|
9949
8479
|
initializeTeamInContext?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationinitializeTeamInContextArgs, never>>;
|
8480
|
+
initializeUserSession?: Resolver<Maybe<IResolversTypes['UserSessionId']>, ParentType, ContextType, RequireFields<IMutationinitializeUserSessionArgs, 'deviceInfo'>>;
|
9950
8481
|
initiateConfigurationValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationinitiateConfigurationValueArgs, never>>;
|
9951
8482
|
initiatePolicyValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationinitiatePolicyValueArgs, never>>;
|
9952
8483
|
reassignRole?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9953
8484
|
registerAccountUser?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IMutationregisterAccountUserArgs, never>>;
|
9954
8485
|
registerUserInAuth0?: Resolver<Maybe<IResolversTypes['UserProfile']>, ParentType, ContextType, RequireFields<IMutationregisterUserInAuth0Args, 'email' | 'password'>>;
|
9955
|
-
removeInvoice?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationremoveInvoiceArgs, never>>;
|
9956
|
-
removeOrgClient?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationremoveOrgClientArgs, 'clientId'>>;
|
9957
8486
|
removeOrgMember?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationremoveOrgMemberArgs, 'memberId'>>;
|
9958
8487
|
removeOrganization?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationremoveOrganizationArgs, 'organization'>>;
|
9959
|
-
removeTask?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationremoveTaskArgs, 'id'>>;
|
9960
8488
|
removeTeam?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationremoveTeamArgs, 'teamId'>>;
|
9961
8489
|
removeTeamMember?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationremoveTeamMemberArgs, 'orgName' | 'teamName' | 'memberId'>>;
|
8490
|
+
removeUserAuthSession?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationremoveUserAuthSessionArgs, never>>;
|
8491
|
+
removedUserAuthIntegration?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationremovedUserAuthIntegrationArgs, never>>;
|
9962
8492
|
renewAuthToken?: Resolver<Maybe<IResolversTypes['AuthTokens']>, ParentType, ContextType, RequireFields<IMutationrenewAuthTokenArgs, never>>;
|
9963
8493
|
resendOrganizationInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationresendOrganizationInvitationArgs, 'id'>>;
|
9964
8494
|
resendUserEmailVerificationEmail?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9965
8495
|
resetUserPassword?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationresetUserPasswordArgs, 'input'>>;
|
9966
|
-
sendInvoiceMail?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationsendInvoiceMailArgs, 'request'>>;
|
9967
8496
|
sendOrganizationInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationsendOrganizationInvitationArgs, never>>;
|
9968
8497
|
sendUserPasswordResetEmail?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationsendUserPasswordResetEmailArgs, 'email'>>;
|
9969
8498
|
setSettingsValueByResource?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationsetSettingsValueByResourceArgs, never>>;
|
@@ -9975,28 +8504,16 @@ export declare type IMutationResolvers<ContextType = MyContext, ParentType exten
|
|
9975
8504
|
updateConfigurationValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationupdateConfigurationValueArgs, 'key' | 'value'>>;
|
9976
8505
|
updateConfigurationValueByUri?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationupdateConfigurationValueByUriArgs, 'key' | 'value'>>;
|
9977
8506
|
updateContext?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationupdateContextArgs, never>>;
|
9978
|
-
updateInvoice?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationupdateInvoiceArgs, never>>;
|
9979
|
-
updateOrgClient?: Resolver<Maybe<IResolversTypes['Client']>, ParentType, ContextType, RequireFields<IMutationupdateOrgClientArgs, never>>;
|
9980
8507
|
updateOrgMemberTeams?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationupdateOrgMemberTeamsArgs, 'userId' | 'orgName'>>;
|
9981
|
-
updateOrgProject?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationupdateOrgProjectArgs, 'where'>>;
|
9982
8508
|
updateOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IMutationupdateOrganizationArgs, 'organization'>>;
|
9983
8509
|
updateOrganizationContextAddResources?: Resolver<Maybe<Array<Maybe<IResolversTypes['ResourceData']>>>, ParentType, ContextType, RequireFields<IMutationupdateOrganizationContextAddResourcesArgs, 'resourcesToAdd'>>;
|
9984
8510
|
updateOrganizationContextRemoveResources?: Resolver<Maybe<Array<Maybe<IResolversTypes['ResourceData']>>>, ParentType, ContextType, RequireFields<IMutationupdateOrganizationContextRemoveResourcesArgs, 'resourcesToRemove'>>;
|
9985
8511
|
updateOrganizationContextUpdateResources?: Resolver<Maybe<Array<Maybe<IResolversTypes['ResourceData']>>>, ParentType, ContextType, RequireFields<IMutationupdateOrganizationContextUpdateResourcesArgs, 'resourcesToAdd' | 'resourcesToRemove'>>;
|
9986
|
-
updateProjectStatus?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationupdateProjectStatusArgs, 'id'>>;
|
9987
8512
|
updateRoleValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationupdateRoleValueArgs, 'key' | 'value'>>;
|
9988
8513
|
updateSelectedOrgResource?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationupdateSelectedOrgResourceArgs, 'resource'>>;
|
9989
|
-
updateTask?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationupdateTaskArgs, 'id'>>;
|
9990
8514
|
updateUserAccount?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationupdateUserAccountArgs, never>>;
|
9991
|
-
upsertProjectThroughIntegration?: Resolver<Maybe<IResolversTypes['Projects']>, ParentType, ContextType, RequireFields<IMutationupsertProjectThroughIntegrationArgs, 'where'>>;
|
9992
8515
|
verifyUserEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationverifyUserEmailVerificationTokenArgs, never>>;
|
9993
8516
|
};
|
9994
|
-
export declare type INameTypeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['NameType'] = IResolversParentTypes['NameType']> = {
|
9995
|
-
salutation?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9996
|
-
firstName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9997
|
-
lastName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9998
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9999
|
-
};
|
10000
8517
|
export declare type INodeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Node'] = IResolversParentTypes['Node']> = {
|
10001
8518
|
__resolveType: TypeResolveFn<'OrgUserAccunt' | 'UserAccount', ParentType, ContextType>;
|
10002
8519
|
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
@@ -10210,6 +8727,10 @@ export declare type IPolicySubjectResolvers<ContextType = MyContext, ParentType
|
|
10210
8727
|
policies?: Resolver<IResolversTypes['AnyObject'], ParentType, ContextType>;
|
10211
8728
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10212
8729
|
};
|
8730
|
+
export declare type IPopupIntegrationAuthorizationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['PopupIntegrationAuthorization'] = IResolversParentTypes['PopupIntegrationAuthorization']> = {
|
8731
|
+
idToken?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
8732
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
8733
|
+
};
|
10213
8734
|
export declare type IPositionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Position'] = IResolversParentTypes['Position']> = {
|
10214
8735
|
line?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
10215
8736
|
character?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
@@ -10287,63 +8808,6 @@ export declare type IPreferencesTypeResolvers<ContextType = MyContext, ParentTyp
|
|
10287
8808
|
data?: Resolver<Maybe<Array<Maybe<IResolversTypes['ContributionSettings']>>>, ParentType, ContextType>;
|
10288
8809
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10289
8810
|
};
|
10290
|
-
export declare type IProjectCreatedEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ProjectCreatedEvent'] = IResolversParentTypes['ProjectCreatedEvent']> = {
|
10291
|
-
createdProject?: Resolver<Maybe<IResolversTypes['Projects']>, ParentType, ContextType>;
|
10292
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10293
|
-
};
|
10294
|
-
export declare type IProjectDeletedEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ProjectDeletedEvent'] = IResolversParentTypes['ProjectDeletedEvent']> = {
|
10295
|
-
deletedProject?: Resolver<Maybe<IResolversTypes['Projects']>, ParentType, ContextType>;
|
10296
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10297
|
-
};
|
10298
|
-
export declare type IProjectInvoiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ProjectInvoice'] = IResolversParentTypes['ProjectInvoice']> = {
|
10299
|
-
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
10300
|
-
hours?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
10301
|
-
projectName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10302
|
-
rate?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
10303
|
-
subTotal?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
10304
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10305
|
-
};
|
10306
|
-
export declare type IProjectParametersResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ProjectParameters'] = IResolversParentTypes['ProjectParameters']> = {
|
10307
|
-
branch?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10308
|
-
httpsUrl?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10309
|
-
isPrivate?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
10310
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10311
|
-
};
|
10312
|
-
export declare type IProjectSourceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ProjectSource'] = IResolversParentTypes['ProjectSource']> = {
|
10313
|
-
location?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10314
|
-
type?: Resolver<Maybe<IResolversTypes['ProjectSourceType']>, ParentType, ContextType>;
|
10315
|
-
parameters?: Resolver<Maybe<IResolversTypes['ProjectParameters']>, ParentType, ContextType>;
|
10316
|
-
providers?: Resolver<Maybe<IResolversTypes['ProjectSourceProviders']>, ParentType, ContextType>;
|
10317
|
-
language?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10318
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10319
|
-
};
|
10320
|
-
export declare type IProject_OutputResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Project_Output'] = IResolversParentTypes['Project_Output']> = {
|
10321
|
-
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10322
|
-
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
10323
|
-
clientId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10324
|
-
teams?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
10325
|
-
status?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10326
|
-
orgName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10327
|
-
integrationConfigurationId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10328
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10329
|
-
};
|
10330
|
-
export declare type IProjectsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Projects'] = IResolversParentTypes['Projects']> = {
|
10331
|
-
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
10332
|
-
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
10333
|
-
description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10334
|
-
clientId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10335
|
-
source?: Resolver<Maybe<IResolversTypes['ProjectSource']>, ParentType, ContextType>;
|
10336
|
-
problems?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
10337
|
-
teams?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
10338
|
-
status?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10339
|
-
type?: Resolver<Maybe<IResolversTypes['ProjectType']>, ParentType, ContextType>;
|
10340
|
-
integrationConfigurationId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10341
|
-
templateId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10342
|
-
orgName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10343
|
-
updatedAt?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
|
10344
|
-
createdAt?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
|
10345
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10346
|
-
};
|
10347
8811
|
export declare type IQueryResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Query'] = IResolversParentTypes['Query']> = {
|
10348
8812
|
GetSshKey?: Resolver<Maybe<IResolversTypes['SshKey']>, ParentType, ContextType, RequireFields<IQueryGetSshKeyArgs, 'id'>>;
|
10349
8813
|
decodeOrganizationInvitation?: Resolver<Maybe<IResolversTypes['OrganizationInvitationDecode']>, ParentType, ContextType, RequireFields<IQuerydecodeOrganizationInvitationArgs, 'token'>>;
|
@@ -10358,9 +8822,6 @@ export declare type IQueryResolvers<ContextType = MyContext, ParentType extends
|
|
10358
8822
|
getAccounts?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserAccount']>>>, ParentType, ContextType, RequireFields<IQuerygetAccountsArgs, never>>;
|
10359
8823
|
getAllCountries?: Resolver<Maybe<Array<Maybe<IResolversTypes['Country']>>>, ParentType, ContextType, RequireFields<IQuerygetAllCountriesArgs, never>>;
|
10360
8824
|
getAllIntegrationConfigurations?: Resolver<Maybe<Array<Maybe<IResolversTypes['IntegrationConfiguration']>>>, ParentType, ContextType>;
|
10361
|
-
getAsanaConnectionState?: Resolver<Maybe<IResolversTypes['AsanaConnection']>, ParentType, ContextType>;
|
10362
|
-
getAsanaWorkspaceProjects?: Resolver<Maybe<Array<Maybe<IResolversTypes['AsanaProjects']>>>, ParentType, ContextType, RequireFields<IQuerygetAsanaWorkspaceProjectsArgs, 'workspaceId'>>;
|
10363
|
-
getAsanaWorkspaces?: Resolver<Maybe<Array<Maybe<IResolversTypes['AsanaWorkspaces']>>>, ParentType, ContextType>;
|
10364
8825
|
getConfiguration?: Resolver<Maybe<Array<Maybe<IResolversTypes['Configuration']>>>, ParentType, ContextType, RequireFields<IQuerygetConfigurationArgs, never>>;
|
10365
8826
|
getConfigurationData?: Resolver<Maybe<IResolversTypes['ConfigurationData']>, ParentType, ContextType>;
|
10366
8827
|
getConfigurationPolicies?: Resolver<Maybe<Array<Maybe<IResolversTypes['ConfigurationPolicy']>>>, ParentType, ContextType, RequireFields<IQuerygetConfigurationPoliciesArgs, never>>;
|
@@ -10368,18 +8829,14 @@ export declare type IQueryResolvers<ContextType = MyContext, ParentType extends
|
|
10368
8829
|
getContextData?: Resolver<Maybe<IResolversTypes['Context']>, ParentType, ContextType>;
|
10369
8830
|
getContextProperty?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IQuerygetContextPropertyArgs, never>>;
|
10370
8831
|
getContributionRoles?: Resolver<Maybe<Array<Maybe<IResolversTypes['ContributionRoles']>>>, ParentType, ContextType>;
|
10371
|
-
getDefaultInvoiceNumber?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10372
8832
|
getEnvironment?: Resolver<Maybe<IResolversTypes['Environment']>, ParentType, ContextType>;
|
10373
|
-
getFilteredProjects?: Resolver<Maybe<Array<Maybe<IResolversTypes['Projects']>>>, ParentType, ContextType, RequireFields<IQuerygetFilteredProjectsArgs, 'filter'>>;
|
10374
8833
|
getIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['IntegrationConfiguration']>, ParentType, ContextType, RequireFields<IQuerygetIntegrationConfigurationArgs, 'id'>>;
|
10375
|
-
getInvoices?: Resolver<Maybe<Array<Maybe<IResolversTypes['InvoiceType']>>>, ParentType, ContextType>;
|
10376
8834
|
getManageableOrganizations?: Resolver<Maybe<Array<Maybe<IResolversTypes['Organization']>>>, ParentType, ContextType>;
|
10377
8835
|
getOrgContext?: Resolver<Maybe<IResolversTypes['Context']>, ParentType, ContextType>;
|
10378
8836
|
getOrgInvitationMembers?: Resolver<Maybe<Array<Maybe<IResolversTypes['InviteMember']>>>, ParentType, ContextType>;
|
10379
8837
|
getOrgNameFromContext?: Resolver<Maybe<IResolversTypes['Context']>, ParentType, ContextType>;
|
10380
8838
|
getOrgTeamInvitations?: Resolver<Maybe<Array<Maybe<IResolversTypes['OrganizationInvitation']>>>, ParentType, ContextType, RequireFields<IQuerygetOrgTeamInvitationsArgs, never>>;
|
10381
8839
|
getOrgUser?: Resolver<Maybe<IResolversTypes['OrgUser']>, ParentType, ContextType, RequireFields<IQuerygetOrgUserArgs, never>>;
|
10382
|
-
getOrganizationClients?: Resolver<Maybe<Array<Maybe<IResolversTypes['Client']>>>, ParentType, ContextType>;
|
10383
8840
|
getOrganizationConfigValue?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IQuerygetOrganizationConfigValueArgs, never>>;
|
10384
8841
|
getOrganizationDetail?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IQuerygetOrganizationDetailArgs, 'where'>>;
|
10385
8842
|
getOrganizationDetailUnsecured?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IQuerygetOrganizationDetailUnsecuredArgs, 'where'>>;
|
@@ -10387,10 +8844,8 @@ export declare type IQueryResolvers<ContextType = MyContext, ParentType extends
|
|
10387
8844
|
getOrganizationMembers?: Resolver<Maybe<Array<Maybe<IResolversTypes['OrgMember']>>>, ParentType, ContextType>;
|
10388
8845
|
getOrganizationResourceContext?: Resolver<Maybe<IResolversTypes['OrganizationData']>, ParentType, ContextType, RequireFields<IQuerygetOrganizationResourceContextArgs, never>>;
|
10389
8846
|
getOrganizationTeams?: Resolver<Maybe<Array<Maybe<IResolversTypes['AccountTeam']>>>, ParentType, ContextType, RequireFields<IQuerygetOrganizationTeamsArgs, never>>;
|
10390
|
-
getProjects?: Resolver<Maybe<Array<Maybe<IResolversTypes['Project_Output']>>>, ParentType, ContextType>;
|
10391
8847
|
getRole?: Resolver<Maybe<IResolversTypes['AccessRole']>, ParentType, ContextType, RequireFields<IQuerygetRoleArgs, never>>;
|
10392
8848
|
getRoles?: Resolver<Maybe<Array<Maybe<IResolversTypes['AccessRole']>>>, ParentType, ContextType, RequireFields<IQuerygetRolesArgs, never>>;
|
10393
|
-
getTasks?: Resolver<Maybe<Array<Maybe<IResolversTypes['Task']>>>, ParentType, ContextType, RequireFields<IQuerygetTasksArgs, never>>;
|
10394
8849
|
getTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IQuerygetTeamArgs, 'orgName' | 'teamName'>>;
|
10395
8850
|
getTeamContext?: Resolver<Maybe<IResolversTypes['Context']>, ParentType, ContextType>;
|
10396
8851
|
getTeamNameFromContext?: Resolver<Maybe<IResolversTypes['Context']>, ParentType, ContextType>;
|
@@ -10508,11 +8963,6 @@ export declare type ISettingsSectionResolvers<ContextType = MyContext, ParentTyp
|
|
10508
8963
|
export declare type ISettingsSubjectResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['SettingsSubject'] = IResolversParentTypes['SettingsSubject']> = {
|
10509
8964
|
__resolveType: TypeResolveFn<'UserSettings' | 'ApplicationSettings' | 'MachineSettings' | 'OrganizationResourceSettings' | 'GlobalSettings' | 'OrganizationSettings' | 'MemorySettings' | 'DefaultSettings', ParentType, ContextType>;
|
10510
8965
|
};
|
10511
|
-
export declare type ISocialConnectResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['SocialConnect'] = IResolversParentTypes['SocialConnect']> = {
|
10512
|
-
facebook?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10513
|
-
twitter?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10514
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10515
|
-
};
|
10516
8966
|
export declare type ISshKeyResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['SshKey'] = IResolversParentTypes['SshKey']> = {
|
10517
8967
|
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10518
8968
|
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -10554,12 +9004,6 @@ export declare type ISubscriptionResolvers<ContextType = MyContext, ParentType e
|
|
10554
9004
|
SubscribeToPolicyUpdate?: SubscriptionResolver<Maybe<IResolversTypes['ConfigurationUpdateEvent']>, "SubscribeToPolicyUpdate", ParentType, ContextType, RequireFields<ISubscriptionSubscribeToPolicyUpdateArgs, never>>;
|
10555
9005
|
dummy?: SubscriptionResolver<Maybe<IResolversTypes['Int']>, "dummy", ParentType, ContextType>;
|
10556
9006
|
};
|
10557
|
-
export declare type ITaskResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Task'] = IResolversParentTypes['Task']> = {
|
10558
|
-
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10559
|
-
projectId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10560
|
-
taskName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10561
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10562
|
-
};
|
10563
9007
|
export declare type ITeamInvitationEmailVariablesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['TeamInvitationEmailVariables'] = IResolversParentTypes['TeamInvitationEmailVariables']> = {
|
10564
9008
|
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10565
9009
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
@@ -10624,12 +9068,39 @@ export declare type IUserAccountCreatedEventResolvers<ContextType = MyContext, P
|
|
10624
9068
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10625
9069
|
};
|
10626
9070
|
export declare type IUserAccountRemovedEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserAccountRemovedEvent'] = IResolversParentTypes['UserAccountRemovedEvent']> = {
|
10627
|
-
id?: Resolver<
|
9071
|
+
id?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
9072
|
+
userId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
10628
9073
|
email?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
10629
9074
|
username?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
10630
9075
|
notificationEmail?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10631
9076
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10632
9077
|
};
|
9078
|
+
export declare type IUserAuth0InfoResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserAuth0Info'] = IResolversParentTypes['UserAuth0Info']> = {
|
9079
|
+
auth0Id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9080
|
+
sessionInfo?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserAuth0SessionInfo']>>>, ParentType, ContextType>;
|
9081
|
+
integrations?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserAuth0Integrations']>>>, ParentType, ContextType>;
|
9082
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9083
|
+
};
|
9084
|
+
export declare type IUserAuth0IntegrationsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserAuth0Integrations'] = IResolversParentTypes['UserAuth0Integrations']> = {
|
9085
|
+
provider?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9086
|
+
refreshToken?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9087
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9088
|
+
};
|
9089
|
+
export declare type IUserAuth0SessionDeviceInfoResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserAuth0SessionDeviceInfo'] = IResolversParentTypes['UserAuth0SessionDeviceInfo']> = {
|
9090
|
+
os?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9091
|
+
deviceName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9092
|
+
browserName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9093
|
+
isMobile?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
9094
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9095
|
+
};
|
9096
|
+
export declare type IUserAuth0SessionInfoResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserAuth0SessionInfo'] = IResolversParentTypes['UserAuth0SessionInfo']> = {
|
9097
|
+
sessionId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9098
|
+
deviceInfo?: Resolver<Maybe<IResolversTypes['UserAuth0SessionDeviceInfo']>, ParentType, ContextType>;
|
9099
|
+
lastLoginAt?: Resolver<Maybe<IResolversTypes['Date']>, ParentType, ContextType>;
|
9100
|
+
lastLoginIp?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9101
|
+
refreshToken?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9102
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9103
|
+
};
|
10633
9104
|
export declare type IUserConfigurationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserConfiguration'] = IResolversParentTypes['UserConfiguration']> = {
|
10634
9105
|
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
10635
9106
|
resource?: Resolver<IResolversTypes['URI'], ParentType, ContextType>;
|
@@ -10724,6 +9195,10 @@ export declare type IUserProfileResolvers<ContextType = MyContext, ParentType ex
|
|
10724
9195
|
nonce?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10725
9196
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10726
9197
|
};
|
9198
|
+
export declare type IUserSessionIdResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserSessionId'] = IResolversParentTypes['UserSessionId']> = {
|
9199
|
+
sessionId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9200
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9201
|
+
};
|
10727
9202
|
export declare type IUserSettingsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserSettings'] = IResolversParentTypes['UserSettings']> = {
|
10728
9203
|
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
10729
9204
|
latestSettings?: Resolver<Maybe<IResolversTypes['Settings']>, ParentType, ContextType>;
|
@@ -10767,25 +9242,15 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
10767
9242
|
AccountService?: IAccountServiceResolvers<ContextType>;
|
10768
9243
|
AccountTeam?: IAccountTeamResolvers<ContextType>;
|
10769
9244
|
ActivityRecord?: IActivityRecordResolvers<ContextType>;
|
10770
|
-
AddressType?: IAddressTypeResolvers<ContextType>;
|
10771
9245
|
AdminIdeSettings?: IAdminIdeSettingsResolvers<ContextType>;
|
10772
9246
|
AnyObject?: GraphQLScalarType;
|
10773
9247
|
ApplicationPolicy?: IApplicationPolicyResolvers<ContextType>;
|
10774
9248
|
ApplicationRolePermission?: IApplicationRolePermissionResolvers<ContextType>;
|
10775
9249
|
ApplicationSettings?: IApplicationSettingsResolvers<ContextType>;
|
10776
|
-
AsanaConnection?: IAsanaConnectionResolvers<ContextType>;
|
10777
|
-
AsanaConnectionState?: IAsanaConnectionStateResolvers<ContextType>;
|
10778
|
-
AsanaProjects?: IAsanaProjectsResolvers<ContextType>;
|
10779
|
-
AsanaUser?: IAsanaUserResolvers<ContextType>;
|
10780
|
-
AsanaWorkspaces?: IAsanaWorkspacesResolvers<ContextType>;
|
10781
9250
|
Auth0Identity?: IAuth0IdentityResolvers<ContextType>;
|
10782
9251
|
Auth0IdentityProfileData?: IAuth0IdentityProfileDataResolvers<ContextType>;
|
10783
9252
|
AuthTokens?: IAuthTokensResolvers<ContextType>;
|
10784
9253
|
AuthUser?: IAuthUserResolvers<ContextType>;
|
10785
|
-
Client?: IClientResolvers<ContextType>;
|
10786
|
-
ClientCreatedEvent?: IClientCreatedEventResolvers<ContextType>;
|
10787
|
-
ClientDeletedEvent?: IClientDeletedEventResolvers<ContextType>;
|
10788
|
-
ClientPhone?: IClientPhoneResolvers<ContextType>;
|
10789
9254
|
Configuration?: IConfigurationResolvers<ContextType>;
|
10790
9255
|
ConfigurationData?: IConfigurationDataResolvers<ContextType>;
|
10791
9256
|
ConfigurationExtensionInfo?: IConfigurationExtensionInfoResolvers<ContextType>;
|
@@ -10800,7 +9265,6 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
10800
9265
|
ContributionSettings?: IContributionSettingsResolvers<ContextType>;
|
10801
9266
|
ContributionSettingsProperties?: IContributionSettingsPropertiesResolvers<ContextType>;
|
10802
9267
|
Country?: ICountryResolvers<ContextType>;
|
10803
|
-
CustomerInvoice?: ICustomerInvoiceResolvers<ContextType>;
|
10804
9268
|
Date?: GraphQLScalarType;
|
10805
9269
|
DateTime?: GraphQLScalarType;
|
10806
9270
|
DefaultConfiguration?: IDefaultConfigurationResolvers<ContextType>;
|
@@ -10836,19 +9300,14 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
10836
9300
|
IntegraitonConfigurationId?: IIntegraitonConfigurationIdResolvers<ContextType>;
|
10837
9301
|
IntegrationConfiguration?: IIntegrationConfigurationResolvers<ContextType>;
|
10838
9302
|
InviteMember?: IInviteMemberResolvers<ContextType>;
|
10839
|
-
InvoiceCreatedEvent?: IInvoiceCreatedEventResolvers<ContextType>;
|
10840
|
-
InvoiceDeletedEvent?: IInvoiceDeletedEventResolvers<ContextType>;
|
10841
|
-
InvoiceType?: IInvoiceTypeResolvers<ContextType>;
|
10842
9303
|
JSON?: GraphQLScalarType;
|
10843
9304
|
JSONObject?: GraphQLScalarType;
|
10844
9305
|
LoginError?: ILoginErrorResolvers<ContextType>;
|
10845
9306
|
MachineConfiguration?: IMachineConfigurationResolvers<ContextType>;
|
10846
9307
|
MachineSettings?: IMachineSettingsResolvers<ContextType>;
|
10847
|
-
MemberInvoice?: IMemberInvoiceResolvers<ContextType>;
|
10848
9308
|
MemorySettings?: IMemorySettingsResolvers<ContextType>;
|
10849
9309
|
MenuItem?: IMenuItemResolvers<ContextType>;
|
10850
9310
|
Mutation?: IMutationResolvers<ContextType>;
|
10851
|
-
NameType?: INameTypeResolvers<ContextType>;
|
10852
9311
|
Node?: INodeResolvers<ContextType>;
|
10853
9312
|
Observable?: GraphQLScalarType;
|
10854
9313
|
OrgMember?: IOrgMemberResolvers<ContextType>;
|
@@ -10877,6 +9336,7 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
10877
9336
|
PermissionSubject?: IPermissionSubjectResolvers<ContextType>;
|
10878
9337
|
PhoneNumber?: IPhoneNumberResolvers<ContextType>;
|
10879
9338
|
PolicySubject?: IPolicySubjectResolvers<ContextType>;
|
9339
|
+
PopupIntegrationAuthorization?: IPopupIntegrationAuthorizationResolvers<ContextType>;
|
10880
9340
|
Position?: IPositionResolvers<ContextType>;
|
10881
9341
|
PreferenceItem?: IPreferenceItemResolvers<ContextType>;
|
10882
9342
|
Preference_Account?: IPreference_AccountResolvers<ContextType>;
|
@@ -10891,13 +9351,6 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
10891
9351
|
PreferencesInput?: IPreferencesInputResolvers<ContextType>;
|
10892
9352
|
PreferencesResponse?: IPreferencesResponseResolvers<ContextType>;
|
10893
9353
|
PreferencesType?: IPreferencesTypeResolvers<ContextType>;
|
10894
|
-
ProjectCreatedEvent?: IProjectCreatedEventResolvers<ContextType>;
|
10895
|
-
ProjectDeletedEvent?: IProjectDeletedEventResolvers<ContextType>;
|
10896
|
-
ProjectInvoice?: IProjectInvoiceResolvers<ContextType>;
|
10897
|
-
ProjectParameters?: IProjectParametersResolvers<ContextType>;
|
10898
|
-
ProjectSource?: IProjectSourceResolvers<ContextType>;
|
10899
|
-
Project_Output?: IProject_OutputResolvers<ContextType>;
|
10900
|
-
Projects?: IProjectsResolvers<ContextType>;
|
10901
9354
|
Query?: IQueryResolvers<ContextType>;
|
10902
9355
|
Range?: IRangeResolvers<ContextType>;
|
10903
9356
|
ResourceAccessRole?: IResourceAccessRoleResolvers<ContextType>;
|
@@ -10913,14 +9366,12 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
10913
9366
|
SettingsGroup?: ISettingsGroupResolvers<ContextType>;
|
10914
9367
|
SettingsSection?: ISettingsSectionResolvers<ContextType>;
|
10915
9368
|
SettingsSubject?: ISettingsSubjectResolvers<ContextType>;
|
10916
|
-
SocialConnect?: ISocialConnectResolvers<ContextType>;
|
10917
9369
|
SshKey?: ISshKeyResolvers<ContextType>;
|
10918
9370
|
SshKeyModel?: ISshKeyModelResolvers<ContextType>;
|
10919
9371
|
SshKeyService?: ISshKeyServiceResolvers<ContextType>;
|
10920
9372
|
SshKeySettings?: ISshKeySettingsResolvers<ContextType>;
|
10921
9373
|
SubscribedOrganizationData?: ISubscribedOrganizationDataResolvers<ContextType>;
|
10922
9374
|
Subscription?: ISubscriptionResolvers<ContextType>;
|
10923
|
-
Task?: ITaskResolvers<ContextType>;
|
10924
9375
|
TeamInvitationEmailVariables?: ITeamInvitationEmailVariablesResolvers<ContextType>;
|
10925
9376
|
TeamMember?: ITeamMemberResolvers<ContextType>;
|
10926
9377
|
TeamService?: ITeamServiceResolvers<ContextType>;
|
@@ -10931,6 +9382,10 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
10931
9382
|
UserAccountCreatedDetailedEvent?: IUserAccountCreatedDetailedEventResolvers<ContextType>;
|
10932
9383
|
UserAccountCreatedEvent?: IUserAccountCreatedEventResolvers<ContextType>;
|
10933
9384
|
UserAccountRemovedEvent?: IUserAccountRemovedEventResolvers<ContextType>;
|
9385
|
+
UserAuth0Info?: IUserAuth0InfoResolvers<ContextType>;
|
9386
|
+
UserAuth0Integrations?: IUserAuth0IntegrationsResolvers<ContextType>;
|
9387
|
+
UserAuth0SessionDeviceInfo?: IUserAuth0SessionDeviceInfoResolvers<ContextType>;
|
9388
|
+
UserAuth0SessionInfo?: IUserAuth0SessionInfoResolvers<ContextType>;
|
10934
9389
|
UserConfiguration?: IUserConfigurationResolvers<ContextType>;
|
10935
9390
|
UserContext?: IUserContextResolvers<ContextType>;
|
10936
9391
|
UserDevice?: IUserDeviceResolvers<ContextType>;
|
@@ -10938,6 +9393,7 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
10938
9393
|
UserOrg?: IUserOrgResolvers<ContextType>;
|
10939
9394
|
UserPreviousValues?: IUserPreviousValuesResolvers<ContextType>;
|
10940
9395
|
UserProfile?: IUserProfileResolvers<ContextType>;
|
9396
|
+
UserSessionId?: IUserSessionIdResolvers<ContextType>;
|
10941
9397
|
UserSettings?: IUserSettingsResolvers<ContextType>;
|
10942
9398
|
UserState?: IUserStateResolvers<ContextType>;
|
10943
9399
|
UserToken?: IUserTokenResolvers<ContextType>;
|