@adminide-stack/core 1.0.201-alpha.4 → 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 +66 -1677
- 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']>;
|
@@ -354,36 +313,6 @@ export declare type ICityUpdateInput = {
|
|
354
313
|
name?: Maybe<Scalars['String']>;
|
355
314
|
state: ITerritorialStateUpdateInput;
|
356
315
|
};
|
357
|
-
export declare type IClient = {
|
358
|
-
__typename?: 'Client';
|
359
|
-
id?: Maybe<Scalars['ID']>;
|
360
|
-
name: INameType;
|
361
|
-
companyName?: Maybe<Scalars['String']>;
|
362
|
-
displayName: Scalars['String'];
|
363
|
-
email?: Maybe<Scalars['String']>;
|
364
|
-
clientPhone?: Maybe<IClientPhone>;
|
365
|
-
website?: Maybe<Scalars['String']>;
|
366
|
-
currency: Scalars['String'];
|
367
|
-
socialConnect?: Maybe<ISocialConnect>;
|
368
|
-
billingAddress?: Maybe<IAddressType>;
|
369
|
-
shippingAddress?: Maybe<IAddressType>;
|
370
|
-
orgName?: Maybe<Scalars['String']>;
|
371
|
-
createdAt?: Maybe<Scalars['DateTime']>;
|
372
|
-
updatedAt?: Maybe<Scalars['DateTime']>;
|
373
|
-
};
|
374
|
-
export declare type IClientAddRequest = {
|
375
|
-
name: IName_Input;
|
376
|
-
companyName?: Maybe<Scalars['String']>;
|
377
|
-
displayName: Scalars['String'];
|
378
|
-
email?: Maybe<Scalars['String']>;
|
379
|
-
clientPhone?: Maybe<IClientPhone_Input>;
|
380
|
-
website?: Maybe<Scalars['String']>;
|
381
|
-
currency: Scalars['String'];
|
382
|
-
socialConnect?: Maybe<ISocialConnect_Input>;
|
383
|
-
billingAddress?: Maybe<IAddressType_Input>;
|
384
|
-
shippingAddress?: Maybe<IAddressType_Input>;
|
385
|
-
orgName?: Maybe<Scalars['String']>;
|
386
|
-
};
|
387
316
|
export declare const enum IClientCacheTypeNames {
|
388
317
|
ApplicationPolicy = "ApplicationPolicy",
|
389
318
|
ApplicationRolePermission = "ApplicationRolePermission",
|
@@ -430,31 +359,10 @@ export declare const enum IClientContainerService {
|
|
430
359
|
IPreferenceService = "IPreferenceService",
|
431
360
|
ITeamKeyContextService = "ITeamKeyContextService"
|
432
361
|
}
|
433
|
-
export declare type IClientCreatedEvent = {
|
434
|
-
__typename?: 'ClientCreatedEvent';
|
435
|
-
createdClient?: Maybe<IClient>;
|
436
|
-
};
|
437
|
-
export declare type IClientDeletedEvent = {
|
438
|
-
__typename?: 'ClientDeletedEvent';
|
439
|
-
deletedClient?: Maybe<IClient>;
|
440
|
-
};
|
441
|
-
export declare type IClientPhone = {
|
442
|
-
__typename?: 'ClientPhone';
|
443
|
-
workPhone?: Maybe<Scalars['String']>;
|
444
|
-
mobile?: Maybe<Scalars['String']>;
|
445
|
-
};
|
446
|
-
export declare type IClientPhone_Input = {
|
447
|
-
workPhone?: Maybe<Scalars['String']>;
|
448
|
-
mobile?: Maybe<Scalars['String']>;
|
449
|
-
};
|
450
362
|
export declare const enum IClientTypes {
|
451
363
|
Business = "Business",
|
452
364
|
Individuals = "Individuals"
|
453
365
|
}
|
454
|
-
export declare type IClientUpdateRequest = {
|
455
|
-
id?: Maybe<Scalars['String']>;
|
456
|
-
payload?: Maybe<IUpdatedClient_Input>;
|
457
|
-
};
|
458
366
|
export declare const enum IConfigCollectionName {
|
459
367
|
application = "application",
|
460
368
|
accounts = "accounts",
|
@@ -642,25 +550,6 @@ export declare type ICountry = {
|
|
642
550
|
export declare type ICountryInput = {
|
643
551
|
name: Scalars['String'];
|
644
552
|
};
|
645
|
-
export declare type ICustomerInvoice = {
|
646
|
-
__typename?: 'CustomerInvoice';
|
647
|
-
id?: Maybe<Scalars['String']>;
|
648
|
-
username?: Maybe<Scalars['String']>;
|
649
|
-
companyName?: Maybe<Scalars['String']>;
|
650
|
-
email?: Maybe<Scalars['String']>;
|
651
|
-
phone?: Maybe<IClientPhone>;
|
652
|
-
billingAddress?: Maybe<IAddressType>;
|
653
|
-
shippingAddress?: Maybe<IAddressType>;
|
654
|
-
};
|
655
|
-
export declare type ICustomerInvoice_Input = {
|
656
|
-
id?: Maybe<Scalars['String']>;
|
657
|
-
username?: Maybe<Scalars['String']>;
|
658
|
-
companyName?: Maybe<Scalars['String']>;
|
659
|
-
email?: Maybe<Scalars['String']>;
|
660
|
-
phone?: Maybe<IClientPhone_Input>;
|
661
|
-
billingAddress?: Maybe<IAddressType_Input>;
|
662
|
-
shippingAddress?: Maybe<IAddressType_Input>;
|
663
|
-
};
|
664
553
|
export declare type IDefaultConfiguration = IIConfigurationModel & {
|
665
554
|
__typename?: 'DefaultConfiguration';
|
666
555
|
/** The ID. */
|
@@ -1011,97 +900,6 @@ export declare const enum IInviteStatus {
|
|
1011
900
|
ACCEPTED = "ACCEPTED",
|
1012
901
|
DECLINED = "DECLINED"
|
1013
902
|
}
|
1014
|
-
export declare type IInvoiceCreateRequest = {
|
1015
|
-
comment?: Maybe<Scalars['String']>;
|
1016
|
-
currency?: Maybe<Scalars['String']>;
|
1017
|
-
discount?: Maybe<Scalars['Float']>;
|
1018
|
-
from?: Maybe<IMemberInvoice_Input>;
|
1019
|
-
invoiceDate?: Maybe<Scalars['String']>;
|
1020
|
-
terms?: Maybe<Scalars['String']>;
|
1021
|
-
dueDate?: Maybe<Scalars['String']>;
|
1022
|
-
invoiceNumber?: Maybe<Scalars['String']>;
|
1023
|
-
orderNumber?: Maybe<Scalars['String']>;
|
1024
|
-
invoiceVendor?: Maybe<IMemberInvoice_Input>;
|
1025
|
-
logo?: Maybe<Scalars['String']>;
|
1026
|
-
paymentStatus?: Maybe<Scalars['Boolean']>;
|
1027
|
-
projects?: Maybe<Array<Maybe<IProjectInvoice_Input>>>;
|
1028
|
-
subTotal?: Maybe<Scalars['Float']>;
|
1029
|
-
tax?: Maybe<Scalars['Float']>;
|
1030
|
-
subject?: Maybe<Scalars['String']>;
|
1031
|
-
conditions?: Maybe<Scalars['String']>;
|
1032
|
-
timezoneOffset?: Maybe<Scalars['Int']>;
|
1033
|
-
to?: Maybe<ICustomerInvoice_Input>;
|
1034
|
-
total?: Maybe<Scalars['Float']>;
|
1035
|
-
};
|
1036
|
-
export declare type IInvoiceCreatedEvent = {
|
1037
|
-
__typename?: 'InvoiceCreatedEvent';
|
1038
|
-
createdInvoice?: Maybe<IInvoiceType>;
|
1039
|
-
};
|
1040
|
-
export declare type IInvoiceDeletedEvent = {
|
1041
|
-
__typename?: 'InvoiceDeletedEvent';
|
1042
|
-
deletedInvoice?: Maybe<IInvoiceType>;
|
1043
|
-
};
|
1044
|
-
export declare type IInvoiceMailRequest = {
|
1045
|
-
template: ITemplate;
|
1046
|
-
to: Scalars['String'];
|
1047
|
-
from: Scalars['String'];
|
1048
|
-
cc?: Maybe<Scalars['String']>;
|
1049
|
-
bcc?: Maybe<Scalars['String']>;
|
1050
|
-
attachments?: Maybe<Array<Maybe<Scalars['AnyObject']>>>;
|
1051
|
-
subject?: Maybe<Scalars['String']>;
|
1052
|
-
};
|
1053
|
-
export declare type IInvoiceType = {
|
1054
|
-
__typename?: 'InvoiceType';
|
1055
|
-
id?: Maybe<Scalars['ID']>;
|
1056
|
-
comment?: Maybe<Scalars['String']>;
|
1057
|
-
currency?: Maybe<Scalars['String']>;
|
1058
|
-
discount?: Maybe<Scalars['Float']>;
|
1059
|
-
from?: Maybe<IMemberInvoice>;
|
1060
|
-
invoiceDate?: Maybe<Scalars['DateTime']>;
|
1061
|
-
terms?: Maybe<Scalars['String']>;
|
1062
|
-
dueDate?: Maybe<Scalars['DateTime']>;
|
1063
|
-
invoiceNumber?: Maybe<Scalars['String']>;
|
1064
|
-
orderNumber?: Maybe<Scalars['String']>;
|
1065
|
-
invoiceVendor?: Maybe<IMemberInvoice>;
|
1066
|
-
logo?: Maybe<Scalars['String']>;
|
1067
|
-
overdue?: Maybe<Scalars['Boolean']>;
|
1068
|
-
paymentStatus?: Maybe<Scalars['Boolean']>;
|
1069
|
-
projects?: Maybe<Array<Maybe<IProjectInvoice>>>;
|
1070
|
-
sendingStatus?: Maybe<Scalars['Boolean']>;
|
1071
|
-
status?: Maybe<Scalars['String']>;
|
1072
|
-
subTotal?: Maybe<Scalars['Float']>;
|
1073
|
-
tax?: Maybe<Scalars['Float']>;
|
1074
|
-
subject?: Maybe<Scalars['String']>;
|
1075
|
-
conditions?: Maybe<Scalars['String']>;
|
1076
|
-
timezoneOffset?: Maybe<Scalars['Int']>;
|
1077
|
-
to?: Maybe<ICustomerInvoice>;
|
1078
|
-
total?: Maybe<Scalars['Float']>;
|
1079
|
-
orgName?: Maybe<Scalars['String']>;
|
1080
|
-
createdAt?: Maybe<Scalars['DateTime']>;
|
1081
|
-
updatedAt?: Maybe<Scalars['DateTime']>;
|
1082
|
-
};
|
1083
|
-
export declare type IInvoiceUpdateRequest = {
|
1084
|
-
comment?: Maybe<Scalars['String']>;
|
1085
|
-
currency?: Maybe<Scalars['String']>;
|
1086
|
-
discount?: Maybe<Scalars['Float']>;
|
1087
|
-
from?: Maybe<IMemberInvoice_Input>;
|
1088
|
-
invoiceDate?: Maybe<Scalars['String']>;
|
1089
|
-
terms?: Maybe<Scalars['String']>;
|
1090
|
-
dueDate?: Maybe<Scalars['String']>;
|
1091
|
-
invoiceNumber?: Maybe<Scalars['String']>;
|
1092
|
-
orderNumber?: Maybe<Scalars['String']>;
|
1093
|
-
invoiceVendor?: Maybe<IMemberInvoice_Input>;
|
1094
|
-
logo?: Maybe<Scalars['String']>;
|
1095
|
-
paymentStatus?: Maybe<Scalars['Boolean']>;
|
1096
|
-
projects?: Maybe<Array<Maybe<IProjectInvoice_Input>>>;
|
1097
|
-
subTotal?: Maybe<Scalars['Float']>;
|
1098
|
-
tax?: Maybe<Scalars['Float']>;
|
1099
|
-
subject?: Maybe<Scalars['String']>;
|
1100
|
-
conditions?: Maybe<Scalars['String']>;
|
1101
|
-
timezoneOffset?: Maybe<Scalars['Int']>;
|
1102
|
-
to?: Maybe<ICustomerInvoice_Input>;
|
1103
|
-
total?: Maybe<Scalars['Float']>;
|
1104
|
-
};
|
1105
903
|
/**
|
1106
904
|
* A segment of a key path that locates a nested JSON value in a root JSON value. Exactly one field in each
|
1107
905
|
* KeyPathSegment must be non-null.
|
@@ -1159,23 +957,6 @@ export declare const enum IMailTemplateId {
|
|
1159
957
|
USER_PASSWORD_RESET = "USER_PASSWORD_RESET",
|
1160
958
|
dummy = "dummy"
|
1161
959
|
}
|
1162
|
-
export declare type IMemberInvoice = {
|
1163
|
-
__typename?: 'MemberInvoice';
|
1164
|
-
id?: Maybe<Scalars['String']>;
|
1165
|
-
name?: Maybe<Scalars['String']>;
|
1166
|
-
companyName?: Maybe<Scalars['String']>;
|
1167
|
-
email?: Maybe<Scalars['String']>;
|
1168
|
-
phone?: Maybe<IClientPhone>;
|
1169
|
-
address?: Maybe<IAddressType>;
|
1170
|
-
};
|
1171
|
-
export declare type IMemberInvoice_Input = {
|
1172
|
-
id?: Maybe<Scalars['String']>;
|
1173
|
-
name?: Maybe<Scalars['String']>;
|
1174
|
-
companyName?: Maybe<Scalars['String']>;
|
1175
|
-
email?: Maybe<Scalars['String']>;
|
1176
|
-
phone?: Maybe<IClientPhone_Input>;
|
1177
|
-
address?: Maybe<IAddressType_Input>;
|
1178
|
-
};
|
1179
960
|
export declare type IMemorySettings = IISettingsSubject & {
|
1180
961
|
__typename?: 'MemorySettings';
|
1181
962
|
/** The ID. */
|
@@ -1219,14 +1000,11 @@ export declare const enum IMoleculerServiceName {
|
|
1219
1000
|
AccountsPostEventsService = "AccountsPostEventsService",
|
1220
1001
|
ActivityCollector = "ActivityCollector",
|
1221
1002
|
ActivityStorage = "ActivityStorage",
|
1222
|
-
AsanaService = "AsanaService",
|
1223
1003
|
AuthUserService = "AuthUserService",
|
1224
|
-
GithubMoleculerService = "GithubMoleculerService",
|
1225
1004
|
OrganizationContextService = "OrganizationContextService",
|
1226
1005
|
PaymentEventListener = "PaymentEventListener",
|
1227
1006
|
PaymentService = "PaymentService",
|
1228
1007
|
PaypalService = "PaypalService",
|
1229
|
-
ProjectService = "ProjectService",
|
1230
1008
|
SshKeyService = "SshKeyService",
|
1231
1009
|
StripeService = "StripeService",
|
1232
1010
|
UserBroadcaster = "UserBroadcaster",
|
@@ -1241,9 +1019,7 @@ export declare type IMutation = {
|
|
1241
1019
|
UpdateSshKey?: Maybe<ISshKey>;
|
1242
1020
|
acceptOrganizationInvitation?: Maybe<Scalars['Boolean']>;
|
1243
1021
|
accountOnBoarding?: Maybe<Scalars['Boolean']>;
|
1244
|
-
addClient?: Maybe<Scalars['Boolean']>;
|
1245
1022
|
addContributionRole?: Maybe<Scalars['Boolean']>;
|
1246
|
-
addOrgProject?: Maybe<Scalars['Boolean']>;
|
1247
1023
|
addResourceToContext?: Maybe<Scalars['Boolean']>;
|
1248
1024
|
addTeamMembers?: Maybe<Scalars['Boolean']>;
|
1249
1025
|
changeMemberRole?: Maybe<Scalars['Boolean']>;
|
@@ -1251,10 +1027,8 @@ export declare type IMutation = {
|
|
1251
1027
|
changeOrganization?: Maybe<Scalars['String']>;
|
1252
1028
|
collect?: Maybe<Scalars['Boolean']>;
|
1253
1029
|
createIntegrationConfiguration?: Maybe<IIntegraitonConfigurationId>;
|
1254
|
-
createInvoice?: Maybe<Scalars['Boolean']>;
|
1255
1030
|
createOrUpdateIntegrationConfiguration?: Maybe<IIntegraitonConfigurationId>;
|
1256
1031
|
createOrganization?: Maybe<IOrganization>;
|
1257
|
-
createTask?: Maybe<Scalars['Boolean']>;
|
1258
1032
|
createTeam?: Maybe<IAccountTeam>;
|
1259
1033
|
declineOrganizationInvitation?: Maybe<Scalars['Boolean']>;
|
1260
1034
|
deleteIntegrationConfiguration?: Maybe<Scalars['Boolean']>;
|
@@ -1263,25 +1037,24 @@ export declare type IMutation = {
|
|
1263
1037
|
dummy?: Maybe<Scalars['Int']>;
|
1264
1038
|
initializeAuthorizationCodeFlow?: Maybe<IAuthTokens>;
|
1265
1039
|
initializeOrgNameInContext?: Maybe<Scalars['Boolean']>;
|
1040
|
+
initializePopupIntegrationAuthorization?: Maybe<IPopupIntegrationAuthorization>;
|
1266
1041
|
initializeTeamInContext?: Maybe<Scalars['Boolean']>;
|
1042
|
+
initializeUserSession?: Maybe<IUserSessionId>;
|
1267
1043
|
initiateConfigurationValue?: Maybe<Scalars['Boolean']>;
|
1268
1044
|
initiatePolicyValue?: Maybe<Scalars['Boolean']>;
|
1269
1045
|
reassignRole?: Maybe<Scalars['Boolean']>;
|
1270
1046
|
registerAccountUser?: Maybe<IUserAccount>;
|
1271
1047
|
registerUserInAuth0?: Maybe<IUserProfile>;
|
1272
|
-
removeInvoice?: Maybe<Scalars['Boolean']>;
|
1273
|
-
removeOrgClient?: Maybe<Scalars['Boolean']>;
|
1274
1048
|
removeOrgMember?: Maybe<Scalars['Boolean']>;
|
1275
1049
|
removeOrganization?: Maybe<Scalars['Boolean']>;
|
1276
|
-
removeTask?: Maybe<Scalars['Boolean']>;
|
1277
1050
|
removeTeam?: Maybe<Scalars['Boolean']>;
|
1278
1051
|
removeTeamMember?: Maybe<Scalars['Boolean']>;
|
1279
1052
|
removeUserAuthSession?: Maybe<Scalars['Boolean']>;
|
1053
|
+
removedUserAuthIntegration?: Maybe<Scalars['Boolean']>;
|
1280
1054
|
renewAuthToken?: Maybe<IAuthTokens>;
|
1281
1055
|
resendOrganizationInvitation?: Maybe<Scalars['Boolean']>;
|
1282
1056
|
resendUserEmailVerificationEmail?: Maybe<Scalars['Boolean']>;
|
1283
1057
|
resetUserPassword?: Maybe<Scalars['Boolean']>;
|
1284
|
-
sendInvoiceMail?: Maybe<Scalars['Boolean']>;
|
1285
1058
|
sendOrganizationInvitation?: Maybe<Scalars['Boolean']>;
|
1286
1059
|
sendUserPasswordResetEmail?: Maybe<Scalars['Boolean']>;
|
1287
1060
|
setSettingsValueByResource?: Maybe<Scalars['Boolean']>;
|
@@ -1294,20 +1067,14 @@ export declare type IMutation = {
|
|
1294
1067
|
updateConfigurationValue?: Maybe<Scalars['Boolean']>;
|
1295
1068
|
updateConfigurationValueByUri?: Maybe<Scalars['Boolean']>;
|
1296
1069
|
updateContext?: Maybe<Scalars['Boolean']>;
|
1297
|
-
updateInvoice?: Maybe<Scalars['Boolean']>;
|
1298
|
-
updateOrgClient?: Maybe<IClient>;
|
1299
1070
|
updateOrgMemberTeams?: Maybe<Scalars['Boolean']>;
|
1300
|
-
updateOrgProject?: Maybe<Scalars['Boolean']>;
|
1301
1071
|
updateOrganization?: Maybe<IOrganization>;
|
1302
1072
|
updateOrganizationContextAddResources?: Maybe<Array<Maybe<IResourceData>>>;
|
1303
1073
|
updateOrganizationContextRemoveResources?: Maybe<Array<Maybe<IResourceData>>>;
|
1304
1074
|
updateOrganizationContextUpdateResources?: Maybe<Array<Maybe<IResourceData>>>;
|
1305
|
-
updateProjectStatus?: Maybe<Scalars['Boolean']>;
|
1306
1075
|
updateRoleValue?: Maybe<Scalars['Boolean']>;
|
1307
1076
|
updateSelectedOrgResource?: Maybe<Scalars['Boolean']>;
|
1308
|
-
updateTask?: Maybe<Scalars['Boolean']>;
|
1309
1077
|
updateUserAccount?: Maybe<Scalars['Boolean']>;
|
1310
|
-
upsertProjectThroughIntegration?: Maybe<IProjects>;
|
1311
1078
|
verifyUserEmailVerificationToken?: Maybe<Scalars['Boolean']>;
|
1312
1079
|
};
|
1313
1080
|
export declare type IMutationAddSshKeyArgs = {
|
@@ -1327,16 +1094,10 @@ export declare type IMutationacceptOrganizationInvitationArgs = {
|
|
1327
1094
|
export declare type IMutationaccountOnBoardingArgs = {
|
1328
1095
|
input?: Maybe<IIOnBoardingParams>;
|
1329
1096
|
};
|
1330
|
-
export declare type IMutationaddClientArgs = {
|
1331
|
-
client: IClientAddRequest;
|
1332
|
-
};
|
1333
1097
|
export declare type IMutationaddContributionRoleArgs = {
|
1334
1098
|
name: Scalars['String'];
|
1335
1099
|
description?: Maybe<Scalars['String']>;
|
1336
1100
|
};
|
1337
|
-
export declare type IMutationaddOrgProjectArgs = {
|
1338
|
-
project: IProjectAddRequest;
|
1339
|
-
};
|
1340
1101
|
export declare type IMutationaddResourceToContextArgs = {
|
1341
1102
|
resourcesToAdd: Array<Maybe<IResourceCreationData_Input>>;
|
1342
1103
|
};
|
@@ -1365,18 +1126,12 @@ export declare type IMutationcollectArgs = {
|
|
1365
1126
|
export declare type IMutationcreateIntegrationConfigurationArgs = {
|
1366
1127
|
data?: Maybe<IIntegrationConfigurationInput>;
|
1367
1128
|
};
|
1368
|
-
export declare type IMutationcreateInvoiceArgs = {
|
1369
|
-
invoice: IInvoiceCreateRequest;
|
1370
|
-
};
|
1371
1129
|
export declare type IMutationcreateOrUpdateIntegrationConfigurationArgs = {
|
1372
1130
|
data?: Maybe<IIntegrationConfigurationCreateOrUpdateInput>;
|
1373
1131
|
};
|
1374
1132
|
export declare type IMutationcreateOrganizationArgs = {
|
1375
1133
|
organization: IOrganizationCreateRequest;
|
1376
1134
|
};
|
1377
|
-
export declare type IMutationcreateTaskArgs = {
|
1378
|
-
request?: Maybe<ITaskRequest>;
|
1379
|
-
};
|
1380
1135
|
export declare type IMutationcreateTeamArgs = {
|
1381
1136
|
request: ITeamCreationRequest;
|
1382
1137
|
};
|
@@ -1392,14 +1147,22 @@ export declare type IMutationdeleteUserAuthorizedDeviceArgs = {
|
|
1392
1147
|
export declare type IMutationinitializeAuthorizationCodeFlowArgs = {
|
1393
1148
|
deviceInfo: IDeviceInfoInput;
|
1394
1149
|
code?: Maybe<Scalars['String']>;
|
1150
|
+
codeVerifier?: Maybe<Scalars['String']>;
|
1395
1151
|
};
|
1396
1152
|
export declare type IMutationinitializeOrgNameInContextArgs = {
|
1397
1153
|
orgName?: Maybe<Scalars['String']>;
|
1398
1154
|
};
|
1155
|
+
export declare type IMutationinitializePopupIntegrationAuthorizationArgs = {
|
1156
|
+
code?: Maybe<Scalars['String']>;
|
1157
|
+
};
|
1399
1158
|
export declare type IMutationinitializeTeamInContextArgs = {
|
1400
1159
|
teamName?: Maybe<Scalars['String']>;
|
1401
1160
|
orgName?: Maybe<Scalars['String']>;
|
1402
1161
|
};
|
1162
|
+
export declare type IMutationinitializeUserSessionArgs = {
|
1163
|
+
deviceInfo: IDeviceInfoInput;
|
1164
|
+
refreshToken?: Maybe<Scalars['String']>;
|
1165
|
+
};
|
1403
1166
|
export declare type IMutationinitiateConfigurationValueArgs = {
|
1404
1167
|
resource?: Maybe<Scalars['URI']>;
|
1405
1168
|
};
|
@@ -1413,21 +1176,12 @@ export declare type IMutationregisterUserInAuth0Args = {
|
|
1413
1176
|
email: Scalars['String'];
|
1414
1177
|
password: Scalars['String'];
|
1415
1178
|
};
|
1416
|
-
export declare type IMutationremoveInvoiceArgs = {
|
1417
|
-
id?: Maybe<Scalars['String']>;
|
1418
|
-
};
|
1419
|
-
export declare type IMutationremoveOrgClientArgs = {
|
1420
|
-
clientId: Scalars['String'];
|
1421
|
-
};
|
1422
1179
|
export declare type IMutationremoveOrgMemberArgs = {
|
1423
1180
|
memberId: Scalars['String'];
|
1424
1181
|
};
|
1425
1182
|
export declare type IMutationremoveOrganizationArgs = {
|
1426
1183
|
organization: IOrganizationRemoveRequest;
|
1427
1184
|
};
|
1428
|
-
export declare type IMutationremoveTaskArgs = {
|
1429
|
-
id: Scalars['String'];
|
1430
|
-
};
|
1431
1185
|
export declare type IMutationremoveTeamArgs = {
|
1432
1186
|
teamId: Scalars['String'];
|
1433
1187
|
};
|
@@ -1439,6 +1193,9 @@ export declare type IMutationremoveTeamMemberArgs = {
|
|
1439
1193
|
export declare type IMutationremoveUserAuthSessionArgs = {
|
1440
1194
|
sessionId?: Maybe<Scalars['String']>;
|
1441
1195
|
};
|
1196
|
+
export declare type IMutationremovedUserAuthIntegrationArgs = {
|
1197
|
+
provider?: Maybe<Scalars['String']>;
|
1198
|
+
};
|
1442
1199
|
export declare type IMutationrenewAuthTokenArgs = {
|
1443
1200
|
sessionId?: Maybe<Scalars['String']>;
|
1444
1201
|
};
|
@@ -1448,9 +1205,6 @@ export declare type IMutationresendOrganizationInvitationArgs = {
|
|
1448
1205
|
export declare type IMutationresetUserPasswordArgs = {
|
1449
1206
|
input: IUserPasswordResetInput;
|
1450
1207
|
};
|
1451
|
-
export declare type IMutationsendInvoiceMailArgs = {
|
1452
|
-
request: IInvoiceMailRequest;
|
1453
|
-
};
|
1454
1208
|
export declare type IMutationsendOrganizationInvitationArgs = {
|
1455
1209
|
request?: Maybe<IOrganizationInvitationRequest>;
|
1456
1210
|
};
|
@@ -1513,23 +1267,12 @@ export declare type IMutationupdateContextArgs = {
|
|
1513
1267
|
key?: Maybe<Scalars['String']>;
|
1514
1268
|
value?: Maybe<Scalars['AnyObject']>;
|
1515
1269
|
};
|
1516
|
-
export declare type IMutationupdateInvoiceArgs = {
|
1517
|
-
id?: Maybe<Scalars['String']>;
|
1518
|
-
invoice?: Maybe<IInvoiceUpdateRequest>;
|
1519
|
-
};
|
1520
|
-
export declare type IMutationupdateOrgClientArgs = {
|
1521
|
-
updateRequest?: Maybe<IClientUpdateRequest>;
|
1522
|
-
};
|
1523
1270
|
export declare type IMutationupdateOrgMemberTeamsArgs = {
|
1524
1271
|
userId: Scalars['String'];
|
1525
1272
|
orgName: Scalars['String'];
|
1526
1273
|
addToTeams?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1527
1274
|
removeFromTeams?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1528
1275
|
};
|
1529
|
-
export declare type IMutationupdateOrgProjectArgs = {
|
1530
|
-
where: IProjectWhereInput;
|
1531
|
-
project?: Maybe<IUpdateProject_Input>;
|
1532
|
-
};
|
1533
1276
|
export declare type IMutationupdateOrganizationArgs = {
|
1534
1277
|
organization: IOrganizationUpdateRequest;
|
1535
1278
|
};
|
@@ -1546,10 +1289,6 @@ export declare type IMutationupdateOrganizationContextUpdateResourcesArgs = {
|
|
1546
1289
|
resourcesToRemove: Array<Maybe<Scalars['URI']>>;
|
1547
1290
|
index?: Maybe<Scalars['Int']>;
|
1548
1291
|
};
|
1549
|
-
export declare type IMutationupdateProjectStatusArgs = {
|
1550
|
-
id: Scalars['String'];
|
1551
|
-
status?: Maybe<Scalars['String']>;
|
1552
|
-
};
|
1553
1292
|
export declare type IMutationupdateRoleValueArgs = {
|
1554
1293
|
key: Scalars['String'];
|
1555
1294
|
value: Scalars['AnyObject'];
|
@@ -1560,31 +1299,12 @@ export declare type IMutationupdateRoleValueArgs = {
|
|
1560
1299
|
export declare type IMutationupdateSelectedOrgResourceArgs = {
|
1561
1300
|
resource: Scalars['URI'];
|
1562
1301
|
};
|
1563
|
-
export declare type IMutationupdateTaskArgs = {
|
1564
|
-
id: Scalars['String'];
|
1565
|
-
request?: Maybe<ITaskRequest>;
|
1566
|
-
};
|
1567
1302
|
export declare type IMutationupdateUserAccountArgs = {
|
1568
1303
|
userInfo?: Maybe<IUserAuth0UpdateFields>;
|
1569
1304
|
};
|
1570
|
-
export declare type IMutationupsertProjectThroughIntegrationArgs = {
|
1571
|
-
where: IProjectWhereInput;
|
1572
|
-
project?: Maybe<IUpdateProject_Input>;
|
1573
|
-
};
|
1574
1305
|
export declare type IMutationverifyUserEmailVerificationTokenArgs = {
|
1575
1306
|
token?: Maybe<Scalars['String']>;
|
1576
1307
|
};
|
1577
|
-
export declare type INameType = {
|
1578
|
-
__typename?: 'NameType';
|
1579
|
-
salutation?: Maybe<Scalars['String']>;
|
1580
|
-
firstName?: Maybe<Scalars['String']>;
|
1581
|
-
lastName?: Maybe<Scalars['String']>;
|
1582
|
-
};
|
1583
|
-
export declare type IName_Input = {
|
1584
|
-
salutation?: Maybe<Scalars['String']>;
|
1585
|
-
firstName?: Maybe<Scalars['String']>;
|
1586
|
-
lastName?: Maybe<Scalars['String']>;
|
1587
|
-
};
|
1588
1308
|
/** An object with an ID. */
|
1589
1309
|
export declare type INode = {
|
1590
1310
|
/** The ID of the node. */
|
@@ -2046,6 +1766,10 @@ export declare type IPolicySubject = {
|
|
2046
1766
|
/** The stringified JSON contents of the permissions. */
|
2047
1767
|
policies: Scalars['AnyObject'];
|
2048
1768
|
};
|
1769
|
+
export declare type IPopupIntegrationAuthorization = {
|
1770
|
+
__typename?: 'PopupIntegrationAuthorization';
|
1771
|
+
idToken?: Maybe<Scalars['String']>;
|
1772
|
+
};
|
2049
1773
|
export declare const enum IPortalLanguage {
|
2050
1774
|
English = "English",
|
2051
1775
|
Hindi = "Hindi",
|
@@ -2162,140 +1886,6 @@ export declare type IPreferencesType = {
|
|
2162
1886
|
type?: Maybe<Scalars['String']>;
|
2163
1887
|
data?: Maybe<Array<Maybe<IContributionSettings>>>;
|
2164
1888
|
};
|
2165
|
-
export declare type IProjectAddRequest = {
|
2166
|
-
name: Scalars['String'];
|
2167
|
-
clientId?: Maybe<Scalars['String']>;
|
2168
|
-
teams?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2169
|
-
orgName?: Maybe<Scalars['String']>;
|
2170
|
-
integrationConfigurationId?: Maybe<Scalars['String']>;
|
2171
|
-
};
|
2172
|
-
export declare type IProjectCreatedEvent = {
|
2173
|
-
__typename?: 'ProjectCreatedEvent';
|
2174
|
-
createdProject?: Maybe<IProjects>;
|
2175
|
-
};
|
2176
|
-
export declare type IProjectDeletedEvent = {
|
2177
|
-
__typename?: 'ProjectDeletedEvent';
|
2178
|
-
deletedProject?: Maybe<IProjects>;
|
2179
|
-
};
|
2180
|
-
export declare type IProjectInvoice = {
|
2181
|
-
__typename?: 'ProjectInvoice';
|
2182
|
-
id?: Maybe<Scalars['ID']>;
|
2183
|
-
hours?: Maybe<Scalars['Int']>;
|
2184
|
-
projectName?: Maybe<Scalars['String']>;
|
2185
|
-
rate?: Maybe<Scalars['Float']>;
|
2186
|
-
subTotal?: Maybe<Scalars['Float']>;
|
2187
|
-
};
|
2188
|
-
export declare type IProjectInvoice_Input = {
|
2189
|
-
hours?: Maybe<Scalars['Int']>;
|
2190
|
-
projectName?: Maybe<Scalars['String']>;
|
2191
|
-
rate?: Maybe<Scalars['Float']>;
|
2192
|
-
subTotal?: Maybe<Scalars['Float']>;
|
2193
|
-
};
|
2194
|
-
export declare type IProjectParameters = {
|
2195
|
-
__typename?: 'ProjectParameters';
|
2196
|
-
branch?: Maybe<Scalars['String']>;
|
2197
|
-
httpsUrl?: Maybe<Scalars['String']>;
|
2198
|
-
isPrivate?: Maybe<Scalars['Boolean']>;
|
2199
|
-
};
|
2200
|
-
export declare type IProjectParameters_Input = {
|
2201
|
-
branch?: Maybe<Scalars['String']>;
|
2202
|
-
httpsUrl?: Maybe<Scalars['String']>;
|
2203
|
-
isPrivate?: Maybe<Scalars['Boolean']>;
|
2204
|
-
};
|
2205
|
-
export declare type IProjectSource = {
|
2206
|
-
__typename?: 'ProjectSource';
|
2207
|
-
location?: Maybe<Scalars['String']>;
|
2208
|
-
type?: Maybe<IProjectSourceType>;
|
2209
|
-
parameters?: Maybe<IProjectParameters>;
|
2210
|
-
providers?: Maybe<IProjectSourceProviders>;
|
2211
|
-
language?: Maybe<Scalars['String']>;
|
2212
|
-
};
|
2213
|
-
/** Various Source Providers for Projects Source. */
|
2214
|
-
export declare const enum IProjectSourceProviders {
|
2215
|
-
Github = "Github",
|
2216
|
-
Bitbucket = "Bitbucket",
|
2217
|
-
Gitlab = "Gitlab",
|
2218
|
-
Vsts = "Vsts",
|
2219
|
-
None = "None"
|
2220
|
-
}
|
2221
|
-
/** Various types of sources. */
|
2222
|
-
export declare const enum IProjectSourceType {
|
2223
|
-
Blank = "Blank",
|
2224
|
-
Zip = "Zip",
|
2225
|
-
Git = "Git"
|
2226
|
-
}
|
2227
|
-
export declare type IProjectSource_Input = {
|
2228
|
-
location?: Maybe<Scalars['String']>;
|
2229
|
-
type?: Maybe<IProjectSourceType>;
|
2230
|
-
parameters?: Maybe<IProjectParameters_Input>;
|
2231
|
-
providers?: Maybe<IProjectSourceProviders>;
|
2232
|
-
language?: Maybe<Scalars['String']>;
|
2233
|
-
};
|
2234
|
-
export declare const enum IProjectType {
|
2235
|
-
internal = "internal",
|
2236
|
-
others = "others",
|
2237
|
-
asana = "asana"
|
2238
|
-
}
|
2239
|
-
export declare type IProjectWhereInput = {
|
2240
|
-
id?: Maybe<Scalars['String']>;
|
2241
|
-
integrationConfigurationId?: Maybe<Scalars['String']>;
|
2242
|
-
name?: Maybe<Scalars['String']>;
|
2243
|
-
orgName?: Maybe<Scalars['String']>;
|
2244
|
-
};
|
2245
|
-
export declare type IProject_Input = {
|
2246
|
-
id?: Maybe<Scalars['String']>;
|
2247
|
-
_id?: Maybe<Scalars['String']>;
|
2248
|
-
name?: Maybe<Scalars['String']>;
|
2249
|
-
description?: Maybe<Scalars['String']>;
|
2250
|
-
path?: Maybe<Scalars['String']>;
|
2251
|
-
source?: Maybe<IProjectSource_Input>;
|
2252
|
-
problems?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2253
|
-
};
|
2254
|
-
export declare type IProject_Output = {
|
2255
|
-
__typename?: 'Project_Output';
|
2256
|
-
id?: Maybe<Scalars['String']>;
|
2257
|
-
name: Scalars['String'];
|
2258
|
-
clientId?: Maybe<Scalars['String']>;
|
2259
|
-
teams?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2260
|
-
status?: Maybe<Scalars['String']>;
|
2261
|
-
orgName?: Maybe<Scalars['String']>;
|
2262
|
-
integrationConfigurationId?: Maybe<Scalars['String']>;
|
2263
|
-
};
|
2264
|
-
/**
|
2265
|
-
* * Project can be any of the following:
|
2266
|
-
* * i. Git Repository
|
2267
|
-
* * ii. Blank, in case the source.location is empty
|
2268
|
-
* * iii. Others like upload files or zip files
|
2269
|
-
* *
|
2270
|
-
* * @property
|
2271
|
-
* * name: Project Name
|
2272
|
-
* * @property
|
2273
|
-
* * description: Project description
|
2274
|
-
* * @property
|
2275
|
-
* * path: Path of the project in workspace
|
2276
|
-
* * @property
|
2277
|
-
* * source: Source of the project, it could Git etc. If GIT we define the branch under parameters.
|
2278
|
-
* * @property
|
2279
|
-
* * problems: If the project failed with any issues, we save them to notify the user.
|
2280
|
-
*/
|
2281
|
-
export declare type IProjects = {
|
2282
|
-
__typename?: 'Projects';
|
2283
|
-
id?: Maybe<Scalars['ID']>;
|
2284
|
-
name: Scalars['String'];
|
2285
|
-
description?: Maybe<Scalars['String']>;
|
2286
|
-
clientId?: Maybe<Scalars['String']>;
|
2287
|
-
source?: Maybe<IProjectSource>;
|
2288
|
-
problems?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2289
|
-
teams?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2290
|
-
status?: Maybe<Scalars['String']>;
|
2291
|
-
type?: Maybe<IProjectType>;
|
2292
|
-
integrationConfigurationId?: Maybe<Scalars['String']>;
|
2293
|
-
/** Predefined Project template */
|
2294
|
-
templateId?: Maybe<Scalars['String']>;
|
2295
|
-
orgName?: Maybe<Scalars['String']>;
|
2296
|
-
updatedAt?: Maybe<Scalars['DateTime']>;
|
2297
|
-
createdAt?: Maybe<Scalars['DateTime']>;
|
2298
|
-
};
|
2299
1889
|
export declare type IQuery = {
|
2300
1890
|
__typename?: 'Query';
|
2301
1891
|
GetSshKey?: Maybe<ISshKey>;
|
@@ -2323,9 +1913,6 @@ export declare type IQuery = {
|
|
2323
1913
|
getAccounts?: Maybe<Array<Maybe<IUserAccount>>>;
|
2324
1914
|
getAllCountries?: Maybe<Array<Maybe<ICountry>>>;
|
2325
1915
|
getAllIntegrationConfigurations?: Maybe<Array<Maybe<IIntegrationConfiguration>>>;
|
2326
|
-
getAsanaConnectionState?: Maybe<IAsanaConnection>;
|
2327
|
-
getAsanaWorkspaceProjects?: Maybe<Array<Maybe<IAsanaProjects>>>;
|
2328
|
-
getAsanaWorkspaces?: Maybe<Array<Maybe<IAsanaWorkspaces>>>;
|
2329
1916
|
getConfiguration?: Maybe<Array<Maybe<IConfiguration>>>;
|
2330
1917
|
getConfigurationData?: Maybe<IConfigurationData>;
|
2331
1918
|
getConfigurationPolicies?: Maybe<Array<Maybe<IConfigurationPolicy>>>;
|
@@ -2333,18 +1920,14 @@ export declare type IQuery = {
|
|
2333
1920
|
getContextData?: Maybe<IContext>;
|
2334
1921
|
getContextProperty?: Maybe<Scalars['AnyObject']>;
|
2335
1922
|
getContributionRoles?: Maybe<Array<Maybe<IContributionRoles>>>;
|
2336
|
-
getDefaultInvoiceNumber?: Maybe<Scalars['String']>;
|
2337
1923
|
getEnvironment?: Maybe<IEnvironment>;
|
2338
|
-
getFilteredProjects?: Maybe<Array<Maybe<IProjects>>>;
|
2339
1924
|
getIntegrationConfiguration?: Maybe<IIntegrationConfiguration>;
|
2340
|
-
getInvoices?: Maybe<Array<Maybe<IInvoiceType>>>;
|
2341
1925
|
getManageableOrganizations?: Maybe<Array<Maybe<IOrganization>>>;
|
2342
1926
|
getOrgContext?: Maybe<IContext>;
|
2343
1927
|
getOrgInvitationMembers?: Maybe<Array<Maybe<IInviteMember>>>;
|
2344
1928
|
getOrgNameFromContext?: Maybe<IContext>;
|
2345
1929
|
getOrgTeamInvitations?: Maybe<Array<Maybe<IOrganizationInvitation>>>;
|
2346
1930
|
getOrgUser?: Maybe<IOrgUser>;
|
2347
|
-
getOrganizationClients?: Maybe<Array<Maybe<IClient>>>;
|
2348
1931
|
getOrganizationConfigValue?: Maybe<Scalars['AnyObject']>;
|
2349
1932
|
getOrganizationDetail?: Maybe<IOrganization>;
|
2350
1933
|
getOrganizationDetailUnsecured?: Maybe<IOrganization>;
|
@@ -2352,10 +1935,8 @@ export declare type IQuery = {
|
|
2352
1935
|
getOrganizationMembers?: Maybe<Array<Maybe<IOrgMember>>>;
|
2353
1936
|
getOrganizationResourceContext?: Maybe<IOrganizationData>;
|
2354
1937
|
getOrganizationTeams?: Maybe<Array<Maybe<IAccountTeam>>>;
|
2355
|
-
getProjects?: Maybe<Array<Maybe<IProject_Output>>>;
|
2356
1938
|
getRole?: Maybe<IAccessRole>;
|
2357
1939
|
getRoles?: Maybe<Array<Maybe<IAccessRole>>>;
|
2358
|
-
getTasks?: Maybe<Array<Maybe<ITask>>>;
|
2359
1940
|
getTeam?: Maybe<IAccountTeam>;
|
2360
1941
|
getTeamContext?: Maybe<IContext>;
|
2361
1942
|
getTeamNameFromContext?: Maybe<IContext>;
|
@@ -2425,9 +2006,6 @@ export declare type IQuerygetAccountsArgs = {
|
|
2425
2006
|
export declare type IQuerygetAllCountriesArgs = {
|
2426
2007
|
criteria?: Maybe<Scalars['JSON']>;
|
2427
2008
|
};
|
2428
|
-
export declare type IQuerygetAsanaWorkspaceProjectsArgs = {
|
2429
|
-
workspaceId: Scalars['String'];
|
2430
|
-
};
|
2431
2009
|
export declare type IQuerygetConfigurationArgs = {
|
2432
2010
|
input?: Maybe<Array<Maybe<IConfigurationInput>>>;
|
2433
2011
|
};
|
@@ -2440,9 +2018,6 @@ export declare type IQuerygetConfigurationTargetArgs = {
|
|
2440
2018
|
export declare type IQuerygetContextPropertyArgs = {
|
2441
2019
|
keys?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2442
2020
|
};
|
2443
|
-
export declare type IQuerygetFilteredProjectsArgs = {
|
2444
|
-
filter: IProjectWhereInput;
|
2445
|
-
};
|
2446
2021
|
export declare type IQuerygetIntegrationConfigurationArgs = {
|
2447
2022
|
id: Scalars['String'];
|
2448
2023
|
};
|
@@ -2476,9 +2051,6 @@ export declare type IQuerygetRoleArgs = {
|
|
2476
2051
|
export declare type IQuerygetRolesArgs = {
|
2477
2052
|
input?: Maybe<Array<Maybe<IRoleInput>>>;
|
2478
2053
|
};
|
2479
|
-
export declare type IQuerygetTasksArgs = {
|
2480
|
-
projectId?: Maybe<Scalars['String']>;
|
2481
|
-
};
|
2482
2054
|
export declare type IQuerygetTeamArgs = {
|
2483
2055
|
orgName: Scalars['String'];
|
2484
2056
|
teamName: Scalars['String'];
|
@@ -2697,15 +2269,6 @@ export declare type ISettingsSection = {
|
|
2697
2269
|
settings?: Maybe<Array<Maybe<IContributionSettings>>>;
|
2698
2270
|
};
|
2699
2271
|
export declare type ISettingsSubject = IUserSettings | IApplicationSettings | IMachineSettings | IOrganizationResourceSettings | IGlobalSettings | IOrganizationSettings | IMemorySettings | IDefaultSettings;
|
2700
|
-
export declare type ISocialConnect = {
|
2701
|
-
__typename?: 'SocialConnect';
|
2702
|
-
facebook?: Maybe<Scalars['String']>;
|
2703
|
-
twitter?: Maybe<Scalars['String']>;
|
2704
|
-
};
|
2705
|
-
export declare type ISocialConnect_Input = {
|
2706
|
-
facebook?: Maybe<Scalars['String']>;
|
2707
|
-
twitter?: Maybe<Scalars['String']>;
|
2708
|
-
};
|
2709
2272
|
export declare type ISshKey = {
|
2710
2273
|
__typename?: 'SshKey';
|
2711
2274
|
id?: Maybe<Scalars['String']>;
|
@@ -2795,16 +2358,6 @@ export declare type ISubscriptionSubscribeToPermissionUpdateArgs = {
|
|
2795
2358
|
export declare type ISubscriptionSubscribeToPolicyUpdateArgs = {
|
2796
2359
|
orgName?: Maybe<Scalars['String']>;
|
2797
2360
|
};
|
2798
|
-
export declare type ITask = {
|
2799
|
-
__typename?: 'Task';
|
2800
|
-
id?: Maybe<Scalars['String']>;
|
2801
|
-
projectId?: Maybe<Scalars['String']>;
|
2802
|
-
taskName?: Maybe<Scalars['String']>;
|
2803
|
-
};
|
2804
|
-
export declare type ITaskRequest = {
|
2805
|
-
projectId?: Maybe<Scalars['String']>;
|
2806
|
-
taskName?: Maybe<Scalars['String']>;
|
2807
|
-
};
|
2808
2361
|
export declare type ITeamCreateRequest = {
|
2809
2362
|
name?: Maybe<Scalars['String']>;
|
2810
2363
|
title: Scalars['String'];
|
@@ -2916,16 +2469,6 @@ export declare type ITeamUpdateRequest = {
|
|
2916
2469
|
payload?: Maybe<IAccountTeam_Input>;
|
2917
2470
|
requestedUserId?: Maybe<Scalars['String']>;
|
2918
2471
|
};
|
2919
|
-
export declare type ITemplate = {
|
2920
|
-
templateId?: Maybe<Scalars['String']>;
|
2921
|
-
name?: Maybe<Scalars['String']>;
|
2922
|
-
text?: Maybe<Scalars['String']>;
|
2923
|
-
html?: Maybe<Scalars['String']>;
|
2924
|
-
engine?: Maybe<Scalars['String']>;
|
2925
|
-
topic?: Maybe<Scalars['String']>;
|
2926
|
-
description?: Maybe<Scalars['String']>;
|
2927
|
-
variables?: Maybe<Scalars['AnyObject']>;
|
2928
|
-
};
|
2929
2472
|
/** Address State Create Input */
|
2930
2473
|
export declare type ITerritorialStateInput = {
|
2931
2474
|
/** Name of the country to display */
|
@@ -2963,26 +2506,6 @@ export declare const enum ITokenTypesEnum {
|
|
2963
2506
|
EMAIL_VERIFICATION = "EMAIL_VERIFICATION",
|
2964
2507
|
PASSWORD_RESET = "PASSWORD_RESET"
|
2965
2508
|
}
|
2966
|
-
export declare type IUpdateProject_Input = {
|
2967
|
-
name: Scalars['String'];
|
2968
|
-
clientId?: Maybe<Scalars['String']>;
|
2969
|
-
teams?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2970
|
-
orgName?: Maybe<Scalars['String']>;
|
2971
|
-
integrationConfigurationId?: Maybe<Scalars['String']>;
|
2972
|
-
};
|
2973
|
-
export declare type IUpdatedClient_Input = {
|
2974
|
-
name?: Maybe<IName_Input>;
|
2975
|
-
companyName?: Maybe<Scalars['String']>;
|
2976
|
-
displayName?: Maybe<Scalars['String']>;
|
2977
|
-
email?: Maybe<Scalars['String']>;
|
2978
|
-
clientPhone?: Maybe<IClientPhone_Input>;
|
2979
|
-
website?: Maybe<Scalars['String']>;
|
2980
|
-
currency?: Maybe<Scalars['String']>;
|
2981
|
-
socialConnect?: Maybe<ISocialConnect_Input>;
|
2982
|
-
billingAddress?: Maybe<IAddressType_Input>;
|
2983
|
-
shippingAddress?: Maybe<IAddressType_Input>;
|
2984
|
-
orgName?: Maybe<Scalars['String']>;
|
2985
|
-
};
|
2986
2509
|
export declare type IUserAccount = INode & {
|
2987
2510
|
__typename?: 'UserAccount';
|
2988
2511
|
id: Scalars['ID'];
|
@@ -3059,6 +2582,12 @@ export declare type IUserAuth0Info = {
|
|
3059
2582
|
__typename?: 'UserAuth0Info';
|
3060
2583
|
auth0Id?: Maybe<Scalars['String']>;
|
3061
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']>;
|
3062
2591
|
};
|
3063
2592
|
export declare type IUserAuth0SessionDeviceInfo = {
|
3064
2593
|
__typename?: 'UserAuth0SessionDeviceInfo';
|
@@ -3212,6 +2741,10 @@ export declare type IUserProfile = IIAuth0User & IIAuth0UserProfile & IIAuth0Tok
|
|
3212
2741
|
at_hash?: Maybe<Scalars['String']>;
|
3213
2742
|
nonce?: Maybe<Scalars['String']>;
|
3214
2743
|
};
|
2744
|
+
export declare type IUserSessionId = {
|
2745
|
+
__typename?: 'UserSessionId';
|
2746
|
+
sessionId?: Maybe<Scalars['String']>;
|
2747
|
+
};
|
3215
2748
|
/** UserSettings is a combination of ApplicationSettings and MachineSettings */
|
3216
2749
|
export declare type IUserSettings = IISettingsSubject & {
|
3217
2750
|
__typename?: 'UserSettings';
|
@@ -3346,18 +2879,6 @@ export declare type IAccountOnBoardingMutationVariables = Exact<{
|
|
3346
2879
|
export declare type IAccountOnBoardingMutation = ({
|
3347
2880
|
__typename?: 'Mutation';
|
3348
2881
|
} & Pick<IMutation, 'accountOnBoarding'>);
|
3349
|
-
export declare type IAddClientMutationVariables = Exact<{
|
3350
|
-
client: IClientAddRequest;
|
3351
|
-
}>;
|
3352
|
-
export declare type IAddClientMutation = ({
|
3353
|
-
__typename?: 'Mutation';
|
3354
|
-
} & Pick<IMutation, 'addClient'>);
|
3355
|
-
export declare type IAddOrgProjectMutationVariables = Exact<{
|
3356
|
-
project: IProjectAddRequest;
|
3357
|
-
}>;
|
3358
|
-
export declare type IAddOrgProjectMutation = ({
|
3359
|
-
__typename?: 'Mutation';
|
3360
|
-
} & Pick<IMutation, 'addOrgProject'>);
|
3361
2882
|
export declare type IAddTeamMembersMutationVariables = Exact<{
|
3362
2883
|
orgName: Scalars['String'];
|
3363
2884
|
teamName: Scalars['String'];
|
@@ -3382,12 +2903,6 @@ export declare type IchangeOrgMemberRoleMutationVariables = Exact<{
|
|
3382
2903
|
export declare type IchangeOrgMemberRoleMutation = ({
|
3383
2904
|
__typename?: 'Mutation';
|
3384
2905
|
} & Pick<IMutation, 'changeOrgMemberRole'>);
|
3385
|
-
export declare type ICreateInvoiceMutationVariables = Exact<{
|
3386
|
-
invoice: IInvoiceCreateRequest;
|
3387
|
-
}>;
|
3388
|
-
export declare type ICreateInvoiceMutation = ({
|
3389
|
-
__typename?: 'Mutation';
|
3390
|
-
} & Pick<IMutation, 'createInvoice'>);
|
3391
2906
|
export declare type IcreateOrganizationMutationVariables = Exact<{
|
3392
2907
|
organization: IOrganizationCreateRequest;
|
3393
2908
|
}>;
|
@@ -3398,12 +2913,6 @@ export declare type IcreateOrganizationMutation = ({
|
|
3398
2913
|
__typename?: 'Organization';
|
3399
2914
|
} & Pick<IOrganization, 'id' | 'name' | 'description' | 'picture' | 'namespace' | 'orgUserCount'>)>;
|
3400
2915
|
});
|
3401
|
-
export declare type ICreateTaskMutationVariables = Exact<{
|
3402
|
-
request?: Maybe<ITaskRequest>;
|
3403
|
-
}>;
|
3404
|
-
export declare type ICreateTaskMutation = ({
|
3405
|
-
__typename?: 'Mutation';
|
3406
|
-
} & Pick<IMutation, 'createTask'>);
|
3407
2916
|
export declare type IcreateTeamMutationVariables = Exact<{
|
3408
2917
|
request: ITeamCreationRequest;
|
3409
2918
|
}>;
|
@@ -3436,18 +2945,6 @@ export declare type IregisterAccountUserMutation = ({
|
|
3436
2945
|
__typename?: 'UserAccount';
|
3437
2946
|
} & Pick<IUserAccount, 'id' | 'email' | 'username'>)>;
|
3438
2947
|
});
|
3439
|
-
export declare type IRemoveInvoiceMutationVariables = Exact<{
|
3440
|
-
id?: Maybe<Scalars['String']>;
|
3441
|
-
}>;
|
3442
|
-
export declare type IRemoveInvoiceMutation = ({
|
3443
|
-
__typename?: 'Mutation';
|
3444
|
-
} & Pick<IMutation, 'removeInvoice'>);
|
3445
|
-
export declare type IRemoveOrgClientMutationVariables = Exact<{
|
3446
|
-
clientId: Scalars['String'];
|
3447
|
-
}>;
|
3448
|
-
export declare type IRemoveOrgClientMutation = ({
|
3449
|
-
__typename?: 'Mutation';
|
3450
|
-
} & Pick<IMutation, 'removeOrgClient'>);
|
3451
2948
|
export declare type IRemoveOrgMemberMutationVariables = Exact<{
|
3452
2949
|
memberId: Scalars['String'];
|
3453
2950
|
}>;
|
@@ -3460,12 +2957,6 @@ export declare type IremoveOrganizationMutationVariables = Exact<{
|
|
3460
2957
|
export declare type IremoveOrganizationMutation = ({
|
3461
2958
|
__typename?: 'Mutation';
|
3462
2959
|
} & Pick<IMutation, 'removeOrganization'>);
|
3463
|
-
export declare type IRemoveTaskMutationVariables = Exact<{
|
3464
|
-
id: Scalars['String'];
|
3465
|
-
}>;
|
3466
|
-
export declare type IRemoveTaskMutation = ({
|
3467
|
-
__typename?: 'Mutation';
|
3468
|
-
} & Pick<IMutation, 'removeTask'>);
|
3469
2960
|
export declare type IremoveTeamMutationVariables = Exact<{
|
3470
2961
|
teamId: Scalars['String'];
|
3471
2962
|
}>;
|
@@ -3504,51 +2995,12 @@ export declare type ISendUserPasswordResetEmailMutationVariables = Exact<{
|
|
3504
2995
|
export declare type ISendUserPasswordResetEmailMutation = ({
|
3505
2996
|
__typename?: 'Mutation';
|
3506
2997
|
} & Pick<IMutation, 'sendUserPasswordResetEmail'>);
|
3507
|
-
export declare type ISendInvoiceMailMutationVariables = Exact<{
|
3508
|
-
request: IInvoiceMailRequest;
|
3509
|
-
}>;
|
3510
|
-
export declare type ISendInvoiceMailMutation = ({
|
3511
|
-
__typename?: 'Mutation';
|
3512
|
-
} & Pick<IMutation, 'sendInvoiceMail'>);
|
3513
2998
|
export declare type IsendOrganizationInvitationMutationVariables = Exact<{
|
3514
2999
|
request: IOrganizationInvitationRequest;
|
3515
3000
|
}>;
|
3516
3001
|
export declare type IsendOrganizationInvitationMutation = ({
|
3517
3002
|
__typename?: 'Mutation';
|
3518
3003
|
} & Pick<IMutation, 'sendOrganizationInvitation'>);
|
3519
|
-
export declare type IUpdateInvoiceMutationVariables = Exact<{
|
3520
|
-
id?: Maybe<Scalars['String']>;
|
3521
|
-
invoice?: Maybe<IInvoiceUpdateRequest>;
|
3522
|
-
}>;
|
3523
|
-
export declare type IUpdateInvoiceMutation = ({
|
3524
|
-
__typename?: 'Mutation';
|
3525
|
-
} & Pick<IMutation, 'updateInvoice'>);
|
3526
|
-
export declare type IUpdateOrgClientMutationVariables = Exact<{
|
3527
|
-
updateRequest?: Maybe<IClientUpdateRequest>;
|
3528
|
-
}>;
|
3529
|
-
export declare type IUpdateOrgClientMutation = ({
|
3530
|
-
__typename?: 'Mutation';
|
3531
|
-
} & {
|
3532
|
-
updateOrgClient?: Maybe<({
|
3533
|
-
__typename?: 'Client';
|
3534
|
-
} & Pick<IClient, 'id' | 'companyName' | 'displayName' | 'email' | 'website' | 'currency' | 'orgName'> & {
|
3535
|
-
name: ({
|
3536
|
-
__typename?: 'NameType';
|
3537
|
-
} & Pick<INameType, 'salutation' | 'firstName' | 'lastName'>);
|
3538
|
-
clientPhone?: Maybe<({
|
3539
|
-
__typename?: 'ClientPhone';
|
3540
|
-
} & Pick<IClientPhone, 'workPhone' | 'mobile'>)>;
|
3541
|
-
socialConnect?: Maybe<({
|
3542
|
-
__typename?: 'SocialConnect';
|
3543
|
-
} & Pick<ISocialConnect, 'facebook' | 'twitter'>)>;
|
3544
|
-
billingAddress?: Maybe<({
|
3545
|
-
__typename?: 'AddressType';
|
3546
|
-
} & Pick<IAddressType, 'attention' | 'address' | 'city' | 'state' | 'country' | 'zip'>)>;
|
3547
|
-
shippingAddress?: Maybe<({
|
3548
|
-
__typename?: 'AddressType';
|
3549
|
-
} & Pick<IAddressType, 'attention' | 'address' | 'city' | 'state' | 'country' | 'zip'>)>;
|
3550
|
-
})>;
|
3551
|
-
});
|
3552
3004
|
export declare type IupdateOrgMemberTeamsMutationVariables = Exact<{
|
3553
3005
|
userId: Scalars['String'];
|
3554
3006
|
orgName: Scalars['String'];
|
@@ -3558,13 +3010,6 @@ export declare type IupdateOrgMemberTeamsMutationVariables = Exact<{
|
|
3558
3010
|
export declare type IupdateOrgMemberTeamsMutation = ({
|
3559
3011
|
__typename?: 'Mutation';
|
3560
3012
|
} & Pick<IMutation, 'updateOrgMemberTeams'>);
|
3561
|
-
export declare type IUpdateOrgProjectMutationVariables = Exact<{
|
3562
|
-
where: IProjectWhereInput;
|
3563
|
-
project?: Maybe<IUpdateProject_Input>;
|
3564
|
-
}>;
|
3565
|
-
export declare type IUpdateOrgProjectMutation = ({
|
3566
|
-
__typename?: 'Mutation';
|
3567
|
-
} & Pick<IMutation, 'updateOrgProject'>);
|
3568
3013
|
export declare type IupdateOrganizationMutationVariables = Exact<{
|
3569
3014
|
organization: IOrganizationUpdateRequest;
|
3570
3015
|
}>;
|
@@ -3575,20 +3020,6 @@ export declare type IupdateOrganizationMutation = ({
|
|
3575
3020
|
__typename?: 'Organization';
|
3576
3021
|
} & Pick<IOrganization, 'id' | 'name' | 'description' | 'picture' | 'namespace' | 'orgUserCount'>)>;
|
3577
3022
|
});
|
3578
|
-
export declare type IUpdateProjectStatusMutationVariables = Exact<{
|
3579
|
-
id: Scalars['String'];
|
3580
|
-
status?: Maybe<Scalars['String']>;
|
3581
|
-
}>;
|
3582
|
-
export declare type IUpdateProjectStatusMutation = ({
|
3583
|
-
__typename?: 'Mutation';
|
3584
|
-
} & Pick<IMutation, 'updateProjectStatus'>);
|
3585
|
-
export declare type IUpdateTaskMutationVariables = Exact<{
|
3586
|
-
id: Scalars['String'];
|
3587
|
-
request?: Maybe<ITaskRequest>;
|
3588
|
-
}>;
|
3589
|
-
export declare type IUpdateTaskMutation = ({
|
3590
|
-
__typename?: 'Mutation';
|
3591
|
-
} & Pick<IMutation, 'updateTask'>);
|
3592
3023
|
export declare type IupdateTeamConfigurationMutationVariables = Exact<{
|
3593
3024
|
key: Scalars['String'];
|
3594
3025
|
value: Scalars['AnyObject'];
|
@@ -3605,17 +3036,6 @@ export declare type IupdateUserAccountMutationVariables = Exact<{
|
|
3605
3036
|
export declare type IupdateUserAccountMutation = ({
|
3606
3037
|
__typename?: 'Mutation';
|
3607
3038
|
} & Pick<IMutation, 'updateUserAccount'>);
|
3608
|
-
export declare type IUpsertProjectThroughIntegrationMutationVariables = Exact<{
|
3609
|
-
where: IProjectWhereInput;
|
3610
|
-
project?: Maybe<IUpdateProject_Input>;
|
3611
|
-
}>;
|
3612
|
-
export declare type IUpsertProjectThroughIntegrationMutation = ({
|
3613
|
-
__typename?: 'Mutation';
|
3614
|
-
} & {
|
3615
|
-
upsertProjectThroughIntegration?: Maybe<({
|
3616
|
-
__typename?: 'Projects';
|
3617
|
-
} & Pick<IProjects, 'id' | 'name' | 'clientId' | 'teams' | 'status' | 'orgName' | 'integrationConfigurationId'>)>;
|
3618
|
-
});
|
3619
3039
|
export declare type IVerifyUserEmailVerificationTokenMutationVariables = Exact<{
|
3620
3040
|
token?: Maybe<Scalars['String']>;
|
3621
3041
|
}>;
|
@@ -3666,107 +3086,6 @@ export declare type IGetAllCountriesQuery = ({
|
|
3666
3086
|
__typename?: 'Country';
|
3667
3087
|
} & Pick<ICountry, 'id' | 'name' | 'phoneCode'>)>>>;
|
3668
3088
|
});
|
3669
|
-
export declare type IGetAsanaConnectionStateQueryVariables = Exact<{
|
3670
|
-
[key: string]: never;
|
3671
|
-
}>;
|
3672
|
-
export declare type IGetAsanaConnectionStateQuery = ({
|
3673
|
-
__typename?: 'Query';
|
3674
|
-
} & {
|
3675
|
-
getAsanaConnectionState?: Maybe<({
|
3676
|
-
__typename?: 'AsanaConnection';
|
3677
|
-
} & {
|
3678
|
-
asana?: Maybe<({
|
3679
|
-
__typename?: 'AsanaConnectionState';
|
3680
|
-
} & Pick<IAsanaConnectionState, 'status'> & {
|
3681
|
-
user?: Maybe<({
|
3682
|
-
__typename?: 'AsanaUser';
|
3683
|
-
} & Pick<IAsanaUser, 'user_id' | 'username'>)>;
|
3684
|
-
})>;
|
3685
|
-
})>;
|
3686
|
-
});
|
3687
|
-
export declare type IGetAsanaWorkspaceProjectsQueryVariables = Exact<{
|
3688
|
-
workspaceId: Scalars['String'];
|
3689
|
-
}>;
|
3690
|
-
export declare type IGetAsanaWorkspaceProjectsQuery = ({
|
3691
|
-
__typename?: 'Query';
|
3692
|
-
} & {
|
3693
|
-
getAsanaWorkspaceProjects?: Maybe<Array<Maybe<({
|
3694
|
-
__typename?: 'AsanaProjects';
|
3695
|
-
} & Pick<IAsanaProjects, 'name' | 'gid'>)>>>;
|
3696
|
-
});
|
3697
|
-
export declare type IGetAsanaWorkspacesQueryVariables = Exact<{
|
3698
|
-
[key: string]: never;
|
3699
|
-
}>;
|
3700
|
-
export declare type IGetAsanaWorkspacesQuery = ({
|
3701
|
-
__typename?: 'Query';
|
3702
|
-
} & {
|
3703
|
-
getAsanaWorkspaces?: Maybe<Array<Maybe<({
|
3704
|
-
__typename?: 'AsanaWorkspaces';
|
3705
|
-
} & Pick<IAsanaWorkspaces, 'name' | 'gid'>)>>>;
|
3706
|
-
});
|
3707
|
-
export declare type IGetDefaultInvoiceNumberQueryVariables = Exact<{
|
3708
|
-
[key: string]: never;
|
3709
|
-
}>;
|
3710
|
-
export declare type IGetDefaultInvoiceNumberQuery = ({
|
3711
|
-
__typename?: 'Query';
|
3712
|
-
} & Pick<IQuery, 'getDefaultInvoiceNumber'>);
|
3713
|
-
export declare type IGetFilteredProjectsQueryVariables = Exact<{
|
3714
|
-
filter: IProjectWhereInput;
|
3715
|
-
}>;
|
3716
|
-
export declare type IGetFilteredProjectsQuery = ({
|
3717
|
-
__typename?: 'Query';
|
3718
|
-
} & {
|
3719
|
-
getFilteredProjects?: Maybe<Array<Maybe<({
|
3720
|
-
__typename?: 'Projects';
|
3721
|
-
} & Pick<IProjects, 'id' | 'name' | 'clientId' | 'teams' | 'status' | 'orgName' | 'integrationConfigurationId'>)>>>;
|
3722
|
-
});
|
3723
|
-
export declare type IGetInvoicesQueryVariables = Exact<{
|
3724
|
-
[key: string]: never;
|
3725
|
-
}>;
|
3726
|
-
export declare type IGetInvoicesQuery = ({
|
3727
|
-
__typename?: 'Query';
|
3728
|
-
} & {
|
3729
|
-
getInvoices?: Maybe<Array<Maybe<({
|
3730
|
-
__typename?: 'InvoiceType';
|
3731
|
-
} & Pick<IInvoiceType, 'id' | 'comment' | 'currency' | 'discount' | 'invoiceDate' | 'terms' | 'dueDate' | 'invoiceNumber' | 'orderNumber' | 'logo' | 'overdue' | 'paymentStatus' | 'sendingStatus' | 'subTotal' | 'tax' | 'subject' | 'conditions' | 'status' | 'timezoneOffset' | 'total' | 'orgName'> & {
|
3732
|
-
from?: Maybe<({
|
3733
|
-
__typename?: 'MemberInvoice';
|
3734
|
-
} & Pick<IMemberInvoice, 'id' | 'name' | 'companyName' | 'email'> & {
|
3735
|
-
phone?: Maybe<({
|
3736
|
-
__typename?: 'ClientPhone';
|
3737
|
-
} & Pick<IClientPhone, 'workPhone' | 'mobile'>)>;
|
3738
|
-
address?: Maybe<({
|
3739
|
-
__typename?: 'AddressType';
|
3740
|
-
} & Pick<IAddressType, 'attention' | 'address' | 'city' | 'state' | 'country' | 'zip'>)>;
|
3741
|
-
})>;
|
3742
|
-
invoiceVendor?: Maybe<({
|
3743
|
-
__typename?: 'MemberInvoice';
|
3744
|
-
} & Pick<IMemberInvoice, 'id' | 'name' | 'companyName' | 'email'> & {
|
3745
|
-
phone?: Maybe<({
|
3746
|
-
__typename?: 'ClientPhone';
|
3747
|
-
} & Pick<IClientPhone, 'workPhone' | 'mobile'>)>;
|
3748
|
-
address?: Maybe<({
|
3749
|
-
__typename?: 'AddressType';
|
3750
|
-
} & Pick<IAddressType, 'attention' | 'address' | 'city' | 'state' | 'country' | 'zip'>)>;
|
3751
|
-
})>;
|
3752
|
-
projects?: Maybe<Array<Maybe<({
|
3753
|
-
__typename?: 'ProjectInvoice';
|
3754
|
-
} & Pick<IProjectInvoice, 'id' | 'hours' | 'projectName' | 'rate' | 'subTotal'>)>>>;
|
3755
|
-
to?: Maybe<({
|
3756
|
-
__typename?: 'CustomerInvoice';
|
3757
|
-
} & Pick<ICustomerInvoice, 'id' | 'username' | 'companyName' | 'email'> & {
|
3758
|
-
phone?: Maybe<({
|
3759
|
-
__typename?: 'ClientPhone';
|
3760
|
-
} & Pick<IClientPhone, 'workPhone' | 'mobile'>)>;
|
3761
|
-
billingAddress?: Maybe<({
|
3762
|
-
__typename?: 'AddressType';
|
3763
|
-
} & Pick<IAddressType, 'attention' | 'address' | 'city' | 'state' | 'country' | 'zip'>)>;
|
3764
|
-
shippingAddress?: Maybe<({
|
3765
|
-
__typename?: 'AddressType';
|
3766
|
-
} & Pick<IAddressType, 'attention' | 'address' | 'city' | 'state' | 'country' | 'zip'>)>;
|
3767
|
-
})>;
|
3768
|
-
})>>>;
|
3769
|
-
});
|
3770
3089
|
export declare type IGetManageableOrganizationsQueryVariables = Exact<{
|
3771
3090
|
[key: string]: never;
|
3772
3091
|
}>;
|
@@ -3821,32 +3140,6 @@ export declare type IGetOrgUserQuery = ({
|
|
3821
3140
|
__typename?: 'OrgUser';
|
3822
3141
|
} & IOrgUserFragment)>;
|
3823
3142
|
});
|
3824
|
-
export declare type IGetOrganizationClientsQueryVariables = Exact<{
|
3825
|
-
[key: string]: never;
|
3826
|
-
}>;
|
3827
|
-
export declare type IGetOrganizationClientsQuery = ({
|
3828
|
-
__typename?: 'Query';
|
3829
|
-
} & {
|
3830
|
-
getOrganizationClients?: Maybe<Array<Maybe<({
|
3831
|
-
__typename?: 'Client';
|
3832
|
-
} & Pick<IClient, 'id' | 'companyName' | 'displayName' | 'email' | 'website' | 'currency' | 'orgName'> & {
|
3833
|
-
name: ({
|
3834
|
-
__typename?: 'NameType';
|
3835
|
-
} & Pick<INameType, 'salutation' | 'firstName' | 'lastName'>);
|
3836
|
-
clientPhone?: Maybe<({
|
3837
|
-
__typename?: 'ClientPhone';
|
3838
|
-
} & Pick<IClientPhone, 'workPhone' | 'mobile'>)>;
|
3839
|
-
socialConnect?: Maybe<({
|
3840
|
-
__typename?: 'SocialConnect';
|
3841
|
-
} & Pick<ISocialConnect, 'facebook' | 'twitter'>)>;
|
3842
|
-
billingAddress?: Maybe<({
|
3843
|
-
__typename?: 'AddressType';
|
3844
|
-
} & Pick<IAddressType, 'attention' | 'address' | 'city' | 'state' | 'country' | 'zip'>)>;
|
3845
|
-
shippingAddress?: Maybe<({
|
3846
|
-
__typename?: 'AddressType';
|
3847
|
-
} & Pick<IAddressType, 'attention' | 'address' | 'city' | 'state' | 'country' | 'zip'>)>;
|
3848
|
-
})>>>;
|
3849
|
-
});
|
3850
3143
|
export declare type IGetOrganizationMembersWithNameQueryVariables = Exact<{
|
3851
3144
|
where: IOrgDetailWhere;
|
3852
3145
|
}>;
|
@@ -3879,26 +3172,6 @@ export declare type IgetOrganizationTeamsQuery = ({
|
|
3879
3172
|
} & Pick<ITeamMember, 'id' | 'name' | 'status'>)>>>;
|
3880
3173
|
})>>>;
|
3881
3174
|
});
|
3882
|
-
export declare type IGetProjectsQueryVariables = Exact<{
|
3883
|
-
[key: string]: never;
|
3884
|
-
}>;
|
3885
|
-
export declare type IGetProjectsQuery = ({
|
3886
|
-
__typename?: 'Query';
|
3887
|
-
} & {
|
3888
|
-
getProjects?: Maybe<Array<Maybe<({
|
3889
|
-
__typename?: 'Project_Output';
|
3890
|
-
} & Pick<IProject_Output, 'id' | 'name' | 'clientId' | 'teams' | 'status' | 'orgName'>)>>>;
|
3891
|
-
});
|
3892
|
-
export declare type IGetTasksQueryVariables = Exact<{
|
3893
|
-
[key: string]: never;
|
3894
|
-
}>;
|
3895
|
-
export declare type IGetTasksQuery = ({
|
3896
|
-
__typename?: 'Query';
|
3897
|
-
} & {
|
3898
|
-
getTasks?: Maybe<Array<Maybe<({
|
3899
|
-
__typename?: 'Task';
|
3900
|
-
} & Pick<ITask, 'id' | 'projectId' | 'taskName'>)>>>;
|
3901
|
-
});
|
3902
3175
|
export declare type IgetTeamQueryVariables = Exact<{
|
3903
3176
|
orgName: Scalars['String'];
|
3904
3177
|
teamName: Scalars['String'];
|
@@ -5232,78 +4505,30 @@ export declare function useAccountOnBoardingMutation(baseOptions?: Apollo.Mutati
|
|
5232
4505
|
export declare type AccountOnBoardingMutationHookResult = ReturnType<typeof useAccountOnBoardingMutation>;
|
5233
4506
|
export declare type AccountOnBoardingMutationResult = Apollo.MutationResult<IAccountOnBoardingMutation>;
|
5234
4507
|
export declare type AccountOnBoardingMutationOptions = Apollo.BaseMutationOptions<IAccountOnBoardingMutation, IAccountOnBoardingMutationVariables>;
|
5235
|
-
export declare const
|
4508
|
+
export declare const AddTeamMembersDocument: DocumentNode;
|
5236
4509
|
/**
|
5237
|
-
*
|
4510
|
+
* __useAddTeamMembersMutation__
|
5238
4511
|
*
|
5239
|
-
* To run a mutation, you first call `
|
5240
|
-
* When your component renders, `
|
4512
|
+
* To run a mutation, you first call `useAddTeamMembersMutation` within a React component and pass it any options that fit your needs.
|
4513
|
+
* When your component renders, `useAddTeamMembersMutation` returns a tuple that includes:
|
5241
4514
|
* - A mutate function that you can call at any time to execute the mutation
|
5242
4515
|
* - An object with fields that represent the current status of the mutation's execution
|
5243
4516
|
*
|
5244
4517
|
* @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;
|
5245
4518
|
*
|
5246
4519
|
* @example
|
5247
|
-
* const [
|
4520
|
+
* const [addTeamMembersMutation, { data, loading, error }] = useAddTeamMembersMutation({
|
5248
4521
|
* variables: {
|
5249
|
-
*
|
4522
|
+
* orgName: // value for 'orgName'
|
4523
|
+
* teamName: // value for 'teamName'
|
4524
|
+
* memberIds: // value for 'memberIds'
|
5250
4525
|
* },
|
5251
4526
|
* });
|
5252
4527
|
*/
|
5253
|
-
export declare function
|
5254
|
-
|
5255
|
-
|
5256
|
-
|
5257
|
-
export declare type AddClientMutationResult = Apollo.MutationResult<IAddClientMutation>;
|
5258
|
-
export declare type AddClientMutationOptions = Apollo.BaseMutationOptions<IAddClientMutation, IAddClientMutationVariables>;
|
5259
|
-
export declare const AddOrgProjectDocument: DocumentNode;
|
5260
|
-
/**
|
5261
|
-
* __useAddOrgProjectMutation__
|
5262
|
-
*
|
5263
|
-
* To run a mutation, you first call `useAddOrgProjectMutation` within a React component and pass it any options that fit your needs.
|
5264
|
-
* When your component renders, `useAddOrgProjectMutation` returns a tuple that includes:
|
5265
|
-
* - A mutate function that you can call at any time to execute the mutation
|
5266
|
-
* - An object with fields that represent the current status of the mutation's execution
|
5267
|
-
*
|
5268
|
-
* @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;
|
5269
|
-
*
|
5270
|
-
* @example
|
5271
|
-
* const [addOrgProjectMutation, { data, loading, error }] = useAddOrgProjectMutation({
|
5272
|
-
* variables: {
|
5273
|
-
* project: // value for 'project'
|
5274
|
-
* },
|
5275
|
-
* });
|
5276
|
-
*/
|
5277
|
-
export declare function useAddOrgProjectMutation(baseOptions?: Apollo.MutationHookOptions<IAddOrgProjectMutation, IAddOrgProjectMutationVariables>): Apollo.MutationTuple<IAddOrgProjectMutation, Exact<{
|
5278
|
-
project: IProjectAddRequest;
|
5279
|
-
}>>;
|
5280
|
-
export declare type AddOrgProjectMutationHookResult = ReturnType<typeof useAddOrgProjectMutation>;
|
5281
|
-
export declare type AddOrgProjectMutationResult = Apollo.MutationResult<IAddOrgProjectMutation>;
|
5282
|
-
export declare type AddOrgProjectMutationOptions = Apollo.BaseMutationOptions<IAddOrgProjectMutation, IAddOrgProjectMutationVariables>;
|
5283
|
-
export declare const AddTeamMembersDocument: DocumentNode;
|
5284
|
-
/**
|
5285
|
-
* __useAddTeamMembersMutation__
|
5286
|
-
*
|
5287
|
-
* To run a mutation, you first call `useAddTeamMembersMutation` within a React component and pass it any options that fit your needs.
|
5288
|
-
* When your component renders, `useAddTeamMembersMutation` returns a tuple that includes:
|
5289
|
-
* - A mutate function that you can call at any time to execute the mutation
|
5290
|
-
* - An object with fields that represent the current status of the mutation's execution
|
5291
|
-
*
|
5292
|
-
* @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;
|
5293
|
-
*
|
5294
|
-
* @example
|
5295
|
-
* const [addTeamMembersMutation, { data, loading, error }] = useAddTeamMembersMutation({
|
5296
|
-
* variables: {
|
5297
|
-
* orgName: // value for 'orgName'
|
5298
|
-
* teamName: // value for 'teamName'
|
5299
|
-
* memberIds: // value for 'memberIds'
|
5300
|
-
* },
|
5301
|
-
* });
|
5302
|
-
*/
|
5303
|
-
export declare function useAddTeamMembersMutation(baseOptions?: Apollo.MutationHookOptions<IAddTeamMembersMutation, IAddTeamMembersMutationVariables>): Apollo.MutationTuple<IAddTeamMembersMutation, Exact<{
|
5304
|
-
orgName: string;
|
5305
|
-
teamName: string;
|
5306
|
-
memberIds: string | string[];
|
4528
|
+
export declare function useAddTeamMembersMutation(baseOptions?: Apollo.MutationHookOptions<IAddTeamMembersMutation, IAddTeamMembersMutationVariables>): Apollo.MutationTuple<IAddTeamMembersMutation, Exact<{
|
4529
|
+
orgName: string;
|
4530
|
+
teamName: string;
|
4531
|
+
memberIds: string | string[];
|
5307
4532
|
}>>;
|
5308
4533
|
export declare type AddTeamMembersMutationHookResult = ReturnType<typeof useAddTeamMembersMutation>;
|
5309
4534
|
export declare type AddTeamMembersMutationResult = Apollo.MutationResult<IAddTeamMembersMutation>;
|
@@ -5364,30 +4589,6 @@ export declare function usechangeOrgMemberRoleMutation(baseOptions?: Apollo.Muta
|
|
5364
4589
|
export declare type changeOrgMemberRoleMutationHookResult = ReturnType<typeof usechangeOrgMemberRoleMutation>;
|
5365
4590
|
export declare type changeOrgMemberRoleMutationResult = Apollo.MutationResult<IchangeOrgMemberRoleMutation>;
|
5366
4591
|
export declare type changeOrgMemberRoleMutationOptions = Apollo.BaseMutationOptions<IchangeOrgMemberRoleMutation, IchangeOrgMemberRoleMutationVariables>;
|
5367
|
-
export declare const CreateInvoiceDocument: DocumentNode;
|
5368
|
-
/**
|
5369
|
-
* __useCreateInvoiceMutation__
|
5370
|
-
*
|
5371
|
-
* To run a mutation, you first call `useCreateInvoiceMutation` within a React component and pass it any options that fit your needs.
|
5372
|
-
* When your component renders, `useCreateInvoiceMutation` returns a tuple that includes:
|
5373
|
-
* - A mutate function that you can call at any time to execute the mutation
|
5374
|
-
* - An object with fields that represent the current status of the mutation's execution
|
5375
|
-
*
|
5376
|
-
* @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;
|
5377
|
-
*
|
5378
|
-
* @example
|
5379
|
-
* const [createInvoiceMutation, { data, loading, error }] = useCreateInvoiceMutation({
|
5380
|
-
* variables: {
|
5381
|
-
* invoice: // value for 'invoice'
|
5382
|
-
* },
|
5383
|
-
* });
|
5384
|
-
*/
|
5385
|
-
export declare function useCreateInvoiceMutation(baseOptions?: Apollo.MutationHookOptions<ICreateInvoiceMutation, ICreateInvoiceMutationVariables>): Apollo.MutationTuple<ICreateInvoiceMutation, Exact<{
|
5386
|
-
invoice: IInvoiceCreateRequest;
|
5387
|
-
}>>;
|
5388
|
-
export declare type CreateInvoiceMutationHookResult = ReturnType<typeof useCreateInvoiceMutation>;
|
5389
|
-
export declare type CreateInvoiceMutationResult = Apollo.MutationResult<ICreateInvoiceMutation>;
|
5390
|
-
export declare type CreateInvoiceMutationOptions = Apollo.BaseMutationOptions<ICreateInvoiceMutation, ICreateInvoiceMutationVariables>;
|
5391
4592
|
export declare const createOrganizationDocument: DocumentNode;
|
5392
4593
|
/**
|
5393
4594
|
* __usecreateOrganizationMutation__
|
@@ -5412,30 +4613,6 @@ export declare function usecreateOrganizationMutation(baseOptions?: Apollo.Mutat
|
|
5412
4613
|
export declare type createOrganizationMutationHookResult = ReturnType<typeof usecreateOrganizationMutation>;
|
5413
4614
|
export declare type createOrganizationMutationResult = Apollo.MutationResult<IcreateOrganizationMutation>;
|
5414
4615
|
export declare type createOrganizationMutationOptions = Apollo.BaseMutationOptions<IcreateOrganizationMutation, IcreateOrganizationMutationVariables>;
|
5415
|
-
export declare const CreateTaskDocument: DocumentNode;
|
5416
|
-
/**
|
5417
|
-
* __useCreateTaskMutation__
|
5418
|
-
*
|
5419
|
-
* To run a mutation, you first call `useCreateTaskMutation` within a React component and pass it any options that fit your needs.
|
5420
|
-
* When your component renders, `useCreateTaskMutation` returns a tuple that includes:
|
5421
|
-
* - A mutate function that you can call at any time to execute the mutation
|
5422
|
-
* - An object with fields that represent the current status of the mutation's execution
|
5423
|
-
*
|
5424
|
-
* @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;
|
5425
|
-
*
|
5426
|
-
* @example
|
5427
|
-
* const [createTaskMutation, { data, loading, error }] = useCreateTaskMutation({
|
5428
|
-
* variables: {
|
5429
|
-
* request: // value for 'request'
|
5430
|
-
* },
|
5431
|
-
* });
|
5432
|
-
*/
|
5433
|
-
export declare function useCreateTaskMutation(baseOptions?: Apollo.MutationHookOptions<ICreateTaskMutation, ICreateTaskMutationVariables>): Apollo.MutationTuple<ICreateTaskMutation, Exact<{
|
5434
|
-
request?: ITaskRequest;
|
5435
|
-
}>>;
|
5436
|
-
export declare type CreateTaskMutationHookResult = ReturnType<typeof useCreateTaskMutation>;
|
5437
|
-
export declare type CreateTaskMutationResult = Apollo.MutationResult<ICreateTaskMutation>;
|
5438
|
-
export declare type CreateTaskMutationOptions = Apollo.BaseMutationOptions<ICreateTaskMutation, ICreateTaskMutationVariables>;
|
5439
4616
|
export declare const createTeamDocument: DocumentNode;
|
5440
4617
|
/**
|
5441
4618
|
* __usecreateTeamMutation__
|
@@ -5531,54 +4708,6 @@ export declare function useregisterAccountUserMutation(baseOptions?: Apollo.Muta
|
|
5531
4708
|
export declare type registerAccountUserMutationHookResult = ReturnType<typeof useregisterAccountUserMutation>;
|
5532
4709
|
export declare type registerAccountUserMutationResult = Apollo.MutationResult<IregisterAccountUserMutation>;
|
5533
4710
|
export declare type registerAccountUserMutationOptions = Apollo.BaseMutationOptions<IregisterAccountUserMutation, IregisterAccountUserMutationVariables>;
|
5534
|
-
export declare const RemoveInvoiceDocument: DocumentNode;
|
5535
|
-
/**
|
5536
|
-
* __useRemoveInvoiceMutation__
|
5537
|
-
*
|
5538
|
-
* To run a mutation, you first call `useRemoveInvoiceMutation` within a React component and pass it any options that fit your needs.
|
5539
|
-
* When your component renders, `useRemoveInvoiceMutation` returns a tuple that includes:
|
5540
|
-
* - A mutate function that you can call at any time to execute the mutation
|
5541
|
-
* - An object with fields that represent the current status of the mutation's execution
|
5542
|
-
*
|
5543
|
-
* @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;
|
5544
|
-
*
|
5545
|
-
* @example
|
5546
|
-
* const [removeInvoiceMutation, { data, loading, error }] = useRemoveInvoiceMutation({
|
5547
|
-
* variables: {
|
5548
|
-
* id: // value for 'id'
|
5549
|
-
* },
|
5550
|
-
* });
|
5551
|
-
*/
|
5552
|
-
export declare function useRemoveInvoiceMutation(baseOptions?: Apollo.MutationHookOptions<IRemoveInvoiceMutation, IRemoveInvoiceMutationVariables>): Apollo.MutationTuple<IRemoveInvoiceMutation, Exact<{
|
5553
|
-
id?: string;
|
5554
|
-
}>>;
|
5555
|
-
export declare type RemoveInvoiceMutationHookResult = ReturnType<typeof useRemoveInvoiceMutation>;
|
5556
|
-
export declare type RemoveInvoiceMutationResult = Apollo.MutationResult<IRemoveInvoiceMutation>;
|
5557
|
-
export declare type RemoveInvoiceMutationOptions = Apollo.BaseMutationOptions<IRemoveInvoiceMutation, IRemoveInvoiceMutationVariables>;
|
5558
|
-
export declare const RemoveOrgClientDocument: DocumentNode;
|
5559
|
-
/**
|
5560
|
-
* __useRemoveOrgClientMutation__
|
5561
|
-
*
|
5562
|
-
* To run a mutation, you first call `useRemoveOrgClientMutation` within a React component and pass it any options that fit your needs.
|
5563
|
-
* When your component renders, `useRemoveOrgClientMutation` returns a tuple that includes:
|
5564
|
-
* - A mutate function that you can call at any time to execute the mutation
|
5565
|
-
* - An object with fields that represent the current status of the mutation's execution
|
5566
|
-
*
|
5567
|
-
* @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;
|
5568
|
-
*
|
5569
|
-
* @example
|
5570
|
-
* const [removeOrgClientMutation, { data, loading, error }] = useRemoveOrgClientMutation({
|
5571
|
-
* variables: {
|
5572
|
-
* clientId: // value for 'clientId'
|
5573
|
-
* },
|
5574
|
-
* });
|
5575
|
-
*/
|
5576
|
-
export declare function useRemoveOrgClientMutation(baseOptions?: Apollo.MutationHookOptions<IRemoveOrgClientMutation, IRemoveOrgClientMutationVariables>): Apollo.MutationTuple<IRemoveOrgClientMutation, Exact<{
|
5577
|
-
clientId: string;
|
5578
|
-
}>>;
|
5579
|
-
export declare type RemoveOrgClientMutationHookResult = ReturnType<typeof useRemoveOrgClientMutation>;
|
5580
|
-
export declare type RemoveOrgClientMutationResult = Apollo.MutationResult<IRemoveOrgClientMutation>;
|
5581
|
-
export declare type RemoveOrgClientMutationOptions = Apollo.BaseMutationOptions<IRemoveOrgClientMutation, IRemoveOrgClientMutationVariables>;
|
5582
4711
|
export declare const RemoveOrgMemberDocument: DocumentNode;
|
5583
4712
|
/**
|
5584
4713
|
* __useRemoveOrgMemberMutation__
|
@@ -5627,30 +4756,6 @@ export declare function useremoveOrganizationMutation(baseOptions?: Apollo.Mutat
|
|
5627
4756
|
export declare type removeOrganizationMutationHookResult = ReturnType<typeof useremoveOrganizationMutation>;
|
5628
4757
|
export declare type removeOrganizationMutationResult = Apollo.MutationResult<IremoveOrganizationMutation>;
|
5629
4758
|
export declare type removeOrganizationMutationOptions = Apollo.BaseMutationOptions<IremoveOrganizationMutation, IremoveOrganizationMutationVariables>;
|
5630
|
-
export declare const RemoveTaskDocument: DocumentNode;
|
5631
|
-
/**
|
5632
|
-
* __useRemoveTaskMutation__
|
5633
|
-
*
|
5634
|
-
* To run a mutation, you first call `useRemoveTaskMutation` within a React component and pass it any options that fit your needs.
|
5635
|
-
* When your component renders, `useRemoveTaskMutation` returns a tuple that includes:
|
5636
|
-
* - A mutate function that you can call at any time to execute the mutation
|
5637
|
-
* - An object with fields that represent the current status of the mutation's execution
|
5638
|
-
*
|
5639
|
-
* @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;
|
5640
|
-
*
|
5641
|
-
* @example
|
5642
|
-
* const [removeTaskMutation, { data, loading, error }] = useRemoveTaskMutation({
|
5643
|
-
* variables: {
|
5644
|
-
* id: // value for 'id'
|
5645
|
-
* },
|
5646
|
-
* });
|
5647
|
-
*/
|
5648
|
-
export declare function useRemoveTaskMutation(baseOptions?: Apollo.MutationHookOptions<IRemoveTaskMutation, IRemoveTaskMutationVariables>): Apollo.MutationTuple<IRemoveTaskMutation, Exact<{
|
5649
|
-
id: string;
|
5650
|
-
}>>;
|
5651
|
-
export declare type RemoveTaskMutationHookResult = ReturnType<typeof useRemoveTaskMutation>;
|
5652
|
-
export declare type RemoveTaskMutationResult = Apollo.MutationResult<IRemoveTaskMutation>;
|
5653
|
-
export declare type RemoveTaskMutationOptions = Apollo.BaseMutationOptions<IRemoveTaskMutation, IRemoveTaskMutationVariables>;
|
5654
4759
|
export declare const removeTeamDocument: DocumentNode;
|
5655
4760
|
/**
|
5656
4761
|
* __useremoveTeamMutation__
|
@@ -5798,30 +4903,6 @@ export declare function useSendUserPasswordResetEmailMutation(baseOptions?: Apol
|
|
5798
4903
|
export declare type SendUserPasswordResetEmailMutationHookResult = ReturnType<typeof useSendUserPasswordResetEmailMutation>;
|
5799
4904
|
export declare type SendUserPasswordResetEmailMutationResult = Apollo.MutationResult<ISendUserPasswordResetEmailMutation>;
|
5800
4905
|
export declare type SendUserPasswordResetEmailMutationOptions = Apollo.BaseMutationOptions<ISendUserPasswordResetEmailMutation, ISendUserPasswordResetEmailMutationVariables>;
|
5801
|
-
export declare const SendInvoiceMailDocument: DocumentNode;
|
5802
|
-
/**
|
5803
|
-
* __useSendInvoiceMailMutation__
|
5804
|
-
*
|
5805
|
-
* To run a mutation, you first call `useSendInvoiceMailMutation` within a React component and pass it any options that fit your needs.
|
5806
|
-
* When your component renders, `useSendInvoiceMailMutation` returns a tuple that includes:
|
5807
|
-
* - A mutate function that you can call at any time to execute the mutation
|
5808
|
-
* - An object with fields that represent the current status of the mutation's execution
|
5809
|
-
*
|
5810
|
-
* @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;
|
5811
|
-
*
|
5812
|
-
* @example
|
5813
|
-
* const [sendInvoiceMailMutation, { data, loading, error }] = useSendInvoiceMailMutation({
|
5814
|
-
* variables: {
|
5815
|
-
* request: // value for 'request'
|
5816
|
-
* },
|
5817
|
-
* });
|
5818
|
-
*/
|
5819
|
-
export declare function useSendInvoiceMailMutation(baseOptions?: Apollo.MutationHookOptions<ISendInvoiceMailMutation, ISendInvoiceMailMutationVariables>): Apollo.MutationTuple<ISendInvoiceMailMutation, Exact<{
|
5820
|
-
request: IInvoiceMailRequest;
|
5821
|
-
}>>;
|
5822
|
-
export declare type SendInvoiceMailMutationHookResult = ReturnType<typeof useSendInvoiceMailMutation>;
|
5823
|
-
export declare type SendInvoiceMailMutationResult = Apollo.MutationResult<ISendInvoiceMailMutation>;
|
5824
|
-
export declare type SendInvoiceMailMutationOptions = Apollo.BaseMutationOptions<ISendInvoiceMailMutation, ISendInvoiceMailMutationVariables>;
|
5825
4906
|
export declare const sendOrganizationInvitationDocument: DocumentNode;
|
5826
4907
|
/**
|
5827
4908
|
* __usesendOrganizationInvitationMutation__
|
@@ -5846,56 +4927,6 @@ export declare function usesendOrganizationInvitationMutation(baseOptions?: Apol
|
|
5846
4927
|
export declare type sendOrganizationInvitationMutationHookResult = ReturnType<typeof usesendOrganizationInvitationMutation>;
|
5847
4928
|
export declare type sendOrganizationInvitationMutationResult = Apollo.MutationResult<IsendOrganizationInvitationMutation>;
|
5848
4929
|
export declare type sendOrganizationInvitationMutationOptions = Apollo.BaseMutationOptions<IsendOrganizationInvitationMutation, IsendOrganizationInvitationMutationVariables>;
|
5849
|
-
export declare const UpdateInvoiceDocument: DocumentNode;
|
5850
|
-
/**
|
5851
|
-
* __useUpdateInvoiceMutation__
|
5852
|
-
*
|
5853
|
-
* To run a mutation, you first call `useUpdateInvoiceMutation` within a React component and pass it any options that fit your needs.
|
5854
|
-
* When your component renders, `useUpdateInvoiceMutation` returns a tuple that includes:
|
5855
|
-
* - A mutate function that you can call at any time to execute the mutation
|
5856
|
-
* - An object with fields that represent the current status of the mutation's execution
|
5857
|
-
*
|
5858
|
-
* @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;
|
5859
|
-
*
|
5860
|
-
* @example
|
5861
|
-
* const [updateInvoiceMutation, { data, loading, error }] = useUpdateInvoiceMutation({
|
5862
|
-
* variables: {
|
5863
|
-
* id: // value for 'id'
|
5864
|
-
* invoice: // value for 'invoice'
|
5865
|
-
* },
|
5866
|
-
* });
|
5867
|
-
*/
|
5868
|
-
export declare function useUpdateInvoiceMutation(baseOptions?: Apollo.MutationHookOptions<IUpdateInvoiceMutation, IUpdateInvoiceMutationVariables>): Apollo.MutationTuple<IUpdateInvoiceMutation, Exact<{
|
5869
|
-
id?: string;
|
5870
|
-
invoice?: IInvoiceUpdateRequest;
|
5871
|
-
}>>;
|
5872
|
-
export declare type UpdateInvoiceMutationHookResult = ReturnType<typeof useUpdateInvoiceMutation>;
|
5873
|
-
export declare type UpdateInvoiceMutationResult = Apollo.MutationResult<IUpdateInvoiceMutation>;
|
5874
|
-
export declare type UpdateInvoiceMutationOptions = Apollo.BaseMutationOptions<IUpdateInvoiceMutation, IUpdateInvoiceMutationVariables>;
|
5875
|
-
export declare const UpdateOrgClientDocument: DocumentNode;
|
5876
|
-
/**
|
5877
|
-
* __useUpdateOrgClientMutation__
|
5878
|
-
*
|
5879
|
-
* To run a mutation, you first call `useUpdateOrgClientMutation` within a React component and pass it any options that fit your needs.
|
5880
|
-
* When your component renders, `useUpdateOrgClientMutation` returns a tuple that includes:
|
5881
|
-
* - A mutate function that you can call at any time to execute the mutation
|
5882
|
-
* - An object with fields that represent the current status of the mutation's execution
|
5883
|
-
*
|
5884
|
-
* @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;
|
5885
|
-
*
|
5886
|
-
* @example
|
5887
|
-
* const [updateOrgClientMutation, { data, loading, error }] = useUpdateOrgClientMutation({
|
5888
|
-
* variables: {
|
5889
|
-
* updateRequest: // value for 'updateRequest'
|
5890
|
-
* },
|
5891
|
-
* });
|
5892
|
-
*/
|
5893
|
-
export declare function useUpdateOrgClientMutation(baseOptions?: Apollo.MutationHookOptions<IUpdateOrgClientMutation, IUpdateOrgClientMutationVariables>): Apollo.MutationTuple<IUpdateOrgClientMutation, Exact<{
|
5894
|
-
updateRequest?: IClientUpdateRequest;
|
5895
|
-
}>>;
|
5896
|
-
export declare type UpdateOrgClientMutationHookResult = ReturnType<typeof useUpdateOrgClientMutation>;
|
5897
|
-
export declare type UpdateOrgClientMutationResult = Apollo.MutationResult<IUpdateOrgClientMutation>;
|
5898
|
-
export declare type UpdateOrgClientMutationOptions = Apollo.BaseMutationOptions<IUpdateOrgClientMutation, IUpdateOrgClientMutationVariables>;
|
5899
4930
|
export declare const updateOrgMemberTeamsDocument: DocumentNode;
|
5900
4931
|
/**
|
5901
4932
|
* __useupdateOrgMemberTeamsMutation__
|
@@ -5926,32 +4957,6 @@ export declare function useupdateOrgMemberTeamsMutation(baseOptions?: Apollo.Mut
|
|
5926
4957
|
export declare type updateOrgMemberTeamsMutationHookResult = ReturnType<typeof useupdateOrgMemberTeamsMutation>;
|
5927
4958
|
export declare type updateOrgMemberTeamsMutationResult = Apollo.MutationResult<IupdateOrgMemberTeamsMutation>;
|
5928
4959
|
export declare type updateOrgMemberTeamsMutationOptions = Apollo.BaseMutationOptions<IupdateOrgMemberTeamsMutation, IupdateOrgMemberTeamsMutationVariables>;
|
5929
|
-
export declare const UpdateOrgProjectDocument: DocumentNode;
|
5930
|
-
/**
|
5931
|
-
* __useUpdateOrgProjectMutation__
|
5932
|
-
*
|
5933
|
-
* To run a mutation, you first call `useUpdateOrgProjectMutation` within a React component and pass it any options that fit your needs.
|
5934
|
-
* When your component renders, `useUpdateOrgProjectMutation` returns a tuple that includes:
|
5935
|
-
* - A mutate function that you can call at any time to execute the mutation
|
5936
|
-
* - An object with fields that represent the current status of the mutation's execution
|
5937
|
-
*
|
5938
|
-
* @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;
|
5939
|
-
*
|
5940
|
-
* @example
|
5941
|
-
* const [updateOrgProjectMutation, { data, loading, error }] = useUpdateOrgProjectMutation({
|
5942
|
-
* variables: {
|
5943
|
-
* where: // value for 'where'
|
5944
|
-
* project: // value for 'project'
|
5945
|
-
* },
|
5946
|
-
* });
|
5947
|
-
*/
|
5948
|
-
export declare function useUpdateOrgProjectMutation(baseOptions?: Apollo.MutationHookOptions<IUpdateOrgProjectMutation, IUpdateOrgProjectMutationVariables>): Apollo.MutationTuple<IUpdateOrgProjectMutation, Exact<{
|
5949
|
-
where: IProjectWhereInput;
|
5950
|
-
project?: IUpdateProject_Input;
|
5951
|
-
}>>;
|
5952
|
-
export declare type UpdateOrgProjectMutationHookResult = ReturnType<typeof useUpdateOrgProjectMutation>;
|
5953
|
-
export declare type UpdateOrgProjectMutationResult = Apollo.MutationResult<IUpdateOrgProjectMutation>;
|
5954
|
-
export declare type UpdateOrgProjectMutationOptions = Apollo.BaseMutationOptions<IUpdateOrgProjectMutation, IUpdateOrgProjectMutationVariables>;
|
5955
4960
|
export declare const updateOrganizationDocument: DocumentNode;
|
5956
4961
|
/**
|
5957
4962
|
* __useupdateOrganizationMutation__
|
@@ -5976,58 +4981,6 @@ export declare function useupdateOrganizationMutation(baseOptions?: Apollo.Mutat
|
|
5976
4981
|
export declare type updateOrganizationMutationHookResult = ReturnType<typeof useupdateOrganizationMutation>;
|
5977
4982
|
export declare type updateOrganizationMutationResult = Apollo.MutationResult<IupdateOrganizationMutation>;
|
5978
4983
|
export declare type updateOrganizationMutationOptions = Apollo.BaseMutationOptions<IupdateOrganizationMutation, IupdateOrganizationMutationVariables>;
|
5979
|
-
export declare const UpdateProjectStatusDocument: DocumentNode;
|
5980
|
-
/**
|
5981
|
-
* __useUpdateProjectStatusMutation__
|
5982
|
-
*
|
5983
|
-
* To run a mutation, you first call `useUpdateProjectStatusMutation` within a React component and pass it any options that fit your needs.
|
5984
|
-
* When your component renders, `useUpdateProjectStatusMutation` returns a tuple that includes:
|
5985
|
-
* - A mutate function that you can call at any time to execute the mutation
|
5986
|
-
* - An object with fields that represent the current status of the mutation's execution
|
5987
|
-
*
|
5988
|
-
* @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;
|
5989
|
-
*
|
5990
|
-
* @example
|
5991
|
-
* const [updateProjectStatusMutation, { data, loading, error }] = useUpdateProjectStatusMutation({
|
5992
|
-
* variables: {
|
5993
|
-
* id: // value for 'id'
|
5994
|
-
* status: // value for 'status'
|
5995
|
-
* },
|
5996
|
-
* });
|
5997
|
-
*/
|
5998
|
-
export declare function useUpdateProjectStatusMutation(baseOptions?: Apollo.MutationHookOptions<IUpdateProjectStatusMutation, IUpdateProjectStatusMutationVariables>): Apollo.MutationTuple<IUpdateProjectStatusMutation, Exact<{
|
5999
|
-
id: string;
|
6000
|
-
status?: string;
|
6001
|
-
}>>;
|
6002
|
-
export declare type UpdateProjectStatusMutationHookResult = ReturnType<typeof useUpdateProjectStatusMutation>;
|
6003
|
-
export declare type UpdateProjectStatusMutationResult = Apollo.MutationResult<IUpdateProjectStatusMutation>;
|
6004
|
-
export declare type UpdateProjectStatusMutationOptions = Apollo.BaseMutationOptions<IUpdateProjectStatusMutation, IUpdateProjectStatusMutationVariables>;
|
6005
|
-
export declare const UpdateTaskDocument: DocumentNode;
|
6006
|
-
/**
|
6007
|
-
* __useUpdateTaskMutation__
|
6008
|
-
*
|
6009
|
-
* To run a mutation, you first call `useUpdateTaskMutation` within a React component and pass it any options that fit your needs.
|
6010
|
-
* When your component renders, `useUpdateTaskMutation` returns a tuple that includes:
|
6011
|
-
* - A mutate function that you can call at any time to execute the mutation
|
6012
|
-
* - An object with fields that represent the current status of the mutation's execution
|
6013
|
-
*
|
6014
|
-
* @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;
|
6015
|
-
*
|
6016
|
-
* @example
|
6017
|
-
* const [updateTaskMutation, { data, loading, error }] = useUpdateTaskMutation({
|
6018
|
-
* variables: {
|
6019
|
-
* id: // value for 'id'
|
6020
|
-
* request: // value for 'request'
|
6021
|
-
* },
|
6022
|
-
* });
|
6023
|
-
*/
|
6024
|
-
export declare function useUpdateTaskMutation(baseOptions?: Apollo.MutationHookOptions<IUpdateTaskMutation, IUpdateTaskMutationVariables>): Apollo.MutationTuple<IUpdateTaskMutation, Exact<{
|
6025
|
-
id: string;
|
6026
|
-
request?: ITaskRequest;
|
6027
|
-
}>>;
|
6028
|
-
export declare type UpdateTaskMutationHookResult = ReturnType<typeof useUpdateTaskMutation>;
|
6029
|
-
export declare type UpdateTaskMutationResult = Apollo.MutationResult<IUpdateTaskMutation>;
|
6030
|
-
export declare type UpdateTaskMutationOptions = Apollo.BaseMutationOptions<IUpdateTaskMutation, IUpdateTaskMutationVariables>;
|
6031
4984
|
export declare const updateTeamConfigurationDocument: DocumentNode;
|
6032
4985
|
/**
|
6033
4986
|
* __useupdateTeamConfigurationMutation__
|
@@ -6084,32 +5037,6 @@ export declare function useupdateUserAccountMutation(baseOptions?: Apollo.Mutati
|
|
6084
5037
|
export declare type updateUserAccountMutationHookResult = ReturnType<typeof useupdateUserAccountMutation>;
|
6085
5038
|
export declare type updateUserAccountMutationResult = Apollo.MutationResult<IupdateUserAccountMutation>;
|
6086
5039
|
export declare type updateUserAccountMutationOptions = Apollo.BaseMutationOptions<IupdateUserAccountMutation, IupdateUserAccountMutationVariables>;
|
6087
|
-
export declare const UpsertProjectThroughIntegrationDocument: DocumentNode;
|
6088
|
-
/**
|
6089
|
-
* __useUpsertProjectThroughIntegrationMutation__
|
6090
|
-
*
|
6091
|
-
* To run a mutation, you first call `useUpsertProjectThroughIntegrationMutation` within a React component and pass it any options that fit your needs.
|
6092
|
-
* When your component renders, `useUpsertProjectThroughIntegrationMutation` returns a tuple that includes:
|
6093
|
-
* - A mutate function that you can call at any time to execute the mutation
|
6094
|
-
* - An object with fields that represent the current status of the mutation's execution
|
6095
|
-
*
|
6096
|
-
* @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;
|
6097
|
-
*
|
6098
|
-
* @example
|
6099
|
-
* const [upsertProjectThroughIntegrationMutation, { data, loading, error }] = useUpsertProjectThroughIntegrationMutation({
|
6100
|
-
* variables: {
|
6101
|
-
* where: // value for 'where'
|
6102
|
-
* project: // value for 'project'
|
6103
|
-
* },
|
6104
|
-
* });
|
6105
|
-
*/
|
6106
|
-
export declare function useUpsertProjectThroughIntegrationMutation(baseOptions?: Apollo.MutationHookOptions<IUpsertProjectThroughIntegrationMutation, IUpsertProjectThroughIntegrationMutationVariables>): Apollo.MutationTuple<IUpsertProjectThroughIntegrationMutation, Exact<{
|
6107
|
-
where: IProjectWhereInput;
|
6108
|
-
project?: IUpdateProject_Input;
|
6109
|
-
}>>;
|
6110
|
-
export declare type UpsertProjectThroughIntegrationMutationHookResult = ReturnType<typeof useUpsertProjectThroughIntegrationMutation>;
|
6111
|
-
export declare type UpsertProjectThroughIntegrationMutationResult = Apollo.MutationResult<IUpsertProjectThroughIntegrationMutation>;
|
6112
|
-
export declare type UpsertProjectThroughIntegrationMutationOptions = Apollo.BaseMutationOptions<IUpsertProjectThroughIntegrationMutation, IUpsertProjectThroughIntegrationMutationVariables>;
|
6113
5040
|
export declare const VerifyUserEmailVerificationTokenDocument: DocumentNode;
|
6114
5041
|
/**
|
6115
5042
|
* __useVerifyUserEmailVerificationTokenMutation__
|
@@ -6237,158 +5164,6 @@ export declare function useGetAllCountriesLazyQuery(baseOptions?: Apollo.LazyQue
|
|
6237
5164
|
export declare type GetAllCountriesQueryHookResult = ReturnType<typeof useGetAllCountriesQuery>;
|
6238
5165
|
export declare type GetAllCountriesLazyQueryHookResult = ReturnType<typeof useGetAllCountriesLazyQuery>;
|
6239
5166
|
export declare type GetAllCountriesQueryResult = Apollo.QueryResult<IGetAllCountriesQuery, IGetAllCountriesQueryVariables>;
|
6240
|
-
export declare const GetAsanaConnectionStateDocument: DocumentNode;
|
6241
|
-
/**
|
6242
|
-
* __useGetAsanaConnectionStateQuery__
|
6243
|
-
*
|
6244
|
-
* To run a query within a React component, call `useGetAsanaConnectionStateQuery` and pass it any options that fit your needs.
|
6245
|
-
* When your component renders, `useGetAsanaConnectionStateQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
6246
|
-
* you can use to render your UI.
|
6247
|
-
*
|
6248
|
-
* @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;
|
6249
|
-
*
|
6250
|
-
* @example
|
6251
|
-
* const { data, loading, error } = useGetAsanaConnectionStateQuery({
|
6252
|
-
* variables: {
|
6253
|
-
* },
|
6254
|
-
* });
|
6255
|
-
*/
|
6256
|
-
export declare function useGetAsanaConnectionStateQuery(baseOptions?: Apollo.QueryHookOptions<IGetAsanaConnectionStateQuery, IGetAsanaConnectionStateQueryVariables>): Apollo.QueryResult<IGetAsanaConnectionStateQuery, Exact<{
|
6257
|
-
[key: string]: never;
|
6258
|
-
}>>;
|
6259
|
-
export declare function useGetAsanaConnectionStateLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetAsanaConnectionStateQuery, IGetAsanaConnectionStateQueryVariables>): Apollo.QueryTuple<IGetAsanaConnectionStateQuery, Exact<{
|
6260
|
-
[key: string]: never;
|
6261
|
-
}>>;
|
6262
|
-
export declare type GetAsanaConnectionStateQueryHookResult = ReturnType<typeof useGetAsanaConnectionStateQuery>;
|
6263
|
-
export declare type GetAsanaConnectionStateLazyQueryHookResult = ReturnType<typeof useGetAsanaConnectionStateLazyQuery>;
|
6264
|
-
export declare type GetAsanaConnectionStateQueryResult = Apollo.QueryResult<IGetAsanaConnectionStateQuery, IGetAsanaConnectionStateQueryVariables>;
|
6265
|
-
export declare const GetAsanaWorkspaceProjectsDocument: DocumentNode;
|
6266
|
-
/**
|
6267
|
-
* __useGetAsanaWorkspaceProjectsQuery__
|
6268
|
-
*
|
6269
|
-
* To run a query within a React component, call `useGetAsanaWorkspaceProjectsQuery` and pass it any options that fit your needs.
|
6270
|
-
* When your component renders, `useGetAsanaWorkspaceProjectsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
6271
|
-
* you can use to render your UI.
|
6272
|
-
*
|
6273
|
-
* @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;
|
6274
|
-
*
|
6275
|
-
* @example
|
6276
|
-
* const { data, loading, error } = useGetAsanaWorkspaceProjectsQuery({
|
6277
|
-
* variables: {
|
6278
|
-
* workspaceId: // value for 'workspaceId'
|
6279
|
-
* },
|
6280
|
-
* });
|
6281
|
-
*/
|
6282
|
-
export declare function useGetAsanaWorkspaceProjectsQuery(baseOptions: Apollo.QueryHookOptions<IGetAsanaWorkspaceProjectsQuery, IGetAsanaWorkspaceProjectsQueryVariables>): Apollo.QueryResult<IGetAsanaWorkspaceProjectsQuery, Exact<{
|
6283
|
-
workspaceId: string;
|
6284
|
-
}>>;
|
6285
|
-
export declare function useGetAsanaWorkspaceProjectsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetAsanaWorkspaceProjectsQuery, IGetAsanaWorkspaceProjectsQueryVariables>): Apollo.QueryTuple<IGetAsanaWorkspaceProjectsQuery, Exact<{
|
6286
|
-
workspaceId: string;
|
6287
|
-
}>>;
|
6288
|
-
export declare type GetAsanaWorkspaceProjectsQueryHookResult = ReturnType<typeof useGetAsanaWorkspaceProjectsQuery>;
|
6289
|
-
export declare type GetAsanaWorkspaceProjectsLazyQueryHookResult = ReturnType<typeof useGetAsanaWorkspaceProjectsLazyQuery>;
|
6290
|
-
export declare type GetAsanaWorkspaceProjectsQueryResult = Apollo.QueryResult<IGetAsanaWorkspaceProjectsQuery, IGetAsanaWorkspaceProjectsQueryVariables>;
|
6291
|
-
export declare const GetAsanaWorkspacesDocument: DocumentNode;
|
6292
|
-
/**
|
6293
|
-
* __useGetAsanaWorkspacesQuery__
|
6294
|
-
*
|
6295
|
-
* To run a query within a React component, call `useGetAsanaWorkspacesQuery` and pass it any options that fit your needs.
|
6296
|
-
* When your component renders, `useGetAsanaWorkspacesQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
6297
|
-
* you can use to render your UI.
|
6298
|
-
*
|
6299
|
-
* @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;
|
6300
|
-
*
|
6301
|
-
* @example
|
6302
|
-
* const { data, loading, error } = useGetAsanaWorkspacesQuery({
|
6303
|
-
* variables: {
|
6304
|
-
* },
|
6305
|
-
* });
|
6306
|
-
*/
|
6307
|
-
export declare function useGetAsanaWorkspacesQuery(baseOptions?: Apollo.QueryHookOptions<IGetAsanaWorkspacesQuery, IGetAsanaWorkspacesQueryVariables>): Apollo.QueryResult<IGetAsanaWorkspacesQuery, Exact<{
|
6308
|
-
[key: string]: never;
|
6309
|
-
}>>;
|
6310
|
-
export declare function useGetAsanaWorkspacesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetAsanaWorkspacesQuery, IGetAsanaWorkspacesQueryVariables>): Apollo.QueryTuple<IGetAsanaWorkspacesQuery, Exact<{
|
6311
|
-
[key: string]: never;
|
6312
|
-
}>>;
|
6313
|
-
export declare type GetAsanaWorkspacesQueryHookResult = ReturnType<typeof useGetAsanaWorkspacesQuery>;
|
6314
|
-
export declare type GetAsanaWorkspacesLazyQueryHookResult = ReturnType<typeof useGetAsanaWorkspacesLazyQuery>;
|
6315
|
-
export declare type GetAsanaWorkspacesQueryResult = Apollo.QueryResult<IGetAsanaWorkspacesQuery, IGetAsanaWorkspacesQueryVariables>;
|
6316
|
-
export declare const GetDefaultInvoiceNumberDocument: DocumentNode;
|
6317
|
-
/**
|
6318
|
-
* __useGetDefaultInvoiceNumberQuery__
|
6319
|
-
*
|
6320
|
-
* To run a query within a React component, call `useGetDefaultInvoiceNumberQuery` and pass it any options that fit your needs.
|
6321
|
-
* When your component renders, `useGetDefaultInvoiceNumberQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
6322
|
-
* you can use to render your UI.
|
6323
|
-
*
|
6324
|
-
* @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;
|
6325
|
-
*
|
6326
|
-
* @example
|
6327
|
-
* const { data, loading, error } = useGetDefaultInvoiceNumberQuery({
|
6328
|
-
* variables: {
|
6329
|
-
* },
|
6330
|
-
* });
|
6331
|
-
*/
|
6332
|
-
export declare function useGetDefaultInvoiceNumberQuery(baseOptions?: Apollo.QueryHookOptions<IGetDefaultInvoiceNumberQuery, IGetDefaultInvoiceNumberQueryVariables>): Apollo.QueryResult<IGetDefaultInvoiceNumberQuery, Exact<{
|
6333
|
-
[key: string]: never;
|
6334
|
-
}>>;
|
6335
|
-
export declare function useGetDefaultInvoiceNumberLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetDefaultInvoiceNumberQuery, IGetDefaultInvoiceNumberQueryVariables>): Apollo.QueryTuple<IGetDefaultInvoiceNumberQuery, Exact<{
|
6336
|
-
[key: string]: never;
|
6337
|
-
}>>;
|
6338
|
-
export declare type GetDefaultInvoiceNumberQueryHookResult = ReturnType<typeof useGetDefaultInvoiceNumberQuery>;
|
6339
|
-
export declare type GetDefaultInvoiceNumberLazyQueryHookResult = ReturnType<typeof useGetDefaultInvoiceNumberLazyQuery>;
|
6340
|
-
export declare type GetDefaultInvoiceNumberQueryResult = Apollo.QueryResult<IGetDefaultInvoiceNumberQuery, IGetDefaultInvoiceNumberQueryVariables>;
|
6341
|
-
export declare const GetFilteredProjectsDocument: DocumentNode;
|
6342
|
-
/**
|
6343
|
-
* __useGetFilteredProjectsQuery__
|
6344
|
-
*
|
6345
|
-
* To run a query within a React component, call `useGetFilteredProjectsQuery` and pass it any options that fit your needs.
|
6346
|
-
* When your component renders, `useGetFilteredProjectsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
6347
|
-
* you can use to render your UI.
|
6348
|
-
*
|
6349
|
-
* @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;
|
6350
|
-
*
|
6351
|
-
* @example
|
6352
|
-
* const { data, loading, error } = useGetFilteredProjectsQuery({
|
6353
|
-
* variables: {
|
6354
|
-
* filter: // value for 'filter'
|
6355
|
-
* },
|
6356
|
-
* });
|
6357
|
-
*/
|
6358
|
-
export declare function useGetFilteredProjectsQuery(baseOptions: Apollo.QueryHookOptions<IGetFilteredProjectsQuery, IGetFilteredProjectsQueryVariables>): Apollo.QueryResult<IGetFilteredProjectsQuery, Exact<{
|
6359
|
-
filter: IProjectWhereInput;
|
6360
|
-
}>>;
|
6361
|
-
export declare function useGetFilteredProjectsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetFilteredProjectsQuery, IGetFilteredProjectsQueryVariables>): Apollo.QueryTuple<IGetFilteredProjectsQuery, Exact<{
|
6362
|
-
filter: IProjectWhereInput;
|
6363
|
-
}>>;
|
6364
|
-
export declare type GetFilteredProjectsQueryHookResult = ReturnType<typeof useGetFilteredProjectsQuery>;
|
6365
|
-
export declare type GetFilteredProjectsLazyQueryHookResult = ReturnType<typeof useGetFilteredProjectsLazyQuery>;
|
6366
|
-
export declare type GetFilteredProjectsQueryResult = Apollo.QueryResult<IGetFilteredProjectsQuery, IGetFilteredProjectsQueryVariables>;
|
6367
|
-
export declare const GetInvoicesDocument: DocumentNode;
|
6368
|
-
/**
|
6369
|
-
* __useGetInvoicesQuery__
|
6370
|
-
*
|
6371
|
-
* To run a query within a React component, call `useGetInvoicesQuery` and pass it any options that fit your needs.
|
6372
|
-
* When your component renders, `useGetInvoicesQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
6373
|
-
* you can use to render your UI.
|
6374
|
-
*
|
6375
|
-
* @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;
|
6376
|
-
*
|
6377
|
-
* @example
|
6378
|
-
* const { data, loading, error } = useGetInvoicesQuery({
|
6379
|
-
* variables: {
|
6380
|
-
* },
|
6381
|
-
* });
|
6382
|
-
*/
|
6383
|
-
export declare function useGetInvoicesQuery(baseOptions?: Apollo.QueryHookOptions<IGetInvoicesQuery, IGetInvoicesQueryVariables>): Apollo.QueryResult<IGetInvoicesQuery, Exact<{
|
6384
|
-
[key: string]: never;
|
6385
|
-
}>>;
|
6386
|
-
export declare function useGetInvoicesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetInvoicesQuery, IGetInvoicesQueryVariables>): Apollo.QueryTuple<IGetInvoicesQuery, Exact<{
|
6387
|
-
[key: string]: never;
|
6388
|
-
}>>;
|
6389
|
-
export declare type GetInvoicesQueryHookResult = ReturnType<typeof useGetInvoicesQuery>;
|
6390
|
-
export declare type GetInvoicesLazyQueryHookResult = ReturnType<typeof useGetInvoicesLazyQuery>;
|
6391
|
-
export declare type GetInvoicesQueryResult = Apollo.QueryResult<IGetInvoicesQuery, IGetInvoicesQueryVariables>;
|
6392
5167
|
export declare const GetManageableOrganizationsDocument: DocumentNode;
|
6393
5168
|
/**
|
6394
5169
|
* __useGetManageableOrganizationsQuery__
|
@@ -6517,31 +5292,6 @@ export declare function useGetOrgUserLazyQuery(baseOptions?: Apollo.LazyQueryHoo
|
|
6517
5292
|
export declare type GetOrgUserQueryHookResult = ReturnType<typeof useGetOrgUserQuery>;
|
6518
5293
|
export declare type GetOrgUserLazyQueryHookResult = ReturnType<typeof useGetOrgUserLazyQuery>;
|
6519
5294
|
export declare type GetOrgUserQueryResult = Apollo.QueryResult<IGetOrgUserQuery, IGetOrgUserQueryVariables>;
|
6520
|
-
export declare const GetOrganizationClientsDocument: DocumentNode;
|
6521
|
-
/**
|
6522
|
-
* __useGetOrganizationClientsQuery__
|
6523
|
-
*
|
6524
|
-
* To run a query within a React component, call `useGetOrganizationClientsQuery` and pass it any options that fit your needs.
|
6525
|
-
* When your component renders, `useGetOrganizationClientsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
6526
|
-
* you can use to render your UI.
|
6527
|
-
*
|
6528
|
-
* @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;
|
6529
|
-
*
|
6530
|
-
* @example
|
6531
|
-
* const { data, loading, error } = useGetOrganizationClientsQuery({
|
6532
|
-
* variables: {
|
6533
|
-
* },
|
6534
|
-
* });
|
6535
|
-
*/
|
6536
|
-
export declare function useGetOrganizationClientsQuery(baseOptions?: Apollo.QueryHookOptions<IGetOrganizationClientsQuery, IGetOrganizationClientsQueryVariables>): Apollo.QueryResult<IGetOrganizationClientsQuery, Exact<{
|
6537
|
-
[key: string]: never;
|
6538
|
-
}>>;
|
6539
|
-
export declare function useGetOrganizationClientsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrganizationClientsQuery, IGetOrganizationClientsQueryVariables>): Apollo.QueryTuple<IGetOrganizationClientsQuery, Exact<{
|
6540
|
-
[key: string]: never;
|
6541
|
-
}>>;
|
6542
|
-
export declare type GetOrganizationClientsQueryHookResult = ReturnType<typeof useGetOrganizationClientsQuery>;
|
6543
|
-
export declare type GetOrganizationClientsLazyQueryHookResult = ReturnType<typeof useGetOrganizationClientsLazyQuery>;
|
6544
|
-
export declare type GetOrganizationClientsQueryResult = Apollo.QueryResult<IGetOrganizationClientsQuery, IGetOrganizationClientsQueryVariables>;
|
6545
5295
|
export declare const GetOrganizationMembersWithNameDocument: DocumentNode;
|
6546
5296
|
/**
|
6547
5297
|
* __useGetOrganizationMembersWithNameQuery__
|
@@ -6594,56 +5344,6 @@ export declare function usegetOrganizationTeamsLazyQuery(baseOptions?: Apollo.La
|
|
6594
5344
|
export declare type getOrganizationTeamsQueryHookResult = ReturnType<typeof usegetOrganizationTeamsQuery>;
|
6595
5345
|
export declare type getOrganizationTeamsLazyQueryHookResult = ReturnType<typeof usegetOrganizationTeamsLazyQuery>;
|
6596
5346
|
export declare type getOrganizationTeamsQueryResult = Apollo.QueryResult<IgetOrganizationTeamsQuery, IgetOrganizationTeamsQueryVariables>;
|
6597
|
-
export declare const GetProjectsDocument: DocumentNode;
|
6598
|
-
/**
|
6599
|
-
* __useGetProjectsQuery__
|
6600
|
-
*
|
6601
|
-
* To run a query within a React component, call `useGetProjectsQuery` and pass it any options that fit your needs.
|
6602
|
-
* When your component renders, `useGetProjectsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
6603
|
-
* you can use to render your UI.
|
6604
|
-
*
|
6605
|
-
* @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;
|
6606
|
-
*
|
6607
|
-
* @example
|
6608
|
-
* const { data, loading, error } = useGetProjectsQuery({
|
6609
|
-
* variables: {
|
6610
|
-
* },
|
6611
|
-
* });
|
6612
|
-
*/
|
6613
|
-
export declare function useGetProjectsQuery(baseOptions?: Apollo.QueryHookOptions<IGetProjectsQuery, IGetProjectsQueryVariables>): Apollo.QueryResult<IGetProjectsQuery, Exact<{
|
6614
|
-
[key: string]: never;
|
6615
|
-
}>>;
|
6616
|
-
export declare function useGetProjectsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetProjectsQuery, IGetProjectsQueryVariables>): Apollo.QueryTuple<IGetProjectsQuery, Exact<{
|
6617
|
-
[key: string]: never;
|
6618
|
-
}>>;
|
6619
|
-
export declare type GetProjectsQueryHookResult = ReturnType<typeof useGetProjectsQuery>;
|
6620
|
-
export declare type GetProjectsLazyQueryHookResult = ReturnType<typeof useGetProjectsLazyQuery>;
|
6621
|
-
export declare type GetProjectsQueryResult = Apollo.QueryResult<IGetProjectsQuery, IGetProjectsQueryVariables>;
|
6622
|
-
export declare const GetTasksDocument: DocumentNode;
|
6623
|
-
/**
|
6624
|
-
* __useGetTasksQuery__
|
6625
|
-
*
|
6626
|
-
* To run a query within a React component, call `useGetTasksQuery` and pass it any options that fit your needs.
|
6627
|
-
* When your component renders, `useGetTasksQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
6628
|
-
* you can use to render your UI.
|
6629
|
-
*
|
6630
|
-
* @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;
|
6631
|
-
*
|
6632
|
-
* @example
|
6633
|
-
* const { data, loading, error } = useGetTasksQuery({
|
6634
|
-
* variables: {
|
6635
|
-
* },
|
6636
|
-
* });
|
6637
|
-
*/
|
6638
|
-
export declare function useGetTasksQuery(baseOptions?: Apollo.QueryHookOptions<IGetTasksQuery, IGetTasksQueryVariables>): Apollo.QueryResult<IGetTasksQuery, Exact<{
|
6639
|
-
[key: string]: never;
|
6640
|
-
}>>;
|
6641
|
-
export declare function useGetTasksLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetTasksQuery, IGetTasksQueryVariables>): Apollo.QueryTuple<IGetTasksQuery, Exact<{
|
6642
|
-
[key: string]: never;
|
6643
|
-
}>>;
|
6644
|
-
export declare type GetTasksQueryHookResult = ReturnType<typeof useGetTasksQuery>;
|
6645
|
-
export declare type GetTasksLazyQueryHookResult = ReturnType<typeof useGetTasksLazyQuery>;
|
6646
|
-
export declare type GetTasksQueryResult = Apollo.QueryResult<IGetTasksQuery, IGetTasksQueryVariables>;
|
6647
5347
|
export declare const getTeamDocument: DocumentNode;
|
6648
5348
|
/**
|
6649
5349
|
* __usegetTeamQuery__
|
@@ -8702,8 +7402,6 @@ export declare type IResolversTypes = {
|
|
8702
7402
|
ActivityRecord: ResolverTypeWrapper<IActivityRecord>;
|
8703
7403
|
ActivityRecordInput: IActivityRecordInput;
|
8704
7404
|
ActivityServiceCommands: IActivityServiceCommands;
|
8705
|
-
AddressType: ResolverTypeWrapper<IAddressType>;
|
8706
|
-
AddressType_Input: IAddressType_Input;
|
8707
7405
|
AdminIdeSettings: ResolverTypeWrapper<IAdminIdeSettings>;
|
8708
7406
|
AnyObject: ResolverTypeWrapper<Scalars['AnyObject']>;
|
8709
7407
|
ApplicationBillingPlanPolicy: IApplicationBillingPlanPolicy;
|
@@ -8711,11 +7409,6 @@ export declare type IResolversTypes = {
|
|
8711
7409
|
ApplicationRolePermission: ResolverTypeWrapper<IApplicationRolePermission>;
|
8712
7410
|
ApplicationRoles: IApplicationRoles;
|
8713
7411
|
ApplicationSettings: ResolverTypeWrapper<IApplicationSettings>;
|
8714
|
-
AsanaConnection: ResolverTypeWrapper<IAsanaConnection>;
|
8715
|
-
AsanaConnectionState: ResolverTypeWrapper<IAsanaConnectionState>;
|
8716
|
-
AsanaProjects: ResolverTypeWrapper<IAsanaProjects>;
|
8717
|
-
AsanaUser: ResolverTypeWrapper<IAsanaUser>;
|
8718
|
-
AsanaWorkspaces: ResolverTypeWrapper<IAsanaWorkspaces>;
|
8719
7412
|
Auth0Identity: ResolverTypeWrapper<IAuth0Identity>;
|
8720
7413
|
Auth0IdentityProfileData: ResolverTypeWrapper<IAuth0IdentityProfileData>;
|
8721
7414
|
AuthErrorCodes: IAuthErrorCodes;
|
@@ -8725,16 +7418,9 @@ export declare type IResolversTypes = {
|
|
8725
7418
|
CacheControlScope: ICacheControlScope;
|
8726
7419
|
CityInput: ICityInput;
|
8727
7420
|
CityUpdateInput: ICityUpdateInput;
|
8728
|
-
Client: ResolverTypeWrapper<IClient>;
|
8729
|
-
ClientAddRequest: IClientAddRequest;
|
8730
7421
|
ClientCacheTypeNames: IClientCacheTypeNames;
|
8731
7422
|
ClientContainerService: IClientContainerService;
|
8732
|
-
ClientCreatedEvent: ResolverTypeWrapper<IClientCreatedEvent>;
|
8733
|
-
ClientDeletedEvent: ResolverTypeWrapper<IClientDeletedEvent>;
|
8734
|
-
ClientPhone: ResolverTypeWrapper<IClientPhone>;
|
8735
|
-
ClientPhone_Input: IClientPhone_Input;
|
8736
7423
|
ClientTypes: IClientTypes;
|
8737
|
-
ClientUpdateRequest: IClientUpdateRequest;
|
8738
7424
|
ConfigCollectionName: IConfigCollectionName;
|
8739
7425
|
ConfigFragmentName: IConfigFragmentName;
|
8740
7426
|
Configuration: IResolversTypes['DefaultConfiguration'] | IResolversTypes['MachineConfiguration'] | IResolversTypes['UserConfiguration'] | IResolversTypes['OrganizationConfiguration'] | IResolversTypes['OrganizationResourceConfiguration'];
|
@@ -8758,8 +7444,6 @@ export declare type IResolversTypes = {
|
|
8758
7444
|
ContributionSettingsProperties: ResolverTypeWrapper<IContributionSettingsProperties>;
|
8759
7445
|
Country: ResolverTypeWrapper<ICountry>;
|
8760
7446
|
CountryInput: ICountryInput;
|
8761
|
-
CustomerInvoice: ResolverTypeWrapper<ICustomerInvoice>;
|
8762
|
-
CustomerInvoice_Input: ICustomerInvoice_Input;
|
8763
7447
|
Date: ResolverTypeWrapper<Scalars['Date']>;
|
8764
7448
|
DateTime: ResolverTypeWrapper<Scalars['DateTime']>;
|
8765
7449
|
DefaultConfiguration: ResolverTypeWrapper<IDefaultConfiguration>;
|
@@ -8811,12 +7495,6 @@ export declare type IResolversTypes = {
|
|
8811
7495
|
IntegrationConfigurationInput: IIntegrationConfigurationInput;
|
8812
7496
|
InviteMember: ResolverTypeWrapper<IInviteMember>;
|
8813
7497
|
InviteStatus: IInviteStatus;
|
8814
|
-
InvoiceCreateRequest: IInvoiceCreateRequest;
|
8815
|
-
InvoiceCreatedEvent: ResolverTypeWrapper<IInvoiceCreatedEvent>;
|
8816
|
-
InvoiceDeletedEvent: ResolverTypeWrapper<IInvoiceDeletedEvent>;
|
8817
|
-
InvoiceMailRequest: IInvoiceMailRequest;
|
8818
|
-
InvoiceType: ResolverTypeWrapper<IInvoiceType>;
|
8819
|
-
InvoiceUpdateRequest: IInvoiceUpdateRequest;
|
8820
7498
|
JSON: ResolverTypeWrapper<Scalars['JSON']>;
|
8821
7499
|
JSONObject: ResolverTypeWrapper<Scalars['JSONObject']>;
|
8822
7500
|
KeyPathSegment: IKeyPathSegment;
|
@@ -8824,15 +7502,11 @@ export declare type IResolversTypes = {
|
|
8824
7502
|
MachineConfiguration: ResolverTypeWrapper<IMachineConfiguration>;
|
8825
7503
|
MachineSettings: ResolverTypeWrapper<IMachineSettings>;
|
8826
7504
|
MailTemplateId: IMailTemplateId;
|
8827
|
-
MemberInvoice: ResolverTypeWrapper<IMemberInvoice>;
|
8828
|
-
MemberInvoice_Input: IMemberInvoice_Input;
|
8829
7505
|
MemorySettings: ResolverTypeWrapper<IMemorySettings>;
|
8830
7506
|
MenuItem: ResolverTypeWrapper<IMenuItem>;
|
8831
7507
|
MenuPosition: IMenuPosition;
|
8832
7508
|
MoleculerServiceName: IMoleculerServiceName;
|
8833
7509
|
Mutation: ResolverTypeWrapper<{}>;
|
8834
|
-
NameType: ResolverTypeWrapper<INameType>;
|
8835
|
-
Name_Input: IName_Input;
|
8836
7510
|
Node: IResolversTypes['OrgUserAccunt'] | IResolversTypes['UserAccount'];
|
8837
7511
|
Observable: ResolverTypeWrapper<Scalars['Observable']>;
|
8838
7512
|
OrgDetailWhere: IOrgDetailWhere;
|
@@ -8882,6 +7556,7 @@ export declare type IResolversTypes = {
|
|
8882
7556
|
PhoneNumber: ResolverTypeWrapper<IPhoneNumber>;
|
8883
7557
|
PhoneNumberInput: IPhoneNumberInput;
|
8884
7558
|
PolicySubject: ResolverTypeWrapper<IPolicySubject>;
|
7559
|
+
PopupIntegrationAuthorization: ResolverTypeWrapper<IPopupIntegrationAuthorization>;
|
8885
7560
|
PortalLanguage: IPortalLanguage;
|
8886
7561
|
Position: ResolverTypeWrapper<IPosition>;
|
8887
7562
|
PreDefinedRole: IPreDefinedRole;
|
@@ -8900,22 +7575,6 @@ export declare type IResolversTypes = {
|
|
8900
7575
|
PreferencesOpenOptions_Input: IPreferencesOpenOptions_Input;
|
8901
7576
|
PreferencesResponse: ResolverTypeWrapper<IPreferencesResponse>;
|
8902
7577
|
PreferencesType: ResolverTypeWrapper<IPreferencesType>;
|
8903
|
-
ProjectAddRequest: IProjectAddRequest;
|
8904
|
-
ProjectCreatedEvent: ResolverTypeWrapper<IProjectCreatedEvent>;
|
8905
|
-
ProjectDeletedEvent: ResolverTypeWrapper<IProjectDeletedEvent>;
|
8906
|
-
ProjectInvoice: ResolverTypeWrapper<IProjectInvoice>;
|
8907
|
-
ProjectInvoice_Input: IProjectInvoice_Input;
|
8908
|
-
ProjectParameters: ResolverTypeWrapper<IProjectParameters>;
|
8909
|
-
ProjectParameters_Input: IProjectParameters_Input;
|
8910
|
-
ProjectSource: ResolverTypeWrapper<IProjectSource>;
|
8911
|
-
ProjectSourceProviders: IProjectSourceProviders;
|
8912
|
-
ProjectSourceType: IProjectSourceType;
|
8913
|
-
ProjectSource_Input: IProjectSource_Input;
|
8914
|
-
ProjectType: IProjectType;
|
8915
|
-
ProjectWhereInput: IProjectWhereInput;
|
8916
|
-
Project_Input: IProject_Input;
|
8917
|
-
Project_Output: ResolverTypeWrapper<IProject_Output>;
|
8918
|
-
Projects: ResolverTypeWrapper<IProjects>;
|
8919
7578
|
Query: ResolverTypeWrapper<{}>;
|
8920
7579
|
Range: ResolverTypeWrapper<IRange>;
|
8921
7580
|
RegistryExtensions: IRegistryExtensions;
|
@@ -8942,8 +7601,6 @@ export declare type IResolversTypes = {
|
|
8942
7601
|
SettingsGroup: ResolverTypeWrapper<ISettingsGroup>;
|
8943
7602
|
SettingsSection: ResolverTypeWrapper<ISettingsSection>;
|
8944
7603
|
SettingsSubject: IResolversTypes['UserSettings'] | IResolversTypes['ApplicationSettings'] | IResolversTypes['MachineSettings'] | IResolversTypes['OrganizationResourceSettings'] | IResolversTypes['GlobalSettings'] | IResolversTypes['OrganizationSettings'] | IResolversTypes['MemorySettings'] | IResolversTypes['DefaultSettings'];
|
8945
|
-
SocialConnect: ResolverTypeWrapper<ISocialConnect>;
|
8946
|
-
SocialConnect_Input: ISocialConnect_Input;
|
8947
7604
|
SshKey: ResolverTypeWrapper<ISshKey>;
|
8948
7605
|
SshKeyInput: ISshKeyInput;
|
8949
7606
|
SshKeyModel: ResolverTypeWrapper<ISshKeyModel>;
|
@@ -8955,8 +7612,6 @@ export declare type IResolversTypes = {
|
|
8955
7612
|
resources?: Maybe<Array<Maybe<IResolversTypes['ResourceData']>>>;
|
8956
7613
|
}>;
|
8957
7614
|
Subscription: ResolverTypeWrapper<{}>;
|
8958
|
-
Task: ResolverTypeWrapper<ITask>;
|
8959
|
-
TaskRequest: ITaskRequest;
|
8960
7615
|
TeamCreateRequest: ITeamCreateRequest;
|
8961
7616
|
TeamCreationRequest: ITeamCreationRequest;
|
8962
7617
|
TeamInvitationEmailVariables: ResolverTypeWrapper<ITeamInvitationEmailVariables>;
|
@@ -8967,15 +7622,12 @@ export declare type IResolversTypes = {
|
|
8967
7622
|
TeamServiceAction: ITeamServiceAction;
|
8968
7623
|
TeamType: ITeamType;
|
8969
7624
|
TeamUpdateRequest: ITeamUpdateRequest;
|
8970
|
-
Template: ITemplate;
|
8971
7625
|
TerritorialStateInput: ITerritorialStateInput;
|
8972
7626
|
TerritorialStateUpdateInput: ITerritorialStateUpdateInput;
|
8973
7627
|
Time: ResolverTypeWrapper<Scalars['Time']>;
|
8974
7628
|
TokenTypesEnum: ITokenTypesEnum;
|
8975
7629
|
URI: ResolverTypeWrapper<Scalars['URI']>;
|
8976
7630
|
URIInput: ResolverTypeWrapper<Scalars['URIInput']>;
|
8977
|
-
UpdateProject_Input: IUpdateProject_Input;
|
8978
|
-
UpdatedClient_Input: IUpdatedClient_Input;
|
8979
7631
|
UserAccount: ResolverTypeWrapper<IUserAccount>;
|
8980
7632
|
UserAccountCreateRequest: IUserAccountCreateRequest;
|
8981
7633
|
UserAccountCreatedDetailedEvent: ResolverTypeWrapper<IUserAccountCreatedDetailedEvent>;
|
@@ -8986,6 +7638,7 @@ export declare type IResolversTypes = {
|
|
8986
7638
|
UserAccountWhere: IUserAccountWhere;
|
8987
7639
|
UserAccount_Input: IUserAccount_Input;
|
8988
7640
|
UserAuth0Info: ResolverTypeWrapper<IUserAuth0Info>;
|
7641
|
+
UserAuth0Integrations: ResolverTypeWrapper<IUserAuth0Integrations>;
|
8989
7642
|
UserAuth0SessionDeviceInfo: ResolverTypeWrapper<IUserAuth0SessionDeviceInfo>;
|
8990
7643
|
UserAuth0SessionInfo: ResolverTypeWrapper<IUserAuth0SessionInfo>;
|
8991
7644
|
UserAuth0UpdateFields: IUserAuth0UpdateFields;
|
@@ -9000,6 +7653,7 @@ export declare type IResolversTypes = {
|
|
9000
7653
|
UserPasswordResetInput: IUserPasswordResetInput;
|
9001
7654
|
UserPreviousValues: ResolverTypeWrapper<IUserPreviousValues>;
|
9002
7655
|
UserProfile: ResolverTypeWrapper<IUserProfile>;
|
7656
|
+
UserSessionId: ResolverTypeWrapper<IUserSessionId>;
|
9003
7657
|
UserSettings: ResolverTypeWrapper<IUserSettings>;
|
9004
7658
|
UserState: ResolverTypeWrapper<IUserState>;
|
9005
7659
|
UserToken: ResolverTypeWrapper<IUserToken>;
|
@@ -9023,18 +7677,11 @@ export declare type IResolversParentTypes = {
|
|
9023
7677
|
Int: Scalars['Int'];
|
9024
7678
|
ActivityRecord: IActivityRecord;
|
9025
7679
|
ActivityRecordInput: IActivityRecordInput;
|
9026
|
-
AddressType: IAddressType;
|
9027
|
-
AddressType_Input: IAddressType_Input;
|
9028
7680
|
AdminIdeSettings: IAdminIdeSettings;
|
9029
7681
|
AnyObject: Scalars['AnyObject'];
|
9030
7682
|
ApplicationPolicy: IApplicationPolicy;
|
9031
7683
|
ApplicationRolePermission: IApplicationRolePermission;
|
9032
7684
|
ApplicationSettings: IApplicationSettings;
|
9033
|
-
AsanaConnection: IAsanaConnection;
|
9034
|
-
AsanaConnectionState: IAsanaConnectionState;
|
9035
|
-
AsanaProjects: IAsanaProjects;
|
9036
|
-
AsanaUser: IAsanaUser;
|
9037
|
-
AsanaWorkspaces: IAsanaWorkspaces;
|
9038
7685
|
Auth0Identity: IAuth0Identity;
|
9039
7686
|
Auth0IdentityProfileData: IAuth0IdentityProfileData;
|
9040
7687
|
AuthTokens: IAuthTokens;
|
@@ -9042,13 +7689,6 @@ export declare type IResolversParentTypes = {
|
|
9042
7689
|
AuthUser_Input: IAuthUser_Input;
|
9043
7690
|
CityInput: ICityInput;
|
9044
7691
|
CityUpdateInput: ICityUpdateInput;
|
9045
|
-
Client: IClient;
|
9046
|
-
ClientAddRequest: IClientAddRequest;
|
9047
|
-
ClientCreatedEvent: IClientCreatedEvent;
|
9048
|
-
ClientDeletedEvent: IClientDeletedEvent;
|
9049
|
-
ClientPhone: IClientPhone;
|
9050
|
-
ClientPhone_Input: IClientPhone_Input;
|
9051
|
-
ClientUpdateRequest: IClientUpdateRequest;
|
9052
7692
|
Configuration: IResolversParentTypes['DefaultConfiguration'] | IResolversParentTypes['MachineConfiguration'] | IResolversParentTypes['UserConfiguration'] | IResolversParentTypes['OrganizationConfiguration'] | IResolversParentTypes['OrganizationResourceConfiguration'];
|
9053
7693
|
ConfigurationData: IConfigurationData;
|
9054
7694
|
ConfigurationExtensionInfo: IConfigurationExtensionInfo;
|
@@ -9066,8 +7706,6 @@ export declare type IResolversParentTypes = {
|
|
9066
7706
|
ContributionSettingsProperties: IContributionSettingsProperties;
|
9067
7707
|
Country: ICountry;
|
9068
7708
|
CountryInput: ICountryInput;
|
9069
|
-
CustomerInvoice: ICustomerInvoice;
|
9070
|
-
CustomerInvoice_Input: ICustomerInvoice_Input;
|
9071
7709
|
Date: Scalars['Date'];
|
9072
7710
|
DateTime: Scalars['DateTime'];
|
9073
7711
|
DefaultConfiguration: IDefaultConfiguration;
|
@@ -9113,25 +7751,15 @@ export declare type IResolversParentTypes = {
|
|
9113
7751
|
IntegrationConfigurationFilterInput: IIntegrationConfigurationFilterInput;
|
9114
7752
|
IntegrationConfigurationInput: IIntegrationConfigurationInput;
|
9115
7753
|
InviteMember: IInviteMember;
|
9116
|
-
InvoiceCreateRequest: IInvoiceCreateRequest;
|
9117
|
-
InvoiceCreatedEvent: IInvoiceCreatedEvent;
|
9118
|
-
InvoiceDeletedEvent: IInvoiceDeletedEvent;
|
9119
|
-
InvoiceMailRequest: IInvoiceMailRequest;
|
9120
|
-
InvoiceType: IInvoiceType;
|
9121
|
-
InvoiceUpdateRequest: IInvoiceUpdateRequest;
|
9122
7754
|
JSON: Scalars['JSON'];
|
9123
7755
|
JSONObject: Scalars['JSONObject'];
|
9124
7756
|
KeyPathSegment: IKeyPathSegment;
|
9125
7757
|
LoginError: ILoginError;
|
9126
7758
|
MachineConfiguration: IMachineConfiguration;
|
9127
7759
|
MachineSettings: IMachineSettings;
|
9128
|
-
MemberInvoice: IMemberInvoice;
|
9129
|
-
MemberInvoice_Input: IMemberInvoice_Input;
|
9130
7760
|
MemorySettings: IMemorySettings;
|
9131
7761
|
MenuItem: IMenuItem;
|
9132
7762
|
Mutation: {};
|
9133
|
-
NameType: INameType;
|
9134
|
-
Name_Input: IName_Input;
|
9135
7763
|
Node: IResolversParentTypes['OrgUserAccunt'] | IResolversParentTypes['UserAccount'];
|
9136
7764
|
Observable: Scalars['Observable'];
|
9137
7765
|
OrgDetailWhere: IOrgDetailWhere;
|
@@ -9174,6 +7802,7 @@ export declare type IResolversParentTypes = {
|
|
9174
7802
|
PhoneNumber: IPhoneNumber;
|
9175
7803
|
PhoneNumberInput: IPhoneNumberInput;
|
9176
7804
|
PolicySubject: IPolicySubject;
|
7805
|
+
PopupIntegrationAuthorization: IPopupIntegrationAuthorization;
|
9177
7806
|
Position: IPosition;
|
9178
7807
|
PreferenceItem: IPreferenceItem;
|
9179
7808
|
Preference_Account: IPreference_Account;
|
@@ -9190,19 +7819,6 @@ export declare type IResolversParentTypes = {
|
|
9190
7819
|
PreferencesOpenOptions_Input: IPreferencesOpenOptions_Input;
|
9191
7820
|
PreferencesResponse: IPreferencesResponse;
|
9192
7821
|
PreferencesType: IPreferencesType;
|
9193
|
-
ProjectAddRequest: IProjectAddRequest;
|
9194
|
-
ProjectCreatedEvent: IProjectCreatedEvent;
|
9195
|
-
ProjectDeletedEvent: IProjectDeletedEvent;
|
9196
|
-
ProjectInvoice: IProjectInvoice;
|
9197
|
-
ProjectInvoice_Input: IProjectInvoice_Input;
|
9198
|
-
ProjectParameters: IProjectParameters;
|
9199
|
-
ProjectParameters_Input: IProjectParameters_Input;
|
9200
|
-
ProjectSource: IProjectSource;
|
9201
|
-
ProjectSource_Input: IProjectSource_Input;
|
9202
|
-
ProjectWhereInput: IProjectWhereInput;
|
9203
|
-
Project_Input: IProject_Input;
|
9204
|
-
Project_Output: IProject_Output;
|
9205
|
-
Projects: IProjects;
|
9206
7822
|
Query: {};
|
9207
7823
|
Range: IRange;
|
9208
7824
|
ResourceAccessRole: Omit<IResourceAccessRole, 'accessRoles'> & {
|
@@ -9224,8 +7840,6 @@ export declare type IResolversParentTypes = {
|
|
9224
7840
|
SettingsGroup: ISettingsGroup;
|
9225
7841
|
SettingsSection: ISettingsSection;
|
9226
7842
|
SettingsSubject: IResolversParentTypes['UserSettings'] | IResolversParentTypes['ApplicationSettings'] | IResolversParentTypes['MachineSettings'] | IResolversParentTypes['OrganizationResourceSettings'] | IResolversParentTypes['GlobalSettings'] | IResolversParentTypes['OrganizationSettings'] | IResolversParentTypes['MemorySettings'] | IResolversParentTypes['DefaultSettings'];
|
9227
|
-
SocialConnect: ISocialConnect;
|
9228
|
-
SocialConnect_Input: ISocialConnect_Input;
|
9229
7843
|
SshKey: ISshKey;
|
9230
7844
|
SshKeyInput: ISshKeyInput;
|
9231
7845
|
SshKeyModel: ISshKeyModel;
|
@@ -9235,8 +7849,6 @@ export declare type IResolversParentTypes = {
|
|
9235
7849
|
resources?: Maybe<Array<Maybe<IResolversParentTypes['ResourceData']>>>;
|
9236
7850
|
};
|
9237
7851
|
Subscription: {};
|
9238
|
-
Task: ITask;
|
9239
|
-
TaskRequest: ITaskRequest;
|
9240
7852
|
TeamCreateRequest: ITeamCreateRequest;
|
9241
7853
|
TeamCreationRequest: ITeamCreationRequest;
|
9242
7854
|
TeamInvitationEmailVariables: ITeamInvitationEmailVariables;
|
@@ -9246,14 +7858,11 @@ export declare type IResolversParentTypes = {
|
|
9246
7858
|
TeamService: ITeamService;
|
9247
7859
|
TeamType: ITeamType;
|
9248
7860
|
TeamUpdateRequest: ITeamUpdateRequest;
|
9249
|
-
Template: ITemplate;
|
9250
7861
|
TerritorialStateInput: ITerritorialStateInput;
|
9251
7862
|
TerritorialStateUpdateInput: ITerritorialStateUpdateInput;
|
9252
7863
|
Time: Scalars['Time'];
|
9253
7864
|
URI: Scalars['URI'];
|
9254
7865
|
URIInput: Scalars['URIInput'];
|
9255
|
-
UpdateProject_Input: IUpdateProject_Input;
|
9256
|
-
UpdatedClient_Input: IUpdatedClient_Input;
|
9257
7866
|
UserAccount: IUserAccount;
|
9258
7867
|
UserAccountCreateRequest: IUserAccountCreateRequest;
|
9259
7868
|
UserAccountCreatedDetailedEvent: IUserAccountCreatedDetailedEvent;
|
@@ -9264,6 +7873,7 @@ export declare type IResolversParentTypes = {
|
|
9264
7873
|
UserAccountWhere: IUserAccountWhere;
|
9265
7874
|
UserAccount_Input: IUserAccount_Input;
|
9266
7875
|
UserAuth0Info: IUserAuth0Info;
|
7876
|
+
UserAuth0Integrations: IUserAuth0Integrations;
|
9267
7877
|
UserAuth0SessionDeviceInfo: IUserAuth0SessionDeviceInfo;
|
9268
7878
|
UserAuth0SessionInfo: IUserAuth0SessionInfo;
|
9269
7879
|
UserAuth0UpdateFields: IUserAuth0UpdateFields;
|
@@ -9276,6 +7886,7 @@ export declare type IResolversParentTypes = {
|
|
9276
7886
|
UserPasswordResetInput: IUserPasswordResetInput;
|
9277
7887
|
UserPreviousValues: IUserPreviousValues;
|
9278
7888
|
UserProfile: IUserProfile;
|
7889
|
+
UserSessionId: IUserSessionId;
|
9279
7890
|
UserSettings: IUserSettings;
|
9280
7891
|
UserState: IUserState;
|
9281
7892
|
UserToken: IUserToken;
|
@@ -9340,15 +7951,6 @@ export declare type IActivityRecordResolvers<ContextType = MyContext, ParentType
|
|
9340
7951
|
timestamp?: Resolver<IResolversTypes['Int'], ParentType, ContextType>;
|
9341
7952
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9342
7953
|
};
|
9343
|
-
export declare type IAddressTypeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AddressType'] = IResolversParentTypes['AddressType']> = {
|
9344
|
-
attention?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9345
|
-
address?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9346
|
-
city?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9347
|
-
state?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9348
|
-
country?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9349
|
-
zip?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9350
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9351
|
-
};
|
9352
7954
|
export declare type IAdminIdeSettingsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AdminIdeSettings'] = IResolversParentTypes['AdminIdeSettings']> = {
|
9353
7955
|
activityNamespace?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9354
7956
|
activityVersion?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -9382,30 +7984,6 @@ export declare type IApplicationSettingsResolvers<ContextType = MyContext, Paren
|
|
9382
7984
|
settingsCascade?: Resolver<IResolversTypes['SettingsCascade'], ParentType, ContextType>;
|
9383
7985
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9384
7986
|
};
|
9385
|
-
export declare type IAsanaConnectionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AsanaConnection'] = IResolversParentTypes['AsanaConnection']> = {
|
9386
|
-
asana?: Resolver<Maybe<IResolversTypes['AsanaConnectionState']>, ParentType, ContextType>;
|
9387
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9388
|
-
};
|
9389
|
-
export declare type IAsanaConnectionStateResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AsanaConnectionState'] = IResolversParentTypes['AsanaConnectionState']> = {
|
9390
|
-
status?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9391
|
-
user?: Resolver<Maybe<IResolversTypes['AsanaUser']>, ParentType, ContextType>;
|
9392
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9393
|
-
};
|
9394
|
-
export declare type IAsanaProjectsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AsanaProjects'] = IResolversParentTypes['AsanaProjects']> = {
|
9395
|
-
gid?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9396
|
-
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9397
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9398
|
-
};
|
9399
|
-
export declare type IAsanaUserResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AsanaUser'] = IResolversParentTypes['AsanaUser']> = {
|
9400
|
-
user_id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9401
|
-
username?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9402
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9403
|
-
};
|
9404
|
-
export declare type IAsanaWorkspacesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AsanaWorkspaces'] = IResolversParentTypes['AsanaWorkspaces']> = {
|
9405
|
-
gid?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9406
|
-
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9407
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9408
|
-
};
|
9409
7987
|
export declare type IAuth0IdentityResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Auth0Identity'] = IResolversParentTypes['Auth0Identity']> = {
|
9410
7988
|
connection?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9411
7989
|
isSocial?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
@@ -9437,36 +8015,6 @@ export declare type IAuthUserResolvers<ContextType = MyContext, ParentType exten
|
|
9437
8015
|
phoneNo?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
9438
8016
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9439
8017
|
};
|
9440
|
-
export declare type IClientResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Client'] = IResolversParentTypes['Client']> = {
|
9441
|
-
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
9442
|
-
name?: Resolver<IResolversTypes['NameType'], ParentType, ContextType>;
|
9443
|
-
companyName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9444
|
-
displayName?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
9445
|
-
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9446
|
-
clientPhone?: Resolver<Maybe<IResolversTypes['ClientPhone']>, ParentType, ContextType>;
|
9447
|
-
website?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9448
|
-
currency?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
9449
|
-
socialConnect?: Resolver<Maybe<IResolversTypes['SocialConnect']>, ParentType, ContextType>;
|
9450
|
-
billingAddress?: Resolver<Maybe<IResolversTypes['AddressType']>, ParentType, ContextType>;
|
9451
|
-
shippingAddress?: Resolver<Maybe<IResolversTypes['AddressType']>, ParentType, ContextType>;
|
9452
|
-
orgName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9453
|
-
createdAt?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
|
9454
|
-
updatedAt?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
|
9455
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9456
|
-
};
|
9457
|
-
export declare type IClientCreatedEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ClientCreatedEvent'] = IResolversParentTypes['ClientCreatedEvent']> = {
|
9458
|
-
createdClient?: Resolver<Maybe<IResolversTypes['Client']>, ParentType, ContextType>;
|
9459
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9460
|
-
};
|
9461
|
-
export declare type IClientDeletedEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ClientDeletedEvent'] = IResolversParentTypes['ClientDeletedEvent']> = {
|
9462
|
-
deletedClient?: Resolver<Maybe<IResolversTypes['Client']>, ParentType, ContextType>;
|
9463
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9464
|
-
};
|
9465
|
-
export declare type IClientPhoneResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ClientPhone'] = IResolversParentTypes['ClientPhone']> = {
|
9466
|
-
workPhone?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9467
|
-
mobile?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9468
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9469
|
-
};
|
9470
8018
|
export declare type IConfigurationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Configuration'] = IResolversParentTypes['Configuration']> = {
|
9471
8019
|
__resolveType: TypeResolveFn<'DefaultConfiguration' | 'MachineConfiguration' | 'UserConfiguration' | 'OrganizationConfiguration' | 'OrganizationResourceConfiguration', ParentType, ContextType>;
|
9472
8020
|
};
|
@@ -9605,16 +8153,6 @@ export declare type ICountryResolvers<ContextType = MyContext, ParentType extend
|
|
9605
8153
|
phoneCode?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
9606
8154
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9607
8155
|
};
|
9608
|
-
export declare type ICustomerInvoiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['CustomerInvoice'] = IResolversParentTypes['CustomerInvoice']> = {
|
9609
|
-
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9610
|
-
username?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9611
|
-
companyName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9612
|
-
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9613
|
-
phone?: Resolver<Maybe<IResolversTypes['ClientPhone']>, ParentType, ContextType>;
|
9614
|
-
billingAddress?: Resolver<Maybe<IResolversTypes['AddressType']>, ParentType, ContextType>;
|
9615
|
-
shippingAddress?: Resolver<Maybe<IResolversTypes['AddressType']>, ParentType, ContextType>;
|
9616
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9617
|
-
};
|
9618
8156
|
export interface IDateScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Date'], any> {
|
9619
8157
|
name: 'Date';
|
9620
8158
|
}
|
@@ -9865,44 +8403,6 @@ export declare type IInviteMemberResolvers<ContextType = MyContext, ParentType e
|
|
9865
8403
|
status?: Resolver<Maybe<IResolversTypes['InviteStatus']>, ParentType, ContextType>;
|
9866
8404
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9867
8405
|
};
|
9868
|
-
export declare type IInvoiceCreatedEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['InvoiceCreatedEvent'] = IResolversParentTypes['InvoiceCreatedEvent']> = {
|
9869
|
-
createdInvoice?: Resolver<Maybe<IResolversTypes['InvoiceType']>, ParentType, ContextType>;
|
9870
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9871
|
-
};
|
9872
|
-
export declare type IInvoiceDeletedEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['InvoiceDeletedEvent'] = IResolversParentTypes['InvoiceDeletedEvent']> = {
|
9873
|
-
deletedInvoice?: Resolver<Maybe<IResolversTypes['InvoiceType']>, ParentType, ContextType>;
|
9874
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9875
|
-
};
|
9876
|
-
export declare type IInvoiceTypeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['InvoiceType'] = IResolversParentTypes['InvoiceType']> = {
|
9877
|
-
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
9878
|
-
comment?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9879
|
-
currency?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9880
|
-
discount?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
9881
|
-
from?: Resolver<Maybe<IResolversTypes['MemberInvoice']>, ParentType, ContextType>;
|
9882
|
-
invoiceDate?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
|
9883
|
-
terms?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9884
|
-
dueDate?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
|
9885
|
-
invoiceNumber?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9886
|
-
orderNumber?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9887
|
-
invoiceVendor?: Resolver<Maybe<IResolversTypes['MemberInvoice']>, ParentType, ContextType>;
|
9888
|
-
logo?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9889
|
-
overdue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9890
|
-
paymentStatus?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9891
|
-
projects?: Resolver<Maybe<Array<Maybe<IResolversTypes['ProjectInvoice']>>>, ParentType, ContextType>;
|
9892
|
-
sendingStatus?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9893
|
-
status?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9894
|
-
subTotal?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
9895
|
-
tax?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
9896
|
-
subject?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9897
|
-
conditions?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9898
|
-
timezoneOffset?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
9899
|
-
to?: Resolver<Maybe<IResolversTypes['CustomerInvoice']>, ParentType, ContextType>;
|
9900
|
-
total?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
9901
|
-
orgName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9902
|
-
createdAt?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
|
9903
|
-
updatedAt?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
|
9904
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9905
|
-
};
|
9906
8406
|
export interface IJSONScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['JSON'], any> {
|
9907
8407
|
name: 'JSON';
|
9908
8408
|
}
|
@@ -9931,15 +8431,6 @@ export declare type IMachineSettingsResolvers<ContextType = MyContext, ParentTyp
|
|
9931
8431
|
settingsCascade?: Resolver<IResolversTypes['SettingsCascade'], ParentType, ContextType>;
|
9932
8432
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9933
8433
|
};
|
9934
|
-
export declare type IMemberInvoiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MemberInvoice'] = IResolversParentTypes['MemberInvoice']> = {
|
9935
|
-
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9936
|
-
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9937
|
-
companyName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9938
|
-
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9939
|
-
phone?: Resolver<Maybe<IResolversTypes['ClientPhone']>, ParentType, ContextType>;
|
9940
|
-
address?: Resolver<Maybe<IResolversTypes['AddressType']>, ParentType, ContextType>;
|
9941
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9942
|
-
};
|
9943
8434
|
export declare type IMemorySettingsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MemorySettings'] = IResolversParentTypes['MemorySettings']> = {
|
9944
8435
|
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
9945
8436
|
latestSettings?: Resolver<Maybe<IResolversTypes['Settings']>, ParentType, ContextType>;
|
@@ -9966,9 +8457,7 @@ export declare type IMutationResolvers<ContextType = MyContext, ParentType exten
|
|
9966
8457
|
UpdateSshKey?: Resolver<Maybe<IResolversTypes['SshKey']>, ParentType, ContextType, RequireFields<IMutationUpdateSshKeyArgs, 'id' | 'key'>>;
|
9967
8458
|
acceptOrganizationInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationacceptOrganizationInvitationArgs, 'id'>>;
|
9968
8459
|
accountOnBoarding?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationaccountOnBoardingArgs, never>>;
|
9969
|
-
addClient?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationaddClientArgs, 'client'>>;
|
9970
8460
|
addContributionRole?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationaddContributionRoleArgs, 'name'>>;
|
9971
|
-
addOrgProject?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationaddOrgProjectArgs, 'project'>>;
|
9972
8461
|
addResourceToContext?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationaddResourceToContextArgs, 'resourcesToAdd'>>;
|
9973
8462
|
addTeamMembers?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationaddTeamMembersArgs, 'orgName' | 'teamName' | 'memberIds'>>;
|
9974
8463
|
changeMemberRole?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationchangeMemberRoleArgs, 'orgName' | 'teamName' | 'memberId' | 'role'>>;
|
@@ -9976,10 +8465,8 @@ export declare type IMutationResolvers<ContextType = MyContext, ParentType exten
|
|
9976
8465
|
changeOrganization?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType, RequireFields<IMutationchangeOrganizationArgs, never>>;
|
9977
8466
|
collect?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationcollectArgs, 'request'>>;
|
9978
8467
|
createIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['IntegraitonConfigurationId']>, ParentType, ContextType, RequireFields<IMutationcreateIntegrationConfigurationArgs, never>>;
|
9979
|
-
createInvoice?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationcreateInvoiceArgs, 'invoice'>>;
|
9980
8468
|
createOrUpdateIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['IntegraitonConfigurationId']>, ParentType, ContextType, RequireFields<IMutationcreateOrUpdateIntegrationConfigurationArgs, never>>;
|
9981
8469
|
createOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IMutationcreateOrganizationArgs, 'organization'>>;
|
9982
|
-
createTask?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationcreateTaskArgs, never>>;
|
9983
8470
|
createTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IMutationcreateTeamArgs, 'request'>>;
|
9984
8471
|
declineOrganizationInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationdeclineOrganizationInvitationArgs, 'id'>>;
|
9985
8472
|
deleteIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationdeleteIntegrationConfigurationArgs, 'id'>>;
|
@@ -9988,25 +8475,24 @@ export declare type IMutationResolvers<ContextType = MyContext, ParentType exten
|
|
9988
8475
|
dummy?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
9989
8476
|
initializeAuthorizationCodeFlow?: Resolver<Maybe<IResolversTypes['AuthTokens']>, ParentType, ContextType, RequireFields<IMutationinitializeAuthorizationCodeFlowArgs, 'deviceInfo'>>;
|
9990
8477
|
initializeOrgNameInContext?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationinitializeOrgNameInContextArgs, never>>;
|
8478
|
+
initializePopupIntegrationAuthorization?: Resolver<Maybe<IResolversTypes['PopupIntegrationAuthorization']>, ParentType, ContextType, RequireFields<IMutationinitializePopupIntegrationAuthorizationArgs, never>>;
|
9991
8479
|
initializeTeamInContext?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationinitializeTeamInContextArgs, never>>;
|
8480
|
+
initializeUserSession?: Resolver<Maybe<IResolversTypes['UserSessionId']>, ParentType, ContextType, RequireFields<IMutationinitializeUserSessionArgs, 'deviceInfo'>>;
|
9992
8481
|
initiateConfigurationValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationinitiateConfigurationValueArgs, never>>;
|
9993
8482
|
initiatePolicyValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationinitiatePolicyValueArgs, never>>;
|
9994
8483
|
reassignRole?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
9995
8484
|
registerAccountUser?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IMutationregisterAccountUserArgs, never>>;
|
9996
8485
|
registerUserInAuth0?: Resolver<Maybe<IResolversTypes['UserProfile']>, ParentType, ContextType, RequireFields<IMutationregisterUserInAuth0Args, 'email' | 'password'>>;
|
9997
|
-
removeInvoice?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationremoveInvoiceArgs, never>>;
|
9998
|
-
removeOrgClient?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationremoveOrgClientArgs, 'clientId'>>;
|
9999
8486
|
removeOrgMember?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationremoveOrgMemberArgs, 'memberId'>>;
|
10000
8487
|
removeOrganization?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationremoveOrganizationArgs, 'organization'>>;
|
10001
|
-
removeTask?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationremoveTaskArgs, 'id'>>;
|
10002
8488
|
removeTeam?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationremoveTeamArgs, 'teamId'>>;
|
10003
8489
|
removeTeamMember?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationremoveTeamMemberArgs, 'orgName' | 'teamName' | 'memberId'>>;
|
10004
8490
|
removeUserAuthSession?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationremoveUserAuthSessionArgs, never>>;
|
8491
|
+
removedUserAuthIntegration?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationremovedUserAuthIntegrationArgs, never>>;
|
10005
8492
|
renewAuthToken?: Resolver<Maybe<IResolversTypes['AuthTokens']>, ParentType, ContextType, RequireFields<IMutationrenewAuthTokenArgs, never>>;
|
10006
8493
|
resendOrganizationInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationresendOrganizationInvitationArgs, 'id'>>;
|
10007
8494
|
resendUserEmailVerificationEmail?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
10008
8495
|
resetUserPassword?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationresetUserPasswordArgs, 'input'>>;
|
10009
|
-
sendInvoiceMail?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationsendInvoiceMailArgs, 'request'>>;
|
10010
8496
|
sendOrganizationInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationsendOrganizationInvitationArgs, never>>;
|
10011
8497
|
sendUserPasswordResetEmail?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationsendUserPasswordResetEmailArgs, 'email'>>;
|
10012
8498
|
setSettingsValueByResource?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationsetSettingsValueByResourceArgs, never>>;
|
@@ -10018,28 +8504,16 @@ export declare type IMutationResolvers<ContextType = MyContext, ParentType exten
|
|
10018
8504
|
updateConfigurationValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationupdateConfigurationValueArgs, 'key' | 'value'>>;
|
10019
8505
|
updateConfigurationValueByUri?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationupdateConfigurationValueByUriArgs, 'key' | 'value'>>;
|
10020
8506
|
updateContext?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationupdateContextArgs, never>>;
|
10021
|
-
updateInvoice?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationupdateInvoiceArgs, never>>;
|
10022
|
-
updateOrgClient?: Resolver<Maybe<IResolversTypes['Client']>, ParentType, ContextType, RequireFields<IMutationupdateOrgClientArgs, never>>;
|
10023
8507
|
updateOrgMemberTeams?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationupdateOrgMemberTeamsArgs, 'userId' | 'orgName'>>;
|
10024
|
-
updateOrgProject?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationupdateOrgProjectArgs, 'where'>>;
|
10025
8508
|
updateOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IMutationupdateOrganizationArgs, 'organization'>>;
|
10026
8509
|
updateOrganizationContextAddResources?: Resolver<Maybe<Array<Maybe<IResolversTypes['ResourceData']>>>, ParentType, ContextType, RequireFields<IMutationupdateOrganizationContextAddResourcesArgs, 'resourcesToAdd'>>;
|
10027
8510
|
updateOrganizationContextRemoveResources?: Resolver<Maybe<Array<Maybe<IResolversTypes['ResourceData']>>>, ParentType, ContextType, RequireFields<IMutationupdateOrganizationContextRemoveResourcesArgs, 'resourcesToRemove'>>;
|
10028
8511
|
updateOrganizationContextUpdateResources?: Resolver<Maybe<Array<Maybe<IResolversTypes['ResourceData']>>>, ParentType, ContextType, RequireFields<IMutationupdateOrganizationContextUpdateResourcesArgs, 'resourcesToAdd' | 'resourcesToRemove'>>;
|
10029
|
-
updateProjectStatus?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationupdateProjectStatusArgs, 'id'>>;
|
10030
8512
|
updateRoleValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationupdateRoleValueArgs, 'key' | 'value'>>;
|
10031
8513
|
updateSelectedOrgResource?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationupdateSelectedOrgResourceArgs, 'resource'>>;
|
10032
|
-
updateTask?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationupdateTaskArgs, 'id'>>;
|
10033
8514
|
updateUserAccount?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationupdateUserAccountArgs, never>>;
|
10034
|
-
upsertProjectThroughIntegration?: Resolver<Maybe<IResolversTypes['Projects']>, ParentType, ContextType, RequireFields<IMutationupsertProjectThroughIntegrationArgs, 'where'>>;
|
10035
8515
|
verifyUserEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationverifyUserEmailVerificationTokenArgs, never>>;
|
10036
8516
|
};
|
10037
|
-
export declare type INameTypeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['NameType'] = IResolversParentTypes['NameType']> = {
|
10038
|
-
salutation?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10039
|
-
firstName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10040
|
-
lastName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10041
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10042
|
-
};
|
10043
8517
|
export declare type INodeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Node'] = IResolversParentTypes['Node']> = {
|
10044
8518
|
__resolveType: TypeResolveFn<'OrgUserAccunt' | 'UserAccount', ParentType, ContextType>;
|
10045
8519
|
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
@@ -10253,6 +8727,10 @@ export declare type IPolicySubjectResolvers<ContextType = MyContext, ParentType
|
|
10253
8727
|
policies?: Resolver<IResolversTypes['AnyObject'], ParentType, ContextType>;
|
10254
8728
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10255
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
|
+
};
|
10256
8734
|
export declare type IPositionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Position'] = IResolversParentTypes['Position']> = {
|
10257
8735
|
line?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
10258
8736
|
character?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
@@ -10330,63 +8808,6 @@ export declare type IPreferencesTypeResolvers<ContextType = MyContext, ParentTyp
|
|
10330
8808
|
data?: Resolver<Maybe<Array<Maybe<IResolversTypes['ContributionSettings']>>>, ParentType, ContextType>;
|
10331
8809
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10332
8810
|
};
|
10333
|
-
export declare type IProjectCreatedEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ProjectCreatedEvent'] = IResolversParentTypes['ProjectCreatedEvent']> = {
|
10334
|
-
createdProject?: Resolver<Maybe<IResolversTypes['Projects']>, ParentType, ContextType>;
|
10335
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10336
|
-
};
|
10337
|
-
export declare type IProjectDeletedEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ProjectDeletedEvent'] = IResolversParentTypes['ProjectDeletedEvent']> = {
|
10338
|
-
deletedProject?: Resolver<Maybe<IResolversTypes['Projects']>, ParentType, ContextType>;
|
10339
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10340
|
-
};
|
10341
|
-
export declare type IProjectInvoiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ProjectInvoice'] = IResolversParentTypes['ProjectInvoice']> = {
|
10342
|
-
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
10343
|
-
hours?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
10344
|
-
projectName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10345
|
-
rate?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
10346
|
-
subTotal?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
10347
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10348
|
-
};
|
10349
|
-
export declare type IProjectParametersResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ProjectParameters'] = IResolversParentTypes['ProjectParameters']> = {
|
10350
|
-
branch?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10351
|
-
httpsUrl?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10352
|
-
isPrivate?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
10353
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10354
|
-
};
|
10355
|
-
export declare type IProjectSourceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ProjectSource'] = IResolversParentTypes['ProjectSource']> = {
|
10356
|
-
location?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10357
|
-
type?: Resolver<Maybe<IResolversTypes['ProjectSourceType']>, ParentType, ContextType>;
|
10358
|
-
parameters?: Resolver<Maybe<IResolversTypes['ProjectParameters']>, ParentType, ContextType>;
|
10359
|
-
providers?: Resolver<Maybe<IResolversTypes['ProjectSourceProviders']>, ParentType, ContextType>;
|
10360
|
-
language?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10361
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10362
|
-
};
|
10363
|
-
export declare type IProject_OutputResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Project_Output'] = IResolversParentTypes['Project_Output']> = {
|
10364
|
-
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10365
|
-
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
10366
|
-
clientId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10367
|
-
teams?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
10368
|
-
status?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10369
|
-
orgName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10370
|
-
integrationConfigurationId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10371
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10372
|
-
};
|
10373
|
-
export declare type IProjectsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Projects'] = IResolversParentTypes['Projects']> = {
|
10374
|
-
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
10375
|
-
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
10376
|
-
description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10377
|
-
clientId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10378
|
-
source?: Resolver<Maybe<IResolversTypes['ProjectSource']>, ParentType, ContextType>;
|
10379
|
-
problems?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
10380
|
-
teams?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
10381
|
-
status?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10382
|
-
type?: Resolver<Maybe<IResolversTypes['ProjectType']>, ParentType, ContextType>;
|
10383
|
-
integrationConfigurationId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10384
|
-
templateId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10385
|
-
orgName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10386
|
-
updatedAt?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
|
10387
|
-
createdAt?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
|
10388
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10389
|
-
};
|
10390
8811
|
export declare type IQueryResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Query'] = IResolversParentTypes['Query']> = {
|
10391
8812
|
GetSshKey?: Resolver<Maybe<IResolversTypes['SshKey']>, ParentType, ContextType, RequireFields<IQueryGetSshKeyArgs, 'id'>>;
|
10392
8813
|
decodeOrganizationInvitation?: Resolver<Maybe<IResolversTypes['OrganizationInvitationDecode']>, ParentType, ContextType, RequireFields<IQuerydecodeOrganizationInvitationArgs, 'token'>>;
|
@@ -10401,9 +8822,6 @@ export declare type IQueryResolvers<ContextType = MyContext, ParentType extends
|
|
10401
8822
|
getAccounts?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserAccount']>>>, ParentType, ContextType, RequireFields<IQuerygetAccountsArgs, never>>;
|
10402
8823
|
getAllCountries?: Resolver<Maybe<Array<Maybe<IResolversTypes['Country']>>>, ParentType, ContextType, RequireFields<IQuerygetAllCountriesArgs, never>>;
|
10403
8824
|
getAllIntegrationConfigurations?: Resolver<Maybe<Array<Maybe<IResolversTypes['IntegrationConfiguration']>>>, ParentType, ContextType>;
|
10404
|
-
getAsanaConnectionState?: Resolver<Maybe<IResolversTypes['AsanaConnection']>, ParentType, ContextType>;
|
10405
|
-
getAsanaWorkspaceProjects?: Resolver<Maybe<Array<Maybe<IResolversTypes['AsanaProjects']>>>, ParentType, ContextType, RequireFields<IQuerygetAsanaWorkspaceProjectsArgs, 'workspaceId'>>;
|
10406
|
-
getAsanaWorkspaces?: Resolver<Maybe<Array<Maybe<IResolversTypes['AsanaWorkspaces']>>>, ParentType, ContextType>;
|
10407
8825
|
getConfiguration?: Resolver<Maybe<Array<Maybe<IResolversTypes['Configuration']>>>, ParentType, ContextType, RequireFields<IQuerygetConfigurationArgs, never>>;
|
10408
8826
|
getConfigurationData?: Resolver<Maybe<IResolversTypes['ConfigurationData']>, ParentType, ContextType>;
|
10409
8827
|
getConfigurationPolicies?: Resolver<Maybe<Array<Maybe<IResolversTypes['ConfigurationPolicy']>>>, ParentType, ContextType, RequireFields<IQuerygetConfigurationPoliciesArgs, never>>;
|
@@ -10411,18 +8829,14 @@ export declare type IQueryResolvers<ContextType = MyContext, ParentType extends
|
|
10411
8829
|
getContextData?: Resolver<Maybe<IResolversTypes['Context']>, ParentType, ContextType>;
|
10412
8830
|
getContextProperty?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IQuerygetContextPropertyArgs, never>>;
|
10413
8831
|
getContributionRoles?: Resolver<Maybe<Array<Maybe<IResolversTypes['ContributionRoles']>>>, ParentType, ContextType>;
|
10414
|
-
getDefaultInvoiceNumber?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10415
8832
|
getEnvironment?: Resolver<Maybe<IResolversTypes['Environment']>, ParentType, ContextType>;
|
10416
|
-
getFilteredProjects?: Resolver<Maybe<Array<Maybe<IResolversTypes['Projects']>>>, ParentType, ContextType, RequireFields<IQuerygetFilteredProjectsArgs, 'filter'>>;
|
10417
8833
|
getIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['IntegrationConfiguration']>, ParentType, ContextType, RequireFields<IQuerygetIntegrationConfigurationArgs, 'id'>>;
|
10418
|
-
getInvoices?: Resolver<Maybe<Array<Maybe<IResolversTypes['InvoiceType']>>>, ParentType, ContextType>;
|
10419
8834
|
getManageableOrganizations?: Resolver<Maybe<Array<Maybe<IResolversTypes['Organization']>>>, ParentType, ContextType>;
|
10420
8835
|
getOrgContext?: Resolver<Maybe<IResolversTypes['Context']>, ParentType, ContextType>;
|
10421
8836
|
getOrgInvitationMembers?: Resolver<Maybe<Array<Maybe<IResolversTypes['InviteMember']>>>, ParentType, ContextType>;
|
10422
8837
|
getOrgNameFromContext?: Resolver<Maybe<IResolversTypes['Context']>, ParentType, ContextType>;
|
10423
8838
|
getOrgTeamInvitations?: Resolver<Maybe<Array<Maybe<IResolversTypes['OrganizationInvitation']>>>, ParentType, ContextType, RequireFields<IQuerygetOrgTeamInvitationsArgs, never>>;
|
10424
8839
|
getOrgUser?: Resolver<Maybe<IResolversTypes['OrgUser']>, ParentType, ContextType, RequireFields<IQuerygetOrgUserArgs, never>>;
|
10425
|
-
getOrganizationClients?: Resolver<Maybe<Array<Maybe<IResolversTypes['Client']>>>, ParentType, ContextType>;
|
10426
8840
|
getOrganizationConfigValue?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IQuerygetOrganizationConfigValueArgs, never>>;
|
10427
8841
|
getOrganizationDetail?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IQuerygetOrganizationDetailArgs, 'where'>>;
|
10428
8842
|
getOrganizationDetailUnsecured?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IQuerygetOrganizationDetailUnsecuredArgs, 'where'>>;
|
@@ -10430,10 +8844,8 @@ export declare type IQueryResolvers<ContextType = MyContext, ParentType extends
|
|
10430
8844
|
getOrganizationMembers?: Resolver<Maybe<Array<Maybe<IResolversTypes['OrgMember']>>>, ParentType, ContextType>;
|
10431
8845
|
getOrganizationResourceContext?: Resolver<Maybe<IResolversTypes['OrganizationData']>, ParentType, ContextType, RequireFields<IQuerygetOrganizationResourceContextArgs, never>>;
|
10432
8846
|
getOrganizationTeams?: Resolver<Maybe<Array<Maybe<IResolversTypes['AccountTeam']>>>, ParentType, ContextType, RequireFields<IQuerygetOrganizationTeamsArgs, never>>;
|
10433
|
-
getProjects?: Resolver<Maybe<Array<Maybe<IResolversTypes['Project_Output']>>>, ParentType, ContextType>;
|
10434
8847
|
getRole?: Resolver<Maybe<IResolversTypes['AccessRole']>, ParentType, ContextType, RequireFields<IQuerygetRoleArgs, never>>;
|
10435
8848
|
getRoles?: Resolver<Maybe<Array<Maybe<IResolversTypes['AccessRole']>>>, ParentType, ContextType, RequireFields<IQuerygetRolesArgs, never>>;
|
10436
|
-
getTasks?: Resolver<Maybe<Array<Maybe<IResolversTypes['Task']>>>, ParentType, ContextType, RequireFields<IQuerygetTasksArgs, never>>;
|
10437
8849
|
getTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IQuerygetTeamArgs, 'orgName' | 'teamName'>>;
|
10438
8850
|
getTeamContext?: Resolver<Maybe<IResolversTypes['Context']>, ParentType, ContextType>;
|
10439
8851
|
getTeamNameFromContext?: Resolver<Maybe<IResolversTypes['Context']>, ParentType, ContextType>;
|
@@ -10551,11 +8963,6 @@ export declare type ISettingsSectionResolvers<ContextType = MyContext, ParentTyp
|
|
10551
8963
|
export declare type ISettingsSubjectResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['SettingsSubject'] = IResolversParentTypes['SettingsSubject']> = {
|
10552
8964
|
__resolveType: TypeResolveFn<'UserSettings' | 'ApplicationSettings' | 'MachineSettings' | 'OrganizationResourceSettings' | 'GlobalSettings' | 'OrganizationSettings' | 'MemorySettings' | 'DefaultSettings', ParentType, ContextType>;
|
10553
8965
|
};
|
10554
|
-
export declare type ISocialConnectResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['SocialConnect'] = IResolversParentTypes['SocialConnect']> = {
|
10555
|
-
facebook?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10556
|
-
twitter?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10557
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10558
|
-
};
|
10559
8966
|
export declare type ISshKeyResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['SshKey'] = IResolversParentTypes['SshKey']> = {
|
10560
8967
|
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10561
8968
|
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -10597,12 +9004,6 @@ export declare type ISubscriptionResolvers<ContextType = MyContext, ParentType e
|
|
10597
9004
|
SubscribeToPolicyUpdate?: SubscriptionResolver<Maybe<IResolversTypes['ConfigurationUpdateEvent']>, "SubscribeToPolicyUpdate", ParentType, ContextType, RequireFields<ISubscriptionSubscribeToPolicyUpdateArgs, never>>;
|
10598
9005
|
dummy?: SubscriptionResolver<Maybe<IResolversTypes['Int']>, "dummy", ParentType, ContextType>;
|
10599
9006
|
};
|
10600
|
-
export declare type ITaskResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Task'] = IResolversParentTypes['Task']> = {
|
10601
|
-
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10602
|
-
projectId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10603
|
-
taskName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10604
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10605
|
-
};
|
10606
9007
|
export declare type ITeamInvitationEmailVariablesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['TeamInvitationEmailVariables'] = IResolversParentTypes['TeamInvitationEmailVariables']> = {
|
10607
9008
|
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10608
9009
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
@@ -10677,6 +9078,12 @@ export declare type IUserAccountRemovedEventResolvers<ContextType = MyContext, P
|
|
10677
9078
|
export declare type IUserAuth0InfoResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserAuth0Info'] = IResolversParentTypes['UserAuth0Info']> = {
|
10678
9079
|
auth0Id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10679
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>;
|
10680
9087
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10681
9088
|
};
|
10682
9089
|
export declare type IUserAuth0SessionDeviceInfoResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserAuth0SessionDeviceInfo'] = IResolversParentTypes['UserAuth0SessionDeviceInfo']> = {
|
@@ -10788,6 +9195,10 @@ export declare type IUserProfileResolvers<ContextType = MyContext, ParentType ex
|
|
10788
9195
|
nonce?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10789
9196
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10790
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
|
+
};
|
10791
9202
|
export declare type IUserSettingsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserSettings'] = IResolversParentTypes['UserSettings']> = {
|
10792
9203
|
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
10793
9204
|
latestSettings?: Resolver<Maybe<IResolversTypes['Settings']>, ParentType, ContextType>;
|
@@ -10831,25 +9242,15 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
10831
9242
|
AccountService?: IAccountServiceResolvers<ContextType>;
|
10832
9243
|
AccountTeam?: IAccountTeamResolvers<ContextType>;
|
10833
9244
|
ActivityRecord?: IActivityRecordResolvers<ContextType>;
|
10834
|
-
AddressType?: IAddressTypeResolvers<ContextType>;
|
10835
9245
|
AdminIdeSettings?: IAdminIdeSettingsResolvers<ContextType>;
|
10836
9246
|
AnyObject?: GraphQLScalarType;
|
10837
9247
|
ApplicationPolicy?: IApplicationPolicyResolvers<ContextType>;
|
10838
9248
|
ApplicationRolePermission?: IApplicationRolePermissionResolvers<ContextType>;
|
10839
9249
|
ApplicationSettings?: IApplicationSettingsResolvers<ContextType>;
|
10840
|
-
AsanaConnection?: IAsanaConnectionResolvers<ContextType>;
|
10841
|
-
AsanaConnectionState?: IAsanaConnectionStateResolvers<ContextType>;
|
10842
|
-
AsanaProjects?: IAsanaProjectsResolvers<ContextType>;
|
10843
|
-
AsanaUser?: IAsanaUserResolvers<ContextType>;
|
10844
|
-
AsanaWorkspaces?: IAsanaWorkspacesResolvers<ContextType>;
|
10845
9250
|
Auth0Identity?: IAuth0IdentityResolvers<ContextType>;
|
10846
9251
|
Auth0IdentityProfileData?: IAuth0IdentityProfileDataResolvers<ContextType>;
|
10847
9252
|
AuthTokens?: IAuthTokensResolvers<ContextType>;
|
10848
9253
|
AuthUser?: IAuthUserResolvers<ContextType>;
|
10849
|
-
Client?: IClientResolvers<ContextType>;
|
10850
|
-
ClientCreatedEvent?: IClientCreatedEventResolvers<ContextType>;
|
10851
|
-
ClientDeletedEvent?: IClientDeletedEventResolvers<ContextType>;
|
10852
|
-
ClientPhone?: IClientPhoneResolvers<ContextType>;
|
10853
9254
|
Configuration?: IConfigurationResolvers<ContextType>;
|
10854
9255
|
ConfigurationData?: IConfigurationDataResolvers<ContextType>;
|
10855
9256
|
ConfigurationExtensionInfo?: IConfigurationExtensionInfoResolvers<ContextType>;
|
@@ -10864,7 +9265,6 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
10864
9265
|
ContributionSettings?: IContributionSettingsResolvers<ContextType>;
|
10865
9266
|
ContributionSettingsProperties?: IContributionSettingsPropertiesResolvers<ContextType>;
|
10866
9267
|
Country?: ICountryResolvers<ContextType>;
|
10867
|
-
CustomerInvoice?: ICustomerInvoiceResolvers<ContextType>;
|
10868
9268
|
Date?: GraphQLScalarType;
|
10869
9269
|
DateTime?: GraphQLScalarType;
|
10870
9270
|
DefaultConfiguration?: IDefaultConfigurationResolvers<ContextType>;
|
@@ -10900,19 +9300,14 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
10900
9300
|
IntegraitonConfigurationId?: IIntegraitonConfigurationIdResolvers<ContextType>;
|
10901
9301
|
IntegrationConfiguration?: IIntegrationConfigurationResolvers<ContextType>;
|
10902
9302
|
InviteMember?: IInviteMemberResolvers<ContextType>;
|
10903
|
-
InvoiceCreatedEvent?: IInvoiceCreatedEventResolvers<ContextType>;
|
10904
|
-
InvoiceDeletedEvent?: IInvoiceDeletedEventResolvers<ContextType>;
|
10905
|
-
InvoiceType?: IInvoiceTypeResolvers<ContextType>;
|
10906
9303
|
JSON?: GraphQLScalarType;
|
10907
9304
|
JSONObject?: GraphQLScalarType;
|
10908
9305
|
LoginError?: ILoginErrorResolvers<ContextType>;
|
10909
9306
|
MachineConfiguration?: IMachineConfigurationResolvers<ContextType>;
|
10910
9307
|
MachineSettings?: IMachineSettingsResolvers<ContextType>;
|
10911
|
-
MemberInvoice?: IMemberInvoiceResolvers<ContextType>;
|
10912
9308
|
MemorySettings?: IMemorySettingsResolvers<ContextType>;
|
10913
9309
|
MenuItem?: IMenuItemResolvers<ContextType>;
|
10914
9310
|
Mutation?: IMutationResolvers<ContextType>;
|
10915
|
-
NameType?: INameTypeResolvers<ContextType>;
|
10916
9311
|
Node?: INodeResolvers<ContextType>;
|
10917
9312
|
Observable?: GraphQLScalarType;
|
10918
9313
|
OrgMember?: IOrgMemberResolvers<ContextType>;
|
@@ -10941,6 +9336,7 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
10941
9336
|
PermissionSubject?: IPermissionSubjectResolvers<ContextType>;
|
10942
9337
|
PhoneNumber?: IPhoneNumberResolvers<ContextType>;
|
10943
9338
|
PolicySubject?: IPolicySubjectResolvers<ContextType>;
|
9339
|
+
PopupIntegrationAuthorization?: IPopupIntegrationAuthorizationResolvers<ContextType>;
|
10944
9340
|
Position?: IPositionResolvers<ContextType>;
|
10945
9341
|
PreferenceItem?: IPreferenceItemResolvers<ContextType>;
|
10946
9342
|
Preference_Account?: IPreference_AccountResolvers<ContextType>;
|
@@ -10955,13 +9351,6 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
10955
9351
|
PreferencesInput?: IPreferencesInputResolvers<ContextType>;
|
10956
9352
|
PreferencesResponse?: IPreferencesResponseResolvers<ContextType>;
|
10957
9353
|
PreferencesType?: IPreferencesTypeResolvers<ContextType>;
|
10958
|
-
ProjectCreatedEvent?: IProjectCreatedEventResolvers<ContextType>;
|
10959
|
-
ProjectDeletedEvent?: IProjectDeletedEventResolvers<ContextType>;
|
10960
|
-
ProjectInvoice?: IProjectInvoiceResolvers<ContextType>;
|
10961
|
-
ProjectParameters?: IProjectParametersResolvers<ContextType>;
|
10962
|
-
ProjectSource?: IProjectSourceResolvers<ContextType>;
|
10963
|
-
Project_Output?: IProject_OutputResolvers<ContextType>;
|
10964
|
-
Projects?: IProjectsResolvers<ContextType>;
|
10965
9354
|
Query?: IQueryResolvers<ContextType>;
|
10966
9355
|
Range?: IRangeResolvers<ContextType>;
|
10967
9356
|
ResourceAccessRole?: IResourceAccessRoleResolvers<ContextType>;
|
@@ -10977,14 +9366,12 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
10977
9366
|
SettingsGroup?: ISettingsGroupResolvers<ContextType>;
|
10978
9367
|
SettingsSection?: ISettingsSectionResolvers<ContextType>;
|
10979
9368
|
SettingsSubject?: ISettingsSubjectResolvers<ContextType>;
|
10980
|
-
SocialConnect?: ISocialConnectResolvers<ContextType>;
|
10981
9369
|
SshKey?: ISshKeyResolvers<ContextType>;
|
10982
9370
|
SshKeyModel?: ISshKeyModelResolvers<ContextType>;
|
10983
9371
|
SshKeyService?: ISshKeyServiceResolvers<ContextType>;
|
10984
9372
|
SshKeySettings?: ISshKeySettingsResolvers<ContextType>;
|
10985
9373
|
SubscribedOrganizationData?: ISubscribedOrganizationDataResolvers<ContextType>;
|
10986
9374
|
Subscription?: ISubscriptionResolvers<ContextType>;
|
10987
|
-
Task?: ITaskResolvers<ContextType>;
|
10988
9375
|
TeamInvitationEmailVariables?: ITeamInvitationEmailVariablesResolvers<ContextType>;
|
10989
9376
|
TeamMember?: ITeamMemberResolvers<ContextType>;
|
10990
9377
|
TeamService?: ITeamServiceResolvers<ContextType>;
|
@@ -10996,6 +9383,7 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
10996
9383
|
UserAccountCreatedEvent?: IUserAccountCreatedEventResolvers<ContextType>;
|
10997
9384
|
UserAccountRemovedEvent?: IUserAccountRemovedEventResolvers<ContextType>;
|
10998
9385
|
UserAuth0Info?: IUserAuth0InfoResolvers<ContextType>;
|
9386
|
+
UserAuth0Integrations?: IUserAuth0IntegrationsResolvers<ContextType>;
|
10999
9387
|
UserAuth0SessionDeviceInfo?: IUserAuth0SessionDeviceInfoResolvers<ContextType>;
|
11000
9388
|
UserAuth0SessionInfo?: IUserAuth0SessionInfoResolvers<ContextType>;
|
11001
9389
|
UserConfiguration?: IUserConfigurationResolvers<ContextType>;
|
@@ -11005,6 +9393,7 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
11005
9393
|
UserOrg?: IUserOrgResolvers<ContextType>;
|
11006
9394
|
UserPreviousValues?: IUserPreviousValuesResolvers<ContextType>;
|
11007
9395
|
UserProfile?: IUserProfileResolvers<ContextType>;
|
9396
|
+
UserSessionId?: IUserSessionIdResolvers<ContextType>;
|
11008
9397
|
UserSettings?: IUserSettingsResolvers<ContextType>;
|
11009
9398
|
UserState?: IUserStateResolvers<ContextType>;
|
11010
9399
|
UserToken?: IUserTokenResolvers<ContextType>;
|