@adminide-stack/core 9.2.1-alpha.3 → 9.2.1-alpha.35
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/configuration.d.ts +1 -2
- package/lib/core/configurations/configuration.js +8 -8
- package/lib/core/configurations/configuration.js.map +1 -1
- package/lib/core/configurations/models/ConfigurationModel.js +1 -1
- package/lib/core/configurations/models/ConfigurationModel.js.map +1 -1
- package/lib/core/organization/configuration.d.ts +1 -1
- package/lib/core/organization/configuration.js.map +1 -1
- package/lib/index.js +1 -1
- package/lib/interfaces/apollo-context.d.ts +1 -0
- package/lib/interfaces/contex-key-service.d.ts +2 -2
- package/lib/interfaces/generated/generated-models.d.ts +334 -255
- package/lib/interfaces/generated/generated-models.js +559 -614
- package/lib/interfaces/generated/generated-models.js.map +1 -1
- package/lib/interfaces/index.d.ts +1 -0
- package/lib/interfaces/organization-key-context.d.ts +12 -0
- package/lib/interfaces/preferences-service.d.ts +5 -3
- package/lib/interfaces/workbench-exports.d.ts +1 -1
- package/lib/services/abstract-configuration.js +2 -1
- package/lib/services/abstract-configuration.js.map +1 -1
- package/lib/services/abstract-organization-context-service.js.map +1 -1
- package/lib/utils/cdecodeUri.d.ts +21 -29
- package/lib/utils/cdecodeUri.js +97 -19
- package/lib/utils/cdecodeUri.js.map +1 -1
- package/lib/utils/flatten-utils.d.ts +1 -0
- package/lib/utils/flatten-utils.js +19 -1
- package/lib/utils/flatten-utils.js.map +1 -1
- package/lib/utils/generate-uri.d.ts +5 -3
- package/lib/utils/generate-uri.js +22 -2
- package/lib/utils/generate-uri.js.map +1 -1
- package/lib/utils/generate-uri.test.d.ts +1 -0
- package/lib/utils/generated-settings-id.js +2 -2
- package/lib/utils/generated-settings-id.js.map +1 -1
- package/lib/utils/getLogger.d.ts +1 -0
- package/lib/utils/getLogger.js +8 -0
- package/lib/utils/getLogger.js.map +1 -0
- package/lib/utils/index.d.ts +4 -1
- package/lib/utils/preferenceUri.d.ts +18 -0
- package/lib/utils/preferenceUri.js +107 -0
- package/lib/utils/preferenceUri.js.map +1 -0
- package/lib/utils/preferenceUri.test.d.ts +1 -0
- package/lib/utils/resourceUriConversion.js +68 -0
- package/lib/utils/resourceUriConversion.js.map +1 -0
- package/lib/utils/resourceUriConversion.test.d.ts +1 -0
- package/lib/utils/reviveUri.d.ts +2 -0
- package/lib/utils/{uri.js → reviveUri.js} +2 -4
- package/lib/utils/reviveUri.js.map +1 -0
- package/package.json +4 -4
- package/lib/utils/uri.js.map +0 -1
- /package/lib/utils/{uri.d.ts → resourceUriConversion.d.ts} +0 -0
@@ -207,7 +207,7 @@ export type IAccountServiceContext = {
|
|
207
207
|
* @property
|
208
208
|
* invitations: The outstanding invitations to join the team.
|
209
209
|
* @property
|
210
|
-
*
|
210
|
+
* members: Team members.
|
211
211
|
*/
|
212
212
|
export type IAccountTeam = {
|
213
213
|
__typename?: 'AccountTeam';
|
@@ -222,7 +222,6 @@ export type IAccountTeam = {
|
|
222
222
|
settings?: Maybe<Scalars['AnyObject']['output']>;
|
223
223
|
settingsUri?: Maybe<Scalars['URI']['output']>;
|
224
224
|
tags?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
225
|
-
teamMembers?: Maybe<Array<Maybe<ITeamMember>>>;
|
226
225
|
title?: Maybe<Scalars['String']['output']>;
|
227
226
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
228
227
|
};
|
@@ -230,10 +229,10 @@ export type IAccountTeamInput = {
|
|
230
229
|
_id?: InputMaybe<Scalars['String']['input']>;
|
231
230
|
description?: InputMaybe<Scalars['String']['input']>;
|
232
231
|
id?: InputMaybe<Scalars['ID']['input']>;
|
232
|
+
members?: InputMaybe<Array<InputMaybe<ITeamMemberInput>>>;
|
233
233
|
name?: InputMaybe<Scalars['String']['input']>;
|
234
234
|
parentTeam?: InputMaybe<IAccountTeamInput>;
|
235
235
|
tags?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
236
|
-
teamMembers?: InputMaybe<Array<InputMaybe<ITeamMemberInput>>>;
|
237
236
|
title?: InputMaybe<Scalars['String']['input']>;
|
238
237
|
};
|
239
238
|
export type IAdminIdeSettings = {
|
@@ -414,6 +413,12 @@ export type IAuthUserInput = {
|
|
414
413
|
picture?: InputMaybe<Scalars['String']['input']>;
|
415
414
|
username?: InputMaybe<Scalars['String']['input']>;
|
416
415
|
};
|
416
|
+
export type IAuthorityComponent = {
|
417
|
+
__typename?: 'AuthorityComponent';
|
418
|
+
bucketOrAppName: Scalars['String']['output'];
|
419
|
+
domain: Scalars['String']['output'];
|
420
|
+
region: Scalars['String']['output'];
|
421
|
+
};
|
417
422
|
export type IBaseAccountService = {
|
418
423
|
__typename?: 'BaseAccountService';
|
419
424
|
accountOnBoarding?: Maybe<Scalars['Boolean']['output']>;
|
@@ -627,6 +632,26 @@ export type IBillingPermissions = {
|
|
627
632
|
paymentProfile?: Maybe<IPaymentProfilePermissions>;
|
628
633
|
subscriptions?: Maybe<ISubscriptionsPermissions>;
|
629
634
|
};
|
635
|
+
export type ICdecodeParsedUri = {
|
636
|
+
__typename?: 'CdecodeParsedUri';
|
637
|
+
authority: Scalars['String']['output'];
|
638
|
+
fragmentData?: Maybe<Scalars['JSON']['output']>;
|
639
|
+
pathSegments: ICdecodeUriPathSegment;
|
640
|
+
queryData?: Maybe<Scalars['JSON']['output']>;
|
641
|
+
scheme: Scalars['String']['output'];
|
642
|
+
tenantId: Scalars['String']['output'];
|
643
|
+
};
|
644
|
+
export type ICdecodeUriPathSegment = {
|
645
|
+
__typename?: 'CdecodeURIPathSegment';
|
646
|
+
organization: Scalars['String']['output'];
|
647
|
+
resourceGroup?: Maybe<Scalars['String']['output']>;
|
648
|
+
resourceId?: Maybe<Scalars['String']['output']>;
|
649
|
+
resourceType?: Maybe<IConfigCollectionName>;
|
650
|
+
};
|
651
|
+
export type ICdecodeUriInput = {
|
652
|
+
accountId?: InputMaybe<Scalars['String']['input']>;
|
653
|
+
uri?: InputMaybe<Scalars['URI']['input']>;
|
654
|
+
};
|
630
655
|
export type ICities = {
|
631
656
|
__typename?: 'Cities';
|
632
657
|
data?: Maybe<Array<Maybe<ICity>>>;
|
@@ -688,6 +713,7 @@ export declare enum IClientCacheTypeNames {
|
|
688
713
|
OrganizationResourceConfiguration = "OrganizationResourceConfiguration",
|
689
714
|
OrganizationResourceData = "OrganizationResourceData",
|
690
715
|
OrganizationRole = "OrganizationRole",
|
716
|
+
PageResourcePermission = "PageResourcePermission",
|
691
717
|
PolicyConfiguration = "PolicyConfiguration",
|
692
718
|
ResourcePolicy = "ResourcePolicy",
|
693
719
|
ResourceRole = "ResourceRole",
|
@@ -702,6 +728,7 @@ export declare enum IClientContainerService {
|
|
702
728
|
ApolloErrorHandler = "ApolloErrorHandler",
|
703
729
|
Auth0Authentication = "Auth0Authentication",
|
704
730
|
IConfigurationFileService = "IConfigurationFileService",
|
731
|
+
IConfigurationPermissionService = "IConfigurationPermissionService",
|
705
732
|
IConfigurationPolicyService = "IConfigurationPolicyService",
|
706
733
|
IConfigurationService = "IConfigurationService",
|
707
734
|
IContextKeyService = "IContextKeyService",
|
@@ -709,10 +736,9 @@ export declare enum IClientContainerService {
|
|
709
736
|
ILifecycleService = "ILifecycleService",
|
710
737
|
IOrganizationContext = "IOrganizationContext",
|
711
738
|
IOrganizationContextService = "IOrganizationContextService",
|
712
|
-
IOrganizationKeyContextService = "IOrganizationKeyContextService",
|
713
739
|
IPermissionService = "IPermissionService",
|
714
740
|
IPreferenceService = "IPreferenceService",
|
715
|
-
|
741
|
+
IUserOrgKeyContextService = "IUserOrgKeyContextService"
|
716
742
|
}
|
717
743
|
export type IClientLevelPermissions = {
|
718
744
|
__typename?: 'ClientLevelPermissions';
|
@@ -752,6 +778,7 @@ export declare enum IConfigFragmentName {
|
|
752
778
|
ContributionRoles = "contributionRoles",
|
753
779
|
/** Organization Members Document with role value */
|
754
780
|
OrgMembers = "orgMembers",
|
781
|
+
Permissions = "permissions",
|
755
782
|
Policies = "policies",
|
756
783
|
Resources = "resources",
|
757
784
|
Roles = "roles",
|
@@ -761,11 +788,11 @@ export declare enum IConfigFragmentName {
|
|
761
788
|
}
|
762
789
|
export type IConfiguration = IApplicationConfiguration | IDefaultConfiguration | IMachineConfiguration | IOrganizationConfiguration | IOrganizationResourceConfiguration | IPolicyConfiguration | IUserConfiguration;
|
763
790
|
export declare enum IConfigurationContributionNames {
|
764
|
-
DefaultPermissions = "defaultPermissions",
|
765
|
-
DefaultPolicies = "defaultPolicies",
|
766
|
-
DefaultSettings = "defaultSettings",
|
767
791
|
/** Integration settings */
|
768
|
-
Integration = "integration"
|
792
|
+
Integration = "integration",
|
793
|
+
Permissions = "permissions",
|
794
|
+
Policies = "policies",
|
795
|
+
Settings = "settings"
|
769
796
|
}
|
770
797
|
export type IConfigurationData = {
|
771
798
|
__typename?: 'ConfigurationData';
|
@@ -833,6 +860,7 @@ export type IContext = {
|
|
833
860
|
breadcrumbsActive?: Maybe<Scalars['Boolean']['output']>;
|
834
861
|
breadcrumbsPossible?: Maybe<Scalars['Boolean']['output']>;
|
835
862
|
breadcrumbsVisible?: Maybe<Scalars['Boolean']['output']>;
|
863
|
+
cdecodeUri?: Maybe<Scalars['URI']['output']>;
|
836
864
|
machineName?: Maybe<Scalars['String']['output']>;
|
837
865
|
machineResource?: Maybe<Scalars['URI']['output']>;
|
838
866
|
orgName?: Maybe<Scalars['String']['output']>;
|
@@ -840,12 +868,10 @@ export type IContext = {
|
|
840
868
|
orgResourceId?: Maybe<Scalars['String']['output']>;
|
841
869
|
orgResourceName?: Maybe<Scalars['String']['output']>;
|
842
870
|
orgUri?: Maybe<Scalars['URI']['output']>;
|
871
|
+
projectId?: Maybe<Scalars['String']['output']>;
|
872
|
+
projectSlug?: Maybe<Scalars['String']['output']>;
|
843
873
|
resource?: Maybe<Scalars['String']['output']>;
|
844
874
|
resourceId?: Maybe<Scalars['String']['output']>;
|
845
|
-
resourceUri?: Maybe<Scalars['URI']['output']>;
|
846
|
-
teamName?: Maybe<Scalars['String']['output']>;
|
847
|
-
teamResource?: Maybe<Scalars['URI']['output']>;
|
848
|
-
teamUri?: Maybe<Scalars['URI']['output']>;
|
849
875
|
userId?: Maybe<Scalars['String']['output']>;
|
850
876
|
};
|
851
877
|
export declare enum IContextServiceAction {
|
@@ -1616,7 +1642,6 @@ export type IMutation = {
|
|
1616
1642
|
initializeAuthorizationCodeFlow?: Maybe<IAuthTokens>;
|
1617
1643
|
initializeOrgNameInContext?: Maybe<Scalars['Boolean']['output']>;
|
1618
1644
|
initializePopupIntegrationAuthorization?: Maybe<IPopupIntegrationAuthorization>;
|
1619
|
-
initializeTeamInContext?: Maybe<Scalars['Boolean']['output']>;
|
1620
1645
|
initializeUserSession?: Maybe<IUserSessionId>;
|
1621
1646
|
initiateConfigurationValue?: Maybe<Scalars['Boolean']['output']>;
|
1622
1647
|
initiatePolicyValue?: Maybe<Scalars['Boolean']['output']>;
|
@@ -1636,7 +1661,6 @@ export type IMutation = {
|
|
1636
1661
|
sendOrganizationInvitation?: Maybe<Scalars['Boolean']['output']>;
|
1637
1662
|
sendPhoneOTP: Scalars['Boolean']['output'];
|
1638
1663
|
sendUserPasswordResetEmail?: Maybe<Scalars['Boolean']['output']>;
|
1639
|
-
setSettingsValueByResource?: Maybe<Scalars['Boolean']['output']>;
|
1640
1664
|
/** Triggers onUserLoggedIn events */
|
1641
1665
|
updateAuth0UserPassword?: Maybe<Scalars['Boolean']['output']>;
|
1642
1666
|
updateCity: ICity;
|
@@ -1664,6 +1688,7 @@ export type IMutation = {
|
|
1664
1688
|
validatePasswordResetOtp?: Maybe<Scalars['Boolean']['output']>;
|
1665
1689
|
validateUserEmailVerificationToken?: Maybe<Scalars['Boolean']['output']>;
|
1666
1690
|
verifyPhoneOtp?: Maybe<Scalars['Boolean']['output']>;
|
1691
|
+
writeSettings?: Maybe<Scalars['Boolean']['output']>;
|
1667
1692
|
};
|
1668
1693
|
export type IMutationAcceptOrganizationInvitationArgs = {
|
1669
1694
|
id: Scalars['ID']['input'];
|
@@ -1762,10 +1787,6 @@ export type IMutationInitializePopupIntegrationAuthorizationArgs = {
|
|
1762
1787
|
codeVerifier?: InputMaybe<Scalars['String']['input']>;
|
1763
1788
|
platform?: InputMaybe<IDeviceInfoPlatform>;
|
1764
1789
|
};
|
1765
|
-
export type IMutationInitializeTeamInContextArgs = {
|
1766
|
-
orgName?: InputMaybe<Scalars['String']['input']>;
|
1767
|
-
teamName?: InputMaybe<Scalars['String']['input']>;
|
1768
|
-
};
|
1769
1790
|
export type IMutationInitializeUserSessionArgs = {
|
1770
1791
|
deviceInfo: IDeviceInfoInput;
|
1771
1792
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
@@ -1826,11 +1847,6 @@ export type IMutationSendPhoneOtpArgs = {
|
|
1826
1847
|
export type IMutationSendUserPasswordResetEmailArgs = {
|
1827
1848
|
email: Scalars['String']['input'];
|
1828
1849
|
};
|
1829
|
-
export type IMutationSetSettingsValueByResourceArgs = {
|
1830
|
-
key?: InputMaybe<Scalars['String']['input']>;
|
1831
|
-
uri?: InputMaybe<Scalars['URI']['input']>;
|
1832
|
-
value?: InputMaybe<Scalars['String']['input']>;
|
1833
|
-
};
|
1834
1850
|
export type IMutationUpdateAuth0UserPasswordArgs = {
|
1835
1851
|
email?: InputMaybe<Scalars['String']['input']>;
|
1836
1852
|
oldPassword?: InputMaybe<Scalars['String']['input']>;
|
@@ -1940,6 +1956,13 @@ export type IMutationVerifyPhoneOtpArgs = {
|
|
1940
1956
|
otp: Scalars['String']['input'];
|
1941
1957
|
phoneNumber: IPhoneNumberInput;
|
1942
1958
|
};
|
1959
|
+
export type IMutationWriteSettingsArgs = {
|
1960
|
+
donotNotifyError?: InputMaybe<Scalars['Boolean']['input']>;
|
1961
|
+
editingUri?: InputMaybe<Scalars['URI']['input']>;
|
1962
|
+
overrides?: InputMaybe<IConfigurationOverridesInput>;
|
1963
|
+
settings?: InputMaybe<Scalars['AnyObject']['input']>;
|
1964
|
+
target?: InputMaybe<Scalars['Int']['input']>;
|
1965
|
+
};
|
1943
1966
|
/** An object with an ID. */
|
1944
1967
|
export type INode = {
|
1945
1968
|
/** The ID of the node. */
|
@@ -1969,7 +1992,9 @@ export type IOrgUser = IIOrgUser & {
|
|
1969
1992
|
inactive?: Maybe<Scalars['Boolean']['output']>;
|
1970
1993
|
isSelf: Scalars['Boolean']['output'];
|
1971
1994
|
orgName: Scalars['String']['output'];
|
1995
|
+
/** @deprecated use roles */
|
1972
1996
|
role?: Maybe<IApplicationRoles>;
|
1997
|
+
roles?: Maybe<Array<Maybe<IApplicationRoles>>>;
|
1973
1998
|
teamNames?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
1974
1999
|
user: IUserAccount;
|
1975
2000
|
userId: Scalars['String']['output'];
|
@@ -1978,6 +2003,7 @@ export type IOrgUserInput = {
|
|
1978
2003
|
crossCheckEmail?: InputMaybe<Scalars['String']['input']>;
|
1979
2004
|
inactive?: InputMaybe<Scalars['Boolean']['input']>;
|
1980
2005
|
role?: InputMaybe<IApplicationRoles>;
|
2006
|
+
roles?: InputMaybe<Array<InputMaybe<IApplicationRoles>>>;
|
1981
2007
|
userId?: InputMaybe<Scalars['String']['input']>;
|
1982
2008
|
};
|
1983
2009
|
export declare enum IOrgUserRole {
|
@@ -2170,6 +2196,7 @@ export type IOrganizationInvitationInput = {
|
|
2170
2196
|
invitedBy?: InputMaybe<Scalars['String']['input']>;
|
2171
2197
|
phoneNumber?: InputMaybe<IPhoneNumberInput>;
|
2172
2198
|
role?: InputMaybe<IApplicationRoles>;
|
2199
|
+
roles?: InputMaybe<Array<InputMaybe<IApplicationRoles>>>;
|
2173
2200
|
teamId?: InputMaybe<Scalars['String']['input']>;
|
2174
2201
|
tokenExpiration?: InputMaybe<Scalars['DateTime']['input']>;
|
2175
2202
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
@@ -2350,6 +2377,18 @@ export type IPageInfo = {
|
|
2350
2377
|
__typename?: 'PageInfo';
|
2351
2378
|
hasNextPage: Scalars['Boolean']['output'];
|
2352
2379
|
};
|
2380
|
+
export type IPageResourcePermission = {
|
2381
|
+
__typename?: 'PageResourcePermission';
|
2382
|
+
permissions?: Maybe<Scalars['AnyObject']['output']>;
|
2383
|
+
resourceUri?: Maybe<Scalars['URI']['output']>;
|
2384
|
+
updateTimestamp?: Maybe<Scalars['DateTime']['output']>;
|
2385
|
+
};
|
2386
|
+
export type IPageResourceSetting = {
|
2387
|
+
__typename?: 'PageResourceSetting';
|
2388
|
+
resourceUri?: Maybe<Scalars['URI']['output']>;
|
2389
|
+
settings?: Maybe<Scalars['AnyObject']['output']>;
|
2390
|
+
updateTimestamp?: Maybe<Scalars['DateTime']['output']>;
|
2391
|
+
};
|
2353
2392
|
export type IPaymentMethodsPermissions = {
|
2354
2393
|
__typename?: 'PaymentMethodsPermissions';
|
2355
2394
|
create?: Maybe<IPermissionType>;
|
@@ -2513,6 +2552,14 @@ export declare enum IPreferenceProjectIntegrationStatus {
|
|
2513
2552
|
Archive = "Archive",
|
2514
2553
|
Inactive = "Inactive"
|
2515
2554
|
}
|
2555
|
+
export type IPreferenceRoleInput = {
|
2556
|
+
accountId?: InputMaybe<Scalars['String']['input']>;
|
2557
|
+
orgName?: InputMaybe<Scalars['String']['input']>;
|
2558
|
+
projectId?: InputMaybe<Scalars['String']['input']>;
|
2559
|
+
resourceName?: InputMaybe<Scalars['String']['input']>;
|
2560
|
+
resourceType?: InputMaybe<Scalars['String']['input']>;
|
2561
|
+
rolesArray?: InputMaybe<Array<InputMaybe<IRolesTargetInput>>>;
|
2562
|
+
};
|
2516
2563
|
export type IPreference_Account = {
|
2517
2564
|
__typename?: 'Preference_Account';
|
2518
2565
|
default?: Maybe<IPreference_Default>;
|
@@ -2565,6 +2612,8 @@ export type IPreferencesOpenOptionsInput = {
|
|
2565
2612
|
authority?: InputMaybe<Scalars['String']['input']>;
|
2566
2613
|
/** Default Fragment to filter the default value */
|
2567
2614
|
defaultFragment?: InputMaybe<Scalars['String']['input']>;
|
2615
|
+
/** Extension Name */
|
2616
|
+
extensionName?: InputMaybe<Scalars['String']['input']>;
|
2568
2617
|
/** If true, forces the path to exist by writing empty object. */
|
2569
2618
|
forceExist?: InputMaybe<Scalars['Boolean']['input']>;
|
2570
2619
|
/** Fragment of the data to filter */
|
@@ -2621,6 +2670,7 @@ export type IQuery = {
|
|
2621
2670
|
countries: ICountries;
|
2622
2671
|
country: ICountry;
|
2623
2672
|
countryByName: ICountry;
|
2673
|
+
currentPagePermissions?: Maybe<IPageResourcePermission>;
|
2624
2674
|
decodeOrganizationInvitation?: Maybe<IOrganizationInvitationDecode>;
|
2625
2675
|
decodeOrganizationSharedToken?: Maybe<IOrganizationSharedTokenDecode>;
|
2626
2676
|
/** Return the permissions groups */
|
@@ -2679,15 +2729,12 @@ export type IQuery = {
|
|
2679
2729
|
getRole?: Maybe<IAccessRole>;
|
2680
2730
|
getRoles?: Maybe<Array<Maybe<IAccessRole>>>;
|
2681
2731
|
getTeam?: Maybe<IAccountTeam>;
|
2682
|
-
getTeamContext?: Maybe<IContext>;
|
2683
|
-
getTeamNameFromContext?: Maybe<IContext>;
|
2684
2732
|
getUserAccessRole?: Maybe<IResourceAccessRole>;
|
2685
2733
|
getUserAccount?: Maybe<IUserAccount>;
|
2686
2734
|
getUserAccountByAuth0Id?: Maybe<IUserAccount>;
|
2687
2735
|
getUserContextData?: Maybe<IUserContext>;
|
2688
2736
|
getUserOrganizations?: Maybe<Array<Maybe<IOrganization>>>;
|
2689
2737
|
getUserOrganizationsWithRole?: Maybe<Array<Maybe<IOrganization>>>;
|
2690
|
-
getUserPermissions?: Maybe<IContributionRoles>;
|
2691
2738
|
getUserTokenDetails?: Maybe<IUserToken>;
|
2692
2739
|
getUsers?: Maybe<Array<Maybe<IUserAccount>>>;
|
2693
2740
|
/** Get the available roles and its descriptions */
|
@@ -2703,8 +2750,7 @@ export type IQuery = {
|
|
2703
2750
|
node?: Maybe<INode>;
|
2704
2751
|
openPreferencesSettings?: Maybe<IPreferencesInput>;
|
2705
2752
|
organizations?: Maybe<Array<Maybe<IOrganization>>>;
|
2706
|
-
|
2707
|
-
pageSettings?: Maybe<Scalars['AnyObject']['output']>;
|
2753
|
+
pageSettings?: Maybe<IPageResourceSetting>;
|
2708
2754
|
profile?: Maybe<IUserProfile>;
|
2709
2755
|
/**
|
2710
2756
|
* fetchUserAuthorizedDevices
|
@@ -2726,6 +2772,7 @@ export type IQuery = {
|
|
2726
2772
|
* global settings) or an authenticated user (in which case viewer settings are the user's settings).
|
2727
2773
|
*/
|
2728
2774
|
viewerSettings: IViewerSettingsSubject;
|
2775
|
+
viewerSettings2: IViewerSettingsSubject;
|
2729
2776
|
};
|
2730
2777
|
export type IQueryAccessTokensArgs = {
|
2731
2778
|
after?: InputMaybe<Scalars['String']['input']>;
|
@@ -2752,6 +2799,9 @@ export type IQueryCountryArgs = {
|
|
2752
2799
|
export type IQueryCountryByNameArgs = {
|
2753
2800
|
name: Scalars['String']['input'];
|
2754
2801
|
};
|
2802
|
+
export type IQueryCurrentPagePermissionsArgs = {
|
2803
|
+
resourceUri?: InputMaybe<Scalars['URIInput']['input']>;
|
2804
|
+
};
|
2755
2805
|
export type IQueryDecodeOrganizationInvitationArgs = {
|
2756
2806
|
token: Scalars['String']['input'];
|
2757
2807
|
};
|
@@ -2765,7 +2815,8 @@ export type IQueryDefaultPoliciesArgs = {
|
|
2765
2815
|
target?: InputMaybe<Scalars['Int']['input']>;
|
2766
2816
|
};
|
2767
2817
|
export type IQueryDefaultViewerSettingsSubjectArgs = {
|
2768
|
-
|
2818
|
+
options: IPreferencesOpenOptionsInput;
|
2819
|
+
target: Scalars['Int']['input'];
|
2769
2820
|
};
|
2770
2821
|
export type IQueryExternalAccountsArgs = {
|
2771
2822
|
first?: InputMaybe<Scalars['Int']['input']>;
|
@@ -2891,7 +2942,7 @@ export type IQueryGetUsersArgs = {
|
|
2891
2942
|
where?: InputMaybe<IUserAccountWhere>;
|
2892
2943
|
};
|
2893
2944
|
export type IQueryGetViewerPermissionsArgs = {
|
2894
|
-
input?: InputMaybe<
|
2945
|
+
input?: InputMaybe<IPreferenceRoleInput>;
|
2895
2946
|
};
|
2896
2947
|
export type IQueryGetViewerPoliciesArgs = {
|
2897
2948
|
input: IViewerPoliciesInput;
|
@@ -2907,11 +2958,8 @@ export type IQueryOpenPreferencesSettingsArgs = {
|
|
2907
2958
|
options?: InputMaybe<IPreferencesOpenOptionsInput>;
|
2908
2959
|
resource?: InputMaybe<Scalars['URI']['input']>;
|
2909
2960
|
};
|
2910
|
-
export type IQueryPagePermissionsArgs = {
|
2911
|
-
uri?: InputMaybe<Scalars['URI']['input']>;
|
2912
|
-
};
|
2913
2961
|
export type IQueryPageSettingsArgs = {
|
2914
|
-
|
2962
|
+
resourceUri?: InputMaybe<Scalars['URIInput']['input']>;
|
2915
2963
|
};
|
2916
2964
|
export type IQueryRenewAuthUsingRefreshTokenArgs = {
|
2917
2965
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
@@ -2947,6 +2995,9 @@ export type IQueryViewerPoliciesArgs = {
|
|
2947
2995
|
export type IQueryViewerSettingsArgs = {
|
2948
2996
|
input?: InputMaybe<IViewerSettingsInput>;
|
2949
2997
|
};
|
2998
|
+
export type IQueryViewerSettings2Args = {
|
2999
|
+
input?: InputMaybe<ICdecodeUriInput>;
|
3000
|
+
};
|
2950
3001
|
export type IRange = {
|
2951
3002
|
__typename?: 'Range';
|
2952
3003
|
/**
|
@@ -3063,6 +3114,15 @@ export type IRolePermissions = {
|
|
3063
3114
|
edit?: Maybe<IPermissionType>;
|
3064
3115
|
view?: Maybe<IPermissionType>;
|
3065
3116
|
};
|
3117
|
+
export type IRolesTarget = {
|
3118
|
+
__typename?: 'RolesTarget';
|
3119
|
+
roles?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
3120
|
+
target?: Maybe<Scalars['Int']['output']>;
|
3121
|
+
};
|
3122
|
+
export type IRolesTargetInput = {
|
3123
|
+
roles?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
3124
|
+
target?: InputMaybe<Scalars['Int']['input']>;
|
3125
|
+
};
|
3066
3126
|
export type IRouteData = {
|
3067
3127
|
__typename?: 'RouteData';
|
3068
3128
|
exact?: Maybe<Scalars['Boolean']['output']>;
|
@@ -3232,10 +3292,10 @@ export type ITaskPermissions = {
|
|
3232
3292
|
export type ITeamCreateRequest = {
|
3233
3293
|
description?: InputMaybe<Scalars['String']['input']>;
|
3234
3294
|
emails?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
3295
|
+
members?: InputMaybe<Array<InputMaybe<ITeamMemberInput>>>;
|
3235
3296
|
name?: InputMaybe<Scalars['String']['input']>;
|
3236
3297
|
parentTeam?: InputMaybe<Scalars['String']['input']>;
|
3237
3298
|
tags?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
3238
|
-
teamMembers?: InputMaybe<Array<InputMaybe<ITeamMemberInput>>>;
|
3239
3299
|
title: Scalars['String']['input'];
|
3240
3300
|
};
|
3241
3301
|
export type ITeamCreationRequest = {
|
@@ -3258,6 +3318,7 @@ export type ITeamMember = {
|
|
3258
3318
|
id?: Maybe<Scalars['String']['output']>;
|
3259
3319
|
name?: Maybe<Scalars['String']['output']>;
|
3260
3320
|
role?: Maybe<IApplicationRoles>;
|
3321
|
+
roles?: Maybe<Array<Maybe<IApplicationRoles>>>;
|
3261
3322
|
status?: Maybe<Scalars['String']['output']>;
|
3262
3323
|
userId?: Maybe<Scalars['String']['output']>;
|
3263
3324
|
username?: Maybe<Scalars['String']['output']>;
|
@@ -3266,6 +3327,7 @@ export type ITeamMemberInput = {
|
|
3266
3327
|
email?: InputMaybe<Scalars['String']['input']>;
|
3267
3328
|
id?: InputMaybe<Scalars['String']['input']>;
|
3268
3329
|
role?: InputMaybe<IApplicationRoles>;
|
3330
|
+
roles?: InputMaybe<Array<InputMaybe<IApplicationRoles>>>;
|
3269
3331
|
status?: InputMaybe<Scalars['String']['input']>;
|
3270
3332
|
userId?: InputMaybe<Scalars['String']['input']>;
|
3271
3333
|
};
|
@@ -3815,7 +3877,6 @@ export type IWhereDeleteAccessTokenInput = {
|
|
3815
3877
|
};
|
3816
3878
|
export type IAllContextFragment = {
|
3817
3879
|
__typename?: 'Context';
|
3818
|
-
teamResource?: URI | null;
|
3819
3880
|
orgResource?: URI | null;
|
3820
3881
|
orgResourceId?: string | null;
|
3821
3882
|
orgResourceName?: string | null;
|
@@ -4297,7 +4358,7 @@ export type IGetOrganizationTeamsQuery = {
|
|
4297
4358
|
updatedAt?: string | null;
|
4298
4359
|
description?: string | null;
|
4299
4360
|
settingsUri?: URI | null;
|
4300
|
-
|
4361
|
+
members?: Array<{
|
4301
4362
|
__typename?: 'TeamMember';
|
4302
4363
|
id?: string | null;
|
4303
4364
|
name?: string | null;
|
@@ -4321,7 +4382,7 @@ export type IGetTeamQuery = {
|
|
4321
4382
|
createdAt?: string | null;
|
4322
4383
|
updatedAt?: string | null;
|
4323
4384
|
settingsUri?: URI | null;
|
4324
|
-
|
4385
|
+
members?: Array<{
|
4325
4386
|
__typename?: 'TeamMember';
|
4326
4387
|
id?: string | null;
|
4327
4388
|
email?: string | null;
|
@@ -4348,7 +4409,7 @@ export type IGetTeamByNameQuery = {
|
|
4348
4409
|
description?: string | null;
|
4349
4410
|
createdAt?: string | null;
|
4350
4411
|
updatedAt?: string | null;
|
4351
|
-
|
4412
|
+
members?: Array<{
|
4352
4413
|
__typename?: 'TeamMember';
|
4353
4414
|
id?: string | null;
|
4354
4415
|
email?: string | null;
|
@@ -4514,7 +4575,7 @@ export type ITeamQuery = {
|
|
4514
4575
|
createdAt?: string | null;
|
4515
4576
|
updatedAt?: string | null;
|
4516
4577
|
settingsUri?: URI | null;
|
4517
|
-
|
4578
|
+
members?: Array<{
|
4518
4579
|
__typename?: 'TeamMember';
|
4519
4580
|
id?: string | null;
|
4520
4581
|
email?: string | null;
|
@@ -4540,7 +4601,7 @@ export type ITeamsQuery = {
|
|
4540
4601
|
updatedAt?: string | null;
|
4541
4602
|
description?: string | null;
|
4542
4603
|
settingsUri?: URI | null;
|
4543
|
-
|
4604
|
+
members?: Array<{
|
4544
4605
|
__typename?: 'TeamMember';
|
4545
4606
|
id?: string | null;
|
4546
4607
|
name?: string | null;
|
@@ -4948,13 +5009,23 @@ export type IOrgResourceContextFragment = {
|
|
4948
5009
|
__typename?: 'Context';
|
4949
5010
|
resource?: string | null;
|
4950
5011
|
resourceId?: string | null;
|
5012
|
+
cdecodeUri?: URI | null;
|
5013
|
+
};
|
5014
|
+
export type IUserOrgContextFragment = {
|
5015
|
+
__typename?: 'Context';
|
5016
|
+
orgName?: string | null;
|
5017
|
+
orgUri?: URI | null;
|
5018
|
+
cdecodeUri?: URI | null;
|
5019
|
+
userId?: string | null;
|
5020
|
+
projectId?: string | null;
|
5021
|
+
projectSlug?: string | null;
|
4951
5022
|
};
|
4952
5023
|
export type IOrgUserIdContextFragment = {
|
4953
5024
|
__typename?: 'Context';
|
4954
5025
|
orgName?: string | null;
|
4955
5026
|
orgUri?: URI | null;
|
5027
|
+
cdecodeUri?: URI | null;
|
4956
5028
|
userId?: string | null;
|
4957
|
-
teamName?: string | null;
|
4958
5029
|
};
|
4959
5030
|
export type IOrgNameInContextFragment = {
|
4960
5031
|
__typename?: 'Context';
|
@@ -4995,20 +5066,6 @@ export type IRoleTargetFragment = {
|
|
4995
5066
|
__typename?: 'ContributionRoles';
|
4996
5067
|
target?: number | null;
|
4997
5068
|
};
|
4998
|
-
export type ITeamNameInContextFragment = {
|
4999
|
-
__typename?: 'Context';
|
5000
|
-
teamName?: string | null;
|
5001
|
-
};
|
5002
|
-
export type ITeamContextFragment = {
|
5003
|
-
__typename?: 'Context';
|
5004
|
-
teamName?: string | null;
|
5005
|
-
teamUri?: URI | null;
|
5006
|
-
};
|
5007
|
-
export type ITeamWithOrgOnContextFragment = {
|
5008
|
-
__typename?: 'Context';
|
5009
|
-
orgName?: string | null;
|
5010
|
-
teamName?: string | null;
|
5011
|
-
};
|
5012
5069
|
export type IAddContributionRoleMutationVariables = Exact<{
|
5013
5070
|
name: Scalars['String']['input'];
|
5014
5071
|
description?: InputMaybe<Scalars['String']['input']>;
|
@@ -5046,14 +5103,6 @@ export type IInitializeOrgNameInContextMutation = {
|
|
5046
5103
|
__typename?: 'Mutation';
|
5047
5104
|
initializeOrgNameInContext?: boolean | null;
|
5048
5105
|
};
|
5049
|
-
export type IInitializeTeamInContextMutationVariables = Exact<{
|
5050
|
-
teamName: Scalars['String']['input'];
|
5051
|
-
orgName: Scalars['String']['input'];
|
5052
|
-
}>;
|
5053
|
-
export type IInitializeTeamInContextMutation = {
|
5054
|
-
__typename?: 'Mutation';
|
5055
|
-
initializeTeamInContext?: boolean | null;
|
5056
|
-
};
|
5057
5106
|
export type IReassignConfigurationMutationVariables = Exact<{
|
5058
5107
|
[key: string]: never;
|
5059
5108
|
}>;
|
@@ -5073,6 +5122,17 @@ export type IUpdateConfigurationMutation = {
|
|
5073
5122
|
__typename?: 'Mutation';
|
5074
5123
|
updateConfiguration?: boolean | null;
|
5075
5124
|
};
|
5125
|
+
export type IWriteSettingsMutationVariables = Exact<{
|
5126
|
+
editingUri?: InputMaybe<Scalars['URI']['input']>;
|
5127
|
+
settings?: InputMaybe<Scalars['AnyObject']['input']>;
|
5128
|
+
overrides?: InputMaybe<IConfigurationOverridesInput>;
|
5129
|
+
target?: InputMaybe<Scalars['Int']['input']>;
|
5130
|
+
donotNotifyError?: InputMaybe<Scalars['Boolean']['input']>;
|
5131
|
+
}>;
|
5132
|
+
export type IWriteSettingsMutation = {
|
5133
|
+
__typename?: 'Mutation';
|
5134
|
+
writeSettings?: boolean | null;
|
5135
|
+
};
|
5076
5136
|
export type IGetApplicationPolicyQueryVariables = Exact<{
|
5077
5137
|
input?: InputMaybe<Array<InputMaybe<IConfigurationInput>> | InputMaybe<IConfigurationInput>>;
|
5078
5138
|
}>;
|
@@ -5132,6 +5192,17 @@ export type IGetApplicationRoleQuery = {
|
|
5132
5192
|
__typename?: 'UserRole';
|
5133
5193
|
} | null> | null;
|
5134
5194
|
};
|
5195
|
+
export type IGetCurrentPagePermissionsQueryVariables = Exact<{
|
5196
|
+
resourceUri?: InputMaybe<Scalars['URIInput']['input']>;
|
5197
|
+
}>;
|
5198
|
+
export type IGetCurrentPagePermissionsQuery = {
|
5199
|
+
__typename?: 'Query';
|
5200
|
+
currentPagePermissions?: {
|
5201
|
+
__typename?: 'PageResourcePermission';
|
5202
|
+
permissions?: any | null;
|
5203
|
+
resourceUri?: URI | null;
|
5204
|
+
} | null;
|
5205
|
+
};
|
5135
5206
|
export type IDefaultResolveSettingsQueryVariables = Exact<{
|
5136
5207
|
uri: Scalars['URI']['input'];
|
5137
5208
|
target?: InputMaybe<Scalars['Int']['input']>;
|
@@ -5185,8 +5256,7 @@ export type IGetContextDataQuery = {
|
|
5185
5256
|
__typename?: 'Context';
|
5186
5257
|
orgUri?: URI | null;
|
5187
5258
|
userId?: string | null;
|
5188
|
-
|
5189
|
-
resourceUri?: URI | null;
|
5259
|
+
cdecodeUri?: URI | null;
|
5190
5260
|
} | null;
|
5191
5261
|
};
|
5192
5262
|
export type IGetContextPropertyQueryVariables = Exact<{
|
@@ -5323,27 +5393,6 @@ export type IGetDefaultRoleQuery = {
|
|
5323
5393
|
__typename?: 'UserRole';
|
5324
5394
|
} | null> | null;
|
5325
5395
|
};
|
5326
|
-
export type IGetTeamContextQueryVariables = Exact<{
|
5327
|
-
[key: string]: never;
|
5328
|
-
}>;
|
5329
|
-
export type IGetTeamContextQuery = {
|
5330
|
-
__typename?: 'Query';
|
5331
|
-
getTeamContext?: {
|
5332
|
-
__typename?: 'Context';
|
5333
|
-
teamName?: string | null;
|
5334
|
-
teamUri?: URI | null;
|
5335
|
-
} | null;
|
5336
|
-
};
|
5337
|
-
export type IGetTeamNameFromContextQueryVariables = Exact<{
|
5338
|
-
[key: string]: never;
|
5339
|
-
}>;
|
5340
|
-
export type IGetTeamNameFromContextQuery = {
|
5341
|
-
__typename?: 'Query';
|
5342
|
-
getTeamNameFromContext?: {
|
5343
|
-
__typename?: 'Context';
|
5344
|
-
teamName?: string | null;
|
5345
|
-
} | null;
|
5346
|
-
};
|
5347
5396
|
export type IGetUserAccessRoleQueryVariables = Exact<{
|
5348
5397
|
input?: InputMaybe<Array<InputMaybe<IRoleInput>> | InputMaybe<IRoleInput>>;
|
5349
5398
|
}>;
|
@@ -5387,34 +5436,6 @@ export type IGetUserAccessRoleQuery = {
|
|
5387
5436
|
} | null> | null;
|
5388
5437
|
} | null;
|
5389
5438
|
};
|
5390
|
-
export type IGetUserPermissionsQueryVariables = Exact<{
|
5391
|
-
[key: string]: never;
|
5392
|
-
}>;
|
5393
|
-
export type IGetUserPermissionsQuery = {
|
5394
|
-
__typename?: 'Query';
|
5395
|
-
getUserPermissions?: {
|
5396
|
-
__typename?: 'ContributionRoles';
|
5397
|
-
name?: string | null;
|
5398
|
-
target?: number | null;
|
5399
|
-
id?: string | null;
|
5400
|
-
description?: string | null;
|
5401
|
-
permissions?: {
|
5402
|
-
__typename?: 'ApplicationRole';
|
5403
|
-
} | {
|
5404
|
-
__typename?: 'DefaultRole';
|
5405
|
-
} | {
|
5406
|
-
__typename?: 'OrganizationRole';
|
5407
|
-
} | {
|
5408
|
-
__typename?: 'ResourceRole';
|
5409
|
-
} | {
|
5410
|
-
__typename?: 'UserRole';
|
5411
|
-
target?: number | null;
|
5412
|
-
keys?: Array<string | null> | null;
|
5413
|
-
contents?: any | null;
|
5414
|
-
resource?: URI | null;
|
5415
|
-
} | null;
|
5416
|
-
} | null;
|
5417
|
-
};
|
5418
5439
|
export type IGetUserRoleQueryVariables = Exact<{
|
5419
5440
|
orgName: Scalars['String']['input'];
|
5420
5441
|
userId?: InputMaybe<Scalars['String']['input']>;
|
@@ -5427,7 +5448,7 @@ export type IGetUserRoleQuery = {
|
|
5427
5448
|
} | null;
|
5428
5449
|
};
|
5429
5450
|
export type IGetViewerPermissionsQueryVariables = Exact<{
|
5430
|
-
input?: InputMaybe<
|
5451
|
+
input?: InputMaybe<IPreferenceRoleInput>;
|
5431
5452
|
}>;
|
5432
5453
|
export type IGetViewerPermissionsQuery = {
|
5433
5454
|
__typename?: 'Query';
|
@@ -5644,6 +5665,17 @@ export type IGetOrgWithResourcesRoleQuery = {
|
|
5644
5665
|
} | null> | null;
|
5645
5666
|
} | null> | null;
|
5646
5667
|
};
|
5668
|
+
export type IGetPageSettingsQueryVariables = Exact<{
|
5669
|
+
resourceUri?: InputMaybe<Scalars['URIInput']['input']>;
|
5670
|
+
}>;
|
5671
|
+
export type IGetPageSettingsQuery = {
|
5672
|
+
__typename?: 'Query';
|
5673
|
+
pageSettings?: {
|
5674
|
+
__typename?: 'PageResourceSetting';
|
5675
|
+
settings?: any | null;
|
5676
|
+
resourceUri?: URI | null;
|
5677
|
+
} | null;
|
5678
|
+
};
|
5647
5679
|
export type IResolveConfigurationQueryVariables = Exact<{
|
5648
5680
|
input: IPreferencesInputInput;
|
5649
5681
|
key?: InputMaybe<Scalars['String']['input']>;
|
@@ -5732,7 +5764,8 @@ export type IGetUserConfigurationQuery = {
|
|
5732
5764
|
} | null> | null;
|
5733
5765
|
};
|
5734
5766
|
export type IDefaultSettingsQueryVariables = Exact<{
|
5735
|
-
target
|
5767
|
+
target: Scalars['Int']['input'];
|
5768
|
+
options: IPreferencesOpenOptionsInput;
|
5736
5769
|
}>;
|
5737
5770
|
export type IDefaultSettingsQuery = {
|
5738
5771
|
__typename?: 'Query';
|
@@ -7134,15 +7167,13 @@ export declare const ContextConfigurationFragmentDoc: DocumentNode;
|
|
7134
7167
|
export declare const DefaultContextFragmentDoc: DocumentNode;
|
7135
7168
|
export declare const MachineConfigurationFragmentDoc: DocumentNode;
|
7136
7169
|
export declare const OrgResourceContextFragmentDoc: DocumentNode;
|
7170
|
+
export declare const UserOrgContextFragmentDoc: DocumentNode;
|
7137
7171
|
export declare const OrgUserIdContextFragmentDoc: DocumentNode;
|
7138
7172
|
export declare const OrgNameInContextFragmentDoc: DocumentNode;
|
7139
7173
|
export declare const OrgContextFragmentDoc: DocumentNode;
|
7140
7174
|
export declare const OrganizationUserFragmentDoc: DocumentNode;
|
7141
7175
|
export declare const ResourceUserRoleFragmentDoc: DocumentNode;
|
7142
7176
|
export declare const RoleTargetFragmentDoc: DocumentNode;
|
7143
|
-
export declare const TeamNameInContextFragmentDoc: DocumentNode;
|
7144
|
-
export declare const TeamContextFragmentDoc: DocumentNode;
|
7145
|
-
export declare const TeamWithOrgOnContextFragmentDoc: DocumentNode;
|
7146
7177
|
export declare const AccountBillingPreferencesFragmentDoc: DocumentNode;
|
7147
7178
|
export declare const ConfigurationModelFragmentDoc: DocumentNode;
|
7148
7179
|
export declare const OrganizationDataFragmentDoc: DocumentNode;
|
@@ -8992,33 +9023,6 @@ export declare function useInitializeOrgNameInContextMutation(baseOptions?: Apol
|
|
8992
9023
|
export type InitializeOrgNameInContextMutationHookResult = ReturnType<typeof useInitializeOrgNameInContextMutation>;
|
8993
9024
|
export type InitializeOrgNameInContextMutationResult = Apollo.MutationResult<IInitializeOrgNameInContextMutation>;
|
8994
9025
|
export type InitializeOrgNameInContextMutationOptions = Apollo.BaseMutationOptions<IInitializeOrgNameInContextMutation, IInitializeOrgNameInContextMutationVariables>;
|
8995
|
-
export declare const InitializeTeamInContextDocument: DocumentNode;
|
8996
|
-
export type IInitializeTeamInContextMutationFn = Apollo.MutationFunction<IInitializeTeamInContextMutation, IInitializeTeamInContextMutationVariables>;
|
8997
|
-
/**
|
8998
|
-
* __useInitializeTeamInContextMutation__
|
8999
|
-
*
|
9000
|
-
* To run a mutation, you first call `useInitializeTeamInContextMutation` within a React component and pass it any options that fit your needs.
|
9001
|
-
* When your component renders, `useInitializeTeamInContextMutation` returns a tuple that includes:
|
9002
|
-
* - A mutate function that you can call at any time to execute the mutation
|
9003
|
-
* - An object with fields that represent the current status of the mutation's execution
|
9004
|
-
*
|
9005
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
9006
|
-
*
|
9007
|
-
* @example
|
9008
|
-
* const [initializeTeamInContextMutation, { data, loading, error }] = useInitializeTeamInContextMutation({
|
9009
|
-
* variables: {
|
9010
|
-
* teamName: // value for 'teamName'
|
9011
|
-
* orgName: // value for 'orgName'
|
9012
|
-
* },
|
9013
|
-
* });
|
9014
|
-
*/
|
9015
|
-
export declare function useInitializeTeamInContextMutation(baseOptions?: Apollo.MutationHookOptions<IInitializeTeamInContextMutation, IInitializeTeamInContextMutationVariables>): Apollo.MutationTuple<IInitializeTeamInContextMutation, Exact<{
|
9016
|
-
teamName: Scalars["String"]["input"];
|
9017
|
-
orgName: Scalars["String"]["input"];
|
9018
|
-
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
9019
|
-
export type InitializeTeamInContextMutationHookResult = ReturnType<typeof useInitializeTeamInContextMutation>;
|
9020
|
-
export type InitializeTeamInContextMutationResult = Apollo.MutationResult<IInitializeTeamInContextMutation>;
|
9021
|
-
export type InitializeTeamInContextMutationOptions = Apollo.BaseMutationOptions<IInitializeTeamInContextMutation, IInitializeTeamInContextMutationVariables>;
|
9022
9026
|
export declare const ReassignConfigurationDocument: DocumentNode;
|
9023
9027
|
export type IReassignConfigurationMutationFn = Apollo.MutationFunction<IReassignConfigurationMutation, IReassignConfigurationMutationVariables>;
|
9024
9028
|
/**
|
@@ -9078,6 +9082,39 @@ export declare function useUpdateConfigurationMutation(baseOptions?: Apollo.Muta
|
|
9078
9082
|
export type UpdateConfigurationMutationHookResult = ReturnType<typeof useUpdateConfigurationMutation>;
|
9079
9083
|
export type UpdateConfigurationMutationResult = Apollo.MutationResult<IUpdateConfigurationMutation>;
|
9080
9084
|
export type UpdateConfigurationMutationOptions = Apollo.BaseMutationOptions<IUpdateConfigurationMutation, IUpdateConfigurationMutationVariables>;
|
9085
|
+
export declare const WriteSettingsDocument: DocumentNode;
|
9086
|
+
export type IWriteSettingsMutationFn = Apollo.MutationFunction<IWriteSettingsMutation, IWriteSettingsMutationVariables>;
|
9087
|
+
/**
|
9088
|
+
* __useWriteSettingsMutation__
|
9089
|
+
*
|
9090
|
+
* To run a mutation, you first call `useWriteSettingsMutation` within a React component and pass it any options that fit your needs.
|
9091
|
+
* When your component renders, `useWriteSettingsMutation` returns a tuple that includes:
|
9092
|
+
* - A mutate function that you can call at any time to execute the mutation
|
9093
|
+
* - An object with fields that represent the current status of the mutation's execution
|
9094
|
+
*
|
9095
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
9096
|
+
*
|
9097
|
+
* @example
|
9098
|
+
* const [writeSettingsMutation, { data, loading, error }] = useWriteSettingsMutation({
|
9099
|
+
* variables: {
|
9100
|
+
* editingUri: // value for 'editingUri'
|
9101
|
+
* settings: // value for 'settings'
|
9102
|
+
* overrides: // value for 'overrides'
|
9103
|
+
* target: // value for 'target'
|
9104
|
+
* donotNotifyError: // value for 'donotNotifyError'
|
9105
|
+
* },
|
9106
|
+
* });
|
9107
|
+
*/
|
9108
|
+
export declare function useWriteSettingsMutation(baseOptions?: Apollo.MutationHookOptions<IWriteSettingsMutation, IWriteSettingsMutationVariables>): Apollo.MutationTuple<IWriteSettingsMutation, Exact<{
|
9109
|
+
editingUri?: InputMaybe<Scalars["URI"]["input"]>;
|
9110
|
+
settings?: InputMaybe<Scalars["AnyObject"]["input"]>;
|
9111
|
+
overrides?: InputMaybe<IConfigurationOverridesInput>;
|
9112
|
+
target?: InputMaybe<Scalars["Int"]["input"]>;
|
9113
|
+
donotNotifyError?: InputMaybe<Scalars["Boolean"]["input"]>;
|
9114
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
9115
|
+
export type WriteSettingsMutationHookResult = ReturnType<typeof useWriteSettingsMutation>;
|
9116
|
+
export type WriteSettingsMutationResult = Apollo.MutationResult<IWriteSettingsMutation>;
|
9117
|
+
export type WriteSettingsMutationOptions = Apollo.BaseMutationOptions<IWriteSettingsMutation, IWriteSettingsMutationVariables>;
|
9081
9118
|
export declare const GetApplicationPolicyDocument: DocumentNode;
|
9082
9119
|
/**
|
9083
9120
|
* __useGetApplicationPolicyQuery__
|
@@ -9138,6 +9175,36 @@ export type GetApplicationRoleQueryHookResult = ReturnType<typeof useGetApplicat
|
|
9138
9175
|
export type GetApplicationRoleLazyQueryHookResult = ReturnType<typeof useGetApplicationRoleLazyQuery>;
|
9139
9176
|
export type GetApplicationRoleSuspenseQueryHookResult = ReturnType<typeof useGetApplicationRoleSuspenseQuery>;
|
9140
9177
|
export type GetApplicationRoleQueryResult = Apollo.QueryResult<IGetApplicationRoleQuery, IGetApplicationRoleQueryVariables>;
|
9178
|
+
export declare const GetCurrentPagePermissionsDocument: DocumentNode;
|
9179
|
+
/**
|
9180
|
+
* __useGetCurrentPagePermissionsQuery__
|
9181
|
+
*
|
9182
|
+
* To run a query within a React component, call `useGetCurrentPagePermissionsQuery` and pass it any options that fit your needs.
|
9183
|
+
* When your component renders, `useGetCurrentPagePermissionsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
9184
|
+
* you can use to render your UI.
|
9185
|
+
*
|
9186
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
9187
|
+
*
|
9188
|
+
* @example
|
9189
|
+
* const { data, loading, error } = useGetCurrentPagePermissionsQuery({
|
9190
|
+
* variables: {
|
9191
|
+
* resourceUri: // value for 'resourceUri'
|
9192
|
+
* },
|
9193
|
+
* });
|
9194
|
+
*/
|
9195
|
+
export declare function useGetCurrentPagePermissionsQuery(baseOptions?: Apollo.QueryHookOptions<IGetCurrentPagePermissionsQuery, IGetCurrentPagePermissionsQueryVariables>): Apollo.QueryResult<IGetCurrentPagePermissionsQuery, Exact<{
|
9196
|
+
resourceUri?: InputMaybe<Scalars["URIInput"]["input"]>;
|
9197
|
+
}>>;
|
9198
|
+
export declare function useGetCurrentPagePermissionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetCurrentPagePermissionsQuery, IGetCurrentPagePermissionsQueryVariables>): Apollo.LazyQueryResultTuple<IGetCurrentPagePermissionsQuery, Exact<{
|
9199
|
+
resourceUri?: InputMaybe<Scalars["URIInput"]["input"]>;
|
9200
|
+
}>>;
|
9201
|
+
export declare function useGetCurrentPagePermissionsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetCurrentPagePermissionsQuery, IGetCurrentPagePermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetCurrentPagePermissionsQuery, Exact<{
|
9202
|
+
resourceUri?: InputMaybe<Scalars["URIInput"]["input"]>;
|
9203
|
+
}>>;
|
9204
|
+
export type GetCurrentPagePermissionsQueryHookResult = ReturnType<typeof useGetCurrentPagePermissionsQuery>;
|
9205
|
+
export type GetCurrentPagePermissionsLazyQueryHookResult = ReturnType<typeof useGetCurrentPagePermissionsLazyQuery>;
|
9206
|
+
export type GetCurrentPagePermissionsSuspenseQueryHookResult = ReturnType<typeof useGetCurrentPagePermissionsSuspenseQuery>;
|
9207
|
+
export type GetCurrentPagePermissionsQueryResult = Apollo.QueryResult<IGetCurrentPagePermissionsQuery, IGetCurrentPagePermissionsQueryVariables>;
|
9141
9208
|
export declare const DefaultResolveSettingsDocument: DocumentNode;
|
9142
9209
|
/**
|
9143
9210
|
* __useDefaultResolveSettingsQuery__
|
@@ -9385,64 +9452,6 @@ export type GetDefaultRoleQueryHookResult = ReturnType<typeof useGetDefaultRoleQ
|
|
9385
9452
|
export type GetDefaultRoleLazyQueryHookResult = ReturnType<typeof useGetDefaultRoleLazyQuery>;
|
9386
9453
|
export type GetDefaultRoleSuspenseQueryHookResult = ReturnType<typeof useGetDefaultRoleSuspenseQuery>;
|
9387
9454
|
export type GetDefaultRoleQueryResult = Apollo.QueryResult<IGetDefaultRoleQuery, IGetDefaultRoleQueryVariables>;
|
9388
|
-
export declare const GetTeamContextDocument: DocumentNode;
|
9389
|
-
/**
|
9390
|
-
* __useGetTeamContextQuery__
|
9391
|
-
*
|
9392
|
-
* To run a query within a React component, call `useGetTeamContextQuery` and pass it any options that fit your needs.
|
9393
|
-
* When your component renders, `useGetTeamContextQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
9394
|
-
* you can use to render your UI.
|
9395
|
-
*
|
9396
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
9397
|
-
*
|
9398
|
-
* @example
|
9399
|
-
* const { data, loading, error } = useGetTeamContextQuery({
|
9400
|
-
* variables: {
|
9401
|
-
* },
|
9402
|
-
* });
|
9403
|
-
*/
|
9404
|
-
export declare function useGetTeamContextQuery(baseOptions?: Apollo.QueryHookOptions<IGetTeamContextQuery, IGetTeamContextQueryVariables>): Apollo.QueryResult<IGetTeamContextQuery, Exact<{
|
9405
|
-
[key: string]: never;
|
9406
|
-
}>>;
|
9407
|
-
export declare function useGetTeamContextLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetTeamContextQuery, IGetTeamContextQueryVariables>): Apollo.LazyQueryResultTuple<IGetTeamContextQuery, Exact<{
|
9408
|
-
[key: string]: never;
|
9409
|
-
}>>;
|
9410
|
-
export declare function useGetTeamContextSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetTeamContextQuery, IGetTeamContextQueryVariables>): Apollo.UseSuspenseQueryResult<IGetTeamContextQuery, Exact<{
|
9411
|
-
[key: string]: never;
|
9412
|
-
}>>;
|
9413
|
-
export type GetTeamContextQueryHookResult = ReturnType<typeof useGetTeamContextQuery>;
|
9414
|
-
export type GetTeamContextLazyQueryHookResult = ReturnType<typeof useGetTeamContextLazyQuery>;
|
9415
|
-
export type GetTeamContextSuspenseQueryHookResult = ReturnType<typeof useGetTeamContextSuspenseQuery>;
|
9416
|
-
export type GetTeamContextQueryResult = Apollo.QueryResult<IGetTeamContextQuery, IGetTeamContextQueryVariables>;
|
9417
|
-
export declare const GetTeamNameFromContextDocument: DocumentNode;
|
9418
|
-
/**
|
9419
|
-
* __useGetTeamNameFromContextQuery__
|
9420
|
-
*
|
9421
|
-
* To run a query within a React component, call `useGetTeamNameFromContextQuery` and pass it any options that fit your needs.
|
9422
|
-
* When your component renders, `useGetTeamNameFromContextQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
9423
|
-
* you can use to render your UI.
|
9424
|
-
*
|
9425
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
9426
|
-
*
|
9427
|
-
* @example
|
9428
|
-
* const { data, loading, error } = useGetTeamNameFromContextQuery({
|
9429
|
-
* variables: {
|
9430
|
-
* },
|
9431
|
-
* });
|
9432
|
-
*/
|
9433
|
-
export declare function useGetTeamNameFromContextQuery(baseOptions?: Apollo.QueryHookOptions<IGetTeamNameFromContextQuery, IGetTeamNameFromContextQueryVariables>): Apollo.QueryResult<IGetTeamNameFromContextQuery, Exact<{
|
9434
|
-
[key: string]: never;
|
9435
|
-
}>>;
|
9436
|
-
export declare function useGetTeamNameFromContextLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetTeamNameFromContextQuery, IGetTeamNameFromContextQueryVariables>): Apollo.LazyQueryResultTuple<IGetTeamNameFromContextQuery, Exact<{
|
9437
|
-
[key: string]: never;
|
9438
|
-
}>>;
|
9439
|
-
export declare function useGetTeamNameFromContextSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetTeamNameFromContextQuery, IGetTeamNameFromContextQueryVariables>): Apollo.UseSuspenseQueryResult<IGetTeamNameFromContextQuery, Exact<{
|
9440
|
-
[key: string]: never;
|
9441
|
-
}>>;
|
9442
|
-
export type GetTeamNameFromContextQueryHookResult = ReturnType<typeof useGetTeamNameFromContextQuery>;
|
9443
|
-
export type GetTeamNameFromContextLazyQueryHookResult = ReturnType<typeof useGetTeamNameFromContextLazyQuery>;
|
9444
|
-
export type GetTeamNameFromContextSuspenseQueryHookResult = ReturnType<typeof useGetTeamNameFromContextSuspenseQuery>;
|
9445
|
-
export type GetTeamNameFromContextQueryResult = Apollo.QueryResult<IGetTeamNameFromContextQuery, IGetTeamNameFromContextQueryVariables>;
|
9446
9455
|
export declare const GetUserAccessRoleDocument: DocumentNode;
|
9447
9456
|
/**
|
9448
9457
|
* __useGetUserAccessRoleQuery__
|
@@ -9473,35 +9482,6 @@ export type GetUserAccessRoleQueryHookResult = ReturnType<typeof useGetUserAcces
|
|
9473
9482
|
export type GetUserAccessRoleLazyQueryHookResult = ReturnType<typeof useGetUserAccessRoleLazyQuery>;
|
9474
9483
|
export type GetUserAccessRoleSuspenseQueryHookResult = ReturnType<typeof useGetUserAccessRoleSuspenseQuery>;
|
9475
9484
|
export type GetUserAccessRoleQueryResult = Apollo.QueryResult<IGetUserAccessRoleQuery, IGetUserAccessRoleQueryVariables>;
|
9476
|
-
export declare const GetUserPermissionsDocument: DocumentNode;
|
9477
|
-
/**
|
9478
|
-
* __useGetUserPermissionsQuery__
|
9479
|
-
*
|
9480
|
-
* To run a query within a React component, call `useGetUserPermissionsQuery` and pass it any options that fit your needs.
|
9481
|
-
* When your component renders, `useGetUserPermissionsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
9482
|
-
* you can use to render your UI.
|
9483
|
-
*
|
9484
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
9485
|
-
*
|
9486
|
-
* @example
|
9487
|
-
* const { data, loading, error } = useGetUserPermissionsQuery({
|
9488
|
-
* variables: {
|
9489
|
-
* },
|
9490
|
-
* });
|
9491
|
-
*/
|
9492
|
-
export declare function useGetUserPermissionsQuery(baseOptions?: Apollo.QueryHookOptions<IGetUserPermissionsQuery, IGetUserPermissionsQueryVariables>): Apollo.QueryResult<IGetUserPermissionsQuery, Exact<{
|
9493
|
-
[key: string]: never;
|
9494
|
-
}>>;
|
9495
|
-
export declare function useGetUserPermissionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetUserPermissionsQuery, IGetUserPermissionsQueryVariables>): Apollo.LazyQueryResultTuple<IGetUserPermissionsQuery, Exact<{
|
9496
|
-
[key: string]: never;
|
9497
|
-
}>>;
|
9498
|
-
export declare function useGetUserPermissionsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetUserPermissionsQuery, IGetUserPermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserPermissionsQuery, Exact<{
|
9499
|
-
[key: string]: never;
|
9500
|
-
}>>;
|
9501
|
-
export type GetUserPermissionsQueryHookResult = ReturnType<typeof useGetUserPermissionsQuery>;
|
9502
|
-
export type GetUserPermissionsLazyQueryHookResult = ReturnType<typeof useGetUserPermissionsLazyQuery>;
|
9503
|
-
export type GetUserPermissionsSuspenseQueryHookResult = ReturnType<typeof useGetUserPermissionsSuspenseQuery>;
|
9504
|
-
export type GetUserPermissionsQueryResult = Apollo.QueryResult<IGetUserPermissionsQuery, IGetUserPermissionsQueryVariables>;
|
9505
9485
|
export declare const GetUserRoleDocument: DocumentNode;
|
9506
9486
|
/**
|
9507
9487
|
* __useGetUserRoleQuery__
|
@@ -9559,13 +9539,13 @@ export declare const GetViewerPermissionsDocument: DocumentNode;
|
|
9559
9539
|
* });
|
9560
9540
|
*/
|
9561
9541
|
export declare function useGetViewerPermissionsQuery(baseOptions?: Apollo.QueryHookOptions<IGetViewerPermissionsQuery, IGetViewerPermissionsQueryVariables>): Apollo.QueryResult<IGetViewerPermissionsQuery, Exact<{
|
9562
|
-
input?: InputMaybe<
|
9542
|
+
input?: InputMaybe<IPreferenceRoleInput>;
|
9563
9543
|
}>>;
|
9564
9544
|
export declare function useGetViewerPermissionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetViewerPermissionsQuery, IGetViewerPermissionsQueryVariables>): Apollo.LazyQueryResultTuple<IGetViewerPermissionsQuery, Exact<{
|
9565
|
-
input?: InputMaybe<
|
9545
|
+
input?: InputMaybe<IPreferenceRoleInput>;
|
9566
9546
|
}>>;
|
9567
9547
|
export declare function useGetViewerPermissionsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetViewerPermissionsQuery, IGetViewerPermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetViewerPermissionsQuery, Exact<{
|
9568
|
-
input?: InputMaybe<
|
9548
|
+
input?: InputMaybe<IPreferenceRoleInput>;
|
9569
9549
|
}>>;
|
9570
9550
|
export type GetViewerPermissionsQueryHookResult = ReturnType<typeof useGetViewerPermissionsQuery>;
|
9571
9551
|
export type GetViewerPermissionsLazyQueryHookResult = ReturnType<typeof useGetViewerPermissionsLazyQuery>;
|
@@ -9759,6 +9739,36 @@ export type GetOrgWithResourcesRoleQueryHookResult = ReturnType<typeof useGetOrg
|
|
9759
9739
|
export type GetOrgWithResourcesRoleLazyQueryHookResult = ReturnType<typeof useGetOrgWithResourcesRoleLazyQuery>;
|
9760
9740
|
export type GetOrgWithResourcesRoleSuspenseQueryHookResult = ReturnType<typeof useGetOrgWithResourcesRoleSuspenseQuery>;
|
9761
9741
|
export type GetOrgWithResourcesRoleQueryResult = Apollo.QueryResult<IGetOrgWithResourcesRoleQuery, IGetOrgWithResourcesRoleQueryVariables>;
|
9742
|
+
export declare const GetPageSettingsDocument: DocumentNode;
|
9743
|
+
/**
|
9744
|
+
* __useGetPageSettingsQuery__
|
9745
|
+
*
|
9746
|
+
* To run a query within a React component, call `useGetPageSettingsQuery` and pass it any options that fit your needs.
|
9747
|
+
* When your component renders, `useGetPageSettingsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
9748
|
+
* you can use to render your UI.
|
9749
|
+
*
|
9750
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
9751
|
+
*
|
9752
|
+
* @example
|
9753
|
+
* const { data, loading, error } = useGetPageSettingsQuery({
|
9754
|
+
* variables: {
|
9755
|
+
* resourceUri: // value for 'resourceUri'
|
9756
|
+
* },
|
9757
|
+
* });
|
9758
|
+
*/
|
9759
|
+
export declare function useGetPageSettingsQuery(baseOptions?: Apollo.QueryHookOptions<IGetPageSettingsQuery, IGetPageSettingsQueryVariables>): Apollo.QueryResult<IGetPageSettingsQuery, Exact<{
|
9760
|
+
resourceUri?: InputMaybe<Scalars["URIInput"]["input"]>;
|
9761
|
+
}>>;
|
9762
|
+
export declare function useGetPageSettingsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetPageSettingsQuery, IGetPageSettingsQueryVariables>): Apollo.LazyQueryResultTuple<IGetPageSettingsQuery, Exact<{
|
9763
|
+
resourceUri?: InputMaybe<Scalars["URIInput"]["input"]>;
|
9764
|
+
}>>;
|
9765
|
+
export declare function useGetPageSettingsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetPageSettingsQuery, IGetPageSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetPageSettingsQuery, Exact<{
|
9766
|
+
resourceUri?: InputMaybe<Scalars["URIInput"]["input"]>;
|
9767
|
+
}>>;
|
9768
|
+
export type GetPageSettingsQueryHookResult = ReturnType<typeof useGetPageSettingsQuery>;
|
9769
|
+
export type GetPageSettingsLazyQueryHookResult = ReturnType<typeof useGetPageSettingsLazyQuery>;
|
9770
|
+
export type GetPageSettingsSuspenseQueryHookResult = ReturnType<typeof useGetPageSettingsSuspenseQuery>;
|
9771
|
+
export type GetPageSettingsQueryResult = Apollo.QueryResult<IGetPageSettingsQuery, IGetPageSettingsQueryVariables>;
|
9762
9772
|
export declare const ResolveConfigurationDocument: DocumentNode;
|
9763
9773
|
/**
|
9764
9774
|
* __useResolveConfigurationQuery__
|
@@ -9876,17 +9886,26 @@ export declare const DefaultSettingsDocument: DocumentNode;
|
|
9876
9886
|
* const { data, loading, error } = useDefaultSettingsQuery({
|
9877
9887
|
* variables: {
|
9878
9888
|
* target: // value for 'target'
|
9889
|
+
* options: // value for 'options'
|
9879
9890
|
* },
|
9880
9891
|
* });
|
9881
9892
|
*/
|
9882
|
-
export declare function useDefaultSettingsQuery(baseOptions
|
9883
|
-
|
9893
|
+
export declare function useDefaultSettingsQuery(baseOptions: Apollo.QueryHookOptions<IDefaultSettingsQuery, IDefaultSettingsQueryVariables> & ({
|
9894
|
+
variables: IDefaultSettingsQueryVariables;
|
9895
|
+
skip?: boolean;
|
9896
|
+
} | {
|
9897
|
+
skip: boolean;
|
9898
|
+
})): Apollo.QueryResult<IDefaultSettingsQuery, Exact<{
|
9899
|
+
target: Scalars["Int"]["input"];
|
9900
|
+
options: IPreferencesOpenOptionsInput;
|
9884
9901
|
}>>;
|
9885
9902
|
export declare function useDefaultSettingsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IDefaultSettingsQuery, IDefaultSettingsQueryVariables>): Apollo.LazyQueryResultTuple<IDefaultSettingsQuery, Exact<{
|
9886
|
-
target
|
9903
|
+
target: Scalars["Int"]["input"];
|
9904
|
+
options: IPreferencesOpenOptionsInput;
|
9887
9905
|
}>>;
|
9888
9906
|
export declare function useDefaultSettingsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IDefaultSettingsQuery, IDefaultSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<IDefaultSettingsQuery, Exact<{
|
9889
|
-
target
|
9907
|
+
target: Scalars["Int"]["input"];
|
9908
|
+
options: IPreferencesOpenOptionsInput;
|
9890
9909
|
}>>;
|
9891
9910
|
export type DefaultSettingsQueryHookResult = ReturnType<typeof useDefaultSettingsQuery>;
|
9892
9911
|
export type DefaultSettingsLazyQueryHookResult = ReturnType<typeof useDefaultSettingsLazyQuery>;
|
@@ -10617,11 +10636,15 @@ export type IResolversTypes = {
|
|
10617
10636
|
AuthTokens: ResolverTypeWrapper<IAuthTokens>;
|
10618
10637
|
AuthUser: ResolverTypeWrapper<IAuthUser>;
|
10619
10638
|
AuthUserInput: IAuthUserInput;
|
10639
|
+
AuthorityComponent: ResolverTypeWrapper<IAuthorityComponent>;
|
10620
10640
|
BaseAccountService: ResolverTypeWrapper<IBaseAccountService>;
|
10621
10641
|
BaseOrganizationService: ResolverTypeWrapper<IBaseOrganizationService>;
|
10622
10642
|
BaseTeamService: ResolverTypeWrapper<IBaseTeamService>;
|
10623
10643
|
BillingPermissions: ResolverTypeWrapper<IBillingPermissions>;
|
10624
10644
|
Boolean: ResolverTypeWrapper<Scalars['Boolean']['output']>;
|
10645
|
+
CdecodeParsedUri: ResolverTypeWrapper<ICdecodeParsedUri>;
|
10646
|
+
CdecodeURIPathSegment: ResolverTypeWrapper<ICdecodeUriPathSegment>;
|
10647
|
+
CdecodeUriInput: ICdecodeUriInput;
|
10625
10648
|
Cities: ResolverTypeWrapper<ICities>;
|
10626
10649
|
CitiesInput: ICitiesInput;
|
10627
10650
|
CitiesOptions: ICitiesOptions;
|
@@ -10810,6 +10833,8 @@ export type IResolversTypes = {
|
|
10810
10833
|
OthersThreadsPermissions: ResolverTypeWrapper<IOthersThreadsPermissions>;
|
10811
10834
|
Overrides: ResolverTypeWrapper<IOverrides>;
|
10812
10835
|
PageInfo: ResolverTypeWrapper<IPageInfo>;
|
10836
|
+
PageResourcePermission: ResolverTypeWrapper<IPageResourcePermission>;
|
10837
|
+
PageResourceSetting: ResolverTypeWrapper<IPageResourceSetting>;
|
10813
10838
|
PaymentMethodsPermissions: ResolverTypeWrapper<IPaymentMethodsPermissions>;
|
10814
10839
|
PaymentProfilePermissions: ResolverTypeWrapper<IPaymentProfilePermissions>;
|
10815
10840
|
PermissionAction: IPermissionAction;
|
@@ -10834,6 +10859,7 @@ export type IResolversTypes = {
|
|
10834
10859
|
PreferenceProject: ResolverTypeWrapper<IPreferenceProject>;
|
10835
10860
|
PreferenceProjectIntegration: ResolverTypeWrapper<IPreferenceProjectIntegration>;
|
10836
10861
|
PreferenceProjectIntegrationStatus: IPreferenceProjectIntegrationStatus;
|
10862
|
+
PreferenceRoleInput: IPreferenceRoleInput;
|
10837
10863
|
Preference_Account: ResolverTypeWrapper<IPreference_Account>;
|
10838
10864
|
Preference_Default: ResolverTypeWrapper<IPreference_Default>;
|
10839
10865
|
Preference_Global: ResolverTypeWrapper<IPreference_Global>;
|
@@ -10869,6 +10895,8 @@ export type IResolversTypes = {
|
|
10869
10895
|
Role: IRole;
|
10870
10896
|
RoleInput: IRoleInput;
|
10871
10897
|
RolePermissions: ResolverTypeWrapper<IRolePermissions>;
|
10898
|
+
RolesTarget: ResolverTypeWrapper<IRolesTarget>;
|
10899
|
+
RolesTargetInput: IRolesTargetInput;
|
10872
10900
|
RouteData: ResolverTypeWrapper<IRouteData>;
|
10873
10901
|
RouteParams: IRouteParams;
|
10874
10902
|
SettingPermissions: ResolverTypeWrapper<ISettingPermissions>;
|
@@ -10983,11 +11011,15 @@ export type IResolversParentTypes = {
|
|
10983
11011
|
AuthTokens: IAuthTokens;
|
10984
11012
|
AuthUser: IAuthUser;
|
10985
11013
|
AuthUserInput: IAuthUserInput;
|
11014
|
+
AuthorityComponent: IAuthorityComponent;
|
10986
11015
|
BaseAccountService: IBaseAccountService;
|
10987
11016
|
BaseOrganizationService: IBaseOrganizationService;
|
10988
11017
|
BaseTeamService: IBaseTeamService;
|
10989
11018
|
BillingPermissions: IBillingPermissions;
|
10990
11019
|
Boolean: Scalars['Boolean']['output'];
|
11020
|
+
CdecodeParsedUri: ICdecodeParsedUri;
|
11021
|
+
CdecodeURIPathSegment: ICdecodeUriPathSegment;
|
11022
|
+
CdecodeUriInput: ICdecodeUriInput;
|
10991
11023
|
Cities: ICities;
|
10992
11024
|
CitiesInput: ICitiesInput;
|
10993
11025
|
CitiesOptions: ICitiesOptions;
|
@@ -11151,6 +11183,8 @@ export type IResolversParentTypes = {
|
|
11151
11183
|
OthersThreadsPermissions: IOthersThreadsPermissions;
|
11152
11184
|
Overrides: IOverrides;
|
11153
11185
|
PageInfo: IPageInfo;
|
11186
|
+
PageResourcePermission: IPageResourcePermission;
|
11187
|
+
PageResourceSetting: IPageResourceSetting;
|
11154
11188
|
PaymentMethodsPermissions: IPaymentMethodsPermissions;
|
11155
11189
|
PaymentProfilePermissions: IPaymentProfilePermissions;
|
11156
11190
|
PermissionPermissions: IPermissionPermissions;
|
@@ -11169,6 +11203,7 @@ export type IResolversParentTypes = {
|
|
11169
11203
|
PreferenceItem: IPreferenceItem;
|
11170
11204
|
PreferenceProject: IPreferenceProject;
|
11171
11205
|
PreferenceProjectIntegration: IPreferenceProjectIntegration;
|
11206
|
+
PreferenceRoleInput: IPreferenceRoleInput;
|
11172
11207
|
Preference_Account: IPreference_Account;
|
11173
11208
|
Preference_Default: IPreference_Default;
|
11174
11209
|
Preference_Global: IPreference_Global;
|
@@ -11201,6 +11236,8 @@ export type IResolversParentTypes = {
|
|
11201
11236
|
ResourceUser: IResourceUser;
|
11202
11237
|
RoleInput: IRoleInput;
|
11203
11238
|
RolePermissions: IRolePermissions;
|
11239
|
+
RolesTarget: IRolesTarget;
|
11240
|
+
RolesTargetInput: IRolesTargetInput;
|
11204
11241
|
RouteData: IRouteData;
|
11205
11242
|
SettingPermissions: ISettingPermissions;
|
11206
11243
|
Settings: ISettings;
|
@@ -11324,7 +11361,6 @@ export type IAccountTeamResolvers<ContextType = MyContext, ParentType extends IR
|
|
11324
11361
|
settings?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
11325
11362
|
settingsUri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
11326
11363
|
tags?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
11327
|
-
teamMembers?: Resolver<Maybe<Array<Maybe<IResolversTypes['TeamMember']>>>, ParentType, ContextType>;
|
11328
11364
|
title?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11329
11365
|
updatedAt?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11330
11366
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
@@ -11420,6 +11456,12 @@ export type IAuthUserResolvers<ContextType = MyContext, ParentType extends IReso
|
|
11420
11456
|
username?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11421
11457
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11422
11458
|
};
|
11459
|
+
export type IAuthorityComponentResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AuthorityComponent'] = IResolversParentTypes['AuthorityComponent']> = {
|
11460
|
+
bucketOrAppName?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
11461
|
+
domain?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
11462
|
+
region?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
11463
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11464
|
+
};
|
11423
11465
|
export type IBaseAccountServiceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['BaseAccountService'] = IResolversParentTypes['BaseAccountService']> = {
|
11424
11466
|
accountOnBoarding?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceAccountOnBoardingArgs, 'context' | 'input'>>;
|
11425
11467
|
addUserToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IBaseAccountServiceAddUserTokenArgs, 'token' | 'userId'>>;
|
@@ -11475,6 +11517,22 @@ export type IBillingPermissionsResolvers<ContextType = MyContext, ParentType ext
|
|
11475
11517
|
subscriptions?: Resolver<Maybe<IResolversTypes['SubscriptionsPermissions']>, ParentType, ContextType>;
|
11476
11518
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11477
11519
|
};
|
11520
|
+
export type ICdecodeParsedUriResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['CdecodeParsedUri'] = IResolversParentTypes['CdecodeParsedUri']> = {
|
11521
|
+
authority?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
11522
|
+
fragmentData?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
|
11523
|
+
pathSegments?: Resolver<IResolversTypes['CdecodeURIPathSegment'], ParentType, ContextType>;
|
11524
|
+
queryData?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
|
11525
|
+
scheme?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
11526
|
+
tenantId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
11527
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11528
|
+
};
|
11529
|
+
export type ICdecodeUriPathSegmentResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['CdecodeURIPathSegment'] = IResolversParentTypes['CdecodeURIPathSegment']> = {
|
11530
|
+
organization?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
11531
|
+
resourceGroup?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11532
|
+
resourceId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11533
|
+
resourceType?: Resolver<Maybe<IResolversTypes['ConfigCollectionName']>, ParentType, ContextType>;
|
11534
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11535
|
+
};
|
11478
11536
|
export type ICitiesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Cities'] = IResolversParentTypes['Cities']> = {
|
11479
11537
|
data?: Resolver<Maybe<Array<Maybe<IResolversTypes['City']>>>, ParentType, ContextType>;
|
11480
11538
|
totalCount?: Resolver<IResolversTypes['Int'], ParentType, ContextType>;
|
@@ -11563,6 +11621,7 @@ export type IContextResolvers<ContextType = MyContext, ParentType extends IResol
|
|
11563
11621
|
breadcrumbsActive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
11564
11622
|
breadcrumbsPossible?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
11565
11623
|
breadcrumbsVisible?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
11624
|
+
cdecodeUri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
11566
11625
|
machineName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11567
11626
|
machineResource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
11568
11627
|
orgName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -11570,12 +11629,10 @@ export type IContextResolvers<ContextType = MyContext, ParentType extends IResol
|
|
11570
11629
|
orgResourceId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11571
11630
|
orgResourceName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11572
11631
|
orgUri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
11632
|
+
projectId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11633
|
+
projectSlug?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11573
11634
|
resource?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11574
11635
|
resourceId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11575
|
-
resourceUri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
11576
|
-
teamName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11577
|
-
teamResource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
11578
|
-
teamUri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
11579
11636
|
userId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11580
11637
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11581
11638
|
};
|
@@ -12083,7 +12140,6 @@ export type IMutationResolvers<ContextType = MyContext, ParentType extends IReso
|
|
12083
12140
|
initializeAuthorizationCodeFlow?: Resolver<Maybe<IResolversTypes['AuthTokens']>, ParentType, ContextType, RequireFields<IMutationInitializeAuthorizationCodeFlowArgs, 'deviceInfo'>>;
|
12084
12141
|
initializeOrgNameInContext?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, Partial<IMutationInitializeOrgNameInContextArgs>>;
|
12085
12142
|
initializePopupIntegrationAuthorization?: Resolver<Maybe<IResolversTypes['PopupIntegrationAuthorization']>, ParentType, ContextType, Partial<IMutationInitializePopupIntegrationAuthorizationArgs>>;
|
12086
|
-
initializeTeamInContext?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, Partial<IMutationInitializeTeamInContextArgs>>;
|
12087
12143
|
initializeUserSession?: Resolver<Maybe<IResolversTypes['UserSessionId']>, ParentType, ContextType, RequireFields<IMutationInitializeUserSessionArgs, 'deviceInfo'>>;
|
12088
12144
|
initiateConfigurationValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, Partial<IMutationInitiateConfigurationValueArgs>>;
|
12089
12145
|
initiatePolicyValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, Partial<IMutationInitiatePolicyValueArgs>>;
|
@@ -12103,7 +12159,6 @@ export type IMutationResolvers<ContextType = MyContext, ParentType extends IReso
|
|
12103
12159
|
sendOrganizationInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, Partial<IMutationSendOrganizationInvitationArgs>>;
|
12104
12160
|
sendPhoneOTP?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationSendPhoneOtpArgs, 'phoneNumber'>>;
|
12105
12161
|
sendUserPasswordResetEmail?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationSendUserPasswordResetEmailArgs, 'email'>>;
|
12106
|
-
setSettingsValueByResource?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, Partial<IMutationSetSettingsValueByResourceArgs>>;
|
12107
12162
|
updateAuth0UserPassword?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, Partial<IMutationUpdateAuth0UserPasswordArgs>>;
|
12108
12163
|
updateCity?: Resolver<IResolversTypes['City'], ParentType, ContextType, RequireFields<IMutationUpdateCityArgs, 'id' | 'propertyCity'>>;
|
12109
12164
|
updateConfiguration?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateConfigurationArgs, 'input' | 'key' | 'value'>>;
|
@@ -12126,6 +12181,7 @@ export type IMutationResolvers<ContextType = MyContext, ParentType extends IReso
|
|
12126
12181
|
validatePasswordResetOtp?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationValidatePasswordResetOtpArgs, 'code' | 'email'>>;
|
12127
12182
|
validateUserEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationValidateUserEmailVerificationTokenArgs, 'code'>>;
|
12128
12183
|
verifyPhoneOtp?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationVerifyPhoneOtpArgs, 'otp' | 'phoneNumber'>>;
|
12184
|
+
writeSettings?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, Partial<IMutationWriteSettingsArgs>>;
|
12129
12185
|
};
|
12130
12186
|
export type INodeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Node'] = IResolversParentTypes['Node']> = {
|
12131
12187
|
__resolveType: TypeResolveFn<'AccessToken' | 'ApiExternalAccount' | 'ApiManagement' | 'UserAccount', ParentType, ContextType>;
|
@@ -12150,6 +12206,7 @@ export type IOrgUserResolvers<ContextType = MyContext, ParentType extends IResol
|
|
12150
12206
|
isSelf?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
12151
12207
|
orgName?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
12152
12208
|
role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
|
12209
|
+
roles?: Resolver<Maybe<Array<Maybe<IResolversTypes['ApplicationRoles']>>>, ParentType, ContextType>;
|
12153
12210
|
teamNames?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
12154
12211
|
user?: Resolver<IResolversTypes['UserAccount'], ParentType, ContextType>;
|
12155
12212
|
userId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
@@ -12348,6 +12405,18 @@ export type IPageInfoResolvers<ContextType = MyContext, ParentType extends IReso
|
|
12348
12405
|
hasNextPage?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
12349
12406
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12350
12407
|
};
|
12408
|
+
export type IPageResourcePermissionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['PageResourcePermission'] = IResolversParentTypes['PageResourcePermission']> = {
|
12409
|
+
permissions?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
12410
|
+
resourceUri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
12411
|
+
updateTimestamp?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
|
12412
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12413
|
+
};
|
12414
|
+
export type IPageResourceSettingResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['PageResourceSetting'] = IResolversParentTypes['PageResourceSetting']> = {
|
12415
|
+
resourceUri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
12416
|
+
settings?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
12417
|
+
updateTimestamp?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
|
12418
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12419
|
+
};
|
12351
12420
|
export type IPaymentMethodsPermissionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['PaymentMethodsPermissions'] = IResolversParentTypes['PaymentMethodsPermissions']> = {
|
12352
12421
|
create?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12353
12422
|
delete?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
@@ -12530,13 +12599,14 @@ export type IQueryResolvers<ContextType = MyContext, ParentType extends IResolve
|
|
12530
12599
|
countries?: Resolver<IResolversTypes['Countries'], ParentType, ContextType, Partial<IQueryCountriesArgs>>;
|
12531
12600
|
country?: Resolver<IResolversTypes['Country'], ParentType, ContextType, RequireFields<IQueryCountryArgs, 'id'>>;
|
12532
12601
|
countryByName?: Resolver<IResolversTypes['Country'], ParentType, ContextType, RequireFields<IQueryCountryByNameArgs, 'name'>>;
|
12602
|
+
currentPagePermissions?: Resolver<Maybe<IResolversTypes['PageResourcePermission']>, ParentType, ContextType, Partial<IQueryCurrentPagePermissionsArgs>>;
|
12533
12603
|
decodeOrganizationInvitation?: Resolver<Maybe<IResolversTypes['OrganizationInvitationDecode']>, ParentType, ContextType, RequireFields<IQueryDecodeOrganizationInvitationArgs, 'token'>>;
|
12534
12604
|
decodeOrganizationSharedToken?: Resolver<Maybe<IResolversTypes['OrganizationSharedTokenDecode']>, ParentType, ContextType, RequireFields<IQueryDecodeOrganizationSharedTokenArgs, 'token'>>;
|
12535
12605
|
defaultPermissions?: Resolver<Maybe<Array<Maybe<IResolversTypes['SettingsGroup']>>>, ParentType, ContextType, Partial<IQueryDefaultPermissionsArgs>>;
|
12536
12606
|
defaultPolicies?: Resolver<Maybe<Array<Maybe<IResolversTypes['SettingsGroup']>>>, ParentType, ContextType, Partial<IQueryDefaultPoliciesArgs>>;
|
12537
12607
|
defaultPreferences?: Resolver<Maybe<IResolversTypes['PreferencesResponse']>, ParentType, ContextType>;
|
12538
12608
|
defaultSetting?: Resolver<Maybe<IResolversTypes['ContributionSettings']>, ParentType, ContextType>;
|
12539
|
-
defaultViewerSettingsSubject?: Resolver<IResolversTypes['DefaultSettings'], ParentType, ContextType,
|
12609
|
+
defaultViewerSettingsSubject?: Resolver<IResolversTypes['DefaultSettings'], ParentType, ContextType, RequireFields<IQueryDefaultViewerSettingsSubjectArgs, 'options' | 'target'>>;
|
12540
12610
|
externalAccounts?: Resolver<IResolversTypes['ExternalAccountConnection'], ParentType, ContextType, Partial<IQueryExternalAccountsArgs>>;
|
12541
12611
|
fetchAuth0User?: Resolver<Maybe<IResolversTypes['UserProfile']>, ParentType, ContextType, RequireFields<IQueryFetchAuth0UserArgs, 'authUserId'>>;
|
12542
12612
|
fetchUserAuthorizedDevices?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserDevice']>>>, ParentType, ContextType, RequireFields<IQueryFetchUserAuthorizedDevicesArgs, 'authUserId'>>;
|
@@ -12574,15 +12644,12 @@ export type IQueryResolvers<ContextType = MyContext, ParentType extends IResolve
|
|
12574
12644
|
getRole?: Resolver<Maybe<IResolversTypes['AccessRole']>, ParentType, ContextType, Partial<IQueryGetRoleArgs>>;
|
12575
12645
|
getRoles?: Resolver<Maybe<Array<Maybe<IResolversTypes['AccessRole']>>>, ParentType, ContextType, Partial<IQueryGetRolesArgs>>;
|
12576
12646
|
getTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IQueryGetTeamArgs, 'orgName' | 'teamName'>>;
|
12577
|
-
getTeamContext?: Resolver<Maybe<IResolversTypes['Context']>, ParentType, ContextType>;
|
12578
|
-
getTeamNameFromContext?: Resolver<Maybe<IResolversTypes['Context']>, ParentType, ContextType>;
|
12579
12647
|
getUserAccessRole?: Resolver<Maybe<IResolversTypes['ResourceAccessRole']>, ParentType, ContextType, Partial<IQueryGetUserAccessRoleArgs>>;
|
12580
12648
|
getUserAccount?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, RequireFields<IQueryGetUserAccountArgs, 'userId'>>;
|
12581
12649
|
getUserAccountByAuth0Id?: Resolver<Maybe<IResolversTypes['UserAccount']>, ParentType, ContextType, Partial<IQueryGetUserAccountByAuth0IdArgs>>;
|
12582
12650
|
getUserContextData?: Resolver<Maybe<IResolversTypes['UserContext']>, ParentType, ContextType>;
|
12583
12651
|
getUserOrganizations?: Resolver<Maybe<Array<Maybe<IResolversTypes['Organization']>>>, ParentType, ContextType, Partial<IQueryGetUserOrganizationsArgs>>;
|
12584
12652
|
getUserOrganizationsWithRole?: Resolver<Maybe<Array<Maybe<IResolversTypes['Organization']>>>, ParentType, ContextType, Partial<IQueryGetUserOrganizationsWithRoleArgs>>;
|
12585
|
-
getUserPermissions?: Resolver<Maybe<IResolversTypes['ContributionRoles']>, ParentType, ContextType>;
|
12586
12653
|
getUserTokenDetails?: Resolver<Maybe<IResolversTypes['UserToken']>, ParentType, ContextType, Partial<IQueryGetUserTokenDetailsArgs>>;
|
12587
12654
|
getUsers?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserAccount']>>>, ParentType, ContextType, Partial<IQueryGetUsersArgs>>;
|
12588
12655
|
getViewerPermissions?: Resolver<Maybe<IResolversTypes['PermissionSubject']>, ParentType, ContextType, Partial<IQueryGetViewerPermissionsArgs>>;
|
@@ -12591,8 +12658,7 @@ export type IQueryResolvers<ContextType = MyContext, ParentType extends IResolve
|
|
12591
12658
|
node?: Resolver<Maybe<IResolversTypes['Node']>, ParentType, ContextType, RequireFields<IQueryNodeArgs, 'id'>>;
|
12592
12659
|
openPreferencesSettings?: Resolver<Maybe<IResolversTypes['PreferencesInput']>, ParentType, ContextType, Partial<IQueryOpenPreferencesSettingsArgs>>;
|
12593
12660
|
organizations?: Resolver<Maybe<Array<Maybe<IResolversTypes['Organization']>>>, ParentType, ContextType>;
|
12594
|
-
|
12595
|
-
pageSettings?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, Partial<IQueryPageSettingsArgs>>;
|
12661
|
+
pageSettings?: Resolver<Maybe<IResolversTypes['PageResourceSetting']>, ParentType, ContextType, Partial<IQueryPageSettingsArgs>>;
|
12596
12662
|
profile?: Resolver<Maybe<IResolversTypes['UserProfile']>, ParentType, ContextType>;
|
12597
12663
|
renewAuthUsingRefreshToken?: Resolver<Maybe<IResolversTypes['RenewAuthUsingRefreshToken']>, ParentType, ContextType, Partial<IQueryRenewAuthUsingRefreshTokenArgs>>;
|
12598
12664
|
resolveConfiguration?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IQueryResolveConfigurationArgs, 'input'>>;
|
@@ -12605,6 +12671,7 @@ export type IQueryResolvers<ContextType = MyContext, ParentType extends IResolve
|
|
12605
12671
|
userResourceRole?: Resolver<Maybe<IResolversTypes['ResourceUser']>, ParentType, ContextType, RequireFields<IQueryUserResourceRoleArgs, 'orgName'>>;
|
12606
12672
|
viewerPolicies?: Resolver<Maybe<IResolversTypes['PolicySubject']>, ParentType, ContextType, RequireFields<IQueryViewerPoliciesArgs, 'input'>>;
|
12607
12673
|
viewerSettings?: Resolver<IResolversTypes['ViewerSettingsSubject'], ParentType, ContextType, Partial<IQueryViewerSettingsArgs>>;
|
12674
|
+
viewerSettings2?: Resolver<IResolversTypes['ViewerSettingsSubject'], ParentType, ContextType, Partial<IQueryViewerSettings2Args>>;
|
12608
12675
|
};
|
12609
12676
|
export type IRangeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Range'] = IResolversParentTypes['Range']> = {
|
12610
12677
|
end?: Resolver<Maybe<IResolversTypes['Position']>, ParentType, ContextType>;
|
@@ -12672,6 +12739,11 @@ export type IRolePermissionsResolvers<ContextType = MyContext, ParentType extend
|
|
12672
12739
|
view?: Resolver<Maybe<IResolversTypes['PermissionType']>, ParentType, ContextType>;
|
12673
12740
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12674
12741
|
};
|
12742
|
+
export type IRolesTargetResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['RolesTarget'] = IResolversParentTypes['RolesTarget']> = {
|
12743
|
+
roles?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
12744
|
+
target?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
12745
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12746
|
+
};
|
12675
12747
|
export type IRouteDataResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['RouteData'] = IResolversParentTypes['RouteData']> = {
|
12676
12748
|
exact?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
12677
12749
|
key?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -12776,6 +12848,7 @@ export type ITeamMemberResolvers<ContextType = MyContext, ParentType extends IRe
|
|
12776
12848
|
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12777
12849
|
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12778
12850
|
role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
|
12851
|
+
roles?: Resolver<Maybe<Array<Maybe<IResolversTypes['ApplicationRoles']>>>, ParentType, ContextType>;
|
12779
12852
|
status?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12780
12853
|
userId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12781
12854
|
username?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -13055,10 +13128,13 @@ export type IResolvers<ContextType = MyContext> = {
|
|
13055
13128
|
Auth0IdentityProfileData?: IAuth0IdentityProfileDataResolvers<ContextType>;
|
13056
13129
|
AuthTokens?: IAuthTokensResolvers<ContextType>;
|
13057
13130
|
AuthUser?: IAuthUserResolvers<ContextType>;
|
13131
|
+
AuthorityComponent?: IAuthorityComponentResolvers<ContextType>;
|
13058
13132
|
BaseAccountService?: IBaseAccountServiceResolvers<ContextType>;
|
13059
13133
|
BaseOrganizationService?: IBaseOrganizationServiceResolvers<ContextType>;
|
13060
13134
|
BaseTeamService?: IBaseTeamServiceResolvers<ContextType>;
|
13061
13135
|
BillingPermissions?: IBillingPermissionsResolvers<ContextType>;
|
13136
|
+
CdecodeParsedUri?: ICdecodeParsedUriResolvers<ContextType>;
|
13137
|
+
CdecodeURIPathSegment?: ICdecodeUriPathSegmentResolvers<ContextType>;
|
13062
13138
|
Cities?: ICitiesResolvers<ContextType>;
|
13063
13139
|
City?: ICityResolvers<ContextType>;
|
13064
13140
|
ClientLevelPermissions?: IClientLevelPermissionsResolvers<ContextType>;
|
@@ -13160,6 +13236,8 @@ export type IResolvers<ContextType = MyContext> = {
|
|
13160
13236
|
OthersThreadsPermissions?: IOthersThreadsPermissionsResolvers<ContextType>;
|
13161
13237
|
Overrides?: IOverridesResolvers<ContextType>;
|
13162
13238
|
PageInfo?: IPageInfoResolvers<ContextType>;
|
13239
|
+
PageResourcePermission?: IPageResourcePermissionResolvers<ContextType>;
|
13240
|
+
PageResourceSetting?: IPageResourceSettingResolvers<ContextType>;
|
13163
13241
|
PaymentMethodsPermissions?: IPaymentMethodsPermissionsResolvers<ContextType>;
|
13164
13242
|
PaymentProfilePermissions?: IPaymentProfilePermissionsResolvers<ContextType>;
|
13165
13243
|
PermissionPermissions?: IPermissionPermissionsResolvers<ContextType>;
|
@@ -13201,6 +13279,7 @@ export type IResolvers<ContextType = MyContext> = {
|
|
13201
13279
|
ResourceRole?: IResourceRoleResolvers<ContextType>;
|
13202
13280
|
ResourceUser?: IResourceUserResolvers<ContextType>;
|
13203
13281
|
RolePermissions?: IRolePermissionsResolvers<ContextType>;
|
13282
|
+
RolesTarget?: IRolesTargetResolvers<ContextType>;
|
13204
13283
|
RouteData?: IRouteDataResolvers<ContextType>;
|
13205
13284
|
SettingPermissions?: ISettingPermissionsResolvers<ContextType>;
|
13206
13285
|
Settings?: ISettingsResolvers<ContextType>;
|