@adminide-stack/core 2.0.1-alpha.0 → 2.0.1-alpha.2
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.
@@ -1175,7 +1175,7 @@ export declare type IMutationUpdateAuth0UserPasswordArgs = {
|
|
1175
1175
|
oldPassword?: Maybe<Scalars['String']>;
|
1176
1176
|
};
|
1177
1177
|
export declare type IMutationUpdateConfigurationArgs = {
|
1178
|
-
input:
|
1178
|
+
input: IPreferencesInputInput;
|
1179
1179
|
key: Scalars['String'];
|
1180
1180
|
value: Scalars['AnyObject'];
|
1181
1181
|
overrides?: Maybe<IConfigurationOverridesInput>;
|
@@ -1415,7 +1415,7 @@ export declare type IOrganizationCreateRequest = {
|
|
1415
1415
|
periodStop?: Maybe<Scalars['DateTime']>;
|
1416
1416
|
stripeId?: Maybe<Scalars['String']>;
|
1417
1417
|
stripeSubscriptionId?: Maybe<Scalars['String']>;
|
1418
|
-
invitations?: Maybe<Array<Maybe<
|
1418
|
+
invitations?: Maybe<Array<Maybe<IOrganizationInvitationInput>>>;
|
1419
1419
|
};
|
1420
1420
|
export declare type IOrganizationCreatedEvent = IIEventWithContext & {
|
1421
1421
|
__typename?: 'OrganizationCreatedEvent';
|
@@ -1443,6 +1443,28 @@ export declare type IOrganizationIdentifier = {
|
|
1443
1443
|
id?: Maybe<Scalars['String']>;
|
1444
1444
|
configPath?: Maybe<Scalars['URI']>;
|
1445
1445
|
};
|
1446
|
+
export declare type IOrganizationInput = {
|
1447
|
+
id?: Maybe<Scalars['ID']>;
|
1448
|
+
name: Scalars['String'];
|
1449
|
+
title?: Maybe<Scalars['String']>;
|
1450
|
+
description?: Maybe<Scalars['String']>;
|
1451
|
+
picture?: Maybe<Scalars['String']>;
|
1452
|
+
stripeId?: Maybe<Scalars['String']>;
|
1453
|
+
namespace?: Maybe<Scalars['String']>;
|
1454
|
+
orgUserCount?: Maybe<Scalars['Int']>;
|
1455
|
+
createdAt?: Maybe<Scalars['DateTime']>;
|
1456
|
+
updatedAt?: Maybe<Scalars['DateTime']>;
|
1457
|
+
orgMembers?: Maybe<Array<Maybe<IOrgUserInput>>>;
|
1458
|
+
periodStart?: Maybe<Scalars['DateTime']>;
|
1459
|
+
periodStop?: Maybe<Scalars['DateTime']>;
|
1460
|
+
billingLeaders?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1461
|
+
billingEmail?: Maybe<Scalars['String']>;
|
1462
|
+
isBillingLeader?: Maybe<Scalars['Boolean']>;
|
1463
|
+
mainBilingLeaderId?: Maybe<Scalars['String']>;
|
1464
|
+
stripeSubscriptionId?: Maybe<Scalars['String']>;
|
1465
|
+
invitations?: Maybe<Array<Maybe<IOrganizationInvitationInput>>>;
|
1466
|
+
status?: Maybe<Scalars['String']>;
|
1467
|
+
};
|
1446
1468
|
export declare type IOrganizationInvitation = {
|
1447
1469
|
__typename?: 'OrganizationInvitation';
|
1448
1470
|
id: Scalars['ID'];
|
@@ -1466,14 +1488,7 @@ export declare type IOrganizationInvitationDecode = {
|
|
1466
1488
|
invitationId?: Maybe<Scalars['String']>;
|
1467
1489
|
invitedBy?: Maybe<Scalars['String']>;
|
1468
1490
|
};
|
1469
|
-
export declare type
|
1470
|
-
teamId?: Maybe<Scalars['String']>;
|
1471
|
-
emails?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1472
|
-
invitedBy?: Maybe<Scalars['String']>;
|
1473
|
-
orgName?: Maybe<Scalars['String']>;
|
1474
|
-
role?: Maybe<Scalars['String']>;
|
1475
|
-
};
|
1476
|
-
export declare type IOrganizationInvitation_Input = {
|
1491
|
+
export declare type IOrganizationInvitationInput = {
|
1477
1492
|
email?: Maybe<Scalars['String']>;
|
1478
1493
|
teamId?: Maybe<Scalars['String']>;
|
1479
1494
|
role?: Maybe<IApplicationRoles>;
|
@@ -1486,6 +1501,13 @@ export declare type IOrganizationInvitation_Input = {
|
|
1486
1501
|
acceptedAt?: Maybe<Scalars['DateTime']>;
|
1487
1502
|
tokenExpiration?: Maybe<Scalars['DateTime']>;
|
1488
1503
|
};
|
1504
|
+
export declare type IOrganizationInvitationRequest = {
|
1505
|
+
teamId?: Maybe<Scalars['String']>;
|
1506
|
+
emails?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1507
|
+
invitedBy?: Maybe<Scalars['String']>;
|
1508
|
+
orgName?: Maybe<Scalars['String']>;
|
1509
|
+
role?: Maybe<Scalars['String']>;
|
1510
|
+
};
|
1489
1511
|
export declare type IOrganizationMember = {
|
1490
1512
|
__typename?: 'OrganizationMember';
|
1491
1513
|
id?: Maybe<Scalars['String']>;
|
@@ -1631,29 +1653,7 @@ export declare type IOrganizationSettings = IISettingsSubject & {
|
|
1631
1653
|
export declare type IOrganizationUpdateRequest = {
|
1632
1654
|
id?: Maybe<Scalars['String']>;
|
1633
1655
|
requestedUserId?: Maybe<Scalars['String']>;
|
1634
|
-
payload?: Maybe<
|
1635
|
-
};
|
1636
|
-
export declare type IOrganization_Input = {
|
1637
|
-
id?: Maybe<Scalars['ID']>;
|
1638
|
-
name: Scalars['String'];
|
1639
|
-
title?: Maybe<Scalars['String']>;
|
1640
|
-
description?: Maybe<Scalars['String']>;
|
1641
|
-
picture?: Maybe<Scalars['String']>;
|
1642
|
-
stripeId?: Maybe<Scalars['String']>;
|
1643
|
-
namespace?: Maybe<Scalars['String']>;
|
1644
|
-
orgUserCount?: Maybe<Scalars['Int']>;
|
1645
|
-
createdAt?: Maybe<Scalars['DateTime']>;
|
1646
|
-
updatedAt?: Maybe<Scalars['DateTime']>;
|
1647
|
-
orgMembers?: Maybe<Array<Maybe<IOrgUserInput>>>;
|
1648
|
-
periodStart?: Maybe<Scalars['DateTime']>;
|
1649
|
-
periodStop?: Maybe<Scalars['DateTime']>;
|
1650
|
-
billingLeaders?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1651
|
-
billingEmail?: Maybe<Scalars['String']>;
|
1652
|
-
isBillingLeader?: Maybe<Scalars['Boolean']>;
|
1653
|
-
mainBilingLeaderId?: Maybe<Scalars['String']>;
|
1654
|
-
stripeSubscriptionId?: Maybe<Scalars['String']>;
|
1655
|
-
invitations?: Maybe<Array<Maybe<IOrganizationInvitation_Input>>>;
|
1656
|
-
status?: Maybe<Scalars['String']>;
|
1656
|
+
payload?: Maybe<IOrganizationInput>;
|
1657
1657
|
};
|
1658
1658
|
export declare type IOrganizationsDeactivatedEvent = {
|
1659
1659
|
__typename?: 'OrganizationsDeactivatedEvent';
|
@@ -1816,11 +1816,11 @@ export declare type IPreferencesInput = {
|
|
1816
1816
|
editableSettingsInput?: Maybe<Scalars['URI']>;
|
1817
1817
|
defaultPreferencesInput?: Maybe<Scalars['URI']>;
|
1818
1818
|
};
|
1819
|
-
export declare type
|
1819
|
+
export declare type IPreferencesInputInput = {
|
1820
1820
|
editableSettingsInput?: Maybe<Scalars['URI']>;
|
1821
1821
|
defaultPreferencesInput?: Maybe<Scalars['URI']>;
|
1822
1822
|
};
|
1823
|
-
export declare type
|
1823
|
+
export declare type IPreferencesOpenOptionsInput = {
|
1824
1824
|
/** Filter to the sub data to be shown within the content. */
|
1825
1825
|
query?: Maybe<Scalars['String']>;
|
1826
1826
|
/** Type of the default data. */
|
@@ -2065,10 +2065,10 @@ export declare type IQueryNodeArgs = {
|
|
2065
2065
|
export declare type IQueryOpenPreferencesSettingsArgs = {
|
2066
2066
|
resource?: Maybe<Scalars['URI']>;
|
2067
2067
|
jsonEditor?: Maybe<Scalars['Boolean']>;
|
2068
|
-
options?: Maybe<
|
2068
|
+
options?: Maybe<IPreferencesOpenOptionsInput>;
|
2069
2069
|
};
|
2070
2070
|
export declare type IQueryResolveConfigurationArgs = {
|
2071
|
-
input:
|
2071
|
+
input: IPreferencesInputInput;
|
2072
2072
|
key?: Maybe<Scalars['String']>;
|
2073
2073
|
overrides?: Maybe<IConfigurationOverridesInput>;
|
2074
2074
|
};
|
@@ -2418,7 +2418,7 @@ export declare type ITeamServiceRemoveTeamArgs = {
|
|
2418
2418
|
team?: Maybe<ITeamRemoveRequest>;
|
2419
2419
|
};
|
2420
2420
|
export declare type ITeamServiceCreateDefaultTeamArgs = {
|
2421
|
-
organization?: Maybe<
|
2421
|
+
organization?: Maybe<IOrganizationInput>;
|
2422
2422
|
user?: Maybe<IAuthUserInput>;
|
2423
2423
|
};
|
2424
2424
|
export declare type ITeamServiceSendProjectNotificationArgs = {
|
@@ -2531,6 +2531,13 @@ export declare type IUserAccountCreatedEvent = {
|
|
2531
2531
|
createdUser?: Maybe<IUserAccountCreatedDetailedEvent>;
|
2532
2532
|
sourceUser?: Maybe<IUserProfile>;
|
2533
2533
|
};
|
2534
|
+
export declare type IUserAccountInput = {
|
2535
|
+
id?: Maybe<Scalars['String']>;
|
2536
|
+
email?: Maybe<Scalars['String']>;
|
2537
|
+
alias?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2538
|
+
username?: Maybe<Scalars['String']>;
|
2539
|
+
tokens?: Maybe<Array<Maybe<IUserTokenInput>>>;
|
2540
|
+
};
|
2534
2541
|
export declare type IUserAccountRemoveRequest = {
|
2535
2542
|
id?: Maybe<Scalars['String']>;
|
2536
2543
|
};
|
@@ -2544,7 +2551,7 @@ export declare type IUserAccountRemovedEvent = {
|
|
2544
2551
|
};
|
2545
2552
|
export declare type IUserAccountUpdateRequest = {
|
2546
2553
|
id: Scalars['String'];
|
2547
|
-
payload?: Maybe<
|
2554
|
+
payload?: Maybe<IUserAccountInput>;
|
2548
2555
|
};
|
2549
2556
|
export declare type IUserAccountWhere = {
|
2550
2557
|
id?: Maybe<Scalars['String']>;
|
@@ -2552,13 +2559,6 @@ export declare type IUserAccountWhere = {
|
|
2552
2559
|
alias?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2553
2560
|
username?: Maybe<Scalars['String']>;
|
2554
2561
|
};
|
2555
|
-
export declare type IUserAccount_Input = {
|
2556
|
-
id?: Maybe<Scalars['String']>;
|
2557
|
-
email?: Maybe<Scalars['String']>;
|
2558
|
-
alias?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2559
|
-
username?: Maybe<Scalars['String']>;
|
2560
|
-
tokens?: Maybe<Array<Maybe<IUserTokenInput>>>;
|
2561
|
-
};
|
2562
2562
|
export declare type IUserAuth0Info = {
|
2563
2563
|
__typename?: 'UserAuth0Info';
|
2564
2564
|
auth0Id?: Maybe<Scalars['String']>;
|
@@ -2673,7 +2673,7 @@ export declare type IUserOrg = {
|
|
2673
2673
|
role?: Maybe<IApplicationRoles>;
|
2674
2674
|
inactive?: Maybe<Scalars['Boolean']>;
|
2675
2675
|
};
|
2676
|
-
export declare type
|
2676
|
+
export declare type IUserOrgInput = {
|
2677
2677
|
userId: Scalars['String'];
|
2678
2678
|
role?: Maybe<IApplicationRoles>;
|
2679
2679
|
inactive?: Maybe<Scalars['Boolean']>;
|
@@ -3636,7 +3636,7 @@ export declare type IReassignConfigurationMutation = ({
|
|
3636
3636
|
__typename?: 'Mutation';
|
3637
3637
|
} & Pick<IMutation, 'reassignRole'>);
|
3638
3638
|
export declare type IUpdateConfigurationMutationVariables = Exact<{
|
3639
|
-
input:
|
3639
|
+
input: IPreferencesInputInput;
|
3640
3640
|
key: Scalars['String'];
|
3641
3641
|
value: Scalars['AnyObject'];
|
3642
3642
|
overrides?: Maybe<IConfigurationOverridesInput>;
|
@@ -3809,7 +3809,7 @@ export declare type IGetUserAccessRoleQuery = ({
|
|
3809
3809
|
export declare type IOpenPreferencesSettingsQueryVariables = Exact<{
|
3810
3810
|
resource?: Maybe<Scalars['URI']>;
|
3811
3811
|
jsonEditor?: Maybe<Scalars['Boolean']>;
|
3812
|
-
options?: Maybe<
|
3812
|
+
options?: Maybe<IPreferencesOpenOptionsInput>;
|
3813
3813
|
}>;
|
3814
3814
|
export declare type IOpenPreferencesSettingsQuery = ({
|
3815
3815
|
__typename?: 'Query';
|
@@ -3901,7 +3901,7 @@ export declare type IGetOrgWithResourcesRoleQuery = ({
|
|
3901
3901
|
}>>>;
|
3902
3902
|
});
|
3903
3903
|
export declare type IResolveConfigurationQueryVariables = Exact<{
|
3904
|
-
input:
|
3904
|
+
input: IPreferencesInputInput;
|
3905
3905
|
key?: Maybe<Scalars['String']>;
|
3906
3906
|
overrides?: Maybe<IConfigurationOverridesInput>;
|
3907
3907
|
}>;
|
@@ -6100,7 +6100,7 @@ export declare const UpdateConfigurationDocument: DocumentNode;
|
|
6100
6100
|
* });
|
6101
6101
|
*/
|
6102
6102
|
export declare function useUpdateConfigurationMutation(baseOptions?: Apollo.MutationHookOptions<IUpdateConfigurationMutation, IUpdateConfigurationMutationVariables>): Apollo.MutationTuple<IUpdateConfigurationMutation, Exact<{
|
6103
|
-
input:
|
6103
|
+
input: IPreferencesInputInput;
|
6104
6104
|
key: string;
|
6105
6105
|
value: any;
|
6106
6106
|
overrides?: IConfigurationOverridesInput;
|
@@ -6444,12 +6444,12 @@ export declare const OpenPreferencesSettingsDocument: DocumentNode;
|
|
6444
6444
|
export declare function useOpenPreferencesSettingsQuery(baseOptions?: Apollo.QueryHookOptions<IOpenPreferencesSettingsQuery, IOpenPreferencesSettingsQueryVariables>): Apollo.QueryResult<IOpenPreferencesSettingsQuery, Exact<{
|
6445
6445
|
resource?: URI;
|
6446
6446
|
jsonEditor?: boolean;
|
6447
|
-
options?:
|
6447
|
+
options?: IPreferencesOpenOptionsInput;
|
6448
6448
|
}>>;
|
6449
6449
|
export declare function useOpenPreferencesSettingsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IOpenPreferencesSettingsQuery, IOpenPreferencesSettingsQueryVariables>): Apollo.LazyQueryResultTuple<IOpenPreferencesSettingsQuery, Exact<{
|
6450
6450
|
resource?: URI;
|
6451
6451
|
jsonEditor?: boolean;
|
6452
|
-
options?:
|
6452
|
+
options?: IPreferencesOpenOptionsInput;
|
6453
6453
|
}>>;
|
6454
6454
|
export declare type OpenPreferencesSettingsQueryHookResult = ReturnType<typeof useOpenPreferencesSettingsQuery>;
|
6455
6455
|
export declare type OpenPreferencesSettingsLazyQueryHookResult = ReturnType<typeof useOpenPreferencesSettingsLazyQuery>;
|
@@ -6604,12 +6604,12 @@ export declare const ResolveConfigurationDocument: DocumentNode;
|
|
6604
6604
|
* });
|
6605
6605
|
*/
|
6606
6606
|
export declare function useResolveConfigurationQuery(baseOptions: Apollo.QueryHookOptions<IResolveConfigurationQuery, IResolveConfigurationQueryVariables>): Apollo.QueryResult<IResolveConfigurationQuery, Exact<{
|
6607
|
-
input:
|
6607
|
+
input: IPreferencesInputInput;
|
6608
6608
|
key?: string;
|
6609
6609
|
overrides?: IConfigurationOverridesInput;
|
6610
6610
|
}>>;
|
6611
6611
|
export declare function useResolveConfigurationLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IResolveConfigurationQuery, IResolveConfigurationQueryVariables>): Apollo.LazyQueryResultTuple<IResolveConfigurationQuery, Exact<{
|
6612
|
-
input:
|
6612
|
+
input: IPreferencesInputInput;
|
6613
6613
|
key?: string;
|
6614
6614
|
overrides?: IConfigurationOverridesInput;
|
6615
6615
|
}>>;
|
@@ -7475,10 +7475,11 @@ export declare type IResolversTypes = {
|
|
7475
7475
|
}>;
|
7476
7476
|
OrganizationDeletedEvent: ResolverTypeWrapper<IOrganizationDeletedEvent>;
|
7477
7477
|
OrganizationIdentifier: ResolverTypeWrapper<IOrganizationIdentifier>;
|
7478
|
+
OrganizationInput: IOrganizationInput;
|
7478
7479
|
OrganizationInvitation: ResolverTypeWrapper<IOrganizationInvitation>;
|
7479
7480
|
OrganizationInvitationDecode: ResolverTypeWrapper<IOrganizationInvitationDecode>;
|
7481
|
+
OrganizationInvitationInput: IOrganizationInvitationInput;
|
7480
7482
|
OrganizationInvitationRequest: IOrganizationInvitationRequest;
|
7481
|
-
OrganizationInvitation_Input: IOrganizationInvitation_Input;
|
7482
7483
|
OrganizationMember: ResolverTypeWrapper<IOrganizationMember>;
|
7483
7484
|
OrganizationNotificationValues: IOrganizationNotificationValues;
|
7484
7485
|
OrganizationPolicy: ResolverTypeWrapper<IOrganizationPolicy>;
|
@@ -7491,7 +7492,6 @@ export declare type IResolversTypes = {
|
|
7491
7492
|
OrganizationServiceAction: IOrganizationServiceAction;
|
7492
7493
|
OrganizationSettings: ResolverTypeWrapper<IOrganizationSettings>;
|
7493
7494
|
OrganizationUpdateRequest: IOrganizationUpdateRequest;
|
7494
|
-
Organization_Input: IOrganization_Input;
|
7495
7495
|
OrganizationsDeactivatedEvent: ResolverTypeWrapper<IOrganizationsDeactivatedEvent>;
|
7496
7496
|
OrganizationsDeletedEvent: ResolverTypeWrapper<IOrganizationsDeletedEvent>;
|
7497
7497
|
Overrides: ResolverTypeWrapper<IOverrides>;
|
@@ -7518,8 +7518,8 @@ export declare type IResolversTypes = {
|
|
7518
7518
|
Preference_Teams: ResolverTypeWrapper<IPreference_Teams>;
|
7519
7519
|
Preferences: ResolverTypeWrapper<IPreferences>;
|
7520
7520
|
PreferencesInput: ResolverTypeWrapper<IPreferencesInput>;
|
7521
|
-
|
7522
|
-
|
7521
|
+
PreferencesInputInput: IPreferencesInputInput;
|
7522
|
+
PreferencesOpenOptionsInput: IPreferencesOpenOptionsInput;
|
7523
7523
|
PreferencesResponse: ResolverTypeWrapper<IPreferencesResponse>;
|
7524
7524
|
PreferencesType: ResolverTypeWrapper<IPreferencesType>;
|
7525
7525
|
Query: ResolverTypeWrapper<{}>;
|
@@ -7581,11 +7581,11 @@ export declare type IResolversTypes = {
|
|
7581
7581
|
UserAccountCreateRequest: IUserAccountCreateRequest;
|
7582
7582
|
UserAccountCreatedDetailedEvent: ResolverTypeWrapper<IUserAccountCreatedDetailedEvent>;
|
7583
7583
|
UserAccountCreatedEvent: ResolverTypeWrapper<IUserAccountCreatedEvent>;
|
7584
|
+
UserAccountInput: IUserAccountInput;
|
7584
7585
|
UserAccountRemoveRequest: IUserAccountRemoveRequest;
|
7585
7586
|
UserAccountRemovedEvent: ResolverTypeWrapper<IUserAccountRemovedEvent>;
|
7586
7587
|
UserAccountUpdateRequest: IUserAccountUpdateRequest;
|
7587
7588
|
UserAccountWhere: IUserAccountWhere;
|
7588
|
-
UserAccount_Input: IUserAccount_Input;
|
7589
7589
|
UserAuth0Info: ResolverTypeWrapper<IUserAuth0Info>;
|
7590
7590
|
UserAuth0Integrations: ResolverTypeWrapper<IUserAuth0Integrations>;
|
7591
7591
|
UserAuth0SessionDeviceInfo: ResolverTypeWrapper<IUserAuth0SessionDeviceInfo>;
|
@@ -7598,7 +7598,7 @@ export declare type IResolversTypes = {
|
|
7598
7598
|
UserMetadata: ResolverTypeWrapper<IUserMetadata>;
|
7599
7599
|
UserOrderBy: IUserOrderBy;
|
7600
7600
|
UserOrg: ResolverTypeWrapper<IUserOrg>;
|
7601
|
-
|
7601
|
+
UserOrgInput: IUserOrgInput;
|
7602
7602
|
UserPasswordResetInput: IUserPasswordResetInput;
|
7603
7603
|
UserPreviousValues: ResolverTypeWrapper<IUserPreviousValues>;
|
7604
7604
|
UserProfile: ResolverTypeWrapper<IUserProfile>;
|
@@ -7725,10 +7725,11 @@ export declare type IResolversParentTypes = {
|
|
7725
7725
|
};
|
7726
7726
|
OrganizationDeletedEvent: IOrganizationDeletedEvent;
|
7727
7727
|
OrganizationIdentifier: IOrganizationIdentifier;
|
7728
|
+
OrganizationInput: IOrganizationInput;
|
7728
7729
|
OrganizationInvitation: IOrganizationInvitation;
|
7729
7730
|
OrganizationInvitationDecode: IOrganizationInvitationDecode;
|
7731
|
+
OrganizationInvitationInput: IOrganizationInvitationInput;
|
7730
7732
|
OrganizationInvitationRequest: IOrganizationInvitationRequest;
|
7731
|
-
OrganizationInvitation_Input: IOrganizationInvitation_Input;
|
7732
7733
|
OrganizationMember: IOrganizationMember;
|
7733
7734
|
OrganizationNotificationValues: IOrganizationNotificationValues;
|
7734
7735
|
OrganizationPolicy: IOrganizationPolicy;
|
@@ -7740,7 +7741,6 @@ export declare type IResolversParentTypes = {
|
|
7740
7741
|
OrganizationService: IOrganizationService;
|
7741
7742
|
OrganizationSettings: IOrganizationSettings;
|
7742
7743
|
OrganizationUpdateRequest: IOrganizationUpdateRequest;
|
7743
|
-
Organization_Input: IOrganization_Input;
|
7744
7744
|
OrganizationsDeactivatedEvent: IOrganizationsDeactivatedEvent;
|
7745
7745
|
OrganizationsDeletedEvent: IOrganizationsDeletedEvent;
|
7746
7746
|
Overrides: IOverrides;
|
@@ -7762,8 +7762,8 @@ export declare type IResolversParentTypes = {
|
|
7762
7762
|
Preference_Teams: IPreference_Teams;
|
7763
7763
|
Preferences: IPreferences;
|
7764
7764
|
PreferencesInput: IPreferencesInput;
|
7765
|
-
|
7766
|
-
|
7765
|
+
PreferencesInputInput: IPreferencesInputInput;
|
7766
|
+
PreferencesOpenOptionsInput: IPreferencesOpenOptionsInput;
|
7767
7767
|
PreferencesResponse: IPreferencesResponse;
|
7768
7768
|
PreferencesType: IPreferencesType;
|
7769
7769
|
Query: {};
|
@@ -7815,11 +7815,11 @@ export declare type IResolversParentTypes = {
|
|
7815
7815
|
UserAccountCreateRequest: IUserAccountCreateRequest;
|
7816
7816
|
UserAccountCreatedDetailedEvent: IUserAccountCreatedDetailedEvent;
|
7817
7817
|
UserAccountCreatedEvent: IUserAccountCreatedEvent;
|
7818
|
+
UserAccountInput: IUserAccountInput;
|
7818
7819
|
UserAccountRemoveRequest: IUserAccountRemoveRequest;
|
7819
7820
|
UserAccountRemovedEvent: IUserAccountRemovedEvent;
|
7820
7821
|
UserAccountUpdateRequest: IUserAccountUpdateRequest;
|
7821
7822
|
UserAccountWhere: IUserAccountWhere;
|
7822
|
-
UserAccount_Input: IUserAccount_Input;
|
7823
7823
|
UserAuth0Info: IUserAuth0Info;
|
7824
7824
|
UserAuth0Integrations: IUserAuth0Integrations;
|
7825
7825
|
UserAuth0SessionDeviceInfo: IUserAuth0SessionDeviceInfo;
|
@@ -7830,7 +7830,7 @@ export declare type IResolversParentTypes = {
|
|
7830
7830
|
UserDevice: IUserDevice;
|
7831
7831
|
UserMetadata: IUserMetadata;
|
7832
7832
|
UserOrg: IUserOrg;
|
7833
|
-
|
7833
|
+
UserOrgInput: IUserOrgInput;
|
7834
7834
|
UserPasswordResetInput: IUserPasswordResetInput;
|
7835
7835
|
UserPreviousValues: IUserPreviousValues;
|
7836
7836
|
UserProfile: IUserProfile;
|
@@ -2084,7 +2084,7 @@ function useReassignConfigurationMutation(baseOptions) {
|
|
2084
2084
|
return Apollo.useMutation(exports.ReassignConfigurationDocument, options);
|
2085
2085
|
}
|
2086
2086
|
exports.useReassignConfigurationMutation = useReassignConfigurationMutation;
|
2087
|
-
exports.UpdateConfigurationDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "UpdateConfiguration" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "
|
2087
|
+
exports.UpdateConfigurationDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "UpdateConfiguration" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "PreferencesInputInput" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "key" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "value" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "AnyObject" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "overrides" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "ConfigurationOverridesInput" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "target" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "donotNotifyError" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Boolean" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "updateConfiguration" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "key" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "key" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "value" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "value" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "overrides" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "overrides" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "target" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "target" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "donotNotifyError" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "donotNotifyError" } } }], "directives": [{ "kind": "Directive", "name": { "kind": "Name", "value": "client" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "always" }, "value": { "kind": "BooleanValue", "value": true } }] }] }] } }] };
|
2088
2088
|
/**
|
2089
2089
|
* __useUpdateConfigurationMutation__
|
2090
2090
|
*
|
@@ -2434,7 +2434,7 @@ function useGetUserAccessRoleLazyQuery(baseOptions) {
|
|
2434
2434
|
return Apollo.useLazyQuery(exports.GetUserAccessRoleDocument, options);
|
2435
2435
|
}
|
2436
2436
|
exports.useGetUserAccessRoleLazyQuery = useGetUserAccessRoleLazyQuery;
|
2437
|
-
exports.OpenPreferencesSettingsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "OpenPreferencesSettings" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "resource" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "URI" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "jsonEditor" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Boolean" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "options" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "
|
2437
|
+
exports.OpenPreferencesSettingsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "OpenPreferencesSettings" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "resource" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "URI" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "jsonEditor" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Boolean" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "options" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "PreferencesOpenOptionsInput" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "openPreferencesSettings" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "resource" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "resource" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "jsonEditor" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "jsonEditor" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "options" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "options" } } }], "directives": [{ "kind": "Directive", "name": { "kind": "Name", "value": "client" } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "editableSettingsInput" } }, { "kind": "Field", "name": { "kind": "Name", "value": "defaultPreferencesInput" } }] } }] } }] };
|
2438
2438
|
/**
|
2439
2439
|
* __useOpenPreferencesSettingsQuery__
|
2440
2440
|
*
|
@@ -2598,7 +2598,7 @@ function useGetOrgWithResourcesRoleLazyQuery(baseOptions) {
|
|
2598
2598
|
return Apollo.useLazyQuery(exports.GetOrgWithResourcesRoleDocument, options);
|
2599
2599
|
}
|
2600
2600
|
exports.useGetOrgWithResourcesRoleLazyQuery = useGetOrgWithResourcesRoleLazyQuery;
|
2601
|
-
exports.ResolveConfigurationDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "ResolveConfiguration" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "
|
2601
|
+
exports.ResolveConfigurationDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "ResolveConfiguration" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "PreferencesInputInput" } } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "key" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "overrides" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "ConfigurationOverridesInput" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "resolveConfiguration" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "key" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "key" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "overrides" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "overrides" } } }], "directives": [{ "kind": "Directive", "name": { "kind": "Name", "value": "client" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "always" }, "value": { "kind": "BooleanValue", "value": true } }] }] }] } }] };
|
2602
2602
|
/**
|
2603
2603
|
* __useResolveConfigurationQuery__
|
2604
2604
|
*
|