@adminide-stack/core 1.1.1-alpha.301 → 1.1.1-alpha.309
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/interfaces/generated/generated-models.d.ts +212 -8
- package/lib/interfaces/generated/generated-models.js +58 -8
- package/lib/interfaces/generated/generated-models.js.map +1 -1
- package/lib/interfaces/service.d.ts +1 -0
- package/lib/modules/account-api/enums/index.d.ts +5 -0
- package/lib/modules/account-api/enums/index.js +5 -0
- package/lib/modules/account-api/enums/index.js.map +1 -1
- package/package.json +2 -2
@@ -99,7 +99,8 @@ export declare type IAccessTokenConnection = {
|
|
99
99
|
pageInfo: IPageInfo;
|
100
100
|
};
|
101
101
|
export declare const enum IAccountBroadcasterActions {
|
102
|
-
onAccountCreated = "onAccountCreated"
|
102
|
+
onAccountCreated = "onAccountCreated",
|
103
|
+
onAccountUpdated = "onAccountUpdated"
|
103
104
|
}
|
104
105
|
export declare type IAccountService = {
|
105
106
|
__typename?: 'AccountService';
|
@@ -515,6 +516,18 @@ export declare type IChartVersionAttributes = {
|
|
515
516
|
created?: Maybe<Scalars['String']>;
|
516
517
|
app_version?: Maybe<Scalars['String']>;
|
517
518
|
};
|
519
|
+
/** Address City Create Input */
|
520
|
+
export declare type ICityInput = {
|
521
|
+
/** Name of the state to display */
|
522
|
+
name: Scalars['String'];
|
523
|
+
/** ID of State to associate */
|
524
|
+
state: ITerritorialStateInput;
|
525
|
+
};
|
526
|
+
/** Address City Update Input */
|
527
|
+
export declare type ICityUpdateInput = {
|
528
|
+
name?: Maybe<Scalars['String']>;
|
529
|
+
state: ITerritorialStateUpdateInput;
|
530
|
+
};
|
518
531
|
export declare type IClient = {
|
519
532
|
__typename?: 'Client';
|
520
533
|
id?: Maybe<Scalars['ID']>;
|
@@ -781,6 +794,15 @@ export declare type IContributionSettingsProperties = {
|
|
781
794
|
readOnly?: Maybe<Scalars['Boolean']>;
|
782
795
|
disabled?: Maybe<Scalars['Boolean']>;
|
783
796
|
};
|
797
|
+
export declare type ICountry = {
|
798
|
+
__typename?: 'Country';
|
799
|
+
id: Scalars['ID'];
|
800
|
+
name: Scalars['String'];
|
801
|
+
phoneCode: Scalars['String'];
|
802
|
+
};
|
803
|
+
export declare type ICountryInput = {
|
804
|
+
name: Scalars['String'];
|
805
|
+
};
|
784
806
|
/** The result for Mutation.createAccessToken */
|
785
807
|
export declare type ICreateAccessTokenResult = {
|
786
808
|
__typename?: 'CreateAccessTokenResult';
|
@@ -1053,6 +1075,10 @@ export declare type IGenerateSSHKeysRequest = {
|
|
1053
1075
|
name?: Maybe<Scalars['String']>;
|
1054
1076
|
comment?: Maybe<Scalars['String']>;
|
1055
1077
|
};
|
1078
|
+
export declare type IGeoLocation = {
|
1079
|
+
__typename?: 'GeoLocation';
|
1080
|
+
coordinates?: Maybe<Array<Maybe<Scalars['Float']>>>;
|
1081
|
+
};
|
1056
1082
|
export declare const enum IGlobalCurrencies {
|
1057
1083
|
USD = "USD",
|
1058
1084
|
EURO = "EURO",
|
@@ -1126,6 +1152,15 @@ export declare type IIAuth0UserProfile = {
|
|
1126
1152
|
user_metadata?: Maybe<IIUserMetadata>;
|
1127
1153
|
app_metadata?: Maybe<Scalars['AnyObject']>;
|
1128
1154
|
};
|
1155
|
+
/** Address City Interface */
|
1156
|
+
export declare type IICity = {
|
1157
|
+
id: Scalars['ID'];
|
1158
|
+
name: Scalars['String'];
|
1159
|
+
state: IITerritorialState;
|
1160
|
+
location?: Maybe<IGeoLocation>;
|
1161
|
+
createdAt: Scalars['Date'];
|
1162
|
+
updatedAt?: Maybe<Scalars['Date']>;
|
1163
|
+
};
|
1129
1164
|
export declare type IIConfigurationChangeEvent = {
|
1130
1165
|
__typename?: 'IConfigurationChangeEvent';
|
1131
1166
|
source?: Maybe<ConfigurationTarget>;
|
@@ -1151,6 +1186,14 @@ export declare type IIConfigurationServiceupdateValueArgs = {
|
|
1151
1186
|
target?: Maybe<ConfigurationTarget>;
|
1152
1187
|
donotNotifyError?: Maybe<Scalars['Boolean']>;
|
1153
1188
|
};
|
1189
|
+
export declare type IICountry = {
|
1190
|
+
id: Scalars['ID'];
|
1191
|
+
name: Scalars['String'];
|
1192
|
+
phone_code: Scalars['String'];
|
1193
|
+
location?: Maybe<IGeoLocation>;
|
1194
|
+
createdAt: Scalars['Date'];
|
1195
|
+
updatedAt?: Maybe<Scalars['Date']>;
|
1196
|
+
};
|
1154
1197
|
export declare type IIDockerRegistry = {
|
1155
1198
|
url?: Maybe<Scalars['String']>;
|
1156
1199
|
name?: Maybe<Scalars['String']>;
|
@@ -1416,6 +1459,15 @@ export declare type IIStackCache = {
|
|
1416
1459
|
chartVersion: Scalars['String'];
|
1417
1460
|
variables?: Maybe<Array<Maybe<IIEnvVariableCache>>>;
|
1418
1461
|
};
|
1462
|
+
/** Territorial State */
|
1463
|
+
export declare type IITerritorialState = {
|
1464
|
+
id: Scalars['ID'];
|
1465
|
+
name: Scalars['String'];
|
1466
|
+
country: IICountry;
|
1467
|
+
location?: Maybe<IGeoLocation>;
|
1468
|
+
createdAt: Scalars['Date'];
|
1469
|
+
updatedAt?: Maybe<Scalars['Date']>;
|
1470
|
+
};
|
1419
1471
|
export declare type IIUser = {
|
1420
1472
|
id: Scalars['ID'];
|
1421
1473
|
username?: Maybe<Scalars['String']>;
|
@@ -1737,6 +1789,7 @@ export declare type IMutation = {
|
|
1737
1789
|
updateRoleValue?: Maybe<Scalars['Boolean']>;
|
1738
1790
|
updateSelectedOrgResource?: Maybe<Scalars['Boolean']>;
|
1739
1791
|
updateTask?: Maybe<Scalars['Boolean']>;
|
1792
|
+
updateUserAccount?: Maybe<Scalars['Boolean']>;
|
1740
1793
|
upload?: Maybe<Scalars['Boolean']>;
|
1741
1794
|
upsertProjectThroughIntegration?: Maybe<IProjects>;
|
1742
1795
|
};
|
@@ -2064,6 +2117,9 @@ export declare type IMutationupdateTaskArgs = {
|
|
2064
2117
|
id: Scalars['String'];
|
2065
2118
|
request?: Maybe<ITaskRequest>;
|
2066
2119
|
};
|
2120
|
+
export declare type IMutationupdateUserAccountArgs = {
|
2121
|
+
userInfo?: Maybe<IUserAuth0UpdateFields>;
|
2122
|
+
};
|
2067
2123
|
export declare type IMutationuploadArgs = {
|
2068
2124
|
repositoryName: Scalars['String'];
|
2069
2125
|
chartfile: Scalars['Upload'];
|
@@ -2511,6 +2567,15 @@ export declare const enum IPermissionType {
|
|
2511
2567
|
Deny = "Deny",
|
2512
2568
|
NotSet = "NotSet"
|
2513
2569
|
}
|
2570
|
+
/**
|
2571
|
+
* Additional User info provided provided through UI
|
2572
|
+
* Uses underscore namingspace to support Auth0
|
2573
|
+
* IUserMetadataInput
|
2574
|
+
*/
|
2575
|
+
export declare type IPhoneNumberInput = {
|
2576
|
+
countryCode?: Maybe<Scalars['String']>;
|
2577
|
+
phoneNumber?: Maybe<Scalars['String']>;
|
2578
|
+
};
|
2514
2579
|
export declare type IPolicySubject = {
|
2515
2580
|
__typename?: 'PolicySubject';
|
2516
2581
|
/** The URL to the policies. */
|
@@ -2850,6 +2915,7 @@ export declare type IQuery = {
|
|
2850
2915
|
fetchAuth0User?: Maybe<IUserProfile>;
|
2851
2916
|
filterIntegrationConfiguration?: Maybe<Array<Maybe<IIntegrationConfiguration>>>;
|
2852
2917
|
getAccounts?: Maybe<Array<Maybe<IUserAccount>>>;
|
2918
|
+
getAllCountries?: Maybe<Array<Maybe<ICountry>>>;
|
2853
2919
|
getAllIntegrationConfigurations?: Maybe<Array<Maybe<IIntegrationConfiguration>>>;
|
2854
2920
|
getAsanaConnectionState?: Maybe<IAsanaConnection>;
|
2855
2921
|
getAsanaWorkspaceProjects?: Maybe<Array<Maybe<IAsanaProjects>>>;
|
@@ -3636,6 +3702,18 @@ export declare type ITemplate = {
|
|
3636
3702
|
description?: Maybe<Scalars['String']>;
|
3637
3703
|
variables?: Maybe<Scalars['AnyObject']>;
|
3638
3704
|
};
|
3705
|
+
/** Address State Create Input */
|
3706
|
+
export declare type ITerritorialStateInput = {
|
3707
|
+
/** Name of the country to display */
|
3708
|
+
name: Scalars['String'];
|
3709
|
+
/** ID of Country to associate */
|
3710
|
+
country: Scalars['String'];
|
3711
|
+
};
|
3712
|
+
/** Address State Update Input */
|
3713
|
+
export declare type ITerritorialStateUpdateInput = {
|
3714
|
+
name?: Maybe<Scalars['String']>;
|
3715
|
+
country: Scalars['Int'];
|
3716
|
+
};
|
3639
3717
|
export declare type IUpdatedClient_Input = {
|
3640
3718
|
name?: Maybe<IName_Input>;
|
3641
3719
|
companyName?: Maybe<Scalars['String']>;
|
@@ -3767,7 +3845,7 @@ export declare type IUserAccountRemoveRequest = {
|
|
3767
3845
|
};
|
3768
3846
|
export declare type IUserAccountUpdateRequest = {
|
3769
3847
|
id: Scalars['String'];
|
3770
|
-
|
3848
|
+
payload?: Maybe<IUserAccount_Input>;
|
3771
3849
|
};
|
3772
3850
|
export declare type IUserAccountWhere = {
|
3773
3851
|
id?: Maybe<Scalars['String']>;
|
@@ -3775,16 +3853,11 @@ export declare type IUserAccountWhere = {
|
|
3775
3853
|
alias?: Maybe<Array<Maybe<Scalars['String']>>>;
|
3776
3854
|
username?: Maybe<Scalars['String']>;
|
3777
3855
|
};
|
3778
|
-
/**
|
3779
|
-
* Additional User info provided provided through UI
|
3780
|
-
* Uses underscore namingspace to support Auth0
|
3781
|
-
* IUserMetadataInput
|
3782
|
-
*/
|
3783
3856
|
export declare type IUserAuth0UpdateFields = {
|
3784
3857
|
family_name?: Maybe<Scalars['String']>;
|
3785
3858
|
given_name?: Maybe<Scalars['String']>;
|
3786
3859
|
username?: Maybe<Scalars['String']>;
|
3787
|
-
phone_number?: Maybe<
|
3860
|
+
phone_number?: Maybe<IPhoneNumberInput>;
|
3788
3861
|
work_email?: Maybe<Scalars['String']>;
|
3789
3862
|
country?: Maybe<Scalars['String']>;
|
3790
3863
|
company_name?: Maybe<Scalars['String']>;
|
@@ -4630,6 +4703,12 @@ export declare type IupdateTeamConfigurationMutationVariables = Exact<{
|
|
4630
4703
|
export declare type IupdateTeamConfigurationMutation = ({
|
4631
4704
|
__typename?: 'Mutation';
|
4632
4705
|
} & Pick<IMutation, 'updateConfigurationValue'>);
|
4706
|
+
export declare type IupdateUserAccountMutationVariables = Exact<{
|
4707
|
+
userInfo?: Maybe<IUserAuth0UpdateFields>;
|
4708
|
+
}>;
|
4709
|
+
export declare type IupdateUserAccountMutation = ({
|
4710
|
+
__typename?: 'Mutation';
|
4711
|
+
} & Pick<IMutation, 'updateUserAccount'>);
|
4633
4712
|
export declare type IUpsertProjectThroughIntegrationMutationVariables = Exact<{
|
4634
4713
|
where: IProjectWhereInput;
|
4635
4714
|
project?: Maybe<IUpdateProject_Input>;
|
@@ -4675,6 +4754,16 @@ export declare type IGetAccountsQuery = ({
|
|
4675
4754
|
__typename?: 'UserAccount';
|
4676
4755
|
} & Pick<IUserAccount, 'username' | 'email'>)>>>;
|
4677
4756
|
});
|
4757
|
+
export declare type IGetAllCountriesQueryVariables = Exact<{
|
4758
|
+
[key: string]: never;
|
4759
|
+
}>;
|
4760
|
+
export declare type IGetAllCountriesQuery = ({
|
4761
|
+
__typename?: 'Query';
|
4762
|
+
} & {
|
4763
|
+
getAllCountries?: Maybe<Array<Maybe<({
|
4764
|
+
__typename?: 'Country';
|
4765
|
+
} & Pick<ICountry, 'id' | 'name' | 'phoneCode'>)>>>;
|
4766
|
+
});
|
4678
4767
|
export declare type IGetAsanaConnectionStateQueryVariables = Exact<{
|
4679
4768
|
[key: string]: never;
|
4680
4769
|
}>;
|
@@ -7612,6 +7701,30 @@ export declare function useupdateTeamConfigurationMutation(baseOptions?: Apollo.
|
|
7612
7701
|
export declare type updateTeamConfigurationMutationHookResult = ReturnType<typeof useupdateTeamConfigurationMutation>;
|
7613
7702
|
export declare type updateTeamConfigurationMutationResult = Apollo.MutationResult<IupdateTeamConfigurationMutation>;
|
7614
7703
|
export declare type updateTeamConfigurationMutationOptions = Apollo.BaseMutationOptions<IupdateTeamConfigurationMutation, IupdateTeamConfigurationMutationVariables>;
|
7704
|
+
export declare const updateUserAccountDocument: DocumentNode;
|
7705
|
+
/**
|
7706
|
+
* __useupdateUserAccountMutation__
|
7707
|
+
*
|
7708
|
+
* To run a mutation, you first call `useupdateUserAccountMutation` within a React component and pass it any options that fit your needs.
|
7709
|
+
* When your component renders, `useupdateUserAccountMutation` returns a tuple that includes:
|
7710
|
+
* - A mutate function that you can call at any time to execute the mutation
|
7711
|
+
* - An object with fields that represent the current status of the mutation's execution
|
7712
|
+
*
|
7713
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
7714
|
+
*
|
7715
|
+
* @example
|
7716
|
+
* const [updateUserAccountMutation, { data, loading, error }] = useupdateUserAccountMutation({
|
7717
|
+
* variables: {
|
7718
|
+
* userInfo: // value for 'userInfo'
|
7719
|
+
* },
|
7720
|
+
* });
|
7721
|
+
*/
|
7722
|
+
export declare function useupdateUserAccountMutation(baseOptions?: Apollo.MutationHookOptions<IupdateUserAccountMutation, IupdateUserAccountMutationVariables>): Apollo.MutationTuple<IupdateUserAccountMutation, Exact<{
|
7723
|
+
userInfo?: IUserAuth0UpdateFields;
|
7724
|
+
}>>;
|
7725
|
+
export declare type updateUserAccountMutationHookResult = ReturnType<typeof useupdateUserAccountMutation>;
|
7726
|
+
export declare type updateUserAccountMutationResult = Apollo.MutationResult<IupdateUserAccountMutation>;
|
7727
|
+
export declare type updateUserAccountMutationOptions = Apollo.BaseMutationOptions<IupdateUserAccountMutation, IupdateUserAccountMutationVariables>;
|
7615
7728
|
export declare const UpsertProjectThroughIntegrationDocument: DocumentNode;
|
7616
7729
|
/**
|
7617
7730
|
* __useUpsertProjectThroughIntegrationMutation__
|
@@ -7715,6 +7828,31 @@ export declare function useGetAccountsLazyQuery(baseOptions?: Apollo.LazyQueryHo
|
|
7715
7828
|
export declare type GetAccountsQueryHookResult = ReturnType<typeof useGetAccountsQuery>;
|
7716
7829
|
export declare type GetAccountsLazyQueryHookResult = ReturnType<typeof useGetAccountsLazyQuery>;
|
7717
7830
|
export declare type GetAccountsQueryResult = Apollo.QueryResult<IGetAccountsQuery, IGetAccountsQueryVariables>;
|
7831
|
+
export declare const GetAllCountriesDocument: DocumentNode;
|
7832
|
+
/**
|
7833
|
+
* __useGetAllCountriesQuery__
|
7834
|
+
*
|
7835
|
+
* To run a query within a React component, call `useGetAllCountriesQuery` and pass it any options that fit your needs.
|
7836
|
+
* When your component renders, `useGetAllCountriesQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
7837
|
+
* you can use to render your UI.
|
7838
|
+
*
|
7839
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
7840
|
+
*
|
7841
|
+
* @example
|
7842
|
+
* const { data, loading, error } = useGetAllCountriesQuery({
|
7843
|
+
* variables: {
|
7844
|
+
* },
|
7845
|
+
* });
|
7846
|
+
*/
|
7847
|
+
export declare function useGetAllCountriesQuery(baseOptions?: Apollo.QueryHookOptions<IGetAllCountriesQuery, IGetAllCountriesQueryVariables>): Apollo.QueryResult<IGetAllCountriesQuery, Exact<{
|
7848
|
+
[key: string]: never;
|
7849
|
+
}>>;
|
7850
|
+
export declare function useGetAllCountriesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetAllCountriesQuery, IGetAllCountriesQueryVariables>): Apollo.QueryTuple<IGetAllCountriesQuery, Exact<{
|
7851
|
+
[key: string]: never;
|
7852
|
+
}>>;
|
7853
|
+
export declare type GetAllCountriesQueryHookResult = ReturnType<typeof useGetAllCountriesQuery>;
|
7854
|
+
export declare type GetAllCountriesLazyQueryHookResult = ReturnType<typeof useGetAllCountriesLazyQuery>;
|
7855
|
+
export declare type GetAllCountriesQueryResult = Apollo.QueryResult<IGetAllCountriesQuery, IGetAllCountriesQueryVariables>;
|
7718
7856
|
export declare const GetAsanaConnectionStateDocument: DocumentNode;
|
7719
7857
|
/**
|
7720
7858
|
* __useGetAsanaConnectionStateQuery__
|
@@ -11207,6 +11345,7 @@ export declare type IResolversTypes = {
|
|
11207
11345
|
IntegrationConfigurationFilterInput: IIntegrationConfigurationFilterInput;
|
11208
11346
|
IntegrationConfiguration: ResolverTypeWrapper<IIntegrationConfiguration>;
|
11209
11347
|
UserAccountWhere: IUserAccountWhere;
|
11348
|
+
Country: ResolverTypeWrapper<ICountry>;
|
11210
11349
|
AsanaConnection: ResolverTypeWrapper<IAsanaConnection>;
|
11211
11350
|
AsanaConnectionState: ResolverTypeWrapper<IAsanaConnectionState>;
|
11212
11351
|
AsanaUser: ResolverTypeWrapper<IAsanaUser>;
|
@@ -11351,6 +11490,7 @@ export declare type IResolversTypes = {
|
|
11351
11490
|
WhereDeleteAccessTokenInput: IWhereDeleteAccessTokenInput;
|
11352
11491
|
EmptyResponse: ResolverTypeWrapper<IEmptyResponse>;
|
11353
11492
|
UserAuth0UpdateFields: IUserAuth0UpdateFields;
|
11493
|
+
PhoneNumberInput: IPhoneNumberInput;
|
11354
11494
|
Response: ResolverTypeWrapper<IResponse>;
|
11355
11495
|
OrganizationRemoveRequest: IOrganizationRemoveRequest;
|
11356
11496
|
InvoiceMailRequest: IInvoiceMailRequest;
|
@@ -11402,6 +11542,10 @@ export declare type IResolversTypes = {
|
|
11402
11542
|
ChartAttributes: ResolverTypeWrapper<IChartAttributes>;
|
11403
11543
|
MonocularRepo: ResolverTypeWrapper<IMonocularRepo>;
|
11404
11544
|
ChartVersionAttributes: ResolverTypeWrapper<IChartVersionAttributes>;
|
11545
|
+
CityInput: ICityInput;
|
11546
|
+
TerritorialStateInput: ITerritorialStateInput;
|
11547
|
+
CityUpdateInput: ICityUpdateInput;
|
11548
|
+
TerritorialStateUpdateInput: ITerritorialStateUpdateInput;
|
11405
11549
|
ClientCacheTypeNames: IClientCacheTypeNames;
|
11406
11550
|
ClientContainerService: IClientContainerService;
|
11407
11551
|
ClientCreatedEvent: ResolverTypeWrapper<IClientCreatedEvent>;
|
@@ -11413,6 +11557,7 @@ export declare type IResolversTypes = {
|
|
11413
11557
|
ConfigurationModel: ResolverTypeWrapper<IConfigurationModel>;
|
11414
11558
|
ConfigurationTarget: ConfigurationTarget;
|
11415
11559
|
ContextServiceAction: IContextServiceAction;
|
11560
|
+
CountryInput: ICountryInput;
|
11416
11561
|
DockerContainerConfig: ResolverTypeWrapper<IDockerContainerConfig>;
|
11417
11562
|
DockerContainerGraphDriver: ResolverTypeWrapper<IDockerContainerGraphDriver>;
|
11418
11563
|
DockerImage: ResolverTypeWrapper<IDockerImage>;
|
@@ -11424,7 +11569,11 @@ export declare type IResolversTypes = {
|
|
11424
11569
|
FieldError: ResolverTypeWrapper<IFieldError>;
|
11425
11570
|
File: ResolverTypeWrapper<IFile>;
|
11426
11571
|
GenerateSSHKeysRequest: IGenerateSSHKeysRequest;
|
11572
|
+
GeoLocation: ResolverTypeWrapper<IGeoLocation>;
|
11427
11573
|
IAuth0Identity: never;
|
11574
|
+
ICity: never;
|
11575
|
+
ITerritorialState: never;
|
11576
|
+
ICountry: never;
|
11428
11577
|
IConfigurationChangeEvent: ResolverTypeWrapper<Omit<IIConfigurationChangeEvent, 'changedConfiguration'> & {
|
11429
11578
|
changedConfiguration?: Maybe<IResolversTypes['Configuration']>;
|
11430
11579
|
}>;
|
@@ -11601,6 +11750,7 @@ export declare type IResolversParentTypes = {
|
|
11601
11750
|
IntegrationConfigurationFilterInput: IIntegrationConfigurationFilterInput;
|
11602
11751
|
IntegrationConfiguration: IIntegrationConfiguration;
|
11603
11752
|
UserAccountWhere: IUserAccountWhere;
|
11753
|
+
Country: ICountry;
|
11604
11754
|
AsanaConnection: IAsanaConnection;
|
11605
11755
|
AsanaConnectionState: IAsanaConnectionState;
|
11606
11756
|
AsanaUser: IAsanaUser;
|
@@ -11740,6 +11890,7 @@ export declare type IResolversParentTypes = {
|
|
11740
11890
|
WhereDeleteAccessTokenInput: IWhereDeleteAccessTokenInput;
|
11741
11891
|
EmptyResponse: IEmptyResponse;
|
11742
11892
|
UserAuth0UpdateFields: IUserAuth0UpdateFields;
|
11893
|
+
PhoneNumberInput: IPhoneNumberInput;
|
11743
11894
|
Response: IResponse;
|
11744
11895
|
OrganizationRemoveRequest: IOrganizationRemoveRequest;
|
11745
11896
|
InvoiceMailRequest: IInvoiceMailRequest;
|
@@ -11784,9 +11935,14 @@ export declare type IResolversParentTypes = {
|
|
11784
11935
|
ChartAttributes: IChartAttributes;
|
11785
11936
|
MonocularRepo: IMonocularRepo;
|
11786
11937
|
ChartVersionAttributes: IChartVersionAttributes;
|
11938
|
+
CityInput: ICityInput;
|
11939
|
+
TerritorialStateInput: ITerritorialStateInput;
|
11940
|
+
CityUpdateInput: ICityUpdateInput;
|
11941
|
+
TerritorialStateUpdateInput: ITerritorialStateUpdateInput;
|
11787
11942
|
ClientCreatedEvent: IClientCreatedEvent;
|
11788
11943
|
ClientDeletedEvent: IClientDeletedEvent;
|
11789
11944
|
ConfigurationModel: IConfigurationModel;
|
11945
|
+
CountryInput: ICountryInput;
|
11790
11946
|
DockerContainerConfig: IDockerContainerConfig;
|
11791
11947
|
DockerContainerGraphDriver: IDockerContainerGraphDriver;
|
11792
11948
|
DockerImage: IDockerImage;
|
@@ -11797,7 +11953,11 @@ export declare type IResolversParentTypes = {
|
|
11797
11953
|
FieldError: IFieldError;
|
11798
11954
|
File: IFile;
|
11799
11955
|
GenerateSSHKeysRequest: IGenerateSSHKeysRequest;
|
11956
|
+
GeoLocation: IGeoLocation;
|
11800
11957
|
IAuth0Identity: never;
|
11958
|
+
ICity: never;
|
11959
|
+
ITerritorialState: never;
|
11960
|
+
ICountry: never;
|
11801
11961
|
IConfigurationChangeEvent: Omit<IIConfigurationChangeEvent, 'changedConfiguration'> & {
|
11802
11962
|
changedConfiguration?: Maybe<IResolversParentTypes['Configuration']>;
|
11803
11963
|
};
|
@@ -12236,6 +12396,12 @@ export declare type IContributionSettingsPropertiesResolvers<ContextType = MyCon
|
|
12236
12396
|
disabled?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
12237
12397
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12238
12398
|
};
|
12399
|
+
export declare type ICountryResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Country'] = IResolversParentTypes['Country']> = {
|
12400
|
+
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
12401
|
+
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
12402
|
+
phoneCode?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
12403
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12404
|
+
};
|
12239
12405
|
export declare type ICreateAccessTokenResultResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['CreateAccessTokenResult'] = IResolversParentTypes['CreateAccessTokenResult']> = {
|
12240
12406
|
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
12241
12407
|
token?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
@@ -12427,6 +12593,10 @@ export declare type IFileResolvers<ContextType = MyContext, ParentType extends I
|
|
12427
12593
|
encoding?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
12428
12594
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12429
12595
|
};
|
12596
|
+
export declare type IGeoLocationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['GeoLocation'] = IResolversParentTypes['GeoLocation']> = {
|
12597
|
+
coordinates?: Resolver<Maybe<Array<Maybe<IResolversTypes['Float']>>>, ParentType, ContextType>;
|
12598
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
12599
|
+
};
|
12430
12600
|
export declare type IGlobalSettingsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['GlobalSettings'] = IResolversParentTypes['GlobalSettings']> = {
|
12431
12601
|
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
12432
12602
|
latestSettings?: Resolver<Maybe<IResolversTypes['Settings']>, ParentType, ContextType>;
|
@@ -12483,6 +12653,15 @@ export declare type IIAuth0UserProfileResolvers<ContextType = MyContext, ParentT
|
|
12483
12653
|
user_metadata?: Resolver<Maybe<IResolversTypes['IUserMetadata']>, ParentType, ContextType>;
|
12484
12654
|
app_metadata?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
12485
12655
|
};
|
12656
|
+
export declare type IICityResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ICity'] = IResolversParentTypes['ICity']> = {
|
12657
|
+
__resolveType: TypeResolveFn<null, ParentType, ContextType>;
|
12658
|
+
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
12659
|
+
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
12660
|
+
state?: Resolver<IResolversTypes['ITerritorialState'], ParentType, ContextType>;
|
12661
|
+
location?: Resolver<Maybe<IResolversTypes['GeoLocation']>, ParentType, ContextType>;
|
12662
|
+
createdAt?: Resolver<IResolversTypes['Date'], ParentType, ContextType>;
|
12663
|
+
updatedAt?: Resolver<Maybe<IResolversTypes['Date']>, ParentType, ContextType>;
|
12664
|
+
};
|
12486
12665
|
export declare type IIConfigurationChangeEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IConfigurationChangeEvent'] = IResolversParentTypes['IConfigurationChangeEvent']> = {
|
12487
12666
|
source?: Resolver<Maybe<IResolversTypes['ConfigurationTarget']>, ParentType, ContextType>;
|
12488
12667
|
affectedKeys?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
@@ -12503,6 +12682,15 @@ export declare type IIConfigurationServiceResolvers<ContextType = MyContext, Par
|
|
12503
12682
|
__resolveType: TypeResolveFn<null, ParentType, ContextType>;
|
12504
12683
|
updateValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IIConfigurationServiceupdateValueArgs, 'key' | 'value' | 'overrides'>>;
|
12505
12684
|
};
|
12685
|
+
export declare type IICountryResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ICountry'] = IResolversParentTypes['ICountry']> = {
|
12686
|
+
__resolveType: TypeResolveFn<null, ParentType, ContextType>;
|
12687
|
+
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
12688
|
+
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
12689
|
+
phone_code?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
12690
|
+
location?: Resolver<Maybe<IResolversTypes['GeoLocation']>, ParentType, ContextType>;
|
12691
|
+
createdAt?: Resolver<IResolversTypes['Date'], ParentType, ContextType>;
|
12692
|
+
updatedAt?: Resolver<Maybe<IResolversTypes['Date']>, ParentType, ContextType>;
|
12693
|
+
};
|
12506
12694
|
export declare type IIEventWithContextResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IEventWithContext'] = IResolversParentTypes['IEventWithContext']> = {
|
12507
12695
|
__resolveType: TypeResolveFn<'OrganizationCreatedEvent' | 'OrganizationDeletedEvent', ParentType, ContextType>;
|
12508
12696
|
userContext?: Resolver<Maybe<IResolversTypes['UserContext']>, ParentType, ContextType>;
|
@@ -12623,6 +12811,15 @@ export declare type IISshKeySettingsResolvers<ContextType = MyContext, ParentTyp
|
|
12623
12811
|
subTopic?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12624
12812
|
sshNamespace?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12625
12813
|
};
|
12814
|
+
export declare type IITerritorialStateResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ITerritorialState'] = IResolversParentTypes['ITerritorialState']> = {
|
12815
|
+
__resolveType: TypeResolveFn<null, ParentType, ContextType>;
|
12816
|
+
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
12817
|
+
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
12818
|
+
country?: Resolver<IResolversTypes['ICountry'], ParentType, ContextType>;
|
12819
|
+
location?: Resolver<Maybe<IResolversTypes['GeoLocation']>, ParentType, ContextType>;
|
12820
|
+
createdAt?: Resolver<IResolversTypes['Date'], ParentType, ContextType>;
|
12821
|
+
updatedAt?: Resolver<Maybe<IResolversTypes['Date']>, ParentType, ContextType>;
|
12822
|
+
};
|
12626
12823
|
export declare type IIUserResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IUser'] = IResolversParentTypes['IUser']> = {
|
12627
12824
|
__resolveType: TypeResolveFn<'AuthUser', ParentType, ContextType>;
|
12628
12825
|
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
@@ -12809,6 +13006,7 @@ export declare type IMutationResolvers<ContextType = MyContext, ParentType exten
|
|
12809
13006
|
updateRoleValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationupdateRoleValueArgs, 'key' | 'value'>>;
|
12810
13007
|
updateSelectedOrgResource?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationupdateSelectedOrgResourceArgs, 'resource'>>;
|
12811
13008
|
updateTask?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationupdateTaskArgs, 'id'>>;
|
13009
|
+
updateUserAccount?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationupdateUserAccountArgs, never>>;
|
12812
13010
|
upload?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationuploadArgs, 'repositoryName' | 'chartfile'>>;
|
12813
13011
|
upsertProjectThroughIntegration?: Resolver<Maybe<IResolversTypes['Projects']>, ParentType, ContextType, RequireFields<IMutationupsertProjectThroughIntegrationArgs, 'where'>>;
|
12814
13012
|
};
|
@@ -13205,6 +13403,7 @@ export declare type IQueryResolvers<ContextType = MyContext, ParentType extends
|
|
13205
13403
|
fetchAuth0User?: Resolver<Maybe<IResolversTypes['UserProfile']>, ParentType, ContextType, RequireFields<IQueryfetchAuth0UserArgs, 'auth0UserId'>>;
|
13206
13404
|
filterIntegrationConfiguration?: Resolver<Maybe<Array<Maybe<IResolversTypes['IntegrationConfiguration']>>>, ParentType, ContextType, RequireFields<IQueryfilterIntegrationConfigurationArgs, never>>;
|
13207
13405
|
getAccounts?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserAccount']>>>, ParentType, ContextType, RequireFields<IQuerygetAccountsArgs, never>>;
|
13406
|
+
getAllCountries?: Resolver<Maybe<Array<Maybe<IResolversTypes['Country']>>>, ParentType, ContextType>;
|
13208
13407
|
getAllIntegrationConfigurations?: Resolver<Maybe<Array<Maybe<IResolversTypes['IntegrationConfiguration']>>>, ParentType, ContextType>;
|
13209
13408
|
getAsanaConnectionState?: Resolver<Maybe<IResolversTypes['AsanaConnection']>, ParentType, ContextType>;
|
13210
13409
|
getAsanaWorkspaceProjects?: Resolver<Maybe<Array<Maybe<IResolversTypes['AsanaProjects']>>>, ParentType, ContextType, RequireFields<IQuerygetAsanaWorkspaceProjectsArgs, 'workspaceId'>>;
|
@@ -13821,6 +14020,7 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
13821
14020
|
ContributionRoles?: IContributionRolesResolvers<ContextType>;
|
13822
14021
|
ContributionSettings?: IContributionSettingsResolvers<ContextType>;
|
13823
14022
|
ContributionSettingsProperties?: IContributionSettingsPropertiesResolvers<ContextType>;
|
14023
|
+
Country?: ICountryResolvers<ContextType>;
|
13824
14024
|
CreateAccessTokenResult?: ICreateAccessTokenResultResolvers<ContextType>;
|
13825
14025
|
CustomerInvoice?: ICustomerInvoiceResolvers<ContextType>;
|
13826
14026
|
Date?: GraphQLScalarType;
|
@@ -13845,15 +14045,18 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
13845
14045
|
ExternalResourceData?: IExternalResourceDataResolvers<ContextType>;
|
13846
14046
|
FieldError?: IFieldErrorResolvers<ContextType>;
|
13847
14047
|
File?: IFileResolvers<ContextType>;
|
14048
|
+
GeoLocation?: IGeoLocationResolvers<ContextType>;
|
13848
14049
|
GlobalSettings?: IGlobalSettingsResolvers<ContextType>;
|
13849
14050
|
IActivitySettings?: IIActivitySettingsResolvers<ContextType>;
|
13850
14051
|
IAuth0Identity?: IIAuth0IdentityResolvers<ContextType>;
|
13851
14052
|
IAuth0Token?: IIAuth0TokenResolvers<ContextType>;
|
13852
14053
|
IAuth0User?: IIAuth0UserResolvers<ContextType>;
|
13853
14054
|
IAuth0UserProfile?: IIAuth0UserProfileResolvers<ContextType>;
|
14055
|
+
ICity?: IICityResolvers<ContextType>;
|
13854
14056
|
IConfigurationChangeEvent?: IIConfigurationChangeEventResolvers<ContextType>;
|
13855
14057
|
IConfigurationModel?: IIConfigurationModelResolvers<ContextType>;
|
13856
14058
|
IConfigurationService?: IIConfigurationServiceResolvers<ContextType>;
|
14059
|
+
ICountry?: IICountryResolvers<ContextType>;
|
13857
14060
|
IEventWithContext?: IIEventWithContextResolvers<ContextType>;
|
13858
14061
|
ImageTags?: IImageTagsResolvers<ContextType>;
|
13859
14062
|
IMonocularSettings?: IIMonocularSettingsResolvers<ContextType>;
|
@@ -13870,6 +14073,7 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
13870
14073
|
IResourceUtilizationSettings?: IIResourceUtilizationSettingsResolvers<ContextType>;
|
13871
14074
|
ISettingsSubject?: IISettingsSubjectResolvers<ContextType>;
|
13872
14075
|
ISshKeySettings?: IISshKeySettingsResolvers<ContextType>;
|
14076
|
+
ITerritorialState?: IITerritorialStateResolvers<ContextType>;
|
13873
14077
|
IUser?: IIUserResolvers<ContextType>;
|
13874
14078
|
IUserMetadata?: IIUserMetadataResolvers<ContextType>;
|
13875
14079
|
IWorkspaceSettings?: IIWorkspaceSettingsResolvers<ContextType>;
|