@adminide-stack/core 9.0.6-alpha.6 → 9.1.1-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/core/configurations/events/ConfigurationChangeEvent.js +1 -1
- package/lib/core/configurations/events/ConfigurationChangeEvent.js.map +1 -1
- package/lib/core/configurations/helpers/configuration.js +1 -1
- package/lib/core/configurations/helpers/configuration.js.map +1 -1
- package/lib/core/organization/configuration.js +1 -1
- package/lib/core/organization/configuration.js.map +1 -1
- package/lib/index.d.ts +1 -0
- package/lib/index.js +1 -1
- package/lib/interfaces/configuration/configuration.d.ts +7 -0
- package/lib/interfaces/configuration/configuration.js.map +1 -1
- package/lib/interfaces/configuration/configuraton-service.d.ts +8 -0
- package/lib/interfaces/generated/generated-models.d.ts +739 -162
- package/lib/interfaces/generated/generated-models.js +99 -75
- package/lib/interfaces/generated/generated-models.js.map +1 -1
- package/lib/interfaces/index.d.ts +1 -0
- package/lib/interfaces/permissions.d.ts +10 -0
- package/lib/interfaces/permissions.js +6 -0
- package/lib/interfaces/permissions.js.map +1 -0
- package/lib/interfaces/policy.d.ts +2 -0
- package/lib/interfaces/utils.d.ts +6 -0
- package/lib/modules/account-api/enums/index.d.ts +1 -0
- package/lib/modules/account-api/enums/index.js +1 -0
- package/lib/modules/account-api/enums/index.js.map +1 -1
- package/lib/services/abstract-configuration.d.ts +2 -1
- package/lib/services/abstract-configuration.js.map +1 -1
- package/lib/services/abstract-organization-context-service.js +1 -1
- package/lib/services/abstract-organization-context-service.js.map +1 -1
- package/lib/utils/generate-uri.js +1 -1
- package/lib/utils/generate-uri.js.map +1 -1
- package/lib/utils/generated-settings-id.js +1 -1
- package/lib/utils/generated-settings-id.js.map +1 -1
- package/lib/utils/roles-utils.js +1 -1
- package/lib/utils/roles-utils.js.map +1 -1
- package/lib/vscodeExport/index.d.ts +1 -0
- package/package.json +2 -2
@@ -379,7 +379,7 @@ export type IAuthTokens = {
|
|
379
379
|
/** AuthUser */
|
380
380
|
export type IAuthUser = IIUser & {
|
381
381
|
__typename?: 'AuthUser';
|
382
|
-
|
382
|
+
authUserId?: Maybe<Scalars['String']['output']>;
|
383
383
|
email?: Maybe<Scalars['String']['output']>;
|
384
384
|
emailVerified?: Maybe<Scalars['String']['output']>;
|
385
385
|
familyName?: Maybe<Scalars['String']['output']>;
|
@@ -390,7 +390,7 @@ export type IAuthUser = IIUser & {
|
|
390
390
|
username?: Maybe<Scalars['String']['output']>;
|
391
391
|
};
|
392
392
|
export type IAuthUserInput = {
|
393
|
-
|
393
|
+
authUserId?: InputMaybe<Scalars['String']['input']>;
|
394
394
|
email?: InputMaybe<Scalars['String']['input']>;
|
395
395
|
emailVerified?: InputMaybe<Scalars['String']['input']>;
|
396
396
|
familyName?: InputMaybe<Scalars['String']['input']>;
|
@@ -521,9 +521,9 @@ export type IBaseAccountServiceUpdateUserAccountArgs = {
|
|
521
521
|
};
|
522
522
|
/** Base Account Service */
|
523
523
|
export type IBaseAccountServiceValidateUserEmailVerificationTokenArgs = {
|
524
|
+
authUserId: Scalars['String']['input'];
|
524
525
|
code: Scalars['String']['input'];
|
525
526
|
email: Scalars['String']['input'];
|
526
|
-
userAuth0Id: Scalars['String']['input'];
|
527
527
|
};
|
528
528
|
/** Base Account Service */
|
529
529
|
export type IBaseAccountServiceVerifyUserEmailVerificationTokenArgs = {
|
@@ -629,10 +629,12 @@ export type IBaseTeamServiceSendProjectNotificationArgs = {
|
|
629
629
|
export type IBaseTeamServiceUpdateTeamArgs = {
|
630
630
|
team?: InputMaybe<ITeamUpdateRequest>;
|
631
631
|
};
|
632
|
-
export
|
633
|
-
|
634
|
-
|
635
|
-
|
632
|
+
export type IBillingPermissions = {
|
633
|
+
__typename?: 'BillingPermissions';
|
634
|
+
paymentMethods?: Maybe<IPaymentMethodsPermissions>;
|
635
|
+
paymentProfile?: Maybe<IPaymentProfilePermissions>;
|
636
|
+
subscriptions?: Maybe<ISubscriptionsPermissions>;
|
637
|
+
};
|
636
638
|
export type ICities = {
|
637
639
|
__typename?: 'Cities';
|
638
640
|
data?: Maybe<Array<Maybe<ICity>>>;
|
@@ -721,6 +723,19 @@ export declare enum IClientContainerService {
|
|
721
723
|
IPreferenceService = "IPreferenceService",
|
722
724
|
ITeamKeyContextService = "ITeamKeyContextService"
|
723
725
|
}
|
726
|
+
export type IClientLevelPermissions = {
|
727
|
+
__typename?: 'ClientLevelPermissions';
|
728
|
+
others?: Maybe<IClientPermissions>;
|
729
|
+
self?: Maybe<IClientPermissions>;
|
730
|
+
};
|
731
|
+
export type IClientPermissions = {
|
732
|
+
__typename?: 'ClientPermissions';
|
733
|
+
create?: Maybe<IPermissionType>;
|
734
|
+
delete?: Maybe<IPermissionType>;
|
735
|
+
edit?: Maybe<IPermissionType>;
|
736
|
+
manage?: Maybe<IPermissionType>;
|
737
|
+
view?: Maybe<IPermissionType>;
|
738
|
+
};
|
724
739
|
export declare enum IClientTypes {
|
725
740
|
Business = "Business",
|
726
741
|
Individuals = "Individuals"
|
@@ -797,6 +812,7 @@ export type IConfigurationOverrides = {
|
|
797
812
|
overrideIdentifier?: Maybe<Scalars['String']['output']>;
|
798
813
|
resource?: Maybe<Scalars['URI']['output']>;
|
799
814
|
};
|
815
|
+
/** Input type for configuration overrides, providing flexibility for user-specific or external modifications. */
|
800
816
|
export type IConfigurationOverridesInput = {
|
801
817
|
externalResource?: InputMaybe<Scalars['URI']['input']>;
|
802
818
|
overrideIdentifier?: InputMaybe<Scalars['String']['input']>;
|
@@ -1253,6 +1269,12 @@ export type IIUserMetadata = {
|
|
1253
1269
|
work_email?: Maybe<Scalars['String']['output']>;
|
1254
1270
|
zip_code?: Maybe<Scalars['Int']['output']>;
|
1255
1271
|
};
|
1272
|
+
export type IInboxPermissions = {
|
1273
|
+
__typename?: 'InboxPermissions';
|
1274
|
+
othersThreads?: Maybe<IOthersThreadsPermissions>;
|
1275
|
+
posts?: Maybe<IPostsPermissions>;
|
1276
|
+
threads?: Maybe<IThreadsPermissions>;
|
1277
|
+
};
|
1256
1278
|
export type IIntegraitonConfigurationId = {
|
1257
1279
|
__typename?: 'IntegraitonConfigurationId';
|
1258
1280
|
id?: Maybe<Scalars['String']['output']>;
|
@@ -1347,6 +1369,17 @@ export type ILinkedIdentity = {
|
|
1347
1369
|
provider?: Maybe<Scalars['String']['output']>;
|
1348
1370
|
user_id?: Maybe<Scalars['String']['output']>;
|
1349
1371
|
};
|
1372
|
+
export type ILoginDeviceCredential = {
|
1373
|
+
__typename?: 'LoginDeviceCredential';
|
1374
|
+
client_id?: Maybe<Scalars['String']['output']>;
|
1375
|
+
device_Id?: Maybe<Scalars['String']['output']>;
|
1376
|
+
device_name?: Maybe<Scalars['String']['output']>;
|
1377
|
+
id?: Maybe<Scalars['String']['output']>;
|
1378
|
+
last_ip?: Maybe<Scalars['String']['output']>;
|
1379
|
+
last_used?: Maybe<Scalars['String']['output']>;
|
1380
|
+
type?: Maybe<Scalars['AnyObject']['output']>;
|
1381
|
+
user_id?: Maybe<Scalars['String']['output']>;
|
1382
|
+
};
|
1350
1383
|
export type ILoginError = {
|
1351
1384
|
__typename?: 'LoginError';
|
1352
1385
|
error?: Maybe<Scalars['AnyObject']['output']>;
|
@@ -1395,6 +1428,14 @@ export declare enum IMailTemplateId {
|
|
1395
1428
|
UserPasswordReset = "USER_PASSWORD_RESET",
|
1396
1429
|
Dummy = "dummy"
|
1397
1430
|
}
|
1431
|
+
export type IMemberPermissions = {
|
1432
|
+
__typename?: 'MemberPermissions';
|
1433
|
+
create?: Maybe<IPermissionType>;
|
1434
|
+
delete?: Maybe<IPermissionType>;
|
1435
|
+
edit?: Maybe<IPermissionType>;
|
1436
|
+
manage?: Maybe<IPermissionType>;
|
1437
|
+
view?: Maybe<IPermissionType>;
|
1438
|
+
};
|
1398
1439
|
export type IMemorySettings = IISettingsSubject & {
|
1399
1440
|
__typename?: 'MemorySettings';
|
1400
1441
|
/** The ID. */
|
@@ -1433,7 +1474,7 @@ export declare enum IMenuPosition {
|
|
1433
1474
|
export declare enum IMoleculerCronServiceName {
|
1434
1475
|
Dummy = "dummy"
|
1435
1476
|
}
|
1436
|
-
/**
|
1477
|
+
/** All Moleculer Topic names are extended from this. */
|
1437
1478
|
export declare enum IMoleculerServiceName {
|
1438
1479
|
AccountOrganization = "AccountOrganization",
|
1439
1480
|
AccountTeam = "AccountTeam",
|
@@ -1449,6 +1490,7 @@ export declare enum IMoleculerServiceName {
|
|
1449
1490
|
PaypalService = "PaypalService",
|
1450
1491
|
StripeService = "StripeService",
|
1451
1492
|
UserBroadcaster = "UserBroadcaster",
|
1493
|
+
UserService = "UserService",
|
1452
1494
|
Dummy = "dummy",
|
1453
1495
|
/** Actions */
|
1454
1496
|
OnConfigurationUpdated = "onConfigurationUpdated"
|
@@ -1536,6 +1578,10 @@ export type IMutation = {
|
|
1536
1578
|
updateConfiguration?: Maybe<Scalars['Boolean']['output']>;
|
1537
1579
|
updateConfigurationPolicyValue?: Maybe<Scalars['Boolean']['output']>;
|
1538
1580
|
updateConfigurationPolicyValueByUri?: Maybe<Scalars['Boolean']['output']>;
|
1581
|
+
/**
|
1582
|
+
* Updates the configuration value for a specified key, with optional overrides.
|
1583
|
+
* This mutation allows the modification of configuration values associated with specific targets (e.g., organization or account settings).
|
1584
|
+
*/
|
1539
1585
|
updateConfigurationValue?: Maybe<IConfiguration>;
|
1540
1586
|
updateConfigurationValueByUri?: Maybe<Scalars['Boolean']['output']>;
|
1541
1587
|
updateContext?: Maybe<Scalars['Boolean']['output']>;
|
@@ -2092,6 +2138,27 @@ export type IOrganizationNotificationValues = {
|
|
2092
2138
|
notifyOrgManagersOnUserJoined?: InputMaybe<Scalars['Boolean']['input']>;
|
2093
2139
|
notifyOrgOwnerOnUserJoined?: InputMaybe<Scalars['Boolean']['input']>;
|
2094
2140
|
};
|
2141
|
+
export type IOrganizationPermissions = {
|
2142
|
+
__typename?: 'OrganizationPermissions';
|
2143
|
+
billing?: Maybe<IBillingPermissions>;
|
2144
|
+
clients?: Maybe<IClientLevelPermissions>;
|
2145
|
+
create?: Maybe<IPermissionType>;
|
2146
|
+
delete?: Maybe<IPermissionType>;
|
2147
|
+
edit?: Maybe<IPermissionType>;
|
2148
|
+
inviteMember?: Maybe<IPermissionType>;
|
2149
|
+
manage?: Maybe<IPermissionType>;
|
2150
|
+
members?: Maybe<IMemberPermissions>;
|
2151
|
+
permissions?: Maybe<IPermissionPermissions>;
|
2152
|
+
policies?: Maybe<IPolicyPermissions>;
|
2153
|
+
projects?: Maybe<IProjectLevelPermissions>;
|
2154
|
+
reports?: Maybe<IReportPermissions>;
|
2155
|
+
roles?: Maybe<IRolePermissions>;
|
2156
|
+
settings?: Maybe<ISettingPermissions>;
|
2157
|
+
tags?: Maybe<ITagPermissions>;
|
2158
|
+
tasks?: Maybe<ITaskPermissions>;
|
2159
|
+
teams?: Maybe<ITeamPermissions>;
|
2160
|
+
view?: Maybe<IPermissionType>;
|
2161
|
+
};
|
2095
2162
|
export type IOrganizationPolicy = IIConfigurationModel & {
|
2096
2163
|
__typename?: 'OrganizationPolicy';
|
2097
2164
|
contents?: Maybe<Scalars['AnyObject']['output']>;
|
@@ -2100,6 +2167,11 @@ export type IOrganizationPolicy = IIConfigurationModel & {
|
|
2100
2167
|
resource?: Maybe<Scalars['URI']['output']>;
|
2101
2168
|
target?: Maybe<Scalars['Int']['output']>;
|
2102
2169
|
};
|
2170
|
+
export type IOrganizationPreferences = {
|
2171
|
+
__typename?: 'OrganizationPreferences';
|
2172
|
+
project?: Maybe<IPreferenceProject>;
|
2173
|
+
teams?: Maybe<IPreference_Teams>;
|
2174
|
+
};
|
2103
2175
|
export type IOrganizationRemoveRequest = {
|
2104
2176
|
orgName?: InputMaybe<Scalars['String']['input']>;
|
2105
2177
|
requestedUserId?: InputMaybe<Scalars['String']['input']>;
|
@@ -2202,6 +2274,14 @@ export type IOrganizationsDeletedEvent = {
|
|
2202
2274
|
__typename?: 'OrganizationsDeletedEvent';
|
2203
2275
|
deletedOrganizationIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
2204
2276
|
};
|
2277
|
+
export type IOthersThreadsPermissions = {
|
2278
|
+
__typename?: 'OthersThreadsPermissions';
|
2279
|
+
delete?: Maybe<IPermissionType>;
|
2280
|
+
deleteReply?: Maybe<IPermissionType>;
|
2281
|
+
edit?: Maybe<IPermissionType>;
|
2282
|
+
editReply?: Maybe<IPermissionType>;
|
2283
|
+
reply?: Maybe<IPermissionType>;
|
2284
|
+
};
|
2205
2285
|
export type IOverrides = {
|
2206
2286
|
__typename?: 'Overrides';
|
2207
2287
|
contents?: Maybe<Scalars['AnyObject']['output']>;
|
@@ -2212,6 +2292,22 @@ export type IPageInfo = {
|
|
2212
2292
|
__typename?: 'PageInfo';
|
2213
2293
|
hasNextPage: Scalars['Boolean']['output'];
|
2214
2294
|
};
|
2295
|
+
export type IPaymentMethodsPermissions = {
|
2296
|
+
__typename?: 'PaymentMethodsPermissions';
|
2297
|
+
create?: Maybe<IPermissionType>;
|
2298
|
+
delete?: Maybe<IPermissionType>;
|
2299
|
+
edit?: Maybe<IPermissionType>;
|
2300
|
+
manage?: Maybe<IPermissionType>;
|
2301
|
+
view?: Maybe<IPermissionType>;
|
2302
|
+
};
|
2303
|
+
export type IPaymentProfilePermissions = {
|
2304
|
+
__typename?: 'PaymentProfilePermissions';
|
2305
|
+
create?: Maybe<IPermissionType>;
|
2306
|
+
delete?: Maybe<IPermissionType>;
|
2307
|
+
edit?: Maybe<IPermissionType>;
|
2308
|
+
manage?: Maybe<IPermissionType>;
|
2309
|
+
view?: Maybe<IPermissionType>;
|
2310
|
+
};
|
2215
2311
|
export declare enum IPermissionAction {
|
2216
2312
|
Create = "Create",
|
2217
2313
|
Delete = "Delete",
|
@@ -2220,6 +2316,11 @@ export declare enum IPermissionAction {
|
|
2220
2316
|
Manage = "Manage",
|
2221
2317
|
View = "View"
|
2222
2318
|
}
|
2319
|
+
export type IPermissionPermissions = {
|
2320
|
+
__typename?: 'PermissionPermissions';
|
2321
|
+
edit?: Maybe<IPermissionType>;
|
2322
|
+
view?: Maybe<IPermissionType>;
|
2323
|
+
};
|
2223
2324
|
export declare enum IPermissionResource {
|
2224
2325
|
Members = "Members",
|
2225
2326
|
Organization = "Organization",
|
@@ -2244,6 +2345,13 @@ export declare enum IPermissionType {
|
|
2244
2345
|
Deny = "Deny",
|
2245
2346
|
NotSet = "NotSet"
|
2246
2347
|
}
|
2348
|
+
export type IPermissions = {
|
2349
|
+
__typename?: 'Permissions';
|
2350
|
+
billing?: Maybe<IBillingPermissions>;
|
2351
|
+
dummy?: Maybe<Scalars['Int']['output']>;
|
2352
|
+
inbox?: Maybe<IInboxPermissions>;
|
2353
|
+
organization?: Maybe<IOrganizationPermissions>;
|
2354
|
+
};
|
2247
2355
|
export type IPhoneNumber = {
|
2248
2356
|
__typename?: 'PhoneNumber';
|
2249
2357
|
countryCode?: Maybe<Scalars['String']['output']>;
|
@@ -2269,6 +2377,11 @@ export type IPolicyConfiguration = IIConfigurationModel & {
|
|
2269
2377
|
resource: Scalars['URI']['output'];
|
2270
2378
|
target?: Maybe<Scalars['Int']['output']>;
|
2271
2379
|
};
|
2380
|
+
export type IPolicyPermissions = {
|
2381
|
+
__typename?: 'PolicyPermissions';
|
2382
|
+
edit?: Maybe<IPermissionType>;
|
2383
|
+
view?: Maybe<IPermissionType>;
|
2384
|
+
};
|
2272
2385
|
export type IPolicySubject = {
|
2273
2386
|
__typename?: 'PolicySubject';
|
2274
2387
|
/** The time when this was created. */
|
@@ -2294,6 +2407,13 @@ export type IPosition = {
|
|
2294
2407
|
character?: Maybe<Scalars['Int']['output']>;
|
2295
2408
|
line?: Maybe<Scalars['Int']['output']>;
|
2296
2409
|
};
|
2410
|
+
export type IPostsPermissions = {
|
2411
|
+
__typename?: 'PostsPermissions';
|
2412
|
+
create?: Maybe<IPermissionType>;
|
2413
|
+
delete?: Maybe<IPermissionType>;
|
2414
|
+
edit?: Maybe<IPermissionType>;
|
2415
|
+
view?: Maybe<IPermissionType>;
|
2416
|
+
};
|
2297
2417
|
export declare enum IPreDefinedRole {
|
2298
2418
|
Admin = "ADMIN",
|
2299
2419
|
BillingLeader = "BILLING_LEADER",
|
@@ -2317,6 +2437,24 @@ export type IPreferenceItem = {
|
|
2317
2437
|
settings?: Maybe<Scalars['String']['output']>;
|
2318
2438
|
type?: Maybe<Scalars['String']['output']>;
|
2319
2439
|
};
|
2440
|
+
export type IPreferenceProject = {
|
2441
|
+
__typename?: 'PreferenceProject';
|
2442
|
+
billable?: Maybe<Scalars['Boolean']['output']>;
|
2443
|
+
integration?: Maybe<IPreferenceProjectIntegration>;
|
2444
|
+
tags?: Maybe<Scalars['String']['output']>;
|
2445
|
+
visibility?: Maybe<Scalars['String']['output']>;
|
2446
|
+
};
|
2447
|
+
export type IPreferenceProjectIntegration = {
|
2448
|
+
__typename?: 'PreferenceProjectIntegration';
|
2449
|
+
configurationId?: Maybe<Scalars['String']['output']>;
|
2450
|
+
status?: Maybe<IPreferenceProjectIntegrationStatus>;
|
2451
|
+
type?: Maybe<Scalars['String']['output']>;
|
2452
|
+
};
|
2453
|
+
export declare enum IPreferenceProjectIntegrationStatus {
|
2454
|
+
Active = "Active",
|
2455
|
+
Archive = "Archive",
|
2456
|
+
Inactive = "Inactive"
|
2457
|
+
}
|
2320
2458
|
export type IPreference_Account = {
|
2321
2459
|
__typename?: 'Preference_Account';
|
2322
2460
|
default?: Maybe<IPreference_Default>;
|
@@ -2342,16 +2480,6 @@ export type IPreference_Notification = {
|
|
2342
2480
|
onChangeAccountSettings?: Maybe<Scalars['Boolean']['output']>;
|
2343
2481
|
primaryEmail?: Maybe<Scalars['String']['output']>;
|
2344
2482
|
};
|
2345
|
-
export type IPreference_Organization = {
|
2346
|
-
__typename?: 'Preference_Organization';
|
2347
|
-
project?: Maybe<IPreference_Project>;
|
2348
|
-
teams?: Maybe<IPreference_Teams>;
|
2349
|
-
};
|
2350
|
-
export type IPreference_Project = {
|
2351
|
-
__typename?: 'Preference_Project';
|
2352
|
-
tags?: Maybe<Scalars['String']['output']>;
|
2353
|
-
visibility?: Maybe<Scalars['String']['output']>;
|
2354
|
-
};
|
2355
2483
|
export type IPreference_Teams = {
|
2356
2484
|
__typename?: 'Preference_Teams';
|
2357
2485
|
visibility?: Maybe<IVisibility>;
|
@@ -2363,7 +2491,7 @@ export type IPreferences = {
|
|
2363
2491
|
dummy?: Maybe<Scalars['Int']['output']>;
|
2364
2492
|
global?: Maybe<IPreference_Global>;
|
2365
2493
|
integration?: Maybe<IIntegrationPreferences>;
|
2366
|
-
organization?: Maybe<
|
2494
|
+
organization?: Maybe<IOrganizationPreferences>;
|
2367
2495
|
};
|
2368
2496
|
export type IPreferencesInput = {
|
2369
2497
|
__typename?: 'PreferencesInput';
|
@@ -2399,6 +2527,29 @@ export type IPreferencesType = {
|
|
2399
2527
|
data?: Maybe<Array<Maybe<IContributionSettings>>>;
|
2400
2528
|
type?: Maybe<Scalars['String']['output']>;
|
2401
2529
|
};
|
2530
|
+
export type IProjectLevelPermissions = {
|
2531
|
+
__typename?: 'ProjectLevelPermissions';
|
2532
|
+
others?: Maybe<IProjectPermissions>;
|
2533
|
+
self?: Maybe<IProjectPermissions>;
|
2534
|
+
status?: Maybe<IProjectStatusLevelPermissions>;
|
2535
|
+
};
|
2536
|
+
export type IProjectPermissions = {
|
2537
|
+
__typename?: 'ProjectPermissions';
|
2538
|
+
create?: Maybe<IPermissionType>;
|
2539
|
+
delete?: Maybe<IPermissionType>;
|
2540
|
+
edit?: Maybe<IPermissionType>;
|
2541
|
+
manage?: Maybe<IPermissionType>;
|
2542
|
+
view?: Maybe<IPermissionType>;
|
2543
|
+
};
|
2544
|
+
export type IProjectStatusLevelPermissions = {
|
2545
|
+
__typename?: 'ProjectStatusLevelPermissions';
|
2546
|
+
others?: Maybe<IProjectStatusPermissions>;
|
2547
|
+
self?: Maybe<IProjectStatusPermissions>;
|
2548
|
+
};
|
2549
|
+
export type IProjectStatusPermissions = {
|
2550
|
+
__typename?: 'ProjectStatusPermissions';
|
2551
|
+
view?: Maybe<IPermissionType>;
|
2552
|
+
};
|
2402
2553
|
export type IQuery = {
|
2403
2554
|
__typename?: 'Query';
|
2404
2555
|
/**
|
@@ -2558,10 +2709,10 @@ export type IQueryExternalAccountsArgs = {
|
|
2558
2709
|
first?: InputMaybe<Scalars['Int']['input']>;
|
2559
2710
|
};
|
2560
2711
|
export type IQueryFetchAuth0UserArgs = {
|
2561
|
-
|
2712
|
+
authUserId: Scalars['String']['input'];
|
2562
2713
|
};
|
2563
2714
|
export type IQueryFetchUserAuthorizedDevicesArgs = {
|
2564
|
-
|
2715
|
+
authUserId: Scalars['String']['input'];
|
2565
2716
|
};
|
2566
2717
|
export type IQueryFilterIntegrationConfigurationArgs = {
|
2567
2718
|
filter?: InputMaybe<IIntegrationConfigurationFilterInput>;
|
@@ -2652,7 +2803,7 @@ export type IQueryGetUserAccountArgs = {
|
|
2652
2803
|
userId: Scalars['String']['input'];
|
2653
2804
|
};
|
2654
2805
|
export type IQueryGetUserAccountByAuth0IdArgs = {
|
2655
|
-
|
2806
|
+
authUserId: Scalars['String']['input'];
|
2656
2807
|
};
|
2657
2808
|
export type IQueryGetUserOrganizationsArgs = {
|
2658
2809
|
userId?: InputMaybe<Scalars['String']['input']>;
|
@@ -2753,6 +2904,10 @@ export type IRenewAuthUsingRefreshToken = {
|
|
2753
2904
|
expiresIn?: Maybe<Scalars['Int']['output']>;
|
2754
2905
|
idToken?: Maybe<Scalars['String']['output']>;
|
2755
2906
|
};
|
2907
|
+
export type IReportPermissions = {
|
2908
|
+
__typename?: 'ReportPermissions';
|
2909
|
+
view?: Maybe<IPermissionType>;
|
2910
|
+
};
|
2756
2911
|
export type IResourceAccessRole = {
|
2757
2912
|
__typename?: 'ResourceAccessRole';
|
2758
2913
|
accessRoles?: Maybe<Array<Maybe<IAccessRole>>>;
|
@@ -2825,6 +2980,11 @@ export type IRoleInput = {
|
|
2825
2980
|
roleName?: InputMaybe<Scalars['String']['input']>;
|
2826
2981
|
target: Scalars['Int']['input'];
|
2827
2982
|
};
|
2983
|
+
export type IRolePermissions = {
|
2984
|
+
__typename?: 'RolePermissions';
|
2985
|
+
edit?: Maybe<IPermissionType>;
|
2986
|
+
view?: Maybe<IPermissionType>;
|
2987
|
+
};
|
2828
2988
|
export type IRouteData = {
|
2829
2989
|
__typename?: 'RouteData';
|
2830
2990
|
exact?: Maybe<Scalars['Boolean']['output']>;
|
@@ -2837,6 +2997,11 @@ export declare enum IRouteParams {
|
|
2837
2997
|
OrgName = "orgName",
|
2838
2998
|
TeamName = "teamName"
|
2839
2999
|
}
|
3000
|
+
export type ISettingPermissions = {
|
3001
|
+
__typename?: 'SettingPermissions';
|
3002
|
+
edit?: Maybe<IPermissionType>;
|
3003
|
+
view?: Maybe<IPermissionType>;
|
3004
|
+
};
|
2840
3005
|
export declare enum ISettingValueType {
|
2841
3006
|
Boolean = "Boolean",
|
2842
3007
|
Complex = "Complex",
|
@@ -2962,6 +3127,30 @@ export type ISubscriptionSubscribeToPermissionUpdateArgs = {
|
|
2962
3127
|
export type ISubscriptionSubscribeToPolicyUpdateArgs = {
|
2963
3128
|
orgName?: InputMaybe<Scalars['String']['input']>;
|
2964
3129
|
};
|
3130
|
+
export type ISubscriptionsPermissions = {
|
3131
|
+
__typename?: 'SubscriptionsPermissions';
|
3132
|
+
create?: Maybe<IPermissionType>;
|
3133
|
+
delete?: Maybe<IPermissionType>;
|
3134
|
+
edit?: Maybe<IPermissionType>;
|
3135
|
+
manage?: Maybe<IPermissionType>;
|
3136
|
+
view?: Maybe<IPermissionType>;
|
3137
|
+
};
|
3138
|
+
export type ITagPermissions = {
|
3139
|
+
__typename?: 'TagPermissions';
|
3140
|
+
create?: Maybe<IPermissionType>;
|
3141
|
+
delete?: Maybe<IPermissionType>;
|
3142
|
+
edit?: Maybe<IPermissionType>;
|
3143
|
+
manage?: Maybe<IPermissionType>;
|
3144
|
+
view?: Maybe<IPermissionType>;
|
3145
|
+
};
|
3146
|
+
export type ITaskPermissions = {
|
3147
|
+
__typename?: 'TaskPermissions';
|
3148
|
+
create?: Maybe<IPermissionType>;
|
3149
|
+
delete?: Maybe<IPermissionType>;
|
3150
|
+
edit?: Maybe<IPermissionType>;
|
3151
|
+
manage?: Maybe<IPermissionType>;
|
3152
|
+
view?: Maybe<IPermissionType>;
|
3153
|
+
};
|
2965
3154
|
export type ITeamCreateRequest = {
|
2966
3155
|
description?: InputMaybe<Scalars['String']['input']>;
|
2967
3156
|
emails?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
@@ -3001,6 +3190,17 @@ export type ITeamMemberInput = {
|
|
3001
3190
|
status?: InputMaybe<Scalars['String']['input']>;
|
3002
3191
|
userId?: InputMaybe<Scalars['String']['input']>;
|
3003
3192
|
};
|
3193
|
+
export type ITeamPermissions = {
|
3194
|
+
__typename?: 'TeamPermissions';
|
3195
|
+
accessDashboard?: Maybe<IPermissionType>;
|
3196
|
+
create?: Maybe<IPermissionType>;
|
3197
|
+
delete?: Maybe<IPermissionType>;
|
3198
|
+
edit?: Maybe<IPermissionType>;
|
3199
|
+
inviteMember?: Maybe<IPermissionType>;
|
3200
|
+
manage?: Maybe<IPermissionType>;
|
3201
|
+
view?: Maybe<IPermissionType>;
|
3202
|
+
viewOthers?: Maybe<IPermissionType>;
|
3203
|
+
};
|
3004
3204
|
export type ITeamRemoveRequest = {
|
3005
3205
|
emails?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
3006
3206
|
id: Scalars['String']['input'];
|
@@ -3045,6 +3245,18 @@ export type ITerritorialStateUpdateInput = {
|
|
3045
3245
|
country: Scalars['Int']['input'];
|
3046
3246
|
name?: InputMaybe<Scalars['String']['input']>;
|
3047
3247
|
};
|
3248
|
+
export type IThreadsPermissions = {
|
3249
|
+
__typename?: 'ThreadsPermissions';
|
3250
|
+
assignThreads?: Maybe<IPermissionType>;
|
3251
|
+
delete?: Maybe<IPermissionType>;
|
3252
|
+
deleteThreadReply?: Maybe<IPermissionType>;
|
3253
|
+
edit?: Maybe<IPermissionType>;
|
3254
|
+
editThreadReply?: Maybe<IPermissionType>;
|
3255
|
+
manageSupportServices?: Maybe<IPermissionType>;
|
3256
|
+
reply?: Maybe<IPermissionType>;
|
3257
|
+
view?: Maybe<IPermissionType>;
|
3258
|
+
viewThreadReplies?: Maybe<IPermissionType>;
|
3259
|
+
};
|
3048
3260
|
export declare enum ITokenTypesEnum {
|
3049
3261
|
EmailVerification = "EMAIL_VERIFICATION",
|
3050
3262
|
PasswordReset = "PASSWORD_RESET"
|
@@ -3179,7 +3391,7 @@ export type IUserAccountWhere = {
|
|
3179
3391
|
};
|
3180
3392
|
export type IUserAuth0Info = {
|
3181
3393
|
__typename?: 'UserAuth0Info';
|
3182
|
-
|
3394
|
+
authUserId?: Maybe<Scalars['String']['output']>;
|
3183
3395
|
integrations?: Maybe<Array<Maybe<IUserAuth0Integrations>>>;
|
3184
3396
|
sessionInfo?: Maybe<Array<Maybe<IUserAuth0SessionInfo>>>;
|
3185
3397
|
};
|
@@ -3244,6 +3456,7 @@ export type IUserContext = {
|
|
3244
3456
|
identity?: Maybe<Scalars['AnyObject']['output']>;
|
3245
3457
|
namespace?: Maybe<Scalars['String']['output']>;
|
3246
3458
|
orgId?: Maybe<Scalars['String']['output']>;
|
3459
|
+
orgName?: Maybe<Scalars['String']['output']>;
|
3247
3460
|
orgRole?: Maybe<Scalars['String']['output']>;
|
3248
3461
|
orgSettingUri?: Maybe<Scalars['URI']['output']>;
|
3249
3462
|
organization: IOrganization;
|
@@ -3308,7 +3521,7 @@ export type IUserPasswordResetInput = {
|
|
3308
3521
|
};
|
3309
3522
|
export type IUserPreviousValues = {
|
3310
3523
|
__typename?: 'UserPreviousValues';
|
3311
|
-
|
3524
|
+
authUserId?: Maybe<Scalars['String']['output']>;
|
3312
3525
|
createdAt: Scalars['DateTime']['output'];
|
3313
3526
|
emailSubscription?: Maybe<Scalars['Boolean']['output']>;
|
3314
3527
|
id: Scalars['ID']['output'];
|
@@ -3339,6 +3552,7 @@ export type IUserProfile = IIAuth0Token & IIAuth0User & IIAuth0UserProfile & {
|
|
3339
3552
|
nonce?: Maybe<Scalars['String']['output']>;
|
3340
3553
|
phone_number?: Maybe<Scalars['String']['output']>;
|
3341
3554
|
picture: Scalars['String']['output'];
|
3555
|
+
provider?: Maybe<Scalars['String']['output']>;
|
3342
3556
|
sub?: Maybe<Scalars['String']['output']>;
|
3343
3557
|
updated_at: Scalars['String']['output'];
|
3344
3558
|
user_id: Scalars['String']['output'];
|
@@ -3355,7 +3569,29 @@ export type IUserRole = IIConfigurationModel & {
|
|
3355
3569
|
target?: Maybe<Scalars['Int']['output']>;
|
3356
3570
|
};
|
3357
3571
|
export declare enum IUserServiceAction {
|
3358
|
-
|
3572
|
+
DeleteUserAuthorizedDevice = "deleteUserAuthorizedDevice",
|
3573
|
+
FetchAuth0User = "fetchAuth0User",
|
3574
|
+
FetchUserAuthSessions = "fetchUserAuthSessions",
|
3575
|
+
FetchUserAuthorizedDevices = "fetchUserAuthorizedDevices",
|
3576
|
+
GetIdentity = "getIdentity",
|
3577
|
+
GetProfile = "getProfile",
|
3578
|
+
GetUserInfo = "getUserInfo",
|
3579
|
+
InitializeAuthorizationCodeFlow = "initializeAuthorizationCodeFlow",
|
3580
|
+
InitializePopupIntegrationAuthorization = "initializePopupIntegrationAuthorization",
|
3581
|
+
InitializeUserSession = "initializeUserSession",
|
3582
|
+
InitiatePasswordResetProcess = "initiatePasswordResetProcess",
|
3583
|
+
OnEmailVerified = "onEmailVerified",
|
3584
|
+
RegisterAuth0UserAndLink = "registerAuth0UserAndLink",
|
3585
|
+
RemoveUserAuthIntegration = "removeUserAuthIntegration",
|
3586
|
+
RemoveUserAuthSession = "removeUserAuthSession",
|
3587
|
+
RenewAuthToken = "renewAuthToken",
|
3588
|
+
RenewUserAuthIntegrationToken = "renewUserAuthIntegrationToken",
|
3589
|
+
ResetUserPassword = "resetUserPassword",
|
3590
|
+
SendEmailVerificationCode = "sendEmailVerificationCode",
|
3591
|
+
UpdateAuth0UserPassword = "updateAuth0UserPassword",
|
3592
|
+
ValidateEmailVerificationCode = "validateEmailVerificationCode",
|
3593
|
+
ValidatePasswordResetOtp = "validatePasswordResetOtp",
|
3594
|
+
VerifyUserPassword = "verifyUserPassword"
|
3359
3595
|
}
|
3360
3596
|
export type IUserSession = {
|
3361
3597
|
__typename?: 'UserSession';
|
@@ -3397,31 +3633,31 @@ export type IUserSettings = IISettingsSubject & {
|
|
3397
3633
|
/** Redux User State */
|
3398
3634
|
export type IUserState = {
|
3399
3635
|
__typename?: 'UserState';
|
3400
|
-
/**
|
3401
|
-
auth0UserId?: Maybe<Scalars['String']['output']>;
|
3402
|
-
/** Inprogress state of Validation */
|
3636
|
+
/** Inprogress state of Validation */
|
3403
3637
|
authIsValidatingToken?: Maybe<Scalars['Boolean']['output']>;
|
3404
|
-
/**
|
3638
|
+
/** Validation of Token is Success */
|
3405
3639
|
authTokenValidationSucces?: Maybe<Scalars['Boolean']['output']>;
|
3406
|
-
/**
|
3640
|
+
/** Auth Service defined ID for the user */
|
3641
|
+
authUserId?: Maybe<Scalars['String']['output']>;
|
3642
|
+
/** Register ID of the associated auth0 user in the Database */
|
3407
3643
|
id?: Maybe<Scalars['String']['output']>;
|
3408
|
-
/**
|
3644
|
+
/** Based on check from the current backend server only */
|
3409
3645
|
isNewlyLoggedIn?: Maybe<Scalars['Boolean']['output']>;
|
3410
|
-
/**
|
3646
|
+
/** Is loading Profile */
|
3411
3647
|
isProfileFetching?: Maybe<Scalars['Boolean']['output']>;
|
3412
|
-
/**
|
3648
|
+
/** True incase of social logged in user */
|
3413
3649
|
isSocialLogin?: Maybe<Scalars['Boolean']['output']>;
|
3414
3650
|
linkedIdentities?: Maybe<Array<Maybe<ILinkedIdentity>>>;
|
3415
3651
|
loggingInProgress?: Maybe<Scalars['Boolean']['output']>;
|
3416
|
-
/**
|
3652
|
+
/** True while Password verify link sending */
|
3417
3653
|
passwordResetProgress?: Maybe<Scalars['Boolean']['output']>;
|
3418
|
-
/**
|
3654
|
+
/** True when Password reset successful */
|
3419
3655
|
passwordResetSuccess?: Maybe<Scalars['Boolean']['output']>;
|
3420
|
-
/**
|
3656
|
+
/** Auth Service generated Profile of the User */
|
3421
3657
|
profile?: Maybe<IUserProfile>;
|
3422
|
-
/**
|
3658
|
+
/** If user have signed in, his status get updated */
|
3423
3659
|
signInEmail?: Maybe<Scalars['String']['output']>;
|
3424
|
-
/**
|
3660
|
+
/** True when Signup is in progress */
|
3425
3661
|
signupInProgress?: Maybe<Scalars['Boolean']['output']>;
|
3426
3662
|
};
|
3427
3663
|
export type IUserToken = {
|
@@ -4032,7 +4268,7 @@ export type IGetUserAccountQuery = {
|
|
4032
4268
|
} | null;
|
4033
4269
|
};
|
4034
4270
|
export type IGetUserAccountByAuth0IdQueryVariables = Exact<{
|
4035
|
-
|
4271
|
+
authUserId: Scalars['String']['input'];
|
4036
4272
|
}>;
|
4037
4273
|
export type IGetUserAccountByAuth0IdQuery = {
|
4038
4274
|
__typename?: 'Query';
|
@@ -7525,7 +7761,7 @@ export declare function useGetUserOrganizationsListQuery(baseOptions?: Apollo.Qu
|
|
7525
7761
|
export declare function useGetUserOrganizationsListLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetUserOrganizationsListQuery, IGetUserOrganizationsListQueryVariables>): Apollo.LazyQueryResultTuple<IGetUserOrganizationsListQuery, Exact<{
|
7526
7762
|
[key: string]: never;
|
7527
7763
|
}>>;
|
7528
|
-
export declare function useGetUserOrganizationsListSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetUserOrganizationsListQuery, IGetUserOrganizationsListQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserOrganizationsListQuery, Exact<{
|
7764
|
+
export declare function useGetUserOrganizationsListSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetUserOrganizationsListQuery, IGetUserOrganizationsListQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserOrganizationsListQuery, Exact<{
|
7529
7765
|
[key: string]: never;
|
7530
7766
|
}>>;
|
7531
7767
|
export type GetUserOrganizationsListQueryHookResult = ReturnType<typeof useGetUserOrganizationsListQuery>;
|
@@ -7560,7 +7796,7 @@ export declare function useDecodeOrganizationInvitationQuery(baseOptions: Apollo
|
|
7560
7796
|
export declare function useDecodeOrganizationInvitationLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IDecodeOrganizationInvitationQuery, IDecodeOrganizationInvitationQueryVariables>): Apollo.LazyQueryResultTuple<IDecodeOrganizationInvitationQuery, Exact<{
|
7561
7797
|
token: Scalars["String"]["input"];
|
7562
7798
|
}>>;
|
7563
|
-
export declare function useDecodeOrganizationInvitationSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IDecodeOrganizationInvitationQuery, IDecodeOrganizationInvitationQueryVariables>): Apollo.UseSuspenseQueryResult<IDecodeOrganizationInvitationQuery, Exact<{
|
7799
|
+
export declare function useDecodeOrganizationInvitationSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IDecodeOrganizationInvitationQuery, IDecodeOrganizationInvitationQueryVariables>): Apollo.UseSuspenseQueryResult<IDecodeOrganizationInvitationQuery, Exact<{
|
7564
7800
|
token: Scalars["String"]["input"];
|
7565
7801
|
}>>;
|
7566
7802
|
export type DecodeOrganizationInvitationQueryHookResult = ReturnType<typeof useDecodeOrganizationInvitationQuery>;
|
@@ -7595,7 +7831,7 @@ export declare function useDecodeOrganizationSharedTokenQuery(baseOptions: Apoll
|
|
7595
7831
|
export declare function useDecodeOrganizationSharedTokenLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IDecodeOrganizationSharedTokenQuery, IDecodeOrganizationSharedTokenQueryVariables>): Apollo.LazyQueryResultTuple<IDecodeOrganizationSharedTokenQuery, Exact<{
|
7596
7832
|
token: Scalars["String"]["input"];
|
7597
7833
|
}>>;
|
7598
|
-
export declare function useDecodeOrganizationSharedTokenSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IDecodeOrganizationSharedTokenQuery, IDecodeOrganizationSharedTokenQueryVariables>): Apollo.UseSuspenseQueryResult<IDecodeOrganizationSharedTokenQuery, Exact<{
|
7834
|
+
export declare function useDecodeOrganizationSharedTokenSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IDecodeOrganizationSharedTokenQuery, IDecodeOrganizationSharedTokenQueryVariables>): Apollo.UseSuspenseQueryResult<IDecodeOrganizationSharedTokenQuery, Exact<{
|
7599
7835
|
token: Scalars["String"]["input"];
|
7600
7836
|
}>>;
|
7601
7837
|
export type DecodeOrganizationSharedTokenQueryHookResult = ReturnType<typeof useDecodeOrganizationSharedTokenQuery>;
|
@@ -7625,7 +7861,7 @@ export declare function useGetAccountsQuery(baseOptions?: Apollo.QueryHookOption
|
|
7625
7861
|
export declare function useGetAccountsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetAccountsQuery, IGetAccountsQueryVariables>): Apollo.LazyQueryResultTuple<IGetAccountsQuery, Exact<{
|
7626
7862
|
where?: InputMaybe<IUserAccountWhere>;
|
7627
7863
|
}>>;
|
7628
|
-
export declare function useGetAccountsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetAccountsQuery, IGetAccountsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetAccountsQuery, Exact<{
|
7864
|
+
export declare function useGetAccountsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetAccountsQuery, IGetAccountsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetAccountsQuery, Exact<{
|
7629
7865
|
where?: InputMaybe<IUserAccountWhere>;
|
7630
7866
|
}>>;
|
7631
7867
|
export type GetAccountsQueryHookResult = ReturnType<typeof useGetAccountsQuery>;
|
@@ -7655,7 +7891,7 @@ export declare function useGetAllCountriesQuery(baseOptions?: Apollo.QueryHookOp
|
|
7655
7891
|
export declare function useGetAllCountriesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetAllCountriesQuery, IGetAllCountriesQueryVariables>): Apollo.LazyQueryResultTuple<IGetAllCountriesQuery, Exact<{
|
7656
7892
|
criteria?: InputMaybe<Scalars["JSON"]["input"]>;
|
7657
7893
|
}>>;
|
7658
|
-
export declare function useGetAllCountriesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetAllCountriesQuery, IGetAllCountriesQueryVariables>): Apollo.UseSuspenseQueryResult<IGetAllCountriesQuery, Exact<{
|
7894
|
+
export declare function useGetAllCountriesSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetAllCountriesQuery, IGetAllCountriesQueryVariables>): Apollo.UseSuspenseQueryResult<IGetAllCountriesQuery, Exact<{
|
7659
7895
|
criteria?: InputMaybe<Scalars["JSON"]["input"]>;
|
7660
7896
|
}>>;
|
7661
7897
|
export type GetAllCountriesQueryHookResult = ReturnType<typeof useGetAllCountriesQuery>;
|
@@ -7684,7 +7920,7 @@ export declare function useGetManageableOrganizationsQuery(baseOptions?: Apollo.
|
|
7684
7920
|
export declare function useGetManageableOrganizationsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetManageableOrganizationsQuery, IGetManageableOrganizationsQueryVariables>): Apollo.LazyQueryResultTuple<IGetManageableOrganizationsQuery, Exact<{
|
7685
7921
|
[key: string]: never;
|
7686
7922
|
}>>;
|
7687
|
-
export declare function useGetManageableOrganizationsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetManageableOrganizationsQuery, IGetManageableOrganizationsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetManageableOrganizationsQuery, Exact<{
|
7923
|
+
export declare function useGetManageableOrganizationsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetManageableOrganizationsQuery, IGetManageableOrganizationsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetManageableOrganizationsQuery, Exact<{
|
7688
7924
|
[key: string]: never;
|
7689
7925
|
}>>;
|
7690
7926
|
export type GetManageableOrganizationsQueryHookResult = ReturnType<typeof useGetManageableOrganizationsQuery>;
|
@@ -7720,7 +7956,7 @@ export declare function useGetOrgInvitationMembersLazyQuery(baseOptions?: Apollo
|
|
7720
7956
|
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
7721
7957
|
orgName?: InputMaybe<Scalars["String"]["input"]>;
|
7722
7958
|
}>>;
|
7723
|
-
export declare function useGetOrgInvitationMembersSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetOrgInvitationMembersQuery, IGetOrgInvitationMembersQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgInvitationMembersQuery, Exact<{
|
7959
|
+
export declare function useGetOrgInvitationMembersSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetOrgInvitationMembersQuery, IGetOrgInvitationMembersQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgInvitationMembersQuery, Exact<{
|
7724
7960
|
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
7725
7961
|
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
7726
7962
|
orgName?: InputMaybe<Scalars["String"]["input"]>;
|
@@ -7757,7 +7993,7 @@ export declare function useGetOrganizationInvitationQuery(baseOptions: Apollo.Qu
|
|
7757
7993
|
export declare function useGetOrganizationInvitationLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrganizationInvitationQuery, IGetOrganizationInvitationQueryVariables>): Apollo.LazyQueryResultTuple<IGetOrganizationInvitationQuery, Exact<{
|
7758
7994
|
id: Scalars["ID"]["input"];
|
7759
7995
|
}>>;
|
7760
|
-
export declare function useGetOrganizationInvitationSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetOrganizationInvitationQuery, IGetOrganizationInvitationQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrganizationInvitationQuery, Exact<{
|
7996
|
+
export declare function useGetOrganizationInvitationSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetOrganizationInvitationQuery, IGetOrganizationInvitationQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrganizationInvitationQuery, Exact<{
|
7761
7997
|
id: Scalars["ID"]["input"];
|
7762
7998
|
}>>;
|
7763
7999
|
export type GetOrganizationInvitationQueryHookResult = ReturnType<typeof useGetOrganizationInvitationQuery>;
|
@@ -7787,7 +8023,7 @@ export declare function useGetOrgTeamInvitationsQuery(baseOptions?: Apollo.Query
|
|
7787
8023
|
export declare function useGetOrgTeamInvitationsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrgTeamInvitationsQuery, IGetOrgTeamInvitationsQueryVariables>): Apollo.LazyQueryResultTuple<IGetOrgTeamInvitationsQuery, Exact<{
|
7788
8024
|
teamId?: InputMaybe<Scalars["String"]["input"]>;
|
7789
8025
|
}>>;
|
7790
|
-
export declare function useGetOrgTeamInvitationsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetOrgTeamInvitationsQuery, IGetOrgTeamInvitationsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgTeamInvitationsQuery, Exact<{
|
8026
|
+
export declare function useGetOrgTeamInvitationsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetOrgTeamInvitationsQuery, IGetOrgTeamInvitationsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgTeamInvitationsQuery, Exact<{
|
7791
8027
|
teamId?: InputMaybe<Scalars["String"]["input"]>;
|
7792
8028
|
}>>;
|
7793
8029
|
export type GetOrgTeamInvitationsQueryHookResult = ReturnType<typeof useGetOrgTeamInvitationsQuery>;
|
@@ -7817,7 +8053,7 @@ export declare function useGetOrgUserQuery(baseOptions?: Apollo.QueryHookOptions
|
|
7817
8053
|
export declare function useGetOrgUserLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrgUserQuery, IGetOrgUserQueryVariables>): Apollo.LazyQueryResultTuple<IGetOrgUserQuery, Exact<{
|
7818
8054
|
userId?: InputMaybe<Scalars["String"]["input"]>;
|
7819
8055
|
}>>;
|
7820
|
-
export declare function useGetOrgUserSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetOrgUserQuery, IGetOrgUserQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgUserQuery, Exact<{
|
8056
|
+
export declare function useGetOrgUserSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetOrgUserQuery, IGetOrgUserQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgUserQuery, Exact<{
|
7821
8057
|
userId?: InputMaybe<Scalars["String"]["input"]>;
|
7822
8058
|
}>>;
|
7823
8059
|
export type GetOrgUserQueryHookResult = ReturnType<typeof useGetOrgUserQuery>;
|
@@ -7852,7 +8088,7 @@ export declare function useGetOrganizationMembersWithNameQuery(baseOptions: Apol
|
|
7852
8088
|
export declare function useGetOrganizationMembersWithNameLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrganizationMembersWithNameQuery, IGetOrganizationMembersWithNameQueryVariables>): Apollo.LazyQueryResultTuple<IGetOrganizationMembersWithNameQuery, Exact<{
|
7853
8089
|
where: IOrgDetailWhere;
|
7854
8090
|
}>>;
|
7855
|
-
export declare function useGetOrganizationMembersWithNameSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetOrganizationMembersWithNameQuery, IGetOrganizationMembersWithNameQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrganizationMembersWithNameQuery, Exact<{
|
8091
|
+
export declare function useGetOrganizationMembersWithNameSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetOrganizationMembersWithNameQuery, IGetOrganizationMembersWithNameQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrganizationMembersWithNameQuery, Exact<{
|
7856
8092
|
where: IOrgDetailWhere;
|
7857
8093
|
}>>;
|
7858
8094
|
export type GetOrganizationMembersWithNameQueryHookResult = ReturnType<typeof useGetOrganizationMembersWithNameQuery>;
|
@@ -7882,7 +8118,7 @@ export declare function useGetOrganizationTeamsQuery(baseOptions?: Apollo.QueryH
|
|
7882
8118
|
export declare function useGetOrganizationTeamsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrganizationTeamsQuery, IGetOrganizationTeamsQueryVariables>): Apollo.LazyQueryResultTuple<IGetOrganizationTeamsQuery, Exact<{
|
7883
8119
|
orgName?: InputMaybe<Scalars["String"]["input"]>;
|
7884
8120
|
}>>;
|
7885
|
-
export declare function useGetOrganizationTeamsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetOrganizationTeamsQuery, IGetOrganizationTeamsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrganizationTeamsQuery, Exact<{
|
8121
|
+
export declare function useGetOrganizationTeamsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetOrganizationTeamsQuery, IGetOrganizationTeamsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrganizationTeamsQuery, Exact<{
|
7886
8122
|
orgName?: InputMaybe<Scalars["String"]["input"]>;
|
7887
8123
|
}>>;
|
7888
8124
|
export type GetOrganizationTeamsQueryHookResult = ReturnType<typeof useGetOrganizationTeamsQuery>;
|
@@ -7920,7 +8156,7 @@ export declare function useGetTeamLazyQuery(baseOptions?: Apollo.LazyQueryHookOp
|
|
7920
8156
|
orgName: Scalars["String"]["input"];
|
7921
8157
|
teamName: Scalars["String"]["input"];
|
7922
8158
|
}>>;
|
7923
|
-
export declare function useGetTeamSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetTeamQuery, IGetTeamQueryVariables>): Apollo.UseSuspenseQueryResult<IGetTeamQuery, Exact<{
|
8159
|
+
export declare function useGetTeamSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetTeamQuery, IGetTeamQueryVariables>): Apollo.UseSuspenseQueryResult<IGetTeamQuery, Exact<{
|
7924
8160
|
orgName: Scalars["String"]["input"];
|
7925
8161
|
teamName: Scalars["String"]["input"];
|
7926
8162
|
}>>;
|
@@ -7959,7 +8195,7 @@ export declare function useGetTeamByNameLazyQuery(baseOptions?: Apollo.LazyQuery
|
|
7959
8195
|
orgName: Scalars["String"]["input"];
|
7960
8196
|
teamName: Scalars["String"]["input"];
|
7961
8197
|
}>>;
|
7962
|
-
export declare function useGetTeamByNameSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetTeamByNameQuery, IGetTeamByNameQueryVariables>): Apollo.UseSuspenseQueryResult<IGetTeamByNameQuery, Exact<{
|
8198
|
+
export declare function useGetTeamByNameSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetTeamByNameQuery, IGetTeamByNameQueryVariables>): Apollo.UseSuspenseQueryResult<IGetTeamByNameQuery, Exact<{
|
7963
8199
|
orgName: Scalars["String"]["input"];
|
7964
8200
|
teamName: Scalars["String"]["input"];
|
7965
8201
|
}>>;
|
@@ -7995,7 +8231,7 @@ export declare function useGetUserAccountQuery(baseOptions: Apollo.QueryHookOpti
|
|
7995
8231
|
export declare function useGetUserAccountLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetUserAccountQuery, IGetUserAccountQueryVariables>): Apollo.LazyQueryResultTuple<IGetUserAccountQuery, Exact<{
|
7996
8232
|
userId: Scalars["String"]["input"];
|
7997
8233
|
}>>;
|
7998
|
-
export declare function useGetUserAccountSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetUserAccountQuery, IGetUserAccountQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserAccountQuery, Exact<{
|
8234
|
+
export declare function useGetUserAccountSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetUserAccountQuery, IGetUserAccountQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserAccountQuery, Exact<{
|
7999
8235
|
userId: Scalars["String"]["input"];
|
8000
8236
|
}>>;
|
8001
8237
|
export type GetUserAccountQueryHookResult = ReturnType<typeof useGetUserAccountQuery>;
|
@@ -8015,7 +8251,7 @@ export declare const GetUserAccountByAuth0IdDocument: DocumentNode;
|
|
8015
8251
|
* @example
|
8016
8252
|
* const { data, loading, error } = useGetUserAccountByAuth0IdQuery({
|
8017
8253
|
* variables: {
|
8018
|
-
*
|
8254
|
+
* authUserId: // value for 'authUserId'
|
8019
8255
|
* },
|
8020
8256
|
* });
|
8021
8257
|
*/
|
@@ -8025,13 +8261,13 @@ export declare function useGetUserAccountByAuth0IdQuery(baseOptions: Apollo.Quer
|
|
8025
8261
|
} | {
|
8026
8262
|
skip: boolean;
|
8027
8263
|
})): Apollo.QueryResult<IGetUserAccountByAuth0IdQuery, Exact<{
|
8028
|
-
|
8264
|
+
authUserId: Scalars["String"]["input"];
|
8029
8265
|
}>>;
|
8030
8266
|
export declare function useGetUserAccountByAuth0IdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetUserAccountByAuth0IdQuery, IGetUserAccountByAuth0IdQueryVariables>): Apollo.LazyQueryResultTuple<IGetUserAccountByAuth0IdQuery, Exact<{
|
8031
|
-
|
8267
|
+
authUserId: Scalars["String"]["input"];
|
8032
8268
|
}>>;
|
8033
|
-
export declare function useGetUserAccountByAuth0IdSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetUserAccountByAuth0IdQuery, IGetUserAccountByAuth0IdQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserAccountByAuth0IdQuery, Exact<{
|
8034
|
-
|
8269
|
+
export declare function useGetUserAccountByAuth0IdSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetUserAccountByAuth0IdQuery, IGetUserAccountByAuth0IdQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserAccountByAuth0IdQuery, Exact<{
|
8270
|
+
authUserId: Scalars["String"]["input"];
|
8035
8271
|
}>>;
|
8036
8272
|
export type GetUserAccountByAuth0IdQueryHookResult = ReturnType<typeof useGetUserAccountByAuth0IdQuery>;
|
8037
8273
|
export type GetUserAccountByAuth0IdLazyQueryHookResult = ReturnType<typeof useGetUserAccountByAuth0IdLazyQuery>;
|
@@ -8063,7 +8299,7 @@ export declare function useGetUserTokenDetailsLazyQuery(baseOptions?: Apollo.Laz
|
|
8063
8299
|
userId?: InputMaybe<Scalars["String"]["input"]>;
|
8064
8300
|
type?: InputMaybe<ITokenTypesEnum>;
|
8065
8301
|
}>>;
|
8066
|
-
export declare function useGetUserTokenDetailsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetUserTokenDetailsQuery, IGetUserTokenDetailsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserTokenDetailsQuery, Exact<{
|
8302
|
+
export declare function useGetUserTokenDetailsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetUserTokenDetailsQuery, IGetUserTokenDetailsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserTokenDetailsQuery, Exact<{
|
8067
8303
|
userId?: InputMaybe<Scalars["String"]["input"]>;
|
8068
8304
|
type?: InputMaybe<ITokenTypesEnum>;
|
8069
8305
|
}>>;
|
@@ -8094,7 +8330,7 @@ export declare function useGetUserOrganizationsQuery(baseOptions?: Apollo.QueryH
|
|
8094
8330
|
export declare function useGetUserOrganizationsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetUserOrganizationsQuery, IGetUserOrganizationsQueryVariables>): Apollo.LazyQueryResultTuple<IGetUserOrganizationsQuery, Exact<{
|
8095
8331
|
userId?: InputMaybe<Scalars["String"]["input"]>;
|
8096
8332
|
}>>;
|
8097
|
-
export declare function useGetUserOrganizationsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetUserOrganizationsQuery, IGetUserOrganizationsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserOrganizationsQuery, Exact<{
|
8333
|
+
export declare function useGetUserOrganizationsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetUserOrganizationsQuery, IGetUserOrganizationsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserOrganizationsQuery, Exact<{
|
8098
8334
|
userId?: InputMaybe<Scalars["String"]["input"]>;
|
8099
8335
|
}>>;
|
8100
8336
|
export type GetUserOrganizationsQueryHookResult = ReturnType<typeof useGetUserOrganizationsQuery>;
|
@@ -8124,7 +8360,7 @@ export declare function useGetUserOrganizationsWithRoleQuery(baseOptions?: Apoll
|
|
8124
8360
|
export declare function useGetUserOrganizationsWithRoleLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetUserOrganizationsWithRoleQuery, IGetUserOrganizationsWithRoleQueryVariables>): Apollo.LazyQueryResultTuple<IGetUserOrganizationsWithRoleQuery, Exact<{
|
8125
8361
|
userId?: InputMaybe<Scalars["String"]["input"]>;
|
8126
8362
|
}>>;
|
8127
|
-
export declare function useGetUserOrganizationsWithRoleSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetUserOrganizationsWithRoleQuery, IGetUserOrganizationsWithRoleQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserOrganizationsWithRoleQuery, Exact<{
|
8363
|
+
export declare function useGetUserOrganizationsWithRoleSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetUserOrganizationsWithRoleQuery, IGetUserOrganizationsWithRoleQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserOrganizationsWithRoleQuery, Exact<{
|
8128
8364
|
userId?: InputMaybe<Scalars["String"]["input"]>;
|
8129
8365
|
}>>;
|
8130
8366
|
export type GetUserOrganizationsWithRoleQueryHookResult = ReturnType<typeof useGetUserOrganizationsWithRoleQuery>;
|
@@ -8163,7 +8399,7 @@ export declare function useGetOrganizationMembersLazyQuery(baseOptions?: Apollo.
|
|
8163
8399
|
orgName?: InputMaybe<Scalars["String"]["input"]>;
|
8164
8400
|
criteria?: InputMaybe<Scalars["AnyObject"]["input"]>;
|
8165
8401
|
}>>;
|
8166
|
-
export declare function useGetOrganizationMembersSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetOrganizationMembersQuery, IGetOrganizationMembersQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrganizationMembersQuery, Exact<{
|
8402
|
+
export declare function useGetOrganizationMembersSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetOrganizationMembersQuery, IGetOrganizationMembersQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrganizationMembersQuery, Exact<{
|
8167
8403
|
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
8168
8404
|
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
8169
8405
|
orgName?: InputMaybe<Scalars["String"]["input"]>;
|
@@ -8195,7 +8431,7 @@ export declare function useOrganizationsQuery(baseOptions?: Apollo.QueryHookOpti
|
|
8195
8431
|
export declare function useOrganizationsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IOrganizationsQuery, IOrganizationsQueryVariables>): Apollo.LazyQueryResultTuple<IOrganizationsQuery, Exact<{
|
8196
8432
|
[key: string]: never;
|
8197
8433
|
}>>;
|
8198
|
-
export declare function useOrganizationsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IOrganizationsQuery, IOrganizationsQueryVariables>): Apollo.UseSuspenseQueryResult<IOrganizationsQuery, Exact<{
|
8434
|
+
export declare function useOrganizationsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IOrganizationsQuery, IOrganizationsQueryVariables>): Apollo.UseSuspenseQueryResult<IOrganizationsQuery, Exact<{
|
8199
8435
|
[key: string]: never;
|
8200
8436
|
}>>;
|
8201
8437
|
export type OrganizationsQueryHookResult = ReturnType<typeof useOrganizationsQuery>;
|
@@ -8230,7 +8466,7 @@ export declare function useTeamQuery(baseOptions: Apollo.QueryHookOptions<ITeamQ
|
|
8230
8466
|
export declare function useTeamLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ITeamQuery, ITeamQueryVariables>): Apollo.LazyQueryResultTuple<ITeamQuery, Exact<{
|
8231
8467
|
teamId: Scalars["ID"]["input"];
|
8232
8468
|
}>>;
|
8233
|
-
export declare function useTeamSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ITeamQuery, ITeamQueryVariables>): Apollo.UseSuspenseQueryResult<ITeamQuery, Exact<{
|
8469
|
+
export declare function useTeamSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<ITeamQuery, ITeamQueryVariables>): Apollo.UseSuspenseQueryResult<ITeamQuery, Exact<{
|
8234
8470
|
teamId: Scalars["ID"]["input"];
|
8235
8471
|
}>>;
|
8236
8472
|
export type TeamQueryHookResult = ReturnType<typeof useTeamQuery>;
|
@@ -8259,7 +8495,7 @@ export declare function useTeamsQuery(baseOptions?: Apollo.QueryHookOptions<ITea
|
|
8259
8495
|
export declare function useTeamsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ITeamsQuery, ITeamsQueryVariables>): Apollo.LazyQueryResultTuple<ITeamsQuery, Exact<{
|
8260
8496
|
[key: string]: never;
|
8261
8497
|
}>>;
|
8262
|
-
export declare function useTeamsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ITeamsQuery, ITeamsQueryVariables>): Apollo.UseSuspenseQueryResult<ITeamsQuery, Exact<{
|
8498
|
+
export declare function useTeamsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<ITeamsQuery, ITeamsQueryVariables>): Apollo.UseSuspenseQueryResult<ITeamsQuery, Exact<{
|
8263
8499
|
[key: string]: never;
|
8264
8500
|
}>>;
|
8265
8501
|
export type TeamsQueryHookResult = ReturnType<typeof useTeamsQuery>;
|
@@ -8289,7 +8525,7 @@ export declare function useGetViewerSettingsQuery(baseOptions?: Apollo.QueryHook
|
|
8289
8525
|
export declare function useGetViewerSettingsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetViewerSettingsQuery, IGetViewerSettingsQueryVariables>): Apollo.LazyQueryResultTuple<IGetViewerSettingsQuery, Exact<{
|
8290
8526
|
input?: InputMaybe<IViewerSettingsInput>;
|
8291
8527
|
}>>;
|
8292
|
-
export declare function useGetViewerSettingsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetViewerSettingsQuery, IGetViewerSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetViewerSettingsQuery, Exact<{
|
8528
|
+
export declare function useGetViewerSettingsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetViewerSettingsQuery, IGetViewerSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetViewerSettingsQuery, Exact<{
|
8293
8529
|
input?: InputMaybe<IViewerSettingsInput>;
|
8294
8530
|
}>>;
|
8295
8531
|
export type GetViewerSettingsQueryHookResult = ReturnType<typeof useGetViewerSettingsQuery>;
|
@@ -8319,7 +8555,7 @@ export declare function useGetAccountsViewerSettingsQuery(baseOptions?: Apollo.Q
|
|
8319
8555
|
export declare function useGetAccountsViewerSettingsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetAccountsViewerSettingsQuery, IGetAccountsViewerSettingsQueryVariables>): Apollo.LazyQueryResultTuple<IGetAccountsViewerSettingsQuery, Exact<{
|
8320
8556
|
input?: InputMaybe<IViewerSettingsInput>;
|
8321
8557
|
}>>;
|
8322
|
-
export declare function useGetAccountsViewerSettingsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetAccountsViewerSettingsQuery, IGetAccountsViewerSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetAccountsViewerSettingsQuery, Exact<{
|
8558
|
+
export declare function useGetAccountsViewerSettingsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetAccountsViewerSettingsQuery, IGetAccountsViewerSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetAccountsViewerSettingsQuery, Exact<{
|
8323
8559
|
input?: InputMaybe<IViewerSettingsInput>;
|
8324
8560
|
}>>;
|
8325
8561
|
export type GetAccountsViewerSettingsQueryHookResult = ReturnType<typeof useGetAccountsViewerSettingsQuery>;
|
@@ -8354,7 +8590,7 @@ export declare function useGetAccountsApplicationPoliciesQuery(baseOptions: Apol
|
|
8354
8590
|
export declare function useGetAccountsApplicationPoliciesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetAccountsApplicationPoliciesQuery, IGetAccountsApplicationPoliciesQueryVariables>): Apollo.LazyQueryResultTuple<IGetAccountsApplicationPoliciesQuery, Exact<{
|
8355
8591
|
input: IViewerPoliciesInput;
|
8356
8592
|
}>>;
|
8357
|
-
export declare function useGetAccountsApplicationPoliciesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetAccountsApplicationPoliciesQuery, IGetAccountsApplicationPoliciesQueryVariables>): Apollo.UseSuspenseQueryResult<IGetAccountsApplicationPoliciesQuery, Exact<{
|
8593
|
+
export declare function useGetAccountsApplicationPoliciesSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetAccountsApplicationPoliciesQuery, IGetAccountsApplicationPoliciesQueryVariables>): Apollo.UseSuspenseQueryResult<IGetAccountsApplicationPoliciesQuery, Exact<{
|
8358
8594
|
input: IViewerPoliciesInput;
|
8359
8595
|
}>>;
|
8360
8596
|
export type GetAccountsApplicationPoliciesQueryHookResult = ReturnType<typeof useGetAccountsApplicationPoliciesQuery>;
|
@@ -8384,7 +8620,7 @@ export declare function useGetOrgMembersWithRolesUnsecuredQuery(baseOptions?: Ap
|
|
8384
8620
|
export declare function useGetOrgMembersWithRolesUnsecuredLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrgMembersWithRolesUnsecuredQuery, IGetOrgMembersWithRolesUnsecuredQueryVariables>): Apollo.LazyQueryResultTuple<IGetOrgMembersWithRolesUnsecuredQuery, Exact<{
|
8385
8621
|
name?: InputMaybe<Scalars["String"]["input"]>;
|
8386
8622
|
}>>;
|
8387
|
-
export declare function useGetOrgMembersWithRolesUnsecuredSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetOrgMembersWithRolesUnsecuredQuery, IGetOrgMembersWithRolesUnsecuredQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgMembersWithRolesUnsecuredQuery, Exact<{
|
8623
|
+
export declare function useGetOrgMembersWithRolesUnsecuredSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetOrgMembersWithRolesUnsecuredQuery, IGetOrgMembersWithRolesUnsecuredQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgMembersWithRolesUnsecuredQuery, Exact<{
|
8388
8624
|
name?: InputMaybe<Scalars["String"]["input"]>;
|
8389
8625
|
}>>;
|
8390
8626
|
export type GetOrgMembersWithRolesUnsecuredQueryHookResult = ReturnType<typeof useGetOrgMembersWithRolesUnsecuredQuery>;
|
@@ -8414,7 +8650,7 @@ export declare function useGetOrgMembersWithRolesQuery(baseOptions?: Apollo.Quer
|
|
8414
8650
|
export declare function useGetOrgMembersWithRolesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrgMembersWithRolesQuery, IGetOrgMembersWithRolesQueryVariables>): Apollo.LazyQueryResultTuple<IGetOrgMembersWithRolesQuery, Exact<{
|
8415
8651
|
name?: InputMaybe<Scalars["String"]["input"]>;
|
8416
8652
|
}>>;
|
8417
|
-
export declare function useGetOrgMembersWithRolesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetOrgMembersWithRolesQuery, IGetOrgMembersWithRolesQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgMembersWithRolesQuery, Exact<{
|
8653
|
+
export declare function useGetOrgMembersWithRolesSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetOrgMembersWithRolesQuery, IGetOrgMembersWithRolesQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgMembersWithRolesQuery, Exact<{
|
8418
8654
|
name?: InputMaybe<Scalars["String"]["input"]>;
|
8419
8655
|
}>>;
|
8420
8656
|
export type GetOrgMembersWithRolesQueryHookResult = ReturnType<typeof useGetOrgMembersWithRolesQuery>;
|
@@ -8444,7 +8680,7 @@ export declare function useGetUsersQuery(baseOptions?: Apollo.QueryHookOptions<I
|
|
8444
8680
|
export declare function useGetUsersLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetUsersQuery, IGetUsersQueryVariables>): Apollo.LazyQueryResultTuple<IGetUsersQuery, Exact<{
|
8445
8681
|
where?: InputMaybe<IUserAccountWhere>;
|
8446
8682
|
}>>;
|
8447
|
-
export declare function useGetUsersSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetUsersQuery, IGetUsersQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUsersQuery, Exact<{
|
8683
|
+
export declare function useGetUsersSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetUsersQuery, IGetUsersQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUsersQuery, Exact<{
|
8448
8684
|
where?: InputMaybe<IUserAccountWhere>;
|
8449
8685
|
}>>;
|
8450
8686
|
export type GetUsersQueryHookResult = ReturnType<typeof useGetUsersQuery>;
|
@@ -8479,7 +8715,7 @@ export declare function useFilterIntegrationConfigurationQuery(baseOptions: Apol
|
|
8479
8715
|
export declare function useFilterIntegrationConfigurationLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFilterIntegrationConfigurationQuery, IFilterIntegrationConfigurationQueryVariables>): Apollo.LazyQueryResultTuple<IFilterIntegrationConfigurationQuery, Exact<{
|
8480
8716
|
filter: IIntegrationConfigurationFilterInput;
|
8481
8717
|
}>>;
|
8482
|
-
export declare function useFilterIntegrationConfigurationSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IFilterIntegrationConfigurationQuery, IFilterIntegrationConfigurationQueryVariables>): Apollo.UseSuspenseQueryResult<IFilterIntegrationConfigurationQuery, Exact<{
|
8718
|
+
export declare function useFilterIntegrationConfigurationSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IFilterIntegrationConfigurationQuery, IFilterIntegrationConfigurationQueryVariables>): Apollo.UseSuspenseQueryResult<IFilterIntegrationConfigurationQuery, Exact<{
|
8483
8719
|
filter: IIntegrationConfigurationFilterInput;
|
8484
8720
|
}>>;
|
8485
8721
|
export type FilterIntegrationConfigurationQueryHookResult = ReturnType<typeof useFilterIntegrationConfigurationQuery>;
|
@@ -8724,7 +8960,7 @@ export declare function useGetApplicationPolicyQuery(baseOptions?: Apollo.QueryH
|
|
8724
8960
|
export declare function useGetApplicationPolicyLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetApplicationPolicyQuery, IGetApplicationPolicyQueryVariables>): Apollo.LazyQueryResultTuple<IGetApplicationPolicyQuery, Exact<{
|
8725
8961
|
input?: InputMaybe<Array<InputMaybe<IConfigurationInput>> | InputMaybe<IConfigurationInput>>;
|
8726
8962
|
}>>;
|
8727
|
-
export declare function useGetApplicationPolicySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetApplicationPolicyQuery, IGetApplicationPolicyQueryVariables>): Apollo.UseSuspenseQueryResult<IGetApplicationPolicyQuery, Exact<{
|
8963
|
+
export declare function useGetApplicationPolicySuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetApplicationPolicyQuery, IGetApplicationPolicyQueryVariables>): Apollo.UseSuspenseQueryResult<IGetApplicationPolicyQuery, Exact<{
|
8728
8964
|
input?: InputMaybe<Array<InputMaybe<IConfigurationInput>> | InputMaybe<IConfigurationInput>>;
|
8729
8965
|
}>>;
|
8730
8966
|
export type GetApplicationPolicyQueryHookResult = ReturnType<typeof useGetApplicationPolicyQuery>;
|
@@ -8754,7 +8990,7 @@ export declare function useGetApplicationRoleQuery(baseOptions?: Apollo.QueryHoo
|
|
8754
8990
|
export declare function useGetApplicationRoleLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetApplicationRoleQuery, IGetApplicationRoleQueryVariables>): Apollo.LazyQueryResultTuple<IGetApplicationRoleQuery, Exact<{
|
8755
8991
|
input?: InputMaybe<Array<InputMaybe<IRoleInput>> | InputMaybe<IRoleInput>>;
|
8756
8992
|
}>>;
|
8757
|
-
export declare function useGetApplicationRoleSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetApplicationRoleQuery, IGetApplicationRoleQueryVariables>): Apollo.UseSuspenseQueryResult<IGetApplicationRoleQuery, Exact<{
|
8993
|
+
export declare function useGetApplicationRoleSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetApplicationRoleQuery, IGetApplicationRoleQueryVariables>): Apollo.UseSuspenseQueryResult<IGetApplicationRoleQuery, Exact<{
|
8758
8994
|
input?: InputMaybe<Array<InputMaybe<IRoleInput>> | InputMaybe<IRoleInput>>;
|
8759
8995
|
}>>;
|
8760
8996
|
export type GetApplicationRoleQueryHookResult = ReturnType<typeof useGetApplicationRoleQuery>;
|
@@ -8792,7 +9028,7 @@ export declare function useDefaultResolveSettingsLazyQuery(baseOptions?: Apollo.
|
|
8792
9028
|
uri: Scalars["URI"]["input"];
|
8793
9029
|
target?: InputMaybe<Scalars["Int"]["input"]>;
|
8794
9030
|
}>>;
|
8795
|
-
export declare function useDefaultResolveSettingsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IDefaultResolveSettingsQuery, IDefaultResolveSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<IDefaultResolveSettingsQuery, Exact<{
|
9031
|
+
export declare function useDefaultResolveSettingsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IDefaultResolveSettingsQuery, IDefaultResolveSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<IDefaultResolveSettingsQuery, Exact<{
|
8796
9032
|
uri: Scalars["URI"]["input"];
|
8797
9033
|
target?: InputMaybe<Scalars["Int"]["input"]>;
|
8798
9034
|
}>>;
|
@@ -8823,7 +9059,7 @@ export declare function useGetConfigurationTargetQuery(baseOptions?: Apollo.Quer
|
|
8823
9059
|
export declare function useGetConfigurationTargetLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetConfigurationTargetQuery, IGetConfigurationTargetQueryVariables>): Apollo.LazyQueryResultTuple<IGetConfigurationTargetQuery, Exact<{
|
8824
9060
|
resource?: InputMaybe<Scalars["URI"]["input"]>;
|
8825
9061
|
}>>;
|
8826
|
-
export declare function useGetConfigurationTargetSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetConfigurationTargetQuery, IGetConfigurationTargetQueryVariables>): Apollo.UseSuspenseQueryResult<IGetConfigurationTargetQuery, Exact<{
|
9062
|
+
export declare function useGetConfigurationTargetSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetConfigurationTargetQuery, IGetConfigurationTargetQueryVariables>): Apollo.UseSuspenseQueryResult<IGetConfigurationTargetQuery, Exact<{
|
8827
9063
|
resource?: InputMaybe<Scalars["URI"]["input"]>;
|
8828
9064
|
}>>;
|
8829
9065
|
export type GetConfigurationTargetQueryHookResult = ReturnType<typeof useGetConfigurationTargetQuery>;
|
@@ -8853,7 +9089,7 @@ export declare function useGetContextPropertyQuery(baseOptions?: Apollo.QueryHoo
|
|
8853
9089
|
export declare function useGetContextPropertyLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetContextPropertyQuery, IGetContextPropertyQueryVariables>): Apollo.LazyQueryResultTuple<IGetContextPropertyQuery, Exact<{
|
8854
9090
|
keys?: InputMaybe<Array<InputMaybe<Scalars["String"]["input"]>> | InputMaybe<Scalars["String"]["input"]>>;
|
8855
9091
|
}>>;
|
8856
|
-
export declare function useGetContextPropertySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetContextPropertyQuery, IGetContextPropertyQueryVariables>): Apollo.UseSuspenseQueryResult<IGetContextPropertyQuery, Exact<{
|
9092
|
+
export declare function useGetContextPropertySuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetContextPropertyQuery, IGetContextPropertyQueryVariables>): Apollo.UseSuspenseQueryResult<IGetContextPropertyQuery, Exact<{
|
8857
9093
|
keys?: InputMaybe<Array<InputMaybe<Scalars["String"]["input"]>> | InputMaybe<Scalars["String"]["input"]>>;
|
8858
9094
|
}>>;
|
8859
9095
|
export type GetContextPropertyQueryHookResult = ReturnType<typeof useGetContextPropertyQuery>;
|
@@ -8883,7 +9119,7 @@ export declare function useGetDefaultApplicationPermissionsQuery(baseOptions?: A
|
|
8883
9119
|
export declare function useGetDefaultApplicationPermissionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetDefaultApplicationPermissionsQuery, IGetDefaultApplicationPermissionsQueryVariables>): Apollo.LazyQueryResultTuple<IGetDefaultApplicationPermissionsQuery, Exact<{
|
8884
9120
|
roleName?: InputMaybe<Scalars["String"]["input"]>;
|
8885
9121
|
}>>;
|
8886
|
-
export declare function useGetDefaultApplicationPermissionsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetDefaultApplicationPermissionsQuery, IGetDefaultApplicationPermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetDefaultApplicationPermissionsQuery, Exact<{
|
9122
|
+
export declare function useGetDefaultApplicationPermissionsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetDefaultApplicationPermissionsQuery, IGetDefaultApplicationPermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetDefaultApplicationPermissionsQuery, Exact<{
|
8887
9123
|
roleName?: InputMaybe<Scalars["String"]["input"]>;
|
8888
9124
|
}>>;
|
8889
9125
|
export type GetDefaultApplicationPermissionsQueryHookResult = ReturnType<typeof useGetDefaultApplicationPermissionsQuery>;
|
@@ -8913,7 +9149,7 @@ export declare function useGetDefaultPermissionsQuery(baseOptions?: Apollo.Query
|
|
8913
9149
|
export declare function useGetDefaultPermissionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetDefaultPermissionsQuery, IGetDefaultPermissionsQueryVariables>): Apollo.LazyQueryResultTuple<IGetDefaultPermissionsQuery, Exact<{
|
8914
9150
|
target?: InputMaybe<Scalars["Int"]["input"]>;
|
8915
9151
|
}>>;
|
8916
|
-
export declare function useGetDefaultPermissionsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetDefaultPermissionsQuery, IGetDefaultPermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetDefaultPermissionsQuery, Exact<{
|
9152
|
+
export declare function useGetDefaultPermissionsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetDefaultPermissionsQuery, IGetDefaultPermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetDefaultPermissionsQuery, Exact<{
|
8917
9153
|
target?: InputMaybe<Scalars["Int"]["input"]>;
|
8918
9154
|
}>>;
|
8919
9155
|
export type GetDefaultPermissionsQueryHookResult = ReturnType<typeof useGetDefaultPermissionsQuery>;
|
@@ -8943,7 +9179,7 @@ export declare function useGetDefaultPolicySettingsQuery(baseOptions?: Apollo.Qu
|
|
8943
9179
|
export declare function useGetDefaultPolicySettingsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetDefaultPolicySettingsQuery, IGetDefaultPolicySettingsQueryVariables>): Apollo.LazyQueryResultTuple<IGetDefaultPolicySettingsQuery, Exact<{
|
8944
9180
|
target?: InputMaybe<Scalars["Int"]["input"]>;
|
8945
9181
|
}>>;
|
8946
|
-
export declare function useGetDefaultPolicySettingsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetDefaultPolicySettingsQuery, IGetDefaultPolicySettingsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetDefaultPolicySettingsQuery, Exact<{
|
9182
|
+
export declare function useGetDefaultPolicySettingsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetDefaultPolicySettingsQuery, IGetDefaultPolicySettingsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetDefaultPolicySettingsQuery, Exact<{
|
8947
9183
|
target?: InputMaybe<Scalars["Int"]["input"]>;
|
8948
9184
|
}>>;
|
8949
9185
|
export type GetDefaultPolicySettingsQueryHookResult = ReturnType<typeof useGetDefaultPolicySettingsQuery>;
|
@@ -8972,7 +9208,7 @@ export declare function useGetDefaultRoleQuery(baseOptions?: Apollo.QueryHookOpt
|
|
8972
9208
|
export declare function useGetDefaultRoleLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetDefaultRoleQuery, IGetDefaultRoleQueryVariables>): Apollo.LazyQueryResultTuple<IGetDefaultRoleQuery, Exact<{
|
8973
9209
|
[key: string]: never;
|
8974
9210
|
}>>;
|
8975
|
-
export declare function useGetDefaultRoleSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetDefaultRoleQuery, IGetDefaultRoleQueryVariables>): Apollo.UseSuspenseQueryResult<IGetDefaultRoleQuery, Exact<{
|
9211
|
+
export declare function useGetDefaultRoleSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetDefaultRoleQuery, IGetDefaultRoleQueryVariables>): Apollo.UseSuspenseQueryResult<IGetDefaultRoleQuery, Exact<{
|
8976
9212
|
[key: string]: never;
|
8977
9213
|
}>>;
|
8978
9214
|
export type GetDefaultRoleQueryHookResult = ReturnType<typeof useGetDefaultRoleQuery>;
|
@@ -9001,7 +9237,7 @@ export declare function useGetTeamContextQuery(baseOptions?: Apollo.QueryHookOpt
|
|
9001
9237
|
export declare function useGetTeamContextLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetTeamContextQuery, IGetTeamContextQueryVariables>): Apollo.LazyQueryResultTuple<IGetTeamContextQuery, Exact<{
|
9002
9238
|
[key: string]: never;
|
9003
9239
|
}>>;
|
9004
|
-
export declare function useGetTeamContextSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetTeamContextQuery, IGetTeamContextQueryVariables>): Apollo.UseSuspenseQueryResult<IGetTeamContextQuery, Exact<{
|
9240
|
+
export declare function useGetTeamContextSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetTeamContextQuery, IGetTeamContextQueryVariables>): Apollo.UseSuspenseQueryResult<IGetTeamContextQuery, Exact<{
|
9005
9241
|
[key: string]: never;
|
9006
9242
|
}>>;
|
9007
9243
|
export type GetTeamContextQueryHookResult = ReturnType<typeof useGetTeamContextQuery>;
|
@@ -9030,7 +9266,7 @@ export declare function useGetTeamNameFromContextQuery(baseOptions?: Apollo.Quer
|
|
9030
9266
|
export declare function useGetTeamNameFromContextLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetTeamNameFromContextQuery, IGetTeamNameFromContextQueryVariables>): Apollo.LazyQueryResultTuple<IGetTeamNameFromContextQuery, Exact<{
|
9031
9267
|
[key: string]: never;
|
9032
9268
|
}>>;
|
9033
|
-
export declare function useGetTeamNameFromContextSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetTeamNameFromContextQuery, IGetTeamNameFromContextQueryVariables>): Apollo.UseSuspenseQueryResult<IGetTeamNameFromContextQuery, Exact<{
|
9269
|
+
export declare function useGetTeamNameFromContextSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetTeamNameFromContextQuery, IGetTeamNameFromContextQueryVariables>): Apollo.UseSuspenseQueryResult<IGetTeamNameFromContextQuery, Exact<{
|
9034
9270
|
[key: string]: never;
|
9035
9271
|
}>>;
|
9036
9272
|
export type GetTeamNameFromContextQueryHookResult = ReturnType<typeof useGetTeamNameFromContextQuery>;
|
@@ -9060,7 +9296,7 @@ export declare function useGetUserAccessRoleQuery(baseOptions?: Apollo.QueryHook
|
|
9060
9296
|
export declare function useGetUserAccessRoleLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetUserAccessRoleQuery, IGetUserAccessRoleQueryVariables>): Apollo.LazyQueryResultTuple<IGetUserAccessRoleQuery, Exact<{
|
9061
9297
|
input?: InputMaybe<Array<InputMaybe<IRoleInput>> | InputMaybe<IRoleInput>>;
|
9062
9298
|
}>>;
|
9063
|
-
export declare function useGetUserAccessRoleSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetUserAccessRoleQuery, IGetUserAccessRoleQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserAccessRoleQuery, Exact<{
|
9299
|
+
export declare function useGetUserAccessRoleSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetUserAccessRoleQuery, IGetUserAccessRoleQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserAccessRoleQuery, Exact<{
|
9064
9300
|
input?: InputMaybe<Array<InputMaybe<IRoleInput>> | InputMaybe<IRoleInput>>;
|
9065
9301
|
}>>;
|
9066
9302
|
export type GetUserAccessRoleQueryHookResult = ReturnType<typeof useGetUserAccessRoleQuery>;
|
@@ -9089,7 +9325,7 @@ export declare function useGetUserPermissionsQuery(baseOptions?: Apollo.QueryHoo
|
|
9089
9325
|
export declare function useGetUserPermissionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetUserPermissionsQuery, IGetUserPermissionsQueryVariables>): Apollo.LazyQueryResultTuple<IGetUserPermissionsQuery, Exact<{
|
9090
9326
|
[key: string]: never;
|
9091
9327
|
}>>;
|
9092
|
-
export declare function useGetUserPermissionsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetUserPermissionsQuery, IGetUserPermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserPermissionsQuery, Exact<{
|
9328
|
+
export declare function useGetUserPermissionsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetUserPermissionsQuery, IGetUserPermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserPermissionsQuery, Exact<{
|
9093
9329
|
[key: string]: never;
|
9094
9330
|
}>>;
|
9095
9331
|
export type GetUserPermissionsQueryHookResult = ReturnType<typeof useGetUserPermissionsQuery>;
|
@@ -9127,7 +9363,7 @@ export declare function useGetUserRoleLazyQuery(baseOptions?: Apollo.LazyQueryHo
|
|
9127
9363
|
orgName: Scalars["String"]["input"];
|
9128
9364
|
userId?: InputMaybe<Scalars["String"]["input"]>;
|
9129
9365
|
}>>;
|
9130
|
-
export declare function useGetUserRoleSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetUserRoleQuery, IGetUserRoleQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserRoleQuery, Exact<{
|
9366
|
+
export declare function useGetUserRoleSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetUserRoleQuery, IGetUserRoleQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserRoleQuery, Exact<{
|
9131
9367
|
orgName: Scalars["String"]["input"];
|
9132
9368
|
userId?: InputMaybe<Scalars["String"]["input"]>;
|
9133
9369
|
}>>;
|
@@ -9158,7 +9394,7 @@ export declare function useGetViewerPermissionsQuery(baseOptions?: Apollo.QueryH
|
|
9158
9394
|
export declare function useGetViewerPermissionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetViewerPermissionsQuery, IGetViewerPermissionsQueryVariables>): Apollo.LazyQueryResultTuple<IGetViewerPermissionsQuery, Exact<{
|
9159
9395
|
input?: InputMaybe<IRoleInput>;
|
9160
9396
|
}>>;
|
9161
|
-
export declare function useGetViewerPermissionsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetViewerPermissionsQuery, IGetViewerPermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetViewerPermissionsQuery, Exact<{
|
9397
|
+
export declare function useGetViewerPermissionsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetViewerPermissionsQuery, IGetViewerPermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetViewerPermissionsQuery, Exact<{
|
9162
9398
|
input?: InputMaybe<IRoleInput>;
|
9163
9399
|
}>>;
|
9164
9400
|
export type GetViewerPermissionsQueryHookResult = ReturnType<typeof useGetViewerPermissionsQuery>;
|
@@ -9194,7 +9430,7 @@ export declare function useOpenPreferencesSettingsLazyQuery(baseOptions?: Apollo
|
|
9194
9430
|
jsonEditor?: InputMaybe<Scalars["Boolean"]["input"]>;
|
9195
9431
|
options?: InputMaybe<IPreferencesOpenOptionsInput>;
|
9196
9432
|
}>>;
|
9197
|
-
export declare function useOpenPreferencesSettingsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IOpenPreferencesSettingsQuery, IOpenPreferencesSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<IOpenPreferencesSettingsQuery, Exact<{
|
9433
|
+
export declare function useOpenPreferencesSettingsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IOpenPreferencesSettingsQuery, IOpenPreferencesSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<IOpenPreferencesSettingsQuery, Exact<{
|
9198
9434
|
resource?: InputMaybe<Scalars["URI"]["input"]>;
|
9199
9435
|
jsonEditor?: InputMaybe<Scalars["Boolean"]["input"]>;
|
9200
9436
|
options?: InputMaybe<IPreferencesOpenOptionsInput>;
|
@@ -9226,7 +9462,7 @@ export declare function useGetOrgConfigurationQuery(baseOptions?: Apollo.QueryHo
|
|
9226
9462
|
export declare function useGetOrgConfigurationLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrgConfigurationQuery, IGetOrgConfigurationQueryVariables>): Apollo.LazyQueryResultTuple<IGetOrgConfigurationQuery, Exact<{
|
9227
9463
|
input?: InputMaybe<Array<InputMaybe<IConfigurationInput>> | InputMaybe<IConfigurationInput>>;
|
9228
9464
|
}>>;
|
9229
|
-
export declare function useGetOrgConfigurationSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetOrgConfigurationQuery, IGetOrgConfigurationQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgConfigurationQuery, Exact<{
|
9465
|
+
export declare function useGetOrgConfigurationSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetOrgConfigurationQuery, IGetOrgConfigurationQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgConfigurationQuery, Exact<{
|
9230
9466
|
input?: InputMaybe<Array<InputMaybe<IConfigurationInput>> | InputMaybe<IConfigurationInput>>;
|
9231
9467
|
}>>;
|
9232
9468
|
export type GetOrgConfigurationQueryHookResult = ReturnType<typeof useGetOrgConfigurationQuery>;
|
@@ -9256,7 +9492,7 @@ export declare function useGetOrgPolicyQuery(baseOptions?: Apollo.QueryHookOptio
|
|
9256
9492
|
export declare function useGetOrgPolicyLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrgPolicyQuery, IGetOrgPolicyQueryVariables>): Apollo.LazyQueryResultTuple<IGetOrgPolicyQuery, Exact<{
|
9257
9493
|
input?: InputMaybe<Array<InputMaybe<IConfigurationInput>> | InputMaybe<IConfigurationInput>>;
|
9258
9494
|
}>>;
|
9259
|
-
export declare function useGetOrgPolicySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetOrgPolicyQuery, IGetOrgPolicyQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgPolicyQuery, Exact<{
|
9495
|
+
export declare function useGetOrgPolicySuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetOrgPolicyQuery, IGetOrgPolicyQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgPolicyQuery, Exact<{
|
9260
9496
|
input?: InputMaybe<Array<InputMaybe<IConfigurationInput>> | InputMaybe<IConfigurationInput>>;
|
9261
9497
|
}>>;
|
9262
9498
|
export type GetOrgPolicyQueryHookResult = ReturnType<typeof useGetOrgPolicyQuery>;
|
@@ -9286,7 +9522,7 @@ export declare function useGetOrgRoleQuery(baseOptions?: Apollo.QueryHookOptions
|
|
9286
9522
|
export declare function useGetOrgRoleLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrgRoleQuery, IGetOrgRoleQueryVariables>): Apollo.LazyQueryResultTuple<IGetOrgRoleQuery, Exact<{
|
9287
9523
|
input?: InputMaybe<Array<InputMaybe<IRoleInput>> | InputMaybe<IRoleInput>>;
|
9288
9524
|
}>>;
|
9289
|
-
export declare function useGetOrgRoleSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetOrgRoleQuery, IGetOrgRoleQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgRoleQuery, Exact<{
|
9525
|
+
export declare function useGetOrgRoleSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetOrgRoleQuery, IGetOrgRoleQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgRoleQuery, Exact<{
|
9290
9526
|
input?: InputMaybe<Array<InputMaybe<IRoleInput>> | InputMaybe<IRoleInput>>;
|
9291
9527
|
}>>;
|
9292
9528
|
export type GetOrgRoleQueryHookResult = ReturnType<typeof useGetOrgRoleQuery>;
|
@@ -9316,7 +9552,7 @@ export declare function useGetOrgWithResourcesPolicyQuery(baseOptions?: Apollo.Q
|
|
9316
9552
|
export declare function useGetOrgWithResourcesPolicyLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrgWithResourcesPolicyQuery, IGetOrgWithResourcesPolicyQueryVariables>): Apollo.LazyQueryResultTuple<IGetOrgWithResourcesPolicyQuery, Exact<{
|
9317
9553
|
input?: InputMaybe<Array<InputMaybe<IConfigurationInput>> | InputMaybe<IConfigurationInput>>;
|
9318
9554
|
}>>;
|
9319
|
-
export declare function useGetOrgWithResourcesPolicySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetOrgWithResourcesPolicyQuery, IGetOrgWithResourcesPolicyQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgWithResourcesPolicyQuery, Exact<{
|
9555
|
+
export declare function useGetOrgWithResourcesPolicySuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetOrgWithResourcesPolicyQuery, IGetOrgWithResourcesPolicyQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgWithResourcesPolicyQuery, Exact<{
|
9320
9556
|
input?: InputMaybe<Array<InputMaybe<IConfigurationInput>> | InputMaybe<IConfigurationInput>>;
|
9321
9557
|
}>>;
|
9322
9558
|
export type GetOrgWithResourcesPolicyQueryHookResult = ReturnType<typeof useGetOrgWithResourcesPolicyQuery>;
|
@@ -9346,7 +9582,7 @@ export declare function useGetOrgWithResourcesRoleQuery(baseOptions?: Apollo.Que
|
|
9346
9582
|
export declare function useGetOrgWithResourcesRoleLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrgWithResourcesRoleQuery, IGetOrgWithResourcesRoleQueryVariables>): Apollo.LazyQueryResultTuple<IGetOrgWithResourcesRoleQuery, Exact<{
|
9347
9583
|
input?: InputMaybe<Array<InputMaybe<IRoleInput>> | InputMaybe<IRoleInput>>;
|
9348
9584
|
}>>;
|
9349
|
-
export declare function useGetOrgWithResourcesRoleSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetOrgWithResourcesRoleQuery, IGetOrgWithResourcesRoleQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgWithResourcesRoleQuery, Exact<{
|
9585
|
+
export declare function useGetOrgWithResourcesRoleSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetOrgWithResourcesRoleQuery, IGetOrgWithResourcesRoleQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgWithResourcesRoleQuery, Exact<{
|
9350
9586
|
input?: InputMaybe<Array<InputMaybe<IRoleInput>> | InputMaybe<IRoleInput>>;
|
9351
9587
|
}>>;
|
9352
9588
|
export type GetOrgWithResourcesRoleQueryHookResult = ReturnType<typeof useGetOrgWithResourcesRoleQuery>;
|
@@ -9387,7 +9623,7 @@ export declare function useResolveConfigurationLazyQuery(baseOptions?: Apollo.La
|
|
9387
9623
|
key?: InputMaybe<Scalars["String"]["input"]>;
|
9388
9624
|
overrides?: InputMaybe<IConfigurationOverridesInput>;
|
9389
9625
|
}>>;
|
9390
|
-
export declare function useResolveConfigurationSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IResolveConfigurationQuery, IResolveConfigurationQueryVariables>): Apollo.UseSuspenseQueryResult<IResolveConfigurationQuery, Exact<{
|
9626
|
+
export declare function useResolveConfigurationSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IResolveConfigurationQuery, IResolveConfigurationQueryVariables>): Apollo.UseSuspenseQueryResult<IResolveConfigurationQuery, Exact<{
|
9391
9627
|
input: IPreferencesInputInput;
|
9392
9628
|
key?: InputMaybe<Scalars["String"]["input"]>;
|
9393
9629
|
overrides?: InputMaybe<IConfigurationOverridesInput>;
|
@@ -9419,7 +9655,7 @@ export declare function useGetResourcesConfigurationQuery(baseOptions?: Apollo.Q
|
|
9419
9655
|
export declare function useGetResourcesConfigurationLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetResourcesConfigurationQuery, IGetResourcesConfigurationQueryVariables>): Apollo.LazyQueryResultTuple<IGetResourcesConfigurationQuery, Exact<{
|
9420
9656
|
input?: InputMaybe<Array<InputMaybe<IConfigurationInput>> | InputMaybe<IConfigurationInput>>;
|
9421
9657
|
}>>;
|
9422
|
-
export declare function useGetResourcesConfigurationSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetResourcesConfigurationQuery, IGetResourcesConfigurationQueryVariables>): Apollo.UseSuspenseQueryResult<IGetResourcesConfigurationQuery, Exact<{
|
9658
|
+
export declare function useGetResourcesConfigurationSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetResourcesConfigurationQuery, IGetResourcesConfigurationQueryVariables>): Apollo.UseSuspenseQueryResult<IGetResourcesConfigurationQuery, Exact<{
|
9423
9659
|
input?: InputMaybe<Array<InputMaybe<IConfigurationInput>> | InputMaybe<IConfigurationInput>>;
|
9424
9660
|
}>>;
|
9425
9661
|
export type GetResourcesConfigurationQueryHookResult = ReturnType<typeof useGetResourcesConfigurationQuery>;
|
@@ -9449,7 +9685,7 @@ export declare function useGetUserConfigurationQuery(baseOptions?: Apollo.QueryH
|
|
9449
9685
|
export declare function useGetUserConfigurationLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetUserConfigurationQuery, IGetUserConfigurationQueryVariables>): Apollo.LazyQueryResultTuple<IGetUserConfigurationQuery, Exact<{
|
9450
9686
|
input?: InputMaybe<Array<InputMaybe<IConfigurationInput>> | InputMaybe<IConfigurationInput>>;
|
9451
9687
|
}>>;
|
9452
|
-
export declare function useGetUserConfigurationSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetUserConfigurationQuery, IGetUserConfigurationQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserConfigurationQuery, Exact<{
|
9688
|
+
export declare function useGetUserConfigurationSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetUserConfigurationQuery, IGetUserConfigurationQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserConfigurationQuery, Exact<{
|
9453
9689
|
input?: InputMaybe<Array<InputMaybe<IConfigurationInput>> | InputMaybe<IConfigurationInput>>;
|
9454
9690
|
}>>;
|
9455
9691
|
export type GetUserConfigurationQueryHookResult = ReturnType<typeof useGetUserConfigurationQuery>;
|
@@ -9479,7 +9715,7 @@ export declare function useDefaultSettingsQuery(baseOptions?: Apollo.QueryHookOp
|
|
9479
9715
|
export declare function useDefaultSettingsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IDefaultSettingsQuery, IDefaultSettingsQueryVariables>): Apollo.LazyQueryResultTuple<IDefaultSettingsQuery, Exact<{
|
9480
9716
|
target?: InputMaybe<Scalars["Int"]["input"]>;
|
9481
9717
|
}>>;
|
9482
|
-
export declare function useDefaultSettingsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IDefaultSettingsQuery, IDefaultSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<IDefaultSettingsQuery, Exact<{
|
9718
|
+
export declare function useDefaultSettingsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IDefaultSettingsQuery, IDefaultSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<IDefaultSettingsQuery, Exact<{
|
9483
9719
|
target?: InputMaybe<Scalars["Int"]["input"]>;
|
9484
9720
|
}>>;
|
9485
9721
|
export type DefaultSettingsQueryHookResult = ReturnType<typeof useDefaultSettingsQuery>;
|
@@ -9508,7 +9744,7 @@ export declare function useGetContributionRolesQuery(baseOptions?: Apollo.QueryH
|
|
9508
9744
|
export declare function useGetContributionRolesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetContributionRolesQuery, IGetContributionRolesQueryVariables>): Apollo.LazyQueryResultTuple<IGetContributionRolesQuery, Exact<{
|
9509
9745
|
[key: string]: never;
|
9510
9746
|
}>>;
|
9511
|
-
export declare function useGetContributionRolesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetContributionRolesQuery, IGetContributionRolesQueryVariables>): Apollo.UseSuspenseQueryResult<IGetContributionRolesQuery, Exact<{
|
9747
|
+
export declare function useGetContributionRolesSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetContributionRolesQuery, IGetContributionRolesQueryVariables>): Apollo.UseSuspenseQueryResult<IGetContributionRolesQuery, Exact<{
|
9512
9748
|
[key: string]: never;
|
9513
9749
|
}>>;
|
9514
9750
|
export type GetContributionRolesQueryHookResult = ReturnType<typeof useGetContributionRolesQuery>;
|
@@ -9537,7 +9773,7 @@ export declare function useGetOrgContextQuery(baseOptions?: Apollo.QueryHookOpti
|
|
9537
9773
|
export declare function useGetOrgContextLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrgContextQuery, IGetOrgContextQueryVariables>): Apollo.LazyQueryResultTuple<IGetOrgContextQuery, Exact<{
|
9538
9774
|
[key: string]: never;
|
9539
9775
|
}>>;
|
9540
|
-
export declare function useGetOrgContextSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetOrgContextQuery, IGetOrgContextQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgContextQuery, Exact<{
|
9776
|
+
export declare function useGetOrgContextSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetOrgContextQuery, IGetOrgContextQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgContextQuery, Exact<{
|
9541
9777
|
[key: string]: never;
|
9542
9778
|
}>>;
|
9543
9779
|
export type GetOrgContextQueryHookResult = ReturnType<typeof useGetOrgContextQuery>;
|
@@ -9566,7 +9802,7 @@ export declare function useGetOrgNameFromContextQuery(baseOptions?: Apollo.Query
|
|
9566
9802
|
export declare function useGetOrgNameFromContextLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrgNameFromContextQuery, IGetOrgNameFromContextQueryVariables>): Apollo.LazyQueryResultTuple<IGetOrgNameFromContextQuery, Exact<{
|
9567
9803
|
[key: string]: never;
|
9568
9804
|
}>>;
|
9569
|
-
export declare function useGetOrgNameFromContextSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetOrgNameFromContextQuery, IGetOrgNameFromContextQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgNameFromContextQuery, Exact<{
|
9805
|
+
export declare function useGetOrgNameFromContextSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetOrgNameFromContextQuery, IGetOrgNameFromContextQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgNameFromContextQuery, Exact<{
|
9570
9806
|
[key: string]: never;
|
9571
9807
|
}>>;
|
9572
9808
|
export type GetOrgNameFromContextQueryHookResult = ReturnType<typeof useGetOrgNameFromContextQuery>;
|
@@ -9596,7 +9832,7 @@ export declare function useGetRoleQuery(baseOptions?: Apollo.QueryHookOptions<IG
|
|
9596
9832
|
export declare function useGetRoleLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetRoleQuery, IGetRoleQueryVariables>): Apollo.LazyQueryResultTuple<IGetRoleQuery, Exact<{
|
9597
9833
|
input?: InputMaybe<IRoleInput>;
|
9598
9834
|
}>>;
|
9599
|
-
export declare function useGetRoleSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetRoleQuery, IGetRoleQueryVariables>): Apollo.UseSuspenseQueryResult<IGetRoleQuery, Exact<{
|
9835
|
+
export declare function useGetRoleSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetRoleQuery, IGetRoleQueryVariables>): Apollo.UseSuspenseQueryResult<IGetRoleQuery, Exact<{
|
9600
9836
|
input?: InputMaybe<IRoleInput>;
|
9601
9837
|
}>>;
|
9602
9838
|
export type GetRoleQueryHookResult = ReturnType<typeof useGetRoleQuery>;
|
@@ -9626,7 +9862,7 @@ export declare function useGetOrgWithResourcesConfigurationQuery(baseOptions?: A
|
|
9626
9862
|
export declare function useGetOrgWithResourcesConfigurationLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrgWithResourcesConfigurationQuery, IGetOrgWithResourcesConfigurationQueryVariables>): Apollo.LazyQueryResultTuple<IGetOrgWithResourcesConfigurationQuery, Exact<{
|
9627
9863
|
input?: InputMaybe<Array<InputMaybe<IConfigurationInput>> | InputMaybe<IConfigurationInput>>;
|
9628
9864
|
}>>;
|
9629
|
-
export declare function useGetOrgWithResourcesConfigurationSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetOrgWithResourcesConfigurationQuery, IGetOrgWithResourcesConfigurationQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgWithResourcesConfigurationQuery, Exact<{
|
9865
|
+
export declare function useGetOrgWithResourcesConfigurationSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetOrgWithResourcesConfigurationQuery, IGetOrgWithResourcesConfigurationQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgWithResourcesConfigurationQuery, Exact<{
|
9630
9866
|
input?: InputMaybe<Array<InputMaybe<IConfigurationInput>> | InputMaybe<IConfigurationInput>>;
|
9631
9867
|
}>>;
|
9632
9868
|
export type GetOrgWithResourcesConfigurationQueryHookResult = ReturnType<typeof useGetOrgWithResourcesConfigurationQuery>;
|
@@ -9656,7 +9892,7 @@ export declare function useGetUserWithDefaultConfigurationQuery(baseOptions?: Ap
|
|
9656
9892
|
export declare function useGetUserWithDefaultConfigurationLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetUserWithDefaultConfigurationQuery, IGetUserWithDefaultConfigurationQueryVariables>): Apollo.LazyQueryResultTuple<IGetUserWithDefaultConfigurationQuery, Exact<{
|
9657
9893
|
input?: InputMaybe<Array<InputMaybe<IConfigurationInput>> | InputMaybe<IConfigurationInput>>;
|
9658
9894
|
}>>;
|
9659
|
-
export declare function useGetUserWithDefaultConfigurationSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetUserWithDefaultConfigurationQuery, IGetUserWithDefaultConfigurationQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserWithDefaultConfigurationQuery, Exact<{
|
9895
|
+
export declare function useGetUserWithDefaultConfigurationSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetUserWithDefaultConfigurationQuery, IGetUserWithDefaultConfigurationQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserWithDefaultConfigurationQuery, Exact<{
|
9660
9896
|
input?: InputMaybe<Array<InputMaybe<IConfigurationInput>> | InputMaybe<IConfigurationInput>>;
|
9661
9897
|
}>>;
|
9662
9898
|
export type GetUserWithDefaultConfigurationQueryHookResult = ReturnType<typeof useGetUserWithDefaultConfigurationQuery>;
|
@@ -10019,7 +10255,7 @@ export declare function useGetConfigurationDataQuery(baseOptions?: Apollo.QueryH
|
|
10019
10255
|
export declare function useGetConfigurationDataLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetConfigurationDataQuery, IGetConfigurationDataQueryVariables>): Apollo.LazyQueryResultTuple<IGetConfigurationDataQuery, Exact<{
|
10020
10256
|
[key: string]: never;
|
10021
10257
|
}>>;
|
10022
|
-
export declare function useGetConfigurationDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetConfigurationDataQuery, IGetConfigurationDataQueryVariables>): Apollo.UseSuspenseQueryResult<IGetConfigurationDataQuery, Exact<{
|
10258
|
+
export declare function useGetConfigurationDataSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetConfigurationDataQuery, IGetConfigurationDataQueryVariables>): Apollo.UseSuspenseQueryResult<IGetConfigurationDataQuery, Exact<{
|
10023
10259
|
[key: string]: never;
|
10024
10260
|
}>>;
|
10025
10261
|
export type GetConfigurationDataQueryHookResult = ReturnType<typeof useGetConfigurationDataQuery>;
|
@@ -10049,7 +10285,7 @@ export declare function useOrganizationResourceContextQuery(baseOptions?: Apollo
|
|
10049
10285
|
export declare function useOrganizationResourceContextLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IOrganizationResourceContextQuery, IOrganizationResourceContextQueryVariables>): Apollo.LazyQueryResultTuple<IOrganizationResourceContextQuery, Exact<{
|
10050
10286
|
orgId?: InputMaybe<Scalars["String"]["input"]>;
|
10051
10287
|
}>>;
|
10052
|
-
export declare function useOrganizationResourceContextSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IOrganizationResourceContextQuery, IOrganizationResourceContextQueryVariables>): Apollo.UseSuspenseQueryResult<IOrganizationResourceContextQuery, Exact<{
|
10288
|
+
export declare function useOrganizationResourceContextSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IOrganizationResourceContextQuery, IOrganizationResourceContextQueryVariables>): Apollo.UseSuspenseQueryResult<IOrganizationResourceContextQuery, Exact<{
|
10053
10289
|
orgId?: InputMaybe<Scalars["String"]["input"]>;
|
10054
10290
|
}>>;
|
10055
10291
|
export type OrganizationResourceContextQueryHookResult = ReturnType<typeof useOrganizationResourceContextQuery>;
|
@@ -10079,7 +10315,7 @@ export declare function useViewerSettingsQuery(baseOptions?: Apollo.QueryHookOpt
|
|
10079
10315
|
export declare function useViewerSettingsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IViewerSettingsQuery, IViewerSettingsQueryVariables>): Apollo.LazyQueryResultTuple<IViewerSettingsQuery, Exact<{
|
10080
10316
|
input?: InputMaybe<IViewerSettingsInput>;
|
10081
10317
|
}>>;
|
10082
|
-
export declare function useViewerSettingsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IViewerSettingsQuery, IViewerSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<IViewerSettingsQuery, Exact<{
|
10318
|
+
export declare function useViewerSettingsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IViewerSettingsQuery, IViewerSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<IViewerSettingsQuery, Exact<{
|
10083
10319
|
input?: InputMaybe<IViewerSettingsInput>;
|
10084
10320
|
}>>;
|
10085
10321
|
export type ViewerSettingsQueryHookResult = ReturnType<typeof useViewerSettingsQuery>;
|
@@ -10118,7 +10354,23 @@ export type IResolversUnionTypes<_RefType extends Record<string, unknown>> = {
|
|
10118
10354
|
Configuration: IApplicationConfiguration | IDefaultConfiguration | IMachineConfiguration | IOrganizationConfiguration | IOrganizationResourceConfiguration | IPolicyConfiguration | IUserConfiguration;
|
10119
10355
|
ConfigurationPolicy: IApplicationPolicy | IDefaultPolicy | IOrganizationPolicy | IResourcePolicy;
|
10120
10356
|
ResourceData: IExternalResourceData | IOrganizationResourceData;
|
10121
|
-
SettingsSubject: IApplicationSettings
|
10357
|
+
SettingsSubject: (Omit<IApplicationSettings, 'settingsCascade'> & {
|
10358
|
+
settingsCascade: _RefType['SettingsCascade'];
|
10359
|
+
}) | (Omit<IDefaultSettings, 'settingsCascade'> & {
|
10360
|
+
settingsCascade: _RefType['SettingsCascade'];
|
10361
|
+
}) | (Omit<IGlobalSettings, 'settingsCascade'> & {
|
10362
|
+
settingsCascade: _RefType['SettingsCascade'];
|
10363
|
+
}) | (Omit<IMachineSettings, 'settingsCascade'> & {
|
10364
|
+
settingsCascade: _RefType['SettingsCascade'];
|
10365
|
+
}) | (Omit<IMemorySettings, 'settingsCascade'> & {
|
10366
|
+
settingsCascade: _RefType['SettingsCascade'];
|
10367
|
+
}) | (Omit<IOrganizationResourceSettings, 'settingsCascade'> & {
|
10368
|
+
settingsCascade: _RefType['SettingsCascade'];
|
10369
|
+
}) | (Omit<IOrganizationSettings, 'settingsCascade'> & {
|
10370
|
+
settingsCascade: _RefType['SettingsCascade'];
|
10371
|
+
}) | (Omit<IUserSettings, 'settingsCascade'> & {
|
10372
|
+
settingsCascade: _RefType['SettingsCascade'];
|
10373
|
+
});
|
10122
10374
|
};
|
10123
10375
|
/** Mapping of interface types */
|
10124
10376
|
export type IResolversInterfaceTypes<_RefType extends Record<string, unknown>> = {
|
@@ -10135,7 +10387,23 @@ export type IResolversInterfaceTypes<_RefType extends Record<string, unknown>> =
|
|
10135
10387
|
IResourceData: IExternalResourceData | IOrganizationResourceData;
|
10136
10388
|
IResourceUserRole: IResourceUser;
|
10137
10389
|
IResourceUtilizationSettings: never;
|
10138
|
-
ISettingsSubject: IApplicationSettings
|
10390
|
+
ISettingsSubject: (Omit<IApplicationSettings, 'settingsCascade'> & {
|
10391
|
+
settingsCascade: _RefType['SettingsCascade'];
|
10392
|
+
}) | (Omit<IDefaultSettings, 'settingsCascade'> & {
|
10393
|
+
settingsCascade: _RefType['SettingsCascade'];
|
10394
|
+
}) | (Omit<IGlobalSettings, 'settingsCascade'> & {
|
10395
|
+
settingsCascade: _RefType['SettingsCascade'];
|
10396
|
+
}) | (Omit<IMachineSettings, 'settingsCascade'> & {
|
10397
|
+
settingsCascade: _RefType['SettingsCascade'];
|
10398
|
+
}) | (Omit<IMemorySettings, 'settingsCascade'> & {
|
10399
|
+
settingsCascade: _RefType['SettingsCascade'];
|
10400
|
+
}) | (Omit<IOrganizationResourceSettings, 'settingsCascade'> & {
|
10401
|
+
settingsCascade: _RefType['SettingsCascade'];
|
10402
|
+
}) | (Omit<IOrganizationSettings, 'settingsCascade'> & {
|
10403
|
+
settingsCascade: _RefType['SettingsCascade'];
|
10404
|
+
}) | (Omit<IUserSettings, 'settingsCascade'> & {
|
10405
|
+
settingsCascade: _RefType['SettingsCascade'];
|
10406
|
+
});
|
10139
10407
|
ITerritorialState: IState;
|
10140
10408
|
IUser: IAuthUser;
|
10141
10409
|
IUserMetadata: IUserMetadata;
|
@@ -10160,7 +10428,9 @@ export type IResolversTypes = {
|
|
10160
10428
|
ApplicationPolicy: ResolverTypeWrapper<IApplicationPolicy>;
|
10161
10429
|
ApplicationRole: ResolverTypeWrapper<IApplicationRole>;
|
10162
10430
|
ApplicationRoles: IApplicationRoles;
|
10163
|
-
ApplicationSettings: ResolverTypeWrapper<IApplicationSettings
|
10431
|
+
ApplicationSettings: ResolverTypeWrapper<Omit<IApplicationSettings, 'settingsCascade'> & {
|
10432
|
+
settingsCascade: IResolversTypes['SettingsCascade'];
|
10433
|
+
}>;
|
10164
10434
|
Auth0Identity: ResolverTypeWrapper<IAuth0Identity>;
|
10165
10435
|
Auth0IdentityProfileData: ResolverTypeWrapper<IAuth0IdentityProfileData>;
|
10166
10436
|
AuthErrorCodes: IAuthErrorCodes;
|
@@ -10170,8 +10440,8 @@ export type IResolversTypes = {
|
|
10170
10440
|
BaseAccountService: ResolverTypeWrapper<IBaseAccountService>;
|
10171
10441
|
BaseOrganizationService: ResolverTypeWrapper<IBaseOrganizationService>;
|
10172
10442
|
BaseTeamService: ResolverTypeWrapper<IBaseTeamService>;
|
10443
|
+
BillingPermissions: ResolverTypeWrapper<IBillingPermissions>;
|
10173
10444
|
Boolean: ResolverTypeWrapper<Scalars['Boolean']['output']>;
|
10174
|
-
CacheControlScope: ICacheControlScope;
|
10175
10445
|
Cities: ResolverTypeWrapper<ICities>;
|
10176
10446
|
CitiesInput: ICitiesInput;
|
10177
10447
|
CitiesOptions: ICitiesOptions;
|
@@ -10180,6 +10450,8 @@ export type IResolversTypes = {
|
|
10180
10450
|
CityUpdateInput: ICityUpdateInput;
|
10181
10451
|
ClientCacheTypeNames: IClientCacheTypeNames;
|
10182
10452
|
ClientContainerService: IClientContainerService;
|
10453
|
+
ClientLevelPermissions: ResolverTypeWrapper<IClientLevelPermissions>;
|
10454
|
+
ClientPermissions: ResolverTypeWrapper<IClientPermissions>;
|
10183
10455
|
ClientTypes: IClientTypes;
|
10184
10456
|
ConfigCollectionName: IConfigCollectionName;
|
10185
10457
|
ConfigFragmentName: IConfigFragmentName;
|
@@ -10221,7 +10493,9 @@ export type IResolversTypes = {
|
|
10221
10493
|
DefaultConfiguration: ResolverTypeWrapper<IDefaultConfiguration>;
|
10222
10494
|
DefaultPolicy: ResolverTypeWrapper<IDefaultPolicy>;
|
10223
10495
|
DefaultRole: ResolverTypeWrapper<IDefaultRole>;
|
10224
|
-
DefaultSettings: ResolverTypeWrapper<IDefaultSettings
|
10496
|
+
DefaultSettings: ResolverTypeWrapper<Omit<IDefaultSettings, 'settingsCascade'> & {
|
10497
|
+
settingsCascade: IResolversTypes['SettingsCascade'];
|
10498
|
+
}>;
|
10225
10499
|
DeviceInfoInput: IDeviceInfoInput;
|
10226
10500
|
DeviceInfoPlatform: IDeviceInfoPlatform;
|
10227
10501
|
EditPresentationTypes: IEditPresentationTypes;
|
@@ -10235,7 +10509,9 @@ export type IResolversTypes = {
|
|
10235
10509
|
GeoLocation: ResolverTypeWrapper<IGeoLocation>;
|
10236
10510
|
GlobalCurrencies: IGlobalCurrencies;
|
10237
10511
|
GlobalLanguages: IGlobalLanguages;
|
10238
|
-
GlobalSettings: ResolverTypeWrapper<IGlobalSettings
|
10512
|
+
GlobalSettings: ResolverTypeWrapper<Omit<IGlobalSettings, 'settingsCascade'> & {
|
10513
|
+
settingsCascade: IResolversTypes['SettingsCascade'];
|
10514
|
+
}>;
|
10239
10515
|
IAuth0Identity: ResolverTypeWrapper<IResolversInterfaceTypes<IResolversTypes>['IAuth0Identity']>;
|
10240
10516
|
IAuth0Token: ResolverTypeWrapper<IResolversInterfaceTypes<IResolversTypes>['IAuth0Token']>;
|
10241
10517
|
IAuth0User: ResolverTypeWrapper<IResolversInterfaceTypes<IResolversTypes>['IAuth0User']>;
|
@@ -10255,6 +10531,7 @@ export type IResolversTypes = {
|
|
10255
10531
|
ITerritorialState: ResolverTypeWrapper<IResolversInterfaceTypes<IResolversTypes>['ITerritorialState']>;
|
10256
10532
|
IUser: ResolverTypeWrapper<IResolversInterfaceTypes<IResolversTypes>['IUser']>;
|
10257
10533
|
IUserMetadata: ResolverTypeWrapper<IResolversInterfaceTypes<IResolversTypes>['IUserMetadata']>;
|
10534
|
+
InboxPermissions: ResolverTypeWrapper<IInboxPermissions>;
|
10258
10535
|
Int: ResolverTypeWrapper<Scalars['Int']['output']>;
|
10259
10536
|
IntegraitonConfigurationId: ResolverTypeWrapper<IIntegraitonConfigurationId>;
|
10260
10537
|
IntegrationConfiguration: ResolverTypeWrapper<IIntegrationConfiguration>;
|
@@ -10270,11 +10547,17 @@ export type IResolversTypes = {
|
|
10270
10547
|
JSONObject: ResolverTypeWrapper<Scalars['JSONObject']['output']>;
|
10271
10548
|
KeyPathSegment: IKeyPathSegment;
|
10272
10549
|
LinkedIdentity: ResolverTypeWrapper<ILinkedIdentity>;
|
10550
|
+
LoginDeviceCredential: ResolverTypeWrapper<ILoginDeviceCredential>;
|
10273
10551
|
LoginError: ResolverTypeWrapper<ILoginError>;
|
10274
10552
|
MachineConfiguration: ResolverTypeWrapper<IMachineConfiguration>;
|
10275
|
-
MachineSettings: ResolverTypeWrapper<IMachineSettings
|
10553
|
+
MachineSettings: ResolverTypeWrapper<Omit<IMachineSettings, 'settingsCascade'> & {
|
10554
|
+
settingsCascade: IResolversTypes['SettingsCascade'];
|
10555
|
+
}>;
|
10276
10556
|
MailTemplateId: IMailTemplateId;
|
10277
|
-
|
10557
|
+
MemberPermissions: ResolverTypeWrapper<IMemberPermissions>;
|
10558
|
+
MemorySettings: ResolverTypeWrapper<Omit<IMemorySettings, 'settingsCascade'> & {
|
10559
|
+
settingsCascade: IResolversTypes['SettingsCascade'];
|
10560
|
+
}>;
|
10278
10561
|
MenuItem: ResolverTypeWrapper<IMenuItem>;
|
10279
10562
|
MenuPosition: IMenuPosition;
|
10280
10563
|
MoleculerCronServiceName: IMoleculerCronServiceName;
|
@@ -10309,42 +10592,56 @@ export type IResolversTypes = {
|
|
10309
10592
|
OrganizationInvitationRequest: IOrganizationInvitationRequest;
|
10310
10593
|
OrganizationMember: ResolverTypeWrapper<IOrganizationMember>;
|
10311
10594
|
OrganizationNotificationValues: IOrganizationNotificationValues;
|
10595
|
+
OrganizationPermissions: ResolverTypeWrapper<IOrganizationPermissions>;
|
10312
10596
|
OrganizationPolicy: ResolverTypeWrapper<IOrganizationPolicy>;
|
10597
|
+
OrganizationPreferences: ResolverTypeWrapper<IOrganizationPreferences>;
|
10313
10598
|
OrganizationRemoveRequest: IOrganizationRemoveRequest;
|
10314
10599
|
OrganizationResourceConfiguration: ResolverTypeWrapper<IOrganizationResourceConfiguration>;
|
10315
10600
|
OrganizationResourceData: ResolverTypeWrapper<IOrganizationResourceData>;
|
10316
|
-
OrganizationResourceSettings: ResolverTypeWrapper<IOrganizationResourceSettings
|
10601
|
+
OrganizationResourceSettings: ResolverTypeWrapper<Omit<IOrganizationResourceSettings, 'settingsCascade'> & {
|
10602
|
+
settingsCascade: IResolversTypes['SettingsCascade'];
|
10603
|
+
}>;
|
10317
10604
|
OrganizationRole: ResolverTypeWrapper<IOrganizationRole>;
|
10318
10605
|
OrganizationServiceAction: IOrganizationServiceAction;
|
10319
|
-
OrganizationSettings: ResolverTypeWrapper<IOrganizationSettings
|
10606
|
+
OrganizationSettings: ResolverTypeWrapper<Omit<IOrganizationSettings, 'settingsCascade'> & {
|
10607
|
+
settingsCascade: IResolversTypes['SettingsCascade'];
|
10608
|
+
}>;
|
10320
10609
|
OrganizationSharedTokenDecode: ResolverTypeWrapper<IOrganizationSharedTokenDecode>;
|
10321
10610
|
OrganizationUpdateRequest: IOrganizationUpdateRequest;
|
10322
10611
|
OrganizationsDeactivatedEvent: ResolverTypeWrapper<IOrganizationsDeactivatedEvent>;
|
10323
10612
|
OrganizationsDeletedEvent: ResolverTypeWrapper<IOrganizationsDeletedEvent>;
|
10613
|
+
OthersThreadsPermissions: ResolverTypeWrapper<IOthersThreadsPermissions>;
|
10324
10614
|
Overrides: ResolverTypeWrapper<IOverrides>;
|
10325
10615
|
PageInfo: ResolverTypeWrapper<IPageInfo>;
|
10616
|
+
PaymentMethodsPermissions: ResolverTypeWrapper<IPaymentMethodsPermissions>;
|
10617
|
+
PaymentProfilePermissions: ResolverTypeWrapper<IPaymentProfilePermissions>;
|
10326
10618
|
PermissionAction: IPermissionAction;
|
10619
|
+
PermissionPermissions: ResolverTypeWrapper<IPermissionPermissions>;
|
10327
10620
|
PermissionResource: IPermissionResource;
|
10328
10621
|
PermissionSubject: ResolverTypeWrapper<Omit<IPermissionSubject, 'accessRole'> & {
|
10329
10622
|
accessRole?: Maybe<IResolversTypes['AccessRole']>;
|
10330
10623
|
}>;
|
10331
10624
|
PermissionType: IPermissionType;
|
10625
|
+
Permissions: ResolverTypeWrapper<IPermissions>;
|
10332
10626
|
PhoneNumber: ResolverTypeWrapper<IPhoneNumber>;
|
10333
10627
|
PhoneNumberInput: IPhoneNumberInput;
|
10334
10628
|
PolicyConfiguration: ResolverTypeWrapper<IPolicyConfiguration>;
|
10629
|
+
PolicyPermissions: ResolverTypeWrapper<IPolicyPermissions>;
|
10335
10630
|
PolicySubject: ResolverTypeWrapper<IPolicySubject>;
|
10336
10631
|
PopupIntegrationAuthorization: ResolverTypeWrapper<IPopupIntegrationAuthorization>;
|
10337
10632
|
PortalLanguage: IPortalLanguage;
|
10338
10633
|
Position: ResolverTypeWrapper<IPosition>;
|
10634
|
+
PostsPermissions: ResolverTypeWrapper<IPostsPermissions>;
|
10339
10635
|
PreDefinedRole: IPreDefinedRole;
|
10340
10636
|
PreferenceItem: ResolverTypeWrapper<IPreferenceItem>;
|
10637
|
+
PreferenceProject: ResolverTypeWrapper<IPreferenceProject>;
|
10638
|
+
PreferenceProjectIntegration: ResolverTypeWrapper<IPreferenceProjectIntegration>;
|
10639
|
+
PreferenceProjectIntegrationStatus: IPreferenceProjectIntegrationStatus;
|
10341
10640
|
Preference_Account: ResolverTypeWrapper<IPreference_Account>;
|
10342
10641
|
Preference_Default: ResolverTypeWrapper<IPreference_Default>;
|
10343
10642
|
Preference_Global: ResolverTypeWrapper<IPreference_Global>;
|
10344
10643
|
Preference_Global_User: ResolverTypeWrapper<IPreference_Global_User>;
|
10345
10644
|
Preference_Notification: ResolverTypeWrapper<IPreference_Notification>;
|
10346
|
-
Preference_Organization: ResolverTypeWrapper<IPreference_Organization>;
|
10347
|
-
Preference_Project: ResolverTypeWrapper<IPreference_Project>;
|
10348
10645
|
Preference_Teams: ResolverTypeWrapper<IPreference_Teams>;
|
10349
10646
|
Preferences: ResolverTypeWrapper<IPreferences>;
|
10350
10647
|
PreferencesInput: ResolverTypeWrapper<IPreferencesInput>;
|
@@ -10352,10 +10649,15 @@ export type IResolversTypes = {
|
|
10352
10649
|
PreferencesOpenOptionsInput: IPreferencesOpenOptionsInput;
|
10353
10650
|
PreferencesResponse: ResolverTypeWrapper<IPreferencesResponse>;
|
10354
10651
|
PreferencesType: ResolverTypeWrapper<IPreferencesType>;
|
10652
|
+
ProjectLevelPermissions: ResolverTypeWrapper<IProjectLevelPermissions>;
|
10653
|
+
ProjectPermissions: ResolverTypeWrapper<IProjectPermissions>;
|
10654
|
+
ProjectStatusLevelPermissions: ResolverTypeWrapper<IProjectStatusLevelPermissions>;
|
10655
|
+
ProjectStatusPermissions: ResolverTypeWrapper<IProjectStatusPermissions>;
|
10355
10656
|
Query: ResolverTypeWrapper<{}>;
|
10356
10657
|
Range: ResolverTypeWrapper<IRange>;
|
10357
10658
|
RegistryExtensions: IRegistryExtensions;
|
10358
10659
|
RenewAuthUsingRefreshToken: ResolverTypeWrapper<IRenewAuthUsingRefreshToken>;
|
10660
|
+
ReportPermissions: ResolverTypeWrapper<IReportPermissions>;
|
10359
10661
|
ResourceAccessRole: ResolverTypeWrapper<Omit<IResourceAccessRole, 'accessRoles'> & {
|
10360
10662
|
accessRoles?: Maybe<Array<Maybe<IResolversTypes['AccessRole']>>>;
|
10361
10663
|
}>;
|
@@ -10369,8 +10671,10 @@ export type IResolversTypes = {
|
|
10369
10671
|
ResourceUser: ResolverTypeWrapper<IResourceUser>;
|
10370
10672
|
Role: IRole;
|
10371
10673
|
RoleInput: IRoleInput;
|
10674
|
+
RolePermissions: ResolverTypeWrapper<IRolePermissions>;
|
10372
10675
|
RouteData: ResolverTypeWrapper<IRouteData>;
|
10373
10676
|
RouteParams: IRouteParams;
|
10677
|
+
SettingPermissions: ResolverTypeWrapper<ISettingPermissions>;
|
10374
10678
|
SettingValueType: ISettingValueType;
|
10375
10679
|
Settings: ResolverTypeWrapper<ISettings>;
|
10376
10680
|
SettingsCascade: ResolverTypeWrapper<Omit<ISettingsCascade, 'subjects'> & {
|
@@ -10390,17 +10694,22 @@ export type IResolversTypes = {
|
|
10390
10694
|
resources?: Maybe<Array<Maybe<IResolversTypes['ResourceData']>>>;
|
10391
10695
|
}>;
|
10392
10696
|
Subscription: ResolverTypeWrapper<{}>;
|
10697
|
+
SubscriptionsPermissions: ResolverTypeWrapper<ISubscriptionsPermissions>;
|
10698
|
+
TagPermissions: ResolverTypeWrapper<ITagPermissions>;
|
10699
|
+
TaskPermissions: ResolverTypeWrapper<ITaskPermissions>;
|
10393
10700
|
TeamCreateRequest: ITeamCreateRequest;
|
10394
10701
|
TeamCreationRequest: ITeamCreationRequest;
|
10395
10702
|
TeamInvitationEmailVariables: ResolverTypeWrapper<ITeamInvitationEmailVariables>;
|
10396
10703
|
TeamMember: ResolverTypeWrapper<ITeamMember>;
|
10397
10704
|
TeamMemberInput: ITeamMemberInput;
|
10705
|
+
TeamPermissions: ResolverTypeWrapper<ITeamPermissions>;
|
10398
10706
|
TeamRemoveRequest: ITeamRemoveRequest;
|
10399
10707
|
TeamServiceAction: ITeamServiceAction;
|
10400
10708
|
TeamType: ITeamType;
|
10401
10709
|
TeamUpdateRequest: ITeamUpdateRequest;
|
10402
10710
|
TerritorialStateInput: ITerritorialStateInput;
|
10403
10711
|
TerritorialStateUpdateInput: ITerritorialStateUpdateInput;
|
10712
|
+
ThreadsPermissions: ResolverTypeWrapper<IThreadsPermissions>;
|
10404
10713
|
Time: ResolverTypeWrapper<Scalars['Time']['output']>;
|
10405
10714
|
Timestamp: ResolverTypeWrapper<Scalars['Timestamp']['output']>;
|
10406
10715
|
TokenTypesEnum: ITokenTypesEnum;
|
@@ -10434,7 +10743,9 @@ export type IResolversTypes = {
|
|
10434
10743
|
UserServiceAction: IUserServiceAction;
|
10435
10744
|
UserSession: ResolverTypeWrapper<IUserSession>;
|
10436
10745
|
UserSessionId: ResolverTypeWrapper<IUserSessionId>;
|
10437
|
-
UserSettings: ResolverTypeWrapper<IUserSettings
|
10746
|
+
UserSettings: ResolverTypeWrapper<Omit<IUserSettings, 'settingsCascade'> & {
|
10747
|
+
settingsCascade: IResolversTypes['SettingsCascade'];
|
10748
|
+
}>;
|
10438
10749
|
UserState: ResolverTypeWrapper<IUserState>;
|
10439
10750
|
UserToken: ResolverTypeWrapper<IUserToken>;
|
10440
10751
|
UserTokenInput: IUserTokenInput;
|
@@ -10461,7 +10772,9 @@ export type IResolversParentTypes = {
|
|
10461
10772
|
ApplicationConfiguration: IApplicationConfiguration;
|
10462
10773
|
ApplicationPolicy: IApplicationPolicy;
|
10463
10774
|
ApplicationRole: IApplicationRole;
|
10464
|
-
ApplicationSettings: IApplicationSettings
|
10775
|
+
ApplicationSettings: Omit<IApplicationSettings, 'settingsCascade'> & {
|
10776
|
+
settingsCascade: IResolversParentTypes['SettingsCascade'];
|
10777
|
+
};
|
10465
10778
|
Auth0Identity: IAuth0Identity;
|
10466
10779
|
Auth0IdentityProfileData: IAuth0IdentityProfileData;
|
10467
10780
|
AuthTokens: IAuthTokens;
|
@@ -10470,6 +10783,7 @@ export type IResolversParentTypes = {
|
|
10470
10783
|
BaseAccountService: IBaseAccountService;
|
10471
10784
|
BaseOrganizationService: IBaseOrganizationService;
|
10472
10785
|
BaseTeamService: IBaseTeamService;
|
10786
|
+
BillingPermissions: IBillingPermissions;
|
10473
10787
|
Boolean: Scalars['Boolean']['output'];
|
10474
10788
|
Cities: ICities;
|
10475
10789
|
CitiesInput: ICitiesInput;
|
@@ -10477,6 +10791,8 @@ export type IResolversParentTypes = {
|
|
10477
10791
|
City: ICity;
|
10478
10792
|
CityInput: ICityInput;
|
10479
10793
|
CityUpdateInput: ICityUpdateInput;
|
10794
|
+
ClientLevelPermissions: IClientLevelPermissions;
|
10795
|
+
ClientPermissions: IClientPermissions;
|
10480
10796
|
Configuration: IResolversUnionTypes<IResolversParentTypes>['Configuration'];
|
10481
10797
|
ConfigurationData: Omit<IConfigurationData, 'application' | 'defaults' | 'machine' | 'organization' | 'policy' | 'resources' | 'user'> & {
|
10482
10798
|
application?: Maybe<IResolversParentTypes['IConfigurationModel']>;
|
@@ -10510,7 +10826,9 @@ export type IResolversParentTypes = {
|
|
10510
10826
|
DefaultConfiguration: IDefaultConfiguration;
|
10511
10827
|
DefaultPolicy: IDefaultPolicy;
|
10512
10828
|
DefaultRole: IDefaultRole;
|
10513
|
-
DefaultSettings: IDefaultSettings
|
10829
|
+
DefaultSettings: Omit<IDefaultSettings, 'settingsCascade'> & {
|
10830
|
+
settingsCascade: IResolversParentTypes['SettingsCascade'];
|
10831
|
+
};
|
10514
10832
|
DeviceInfoInput: IDeviceInfoInput;
|
10515
10833
|
EmptyResponse: IEmptyResponse;
|
10516
10834
|
Environment: IEnvironment;
|
@@ -10520,7 +10838,9 @@ export type IResolversParentTypes = {
|
|
10520
10838
|
FieldError: IFieldError;
|
10521
10839
|
Float: Scalars['Float']['output'];
|
10522
10840
|
GeoLocation: IGeoLocation;
|
10523
|
-
GlobalSettings: IGlobalSettings
|
10841
|
+
GlobalSettings: Omit<IGlobalSettings, 'settingsCascade'> & {
|
10842
|
+
settingsCascade: IResolversParentTypes['SettingsCascade'];
|
10843
|
+
};
|
10524
10844
|
IAuth0Identity: IResolversInterfaceTypes<IResolversParentTypes>['IAuth0Identity'];
|
10525
10845
|
IAuth0Token: IResolversInterfaceTypes<IResolversParentTypes>['IAuth0Token'];
|
10526
10846
|
IAuth0User: IResolversInterfaceTypes<IResolversParentTypes>['IAuth0User'];
|
@@ -10540,6 +10860,7 @@ export type IResolversParentTypes = {
|
|
10540
10860
|
ITerritorialState: IResolversInterfaceTypes<IResolversParentTypes>['ITerritorialState'];
|
10541
10861
|
IUser: IResolversInterfaceTypes<IResolversParentTypes>['IUser'];
|
10542
10862
|
IUserMetadata: IResolversInterfaceTypes<IResolversParentTypes>['IUserMetadata'];
|
10863
|
+
InboxPermissions: IInboxPermissions;
|
10543
10864
|
Int: Scalars['Int']['output'];
|
10544
10865
|
IntegraitonConfigurationId: IIntegraitonConfigurationId;
|
10545
10866
|
IntegrationConfiguration: IIntegrationConfiguration;
|
@@ -10553,10 +10874,16 @@ export type IResolversParentTypes = {
|
|
10553
10874
|
JSONObject: Scalars['JSONObject']['output'];
|
10554
10875
|
KeyPathSegment: IKeyPathSegment;
|
10555
10876
|
LinkedIdentity: ILinkedIdentity;
|
10877
|
+
LoginDeviceCredential: ILoginDeviceCredential;
|
10556
10878
|
LoginError: ILoginError;
|
10557
10879
|
MachineConfiguration: IMachineConfiguration;
|
10558
|
-
MachineSettings: IMachineSettings
|
10559
|
-
|
10880
|
+
MachineSettings: Omit<IMachineSettings, 'settingsCascade'> & {
|
10881
|
+
settingsCascade: IResolversParentTypes['SettingsCascade'];
|
10882
|
+
};
|
10883
|
+
MemberPermissions: IMemberPermissions;
|
10884
|
+
MemorySettings: Omit<IMemorySettings, 'settingsCascade'> & {
|
10885
|
+
settingsCascade: IResolversParentTypes['SettingsCascade'];
|
10886
|
+
};
|
10560
10887
|
MenuItem: IMenuItem;
|
10561
10888
|
Mutation: {};
|
10562
10889
|
Node: IResolversInterfaceTypes<IResolversParentTypes>['Node'];
|
@@ -10585,36 +10912,49 @@ export type IResolversParentTypes = {
|
|
10585
10912
|
OrganizationInvitationRequest: IOrganizationInvitationRequest;
|
10586
10913
|
OrganizationMember: IOrganizationMember;
|
10587
10914
|
OrganizationNotificationValues: IOrganizationNotificationValues;
|
10915
|
+
OrganizationPermissions: IOrganizationPermissions;
|
10588
10916
|
OrganizationPolicy: IOrganizationPolicy;
|
10917
|
+
OrganizationPreferences: IOrganizationPreferences;
|
10589
10918
|
OrganizationRemoveRequest: IOrganizationRemoveRequest;
|
10590
10919
|
OrganizationResourceConfiguration: IOrganizationResourceConfiguration;
|
10591
10920
|
OrganizationResourceData: IOrganizationResourceData;
|
10592
|
-
OrganizationResourceSettings: IOrganizationResourceSettings
|
10921
|
+
OrganizationResourceSettings: Omit<IOrganizationResourceSettings, 'settingsCascade'> & {
|
10922
|
+
settingsCascade: IResolversParentTypes['SettingsCascade'];
|
10923
|
+
};
|
10593
10924
|
OrganizationRole: IOrganizationRole;
|
10594
|
-
OrganizationSettings: IOrganizationSettings
|
10925
|
+
OrganizationSettings: Omit<IOrganizationSettings, 'settingsCascade'> & {
|
10926
|
+
settingsCascade: IResolversParentTypes['SettingsCascade'];
|
10927
|
+
};
|
10595
10928
|
OrganizationSharedTokenDecode: IOrganizationSharedTokenDecode;
|
10596
10929
|
OrganizationUpdateRequest: IOrganizationUpdateRequest;
|
10597
10930
|
OrganizationsDeactivatedEvent: IOrganizationsDeactivatedEvent;
|
10598
10931
|
OrganizationsDeletedEvent: IOrganizationsDeletedEvent;
|
10932
|
+
OthersThreadsPermissions: IOthersThreadsPermissions;
|
10599
10933
|
Overrides: IOverrides;
|
10600
10934
|
PageInfo: IPageInfo;
|
10935
|
+
PaymentMethodsPermissions: IPaymentMethodsPermissions;
|
10936
|
+
PaymentProfilePermissions: IPaymentProfilePermissions;
|
10937
|
+
PermissionPermissions: IPermissionPermissions;
|
10601
10938
|
PermissionSubject: Omit<IPermissionSubject, 'accessRole'> & {
|
10602
10939
|
accessRole?: Maybe<IResolversParentTypes['AccessRole']>;
|
10603
10940
|
};
|
10941
|
+
Permissions: IPermissions;
|
10604
10942
|
PhoneNumber: IPhoneNumber;
|
10605
10943
|
PhoneNumberInput: IPhoneNumberInput;
|
10606
10944
|
PolicyConfiguration: IPolicyConfiguration;
|
10945
|
+
PolicyPermissions: IPolicyPermissions;
|
10607
10946
|
PolicySubject: IPolicySubject;
|
10608
10947
|
PopupIntegrationAuthorization: IPopupIntegrationAuthorization;
|
10609
10948
|
Position: IPosition;
|
10949
|
+
PostsPermissions: IPostsPermissions;
|
10610
10950
|
PreferenceItem: IPreferenceItem;
|
10951
|
+
PreferenceProject: IPreferenceProject;
|
10952
|
+
PreferenceProjectIntegration: IPreferenceProjectIntegration;
|
10611
10953
|
Preference_Account: IPreference_Account;
|
10612
10954
|
Preference_Default: IPreference_Default;
|
10613
10955
|
Preference_Global: IPreference_Global;
|
10614
10956
|
Preference_Global_User: IPreference_Global_User;
|
10615
10957
|
Preference_Notification: IPreference_Notification;
|
10616
|
-
Preference_Organization: IPreference_Organization;
|
10617
|
-
Preference_Project: IPreference_Project;
|
10618
10958
|
Preference_Teams: IPreference_Teams;
|
10619
10959
|
Preferences: IPreferences;
|
10620
10960
|
PreferencesInput: IPreferencesInput;
|
@@ -10622,9 +10962,14 @@ export type IResolversParentTypes = {
|
|
10622
10962
|
PreferencesOpenOptionsInput: IPreferencesOpenOptionsInput;
|
10623
10963
|
PreferencesResponse: IPreferencesResponse;
|
10624
10964
|
PreferencesType: IPreferencesType;
|
10965
|
+
ProjectLevelPermissions: IProjectLevelPermissions;
|
10966
|
+
ProjectPermissions: IProjectPermissions;
|
10967
|
+
ProjectStatusLevelPermissions: IProjectStatusLevelPermissions;
|
10968
|
+
ProjectStatusPermissions: IProjectStatusPermissions;
|
10625
10969
|
Query: {};
|
10626
10970
|
Range: IRange;
|
10627
10971
|
RenewAuthUsingRefreshToken: IRenewAuthUsingRefreshToken;
|
10972
|
+
ReportPermissions: IReportPermissions;
|
10628
10973
|
ResourceAccessRole: Omit<IResourceAccessRole, 'accessRoles'> & {
|
10629
10974
|
accessRoles?: Maybe<Array<Maybe<IResolversParentTypes['AccessRole']>>>;
|
10630
10975
|
};
|
@@ -10636,7 +10981,9 @@ export type IResolversParentTypes = {
|
|
10636
10981
|
ResourceRole: IResourceRole;
|
10637
10982
|
ResourceUser: IResourceUser;
|
10638
10983
|
RoleInput: IRoleInput;
|
10984
|
+
RolePermissions: IRolePermissions;
|
10639
10985
|
RouteData: IRouteData;
|
10986
|
+
SettingPermissions: ISettingPermissions;
|
10640
10987
|
Settings: ISettings;
|
10641
10988
|
SettingsCascade: Omit<ISettingsCascade, 'subjects'> & {
|
10642
10989
|
subjects?: Maybe<Array<Maybe<IResolversParentTypes['SettingsSubject']>>>;
|
@@ -10654,16 +11001,21 @@ export type IResolversParentTypes = {
|
|
10654
11001
|
resources?: Maybe<Array<Maybe<IResolversParentTypes['ResourceData']>>>;
|
10655
11002
|
};
|
10656
11003
|
Subscription: {};
|
11004
|
+
SubscriptionsPermissions: ISubscriptionsPermissions;
|
11005
|
+
TagPermissions: ITagPermissions;
|
11006
|
+
TaskPermissions: ITaskPermissions;
|
10657
11007
|
TeamCreateRequest: ITeamCreateRequest;
|
10658
11008
|
TeamCreationRequest: ITeamCreationRequest;
|
10659
11009
|
TeamInvitationEmailVariables: ITeamInvitationEmailVariables;
|
10660
11010
|
TeamMember: ITeamMember;
|
10661
11011
|
TeamMemberInput: ITeamMemberInput;
|
11012
|
+
TeamPermissions: ITeamPermissions;
|
10662
11013
|
TeamRemoveRequest: ITeamRemoveRequest;
|
10663
11014
|
TeamType: ITeamType;
|
10664
11015
|
TeamUpdateRequest: ITeamUpdateRequest;
|
10665
11016
|
TerritorialStateInput: ITerritorialStateInput;
|
10666
11017
|
TerritorialStateUpdateInput: ITerritorialStateUpdateInput;
|
11018
|
+
ThreadsPermissions: IThreadsPermissions;
|
10667
11019
|
Time: Scalars['Time']['output'];
|
10668
11020
|
Timestamp: Scalars['Timestamp']['output'];
|
10669
11021
|
URI: Scalars['URI']['output'];
|
@@ -10693,7 +11045,9 @@ export type IResolversParentTypes = {
|
|
10693
11045
|
UserRole: IUserRole;
|
10694
11046
|
UserSession: IUserSession;
|
10695
11047
|
UserSessionId: IUserSessionId;
|
10696
|
-
UserSettings: IUserSettings
|
11048
|
+
UserSettings: Omit<IUserSettings, 'settingsCascade'> & {
|
11049
|
+
settingsCascade: IResolversParentTypes['SettingsCascade'];
|
11050
|
+
};
|
10697
11051
|
UserState: IUserState;
|
10698
11052
|
UserToken: IUserToken;
|
10699
11053
|
UserTokenInput: IUserTokenInput;
|
@@ -10707,19 +11061,10 @@ export type IAddAccountContextDirectiveArgs = {};
|
|
10707
11061
|
export type IAddAccountContextDirectiveResolver<Result, Parent, ContextType = MyContext, Args = IAddAccountContextDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
10708
11062
|
export type IAddNamespaceContextDirectiveArgs = {};
|
10709
11063
|
export type IAddNamespaceContextDirectiveResolver<Result, Parent, ContextType = MyContext, Args = IAddNamespaceContextDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
10710
|
-
export type ICacheControlDirectiveArgs = {
|
10711
|
-
maxAge?: Maybe<Scalars['Int']['input']>;
|
10712
|
-
scope?: Maybe<ICacheControlScope>;
|
10713
|
-
};
|
10714
|
-
export type ICacheControlDirectiveResolver<Result, Parent, ContextType = MyContext, Args = ICacheControlDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
10715
11064
|
export type IHasScopeDirectiveArgs = {
|
10716
11065
|
scope?: Maybe<Array<Maybe<Scalars['String']['input']>>>;
|
10717
11066
|
};
|
10718
11067
|
export type IHasScopeDirectiveResolver<Result, Parent, ContextType = MyContext, Args = IHasScopeDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
10719
|
-
export type IInvalidateCacheDirectiveArgs = {
|
10720
|
-
queries: Array<Scalars['String']['input']>;
|
10721
|
-
};
|
10722
|
-
export type IInvalidateCacheDirectiveResolver<Result, Parent, ContextType = MyContext, Args = IInvalidateCacheDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
10723
11068
|
export type IIsAuthenticatedDirectiveArgs = {};
|
10724
11069
|
export type IIsAuthenticatedDirectiveResolver<Result, Parent, ContextType = MyContext, Args = IIsAuthenticatedDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
10725
11070
|
export type IProfileDirectiveArgs = {};
|
@@ -10838,7 +11183,7 @@ export type IAuthTokensResolvers<ContextType = MyContext, ParentType extends IRe
|
|
10838
11183
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10839
11184
|
};
|
10840
11185
|
export type IAuthUserResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AuthUser'] = IResolversParentTypes['AuthUser']> = {
|
10841
|
-
|
11186
|
+
authUserId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10842
11187
|
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10843
11188
|
emailVerified?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10844
11189
|
familyName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -10871,7 +11216,7 @@ export type IBaseAccountServiceResolvers<ContextType = MyContext, ParentType ext
|
|
10871
11216
|
sendEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceSendEmailVerificationTokenArgs, 'email'>>;
|
10872
11217
|
updateAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceUpdateAccountArgs, 'account'>>;
|
10873
11218
|
updateUserAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IBaseAccountServiceUpdateUserAccountArgs, 'user' | 'userInfo'>>;
|
10874
|
-
validateUserEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceValidateUserEmailVerificationTokenArgs, '
|
11219
|
+
validateUserEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceValidateUserEmailVerificationTokenArgs, 'authUserId' | 'code' | 'email'>>;
|
10875
11220
|
verifyUserEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceVerifyUserEmailVerificationTokenArgs, 'token' | 'userId'>>;
|
10876
11221
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10877
11222
|
};
|
@@ -10898,6 +11243,12 @@ export type IBaseTeamServiceResolvers<ContextType = MyContext, ParentType extend
|
|
10898
11243
|
updateTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, Partial<IBaseTeamServiceUpdateTeamArgs>>;
|
10899
11244
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10900
11245
|
};
|
11246
|
+
export type IBillingPermissionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['BillingPermissions'] = IResolversParentTypes['BillingPermissions']> = {
|
11247
|
+
paymentMethods?: Resolver<Maybe<IResolversTypes['PaymentMethodsPermissions']>, ParentType, ContextType>;
|
11248
|
+
paymentProfile?: Resolver<Maybe<IResolversTypes['PaymentProfilePermissions']>, ParentType, ContextType>;
|
11249
|
+
subscriptions?: Resolver<Maybe<IResolversTypes['SubscriptionsPermissions']>, ParentType, ContextType>;
|
11250
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11251
|
+
};
|
10901
11252
|
export type ICitiesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Cities'] = IResolversParentTypes['Cities']> = {
|
10902
11253
|
data?: Resolver<Maybe<Array<Maybe<IResolversTypes['City']>>>, ParentType, ContextType>;
|
10903
11254
|
totalCount?: Resolver<IResolversTypes['Int'], ParentType, ContextType>;
|
@@ -10912,6 +11263,19 @@ export type ICityResolvers<ContextType = MyContext, ParentType extends IResolver
|
|
10912
11263
|
updatedAt?: Resolver<IResolversTypes['DateTime'], ParentType, ContextType>;
|
10913
11264
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10914
11265
|
};
|
11266
|
+
export type IClientLevelPermissionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ClientLevelPermissions'] = IResolversParentTypes['ClientLevelPermissions']> = {
|
11267
|
+
others?: Resolver<Maybe<IResolversTypes['ClientPermissions']>, ParentType, ContextType>;
|
11268
|
+
self?: Resolver<Maybe<IResolversTypes['ClientPermissions']>, ParentType, ContextType>;
|
11269
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11270
|
+
};
|
11271
|
+
export type IClientPermissionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ClientPermissions'] = IResolversParentTypes['ClientPermissions']> = {
|
11272
|
+
create?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
11273
|
+
delete?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
11274
|
+
edit?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
11275
|
+
manage?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
11276
|
+
view?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
11277
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11278
|
+
};
|
10915
11279
|
export type IConfigurationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Configuration'] = IResolversParentTypes['Configuration']> = {
|
10916
11280
|
__resolveType: TypeResolveFn<'ApplicationConfiguration' | 'DefaultConfiguration' | 'MachineConfiguration' | 'OrganizationConfiguration' | 'OrganizationResourceConfiguration' | 'PolicyConfiguration' | 'UserConfiguration', ParentType, ContextType>;
|
10917
11281
|
};
|
@@ -11296,6 +11660,12 @@ export type IIUserMetadataResolvers<ContextType = MyContext, ParentType extends
|
|
11296
11660
|
work_email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11297
11661
|
zip_code?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
11298
11662
|
};
|
11663
|
+
export type IInboxPermissionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['InboxPermissions'] = IResolversParentTypes['InboxPermissions']> = {
|
11664
|
+
othersThreads?: Resolver<Maybe<IResolversTypes['OthersThreadsPermissions']>, ParentType, ContextType>;
|
11665
|
+
posts?: Resolver<Maybe<IResolversTypes['PostsPermissions']>, ParentType, ContextType>;
|
11666
|
+
threads?: Resolver<Maybe<IResolversTypes['ThreadsPermissions']>, ParentType, ContextType>;
|
11667
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11668
|
+
};
|
11299
11669
|
export type IIntegraitonConfigurationIdResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IntegraitonConfigurationId'] = IResolversParentTypes['IntegraitonConfigurationId']> = {
|
11300
11670
|
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11301
11671
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
@@ -11345,6 +11715,17 @@ export type ILinkedIdentityResolvers<ContextType = MyContext, ParentType extends
|
|
11345
11715
|
user_id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11346
11716
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11347
11717
|
};
|
11718
|
+
export type ILoginDeviceCredentialResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['LoginDeviceCredential'] = IResolversParentTypes['LoginDeviceCredential']> = {
|
11719
|
+
client_id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11720
|
+
device_Id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11721
|
+
device_name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11722
|
+
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11723
|
+
last_ip?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11724
|
+
last_used?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11725
|
+
type?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
11726
|
+
user_id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11727
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11728
|
+
};
|
11348
11729
|
export type ILoginErrorResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['LoginError'] = IResolversParentTypes['LoginError']> = {
|
11349
11730
|
error?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
11350
11731
|
timeStamp?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
|
@@ -11367,6 +11748,14 @@ export type IMachineSettingsResolvers<ContextType = MyContext, ParentType extend
|
|
11367
11748
|
viewerCanAdminister?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
11368
11749
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11369
11750
|
};
|
11751
|
+
export type IMemberPermissionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MemberPermissions'] = IResolversParentTypes['MemberPermissions']> = {
|
11752
|
+
create?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
11753
|
+
delete?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
11754
|
+
edit?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
11755
|
+
manage?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
11756
|
+
view?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
11757
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11758
|
+
};
|
11370
11759
|
export type IMemorySettingsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MemorySettings'] = IResolversParentTypes['MemorySettings']> = {
|
11371
11760
|
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
11372
11761
|
latestSettings?: Resolver<Maybe<IResolversTypes['Settings']>, ParentType, ContextType>;
|
@@ -11587,6 +11976,27 @@ export type IOrganizationMemberResolvers<ContextType = MyContext, ParentType ext
|
|
11587
11976
|
user?: Resolver<Maybe<IResolversTypes['AuthUser']>, ParentType, ContextType>;
|
11588
11977
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11589
11978
|
};
|
11979
|
+
export type IOrganizationPermissionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrganizationPermissions'] = IResolversParentTypes['OrganizationPermissions']> = {
|
11980
|
+
billing?: Resolver<Maybe<IResolversTypes['BillingPermissions']>, ParentType, ContextType>;
|
11981
|
+
clients?: Resolver<Maybe<IResolversTypes['ClientLevelPermissions']>, ParentType, ContextType>;
|
11982
|
+
create?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
11983
|
+
delete?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
11984
|
+
edit?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
11985
|
+
inviteMember?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
11986
|
+
manage?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
11987
|
+
members?: Resolver<Maybe<IResolversTypes['MemberPermissions']>, ParentType, ContextType>;
|
11988
|
+
permissions?: Resolver<Maybe<IResolversTypes['PermissionPermissions']>, ParentType, ContextType>;
|
11989
|
+
policies?: Resolver<Maybe<IResolversTypes['PolicyPermissions']>, ParentType, ContextType>;
|
11990
|
+
projects?: Resolver<Maybe<IResolversTypes['ProjectLevelPermissions']>, ParentType, ContextType>;
|
11991
|
+
reports?: Resolver<Maybe<IResolversTypes['ReportPermissions']>, ParentType, ContextType>;
|
11992
|
+
roles?: Resolver<Maybe<IResolversTypes['RolePermissions']>, ParentType, ContextType>;
|
11993
|
+
settings?: Resolver<Maybe<IResolversTypes['SettingPermissions']>, ParentType, ContextType>;
|
11994
|
+
tags?: Resolver<Maybe<IResolversTypes['TagPermissions']>, ParentType, ContextType>;
|
11995
|
+
tasks?: Resolver<Maybe<IResolversTypes['TaskPermissions']>, ParentType, ContextType>;
|
11996
|
+
teams?: Resolver<Maybe<IResolversTypes['TeamPermissions']>, ParentType, ContextType>;
|
11997
|
+
view?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
11998
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11999
|
+
};
|
11590
12000
|
export type IOrganizationPolicyResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrganizationPolicy'] = IResolversParentTypes['OrganizationPolicy']> = {
|
11591
12001
|
contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
11592
12002
|
keys?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
@@ -11595,6 +12005,11 @@ export type IOrganizationPolicyResolvers<ContextType = MyContext, ParentType ext
|
|
11595
12005
|
target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
11596
12006
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11597
12007
|
};
|
12008
|
+
export type IOrganizationPreferencesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrganizationPreferences'] = IResolversParentTypes['OrganizationPreferences']> = {
|
12009
|
+
project?: Resolver<Maybe<IResolversTypes['PreferenceProject']>, ParentType, ContextType>;
|
12010
|
+
teams?: Resolver<Maybe<IResolversTypes['Preference_Teams']>, ParentType, ContextType>;
|
12011
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12012
|
+
};
|
11598
12013
|
export type IOrganizationResourceConfigurationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OrganizationResourceConfiguration'] = IResolversParentTypes['OrganizationResourceConfiguration']> = {
|
11599
12014
|
contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
11600
12015
|
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
@@ -11648,6 +12063,14 @@ export type IOrganizationsDeletedEventResolvers<ContextType = MyContext, ParentT
|
|
11648
12063
|
deletedOrganizationIds?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
11649
12064
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11650
12065
|
};
|
12066
|
+
export type IOthersThreadsPermissionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['OthersThreadsPermissions'] = IResolversParentTypes['OthersThreadsPermissions']> = {
|
12067
|
+
delete?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12068
|
+
deleteReply?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12069
|
+
edit?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12070
|
+
editReply?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12071
|
+
reply?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12072
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12073
|
+
};
|
11651
12074
|
export type IOverridesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Overrides'] = IResolversParentTypes['Overrides']> = {
|
11652
12075
|
contents?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
11653
12076
|
identifiers?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
@@ -11658,6 +12081,27 @@ export type IPageInfoResolvers<ContextType = MyContext, ParentType extends IReso
|
|
11658
12081
|
hasNextPage?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
11659
12082
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11660
12083
|
};
|
12084
|
+
export type IPaymentMethodsPermissionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['PaymentMethodsPermissions'] = IResolversParentTypes['PaymentMethodsPermissions']> = {
|
12085
|
+
create?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12086
|
+
delete?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12087
|
+
edit?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12088
|
+
manage?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12089
|
+
view?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12090
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12091
|
+
};
|
12092
|
+
export type IPaymentProfilePermissionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['PaymentProfilePermissions'] = IResolversParentTypes['PaymentProfilePermissions']> = {
|
12093
|
+
create?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12094
|
+
delete?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12095
|
+
edit?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12096
|
+
manage?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12097
|
+
view?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12098
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12099
|
+
};
|
12100
|
+
export type IPermissionPermissionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['PermissionPermissions'] = IResolversParentTypes['PermissionPermissions']> = {
|
12101
|
+
edit?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12102
|
+
view?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12103
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12104
|
+
};
|
11661
12105
|
export type IPermissionSubjectResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['PermissionSubject'] = IResolversParentTypes['PermissionSubject']> = {
|
11662
12106
|
accessRole?: Resolver<Maybe<IResolversTypes['AccessRole']>, ParentType, ContextType>;
|
11663
12107
|
createdAt?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -11665,6 +12109,13 @@ export type IPermissionSubjectResolvers<ContextType = MyContext, ParentType exte
|
|
11665
12109
|
roleURL?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
11666
12110
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11667
12111
|
};
|
12112
|
+
export type IPermissionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Permissions'] = IResolversParentTypes['Permissions']> = {
|
12113
|
+
billing?: Resolver<Maybe<IResolversTypes['BillingPermissions']>, ParentType, ContextType>;
|
12114
|
+
dummy?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
12115
|
+
inbox?: Resolver<Maybe<IResolversTypes['InboxPermissions']>, ParentType, ContextType>;
|
12116
|
+
organization?: Resolver<Maybe<IResolversTypes['OrganizationPermissions']>, ParentType, ContextType>;
|
12117
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12118
|
+
};
|
11668
12119
|
export type IPhoneNumberResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['PhoneNumber'] = IResolversParentTypes['PhoneNumber']> = {
|
11669
12120
|
countryCode?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11670
12121
|
phoneNumber?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -11679,6 +12130,11 @@ export type IPolicyConfigurationResolvers<ContextType = MyContext, ParentType ex
|
|
11679
12130
|
target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
11680
12131
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11681
12132
|
};
|
12133
|
+
export type IPolicyPermissionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['PolicyPermissions'] = IResolversParentTypes['PolicyPermissions']> = {
|
12134
|
+
edit?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12135
|
+
view?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12136
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12137
|
+
};
|
11682
12138
|
export type IPolicySubjectResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['PolicySubject'] = IResolversParentTypes['PolicySubject']> = {
|
11683
12139
|
createdAt?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11684
12140
|
policies?: Resolver<IResolversTypes['AnyObject'], ParentType, ContextType>;
|
@@ -11694,6 +12150,13 @@ export type IPositionResolvers<ContextType = MyContext, ParentType extends IReso
|
|
11694
12150
|
line?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
11695
12151
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11696
12152
|
};
|
12153
|
+
export type IPostsPermissionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['PostsPermissions'] = IResolversParentTypes['PostsPermissions']> = {
|
12154
|
+
create?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12155
|
+
delete?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12156
|
+
edit?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12157
|
+
view?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12158
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12159
|
+
};
|
11697
12160
|
export type IPreferenceItemResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['PreferenceItem'] = IResolversParentTypes['PreferenceItem']> = {
|
11698
12161
|
categoryType?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11699
12162
|
default?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -11705,6 +12168,19 @@ export type IPreferenceItemResolvers<ContextType = MyContext, ParentType extends
|
|
11705
12168
|
type?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11706
12169
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11707
12170
|
};
|
12171
|
+
export type IPreferenceProjectResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['PreferenceProject'] = IResolversParentTypes['PreferenceProject']> = {
|
12172
|
+
billable?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
12173
|
+
integration?: Resolver<Maybe<IResolversTypes['PreferenceProjectIntegration']>, ParentType, ContextType>;
|
12174
|
+
tags?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12175
|
+
visibility?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12176
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12177
|
+
};
|
12178
|
+
export type IPreferenceProjectIntegrationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['PreferenceProjectIntegration'] = IResolversParentTypes['PreferenceProjectIntegration']> = {
|
12179
|
+
configurationId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12180
|
+
status?: Resolver<Maybe<IResolversTypes['PreferenceProjectIntegrationStatus']>, ParentType, ContextType>;
|
12181
|
+
type?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12182
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12183
|
+
};
|
11708
12184
|
export type IPreference_AccountResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Preference_Account'] = IResolversParentTypes['Preference_Account']> = {
|
11709
12185
|
default?: Resolver<Maybe<IResolversTypes['Preference_Default']>, ParentType, ContextType>;
|
11710
12186
|
notification?: Resolver<Maybe<IResolversTypes['Preference_Notification']>, ParentType, ContextType>;
|
@@ -11730,16 +12206,6 @@ export type IPreference_NotificationResolvers<ContextType = MyContext, ParentTyp
|
|
11730
12206
|
primaryEmail?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11731
12207
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11732
12208
|
};
|
11733
|
-
export type IPreference_OrganizationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Preference_Organization'] = IResolversParentTypes['Preference_Organization']> = {
|
11734
|
-
project?: Resolver<Maybe<IResolversTypes['Preference_Project']>, ParentType, ContextType>;
|
11735
|
-
teams?: Resolver<Maybe<IResolversTypes['Preference_Teams']>, ParentType, ContextType>;
|
11736
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11737
|
-
};
|
11738
|
-
export type IPreference_ProjectResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Preference_Project'] = IResolversParentTypes['Preference_Project']> = {
|
11739
|
-
tags?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11740
|
-
visibility?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11741
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11742
|
-
};
|
11743
12209
|
export type IPreference_TeamsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Preference_Teams'] = IResolversParentTypes['Preference_Teams']> = {
|
11744
12210
|
visibility?: Resolver<Maybe<IResolversTypes['Visibility']>, ParentType, ContextType>;
|
11745
12211
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
@@ -11750,7 +12216,7 @@ export type IPreferencesResolvers<ContextType = MyContext, ParentType extends IR
|
|
11750
12216
|
dummy?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
11751
12217
|
global?: Resolver<Maybe<IResolversTypes['Preference_Global']>, ParentType, ContextType>;
|
11752
12218
|
integration?: Resolver<Maybe<IResolversTypes['IntegrationPreferences']>, ParentType, ContextType>;
|
11753
|
-
organization?: Resolver<Maybe<IResolversTypes['
|
12219
|
+
organization?: Resolver<Maybe<IResolversTypes['OrganizationPreferences']>, ParentType, ContextType>;
|
11754
12220
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11755
12221
|
};
|
11756
12222
|
export type IPreferencesInputResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['PreferencesInput'] = IResolversParentTypes['PreferencesInput']> = {
|
@@ -11767,6 +12233,29 @@ export type IPreferencesTypeResolvers<ContextType = MyContext, ParentType extend
|
|
11767
12233
|
type?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11768
12234
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11769
12235
|
};
|
12236
|
+
export type IProjectLevelPermissionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ProjectLevelPermissions'] = IResolversParentTypes['ProjectLevelPermissions']> = {
|
12237
|
+
others?: Resolver<Maybe<IResolversTypes['ProjectPermissions']>, ParentType, ContextType>;
|
12238
|
+
self?: Resolver<Maybe<IResolversTypes['ProjectPermissions']>, ParentType, ContextType>;
|
12239
|
+
status?: Resolver<Maybe<IResolversTypes['ProjectStatusLevelPermissions']>, ParentType, ContextType>;
|
12240
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12241
|
+
};
|
12242
|
+
export type IProjectPermissionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ProjectPermissions'] = IResolversParentTypes['ProjectPermissions']> = {
|
12243
|
+
create?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12244
|
+
delete?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12245
|
+
edit?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12246
|
+
manage?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12247
|
+
view?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12248
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12249
|
+
};
|
12250
|
+
export type IProjectStatusLevelPermissionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ProjectStatusLevelPermissions'] = IResolversParentTypes['ProjectStatusLevelPermissions']> = {
|
12251
|
+
others?: Resolver<Maybe<IResolversTypes['ProjectStatusPermissions']>, ParentType, ContextType>;
|
12252
|
+
self?: Resolver<Maybe<IResolversTypes['ProjectStatusPermissions']>, ParentType, ContextType>;
|
12253
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12254
|
+
};
|
12255
|
+
export type IProjectStatusPermissionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ProjectStatusPermissions'] = IResolversParentTypes['ProjectStatusPermissions']> = {
|
12256
|
+
view?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12257
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12258
|
+
};
|
11770
12259
|
export type IQueryResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Query'] = IResolversParentTypes['Query']> = {
|
11771
12260
|
accessTokens?: Resolver<IResolversTypes['AccessTokenConnection'], ParentType, ContextType, Partial<IQueryAccessTokensArgs>>;
|
11772
12261
|
cities?: Resolver<IResolversTypes['Cities'], ParentType, ContextType, Partial<IQueryCitiesArgs>>;
|
@@ -11782,8 +12271,8 @@ export type IQueryResolvers<ContextType = MyContext, ParentType extends IResolve
|
|
11782
12271
|
defaultSetting?: Resolver<Maybe<IResolversTypes['ContributionSettings']>, ParentType, ContextType>;
|
11783
12272
|
defaultViewerSettingsSubject?: Resolver<IResolversTypes['DefaultSettings'], ParentType, ContextType, Partial<IQueryDefaultViewerSettingsSubjectArgs>>;
|
11784
12273
|
externalAccounts?: Resolver<IResolversTypes['ExternalAccountConnection'], ParentType, ContextType, Partial<IQueryExternalAccountsArgs>>;
|
11785
|
-
fetchAuth0User?: Resolver<Maybe<IResolversTypes['UserProfile']>, ParentType, ContextType, RequireFields<IQueryFetchAuth0UserArgs, '
|
11786
|
-
fetchUserAuthorizedDevices?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserDevice']>>>, ParentType, ContextType, RequireFields<IQueryFetchUserAuthorizedDevicesArgs, '
|
12274
|
+
fetchAuth0User?: Resolver<Maybe<IResolversTypes['UserProfile']>, ParentType, ContextType, RequireFields<IQueryFetchAuth0UserArgs, 'authUserId'>>;
|
12275
|
+
fetchUserAuthorizedDevices?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserDevice']>>>, ParentType, ContextType, RequireFields<IQueryFetchUserAuthorizedDevicesArgs, 'authUserId'>>;
|
11787
12276
|
fetchUserSessions?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserSession']>>>, ParentType, ContextType>;
|
11788
12277
|
filterIntegrationConfiguration?: Resolver<Maybe<Array<Maybe<IResolversTypes['IntegrationConfiguration']>>>, ParentType, ContextType, Partial<IQueryFilterIntegrationConfigurationArgs>>;
|
11789
12278
|
getAccounts?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserAccount']>>>, ParentType, ContextType, Partial<IQueryGetAccountsArgs>>;
|
@@ -11820,7 +12309,7 @@ export type IQueryResolvers<ContextType = MyContext, ParentType extends IResolve
|
|
11820
12309
|
getTeamNameFromContext?: Resolver<Maybe<IResolversTypes['Context']>, ParentType, ContextType>;
|
11821
12310
|
getUserAccessRole?: Resolver<Maybe<IResolversTypes['ResourceAccessRole']>, ParentType, ContextType, Partial<IQueryGetUserAccessRoleArgs>>;
|
11822
12311
|
getUserAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IQueryGetUserAccountArgs, 'userId'>>;
|
11823
|
-
getUserAccountByAuth0Id?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IQueryGetUserAccountByAuth0IdArgs, '
|
12312
|
+
getUserAccountByAuth0Id?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IQueryGetUserAccountByAuth0IdArgs, 'authUserId'>>;
|
11824
12313
|
getUserContextData?: Resolver<Maybe<IResolversTypes['UserContext']>, ParentType, ContextType>;
|
11825
12314
|
getUserOrganizations?: Resolver<Maybe<Array<Maybe<IResolversTypes['Organization']>>>, ParentType, ContextType, Partial<IQueryGetUserOrganizationsArgs>>;
|
11826
12315
|
getUserOrganizationsWithRole?: Resolver<Maybe<Array<Maybe<IResolversTypes['Organization']>>>, ParentType, ContextType, Partial<IQueryGetUserOrganizationsWithRoleArgs>>;
|
@@ -11861,6 +12350,10 @@ export type IRenewAuthUsingRefreshTokenResolvers<ContextType = MyContext, Parent
|
|
11861
12350
|
idToken?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11862
12351
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11863
12352
|
};
|
12353
|
+
export type IReportPermissionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ReportPermissions'] = IResolversParentTypes['ReportPermissions']> = {
|
12354
|
+
view?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12355
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12356
|
+
};
|
11864
12357
|
export type IResourceAccessRoleResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ResourceAccessRole'] = IResolversParentTypes['ResourceAccessRole']> = {
|
11865
12358
|
accessRoles?: Resolver<Maybe<Array<Maybe<IResolversTypes['AccessRole']>>>, ParentType, ContextType>;
|
11866
12359
|
resourceUserRoles?: Resolver<Maybe<Array<Maybe<IResolversTypes['ResourceUser']>>>, ParentType, ContextType>;
|
@@ -11903,6 +12396,11 @@ export type IResourceUserResolvers<ContextType = MyContext, ParentType extends I
|
|
11903
12396
|
role?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11904
12397
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11905
12398
|
};
|
12399
|
+
export type IRolePermissionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['RolePermissions'] = IResolversParentTypes['RolePermissions']> = {
|
12400
|
+
edit?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12401
|
+
view?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12402
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12403
|
+
};
|
11906
12404
|
export type IRouteDataResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['RouteData'] = IResolversParentTypes['RouteData']> = {
|
11907
12405
|
exact?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
11908
12406
|
key?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -11911,6 +12409,11 @@ export type IRouteDataResolvers<ContextType = MyContext, ParentType extends IRes
|
|
11911
12409
|
tab?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11912
12410
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11913
12411
|
};
|
12412
|
+
export type ISettingPermissionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['SettingPermissions'] = IResolversParentTypes['SettingPermissions']> = {
|
12413
|
+
edit?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12414
|
+
view?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12415
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12416
|
+
};
|
11914
12417
|
export type ISettingsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Settings'] = IResolversParentTypes['Settings']> = {
|
11915
12418
|
contents?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
11916
12419
|
createdAt?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -11969,6 +12472,30 @@ export type ISubscriptionResolvers<ContextType = MyContext, ParentType extends I
|
|
11969
12472
|
SubscribeToPolicyUpdate?: SubscriptionResolver<Maybe<IResolversTypes['ConfigurationUpdateEvent']>, 'SubscribeToPolicyUpdate', ParentType, ContextType, Partial<ISubscriptionSubscribeToPolicyUpdateArgs>>;
|
11970
12473
|
dummy?: SubscriptionResolver<Maybe<IResolversTypes['Int']>, 'dummy', ParentType, ContextType>;
|
11971
12474
|
};
|
12475
|
+
export type ISubscriptionsPermissionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['SubscriptionsPermissions'] = IResolversParentTypes['SubscriptionsPermissions']> = {
|
12476
|
+
create?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12477
|
+
delete?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12478
|
+
edit?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12479
|
+
manage?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12480
|
+
view?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12481
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12482
|
+
};
|
12483
|
+
export type ITagPermissionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['TagPermissions'] = IResolversParentTypes['TagPermissions']> = {
|
12484
|
+
create?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12485
|
+
delete?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12486
|
+
edit?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12487
|
+
manage?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12488
|
+
view?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12489
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12490
|
+
};
|
12491
|
+
export type ITaskPermissionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['TaskPermissions'] = IResolversParentTypes['TaskPermissions']> = {
|
12492
|
+
create?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12493
|
+
delete?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12494
|
+
edit?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12495
|
+
manage?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12496
|
+
view?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12497
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12498
|
+
};
|
11972
12499
|
export type ITeamInvitationEmailVariablesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['TeamInvitationEmailVariables'] = IResolversParentTypes['TeamInvitationEmailVariables']> = {
|
11973
12500
|
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11974
12501
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
@@ -11983,6 +12510,29 @@ export type ITeamMemberResolvers<ContextType = MyContext, ParentType extends IRe
|
|
11983
12510
|
username?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11984
12511
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11985
12512
|
};
|
12513
|
+
export type ITeamPermissionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['TeamPermissions'] = IResolversParentTypes['TeamPermissions']> = {
|
12514
|
+
accessDashboard?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12515
|
+
create?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12516
|
+
delete?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12517
|
+
edit?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12518
|
+
inviteMember?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12519
|
+
manage?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12520
|
+
view?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12521
|
+
viewOthers?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12522
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12523
|
+
};
|
12524
|
+
export type IThreadsPermissionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ThreadsPermissions'] = IResolversParentTypes['ThreadsPermissions']> = {
|
12525
|
+
assignThreads?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12526
|
+
delete?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12527
|
+
deleteThreadReply?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12528
|
+
edit?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12529
|
+
editThreadReply?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12530
|
+
manageSupportServices?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12531
|
+
reply?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12532
|
+
view?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12533
|
+
viewThreadReplies?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12534
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12535
|
+
};
|
11986
12536
|
export interface ITimeScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Time'], any> {
|
11987
12537
|
name: 'Time';
|
11988
12538
|
}
|
@@ -12035,7 +12585,7 @@ export type IUserAccountRemovedEventResolvers<ContextType = MyContext, ParentTyp
|
|
12035
12585
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12036
12586
|
};
|
12037
12587
|
export type IUserAuth0InfoResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserAuth0Info'] = IResolversParentTypes['UserAuth0Info']> = {
|
12038
|
-
|
12588
|
+
authUserId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12039
12589
|
integrations?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserAuth0Integrations']>>>, ParentType, ContextType>;
|
12040
12590
|
sessionInfo?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserAuth0SessionInfo']>>>, ParentType, ContextType>;
|
12041
12591
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
@@ -12077,6 +12627,7 @@ export type IUserContextResolvers<ContextType = MyContext, ParentType extends IR
|
|
12077
12627
|
identity?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
12078
12628
|
namespace?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12079
12629
|
orgId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12630
|
+
orgName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12080
12631
|
orgRole?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12081
12632
|
orgSettingUri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
12082
12633
|
organization?: Resolver<IResolversTypes['Organization'], ParentType, ContextType>;
|
@@ -12110,7 +12661,7 @@ export type IUserMetadataResolvers<ContextType = MyContext, ParentType extends I
|
|
12110
12661
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12111
12662
|
};
|
12112
12663
|
export type IUserPreviousValuesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserPreviousValues'] = IResolversParentTypes['UserPreviousValues']> = {
|
12113
|
-
|
12664
|
+
authUserId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12114
12665
|
createdAt?: Resolver<IResolversTypes['DateTime'], ParentType, ContextType>;
|
12115
12666
|
emailSubscription?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
12116
12667
|
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
@@ -12141,6 +12692,7 @@ export type IUserProfileResolvers<ContextType = MyContext, ParentType extends IR
|
|
12141
12692
|
nonce?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12142
12693
|
phone_number?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12143
12694
|
picture?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
12695
|
+
provider?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12144
12696
|
sub?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12145
12697
|
updated_at?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
12146
12698
|
user_id?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
@@ -12177,9 +12729,9 @@ export type IUserSettingsResolvers<ContextType = MyContext, ParentType extends I
|
|
12177
12729
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12178
12730
|
};
|
12179
12731
|
export type IUserStateResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserState'] = IResolversParentTypes['UserState']> = {
|
12180
|
-
auth0UserId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12181
12732
|
authIsValidatingToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
12182
12733
|
authTokenValidationSucces?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
12734
|
+
authUserId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12183
12735
|
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12184
12736
|
isNewlyLoggedIn?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
12185
12737
|
isProfileFetching?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
@@ -12231,8 +12783,11 @@ export type IResolvers<ContextType = MyContext> = {
|
|
12231
12783
|
BaseAccountService?: IBaseAccountServiceResolvers<ContextType>;
|
12232
12784
|
BaseOrganizationService?: IBaseOrganizationServiceResolvers<ContextType>;
|
12233
12785
|
BaseTeamService?: IBaseTeamServiceResolvers<ContextType>;
|
12786
|
+
BillingPermissions?: IBillingPermissionsResolvers<ContextType>;
|
12234
12787
|
Cities?: ICitiesResolvers<ContextType>;
|
12235
12788
|
City?: ICityResolvers<ContextType>;
|
12789
|
+
ClientLevelPermissions?: IClientLevelPermissionsResolvers<ContextType>;
|
12790
|
+
ClientPermissions?: IClientPermissionsResolvers<ContextType>;
|
12236
12791
|
Configuration?: IConfigurationResolvers<ContextType>;
|
12237
12792
|
ConfigurationData?: IConfigurationDataResolvers<ContextType>;
|
12238
12793
|
ConfigurationExtensionInfo?: IConfigurationExtensionInfoResolvers<ContextType>;
|
@@ -12280,6 +12835,7 @@ export type IResolvers<ContextType = MyContext> = {
|
|
12280
12835
|
ITerritorialState?: IITerritorialStateResolvers<ContextType>;
|
12281
12836
|
IUser?: IIUserResolvers<ContextType>;
|
12282
12837
|
IUserMetadata?: IIUserMetadataResolvers<ContextType>;
|
12838
|
+
InboxPermissions?: IInboxPermissionsResolvers<ContextType>;
|
12283
12839
|
IntegraitonConfigurationId?: IIntegraitonConfigurationIdResolvers<ContextType>;
|
12284
12840
|
IntegrationConfiguration?: IIntegrationConfigurationResolvers<ContextType>;
|
12285
12841
|
IntegrationConfigurationsOutput?: IIntegrationConfigurationsOutputResolvers<ContextType>;
|
@@ -12288,9 +12844,11 @@ export type IResolvers<ContextType = MyContext> = {
|
|
12288
12844
|
JSON?: GraphQLScalarType;
|
12289
12845
|
JSONObject?: GraphQLScalarType;
|
12290
12846
|
LinkedIdentity?: ILinkedIdentityResolvers<ContextType>;
|
12847
|
+
LoginDeviceCredential?: ILoginDeviceCredentialResolvers<ContextType>;
|
12291
12848
|
LoginError?: ILoginErrorResolvers<ContextType>;
|
12292
12849
|
MachineConfiguration?: IMachineConfigurationResolvers<ContextType>;
|
12293
12850
|
MachineSettings?: IMachineSettingsResolvers<ContextType>;
|
12851
|
+
MemberPermissions?: IMemberPermissionsResolvers<ContextType>;
|
12294
12852
|
MemorySettings?: IMemorySettingsResolvers<ContextType>;
|
12295
12853
|
MenuItem?: IMenuItemResolvers<ContextType>;
|
12296
12854
|
Mutation?: IMutationResolvers<ContextType>;
|
@@ -12309,7 +12867,9 @@ export type IResolvers<ContextType = MyContext> = {
|
|
12309
12867
|
OrganizationInvitation?: IOrganizationInvitationResolvers<ContextType>;
|
12310
12868
|
OrganizationInvitationDecode?: IOrganizationInvitationDecodeResolvers<ContextType>;
|
12311
12869
|
OrganizationMember?: IOrganizationMemberResolvers<ContextType>;
|
12870
|
+
OrganizationPermissions?: IOrganizationPermissionsResolvers<ContextType>;
|
12312
12871
|
OrganizationPolicy?: IOrganizationPolicyResolvers<ContextType>;
|
12872
|
+
OrganizationPreferences?: IOrganizationPreferencesResolvers<ContextType>;
|
12313
12873
|
OrganizationResourceConfiguration?: IOrganizationResourceConfigurationResolvers<ContextType>;
|
12314
12874
|
OrganizationResourceData?: IOrganizationResourceDataResolvers<ContextType>;
|
12315
12875
|
OrganizationResourceSettings?: IOrganizationResourceSettingsResolvers<ContextType>;
|
@@ -12318,30 +12878,42 @@ export type IResolvers<ContextType = MyContext> = {
|
|
12318
12878
|
OrganizationSharedTokenDecode?: IOrganizationSharedTokenDecodeResolvers<ContextType>;
|
12319
12879
|
OrganizationsDeactivatedEvent?: IOrganizationsDeactivatedEventResolvers<ContextType>;
|
12320
12880
|
OrganizationsDeletedEvent?: IOrganizationsDeletedEventResolvers<ContextType>;
|
12881
|
+
OthersThreadsPermissions?: IOthersThreadsPermissionsResolvers<ContextType>;
|
12321
12882
|
Overrides?: IOverridesResolvers<ContextType>;
|
12322
12883
|
PageInfo?: IPageInfoResolvers<ContextType>;
|
12884
|
+
PaymentMethodsPermissions?: IPaymentMethodsPermissionsResolvers<ContextType>;
|
12885
|
+
PaymentProfilePermissions?: IPaymentProfilePermissionsResolvers<ContextType>;
|
12886
|
+
PermissionPermissions?: IPermissionPermissionsResolvers<ContextType>;
|
12323
12887
|
PermissionSubject?: IPermissionSubjectResolvers<ContextType>;
|
12888
|
+
Permissions?: IPermissionsResolvers<ContextType>;
|
12324
12889
|
PhoneNumber?: IPhoneNumberResolvers<ContextType>;
|
12325
12890
|
PolicyConfiguration?: IPolicyConfigurationResolvers<ContextType>;
|
12891
|
+
PolicyPermissions?: IPolicyPermissionsResolvers<ContextType>;
|
12326
12892
|
PolicySubject?: IPolicySubjectResolvers<ContextType>;
|
12327
12893
|
PopupIntegrationAuthorization?: IPopupIntegrationAuthorizationResolvers<ContextType>;
|
12328
12894
|
Position?: IPositionResolvers<ContextType>;
|
12895
|
+
PostsPermissions?: IPostsPermissionsResolvers<ContextType>;
|
12329
12896
|
PreferenceItem?: IPreferenceItemResolvers<ContextType>;
|
12897
|
+
PreferenceProject?: IPreferenceProjectResolvers<ContextType>;
|
12898
|
+
PreferenceProjectIntegration?: IPreferenceProjectIntegrationResolvers<ContextType>;
|
12330
12899
|
Preference_Account?: IPreference_AccountResolvers<ContextType>;
|
12331
12900
|
Preference_Default?: IPreference_DefaultResolvers<ContextType>;
|
12332
12901
|
Preference_Global?: IPreference_GlobalResolvers<ContextType>;
|
12333
12902
|
Preference_Global_User?: IPreference_Global_UserResolvers<ContextType>;
|
12334
12903
|
Preference_Notification?: IPreference_NotificationResolvers<ContextType>;
|
12335
|
-
Preference_Organization?: IPreference_OrganizationResolvers<ContextType>;
|
12336
|
-
Preference_Project?: IPreference_ProjectResolvers<ContextType>;
|
12337
12904
|
Preference_Teams?: IPreference_TeamsResolvers<ContextType>;
|
12338
12905
|
Preferences?: IPreferencesResolvers<ContextType>;
|
12339
12906
|
PreferencesInput?: IPreferencesInputResolvers<ContextType>;
|
12340
12907
|
PreferencesResponse?: IPreferencesResponseResolvers<ContextType>;
|
12341
12908
|
PreferencesType?: IPreferencesTypeResolvers<ContextType>;
|
12909
|
+
ProjectLevelPermissions?: IProjectLevelPermissionsResolvers<ContextType>;
|
12910
|
+
ProjectPermissions?: IProjectPermissionsResolvers<ContextType>;
|
12911
|
+
ProjectStatusLevelPermissions?: IProjectStatusLevelPermissionsResolvers<ContextType>;
|
12912
|
+
ProjectStatusPermissions?: IProjectStatusPermissionsResolvers<ContextType>;
|
12342
12913
|
Query?: IQueryResolvers<ContextType>;
|
12343
12914
|
Range?: IRangeResolvers<ContextType>;
|
12344
12915
|
RenewAuthUsingRefreshToken?: IRenewAuthUsingRefreshTokenResolvers<ContextType>;
|
12916
|
+
ReportPermissions?: IReportPermissionsResolvers<ContextType>;
|
12345
12917
|
ResourceAccessRole?: IResourceAccessRoleResolvers<ContextType>;
|
12346
12918
|
ResourceCreatedEvent?: IResourceCreatedEventResolvers<ContextType>;
|
12347
12919
|
ResourceData?: IResourceDataResolvers<ContextType>;
|
@@ -12349,7 +12921,9 @@ export type IResolvers<ContextType = MyContext> = {
|
|
12349
12921
|
ResourcePolicy?: IResourcePolicyResolvers<ContextType>;
|
12350
12922
|
ResourceRole?: IResourceRoleResolvers<ContextType>;
|
12351
12923
|
ResourceUser?: IResourceUserResolvers<ContextType>;
|
12924
|
+
RolePermissions?: IRolePermissionsResolvers<ContextType>;
|
12352
12925
|
RouteData?: IRouteDataResolvers<ContextType>;
|
12926
|
+
SettingPermissions?: ISettingPermissionsResolvers<ContextType>;
|
12353
12927
|
Settings?: ISettingsResolvers<ContextType>;
|
12354
12928
|
SettingsCascade?: ISettingsCascadeResolvers<ContextType>;
|
12355
12929
|
SettingsGroup?: ISettingsGroupResolvers<ContextType>;
|
@@ -12359,8 +12933,13 @@ export type IResolvers<ContextType = MyContext> = {
|
|
12359
12933
|
States?: IStatesResolvers<ContextType>;
|
12360
12934
|
SubscribedOrganizationData?: ISubscribedOrganizationDataResolvers<ContextType>;
|
12361
12935
|
Subscription?: ISubscriptionResolvers<ContextType>;
|
12936
|
+
SubscriptionsPermissions?: ISubscriptionsPermissionsResolvers<ContextType>;
|
12937
|
+
TagPermissions?: ITagPermissionsResolvers<ContextType>;
|
12938
|
+
TaskPermissions?: ITaskPermissionsResolvers<ContextType>;
|
12362
12939
|
TeamInvitationEmailVariables?: ITeamInvitationEmailVariablesResolvers<ContextType>;
|
12363
12940
|
TeamMember?: ITeamMemberResolvers<ContextType>;
|
12941
|
+
TeamPermissions?: ITeamPermissionsResolvers<ContextType>;
|
12942
|
+
ThreadsPermissions?: IThreadsPermissionsResolvers<ContextType>;
|
12364
12943
|
Time?: GraphQLScalarType;
|
12365
12944
|
Timestamp?: GraphQLScalarType;
|
12366
12945
|
URI?: GraphQLScalarType;
|
@@ -12391,9 +12970,7 @@ export type IResolvers<ContextType = MyContext> = {
|
|
12391
12970
|
export type IDirectiveResolvers<ContextType = MyContext> = {
|
12392
12971
|
addAccountContext?: IAddAccountContextDirectiveResolver<any, any, ContextType>;
|
12393
12972
|
addNamespaceContext?: IAddNamespaceContextDirectiveResolver<any, any, ContextType>;
|
12394
|
-
cacheControl?: ICacheControlDirectiveResolver<any, any, ContextType>;
|
12395
12973
|
hasScope?: IHasScopeDirectiveResolver<any, any, ContextType>;
|
12396
|
-
invalidateCache?: IInvalidateCacheDirectiveResolver<any, any, ContextType>;
|
12397
12974
|
isAuthenticated?: IIsAuthenticatedDirectiveResolver<any, any, ContextType>;
|
12398
12975
|
profile?: IProfileDirectiveResolver<any, any, ContextType>;
|
12399
12976
|
};
|