@adminide-stack/core 9.0.6-alpha.33 → 9.0.6-alpha.47
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.js +1 -1
- package/lib/interfaces/configuration/configuraton-service.d.ts +8 -0
- package/lib/interfaces/generated/generated-models.d.ts +122 -81
- package/lib/interfaces/generated/generated-models.js +88 -70
- package/lib/interfaces/generated/generated-models.js.map +1 -1
- package/lib/interfaces/permissions.d.ts +5 -0
- package/lib/interfaces/permissions.js +6 -0
- package/lib/interfaces/permissions.js.map +1 -0
- 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/package.json +2 -2
@@ -629,10 +629,6 @@ export type IBaseTeamServiceSendProjectNotificationArgs = {
|
|
629
629
|
export type IBaseTeamServiceUpdateTeamArgs = {
|
630
630
|
team?: InputMaybe<ITeamUpdateRequest>;
|
631
631
|
};
|
632
|
-
export declare enum ICacheControlScope {
|
633
|
-
Private = "PRIVATE",
|
634
|
-
Public = "PUBLIC"
|
635
|
-
}
|
636
632
|
export type ICities = {
|
637
633
|
__typename?: 'Cities';
|
638
634
|
data?: Maybe<Array<Maybe<ICity>>>;
|
@@ -797,6 +793,7 @@ export type IConfigurationOverrides = {
|
|
797
793
|
overrideIdentifier?: Maybe<Scalars['String']['output']>;
|
798
794
|
resource?: Maybe<Scalars['URI']['output']>;
|
799
795
|
};
|
796
|
+
/** Input type for configuration overrides, providing flexibility for user-specific or external modifications. */
|
800
797
|
export type IConfigurationOverridesInput = {
|
801
798
|
externalResource?: InputMaybe<Scalars['URI']['input']>;
|
802
799
|
overrideIdentifier?: InputMaybe<Scalars['String']['input']>;
|
@@ -1347,6 +1344,17 @@ export type ILinkedIdentity = {
|
|
1347
1344
|
provider?: Maybe<Scalars['String']['output']>;
|
1348
1345
|
user_id?: Maybe<Scalars['String']['output']>;
|
1349
1346
|
};
|
1347
|
+
export type ILoginDeviceCredential = {
|
1348
|
+
__typename?: 'LoginDeviceCredential';
|
1349
|
+
client_id?: Maybe<Scalars['String']['output']>;
|
1350
|
+
device_Id?: Maybe<Scalars['String']['output']>;
|
1351
|
+
device_name?: Maybe<Scalars['String']['output']>;
|
1352
|
+
id?: Maybe<Scalars['String']['output']>;
|
1353
|
+
last_ip?: Maybe<Scalars['String']['output']>;
|
1354
|
+
last_used?: Maybe<Scalars['String']['output']>;
|
1355
|
+
type?: Maybe<Scalars['AnyObject']['output']>;
|
1356
|
+
user_id?: Maybe<Scalars['String']['output']>;
|
1357
|
+
};
|
1350
1358
|
export type ILoginError = {
|
1351
1359
|
__typename?: 'LoginError';
|
1352
1360
|
error?: Maybe<Scalars['AnyObject']['output']>;
|
@@ -1449,6 +1457,7 @@ export declare enum IMoleculerServiceName {
|
|
1449
1457
|
PaypalService = "PaypalService",
|
1450
1458
|
StripeService = "StripeService",
|
1451
1459
|
UserBroadcaster = "UserBroadcaster",
|
1460
|
+
UserService = "UserService",
|
1452
1461
|
Dummy = "dummy",
|
1453
1462
|
/** Actions */
|
1454
1463
|
OnConfigurationUpdated = "onConfigurationUpdated"
|
@@ -1536,6 +1545,10 @@ export type IMutation = {
|
|
1536
1545
|
updateConfiguration?: Maybe<Scalars['Boolean']['output']>;
|
1537
1546
|
updateConfigurationPolicyValue?: Maybe<Scalars['Boolean']['output']>;
|
1538
1547
|
updateConfigurationPolicyValueByUri?: Maybe<Scalars['Boolean']['output']>;
|
1548
|
+
/**
|
1549
|
+
* Updates the configuration value for a specified key, with optional overrides.
|
1550
|
+
* This mutation allows the modification of configuration values associated with specific targets (e.g., organization or account settings).
|
1551
|
+
*/
|
1539
1552
|
updateConfigurationValue?: Maybe<IConfiguration>;
|
1540
1553
|
updateConfigurationValueByUri?: Maybe<Scalars['Boolean']['output']>;
|
1541
1554
|
updateContext?: Maybe<Scalars['Boolean']['output']>;
|
@@ -3244,6 +3257,7 @@ export type IUserContext = {
|
|
3244
3257
|
identity?: Maybe<Scalars['AnyObject']['output']>;
|
3245
3258
|
namespace?: Maybe<Scalars['String']['output']>;
|
3246
3259
|
orgId?: Maybe<Scalars['String']['output']>;
|
3260
|
+
orgName?: Maybe<Scalars['String']['output']>;
|
3247
3261
|
orgRole?: Maybe<Scalars['String']['output']>;
|
3248
3262
|
orgSettingUri?: Maybe<Scalars['URI']['output']>;
|
3249
3263
|
organization: IOrganization;
|
@@ -3339,6 +3353,7 @@ export type IUserProfile = IIAuth0Token & IIAuth0User & IIAuth0UserProfile & {
|
|
3339
3353
|
nonce?: Maybe<Scalars['String']['output']>;
|
3340
3354
|
phone_number?: Maybe<Scalars['String']['output']>;
|
3341
3355
|
picture: Scalars['String']['output'];
|
3356
|
+
provider?: Maybe<Scalars['String']['output']>;
|
3342
3357
|
sub?: Maybe<Scalars['String']['output']>;
|
3343
3358
|
updated_at: Scalars['String']['output'];
|
3344
3359
|
user_id: Scalars['String']['output'];
|
@@ -3355,7 +3370,29 @@ export type IUserRole = IIConfigurationModel & {
|
|
3355
3370
|
target?: Maybe<Scalars['Int']['output']>;
|
3356
3371
|
};
|
3357
3372
|
export declare enum IUserServiceAction {
|
3358
|
-
|
3373
|
+
DeleteUserAuthorizedDevice = "deleteUserAuthorizedDevice",
|
3374
|
+
FetchAuth0User = "fetchAuth0User",
|
3375
|
+
FetchUserAuthSessions = "fetchUserAuthSessions",
|
3376
|
+
FetchUserAuthorizedDevices = "fetchUserAuthorizedDevices",
|
3377
|
+
GetIdentity = "getIdentity",
|
3378
|
+
GetProfile = "getProfile",
|
3379
|
+
GetUserInfo = "getUserInfo",
|
3380
|
+
InitializeAuthorizationCodeFlow = "initializeAuthorizationCodeFlow",
|
3381
|
+
InitializePopupIntegrationAuthorization = "initializePopupIntegrationAuthorization",
|
3382
|
+
InitializeUserSession = "initializeUserSession",
|
3383
|
+
InitiatePasswordResetProcess = "initiatePasswordResetProcess",
|
3384
|
+
OnEmailVerified = "onEmailVerified",
|
3385
|
+
RegisterAuth0UserAndLink = "registerAuth0UserAndLink",
|
3386
|
+
RemoveUserAuthIntegration = "removeUserAuthIntegration",
|
3387
|
+
RemoveUserAuthSession = "removeUserAuthSession",
|
3388
|
+
RenewAuthToken = "renewAuthToken",
|
3389
|
+
RenewUserAuthIntegrationToken = "renewUserAuthIntegrationToken",
|
3390
|
+
ResetUserPassword = "resetUserPassword",
|
3391
|
+
SendEmailVerificationCode = "sendEmailVerificationCode",
|
3392
|
+
UpdateAuth0UserPassword = "updateAuth0UserPassword",
|
3393
|
+
ValidateEmailVerificationCode = "validateEmailVerificationCode",
|
3394
|
+
ValidatePasswordResetOtp = "validatePasswordResetOtp",
|
3395
|
+
VerifyUserPassword = "verifyUserPassword"
|
3359
3396
|
}
|
3360
3397
|
export type IUserSession = {
|
3361
3398
|
__typename?: 'UserSession';
|
@@ -7525,7 +7562,7 @@ export declare function useGetUserOrganizationsListQuery(baseOptions?: Apollo.Qu
|
|
7525
7562
|
export declare function useGetUserOrganizationsListLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetUserOrganizationsListQuery, IGetUserOrganizationsListQueryVariables>): Apollo.LazyQueryResultTuple<IGetUserOrganizationsListQuery, Exact<{
|
7526
7563
|
[key: string]: never;
|
7527
7564
|
}>>;
|
7528
|
-
export declare function useGetUserOrganizationsListSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetUserOrganizationsListQuery, IGetUserOrganizationsListQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserOrganizationsListQuery, Exact<{
|
7565
|
+
export declare function useGetUserOrganizationsListSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetUserOrganizationsListQuery, IGetUserOrganizationsListQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserOrganizationsListQuery, Exact<{
|
7529
7566
|
[key: string]: never;
|
7530
7567
|
}>>;
|
7531
7568
|
export type GetUserOrganizationsListQueryHookResult = ReturnType<typeof useGetUserOrganizationsListQuery>;
|
@@ -7560,7 +7597,7 @@ export declare function useDecodeOrganizationInvitationQuery(baseOptions: Apollo
|
|
7560
7597
|
export declare function useDecodeOrganizationInvitationLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IDecodeOrganizationInvitationQuery, IDecodeOrganizationInvitationQueryVariables>): Apollo.LazyQueryResultTuple<IDecodeOrganizationInvitationQuery, Exact<{
|
7561
7598
|
token: Scalars["String"]["input"];
|
7562
7599
|
}>>;
|
7563
|
-
export declare function useDecodeOrganizationInvitationSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IDecodeOrganizationInvitationQuery, IDecodeOrganizationInvitationQueryVariables>): Apollo.UseSuspenseQueryResult<IDecodeOrganizationInvitationQuery, Exact<{
|
7600
|
+
export declare function useDecodeOrganizationInvitationSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IDecodeOrganizationInvitationQuery, IDecodeOrganizationInvitationQueryVariables>): Apollo.UseSuspenseQueryResult<IDecodeOrganizationInvitationQuery, Exact<{
|
7564
7601
|
token: Scalars["String"]["input"];
|
7565
7602
|
}>>;
|
7566
7603
|
export type DecodeOrganizationInvitationQueryHookResult = ReturnType<typeof useDecodeOrganizationInvitationQuery>;
|
@@ -7595,7 +7632,7 @@ export declare function useDecodeOrganizationSharedTokenQuery(baseOptions: Apoll
|
|
7595
7632
|
export declare function useDecodeOrganizationSharedTokenLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IDecodeOrganizationSharedTokenQuery, IDecodeOrganizationSharedTokenQueryVariables>): Apollo.LazyQueryResultTuple<IDecodeOrganizationSharedTokenQuery, Exact<{
|
7596
7633
|
token: Scalars["String"]["input"];
|
7597
7634
|
}>>;
|
7598
|
-
export declare function useDecodeOrganizationSharedTokenSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IDecodeOrganizationSharedTokenQuery, IDecodeOrganizationSharedTokenQueryVariables>): Apollo.UseSuspenseQueryResult<IDecodeOrganizationSharedTokenQuery, Exact<{
|
7635
|
+
export declare function useDecodeOrganizationSharedTokenSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IDecodeOrganizationSharedTokenQuery, IDecodeOrganizationSharedTokenQueryVariables>): Apollo.UseSuspenseQueryResult<IDecodeOrganizationSharedTokenQuery, Exact<{
|
7599
7636
|
token: Scalars["String"]["input"];
|
7600
7637
|
}>>;
|
7601
7638
|
export type DecodeOrganizationSharedTokenQueryHookResult = ReturnType<typeof useDecodeOrganizationSharedTokenQuery>;
|
@@ -7625,7 +7662,7 @@ export declare function useGetAccountsQuery(baseOptions?: Apollo.QueryHookOption
|
|
7625
7662
|
export declare function useGetAccountsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetAccountsQuery, IGetAccountsQueryVariables>): Apollo.LazyQueryResultTuple<IGetAccountsQuery, Exact<{
|
7626
7663
|
where?: InputMaybe<IUserAccountWhere>;
|
7627
7664
|
}>>;
|
7628
|
-
export declare function useGetAccountsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetAccountsQuery, IGetAccountsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetAccountsQuery, Exact<{
|
7665
|
+
export declare function useGetAccountsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetAccountsQuery, IGetAccountsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetAccountsQuery, Exact<{
|
7629
7666
|
where?: InputMaybe<IUserAccountWhere>;
|
7630
7667
|
}>>;
|
7631
7668
|
export type GetAccountsQueryHookResult = ReturnType<typeof useGetAccountsQuery>;
|
@@ -7655,7 +7692,7 @@ export declare function useGetAllCountriesQuery(baseOptions?: Apollo.QueryHookOp
|
|
7655
7692
|
export declare function useGetAllCountriesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetAllCountriesQuery, IGetAllCountriesQueryVariables>): Apollo.LazyQueryResultTuple<IGetAllCountriesQuery, Exact<{
|
7656
7693
|
criteria?: InputMaybe<Scalars["JSON"]["input"]>;
|
7657
7694
|
}>>;
|
7658
|
-
export declare function useGetAllCountriesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetAllCountriesQuery, IGetAllCountriesQueryVariables>): Apollo.UseSuspenseQueryResult<IGetAllCountriesQuery, Exact<{
|
7695
|
+
export declare function useGetAllCountriesSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetAllCountriesQuery, IGetAllCountriesQueryVariables>): Apollo.UseSuspenseQueryResult<IGetAllCountriesQuery, Exact<{
|
7659
7696
|
criteria?: InputMaybe<Scalars["JSON"]["input"]>;
|
7660
7697
|
}>>;
|
7661
7698
|
export type GetAllCountriesQueryHookResult = ReturnType<typeof useGetAllCountriesQuery>;
|
@@ -7684,7 +7721,7 @@ export declare function useGetManageableOrganizationsQuery(baseOptions?: Apollo.
|
|
7684
7721
|
export declare function useGetManageableOrganizationsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetManageableOrganizationsQuery, IGetManageableOrganizationsQueryVariables>): Apollo.LazyQueryResultTuple<IGetManageableOrganizationsQuery, Exact<{
|
7685
7722
|
[key: string]: never;
|
7686
7723
|
}>>;
|
7687
|
-
export declare function useGetManageableOrganizationsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetManageableOrganizationsQuery, IGetManageableOrganizationsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetManageableOrganizationsQuery, Exact<{
|
7724
|
+
export declare function useGetManageableOrganizationsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetManageableOrganizationsQuery, IGetManageableOrganizationsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetManageableOrganizationsQuery, Exact<{
|
7688
7725
|
[key: string]: never;
|
7689
7726
|
}>>;
|
7690
7727
|
export type GetManageableOrganizationsQueryHookResult = ReturnType<typeof useGetManageableOrganizationsQuery>;
|
@@ -7720,7 +7757,7 @@ export declare function useGetOrgInvitationMembersLazyQuery(baseOptions?: Apollo
|
|
7720
7757
|
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
7721
7758
|
orgName?: InputMaybe<Scalars["String"]["input"]>;
|
7722
7759
|
}>>;
|
7723
|
-
export declare function useGetOrgInvitationMembersSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetOrgInvitationMembersQuery, IGetOrgInvitationMembersQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgInvitationMembersQuery, Exact<{
|
7760
|
+
export declare function useGetOrgInvitationMembersSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetOrgInvitationMembersQuery, IGetOrgInvitationMembersQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgInvitationMembersQuery, Exact<{
|
7724
7761
|
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
7725
7762
|
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
7726
7763
|
orgName?: InputMaybe<Scalars["String"]["input"]>;
|
@@ -7757,7 +7794,7 @@ export declare function useGetOrganizationInvitationQuery(baseOptions: Apollo.Qu
|
|
7757
7794
|
export declare function useGetOrganizationInvitationLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrganizationInvitationQuery, IGetOrganizationInvitationQueryVariables>): Apollo.LazyQueryResultTuple<IGetOrganizationInvitationQuery, Exact<{
|
7758
7795
|
id: Scalars["ID"]["input"];
|
7759
7796
|
}>>;
|
7760
|
-
export declare function useGetOrganizationInvitationSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetOrganizationInvitationQuery, IGetOrganizationInvitationQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrganizationInvitationQuery, Exact<{
|
7797
|
+
export declare function useGetOrganizationInvitationSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetOrganizationInvitationQuery, IGetOrganizationInvitationQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrganizationInvitationQuery, Exact<{
|
7761
7798
|
id: Scalars["ID"]["input"];
|
7762
7799
|
}>>;
|
7763
7800
|
export type GetOrganizationInvitationQueryHookResult = ReturnType<typeof useGetOrganizationInvitationQuery>;
|
@@ -7787,7 +7824,7 @@ export declare function useGetOrgTeamInvitationsQuery(baseOptions?: Apollo.Query
|
|
7787
7824
|
export declare function useGetOrgTeamInvitationsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrgTeamInvitationsQuery, IGetOrgTeamInvitationsQueryVariables>): Apollo.LazyQueryResultTuple<IGetOrgTeamInvitationsQuery, Exact<{
|
7788
7825
|
teamId?: InputMaybe<Scalars["String"]["input"]>;
|
7789
7826
|
}>>;
|
7790
|
-
export declare function useGetOrgTeamInvitationsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetOrgTeamInvitationsQuery, IGetOrgTeamInvitationsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgTeamInvitationsQuery, Exact<{
|
7827
|
+
export declare function useGetOrgTeamInvitationsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetOrgTeamInvitationsQuery, IGetOrgTeamInvitationsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgTeamInvitationsQuery, Exact<{
|
7791
7828
|
teamId?: InputMaybe<Scalars["String"]["input"]>;
|
7792
7829
|
}>>;
|
7793
7830
|
export type GetOrgTeamInvitationsQueryHookResult = ReturnType<typeof useGetOrgTeamInvitationsQuery>;
|
@@ -7817,7 +7854,7 @@ export declare function useGetOrgUserQuery(baseOptions?: Apollo.QueryHookOptions
|
|
7817
7854
|
export declare function useGetOrgUserLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrgUserQuery, IGetOrgUserQueryVariables>): Apollo.LazyQueryResultTuple<IGetOrgUserQuery, Exact<{
|
7818
7855
|
userId?: InputMaybe<Scalars["String"]["input"]>;
|
7819
7856
|
}>>;
|
7820
|
-
export declare function useGetOrgUserSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetOrgUserQuery, IGetOrgUserQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgUserQuery, Exact<{
|
7857
|
+
export declare function useGetOrgUserSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetOrgUserQuery, IGetOrgUserQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgUserQuery, Exact<{
|
7821
7858
|
userId?: InputMaybe<Scalars["String"]["input"]>;
|
7822
7859
|
}>>;
|
7823
7860
|
export type GetOrgUserQueryHookResult = ReturnType<typeof useGetOrgUserQuery>;
|
@@ -7852,7 +7889,7 @@ export declare function useGetOrganizationMembersWithNameQuery(baseOptions: Apol
|
|
7852
7889
|
export declare function useGetOrganizationMembersWithNameLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrganizationMembersWithNameQuery, IGetOrganizationMembersWithNameQueryVariables>): Apollo.LazyQueryResultTuple<IGetOrganizationMembersWithNameQuery, Exact<{
|
7853
7890
|
where: IOrgDetailWhere;
|
7854
7891
|
}>>;
|
7855
|
-
export declare function useGetOrganizationMembersWithNameSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetOrganizationMembersWithNameQuery, IGetOrganizationMembersWithNameQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrganizationMembersWithNameQuery, Exact<{
|
7892
|
+
export declare function useGetOrganizationMembersWithNameSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetOrganizationMembersWithNameQuery, IGetOrganizationMembersWithNameQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrganizationMembersWithNameQuery, Exact<{
|
7856
7893
|
where: IOrgDetailWhere;
|
7857
7894
|
}>>;
|
7858
7895
|
export type GetOrganizationMembersWithNameQueryHookResult = ReturnType<typeof useGetOrganizationMembersWithNameQuery>;
|
@@ -7882,7 +7919,7 @@ export declare function useGetOrganizationTeamsQuery(baseOptions?: Apollo.QueryH
|
|
7882
7919
|
export declare function useGetOrganizationTeamsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrganizationTeamsQuery, IGetOrganizationTeamsQueryVariables>): Apollo.LazyQueryResultTuple<IGetOrganizationTeamsQuery, Exact<{
|
7883
7920
|
orgName?: InputMaybe<Scalars["String"]["input"]>;
|
7884
7921
|
}>>;
|
7885
|
-
export declare function useGetOrganizationTeamsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetOrganizationTeamsQuery, IGetOrganizationTeamsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrganizationTeamsQuery, Exact<{
|
7922
|
+
export declare function useGetOrganizationTeamsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetOrganizationTeamsQuery, IGetOrganizationTeamsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrganizationTeamsQuery, Exact<{
|
7886
7923
|
orgName?: InputMaybe<Scalars["String"]["input"]>;
|
7887
7924
|
}>>;
|
7888
7925
|
export type GetOrganizationTeamsQueryHookResult = ReturnType<typeof useGetOrganizationTeamsQuery>;
|
@@ -7920,7 +7957,7 @@ export declare function useGetTeamLazyQuery(baseOptions?: Apollo.LazyQueryHookOp
|
|
7920
7957
|
orgName: Scalars["String"]["input"];
|
7921
7958
|
teamName: Scalars["String"]["input"];
|
7922
7959
|
}>>;
|
7923
|
-
export declare function useGetTeamSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetTeamQuery, IGetTeamQueryVariables>): Apollo.UseSuspenseQueryResult<IGetTeamQuery, Exact<{
|
7960
|
+
export declare function useGetTeamSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetTeamQuery, IGetTeamQueryVariables>): Apollo.UseSuspenseQueryResult<IGetTeamQuery, Exact<{
|
7924
7961
|
orgName: Scalars["String"]["input"];
|
7925
7962
|
teamName: Scalars["String"]["input"];
|
7926
7963
|
}>>;
|
@@ -7959,7 +7996,7 @@ export declare function useGetTeamByNameLazyQuery(baseOptions?: Apollo.LazyQuery
|
|
7959
7996
|
orgName: Scalars["String"]["input"];
|
7960
7997
|
teamName: Scalars["String"]["input"];
|
7961
7998
|
}>>;
|
7962
|
-
export declare function useGetTeamByNameSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetTeamByNameQuery, IGetTeamByNameQueryVariables>): Apollo.UseSuspenseQueryResult<IGetTeamByNameQuery, Exact<{
|
7999
|
+
export declare function useGetTeamByNameSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetTeamByNameQuery, IGetTeamByNameQueryVariables>): Apollo.UseSuspenseQueryResult<IGetTeamByNameQuery, Exact<{
|
7963
8000
|
orgName: Scalars["String"]["input"];
|
7964
8001
|
teamName: Scalars["String"]["input"];
|
7965
8002
|
}>>;
|
@@ -7995,7 +8032,7 @@ export declare function useGetUserAccountQuery(baseOptions: Apollo.QueryHookOpti
|
|
7995
8032
|
export declare function useGetUserAccountLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetUserAccountQuery, IGetUserAccountQueryVariables>): Apollo.LazyQueryResultTuple<IGetUserAccountQuery, Exact<{
|
7996
8033
|
userId: Scalars["String"]["input"];
|
7997
8034
|
}>>;
|
7998
|
-
export declare function useGetUserAccountSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetUserAccountQuery, IGetUserAccountQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserAccountQuery, Exact<{
|
8035
|
+
export declare function useGetUserAccountSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetUserAccountQuery, IGetUserAccountQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserAccountQuery, Exact<{
|
7999
8036
|
userId: Scalars["String"]["input"];
|
8000
8037
|
}>>;
|
8001
8038
|
export type GetUserAccountQueryHookResult = ReturnType<typeof useGetUserAccountQuery>;
|
@@ -8030,7 +8067,7 @@ export declare function useGetUserAccountByAuth0IdQuery(baseOptions: Apollo.Quer
|
|
8030
8067
|
export declare function useGetUserAccountByAuth0IdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetUserAccountByAuth0IdQuery, IGetUserAccountByAuth0IdQueryVariables>): Apollo.LazyQueryResultTuple<IGetUserAccountByAuth0IdQuery, Exact<{
|
8031
8068
|
userAuth0Id: Scalars["String"]["input"];
|
8032
8069
|
}>>;
|
8033
|
-
export declare function useGetUserAccountByAuth0IdSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetUserAccountByAuth0IdQuery, IGetUserAccountByAuth0IdQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserAccountByAuth0IdQuery, Exact<{
|
8070
|
+
export declare function useGetUserAccountByAuth0IdSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetUserAccountByAuth0IdQuery, IGetUserAccountByAuth0IdQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserAccountByAuth0IdQuery, Exact<{
|
8034
8071
|
userAuth0Id: Scalars["String"]["input"];
|
8035
8072
|
}>>;
|
8036
8073
|
export type GetUserAccountByAuth0IdQueryHookResult = ReturnType<typeof useGetUserAccountByAuth0IdQuery>;
|
@@ -8063,7 +8100,7 @@ export declare function useGetUserTokenDetailsLazyQuery(baseOptions?: Apollo.Laz
|
|
8063
8100
|
userId?: InputMaybe<Scalars["String"]["input"]>;
|
8064
8101
|
type?: InputMaybe<ITokenTypesEnum>;
|
8065
8102
|
}>>;
|
8066
|
-
export declare function useGetUserTokenDetailsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetUserTokenDetailsQuery, IGetUserTokenDetailsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserTokenDetailsQuery, Exact<{
|
8103
|
+
export declare function useGetUserTokenDetailsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetUserTokenDetailsQuery, IGetUserTokenDetailsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserTokenDetailsQuery, Exact<{
|
8067
8104
|
userId?: InputMaybe<Scalars["String"]["input"]>;
|
8068
8105
|
type?: InputMaybe<ITokenTypesEnum>;
|
8069
8106
|
}>>;
|
@@ -8094,7 +8131,7 @@ export declare function useGetUserOrganizationsQuery(baseOptions?: Apollo.QueryH
|
|
8094
8131
|
export declare function useGetUserOrganizationsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetUserOrganizationsQuery, IGetUserOrganizationsQueryVariables>): Apollo.LazyQueryResultTuple<IGetUserOrganizationsQuery, Exact<{
|
8095
8132
|
userId?: InputMaybe<Scalars["String"]["input"]>;
|
8096
8133
|
}>>;
|
8097
|
-
export declare function useGetUserOrganizationsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetUserOrganizationsQuery, IGetUserOrganizationsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserOrganizationsQuery, Exact<{
|
8134
|
+
export declare function useGetUserOrganizationsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetUserOrganizationsQuery, IGetUserOrganizationsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserOrganizationsQuery, Exact<{
|
8098
8135
|
userId?: InputMaybe<Scalars["String"]["input"]>;
|
8099
8136
|
}>>;
|
8100
8137
|
export type GetUserOrganizationsQueryHookResult = ReturnType<typeof useGetUserOrganizationsQuery>;
|
@@ -8124,7 +8161,7 @@ export declare function useGetUserOrganizationsWithRoleQuery(baseOptions?: Apoll
|
|
8124
8161
|
export declare function useGetUserOrganizationsWithRoleLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetUserOrganizationsWithRoleQuery, IGetUserOrganizationsWithRoleQueryVariables>): Apollo.LazyQueryResultTuple<IGetUserOrganizationsWithRoleQuery, Exact<{
|
8125
8162
|
userId?: InputMaybe<Scalars["String"]["input"]>;
|
8126
8163
|
}>>;
|
8127
|
-
export declare function useGetUserOrganizationsWithRoleSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetUserOrganizationsWithRoleQuery, IGetUserOrganizationsWithRoleQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserOrganizationsWithRoleQuery, Exact<{
|
8164
|
+
export declare function useGetUserOrganizationsWithRoleSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetUserOrganizationsWithRoleQuery, IGetUserOrganizationsWithRoleQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserOrganizationsWithRoleQuery, Exact<{
|
8128
8165
|
userId?: InputMaybe<Scalars["String"]["input"]>;
|
8129
8166
|
}>>;
|
8130
8167
|
export type GetUserOrganizationsWithRoleQueryHookResult = ReturnType<typeof useGetUserOrganizationsWithRoleQuery>;
|
@@ -8163,7 +8200,7 @@ export declare function useGetOrganizationMembersLazyQuery(baseOptions?: Apollo.
|
|
8163
8200
|
orgName?: InputMaybe<Scalars["String"]["input"]>;
|
8164
8201
|
criteria?: InputMaybe<Scalars["AnyObject"]["input"]>;
|
8165
8202
|
}>>;
|
8166
|
-
export declare function useGetOrganizationMembersSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetOrganizationMembersQuery, IGetOrganizationMembersQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrganizationMembersQuery, Exact<{
|
8203
|
+
export declare function useGetOrganizationMembersSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetOrganizationMembersQuery, IGetOrganizationMembersQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrganizationMembersQuery, Exact<{
|
8167
8204
|
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
8168
8205
|
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
8169
8206
|
orgName?: InputMaybe<Scalars["String"]["input"]>;
|
@@ -8195,7 +8232,7 @@ export declare function useOrganizationsQuery(baseOptions?: Apollo.QueryHookOpti
|
|
8195
8232
|
export declare function useOrganizationsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IOrganizationsQuery, IOrganizationsQueryVariables>): Apollo.LazyQueryResultTuple<IOrganizationsQuery, Exact<{
|
8196
8233
|
[key: string]: never;
|
8197
8234
|
}>>;
|
8198
|
-
export declare function useOrganizationsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IOrganizationsQuery, IOrganizationsQueryVariables>): Apollo.UseSuspenseQueryResult<IOrganizationsQuery, Exact<{
|
8235
|
+
export declare function useOrganizationsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IOrganizationsQuery, IOrganizationsQueryVariables>): Apollo.UseSuspenseQueryResult<IOrganizationsQuery, Exact<{
|
8199
8236
|
[key: string]: never;
|
8200
8237
|
}>>;
|
8201
8238
|
export type OrganizationsQueryHookResult = ReturnType<typeof useOrganizationsQuery>;
|
@@ -8230,7 +8267,7 @@ export declare function useTeamQuery(baseOptions: Apollo.QueryHookOptions<ITeamQ
|
|
8230
8267
|
export declare function useTeamLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ITeamQuery, ITeamQueryVariables>): Apollo.LazyQueryResultTuple<ITeamQuery, Exact<{
|
8231
8268
|
teamId: Scalars["ID"]["input"];
|
8232
8269
|
}>>;
|
8233
|
-
export declare function useTeamSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ITeamQuery, ITeamQueryVariables>): Apollo.UseSuspenseQueryResult<ITeamQuery, Exact<{
|
8270
|
+
export declare function useTeamSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<ITeamQuery, ITeamQueryVariables>): Apollo.UseSuspenseQueryResult<ITeamQuery, Exact<{
|
8234
8271
|
teamId: Scalars["ID"]["input"];
|
8235
8272
|
}>>;
|
8236
8273
|
export type TeamQueryHookResult = ReturnType<typeof useTeamQuery>;
|
@@ -8259,7 +8296,7 @@ export declare function useTeamsQuery(baseOptions?: Apollo.QueryHookOptions<ITea
|
|
8259
8296
|
export declare function useTeamsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ITeamsQuery, ITeamsQueryVariables>): Apollo.LazyQueryResultTuple<ITeamsQuery, Exact<{
|
8260
8297
|
[key: string]: never;
|
8261
8298
|
}>>;
|
8262
|
-
export declare function useTeamsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ITeamsQuery, ITeamsQueryVariables>): Apollo.UseSuspenseQueryResult<ITeamsQuery, Exact<{
|
8299
|
+
export declare function useTeamsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<ITeamsQuery, ITeamsQueryVariables>): Apollo.UseSuspenseQueryResult<ITeamsQuery, Exact<{
|
8263
8300
|
[key: string]: never;
|
8264
8301
|
}>>;
|
8265
8302
|
export type TeamsQueryHookResult = ReturnType<typeof useTeamsQuery>;
|
@@ -8289,7 +8326,7 @@ export declare function useGetViewerSettingsQuery(baseOptions?: Apollo.QueryHook
|
|
8289
8326
|
export declare function useGetViewerSettingsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetViewerSettingsQuery, IGetViewerSettingsQueryVariables>): Apollo.LazyQueryResultTuple<IGetViewerSettingsQuery, Exact<{
|
8290
8327
|
input?: InputMaybe<IViewerSettingsInput>;
|
8291
8328
|
}>>;
|
8292
|
-
export declare function useGetViewerSettingsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetViewerSettingsQuery, IGetViewerSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetViewerSettingsQuery, Exact<{
|
8329
|
+
export declare function useGetViewerSettingsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetViewerSettingsQuery, IGetViewerSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetViewerSettingsQuery, Exact<{
|
8293
8330
|
input?: InputMaybe<IViewerSettingsInput>;
|
8294
8331
|
}>>;
|
8295
8332
|
export type GetViewerSettingsQueryHookResult = ReturnType<typeof useGetViewerSettingsQuery>;
|
@@ -8319,7 +8356,7 @@ export declare function useGetAccountsViewerSettingsQuery(baseOptions?: Apollo.Q
|
|
8319
8356
|
export declare function useGetAccountsViewerSettingsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetAccountsViewerSettingsQuery, IGetAccountsViewerSettingsQueryVariables>): Apollo.LazyQueryResultTuple<IGetAccountsViewerSettingsQuery, Exact<{
|
8320
8357
|
input?: InputMaybe<IViewerSettingsInput>;
|
8321
8358
|
}>>;
|
8322
|
-
export declare function useGetAccountsViewerSettingsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetAccountsViewerSettingsQuery, IGetAccountsViewerSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetAccountsViewerSettingsQuery, Exact<{
|
8359
|
+
export declare function useGetAccountsViewerSettingsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetAccountsViewerSettingsQuery, IGetAccountsViewerSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetAccountsViewerSettingsQuery, Exact<{
|
8323
8360
|
input?: InputMaybe<IViewerSettingsInput>;
|
8324
8361
|
}>>;
|
8325
8362
|
export type GetAccountsViewerSettingsQueryHookResult = ReturnType<typeof useGetAccountsViewerSettingsQuery>;
|
@@ -8354,7 +8391,7 @@ export declare function useGetAccountsApplicationPoliciesQuery(baseOptions: Apol
|
|
8354
8391
|
export declare function useGetAccountsApplicationPoliciesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetAccountsApplicationPoliciesQuery, IGetAccountsApplicationPoliciesQueryVariables>): Apollo.LazyQueryResultTuple<IGetAccountsApplicationPoliciesQuery, Exact<{
|
8355
8392
|
input: IViewerPoliciesInput;
|
8356
8393
|
}>>;
|
8357
|
-
export declare function useGetAccountsApplicationPoliciesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetAccountsApplicationPoliciesQuery, IGetAccountsApplicationPoliciesQueryVariables>): Apollo.UseSuspenseQueryResult<IGetAccountsApplicationPoliciesQuery, Exact<{
|
8394
|
+
export declare function useGetAccountsApplicationPoliciesSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetAccountsApplicationPoliciesQuery, IGetAccountsApplicationPoliciesQueryVariables>): Apollo.UseSuspenseQueryResult<IGetAccountsApplicationPoliciesQuery, Exact<{
|
8358
8395
|
input: IViewerPoliciesInput;
|
8359
8396
|
}>>;
|
8360
8397
|
export type GetAccountsApplicationPoliciesQueryHookResult = ReturnType<typeof useGetAccountsApplicationPoliciesQuery>;
|
@@ -8384,7 +8421,7 @@ export declare function useGetOrgMembersWithRolesUnsecuredQuery(baseOptions?: Ap
|
|
8384
8421
|
export declare function useGetOrgMembersWithRolesUnsecuredLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrgMembersWithRolesUnsecuredQuery, IGetOrgMembersWithRolesUnsecuredQueryVariables>): Apollo.LazyQueryResultTuple<IGetOrgMembersWithRolesUnsecuredQuery, Exact<{
|
8385
8422
|
name?: InputMaybe<Scalars["String"]["input"]>;
|
8386
8423
|
}>>;
|
8387
|
-
export declare function useGetOrgMembersWithRolesUnsecuredSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetOrgMembersWithRolesUnsecuredQuery, IGetOrgMembersWithRolesUnsecuredQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgMembersWithRolesUnsecuredQuery, Exact<{
|
8424
|
+
export declare function useGetOrgMembersWithRolesUnsecuredSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetOrgMembersWithRolesUnsecuredQuery, IGetOrgMembersWithRolesUnsecuredQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgMembersWithRolesUnsecuredQuery, Exact<{
|
8388
8425
|
name?: InputMaybe<Scalars["String"]["input"]>;
|
8389
8426
|
}>>;
|
8390
8427
|
export type GetOrgMembersWithRolesUnsecuredQueryHookResult = ReturnType<typeof useGetOrgMembersWithRolesUnsecuredQuery>;
|
@@ -8414,7 +8451,7 @@ export declare function useGetOrgMembersWithRolesQuery(baseOptions?: Apollo.Quer
|
|
8414
8451
|
export declare function useGetOrgMembersWithRolesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrgMembersWithRolesQuery, IGetOrgMembersWithRolesQueryVariables>): Apollo.LazyQueryResultTuple<IGetOrgMembersWithRolesQuery, Exact<{
|
8415
8452
|
name?: InputMaybe<Scalars["String"]["input"]>;
|
8416
8453
|
}>>;
|
8417
|
-
export declare function useGetOrgMembersWithRolesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetOrgMembersWithRolesQuery, IGetOrgMembersWithRolesQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgMembersWithRolesQuery, Exact<{
|
8454
|
+
export declare function useGetOrgMembersWithRolesSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetOrgMembersWithRolesQuery, IGetOrgMembersWithRolesQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgMembersWithRolesQuery, Exact<{
|
8418
8455
|
name?: InputMaybe<Scalars["String"]["input"]>;
|
8419
8456
|
}>>;
|
8420
8457
|
export type GetOrgMembersWithRolesQueryHookResult = ReturnType<typeof useGetOrgMembersWithRolesQuery>;
|
@@ -8444,7 +8481,7 @@ export declare function useGetUsersQuery(baseOptions?: Apollo.QueryHookOptions<I
|
|
8444
8481
|
export declare function useGetUsersLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetUsersQuery, IGetUsersQueryVariables>): Apollo.LazyQueryResultTuple<IGetUsersQuery, Exact<{
|
8445
8482
|
where?: InputMaybe<IUserAccountWhere>;
|
8446
8483
|
}>>;
|
8447
|
-
export declare function useGetUsersSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetUsersQuery, IGetUsersQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUsersQuery, Exact<{
|
8484
|
+
export declare function useGetUsersSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetUsersQuery, IGetUsersQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUsersQuery, Exact<{
|
8448
8485
|
where?: InputMaybe<IUserAccountWhere>;
|
8449
8486
|
}>>;
|
8450
8487
|
export type GetUsersQueryHookResult = ReturnType<typeof useGetUsersQuery>;
|
@@ -8479,7 +8516,7 @@ export declare function useFilterIntegrationConfigurationQuery(baseOptions: Apol
|
|
8479
8516
|
export declare function useFilterIntegrationConfigurationLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFilterIntegrationConfigurationQuery, IFilterIntegrationConfigurationQueryVariables>): Apollo.LazyQueryResultTuple<IFilterIntegrationConfigurationQuery, Exact<{
|
8480
8517
|
filter: IIntegrationConfigurationFilterInput;
|
8481
8518
|
}>>;
|
8482
|
-
export declare function useFilterIntegrationConfigurationSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IFilterIntegrationConfigurationQuery, IFilterIntegrationConfigurationQueryVariables>): Apollo.UseSuspenseQueryResult<IFilterIntegrationConfigurationQuery, Exact<{
|
8519
|
+
export declare function useFilterIntegrationConfigurationSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IFilterIntegrationConfigurationQuery, IFilterIntegrationConfigurationQueryVariables>): Apollo.UseSuspenseQueryResult<IFilterIntegrationConfigurationQuery, Exact<{
|
8483
8520
|
filter: IIntegrationConfigurationFilterInput;
|
8484
8521
|
}>>;
|
8485
8522
|
export type FilterIntegrationConfigurationQueryHookResult = ReturnType<typeof useFilterIntegrationConfigurationQuery>;
|
@@ -8724,7 +8761,7 @@ export declare function useGetApplicationPolicyQuery(baseOptions?: Apollo.QueryH
|
|
8724
8761
|
export declare function useGetApplicationPolicyLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetApplicationPolicyQuery, IGetApplicationPolicyQueryVariables>): Apollo.LazyQueryResultTuple<IGetApplicationPolicyQuery, Exact<{
|
8725
8762
|
input?: InputMaybe<Array<InputMaybe<IConfigurationInput>> | InputMaybe<IConfigurationInput>>;
|
8726
8763
|
}>>;
|
8727
|
-
export declare function useGetApplicationPolicySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetApplicationPolicyQuery, IGetApplicationPolicyQueryVariables>): Apollo.UseSuspenseQueryResult<IGetApplicationPolicyQuery, Exact<{
|
8764
|
+
export declare function useGetApplicationPolicySuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetApplicationPolicyQuery, IGetApplicationPolicyQueryVariables>): Apollo.UseSuspenseQueryResult<IGetApplicationPolicyQuery, Exact<{
|
8728
8765
|
input?: InputMaybe<Array<InputMaybe<IConfigurationInput>> | InputMaybe<IConfigurationInput>>;
|
8729
8766
|
}>>;
|
8730
8767
|
export type GetApplicationPolicyQueryHookResult = ReturnType<typeof useGetApplicationPolicyQuery>;
|
@@ -8754,7 +8791,7 @@ export declare function useGetApplicationRoleQuery(baseOptions?: Apollo.QueryHoo
|
|
8754
8791
|
export declare function useGetApplicationRoleLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetApplicationRoleQuery, IGetApplicationRoleQueryVariables>): Apollo.LazyQueryResultTuple<IGetApplicationRoleQuery, Exact<{
|
8755
8792
|
input?: InputMaybe<Array<InputMaybe<IRoleInput>> | InputMaybe<IRoleInput>>;
|
8756
8793
|
}>>;
|
8757
|
-
export declare function useGetApplicationRoleSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetApplicationRoleQuery, IGetApplicationRoleQueryVariables>): Apollo.UseSuspenseQueryResult<IGetApplicationRoleQuery, Exact<{
|
8794
|
+
export declare function useGetApplicationRoleSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetApplicationRoleQuery, IGetApplicationRoleQueryVariables>): Apollo.UseSuspenseQueryResult<IGetApplicationRoleQuery, Exact<{
|
8758
8795
|
input?: InputMaybe<Array<InputMaybe<IRoleInput>> | InputMaybe<IRoleInput>>;
|
8759
8796
|
}>>;
|
8760
8797
|
export type GetApplicationRoleQueryHookResult = ReturnType<typeof useGetApplicationRoleQuery>;
|
@@ -8792,7 +8829,7 @@ export declare function useDefaultResolveSettingsLazyQuery(baseOptions?: Apollo.
|
|
8792
8829
|
uri: Scalars["URI"]["input"];
|
8793
8830
|
target?: InputMaybe<Scalars["Int"]["input"]>;
|
8794
8831
|
}>>;
|
8795
|
-
export declare function useDefaultResolveSettingsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IDefaultResolveSettingsQuery, IDefaultResolveSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<IDefaultResolveSettingsQuery, Exact<{
|
8832
|
+
export declare function useDefaultResolveSettingsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IDefaultResolveSettingsQuery, IDefaultResolveSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<IDefaultResolveSettingsQuery, Exact<{
|
8796
8833
|
uri: Scalars["URI"]["input"];
|
8797
8834
|
target?: InputMaybe<Scalars["Int"]["input"]>;
|
8798
8835
|
}>>;
|
@@ -8823,7 +8860,7 @@ export declare function useGetConfigurationTargetQuery(baseOptions?: Apollo.Quer
|
|
8823
8860
|
export declare function useGetConfigurationTargetLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetConfigurationTargetQuery, IGetConfigurationTargetQueryVariables>): Apollo.LazyQueryResultTuple<IGetConfigurationTargetQuery, Exact<{
|
8824
8861
|
resource?: InputMaybe<Scalars["URI"]["input"]>;
|
8825
8862
|
}>>;
|
8826
|
-
export declare function useGetConfigurationTargetSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetConfigurationTargetQuery, IGetConfigurationTargetQueryVariables>): Apollo.UseSuspenseQueryResult<IGetConfigurationTargetQuery, Exact<{
|
8863
|
+
export declare function useGetConfigurationTargetSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetConfigurationTargetQuery, IGetConfigurationTargetQueryVariables>): Apollo.UseSuspenseQueryResult<IGetConfigurationTargetQuery, Exact<{
|
8827
8864
|
resource?: InputMaybe<Scalars["URI"]["input"]>;
|
8828
8865
|
}>>;
|
8829
8866
|
export type GetConfigurationTargetQueryHookResult = ReturnType<typeof useGetConfigurationTargetQuery>;
|
@@ -8853,7 +8890,7 @@ export declare function useGetContextPropertyQuery(baseOptions?: Apollo.QueryHoo
|
|
8853
8890
|
export declare function useGetContextPropertyLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetContextPropertyQuery, IGetContextPropertyQueryVariables>): Apollo.LazyQueryResultTuple<IGetContextPropertyQuery, Exact<{
|
8854
8891
|
keys?: InputMaybe<Array<InputMaybe<Scalars["String"]["input"]>> | InputMaybe<Scalars["String"]["input"]>>;
|
8855
8892
|
}>>;
|
8856
|
-
export declare function useGetContextPropertySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetContextPropertyQuery, IGetContextPropertyQueryVariables>): Apollo.UseSuspenseQueryResult<IGetContextPropertyQuery, Exact<{
|
8893
|
+
export declare function useGetContextPropertySuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetContextPropertyQuery, IGetContextPropertyQueryVariables>): Apollo.UseSuspenseQueryResult<IGetContextPropertyQuery, Exact<{
|
8857
8894
|
keys?: InputMaybe<Array<InputMaybe<Scalars["String"]["input"]>> | InputMaybe<Scalars["String"]["input"]>>;
|
8858
8895
|
}>>;
|
8859
8896
|
export type GetContextPropertyQueryHookResult = ReturnType<typeof useGetContextPropertyQuery>;
|
@@ -8883,7 +8920,7 @@ export declare function useGetDefaultApplicationPermissionsQuery(baseOptions?: A
|
|
8883
8920
|
export declare function useGetDefaultApplicationPermissionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetDefaultApplicationPermissionsQuery, IGetDefaultApplicationPermissionsQueryVariables>): Apollo.LazyQueryResultTuple<IGetDefaultApplicationPermissionsQuery, Exact<{
|
8884
8921
|
roleName?: InputMaybe<Scalars["String"]["input"]>;
|
8885
8922
|
}>>;
|
8886
|
-
export declare function useGetDefaultApplicationPermissionsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetDefaultApplicationPermissionsQuery, IGetDefaultApplicationPermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetDefaultApplicationPermissionsQuery, Exact<{
|
8923
|
+
export declare function useGetDefaultApplicationPermissionsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetDefaultApplicationPermissionsQuery, IGetDefaultApplicationPermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetDefaultApplicationPermissionsQuery, Exact<{
|
8887
8924
|
roleName?: InputMaybe<Scalars["String"]["input"]>;
|
8888
8925
|
}>>;
|
8889
8926
|
export type GetDefaultApplicationPermissionsQueryHookResult = ReturnType<typeof useGetDefaultApplicationPermissionsQuery>;
|
@@ -8913,7 +8950,7 @@ export declare function useGetDefaultPermissionsQuery(baseOptions?: Apollo.Query
|
|
8913
8950
|
export declare function useGetDefaultPermissionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetDefaultPermissionsQuery, IGetDefaultPermissionsQueryVariables>): Apollo.LazyQueryResultTuple<IGetDefaultPermissionsQuery, Exact<{
|
8914
8951
|
target?: InputMaybe<Scalars["Int"]["input"]>;
|
8915
8952
|
}>>;
|
8916
|
-
export declare function useGetDefaultPermissionsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetDefaultPermissionsQuery, IGetDefaultPermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetDefaultPermissionsQuery, Exact<{
|
8953
|
+
export declare function useGetDefaultPermissionsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetDefaultPermissionsQuery, IGetDefaultPermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetDefaultPermissionsQuery, Exact<{
|
8917
8954
|
target?: InputMaybe<Scalars["Int"]["input"]>;
|
8918
8955
|
}>>;
|
8919
8956
|
export type GetDefaultPermissionsQueryHookResult = ReturnType<typeof useGetDefaultPermissionsQuery>;
|
@@ -8943,7 +8980,7 @@ export declare function useGetDefaultPolicySettingsQuery(baseOptions?: Apollo.Qu
|
|
8943
8980
|
export declare function useGetDefaultPolicySettingsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetDefaultPolicySettingsQuery, IGetDefaultPolicySettingsQueryVariables>): Apollo.LazyQueryResultTuple<IGetDefaultPolicySettingsQuery, Exact<{
|
8944
8981
|
target?: InputMaybe<Scalars["Int"]["input"]>;
|
8945
8982
|
}>>;
|
8946
|
-
export declare function useGetDefaultPolicySettingsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetDefaultPolicySettingsQuery, IGetDefaultPolicySettingsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetDefaultPolicySettingsQuery, Exact<{
|
8983
|
+
export declare function useGetDefaultPolicySettingsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetDefaultPolicySettingsQuery, IGetDefaultPolicySettingsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetDefaultPolicySettingsQuery, Exact<{
|
8947
8984
|
target?: InputMaybe<Scalars["Int"]["input"]>;
|
8948
8985
|
}>>;
|
8949
8986
|
export type GetDefaultPolicySettingsQueryHookResult = ReturnType<typeof useGetDefaultPolicySettingsQuery>;
|
@@ -8972,7 +9009,7 @@ export declare function useGetDefaultRoleQuery(baseOptions?: Apollo.QueryHookOpt
|
|
8972
9009
|
export declare function useGetDefaultRoleLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetDefaultRoleQuery, IGetDefaultRoleQueryVariables>): Apollo.LazyQueryResultTuple<IGetDefaultRoleQuery, Exact<{
|
8973
9010
|
[key: string]: never;
|
8974
9011
|
}>>;
|
8975
|
-
export declare function useGetDefaultRoleSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetDefaultRoleQuery, IGetDefaultRoleQueryVariables>): Apollo.UseSuspenseQueryResult<IGetDefaultRoleQuery, Exact<{
|
9012
|
+
export declare function useGetDefaultRoleSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetDefaultRoleQuery, IGetDefaultRoleQueryVariables>): Apollo.UseSuspenseQueryResult<IGetDefaultRoleQuery, Exact<{
|
8976
9013
|
[key: string]: never;
|
8977
9014
|
}>>;
|
8978
9015
|
export type GetDefaultRoleQueryHookResult = ReturnType<typeof useGetDefaultRoleQuery>;
|
@@ -9001,7 +9038,7 @@ export declare function useGetTeamContextQuery(baseOptions?: Apollo.QueryHookOpt
|
|
9001
9038
|
export declare function useGetTeamContextLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetTeamContextQuery, IGetTeamContextQueryVariables>): Apollo.LazyQueryResultTuple<IGetTeamContextQuery, Exact<{
|
9002
9039
|
[key: string]: never;
|
9003
9040
|
}>>;
|
9004
|
-
export declare function useGetTeamContextSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetTeamContextQuery, IGetTeamContextQueryVariables>): Apollo.UseSuspenseQueryResult<IGetTeamContextQuery, Exact<{
|
9041
|
+
export declare function useGetTeamContextSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetTeamContextQuery, IGetTeamContextQueryVariables>): Apollo.UseSuspenseQueryResult<IGetTeamContextQuery, Exact<{
|
9005
9042
|
[key: string]: never;
|
9006
9043
|
}>>;
|
9007
9044
|
export type GetTeamContextQueryHookResult = ReturnType<typeof useGetTeamContextQuery>;
|
@@ -9030,7 +9067,7 @@ export declare function useGetTeamNameFromContextQuery(baseOptions?: Apollo.Quer
|
|
9030
9067
|
export declare function useGetTeamNameFromContextLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetTeamNameFromContextQuery, IGetTeamNameFromContextQueryVariables>): Apollo.LazyQueryResultTuple<IGetTeamNameFromContextQuery, Exact<{
|
9031
9068
|
[key: string]: never;
|
9032
9069
|
}>>;
|
9033
|
-
export declare function useGetTeamNameFromContextSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetTeamNameFromContextQuery, IGetTeamNameFromContextQueryVariables>): Apollo.UseSuspenseQueryResult<IGetTeamNameFromContextQuery, Exact<{
|
9070
|
+
export declare function useGetTeamNameFromContextSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetTeamNameFromContextQuery, IGetTeamNameFromContextQueryVariables>): Apollo.UseSuspenseQueryResult<IGetTeamNameFromContextQuery, Exact<{
|
9034
9071
|
[key: string]: never;
|
9035
9072
|
}>>;
|
9036
9073
|
export type GetTeamNameFromContextQueryHookResult = ReturnType<typeof useGetTeamNameFromContextQuery>;
|
@@ -9060,7 +9097,7 @@ export declare function useGetUserAccessRoleQuery(baseOptions?: Apollo.QueryHook
|
|
9060
9097
|
export declare function useGetUserAccessRoleLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetUserAccessRoleQuery, IGetUserAccessRoleQueryVariables>): Apollo.LazyQueryResultTuple<IGetUserAccessRoleQuery, Exact<{
|
9061
9098
|
input?: InputMaybe<Array<InputMaybe<IRoleInput>> | InputMaybe<IRoleInput>>;
|
9062
9099
|
}>>;
|
9063
|
-
export declare function useGetUserAccessRoleSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetUserAccessRoleQuery, IGetUserAccessRoleQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserAccessRoleQuery, Exact<{
|
9100
|
+
export declare function useGetUserAccessRoleSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetUserAccessRoleQuery, IGetUserAccessRoleQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserAccessRoleQuery, Exact<{
|
9064
9101
|
input?: InputMaybe<Array<InputMaybe<IRoleInput>> | InputMaybe<IRoleInput>>;
|
9065
9102
|
}>>;
|
9066
9103
|
export type GetUserAccessRoleQueryHookResult = ReturnType<typeof useGetUserAccessRoleQuery>;
|
@@ -9089,7 +9126,7 @@ export declare function useGetUserPermissionsQuery(baseOptions?: Apollo.QueryHoo
|
|
9089
9126
|
export declare function useGetUserPermissionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetUserPermissionsQuery, IGetUserPermissionsQueryVariables>): Apollo.LazyQueryResultTuple<IGetUserPermissionsQuery, Exact<{
|
9090
9127
|
[key: string]: never;
|
9091
9128
|
}>>;
|
9092
|
-
export declare function useGetUserPermissionsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetUserPermissionsQuery, IGetUserPermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserPermissionsQuery, Exact<{
|
9129
|
+
export declare function useGetUserPermissionsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetUserPermissionsQuery, IGetUserPermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserPermissionsQuery, Exact<{
|
9093
9130
|
[key: string]: never;
|
9094
9131
|
}>>;
|
9095
9132
|
export type GetUserPermissionsQueryHookResult = ReturnType<typeof useGetUserPermissionsQuery>;
|
@@ -9127,7 +9164,7 @@ export declare function useGetUserRoleLazyQuery(baseOptions?: Apollo.LazyQueryHo
|
|
9127
9164
|
orgName: Scalars["String"]["input"];
|
9128
9165
|
userId?: InputMaybe<Scalars["String"]["input"]>;
|
9129
9166
|
}>>;
|
9130
|
-
export declare function useGetUserRoleSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetUserRoleQuery, IGetUserRoleQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserRoleQuery, Exact<{
|
9167
|
+
export declare function useGetUserRoleSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetUserRoleQuery, IGetUserRoleQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserRoleQuery, Exact<{
|
9131
9168
|
orgName: Scalars["String"]["input"];
|
9132
9169
|
userId?: InputMaybe<Scalars["String"]["input"]>;
|
9133
9170
|
}>>;
|
@@ -9158,7 +9195,7 @@ export declare function useGetViewerPermissionsQuery(baseOptions?: Apollo.QueryH
|
|
9158
9195
|
export declare function useGetViewerPermissionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetViewerPermissionsQuery, IGetViewerPermissionsQueryVariables>): Apollo.LazyQueryResultTuple<IGetViewerPermissionsQuery, Exact<{
|
9159
9196
|
input?: InputMaybe<IRoleInput>;
|
9160
9197
|
}>>;
|
9161
|
-
export declare function useGetViewerPermissionsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetViewerPermissionsQuery, IGetViewerPermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetViewerPermissionsQuery, Exact<{
|
9198
|
+
export declare function useGetViewerPermissionsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetViewerPermissionsQuery, IGetViewerPermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<IGetViewerPermissionsQuery, Exact<{
|
9162
9199
|
input?: InputMaybe<IRoleInput>;
|
9163
9200
|
}>>;
|
9164
9201
|
export type GetViewerPermissionsQueryHookResult = ReturnType<typeof useGetViewerPermissionsQuery>;
|
@@ -9194,7 +9231,7 @@ export declare function useOpenPreferencesSettingsLazyQuery(baseOptions?: Apollo
|
|
9194
9231
|
jsonEditor?: InputMaybe<Scalars["Boolean"]["input"]>;
|
9195
9232
|
options?: InputMaybe<IPreferencesOpenOptionsInput>;
|
9196
9233
|
}>>;
|
9197
|
-
export declare function useOpenPreferencesSettingsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IOpenPreferencesSettingsQuery, IOpenPreferencesSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<IOpenPreferencesSettingsQuery, Exact<{
|
9234
|
+
export declare function useOpenPreferencesSettingsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IOpenPreferencesSettingsQuery, IOpenPreferencesSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<IOpenPreferencesSettingsQuery, Exact<{
|
9198
9235
|
resource?: InputMaybe<Scalars["URI"]["input"]>;
|
9199
9236
|
jsonEditor?: InputMaybe<Scalars["Boolean"]["input"]>;
|
9200
9237
|
options?: InputMaybe<IPreferencesOpenOptionsInput>;
|
@@ -9226,7 +9263,7 @@ export declare function useGetOrgConfigurationQuery(baseOptions?: Apollo.QueryHo
|
|
9226
9263
|
export declare function useGetOrgConfigurationLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrgConfigurationQuery, IGetOrgConfigurationQueryVariables>): Apollo.LazyQueryResultTuple<IGetOrgConfigurationQuery, Exact<{
|
9227
9264
|
input?: InputMaybe<Array<InputMaybe<IConfigurationInput>> | InputMaybe<IConfigurationInput>>;
|
9228
9265
|
}>>;
|
9229
|
-
export declare function useGetOrgConfigurationSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetOrgConfigurationQuery, IGetOrgConfigurationQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgConfigurationQuery, Exact<{
|
9266
|
+
export declare function useGetOrgConfigurationSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetOrgConfigurationQuery, IGetOrgConfigurationQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgConfigurationQuery, Exact<{
|
9230
9267
|
input?: InputMaybe<Array<InputMaybe<IConfigurationInput>> | InputMaybe<IConfigurationInput>>;
|
9231
9268
|
}>>;
|
9232
9269
|
export type GetOrgConfigurationQueryHookResult = ReturnType<typeof useGetOrgConfigurationQuery>;
|
@@ -9256,7 +9293,7 @@ export declare function useGetOrgPolicyQuery(baseOptions?: Apollo.QueryHookOptio
|
|
9256
9293
|
export declare function useGetOrgPolicyLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrgPolicyQuery, IGetOrgPolicyQueryVariables>): Apollo.LazyQueryResultTuple<IGetOrgPolicyQuery, Exact<{
|
9257
9294
|
input?: InputMaybe<Array<InputMaybe<IConfigurationInput>> | InputMaybe<IConfigurationInput>>;
|
9258
9295
|
}>>;
|
9259
|
-
export declare function useGetOrgPolicySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetOrgPolicyQuery, IGetOrgPolicyQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgPolicyQuery, Exact<{
|
9296
|
+
export declare function useGetOrgPolicySuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetOrgPolicyQuery, IGetOrgPolicyQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgPolicyQuery, Exact<{
|
9260
9297
|
input?: InputMaybe<Array<InputMaybe<IConfigurationInput>> | InputMaybe<IConfigurationInput>>;
|
9261
9298
|
}>>;
|
9262
9299
|
export type GetOrgPolicyQueryHookResult = ReturnType<typeof useGetOrgPolicyQuery>;
|
@@ -9286,7 +9323,7 @@ export declare function useGetOrgRoleQuery(baseOptions?: Apollo.QueryHookOptions
|
|
9286
9323
|
export declare function useGetOrgRoleLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrgRoleQuery, IGetOrgRoleQueryVariables>): Apollo.LazyQueryResultTuple<IGetOrgRoleQuery, Exact<{
|
9287
9324
|
input?: InputMaybe<Array<InputMaybe<IRoleInput>> | InputMaybe<IRoleInput>>;
|
9288
9325
|
}>>;
|
9289
|
-
export declare function useGetOrgRoleSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetOrgRoleQuery, IGetOrgRoleQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgRoleQuery, Exact<{
|
9326
|
+
export declare function useGetOrgRoleSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetOrgRoleQuery, IGetOrgRoleQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgRoleQuery, Exact<{
|
9290
9327
|
input?: InputMaybe<Array<InputMaybe<IRoleInput>> | InputMaybe<IRoleInput>>;
|
9291
9328
|
}>>;
|
9292
9329
|
export type GetOrgRoleQueryHookResult = ReturnType<typeof useGetOrgRoleQuery>;
|
@@ -9316,7 +9353,7 @@ export declare function useGetOrgWithResourcesPolicyQuery(baseOptions?: Apollo.Q
|
|
9316
9353
|
export declare function useGetOrgWithResourcesPolicyLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrgWithResourcesPolicyQuery, IGetOrgWithResourcesPolicyQueryVariables>): Apollo.LazyQueryResultTuple<IGetOrgWithResourcesPolicyQuery, Exact<{
|
9317
9354
|
input?: InputMaybe<Array<InputMaybe<IConfigurationInput>> | InputMaybe<IConfigurationInput>>;
|
9318
9355
|
}>>;
|
9319
|
-
export declare function useGetOrgWithResourcesPolicySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetOrgWithResourcesPolicyQuery, IGetOrgWithResourcesPolicyQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgWithResourcesPolicyQuery, Exact<{
|
9356
|
+
export declare function useGetOrgWithResourcesPolicySuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetOrgWithResourcesPolicyQuery, IGetOrgWithResourcesPolicyQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgWithResourcesPolicyQuery, Exact<{
|
9320
9357
|
input?: InputMaybe<Array<InputMaybe<IConfigurationInput>> | InputMaybe<IConfigurationInput>>;
|
9321
9358
|
}>>;
|
9322
9359
|
export type GetOrgWithResourcesPolicyQueryHookResult = ReturnType<typeof useGetOrgWithResourcesPolicyQuery>;
|
@@ -9346,7 +9383,7 @@ export declare function useGetOrgWithResourcesRoleQuery(baseOptions?: Apollo.Que
|
|
9346
9383
|
export declare function useGetOrgWithResourcesRoleLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrgWithResourcesRoleQuery, IGetOrgWithResourcesRoleQueryVariables>): Apollo.LazyQueryResultTuple<IGetOrgWithResourcesRoleQuery, Exact<{
|
9347
9384
|
input?: InputMaybe<Array<InputMaybe<IRoleInput>> | InputMaybe<IRoleInput>>;
|
9348
9385
|
}>>;
|
9349
|
-
export declare function useGetOrgWithResourcesRoleSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetOrgWithResourcesRoleQuery, IGetOrgWithResourcesRoleQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgWithResourcesRoleQuery, Exact<{
|
9386
|
+
export declare function useGetOrgWithResourcesRoleSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetOrgWithResourcesRoleQuery, IGetOrgWithResourcesRoleQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgWithResourcesRoleQuery, Exact<{
|
9350
9387
|
input?: InputMaybe<Array<InputMaybe<IRoleInput>> | InputMaybe<IRoleInput>>;
|
9351
9388
|
}>>;
|
9352
9389
|
export type GetOrgWithResourcesRoleQueryHookResult = ReturnType<typeof useGetOrgWithResourcesRoleQuery>;
|
@@ -9387,7 +9424,7 @@ export declare function useResolveConfigurationLazyQuery(baseOptions?: Apollo.La
|
|
9387
9424
|
key?: InputMaybe<Scalars["String"]["input"]>;
|
9388
9425
|
overrides?: InputMaybe<IConfigurationOverridesInput>;
|
9389
9426
|
}>>;
|
9390
|
-
export declare function useResolveConfigurationSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IResolveConfigurationQuery, IResolveConfigurationQueryVariables>): Apollo.UseSuspenseQueryResult<IResolveConfigurationQuery, Exact<{
|
9427
|
+
export declare function useResolveConfigurationSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IResolveConfigurationQuery, IResolveConfigurationQueryVariables>): Apollo.UseSuspenseQueryResult<IResolveConfigurationQuery, Exact<{
|
9391
9428
|
input: IPreferencesInputInput;
|
9392
9429
|
key?: InputMaybe<Scalars["String"]["input"]>;
|
9393
9430
|
overrides?: InputMaybe<IConfigurationOverridesInput>;
|
@@ -9419,7 +9456,7 @@ export declare function useGetResourcesConfigurationQuery(baseOptions?: Apollo.Q
|
|
9419
9456
|
export declare function useGetResourcesConfigurationLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetResourcesConfigurationQuery, IGetResourcesConfigurationQueryVariables>): Apollo.LazyQueryResultTuple<IGetResourcesConfigurationQuery, Exact<{
|
9420
9457
|
input?: InputMaybe<Array<InputMaybe<IConfigurationInput>> | InputMaybe<IConfigurationInput>>;
|
9421
9458
|
}>>;
|
9422
|
-
export declare function useGetResourcesConfigurationSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetResourcesConfigurationQuery, IGetResourcesConfigurationQueryVariables>): Apollo.UseSuspenseQueryResult<IGetResourcesConfigurationQuery, Exact<{
|
9459
|
+
export declare function useGetResourcesConfigurationSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetResourcesConfigurationQuery, IGetResourcesConfigurationQueryVariables>): Apollo.UseSuspenseQueryResult<IGetResourcesConfigurationQuery, Exact<{
|
9423
9460
|
input?: InputMaybe<Array<InputMaybe<IConfigurationInput>> | InputMaybe<IConfigurationInput>>;
|
9424
9461
|
}>>;
|
9425
9462
|
export type GetResourcesConfigurationQueryHookResult = ReturnType<typeof useGetResourcesConfigurationQuery>;
|
@@ -9449,7 +9486,7 @@ export declare function useGetUserConfigurationQuery(baseOptions?: Apollo.QueryH
|
|
9449
9486
|
export declare function useGetUserConfigurationLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetUserConfigurationQuery, IGetUserConfigurationQueryVariables>): Apollo.LazyQueryResultTuple<IGetUserConfigurationQuery, Exact<{
|
9450
9487
|
input?: InputMaybe<Array<InputMaybe<IConfigurationInput>> | InputMaybe<IConfigurationInput>>;
|
9451
9488
|
}>>;
|
9452
|
-
export declare function useGetUserConfigurationSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetUserConfigurationQuery, IGetUserConfigurationQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserConfigurationQuery, Exact<{
|
9489
|
+
export declare function useGetUserConfigurationSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetUserConfigurationQuery, IGetUserConfigurationQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserConfigurationQuery, Exact<{
|
9453
9490
|
input?: InputMaybe<Array<InputMaybe<IConfigurationInput>> | InputMaybe<IConfigurationInput>>;
|
9454
9491
|
}>>;
|
9455
9492
|
export type GetUserConfigurationQueryHookResult = ReturnType<typeof useGetUserConfigurationQuery>;
|
@@ -9479,7 +9516,7 @@ export declare function useDefaultSettingsQuery(baseOptions?: Apollo.QueryHookOp
|
|
9479
9516
|
export declare function useDefaultSettingsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IDefaultSettingsQuery, IDefaultSettingsQueryVariables>): Apollo.LazyQueryResultTuple<IDefaultSettingsQuery, Exact<{
|
9480
9517
|
target?: InputMaybe<Scalars["Int"]["input"]>;
|
9481
9518
|
}>>;
|
9482
|
-
export declare function useDefaultSettingsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IDefaultSettingsQuery, IDefaultSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<IDefaultSettingsQuery, Exact<{
|
9519
|
+
export declare function useDefaultSettingsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IDefaultSettingsQuery, IDefaultSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<IDefaultSettingsQuery, Exact<{
|
9483
9520
|
target?: InputMaybe<Scalars["Int"]["input"]>;
|
9484
9521
|
}>>;
|
9485
9522
|
export type DefaultSettingsQueryHookResult = ReturnType<typeof useDefaultSettingsQuery>;
|
@@ -9508,7 +9545,7 @@ export declare function useGetContributionRolesQuery(baseOptions?: Apollo.QueryH
|
|
9508
9545
|
export declare function useGetContributionRolesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetContributionRolesQuery, IGetContributionRolesQueryVariables>): Apollo.LazyQueryResultTuple<IGetContributionRolesQuery, Exact<{
|
9509
9546
|
[key: string]: never;
|
9510
9547
|
}>>;
|
9511
|
-
export declare function useGetContributionRolesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetContributionRolesQuery, IGetContributionRolesQueryVariables>): Apollo.UseSuspenseQueryResult<IGetContributionRolesQuery, Exact<{
|
9548
|
+
export declare function useGetContributionRolesSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetContributionRolesQuery, IGetContributionRolesQueryVariables>): Apollo.UseSuspenseQueryResult<IGetContributionRolesQuery, Exact<{
|
9512
9549
|
[key: string]: never;
|
9513
9550
|
}>>;
|
9514
9551
|
export type GetContributionRolesQueryHookResult = ReturnType<typeof useGetContributionRolesQuery>;
|
@@ -9537,7 +9574,7 @@ export declare function useGetOrgContextQuery(baseOptions?: Apollo.QueryHookOpti
|
|
9537
9574
|
export declare function useGetOrgContextLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrgContextQuery, IGetOrgContextQueryVariables>): Apollo.LazyQueryResultTuple<IGetOrgContextQuery, Exact<{
|
9538
9575
|
[key: string]: never;
|
9539
9576
|
}>>;
|
9540
|
-
export declare function useGetOrgContextSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetOrgContextQuery, IGetOrgContextQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgContextQuery, Exact<{
|
9577
|
+
export declare function useGetOrgContextSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetOrgContextQuery, IGetOrgContextQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgContextQuery, Exact<{
|
9541
9578
|
[key: string]: never;
|
9542
9579
|
}>>;
|
9543
9580
|
export type GetOrgContextQueryHookResult = ReturnType<typeof useGetOrgContextQuery>;
|
@@ -9566,7 +9603,7 @@ export declare function useGetOrgNameFromContextQuery(baseOptions?: Apollo.Query
|
|
9566
9603
|
export declare function useGetOrgNameFromContextLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrgNameFromContextQuery, IGetOrgNameFromContextQueryVariables>): Apollo.LazyQueryResultTuple<IGetOrgNameFromContextQuery, Exact<{
|
9567
9604
|
[key: string]: never;
|
9568
9605
|
}>>;
|
9569
|
-
export declare function useGetOrgNameFromContextSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetOrgNameFromContextQuery, IGetOrgNameFromContextQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgNameFromContextQuery, Exact<{
|
9606
|
+
export declare function useGetOrgNameFromContextSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetOrgNameFromContextQuery, IGetOrgNameFromContextQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgNameFromContextQuery, Exact<{
|
9570
9607
|
[key: string]: never;
|
9571
9608
|
}>>;
|
9572
9609
|
export type GetOrgNameFromContextQueryHookResult = ReturnType<typeof useGetOrgNameFromContextQuery>;
|
@@ -9596,7 +9633,7 @@ export declare function useGetRoleQuery(baseOptions?: Apollo.QueryHookOptions<IG
|
|
9596
9633
|
export declare function useGetRoleLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetRoleQuery, IGetRoleQueryVariables>): Apollo.LazyQueryResultTuple<IGetRoleQuery, Exact<{
|
9597
9634
|
input?: InputMaybe<IRoleInput>;
|
9598
9635
|
}>>;
|
9599
|
-
export declare function useGetRoleSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetRoleQuery, IGetRoleQueryVariables>): Apollo.UseSuspenseQueryResult<IGetRoleQuery, Exact<{
|
9636
|
+
export declare function useGetRoleSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetRoleQuery, IGetRoleQueryVariables>): Apollo.UseSuspenseQueryResult<IGetRoleQuery, Exact<{
|
9600
9637
|
input?: InputMaybe<IRoleInput>;
|
9601
9638
|
}>>;
|
9602
9639
|
export type GetRoleQueryHookResult = ReturnType<typeof useGetRoleQuery>;
|
@@ -9626,7 +9663,7 @@ export declare function useGetOrgWithResourcesConfigurationQuery(baseOptions?: A
|
|
9626
9663
|
export declare function useGetOrgWithResourcesConfigurationLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetOrgWithResourcesConfigurationQuery, IGetOrgWithResourcesConfigurationQueryVariables>): Apollo.LazyQueryResultTuple<IGetOrgWithResourcesConfigurationQuery, Exact<{
|
9627
9664
|
input?: InputMaybe<Array<InputMaybe<IConfigurationInput>> | InputMaybe<IConfigurationInput>>;
|
9628
9665
|
}>>;
|
9629
|
-
export declare function useGetOrgWithResourcesConfigurationSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetOrgWithResourcesConfigurationQuery, IGetOrgWithResourcesConfigurationQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgWithResourcesConfigurationQuery, Exact<{
|
9666
|
+
export declare function useGetOrgWithResourcesConfigurationSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetOrgWithResourcesConfigurationQuery, IGetOrgWithResourcesConfigurationQueryVariables>): Apollo.UseSuspenseQueryResult<IGetOrgWithResourcesConfigurationQuery, Exact<{
|
9630
9667
|
input?: InputMaybe<Array<InputMaybe<IConfigurationInput>> | InputMaybe<IConfigurationInput>>;
|
9631
9668
|
}>>;
|
9632
9669
|
export type GetOrgWithResourcesConfigurationQueryHookResult = ReturnType<typeof useGetOrgWithResourcesConfigurationQuery>;
|
@@ -9656,7 +9693,7 @@ export declare function useGetUserWithDefaultConfigurationQuery(baseOptions?: Ap
|
|
9656
9693
|
export declare function useGetUserWithDefaultConfigurationLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetUserWithDefaultConfigurationQuery, IGetUserWithDefaultConfigurationQueryVariables>): Apollo.LazyQueryResultTuple<IGetUserWithDefaultConfigurationQuery, Exact<{
|
9657
9694
|
input?: InputMaybe<Array<InputMaybe<IConfigurationInput>> | InputMaybe<IConfigurationInput>>;
|
9658
9695
|
}>>;
|
9659
|
-
export declare function useGetUserWithDefaultConfigurationSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetUserWithDefaultConfigurationQuery, IGetUserWithDefaultConfigurationQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserWithDefaultConfigurationQuery, Exact<{
|
9696
|
+
export declare function useGetUserWithDefaultConfigurationSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetUserWithDefaultConfigurationQuery, IGetUserWithDefaultConfigurationQueryVariables>): Apollo.UseSuspenseQueryResult<IGetUserWithDefaultConfigurationQuery, Exact<{
|
9660
9697
|
input?: InputMaybe<Array<InputMaybe<IConfigurationInput>> | InputMaybe<IConfigurationInput>>;
|
9661
9698
|
}>>;
|
9662
9699
|
export type GetUserWithDefaultConfigurationQueryHookResult = ReturnType<typeof useGetUserWithDefaultConfigurationQuery>;
|
@@ -10019,7 +10056,7 @@ export declare function useGetConfigurationDataQuery(baseOptions?: Apollo.QueryH
|
|
10019
10056
|
export declare function useGetConfigurationDataLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetConfigurationDataQuery, IGetConfigurationDataQueryVariables>): Apollo.LazyQueryResultTuple<IGetConfigurationDataQuery, Exact<{
|
10020
10057
|
[key: string]: never;
|
10021
10058
|
}>>;
|
10022
|
-
export declare function useGetConfigurationDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IGetConfigurationDataQuery, IGetConfigurationDataQueryVariables>): Apollo.UseSuspenseQueryResult<IGetConfigurationDataQuery, Exact<{
|
10059
|
+
export declare function useGetConfigurationDataSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IGetConfigurationDataQuery, IGetConfigurationDataQueryVariables>): Apollo.UseSuspenseQueryResult<IGetConfigurationDataQuery, Exact<{
|
10023
10060
|
[key: string]: never;
|
10024
10061
|
}>>;
|
10025
10062
|
export type GetConfigurationDataQueryHookResult = ReturnType<typeof useGetConfigurationDataQuery>;
|
@@ -10049,7 +10086,7 @@ export declare function useOrganizationResourceContextQuery(baseOptions?: Apollo
|
|
10049
10086
|
export declare function useOrganizationResourceContextLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IOrganizationResourceContextQuery, IOrganizationResourceContextQueryVariables>): Apollo.LazyQueryResultTuple<IOrganizationResourceContextQuery, Exact<{
|
10050
10087
|
orgId?: InputMaybe<Scalars["String"]["input"]>;
|
10051
10088
|
}>>;
|
10052
|
-
export declare function useOrganizationResourceContextSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IOrganizationResourceContextQuery, IOrganizationResourceContextQueryVariables>): Apollo.UseSuspenseQueryResult<IOrganizationResourceContextQuery, Exact<{
|
10089
|
+
export declare function useOrganizationResourceContextSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IOrganizationResourceContextQuery, IOrganizationResourceContextQueryVariables>): Apollo.UseSuspenseQueryResult<IOrganizationResourceContextQuery, Exact<{
|
10053
10090
|
orgId?: InputMaybe<Scalars["String"]["input"]>;
|
10054
10091
|
}>>;
|
10055
10092
|
export type OrganizationResourceContextQueryHookResult = ReturnType<typeof useOrganizationResourceContextQuery>;
|
@@ -10079,7 +10116,7 @@ export declare function useViewerSettingsQuery(baseOptions?: Apollo.QueryHookOpt
|
|
10079
10116
|
export declare function useViewerSettingsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IViewerSettingsQuery, IViewerSettingsQueryVariables>): Apollo.LazyQueryResultTuple<IViewerSettingsQuery, Exact<{
|
10080
10117
|
input?: InputMaybe<IViewerSettingsInput>;
|
10081
10118
|
}>>;
|
10082
|
-
export declare function useViewerSettingsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IViewerSettingsQuery, IViewerSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<IViewerSettingsQuery, Exact<{
|
10119
|
+
export declare function useViewerSettingsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IViewerSettingsQuery, IViewerSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<IViewerSettingsQuery, Exact<{
|
10083
10120
|
input?: InputMaybe<IViewerSettingsInput>;
|
10084
10121
|
}>>;
|
10085
10122
|
export type ViewerSettingsQueryHookResult = ReturnType<typeof useViewerSettingsQuery>;
|
@@ -10205,7 +10242,6 @@ export type IResolversTypes = {
|
|
10205
10242
|
BaseOrganizationService: ResolverTypeWrapper<IBaseOrganizationService>;
|
10206
10243
|
BaseTeamService: ResolverTypeWrapper<IBaseTeamService>;
|
10207
10244
|
Boolean: ResolverTypeWrapper<Scalars['Boolean']['output']>;
|
10208
|
-
CacheControlScope: ICacheControlScope;
|
10209
10245
|
Cities: ResolverTypeWrapper<ICities>;
|
10210
10246
|
CitiesInput: ICitiesInput;
|
10211
10247
|
CitiesOptions: ICitiesOptions;
|
@@ -10308,6 +10344,7 @@ export type IResolversTypes = {
|
|
10308
10344
|
JSONObject: ResolverTypeWrapper<Scalars['JSONObject']['output']>;
|
10309
10345
|
KeyPathSegment: IKeyPathSegment;
|
10310
10346
|
LinkedIdentity: ResolverTypeWrapper<ILinkedIdentity>;
|
10347
|
+
LoginDeviceCredential: ResolverTypeWrapper<ILoginDeviceCredential>;
|
10311
10348
|
LoginError: ResolverTypeWrapper<ILoginError>;
|
10312
10349
|
MachineConfiguration: ResolverTypeWrapper<IMachineConfiguration>;
|
10313
10350
|
MachineSettings: ResolverTypeWrapper<Omit<IMachineSettings, 'settingsCascade'> & {
|
@@ -10607,6 +10644,7 @@ export type IResolversParentTypes = {
|
|
10607
10644
|
JSONObject: Scalars['JSONObject']['output'];
|
10608
10645
|
KeyPathSegment: IKeyPathSegment;
|
10609
10646
|
LinkedIdentity: ILinkedIdentity;
|
10647
|
+
LoginDeviceCredential: ILoginDeviceCredential;
|
10610
10648
|
LoginError: ILoginError;
|
10611
10649
|
MachineConfiguration: IMachineConfiguration;
|
10612
10650
|
MachineSettings: Omit<IMachineSettings, 'settingsCascade'> & {
|
@@ -10771,19 +10809,10 @@ export type IAddAccountContextDirectiveArgs = {};
|
|
10771
10809
|
export type IAddAccountContextDirectiveResolver<Result, Parent, ContextType = MyContext, Args = IAddAccountContextDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
10772
10810
|
export type IAddNamespaceContextDirectiveArgs = {};
|
10773
10811
|
export type IAddNamespaceContextDirectiveResolver<Result, Parent, ContextType = MyContext, Args = IAddNamespaceContextDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
10774
|
-
export type ICacheControlDirectiveArgs = {
|
10775
|
-
maxAge?: Maybe<Scalars['Int']['input']>;
|
10776
|
-
scope?: Maybe<ICacheControlScope>;
|
10777
|
-
};
|
10778
|
-
export type ICacheControlDirectiveResolver<Result, Parent, ContextType = MyContext, Args = ICacheControlDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
10779
10812
|
export type IHasScopeDirectiveArgs = {
|
10780
10813
|
scope?: Maybe<Array<Maybe<Scalars['String']['input']>>>;
|
10781
10814
|
};
|
10782
10815
|
export type IHasScopeDirectiveResolver<Result, Parent, ContextType = MyContext, Args = IHasScopeDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
10783
|
-
export type IInvalidateCacheDirectiveArgs = {
|
10784
|
-
queries: Array<Scalars['String']['input']>;
|
10785
|
-
};
|
10786
|
-
export type IInvalidateCacheDirectiveResolver<Result, Parent, ContextType = MyContext, Args = IInvalidateCacheDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
10787
10816
|
export type IIsAuthenticatedDirectiveArgs = {};
|
10788
10817
|
export type IIsAuthenticatedDirectiveResolver<Result, Parent, ContextType = MyContext, Args = IIsAuthenticatedDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
10789
10818
|
export type IProfileDirectiveArgs = {};
|
@@ -11409,6 +11438,17 @@ export type ILinkedIdentityResolvers<ContextType = MyContext, ParentType extends
|
|
11409
11438
|
user_id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11410
11439
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11411
11440
|
};
|
11441
|
+
export type ILoginDeviceCredentialResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['LoginDeviceCredential'] = IResolversParentTypes['LoginDeviceCredential']> = {
|
11442
|
+
client_id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11443
|
+
device_Id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11444
|
+
device_name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11445
|
+
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11446
|
+
last_ip?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11447
|
+
last_used?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11448
|
+
type?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
11449
|
+
user_id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11450
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11451
|
+
};
|
11412
11452
|
export type ILoginErrorResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['LoginError'] = IResolversParentTypes['LoginError']> = {
|
11413
11453
|
error?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
11414
11454
|
timeStamp?: Resolver<Maybe<IResolversTypes['DateTime']>, ParentType, ContextType>;
|
@@ -12141,6 +12181,7 @@ export type IUserContextResolvers<ContextType = MyContext, ParentType extends IR
|
|
12141
12181
|
identity?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
12142
12182
|
namespace?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12143
12183
|
orgId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12184
|
+
orgName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12144
12185
|
orgRole?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12145
12186
|
orgSettingUri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
12146
12187
|
organization?: Resolver<IResolversTypes['Organization'], ParentType, ContextType>;
|
@@ -12205,6 +12246,7 @@ export type IUserProfileResolvers<ContextType = MyContext, ParentType extends IR
|
|
12205
12246
|
nonce?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12206
12247
|
phone_number?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12207
12248
|
picture?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
12249
|
+
provider?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12208
12250
|
sub?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12209
12251
|
updated_at?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
12210
12252
|
user_id?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
@@ -12352,6 +12394,7 @@ export type IResolvers<ContextType = MyContext> = {
|
|
12352
12394
|
JSON?: GraphQLScalarType;
|
12353
12395
|
JSONObject?: GraphQLScalarType;
|
12354
12396
|
LinkedIdentity?: ILinkedIdentityResolvers<ContextType>;
|
12397
|
+
LoginDeviceCredential?: ILoginDeviceCredentialResolvers<ContextType>;
|
12355
12398
|
LoginError?: ILoginErrorResolvers<ContextType>;
|
12356
12399
|
MachineConfiguration?: IMachineConfigurationResolvers<ContextType>;
|
12357
12400
|
MachineSettings?: IMachineSettingsResolvers<ContextType>;
|
@@ -12455,9 +12498,7 @@ export type IResolvers<ContextType = MyContext> = {
|
|
12455
12498
|
export type IDirectiveResolvers<ContextType = MyContext> = {
|
12456
12499
|
addAccountContext?: IAddAccountContextDirectiveResolver<any, any, ContextType>;
|
12457
12500
|
addNamespaceContext?: IAddNamespaceContextDirectiveResolver<any, any, ContextType>;
|
12458
|
-
cacheControl?: ICacheControlDirectiveResolver<any, any, ContextType>;
|
12459
12501
|
hasScope?: IHasScopeDirectiveResolver<any, any, ContextType>;
|
12460
|
-
invalidateCache?: IInvalidateCacheDirectiveResolver<any, any, ContextType>;
|
12461
12502
|
isAuthenticated?: IIsAuthenticatedDirectiveResolver<any, any, ContextType>;
|
12462
12503
|
profile?: IProfileDirectiveResolver<any, any, ContextType>;
|
12463
12504
|
};
|