@adminide-stack/core 6.0.3-alpha.64 → 6.5.1-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,7 +4,7 @@ import { ConfigurationTarget } from '../configuration';
|
|
4
4
|
import { GraphQLResolveInfo, GraphQLScalarType, GraphQLScalarTypeConfig } from 'graphql';
|
5
5
|
import { MyContext } from '../apollo-context';
|
6
6
|
import { DocumentNode } from 'graphql';
|
7
|
-
import * as Apollo from '@apollo/client
|
7
|
+
import * as Apollo from '@apollo/client';
|
8
8
|
export type Maybe<T> = T | null;
|
9
9
|
export type InputMaybe<T> = Maybe<T>;
|
10
10
|
export type Exact<T extends {
|
@@ -628,6 +628,32 @@ export declare enum ICacheControlScope {
|
|
628
628
|
Private = "PRIVATE",
|
629
629
|
Public = "PUBLIC"
|
630
630
|
}
|
631
|
+
export type ICities = {
|
632
|
+
__typename?: 'Cities';
|
633
|
+
data?: Maybe<Array<Maybe<ICity>>>;
|
634
|
+
totalCount: Scalars['Int']['output'];
|
635
|
+
};
|
636
|
+
export type ICitiesInput = {
|
637
|
+
cityOptions?: InputMaybe<ICitiesOptions>;
|
638
|
+
countryOptions?: InputMaybe<ICitiesOptions>;
|
639
|
+
stateOptions?: InputMaybe<ICitiesOptions>;
|
640
|
+
};
|
641
|
+
export type ICitiesOptions = {
|
642
|
+
criteria?: InputMaybe<Scalars['AnyObject']['input']>;
|
643
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
644
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
645
|
+
sort?: InputMaybe<ISort>;
|
646
|
+
};
|
647
|
+
/** Pub N Go Property Address City */
|
648
|
+
export type ICity = IICity & {
|
649
|
+
__typename?: 'City';
|
650
|
+
createdAt: Scalars['DateTime']['output'];
|
651
|
+
id: Scalars['ID']['output'];
|
652
|
+
location?: Maybe<IGeoLocation>;
|
653
|
+
name: Scalars['String']['output'];
|
654
|
+
state: IState;
|
655
|
+
updatedAt: Scalars['DateTime']['output'];
|
656
|
+
};
|
631
657
|
/** Address City Create Input */
|
632
658
|
export type ICityInput = {
|
633
659
|
/** Name of the state to display */
|
@@ -889,11 +915,30 @@ export type IContributionSettingsProperties = {
|
|
889
915
|
disabled?: Maybe<Scalars['Boolean']['output']>;
|
890
916
|
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
891
917
|
};
|
892
|
-
export type
|
918
|
+
export type ICountries = {
|
919
|
+
__typename?: 'Countries';
|
920
|
+
data?: Maybe<Array<Maybe<ICountry>>>;
|
921
|
+
totalCount: Scalars['Int']['output'];
|
922
|
+
};
|
923
|
+
export type ICountry = IICountry & {
|
893
924
|
__typename?: 'Country';
|
925
|
+
createdAt: Scalars['DateTime']['output'];
|
926
|
+
currency?: Maybe<Scalars['String']['output']>;
|
927
|
+
currency_symbol?: Maybe<Scalars['String']['output']>;
|
928
|
+
emoji?: Maybe<Scalars['String']['output']>;
|
894
929
|
id: Scalars['ID']['output'];
|
930
|
+
location?: Maybe<IGeoLocation>;
|
895
931
|
name: Scalars['String']['output'];
|
896
932
|
phoneCode: Scalars['String']['output'];
|
933
|
+
phone_code: Scalars['String']['output'];
|
934
|
+
states?: Maybe<IStates>;
|
935
|
+
updatedAt: Scalars['DateTime']['output'];
|
936
|
+
};
|
937
|
+
export type ICountryStatesArgs = {
|
938
|
+
criteria?: InputMaybe<Scalars['AnyObject']['input']>;
|
939
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
940
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
941
|
+
sort?: InputMaybe<ISort>;
|
897
942
|
};
|
898
943
|
export type ICountryInput = {
|
899
944
|
name: Scalars['String']['input'];
|
@@ -1417,9 +1462,12 @@ export type IMutation = {
|
|
1417
1462
|
* Only the user or site admins may perform this mutation.
|
1418
1463
|
*/
|
1419
1464
|
createAccessToken: ICreateAccessTokenResult;
|
1465
|
+
createCity: ICity;
|
1466
|
+
createCountry: ICountry;
|
1420
1467
|
createIntegrationConfiguration?: Maybe<IIntegraitonConfigurationId>;
|
1421
1468
|
createOrUpdateIntegrationConfiguration?: Maybe<IIntegraitonConfigurationId>;
|
1422
1469
|
createOrganization?: Maybe<IOrganization>;
|
1470
|
+
createState: IState;
|
1423
1471
|
createTeam?: Maybe<IAccountTeam>;
|
1424
1472
|
declineOrganizationInvitation?: Maybe<Scalars['Boolean']['output']>;
|
1425
1473
|
/**
|
@@ -1429,6 +1477,8 @@ export type IMutation = {
|
|
1429
1477
|
* Only site admins or the user who owns the token may perform this mutation.
|
1430
1478
|
*/
|
1431
1479
|
deleteAccessToken: IEmptyResponse;
|
1480
|
+
deleteCity: Scalars['Boolean']['output'];
|
1481
|
+
deleteCountry: Scalars['Boolean']['output'];
|
1432
1482
|
/**
|
1433
1483
|
* Deletes the association between an external account and its CDEBase user. It does NOT delete the external
|
1434
1484
|
* account on the external service where it resides.
|
@@ -1437,6 +1487,7 @@ export type IMutation = {
|
|
1437
1487
|
*/
|
1438
1488
|
deleteExternalAssociation: IEmptyResponse;
|
1439
1489
|
deleteIntegrationConfiguration?: Maybe<Scalars['Boolean']['output']>;
|
1490
|
+
deleteState: Scalars['Boolean']['output'];
|
1440
1491
|
deleteUserAccount?: Maybe<Scalars['Boolean']['output']>;
|
1441
1492
|
deleteUserAuthorizedDevice?: Maybe<Scalars['Boolean']['output']>;
|
1442
1493
|
dummy?: Maybe<Scalars['Int']['output']>;
|
@@ -1466,12 +1517,14 @@ export type IMutation = {
|
|
1466
1517
|
setSettingsValueByResource?: Maybe<Scalars['Boolean']['output']>;
|
1467
1518
|
/** Triggers onUserLoggedIn events */
|
1468
1519
|
updateAuth0UserPassword?: Maybe<Scalars['Boolean']['output']>;
|
1520
|
+
updateCity: ICity;
|
1469
1521
|
updateConfiguration?: Maybe<Scalars['Boolean']['output']>;
|
1470
1522
|
updateConfigurationPolicyValue?: Maybe<Scalars['Boolean']['output']>;
|
1471
1523
|
updateConfigurationPolicyValueByUri?: Maybe<Scalars['Boolean']['output']>;
|
1472
1524
|
updateConfigurationValue?: Maybe<IConfiguration>;
|
1473
1525
|
updateConfigurationValueByUri?: Maybe<Scalars['Boolean']['output']>;
|
1474
1526
|
updateContext?: Maybe<Scalars['Boolean']['output']>;
|
1527
|
+
updateCountry: ICountry;
|
1475
1528
|
updateOrgMemberTeams?: Maybe<Scalars['Boolean']['output']>;
|
1476
1529
|
updateOrganization?: Maybe<IOrganization>;
|
1477
1530
|
updateOrganizationContextAddResources?: Maybe<Array<Maybe<IResourceData>>>;
|
@@ -1479,6 +1532,7 @@ export type IMutation = {
|
|
1479
1532
|
updateOrganizationContextUpdateResources?: Maybe<Array<Maybe<IResourceData>>>;
|
1480
1533
|
updateRoleValue?: Maybe<Scalars['Boolean']['output']>;
|
1481
1534
|
updateSelectedOrgResource?: Maybe<Scalars['Boolean']['output']>;
|
1535
|
+
updateState: IState;
|
1482
1536
|
updateUserAccount?: Maybe<Scalars['Boolean']['output']>;
|
1483
1537
|
validatePasswordResetOtp?: Maybe<Scalars['Boolean']['output']>;
|
1484
1538
|
validateUserEmailVerificationToken?: Maybe<Scalars['Boolean']['output']>;
|
@@ -1523,6 +1577,12 @@ export type IMutationCreateAccessTokenArgs = {
|
|
1523
1577
|
scopes: Array<Scalars['AnyObject']['input']>;
|
1524
1578
|
user: Scalars['ID']['input'];
|
1525
1579
|
};
|
1580
|
+
export type IMutationCreateCityArgs = {
|
1581
|
+
propertyCity: ICityInput;
|
1582
|
+
};
|
1583
|
+
export type IMutationCreateCountryArgs = {
|
1584
|
+
country: ICountryInput;
|
1585
|
+
};
|
1526
1586
|
export type IMutationCreateIntegrationConfigurationArgs = {
|
1527
1587
|
data?: InputMaybe<IIntegrationConfigurationInput>;
|
1528
1588
|
};
|
@@ -1532,6 +1592,9 @@ export type IMutationCreateOrUpdateIntegrationConfigurationArgs = {
|
|
1532
1592
|
export type IMutationCreateOrganizationArgs = {
|
1533
1593
|
organization: IOrganizationCreateRequest;
|
1534
1594
|
};
|
1595
|
+
export type IMutationCreateStateArgs = {
|
1596
|
+
state: IStateInput;
|
1597
|
+
};
|
1535
1598
|
export type IMutationCreateTeamArgs = {
|
1536
1599
|
request: ITeamCreationRequest;
|
1537
1600
|
};
|
@@ -1541,12 +1604,21 @@ export type IMutationDeclineOrganizationInvitationArgs = {
|
|
1541
1604
|
export type IMutationDeleteAccessTokenArgs = {
|
1542
1605
|
where: IWhereDeleteAccessTokenInput;
|
1543
1606
|
};
|
1607
|
+
export type IMutationDeleteCityArgs = {
|
1608
|
+
id: Scalars['ID']['input'];
|
1609
|
+
};
|
1610
|
+
export type IMutationDeleteCountryArgs = {
|
1611
|
+
id: Scalars['ID']['input'];
|
1612
|
+
};
|
1544
1613
|
export type IMutationDeleteExternalAssociationArgs = {
|
1545
1614
|
externalAccount: Scalars['ID']['input'];
|
1546
1615
|
};
|
1547
1616
|
export type IMutationDeleteIntegrationConfigurationArgs = {
|
1548
1617
|
id: Scalars['String']['input'];
|
1549
1618
|
};
|
1619
|
+
export type IMutationDeleteStateArgs = {
|
1620
|
+
id: Scalars['ID']['input'];
|
1621
|
+
};
|
1550
1622
|
export type IMutationDeleteUserAuthorizedDeviceArgs = {
|
1551
1623
|
deviceId: Scalars['String']['input'];
|
1552
1624
|
};
|
@@ -1638,6 +1710,10 @@ export type IMutationUpdateAuth0UserPasswordArgs = {
|
|
1638
1710
|
password?: InputMaybe<Scalars['String']['input']>;
|
1639
1711
|
userId?: InputMaybe<Scalars['String']['input']>;
|
1640
1712
|
};
|
1713
|
+
export type IMutationUpdateCityArgs = {
|
1714
|
+
id: Scalars['ID']['input'];
|
1715
|
+
propertyCity: ICityUpdateInput;
|
1716
|
+
};
|
1641
1717
|
export type IMutationUpdateConfigurationArgs = {
|
1642
1718
|
donotNotifyError?: InputMaybe<Scalars['Boolean']['input']>;
|
1643
1719
|
input: IPreferencesInputInput;
|
@@ -1680,6 +1756,10 @@ export type IMutationUpdateContextArgs = {
|
|
1680
1756
|
key?: InputMaybe<Scalars['String']['input']>;
|
1681
1757
|
value?: InputMaybe<Scalars['AnyObject']['input']>;
|
1682
1758
|
};
|
1759
|
+
export type IMutationUpdateCountryArgs = {
|
1760
|
+
country: ICountryInput;
|
1761
|
+
id: Scalars['ID']['input'];
|
1762
|
+
};
|
1683
1763
|
export type IMutationUpdateOrgMemberTeamsArgs = {
|
1684
1764
|
addToTeams?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
1685
1765
|
orgName: Scalars['String']['input'];
|
@@ -1712,6 +1792,10 @@ export type IMutationUpdateRoleValueArgs = {
|
|
1712
1792
|
export type IMutationUpdateSelectedOrgResourceArgs = {
|
1713
1793
|
resource: Scalars['URI']['input'];
|
1714
1794
|
};
|
1795
|
+
export type IMutationUpdateStateArgs = {
|
1796
|
+
id: Scalars['ID']['input'];
|
1797
|
+
state: IStateUpdateInput;
|
1798
|
+
};
|
1715
1799
|
export type IMutationUpdateUserAccountArgs = {
|
1716
1800
|
userInfo?: InputMaybe<IUserAuth0UpdateFields>;
|
1717
1801
|
};
|
@@ -2305,6 +2389,11 @@ export type IQuery = {
|
|
2305
2389
|
* Only the user and site admins can access this field.
|
2306
2390
|
*/
|
2307
2391
|
accessTokens: IAccessTokenConnection;
|
2392
|
+
cities: ICities;
|
2393
|
+
city: ICity;
|
2394
|
+
countries: ICountries;
|
2395
|
+
country: ICountry;
|
2396
|
+
countryByName: ICountry;
|
2308
2397
|
decodeOrganizationInvitation?: Maybe<IOrganizationInvitationDecode>;
|
2309
2398
|
decodeOrganizationSharedToken?: Maybe<IOrganizationSharedTokenDecode>;
|
2310
2399
|
/** Return the permissions groups */
|
@@ -2392,6 +2481,8 @@ export type IQuery = {
|
|
2392
2481
|
resolveConfiguration?: Maybe<Scalars['AnyObject']['output']>;
|
2393
2482
|
resolveSettings?: Maybe<Array<Maybe<IContributionSettings>>>;
|
2394
2483
|
selectedOrgResource?: Maybe<IContext>;
|
2484
|
+
state: IState;
|
2485
|
+
states: IStates;
|
2395
2486
|
team?: Maybe<IAccountTeam>;
|
2396
2487
|
teams?: Maybe<Array<Maybe<IAccountTeam>>>;
|
2397
2488
|
userResourceRole?: Maybe<IResourceUser>;
|
@@ -2410,6 +2501,24 @@ export type IQueryAccessTokensArgs = {
|
|
2410
2501
|
last?: InputMaybe<Scalars['Int']['input']>;
|
2411
2502
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
2412
2503
|
};
|
2504
|
+
export type IQueryCitiesArgs = {
|
2505
|
+
input?: InputMaybe<ICitiesInput>;
|
2506
|
+
};
|
2507
|
+
export type IQueryCityArgs = {
|
2508
|
+
id: Scalars['ID']['input'];
|
2509
|
+
};
|
2510
|
+
export type IQueryCountriesArgs = {
|
2511
|
+
criteria?: InputMaybe<Scalars['AnyObject']['input']>;
|
2512
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
2513
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
2514
|
+
sort?: InputMaybe<ISort>;
|
2515
|
+
};
|
2516
|
+
export type IQueryCountryArgs = {
|
2517
|
+
id: Scalars['ID']['input'];
|
2518
|
+
};
|
2519
|
+
export type IQueryCountryByNameArgs = {
|
2520
|
+
name: Scalars['String']['input'];
|
2521
|
+
};
|
2413
2522
|
export type IQueryDecodeOrganizationInvitationArgs = {
|
2414
2523
|
token: Scalars['String']['input'];
|
2415
2524
|
};
|
@@ -2564,6 +2673,15 @@ export type IQueryResolveSettingsArgs = {
|
|
2564
2673
|
target?: InputMaybe<Scalars['Int']['input']>;
|
2565
2674
|
uri: Scalars['URI']['input'];
|
2566
2675
|
};
|
2676
|
+
export type IQueryStateArgs = {
|
2677
|
+
id: Scalars['ID']['input'];
|
2678
|
+
};
|
2679
|
+
export type IQueryStatesArgs = {
|
2680
|
+
criteria?: InputMaybe<Scalars['AnyObject']['input']>;
|
2681
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
2682
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
2683
|
+
sort?: InputMaybe<ISort>;
|
2684
|
+
};
|
2567
2685
|
export type IQueryTeamArgs = {
|
2568
2686
|
teamId: Scalars['ID']['input'];
|
2569
2687
|
};
|
@@ -2742,6 +2860,41 @@ export declare enum ISortEnum {
|
|
2742
2860
|
Asc = "ASC",
|
2743
2861
|
Desc = "DESC"
|
2744
2862
|
}
|
2863
|
+
/** Address State */
|
2864
|
+
export type IState = IITerritorialState & {
|
2865
|
+
__typename?: 'State';
|
2866
|
+
cities: ICities;
|
2867
|
+
country: ICountry;
|
2868
|
+
createdAt: Scalars['DateTime']['output'];
|
2869
|
+
id: Scalars['ID']['output'];
|
2870
|
+
location?: Maybe<IGeoLocation>;
|
2871
|
+
name: Scalars['String']['output'];
|
2872
|
+
updatedAt: Scalars['DateTime']['output'];
|
2873
|
+
};
|
2874
|
+
/** Address State */
|
2875
|
+
export type IStateCitiesArgs = {
|
2876
|
+
criteria?: InputMaybe<Scalars['AnyObject']['input']>;
|
2877
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
2878
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
2879
|
+
sort?: InputMaybe<ISort>;
|
2880
|
+
};
|
2881
|
+
/** Address State Create Input */
|
2882
|
+
export type IStateInput = {
|
2883
|
+
/** ID of Country to associate */
|
2884
|
+
country: Scalars['String']['input'];
|
2885
|
+
/** Name of the country to display */
|
2886
|
+
name: Scalars['String']['input'];
|
2887
|
+
};
|
2888
|
+
/** Address State Update Input */
|
2889
|
+
export type IStateUpdateInput = {
|
2890
|
+
country: Scalars['String']['input'];
|
2891
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
2892
|
+
};
|
2893
|
+
export type IStates = {
|
2894
|
+
__typename?: 'States';
|
2895
|
+
data?: Maybe<Array<Maybe<IState>>>;
|
2896
|
+
totalCount: Scalars['Int']['output'];
|
2897
|
+
};
|
2745
2898
|
export type ISubscribedOrganizationData = {
|
2746
2899
|
__typename?: 'SubscribedOrganizationData';
|
2747
2900
|
orgNameFilter?: Maybe<Scalars['String']['output']>;
|
@@ -9678,17 +9831,17 @@ export type IResolversInterfaceTypes<RefType extends Record<string, unknown>> =
|
|
9678
9831
|
IAuth0Token: (IUserProfile);
|
9679
9832
|
IAuth0User: (IUserProfile);
|
9680
9833
|
IAuth0UserProfile: (IUserProfile);
|
9681
|
-
ICity:
|
9834
|
+
ICity: (ICity);
|
9682
9835
|
IConfigurationModel: (IApplicationConfiguration) | (IApplicationPolicy) | (IApplicationRole) | (IDefaultConfiguration) | (IDefaultPolicy) | (IDefaultRole) | (IMachineConfiguration) | (IOrganizationConfiguration) | (IOrganizationPolicy) | (IOrganizationResourceConfiguration) | (IOrganizationRole) | (IPolicyConfiguration) | (IResourcePolicy) | (IResourceRole) | (IUserConfiguration);
|
9683
9836
|
IConfigurationService: never;
|
9684
|
-
ICountry:
|
9837
|
+
ICountry: (ICountry);
|
9685
9838
|
IEventWithContext: (IOrganizationCreatedEvent) | (IOrganizationDeletedEvent);
|
9686
9839
|
IOrgUser: (IOrgUser);
|
9687
9840
|
IResourceData: (IExternalResourceData) | (IOrganizationResourceData);
|
9688
9841
|
IResourceUserRole: (IResourceUser);
|
9689
9842
|
IResourceUtilizationSettings: never;
|
9690
9843
|
ISettingsSubject: (IApplicationSettings) | (IDefaultSettings) | (IGlobalSettings) | (IMachineSettings) | (IMemorySettings) | (IOrganizationResourceSettings) | (IOrganizationSettings) | (IUserSettings);
|
9691
|
-
ITerritorialState:
|
9844
|
+
ITerritorialState: (IState);
|
9692
9845
|
IUser: (IAuthUser);
|
9693
9846
|
IUserMetadata: (IUserMetadata);
|
9694
9847
|
Node: (IAccessToken) | (IApiExternalAccount) | (IApiManagement) | (IUserAccount);
|
@@ -9724,6 +9877,10 @@ export type IResolversTypes = {
|
|
9724
9877
|
BaseTeamService: ResolverTypeWrapper<IBaseTeamService>;
|
9725
9878
|
Boolean: ResolverTypeWrapper<Scalars['Boolean']['output']>;
|
9726
9879
|
CacheControlScope: ICacheControlScope;
|
9880
|
+
Cities: ResolverTypeWrapper<ICities>;
|
9881
|
+
CitiesInput: ICitiesInput;
|
9882
|
+
CitiesOptions: ICitiesOptions;
|
9883
|
+
City: ResolverTypeWrapper<ICity>;
|
9727
9884
|
CityInput: ICityInput;
|
9728
9885
|
CityUpdateInput: ICityUpdateInput;
|
9729
9886
|
ClientCacheTypeNames: IClientCacheTypeNames;
|
@@ -9751,6 +9908,7 @@ export type IResolversTypes = {
|
|
9751
9908
|
}>;
|
9752
9909
|
ContributionSettings: ResolverTypeWrapper<IContributionSettings>;
|
9753
9910
|
ContributionSettingsProperties: ResolverTypeWrapper<IContributionSettingsProperties>;
|
9911
|
+
Countries: ResolverTypeWrapper<ICountries>;
|
9754
9912
|
Country: ResolverTypeWrapper<ICountry>;
|
9755
9913
|
CountryInput: ICountryInput;
|
9756
9914
|
CreateAccessTokenResult: ResolverTypeWrapper<ICreateAccessTokenResult>;
|
@@ -9915,6 +10073,10 @@ export type IResolversTypes = {
|
|
9915
10073
|
SettingsSubject: ResolverTypeWrapper<IResolversUnionTypes<IResolversTypes>['SettingsSubject']>;
|
9916
10074
|
Sort: ISort;
|
9917
10075
|
SortEnum: ISortEnum;
|
10076
|
+
State: ResolverTypeWrapper<IState>;
|
10077
|
+
StateInput: IStateInput;
|
10078
|
+
StateUpdateInput: IStateUpdateInput;
|
10079
|
+
States: ResolverTypeWrapper<IStates>;
|
9918
10080
|
String: ResolverTypeWrapper<Scalars['String']['output']>;
|
9919
10081
|
SubscribedOrganizationData: ResolverTypeWrapper<Omit<ISubscribedOrganizationData, 'resources'> & {
|
9920
10082
|
resources?: Maybe<Array<Maybe<IResolversTypes['ResourceData']>>>;
|
@@ -9999,6 +10161,10 @@ export type IResolversParentTypes = {
|
|
9999
10161
|
BaseOrganizationService: IBaseOrganizationService;
|
10000
10162
|
BaseTeamService: IBaseTeamService;
|
10001
10163
|
Boolean: Scalars['Boolean']['output'];
|
10164
|
+
Cities: ICities;
|
10165
|
+
CitiesInput: ICitiesInput;
|
10166
|
+
CitiesOptions: ICitiesOptions;
|
10167
|
+
City: ICity;
|
10002
10168
|
CityInput: ICityInput;
|
10003
10169
|
CityUpdateInput: ICityUpdateInput;
|
10004
10170
|
Configuration: IResolversUnionTypes<IResolversParentTypes>['Configuration'];
|
@@ -10016,6 +10182,7 @@ export type IResolversParentTypes = {
|
|
10016
10182
|
};
|
10017
10183
|
ContributionSettings: IContributionSettings;
|
10018
10184
|
ContributionSettingsProperties: IContributionSettingsProperties;
|
10185
|
+
Countries: ICountries;
|
10019
10186
|
Country: ICountry;
|
10020
10187
|
CountryInput: ICountryInput;
|
10021
10188
|
CreateAccessTokenResult: ICreateAccessTokenResult;
|
@@ -10156,6 +10323,10 @@ export type IResolversParentTypes = {
|
|
10156
10323
|
SettingsSection: ISettingsSection;
|
10157
10324
|
SettingsSubject: IResolversUnionTypes<IResolversParentTypes>['SettingsSubject'];
|
10158
10325
|
Sort: ISort;
|
10326
|
+
State: IState;
|
10327
|
+
StateInput: IStateInput;
|
10328
|
+
StateUpdateInput: IStateUpdateInput;
|
10329
|
+
States: IStates;
|
10159
10330
|
String: Scalars['String']['output'];
|
10160
10331
|
SubscribedOrganizationData: Omit<ISubscribedOrganizationData, 'resources'> & {
|
10161
10332
|
resources?: Maybe<Array<Maybe<IResolversParentTypes['ResourceData']>>>;
|
@@ -10398,6 +10569,20 @@ export type IBaseTeamServiceResolvers<ContextType = MyContext, ParentType extend
|
|
10398
10569
|
updateTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, Partial<IBaseTeamServiceUpdateTeamArgs>>;
|
10399
10570
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10400
10571
|
};
|
10572
|
+
export type ICitiesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Cities'] = IResolversParentTypes['Cities']> = {
|
10573
|
+
data?: Resolver<Maybe<Array<Maybe<IResolversTypes['City']>>>, ParentType, ContextType>;
|
10574
|
+
totalCount?: Resolver<IResolversTypes['Int'], ParentType, ContextType>;
|
10575
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10576
|
+
};
|
10577
|
+
export type ICityResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['City'] = IResolversParentTypes['City']> = {
|
10578
|
+
createdAt?: Resolver<IResolversTypes['DateTime'], ParentType, ContextType>;
|
10579
|
+
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
10580
|
+
location?: Resolver<Maybe<IResolversTypes['GeoLocation']>, ParentType, ContextType>;
|
10581
|
+
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
10582
|
+
state?: Resolver<IResolversTypes['State'], ParentType, ContextType>;
|
10583
|
+
updatedAt?: Resolver<IResolversTypes['DateTime'], ParentType, ContextType>;
|
10584
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10585
|
+
};
|
10401
10586
|
export type IConfigurationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Configuration'] = IResolversParentTypes['Configuration']> = {
|
10402
10587
|
__resolveType: TypeResolveFn<'ApplicationConfiguration' | 'DefaultConfiguration' | 'MachineConfiguration' | 'OrganizationConfiguration' | 'OrganizationResourceConfiguration' | 'PolicyConfiguration' | 'UserConfiguration', ParentType, ContextType>;
|
10403
10588
|
};
|
@@ -10535,10 +10720,23 @@ export type IContributionSettingsPropertiesResolvers<ContextType = MyContext, Pa
|
|
10535
10720
|
readOnly?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
10536
10721
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10537
10722
|
};
|
10723
|
+
export type ICountriesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Countries'] = IResolversParentTypes['Countries']> = {
|
10724
|
+
data?: Resolver<Maybe<Array<Maybe<IResolversTypes['Country']>>>, ParentType, ContextType>;
|
10725
|
+
totalCount?: Resolver<IResolversTypes['Int'], ParentType, ContextType>;
|
10726
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10727
|
+
};
|
10538
10728
|
export type ICountryResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Country'] = IResolversParentTypes['Country']> = {
|
10729
|
+
createdAt?: Resolver<IResolversTypes['DateTime'], ParentType, ContextType>;
|
10730
|
+
currency?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10731
|
+
currency_symbol?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10732
|
+
emoji?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10539
10733
|
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
10734
|
+
location?: Resolver<Maybe<IResolversTypes['GeoLocation']>, ParentType, ContextType>;
|
10540
10735
|
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
10541
10736
|
phoneCode?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
10737
|
+
phone_code?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
10738
|
+
states?: Resolver<Maybe<IResolversTypes['States']>, ParentType, ContextType, Partial<ICountryStatesArgs>>;
|
10739
|
+
updatedAt?: Resolver<IResolversTypes['DateTime'], ParentType, ContextType>;
|
10542
10740
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10543
10741
|
};
|
10544
10742
|
export type ICreateAccessTokenResultResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['CreateAccessTokenResult'] = IResolversParentTypes['CreateAccessTokenResult']> = {
|
@@ -10666,7 +10864,7 @@ export type IIAuth0UserProfileResolvers<ContextType = MyContext, ParentType exte
|
|
10666
10864
|
user_metadata?: Resolver<Maybe<IResolversTypes['IUserMetadata']>, ParentType, ContextType>;
|
10667
10865
|
};
|
10668
10866
|
export type IICityResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ICity'] = IResolversParentTypes['ICity']> = {
|
10669
|
-
__resolveType: TypeResolveFn<
|
10867
|
+
__resolveType: TypeResolveFn<'City', ParentType, ContextType>;
|
10670
10868
|
createdAt?: Resolver<IResolversTypes['DateTime'], ParentType, ContextType>;
|
10671
10869
|
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
10672
10870
|
location?: Resolver<Maybe<IResolversTypes['GeoLocation']>, ParentType, ContextType>;
|
@@ -10687,7 +10885,7 @@ export type IIConfigurationServiceResolvers<ContextType = MyContext, ParentType
|
|
10687
10885
|
updateValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IIConfigurationServiceUpdateValueArgs, 'key' | 'overrides' | 'value'>>;
|
10688
10886
|
};
|
10689
10887
|
export type IICountryResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ICountry'] = IResolversParentTypes['ICountry']> = {
|
10690
|
-
__resolveType: TypeResolveFn<
|
10888
|
+
__resolveType: TypeResolveFn<'Country', ParentType, ContextType>;
|
10691
10889
|
createdAt?: Resolver<IResolversTypes['DateTime'], ParentType, ContextType>;
|
10692
10890
|
currency?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10693
10891
|
currency_symbol?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -10735,7 +10933,7 @@ export type IISettingsSubjectResolvers<ContextType = MyContext, ParentType exten
|
|
10735
10933
|
viewerCanAdminister?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
10736
10934
|
};
|
10737
10935
|
export type IITerritorialStateResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ITerritorialState'] = IResolversParentTypes['ITerritorialState']> = {
|
10738
|
-
__resolveType: TypeResolveFn<
|
10936
|
+
__resolveType: TypeResolveFn<'State', ParentType, ContextType>;
|
10739
10937
|
country?: Resolver<IResolversTypes['ICountry'], ParentType, ContextType>;
|
10740
10938
|
createdAt?: Resolver<IResolversTypes['DateTime'], ParentType, ContextType>;
|
10741
10939
|
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
@@ -10862,14 +11060,20 @@ export type IMutationResolvers<ContextType = MyContext, ParentType extends IReso
|
|
10862
11060
|
changeOrgMemberRole?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationChangeOrgMemberRoleArgs, 'role' | 'userId'>>;
|
10863
11061
|
changeOrganization?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType, RequireFields<IMutationChangeOrganizationArgs, 'orgName'>>;
|
10864
11062
|
createAccessToken?: Resolver<IResolversTypes['CreateAccessTokenResult'], ParentType, ContextType, RequireFields<IMutationCreateAccessTokenArgs, 'note' | 'scopes' | 'user'>>;
|
11063
|
+
createCity?: Resolver<IResolversTypes['City'], ParentType, ContextType, RequireFields<IMutationCreateCityArgs, 'propertyCity'>>;
|
11064
|
+
createCountry?: Resolver<IResolversTypes['Country'], ParentType, ContextType, RequireFields<IMutationCreateCountryArgs, 'country'>>;
|
10865
11065
|
createIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['IntegraitonConfigurationId']>, ParentType, ContextType, Partial<IMutationCreateIntegrationConfigurationArgs>>;
|
10866
11066
|
createOrUpdateIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['IntegraitonConfigurationId']>, ParentType, ContextType, Partial<IMutationCreateOrUpdateIntegrationConfigurationArgs>>;
|
10867
11067
|
createOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IMutationCreateOrganizationArgs, 'organization'>>;
|
11068
|
+
createState?: Resolver<IResolversTypes['State'], ParentType, ContextType, RequireFields<IMutationCreateStateArgs, 'state'>>;
|
10868
11069
|
createTeam?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IMutationCreateTeamArgs, 'request'>>;
|
10869
11070
|
declineOrganizationInvitation?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationDeclineOrganizationInvitationArgs, 'id'>>;
|
10870
11071
|
deleteAccessToken?: Resolver<IResolversTypes['EmptyResponse'], ParentType, ContextType, RequireFields<IMutationDeleteAccessTokenArgs, 'where'>>;
|
11072
|
+
deleteCity?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationDeleteCityArgs, 'id'>>;
|
11073
|
+
deleteCountry?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationDeleteCountryArgs, 'id'>>;
|
10871
11074
|
deleteExternalAssociation?: Resolver<IResolversTypes['EmptyResponse'], ParentType, ContextType, RequireFields<IMutationDeleteExternalAssociationArgs, 'externalAccount'>>;
|
10872
11075
|
deleteIntegrationConfiguration?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationDeleteIntegrationConfigurationArgs, 'id'>>;
|
11076
|
+
deleteState?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationDeleteStateArgs, 'id'>>;
|
10873
11077
|
deleteUserAccount?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
10874
11078
|
deleteUserAuthorizedDevice?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationDeleteUserAuthorizedDeviceArgs, 'deviceId'>>;
|
10875
11079
|
dummy?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
@@ -10898,12 +11102,14 @@ export type IMutationResolvers<ContextType = MyContext, ParentType extends IReso
|
|
10898
11102
|
sendUserPasswordResetEmail?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationSendUserPasswordResetEmailArgs, 'email'>>;
|
10899
11103
|
setSettingsValueByResource?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, Partial<IMutationSetSettingsValueByResourceArgs>>;
|
10900
11104
|
updateAuth0UserPassword?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, Partial<IMutationUpdateAuth0UserPasswordArgs>>;
|
11105
|
+
updateCity?: Resolver<IResolversTypes['City'], ParentType, ContextType, RequireFields<IMutationUpdateCityArgs, 'id' | 'propertyCity'>>;
|
10901
11106
|
updateConfiguration?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateConfigurationArgs, 'input' | 'key' | 'value'>>;
|
10902
11107
|
updateConfigurationPolicyValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateConfigurationPolicyValueArgs, 'key' | 'value'>>;
|
10903
11108
|
updateConfigurationPolicyValueByUri?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateConfigurationPolicyValueByUriArgs, 'key' | 'value'>>;
|
10904
11109
|
updateConfigurationValue?: Resolver<Maybe<IResolversTypes['Configuration']>, ParentType, ContextType, RequireFields<IMutationUpdateConfigurationValueArgs, 'key' | 'value'>>;
|
10905
11110
|
updateConfigurationValueByUri?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateConfigurationValueByUriArgs, 'key' | 'value'>>;
|
10906
11111
|
updateContext?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, Partial<IMutationUpdateContextArgs>>;
|
11112
|
+
updateCountry?: Resolver<IResolversTypes['Country'], ParentType, ContextType, RequireFields<IMutationUpdateCountryArgs, 'country' | 'id'>>;
|
10907
11113
|
updateOrgMemberTeams?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateOrgMemberTeamsArgs, 'orgName' | 'userId'>>;
|
10908
11114
|
updateOrganization?: Resolver<Maybe<IResolversTypes['Organization']>, ParentType, ContextType, RequireFields<IMutationUpdateOrganizationArgs, 'organization'>>;
|
10909
11115
|
updateOrganizationContextAddResources?: Resolver<Maybe<Array<Maybe<IResolversTypes['ResourceData']>>>, ParentType, ContextType, RequireFields<IMutationUpdateOrganizationContextAddResourcesArgs, 'resourcesToAdd'>>;
|
@@ -10911,6 +11117,7 @@ export type IMutationResolvers<ContextType = MyContext, ParentType extends IReso
|
|
10911
11117
|
updateOrganizationContextUpdateResources?: Resolver<Maybe<Array<Maybe<IResolversTypes['ResourceData']>>>, ParentType, ContextType, RequireFields<IMutationUpdateOrganizationContextUpdateResourcesArgs, 'resourcesToAdd' | 'resourcesToRemove'>>;
|
10912
11118
|
updateRoleValue?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateRoleValueArgs, 'key' | 'value'>>;
|
10913
11119
|
updateSelectedOrgResource?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateSelectedOrgResourceArgs, 'resource'>>;
|
11120
|
+
updateState?: Resolver<IResolversTypes['State'], ParentType, ContextType, RequireFields<IMutationUpdateStateArgs, 'id' | 'state'>>;
|
10914
11121
|
updateUserAccount?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, Partial<IMutationUpdateUserAccountArgs>>;
|
10915
11122
|
validatePasswordResetOtp?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationValidatePasswordResetOtpArgs, 'code' | 'email'>>;
|
10916
11123
|
validateUserEmailVerificationToken?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationValidateUserEmailVerificationTokenArgs, 'code'>>;
|
@@ -11223,6 +11430,11 @@ export type IPreferencesTypeResolvers<ContextType = MyContext, ParentType extend
|
|
11223
11430
|
};
|
11224
11431
|
export type IQueryResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Query'] = IResolversParentTypes['Query']> = {
|
11225
11432
|
accessTokens?: Resolver<IResolversTypes['AccessTokenConnection'], ParentType, ContextType, Partial<IQueryAccessTokensArgs>>;
|
11433
|
+
cities?: Resolver<IResolversTypes['Cities'], ParentType, ContextType, Partial<IQueryCitiesArgs>>;
|
11434
|
+
city?: Resolver<IResolversTypes['City'], ParentType, ContextType, RequireFields<IQueryCityArgs, 'id'>>;
|
11435
|
+
countries?: Resolver<IResolversTypes['Countries'], ParentType, ContextType, Partial<IQueryCountriesArgs>>;
|
11436
|
+
country?: Resolver<IResolversTypes['Country'], ParentType, ContextType, RequireFields<IQueryCountryArgs, 'id'>>;
|
11437
|
+
countryByName?: Resolver<IResolversTypes['Country'], ParentType, ContextType, RequireFields<IQueryCountryByNameArgs, 'name'>>;
|
11226
11438
|
decodeOrganizationInvitation?: Resolver<Maybe<IResolversTypes['OrganizationInvitationDecode']>, ParentType, ContextType, RequireFields<IQueryDecodeOrganizationInvitationArgs, 'token'>>;
|
11227
11439
|
decodeOrganizationSharedToken?: Resolver<Maybe<IResolversTypes['OrganizationSharedTokenDecode']>, ParentType, ContextType, RequireFields<IQueryDecodeOrganizationSharedTokenArgs, 'token'>>;
|
11228
11440
|
defaultPermissions?: Resolver<Maybe<Array<Maybe<IResolversTypes['SettingsGroup']>>>, ParentType, ContextType, Partial<IQueryDefaultPermissionsArgs>>;
|
@@ -11285,6 +11497,8 @@ export type IQueryResolvers<ContextType = MyContext, ParentType extends IResolve
|
|
11285
11497
|
resolveConfiguration?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType, RequireFields<IQueryResolveConfigurationArgs, 'input'>>;
|
11286
11498
|
resolveSettings?: Resolver<Maybe<Array<Maybe<IResolversTypes['ContributionSettings']>>>, ParentType, ContextType, RequireFields<IQueryResolveSettingsArgs, 'uri'>>;
|
11287
11499
|
selectedOrgResource?: Resolver<Maybe<IResolversTypes['Context']>, ParentType, ContextType>;
|
11500
|
+
state?: Resolver<IResolversTypes['State'], ParentType, ContextType, RequireFields<IQueryStateArgs, 'id'>>;
|
11501
|
+
states?: Resolver<IResolversTypes['States'], ParentType, ContextType, Partial<IQueryStatesArgs>>;
|
11288
11502
|
team?: Resolver<Maybe<IResolversTypes['AccountTeam']>, ParentType, ContextType, RequireFields<IQueryTeamArgs, 'teamId'>>;
|
11289
11503
|
teams?: Resolver<Maybe<Array<Maybe<IResolversTypes['AccountTeam']>>>, ParentType, ContextType>;
|
11290
11504
|
userResourceRole?: Resolver<Maybe<IResolversTypes['ResourceUser']>, ParentType, ContextType, RequireFields<IQueryUserResourceRoleArgs, 'orgName' | 'userId'>>;
|
@@ -11381,6 +11595,21 @@ export type ISettingsSectionResolvers<ContextType = MyContext, ParentType extend
|
|
11381
11595
|
export type ISettingsSubjectResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['SettingsSubject'] = IResolversParentTypes['SettingsSubject']> = {
|
11382
11596
|
__resolveType: TypeResolveFn<'ApplicationSettings' | 'DefaultSettings' | 'GlobalSettings' | 'MachineSettings' | 'MemorySettings' | 'OrganizationResourceSettings' | 'OrganizationSettings' | 'UserSettings', ParentType, ContextType>;
|
11383
11597
|
};
|
11598
|
+
export type IStateResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['State'] = IResolversParentTypes['State']> = {
|
11599
|
+
cities?: Resolver<IResolversTypes['Cities'], ParentType, ContextType, Partial<IStateCitiesArgs>>;
|
11600
|
+
country?: Resolver<IResolversTypes['Country'], ParentType, ContextType>;
|
11601
|
+
createdAt?: Resolver<IResolversTypes['DateTime'], ParentType, ContextType>;
|
11602
|
+
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
11603
|
+
location?: Resolver<Maybe<IResolversTypes['GeoLocation']>, ParentType, ContextType>;
|
11604
|
+
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
11605
|
+
updatedAt?: Resolver<IResolversTypes['DateTime'], ParentType, ContextType>;
|
11606
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11607
|
+
};
|
11608
|
+
export type IStatesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['States'] = IResolversParentTypes['States']> = {
|
11609
|
+
data?: Resolver<Maybe<Array<Maybe<IResolversTypes['State']>>>, ParentType, ContextType>;
|
11610
|
+
totalCount?: Resolver<IResolversTypes['Int'], ParentType, ContextType>;
|
11611
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
11612
|
+
};
|
11384
11613
|
export type ISubscribedOrganizationDataResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['SubscribedOrganizationData'] = IResolversParentTypes['SubscribedOrganizationData']> = {
|
11385
11614
|
orgNameFilter?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11386
11615
|
resources?: Resolver<Maybe<Array<Maybe<IResolversTypes['ResourceData']>>>, ParentType, ContextType>;
|
@@ -11642,6 +11871,8 @@ export type IResolvers<ContextType = MyContext> = {
|
|
11642
11871
|
BaseAccountService?: IBaseAccountServiceResolvers<ContextType>;
|
11643
11872
|
BaseOrganizationService?: IBaseOrganizationServiceResolvers<ContextType>;
|
11644
11873
|
BaseTeamService?: IBaseTeamServiceResolvers<ContextType>;
|
11874
|
+
Cities?: ICitiesResolvers<ContextType>;
|
11875
|
+
City?: ICityResolvers<ContextType>;
|
11645
11876
|
Configuration?: IConfigurationResolvers<ContextType>;
|
11646
11877
|
ConfigurationData?: IConfigurationDataResolvers<ContextType>;
|
11647
11878
|
ConfigurationExtensionInfo?: IConfigurationExtensionInfoResolvers<ContextType>;
|
@@ -11655,6 +11886,7 @@ export type IResolvers<ContextType = MyContext> = {
|
|
11655
11886
|
ContributionRoles?: IContributionRolesResolvers<ContextType>;
|
11656
11887
|
ContributionSettings?: IContributionSettingsResolvers<ContextType>;
|
11657
11888
|
ContributionSettingsProperties?: IContributionSettingsPropertiesResolvers<ContextType>;
|
11889
|
+
Countries?: ICountriesResolvers<ContextType>;
|
11658
11890
|
Country?: ICountryResolvers<ContextType>;
|
11659
11891
|
CreateAccessTokenResult?: ICreateAccessTokenResultResolvers<ContextType>;
|
11660
11892
|
Date?: GraphQLScalarType;
|
@@ -11761,6 +11993,8 @@ export type IResolvers<ContextType = MyContext> = {
|
|
11761
11993
|
SettingsGroup?: ISettingsGroupResolvers<ContextType>;
|
11762
11994
|
SettingsSection?: ISettingsSectionResolvers<ContextType>;
|
11763
11995
|
SettingsSubject?: ISettingsSubjectResolvers<ContextType>;
|
11996
|
+
State?: IStateResolvers<ContextType>;
|
11997
|
+
States?: IStatesResolvers<ContextType>;
|
11764
11998
|
SubscribedOrganizationData?: ISubscribedOrganizationDataResolvers<ContextType>;
|
11765
11999
|
Subscription?: ISubscriptionResolvers<ContextType>;
|
11766
12000
|
TeamInvitationEmailVariables?: ITeamInvitationEmailVariablesResolvers<ContextType>;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
export{ConfigurationTarget}from'../configuration/configuration.js';import*as Apollo from'@apollo/client
|
1
|
+
export{ConfigurationTarget}from'../configuration/configuration.js';import*as Apollo from'@apollo/client';const defaultOptions = {};
|
2
2
|
var IAccountServiceAction;
|
3
3
|
(function (IAccountServiceAction) {
|
4
4
|
IAccountServiceAction["AccountOnBoarding"] = "accountOnBoarding";
|
@@ -28,7 +28,7 @@ export declare const generateUserUri: (params: {
|
|
28
28
|
export declare const generateApplicationUri: (orgName: string, fragment?: IConfigFragmentName, authority?: string) => URI;
|
29
29
|
export declare const generateResourceUri: (collectionName: IConfigCollectionName, params: {
|
30
30
|
[key: string]: any;
|
31
|
-
name
|
31
|
+
name?: string;
|
32
32
|
orgName: string;
|
33
33
|
}, fragment: string, authority?: string) => URI;
|
34
34
|
export declare const generateOrgUri: (name: any, fragment: string, authority?: string) => URI;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@adminide-stack/core",
|
3
|
-
"version": "6.
|
3
|
+
"version": "6.5.1-alpha.0",
|
4
4
|
"description": "AdminIDE core for higher packages to depend on",
|
5
5
|
"license": "ISC",
|
6
6
|
"author": "CDMBase LLC",
|
@@ -36,5 +36,5 @@
|
|
36
36
|
"typescript": {
|
37
37
|
"definition": "lib/index.d.ts"
|
38
38
|
},
|
39
|
-
"gitHead": "
|
39
|
+
"gitHead": "3f0f0b28fa561d40c92361be47468674ec451730"
|
40
40
|
}
|