@adminide-stack/core 1.1.1-alpha.153 → 1.1.1-alpha.160
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.
@@ -135,7 +135,8 @@ export declare const enum IAccountServiceAction {
|
|
135
135
|
updateAccount = "updateAccount",
|
136
136
|
deleteAccount = "deleteAccount",
|
137
137
|
onAccountCreated = "onAccountCreated",
|
138
|
-
onAccountDeleted = "onAccountDeleted"
|
138
|
+
onAccountDeleted = "onAccountDeleted",
|
139
|
+
accountOnBoarding = "accountOnBoarding"
|
139
140
|
}
|
140
141
|
/**
|
141
142
|
* Teams are groups of organization members that reflect yoru company or group's structure
|
@@ -160,6 +161,7 @@ export declare type IAccountTeam = {
|
|
160
161
|
id?: Maybe<Scalars['ID']>;
|
161
162
|
_id?: Maybe<Scalars['String']>;
|
162
163
|
name?: Maybe<Scalars['String']>;
|
164
|
+
title?: Maybe<Scalars['String']>;
|
163
165
|
orgName?: Maybe<Scalars['String']>;
|
164
166
|
tags?: Maybe<Array<Maybe<Scalars['String']>>>;
|
165
167
|
settingsUri?: Maybe<Scalars['URI']>;
|
@@ -173,6 +175,7 @@ export declare type IAccountTeam_Input = {
|
|
173
175
|
id?: Maybe<Scalars['ID']>;
|
174
176
|
_id?: Maybe<Scalars['String']>;
|
175
177
|
name?: Maybe<Scalars['String']>;
|
178
|
+
title?: Maybe<Scalars['String']>;
|
176
179
|
orgName?: Maybe<Scalars['String']>;
|
177
180
|
tags?: Maybe<Array<Maybe<Scalars['String']>>>;
|
178
181
|
description?: Maybe<Scalars['String']>;
|
@@ -1278,6 +1281,10 @@ export declare type IInvoiceUpdateRequest = {
|
|
1278
1281
|
to?: Maybe<ICustomerInvoice_Input>;
|
1279
1282
|
total?: Maybe<Scalars['Float']>;
|
1280
1283
|
};
|
1284
|
+
export declare type IIOnBoardingParams = {
|
1285
|
+
org?: Maybe<IOrgType>;
|
1286
|
+
team?: Maybe<ITeamType>;
|
1287
|
+
};
|
1281
1288
|
/** Organization Template to be used */
|
1282
1289
|
export declare type IIOrgUser = {
|
1283
1290
|
role?: Maybe<IApplicationRoles>;
|
@@ -2082,6 +2089,7 @@ export declare type IOrganization = {
|
|
2082
2089
|
__typename?: 'Organization';
|
2083
2090
|
id?: Maybe<Scalars['ID']>;
|
2084
2091
|
name?: Maybe<Scalars['String']>;
|
2092
|
+
title?: Maybe<Scalars['String']>;
|
2085
2093
|
description?: Maybe<Scalars['String']>;
|
2086
2094
|
picture?: Maybe<Scalars['String']>;
|
2087
2095
|
stripeId?: Maybe<Scalars['String']>;
|
@@ -2102,6 +2110,7 @@ export declare type IOrganization = {
|
|
2102
2110
|
export declare type IOrganization_Input = {
|
2103
2111
|
id?: Maybe<Scalars['ID']>;
|
2104
2112
|
name: Scalars['String'];
|
2113
|
+
title?: Maybe<Scalars['String']>;
|
2105
2114
|
description?: Maybe<Scalars['String']>;
|
2106
2115
|
picture?: Maybe<Scalars['String']>;
|
2107
2116
|
stripeId?: Maybe<Scalars['String']>;
|
@@ -2147,6 +2156,7 @@ export declare type IOrganizationCreatedEvent = IIEventWithContext & {
|
|
2147
2156
|
};
|
2148
2157
|
export declare type IOrganizationCreateRequest = {
|
2149
2158
|
name?: Maybe<Scalars['String']>;
|
2159
|
+
title?: Maybe<Scalars['String']>;
|
2150
2160
|
description?: Maybe<Scalars['String']>;
|
2151
2161
|
namespace?: Maybe<Scalars['String']>;
|
2152
2162
|
picture?: Maybe<Scalars['String']>;
|
@@ -2345,7 +2355,10 @@ export declare const enum IOrganizationServiceAction {
|
|
2345
2355
|
onUserJoinedOrganization = "onUserJoinedOrganization",
|
2346
2356
|
onUserInvitationSend = "onUserInvitationSend",
|
2347
2357
|
onUserInvitationResend = "onUserInvitationResend",
|
2348
|
-
onOrgMemberRemoved = "onOrgMemberRemoved"
|
2358
|
+
onOrgMemberRemoved = "onOrgMemberRemoved",
|
2359
|
+
onCreateOrganization = "onCreateOrganization",
|
2360
|
+
onCreateTeam = "onCreateTeam",
|
2361
|
+
onSendInvitation = "onSendInvitation"
|
2349
2362
|
}
|
2350
2363
|
export declare type IOrganizationSettings = IISettingsSubject & {
|
2351
2364
|
__typename?: 'OrganizationSettings';
|
@@ -2382,6 +2395,10 @@ export declare type IOrgMember = {
|
|
2382
2395
|
crossCheckEmail?: Maybe<Scalars['String']>;
|
2383
2396
|
teamNames?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2384
2397
|
};
|
2398
|
+
export declare type IOrgType = {
|
2399
|
+
name?: Maybe<Scalars['String']>;
|
2400
|
+
settings?: Maybe<Scalars['AnyObject']>;
|
2401
|
+
};
|
2385
2402
|
export declare type IOrgUser = IIOrgUser & {
|
2386
2403
|
__typename?: 'OrgUser';
|
2387
2404
|
userId: Scalars['String'];
|
@@ -2746,6 +2763,7 @@ export declare type IQuery = {
|
|
2746
2763
|
* Only the user and site admins can access this field.
|
2747
2764
|
*/
|
2748
2765
|
accessTokens: IAccessTokenConnection;
|
2766
|
+
accountOnBoarding?: Maybe<Scalars['Boolean']>;
|
2749
2767
|
allDockerRegistries?: Maybe<Array<Maybe<IDockerRegistry>>>;
|
2750
2768
|
allMonocularRegistries?: Maybe<Array<Maybe<IMonocularRegistry>>>;
|
2751
2769
|
decodeOrganizationInvitation?: Maybe<IOrganizationInvitationDecode>;
|
@@ -2886,6 +2904,9 @@ export declare type IQueryaccessTokensArgs = {
|
|
2886
2904
|
after?: Maybe<Scalars['String']>;
|
2887
2905
|
skip?: Maybe<Scalars['Int']>;
|
2888
2906
|
};
|
2907
|
+
export declare type IQueryaccountOnBoardingArgs = {
|
2908
|
+
input?: Maybe<IIOnBoardingParams>;
|
2909
|
+
};
|
2889
2910
|
export declare type IQuerydecodeOrganizationInvitationArgs = {
|
2890
2911
|
token: Scalars['String'];
|
2891
2912
|
};
|
@@ -3445,7 +3466,8 @@ export declare type ITaskRequest = {
|
|
3445
3466
|
taskName?: Maybe<Scalars['String']>;
|
3446
3467
|
};
|
3447
3468
|
export declare type ITeamCreateRequest = {
|
3448
|
-
name
|
3469
|
+
name?: Maybe<Scalars['String']>;
|
3470
|
+
title: Scalars['String'];
|
3449
3471
|
orgName: Scalars['String'];
|
3450
3472
|
tags?: Maybe<Array<Maybe<Scalars['String']>>>;
|
3451
3473
|
emails?: Maybe<Array<Maybe<Scalars['String']>>>;
|
@@ -3454,7 +3476,8 @@ export declare type ITeamCreateRequest = {
|
|
3454
3476
|
description?: Maybe<Scalars['String']>;
|
3455
3477
|
};
|
3456
3478
|
export declare type ITeamCreationRequest = {
|
3457
|
-
name
|
3479
|
+
name?: Maybe<Scalars['String']>;
|
3480
|
+
title: Scalars['String'];
|
3458
3481
|
orgName: Scalars['String'];
|
3459
3482
|
tags?: Maybe<Array<Maybe<Scalars['String']>>>;
|
3460
3483
|
emails?: Maybe<Array<Maybe<Scalars['String']>>>;
|
@@ -3543,6 +3566,11 @@ export declare const enum ITeamServiceAction {
|
|
3543
3566
|
declineInvitation = "declineInvitation",
|
3544
3567
|
sendProjectNotificaiton = "sendProjectNotificaiton"
|
3545
3568
|
}
|
3569
|
+
export declare type ITeamType = {
|
3570
|
+
name?: Maybe<Scalars['String']>;
|
3571
|
+
settings?: Maybe<Scalars['AnyObject']>;
|
3572
|
+
membersInviteList?: Maybe<Array<Maybe<Scalars['String']>>>;
|
3573
|
+
};
|
3546
3574
|
export declare type ITeamUpdateRequest = {
|
3547
3575
|
id: Scalars['String'];
|
3548
3576
|
payload?: Maybe<IAccountTeam_Input>;
|
@@ -4376,7 +4404,7 @@ export declare type IcreateTeamMutation = ({
|
|
4376
4404
|
} & {
|
4377
4405
|
createTeam?: Maybe<({
|
4378
4406
|
__typename?: 'AccountTeam';
|
4379
|
-
} & Pick<IAccountTeam, '_id' | 'name' | 'tags' | 'orgName' | 'createdAt' | 'updatedAt' | 'description'>)>;
|
4407
|
+
} & Pick<IAccountTeam, '_id' | 'name' | 'title' | 'tags' | 'orgName' | 'createdAt' | 'updatedAt' | 'description'>)>;
|
4380
4408
|
});
|
4381
4409
|
export declare type IDeclineOrganizationInvitationMutationVariables = Exact<{
|
4382
4410
|
id: Scalars['ID'];
|
@@ -4548,12 +4576,18 @@ export declare type IGetUserOrganizationsListQuery = ({
|
|
4548
4576
|
} & {
|
4549
4577
|
getUserOrganizations?: Maybe<Array<Maybe<({
|
4550
4578
|
__typename?: 'Organization';
|
4551
|
-
} & Pick<IOrganization, 'name' | 'createdAt' | 'isBillingLeader'> & {
|
4579
|
+
} & Pick<IOrganization, 'name' | 'title' | 'createdAt' | 'isBillingLeader'> & {
|
4552
4580
|
orgMembers?: Maybe<Array<Maybe<({
|
4553
4581
|
__typename?: 'OrgUser';
|
4554
4582
|
} & Pick<IOrgUser, 'inactive'> & IOrgUserFragment)>>>;
|
4555
4583
|
})>>>;
|
4556
4584
|
});
|
4585
|
+
export declare type IAccountOnBoardingQueryVariables = Exact<{
|
4586
|
+
input?: Maybe<IIOnBoardingParams>;
|
4587
|
+
}>;
|
4588
|
+
export declare type IAccountOnBoardingQuery = ({
|
4589
|
+
__typename?: 'Query';
|
4590
|
+
} & Pick<IQuery, 'accountOnBoarding'>);
|
4557
4591
|
export declare type IDecodeOrganizationInvitationQueryVariables = Exact<{
|
4558
4592
|
token: Scalars['String'];
|
4559
4593
|
}>;
|
@@ -4683,7 +4717,7 @@ export declare type IGetManageableOrganizationsQuery = ({
|
|
4683
4717
|
} & {
|
4684
4718
|
getManageableOrganizations?: Maybe<Array<Maybe<({
|
4685
4719
|
__typename?: 'Organization';
|
4686
|
-
} & Pick<IOrganization, 'name' | 'createdAt' | 'isBillingLeader'> & {
|
4720
|
+
} & Pick<IOrganization, 'name' | 'title' | 'createdAt' | 'isBillingLeader'> & {
|
4687
4721
|
orgMembers?: Maybe<Array<Maybe<({
|
4688
4722
|
__typename?: 'OrgUser';
|
4689
4723
|
} & Pick<IOrgUser, 'inactive'> & IOrgUserFragment)>>>;
|
@@ -4781,7 +4815,7 @@ export declare type IgetOrganizationTeamsQuery = ({
|
|
4781
4815
|
} & {
|
4782
4816
|
getOrganizationTeams?: Maybe<Array<Maybe<({
|
4783
4817
|
__typename?: 'AccountTeam';
|
4784
|
-
} & Pick<IAccountTeam, '_id' | 'name' | 'tags' | 'orgName' | 'createdAt' | 'updatedAt' | 'description' | 'settingsUri'> & {
|
4818
|
+
} & Pick<IAccountTeam, '_id' | 'name' | 'title' | 'tags' | 'orgName' | 'createdAt' | 'updatedAt' | 'description' | 'settingsUri'> & {
|
4785
4819
|
teamMembers?: Maybe<Array<Maybe<({
|
4786
4820
|
__typename?: 'TeamMember';
|
4787
4821
|
} & Pick<ITeamMember, 'id' | 'name' | 'status'>)>>>;
|
@@ -4855,7 +4889,7 @@ export declare type IgetUserOrganizationsQuery = ({
|
|
4855
4889
|
} & {
|
4856
4890
|
getUserOrganizations?: Maybe<Array<Maybe<({
|
4857
4891
|
__typename?: 'Organization';
|
4858
|
-
} & Pick<IOrganization, 'id' | 'name' | 'description'> & {
|
4892
|
+
} & Pick<IOrganization, 'id' | 'name' | 'title' | 'description'> & {
|
4859
4893
|
orgMembers?: Maybe<Array<Maybe<({
|
4860
4894
|
__typename?: 'OrgUser';
|
4861
4895
|
} & Pick<IOrgUser, 'userId' | 'role'>)>>>;
|
@@ -4869,7 +4903,7 @@ export declare type IgetUserOrganizationsWithRoleQuery = ({
|
|
4869
4903
|
} & {
|
4870
4904
|
getUserOrganizationsWithRole?: Maybe<Array<Maybe<({
|
4871
4905
|
__typename?: 'Organization';
|
4872
|
-
} & Pick<IOrganization, 'id' | 'name' | 'description'> & {
|
4906
|
+
} & Pick<IOrganization, 'id' | 'name' | 'title' | 'description'> & {
|
4873
4907
|
orgMembers?: Maybe<Array<Maybe<({
|
4874
4908
|
__typename?: 'OrgUser';
|
4875
4909
|
} & IOrgUserFragment)>>>;
|
@@ -7516,6 +7550,32 @@ export declare function useGetUserOrganizationsListLazyQuery(baseOptions?: Apoll
|
|
7516
7550
|
export declare type GetUserOrganizationsListQueryHookResult = ReturnType<typeof useGetUserOrganizationsListQuery>;
|
7517
7551
|
export declare type GetUserOrganizationsListLazyQueryHookResult = ReturnType<typeof useGetUserOrganizationsListLazyQuery>;
|
7518
7552
|
export declare type GetUserOrganizationsListQueryResult = Apollo.QueryResult<IGetUserOrganizationsListQuery, IGetUserOrganizationsListQueryVariables>;
|
7553
|
+
export declare const AccountOnBoardingDocument: DocumentNode;
|
7554
|
+
/**
|
7555
|
+
* __useAccountOnBoardingQuery__
|
7556
|
+
*
|
7557
|
+
* To run a query within a React component, call `useAccountOnBoardingQuery` and pass it any options that fit your needs.
|
7558
|
+
* When your component renders, `useAccountOnBoardingQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
7559
|
+
* you can use to render your UI.
|
7560
|
+
*
|
7561
|
+
* @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;
|
7562
|
+
*
|
7563
|
+
* @example
|
7564
|
+
* const { data, loading, error } = useAccountOnBoardingQuery({
|
7565
|
+
* variables: {
|
7566
|
+
* input: // value for 'input'
|
7567
|
+
* },
|
7568
|
+
* });
|
7569
|
+
*/
|
7570
|
+
export declare function useAccountOnBoardingQuery(baseOptions?: Apollo.QueryHookOptions<IAccountOnBoardingQuery, IAccountOnBoardingQueryVariables>): Apollo.QueryResult<IAccountOnBoardingQuery, Exact<{
|
7571
|
+
input?: IIOnBoardingParams;
|
7572
|
+
}>>;
|
7573
|
+
export declare function useAccountOnBoardingLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IAccountOnBoardingQuery, IAccountOnBoardingQueryVariables>): Apollo.QueryTuple<IAccountOnBoardingQuery, Exact<{
|
7574
|
+
input?: IIOnBoardingParams;
|
7575
|
+
}>>;
|
7576
|
+
export declare type AccountOnBoardingQueryHookResult = ReturnType<typeof useAccountOnBoardingQuery>;
|
7577
|
+
export declare type AccountOnBoardingLazyQueryHookResult = ReturnType<typeof useAccountOnBoardingLazyQuery>;
|
7578
|
+
export declare type AccountOnBoardingQueryResult = Apollo.QueryResult<IAccountOnBoardingQuery, IAccountOnBoardingQueryVariables>;
|
7519
7579
|
export declare const DecodeOrganizationInvitationDocument: DocumentNode;
|
7520
7580
|
/**
|
7521
7581
|
* __useDecodeOrganizationInvitationQuery__
|
@@ -11022,6 +11082,10 @@ export declare type IResolversTypes = {
|
|
11022
11082
|
UserAccount: ResolverTypeWrapper<IUserAccount>;
|
11023
11083
|
DateTime: ResolverTypeWrapper<Scalars['DateTime']>;
|
11024
11084
|
PageInfo: ResolverTypeWrapper<IPageInfo>;
|
11085
|
+
IOnBoardingParams: IIOnBoardingParams;
|
11086
|
+
OrgType: IOrgType;
|
11087
|
+
AnyObject: ResolverTypeWrapper<Scalars['AnyObject']>;
|
11088
|
+
TeamType: ITeamType;
|
11025
11089
|
DockerRegistry: ResolverTypeWrapper<IDockerRegistry>;
|
11026
11090
|
MonocularRegistry: ResolverTypeWrapper<IMonocularRegistry>;
|
11027
11091
|
OrganizationInvitationDecode: ResolverTypeWrapper<IOrganizationInvitationDecode>;
|
@@ -11030,7 +11094,6 @@ export declare type IResolversTypes = {
|
|
11030
11094
|
Position: ResolverTypeWrapper<IPosition>;
|
11031
11095
|
SettingsSection: ResolverTypeWrapper<ISettingsSection>;
|
11032
11096
|
ContributionSettings: ResolverTypeWrapper<IContributionSettings>;
|
11033
|
-
AnyObject: ResolverTypeWrapper<Scalars['AnyObject']>;
|
11034
11097
|
ConfigurationScope: ConfigurationScope;
|
11035
11098
|
ConfigurationExtensionInfo: ResolverTypeWrapper<IConfigurationExtensionInfo>;
|
11036
11099
|
ContributionSettingsProperties: ResolverTypeWrapper<IContributionSettingsProperties>;
|
@@ -11407,6 +11470,10 @@ export declare type IResolversParentTypes = {
|
|
11407
11470
|
UserAccount: IUserAccount;
|
11408
11471
|
DateTime: Scalars['DateTime'];
|
11409
11472
|
PageInfo: IPageInfo;
|
11473
|
+
IOnBoardingParams: IIOnBoardingParams;
|
11474
|
+
OrgType: IOrgType;
|
11475
|
+
AnyObject: Scalars['AnyObject'];
|
11476
|
+
TeamType: ITeamType;
|
11410
11477
|
DockerRegistry: IDockerRegistry;
|
11411
11478
|
MonocularRegistry: IMonocularRegistry;
|
11412
11479
|
OrganizationInvitationDecode: IOrganizationInvitationDecode;
|
@@ -11415,7 +11482,6 @@ export declare type IResolversParentTypes = {
|
|
11415
11482
|
Position: IPosition;
|
11416
11483
|
SettingsSection: ISettingsSection;
|
11417
11484
|
ContributionSettings: IContributionSettings;
|
11418
|
-
AnyObject: Scalars['AnyObject'];
|
11419
11485
|
ConfigurationExtensionInfo: IConfigurationExtensionInfo;
|
11420
11486
|
ContributionSettingsProperties: IContributionSettingsProperties;
|
11421
11487
|
PreferencesResponse: IPreferencesResponse;
|
@@ -11767,6 +11833,7 @@ export declare type IAccountTeamResolvers<ContextType = MyContext, ParentType ex
|
|
11767
11833
|
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
11768
11834
|
_id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11769
11835
|
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11836
|
+
title?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11770
11837
|
orgName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11771
11838
|
tags?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
11772
11839
|
settingsUri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
@@ -12666,6 +12733,7 @@ export interface IObservableScalarConfig extends GraphQLScalarTypeConfig<IResolv
|
|
12666
12733
|
export declare type IOrganizationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Organization'] = IResolversParentTypes['Organization']> = {
|
12667
12734
|
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
12668
12735
|
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12736
|
+
title?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12669
12737
|
description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12670
12738
|
picture?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12671
12739
|
stripeId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -13010,6 +13078,7 @@ export declare type IQueryResolvers<ContextType = MyContext, ParentType extends
|
|
13010
13078
|
WorkspaceState?: Resolver<Maybe<IResolversTypes['Workspace']>, ParentType, ContextType>;
|
13011
13079
|
Workspaces?: Resolver<Maybe<Array<Maybe<IResolversTypes['Workspace']>>>, ParentType, ContextType>;
|
13012
13080
|
accessTokens?: Resolver<IResolversTypes['AccessTokenConnection'], ParentType, ContextType, RequireFields<IQueryaccessTokensArgs, never>>;
|
13081
|
+
accountOnBoarding?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IQueryaccountOnBoardingArgs, never>>;
|
13013
13082
|
allDockerRegistries?: Resolver<Maybe<Array<Maybe<IResolversTypes['DockerRegistry']>>>, ParentType, ContextType>;
|
13014
13083
|
allMonocularRegistries?: Resolver<Maybe<Array<Maybe<IResolversTypes['MonocularRegistry']>>>, ParentType, ContextType>;
|
13015
13084
|
decodeOrganizationInvitation?: Resolver<Maybe<IResolversTypes['OrganizationInvitationDecode']>, ParentType, ContextType, RequireFields<IQuerydecodeOrganizationInvitationArgs, 'token'>>;
|
@@ -3,13 +3,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.IWorkspaceDeploymentCommands = exports.IVisibility = exports.IUserOrderBy = exports.IUserBroadcasterAction = exports.ITeamServiceAction = exports.IStackType = exports.ISshKeyType = exports.ISshKeyServiceAction = exports.ISettingValueType = exports.IRouteParams = exports.IRole = exports.IResourceUtilizationServiceAction = exports.IResourceAuthority = exports.IRegistryExtensions = exports.IPrometheusUtilizationServiceAction = exports.IProjectType = exports.IProjectSourceType = exports.IProjectSourceProviders = exports.IPreDefinedRole = exports.IPortalLanguage = exports.IPermissionType = exports.IPermissionResource = exports.IPermissionAction = exports.IOrgUserRole = exports.IOrganizationServiceAction = exports.IOrganizationContextPubSubEvents = exports.IOrgainizationInvitationRole = exports.IMoleculerServiceName = exports.IMenuPosition = exports.IMailTemplateId = exports.IInviteStatus = exports.IIntegrationConfigServiceAction = exports.InactivityInterval = exports.IEWorkspaceManagementQProps = exports.IEActivityScopes = exports.IContextServiceAction = exports.ConfigurationTarget = exports.ConfigurationScope = exports.IConfigurationContributionNames = exports.IConfigFragmentName = exports.IConfigCollectionName = exports.IClientTypes = exports.IClientContainerService = exports.IClientCacheTypeNames = exports.ICacheControlScope = exports.IAuthErrorCodes = exports.IApplicationRoles = exports.IApplicationBillingPlanPolicy = exports.IActivityServiceCommands = exports.IAccountServiceAction = void 0;
|
4
4
|
exports.CreateInvoiceDocument = exports.usechangeOrgMemberRoleMutation = exports.changeOrgMemberRoleDocument = exports.usechangeMemberRoleMutation = exports.changeMemberRoleDocument = exports.useAddTeamMembersMutation = exports.AddTeamMembersDocument = exports.useAddOrgProjectMutation = exports.AddOrgProjectDocument = exports.useAddClientMutation = exports.AddClientDocument = exports.useacceptOrganizationInvitationMutation = exports.acceptOrganizationInvitationDocument = exports.OrganizationDataFragmentDoc = exports.MachineDataFragmentDoc = exports.OrganizationResourceDataFragmentDoc = exports.ConfigurationModelFragmentDoc = exports.AccountBillingPreferencesFragmentDoc = exports.TeamWithOrgOnContextFragmentDoc = exports.TeamContextFragmentDoc = exports.TeamNameInContextFragmentDoc = exports.RoleTargetFragmentDoc = exports.ResourceUserRoleFragmentDoc = exports.OrganizationUserFragmentDoc = exports.OrgContextFragmentDoc = exports.OrgNameInContextFragmentDoc = exports.MachineConfigurationFragmentDoc = exports.DefaultContextFragmentDoc = exports.ContextConfigurationFragmentDoc = exports.ConfigurationFragmentDoc = exports.OverWriteRoleValueFragmentDoc = exports.DefaultSettingFragmentDoc = exports.ConfigurationUpdateEventFragmentDoc = exports.WorkspaceInfoFragmentDoc = exports.WorkspaceUpdateFragmentDoc = exports.WorkspaceStopFragmentDoc = exports.WorkspaceStartFragmentDoc = exports.WorkspaceRemoveFragmentDoc = exports.WorkspaceCreateRequestFragmentDoc = exports.WorkspaceProjectControlFragmentDoc = exports.StackControlFragmentDoc = exports.WorkspaceDetailFragmentDoc = exports.UserCreationEventFragmentDoc = exports.OrgUserFragmentDoc = exports.AllContextFragmentDoc = exports.IZipkinRoutes = exports.IWorkspaceStatus = exports.IWorkspaceServiceCommands = exports.IWorkspaceServerEvents = exports.IWorkspaceManagerAction = void 0;
|
5
5
|
exports.useGetUserOrganizationsListLazyQuery = exports.useGetUserOrganizationsListQuery = exports.GetUserOrganizationsListDocument = exports.useUpsertProjectThroughIntegrationMutation = exports.UpsertProjectThroughIntegrationDocument = exports.useupdateTeamConfigurationMutation = exports.updateTeamConfigurationDocument = exports.useUpdateTaskMutation = exports.UpdateTaskDocument = exports.useUpdateProjectStatusMutation = exports.UpdateProjectStatusDocument = exports.useupdateOrganizationMutation = exports.updateOrganizationDocument = exports.useUpdateOrgProjectMutation = exports.UpdateOrgProjectDocument = exports.useupdateOrgMemberTeamsMutation = exports.updateOrgMemberTeamsDocument = exports.useUpdateOrgClientMutation = exports.UpdateOrgClientDocument = exports.useUpdateInvoiceMutation = exports.UpdateInvoiceDocument = exports.usesendOrganizationInvitationMutation = exports.sendOrganizationInvitationDocument = exports.useSendInvoiceMailMutation = exports.SendInvoiceMailDocument = exports.useResendOrganizationInvitationMutation = exports.ResendOrganizationInvitationDocument = exports.useRemoveTeamMemberMutation = exports.RemoveTeamMemberDocument = exports.useremoveTeamMutation = exports.removeTeamDocument = exports.useRemoveTaskMutation = exports.RemoveTaskDocument = exports.useremoveOrganizationMutation = exports.removeOrganizationDocument = exports.useRemoveOrgMemberMutation = exports.RemoveOrgMemberDocument = exports.useRemoveOrgClientMutation = exports.RemoveOrgClientDocument = exports.useRemoveInvoiceMutation = exports.RemoveInvoiceDocument = exports.useDeclineOrganizationInvitationMutation = exports.DeclineOrganizationInvitationDocument = exports.usecreateTeamMutation = exports.createTeamDocument = exports.useCreateTaskMutation = exports.CreateTaskDocument = exports.usecreateOrganizationMutation = exports.createOrganizationDocument = exports.useCreateInvoiceMutation = void 0;
|
6
|
-
exports.
|
7
|
-
exports.
|
8
|
-
exports.
|
9
|
-
exports.
|
10
|
-
exports.
|
11
|
-
exports.
|
12
|
-
exports.
|
6
|
+
exports.usegetOrganizationTeamsQuery = exports.getOrganizationTeamsDocument = exports.useGetOrganizationMembersWithNameLazyQuery = exports.useGetOrganizationMembersWithNameQuery = exports.GetOrganizationMembersWithNameDocument = exports.useGetOrganizationClientsLazyQuery = exports.useGetOrganizationClientsQuery = exports.GetOrganizationClientsDocument = exports.useGetOrgUserLazyQuery = exports.useGetOrgUserQuery = exports.GetOrgUserDocument = exports.usegetOrgTeamInvitationsLazyQuery = exports.usegetOrgTeamInvitationsQuery = exports.getOrgTeamInvitationsDocument = exports.useGetOrganizationInvitationLazyQuery = exports.useGetOrganizationInvitationQuery = exports.GetOrganizationInvitationDocument = exports.useGetOrgInvitationMembersLazyQuery = exports.useGetOrgInvitationMembersQuery = exports.GetOrgInvitationMembersDocument = exports.useGetManageableOrganizationsLazyQuery = exports.useGetManageableOrganizationsQuery = exports.GetManageableOrganizationsDocument = exports.useGetInvoicesLazyQuery = exports.useGetInvoicesQuery = exports.GetInvoicesDocument = exports.useGetFilteredProjectsLazyQuery = exports.useGetFilteredProjectsQuery = exports.GetFilteredProjectsDocument = exports.useGetDefaultInvoiceNumberLazyQuery = exports.useGetDefaultInvoiceNumberQuery = exports.GetDefaultInvoiceNumberDocument = exports.useGetAsanaWorkspacesLazyQuery = exports.useGetAsanaWorkspacesQuery = exports.GetAsanaWorkspacesDocument = exports.useGetAsanaWorkspaceProjectsLazyQuery = exports.useGetAsanaWorkspaceProjectsQuery = exports.GetAsanaWorkspaceProjectsDocument = exports.useGetAsanaConnectionStateLazyQuery = exports.useGetAsanaConnectionStateQuery = exports.GetAsanaConnectionStateDocument = exports.useGetAccountsLazyQuery = exports.useGetAccountsQuery = exports.GetAccountsDocument = exports.useDecodeOrganizationInvitationLazyQuery = exports.useDecodeOrganizationInvitationQuery = exports.DecodeOrganizationInvitationDocument = exports.useAccountOnBoardingLazyQuery = exports.useAccountOnBoardingQuery = exports.AccountOnBoardingDocument = void 0;
|
7
|
+
exports.GetUsersDocument = exports.useGetOrgMembersWithRolesLazyQuery = exports.useGetOrgMembersWithRolesQuery = exports.GetOrgMembersWithRolesDocument = exports.useGetOrgMembersWithRolesUnsecuredLazyQuery = exports.useGetOrgMembersWithRolesUnsecuredQuery = exports.GetOrgMembersWithRolesUnsecuredDocument = exports.useGetAccountsApplicationPoliciesLazyQuery = exports.useGetAccountsApplicationPoliciesQuery = exports.GetAccountsApplicationPoliciesDocument = exports.useGetAccountsViewerSettingsLazyQuery = exports.useGetAccountsViewerSettingsQuery = exports.GetAccountsViewerSettingsDocument = exports.useGetViewerSettingsLazyQuery = exports.useGetViewerSettingsQuery = exports.GetViewerSettingsDocument = exports.useTeamsLazyQuery = exports.useTeamsQuery = exports.TeamsDocument = exports.useteamLazyQuery = exports.useteamQuery = exports.teamDocument = exports.useorganizationsLazyQuery = exports.useorganizationsQuery = exports.organizationsDocument = exports.useGetOrganizationMembersLazyQuery = exports.useGetOrganizationMembersQuery = exports.GetOrganizationMembersDocument = exports.usegetUserOrganizationsWithRoleLazyQuery = exports.usegetUserOrganizationsWithRoleQuery = exports.getUserOrganizationsWithRoleDocument = exports.usegetUserOrganizationsLazyQuery = exports.usegetUserOrganizationsQuery = exports.getUserOrganizationsDocument = exports.useGetUserAccountLazyQuery = exports.useGetUserAccountQuery = exports.GetUserAccountDocument = exports.usegetTeamByNameLazyQuery = exports.usegetTeamByNameQuery = exports.getTeamByNameDocument = exports.usegetTeamLazyQuery = exports.usegetTeamQuery = exports.getTeamDocument = exports.useGetTasksLazyQuery = exports.useGetTasksQuery = exports.GetTasksDocument = exports.useGetProjectsLazyQuery = exports.useGetProjectsQuery = exports.GetProjectsDocument = exports.usegetOrganizationTeamsLazyQuery = void 0;
|
8
|
+
exports.repositoriesDocument = exports.usegetAllMonocularRegistriesLazyQuery = exports.usegetAllMonocularRegistriesQuery = exports.getAllMonocularRegistriesDocument = exports.usegetChartsLazyQuery = exports.usegetChartsQuery = exports.getChartsDocument = exports.usegetChartLazyQuery = exports.usegetChartQuery = exports.getChartDocument = exports.usechartVersionsLazyQuery = exports.usechartVersionsQuery = exports.chartVersionsDocument = exports.usegetChartDetailsLazyQuery = exports.usegetChartDetailsQuery = exports.getChartDetailsDocument = exports.useuploadMutation = exports.uploadDocument = exports.useupdateMonocularRegistryMutation = exports.updateMonocularRegistryDocument = exports.usetestConnectionMutation = exports.testConnectionDocument = exports.useremoveUserRepositoryMutation = exports.removeUserRepositoryDocument = exports.useremoveMonocularRegistryMutation = exports.removeMonocularRegistryDocument = exports.usecreateUserRepositoryMutation = exports.createUserRepositoryDocument = exports.usecreateMonocularRegistryMutation = exports.createMonocularRegistryDocument = exports.useupdateDockerRegistryMutation = exports.updateDockerRegistryDocument = exports.useremoveDockerRegistryMutation = exports.removeDockerRegistryDocument = exports.usedockerRegistryCatalogLazyQuery = exports.usedockerRegistryCatalogQuery = exports.dockerRegistryCatalogDocument = exports.usetagsLazyQuery = exports.usetagsQuery = exports.tagsDocument = exports.usecreateDockerRegistryMutation = exports.createDockerRegistryDocument = exports.usegetAllDockerRegistriesLazyQuery = exports.usegetAllDockerRegistriesQuery = exports.getAllDockerRegistriesDocument = exports.usedockerCatalogLazyQuery = exports.usedockerCatalogQuery = exports.dockerCatalogDocument = exports.useGetUsersLazyQuery = exports.useGetUsersQuery = void 0;
|
9
|
+
exports.toggleSidebarDocument = exports.usesubscribeToWorkspaceSubscription = exports.subscribeToWorkspaceDocument = exports.useGetWorkspacesLazyQuery = exports.useGetWorkspacesQuery = exports.GetWorkspacesDocument = exports.useWorkspaceStateLazyQuery = exports.useWorkspaceStateQuery = exports.WorkspaceStateDocument = exports.useGetWorkspaceLazyQuery = exports.useGetWorkspaceQuery = exports.GetWorkspaceDocument = exports.useGetTeamWorkspacesLazyQuery = exports.useGetTeamWorkspacesQuery = exports.GetTeamWorkspacesDocument = exports.useRestoreWorkspaceCreationFormLazyQuery = exports.useRestoreWorkspaceCreationFormQuery = exports.RestoreWorkspaceCreationFormDocument = exports.useGetOrgWorkspacesLazyQuery = exports.useGetOrgWorkspacesQuery = exports.GetOrgWorkspacesDocument = exports.useClearWorkspaceCreationFormMutation = exports.ClearWorkspaceCreationFormDocument = exports.useUpdateWorkspaceMutation = exports.UpdateWorkspaceDocument = exports.useStopWorkspaceMutation = exports.StopWorkspaceDocument = exports.useStartWorkspaceMutation = exports.StartWorkspaceDocument = exports.useSetEnvVariablesMutation = exports.SetEnvVariablesDocument = exports.useRemoveWorkpsaceMutation = exports.RemoveWorkpsaceDocument = exports.useRemoveTeamFromWorkspaceMutation = exports.RemoveTeamFromWorkspaceDocument = exports.useAddWorkspaceMutation = exports.AddWorkspaceDocument = exports.useAddTeamToWorkspacesMutation = exports.AddTeamToWorkspacesDocument = exports.useAddStacksMutation = exports.AddStacksDocument = exports.useAddProjectMutation = exports.AddProjectDocument = exports.useCollectMutation = exports.CollectDocument = exports.useuserRepositoriesLazyQuery = exports.useuserRepositoriesQuery = exports.userRepositoriesDocument = exports.userepositoriesLazyQuery = exports.userepositoriesQuery = void 0;
|
10
|
+
exports.useGetDefaultPolicySettingsLazyQuery = exports.useGetDefaultPolicySettingsQuery = exports.GetDefaultPolicySettingsDocument = exports.useGetDefaultPermissionsLazyQuery = exports.useGetDefaultPermissionsQuery = exports.GetDefaultPermissionsDocument = exports.useGetDefaultApplicationPermissionsLazyQuery = exports.useGetDefaultApplicationPermissionsQuery = exports.GetDefaultApplicationPermissionsDocument = exports.useGetContextPropertyLazyQuery = exports.useGetContextPropertyQuery = exports.GetContextPropertyDocument = exports.useGetConfigurationTargetLazyQuery = exports.useGetConfigurationTargetQuery = exports.GetConfigurationTargetDocument = exports.useDefaultResolveSettingsLazyQuery = exports.useDefaultResolveSettingsQuery = exports.DefaultResolveSettingsDocument = exports.useGetApplicationRoleLazyQuery = exports.useGetApplicationRoleQuery = exports.GetApplicationRoleDocument = exports.useGetApplicationPolicyLazyQuery = exports.useGetApplicationPolicyQuery = exports.GetApplicationPolicyDocument = exports.useUpdateConfigurationMutation = exports.UpdateConfigurationDocument = exports.useReassignConfigurationMutation = exports.ReassignConfigurationDocument = exports.useDeleteIntegrationConfigurationMutation = exports.DeleteIntegrationConfigurationDocument = exports.useCreateOrUpdateIntegrationConfigurationMutation = exports.CreateOrUpdateIntegrationConfigurationDocument = exports.useCreateIntegrationConfigurationMutation = exports.CreateIntegrationConfigurationDocument = exports.useInitializeTeamInContextMutation = exports.InitializeTeamInContextDocument = exports.useInitializeOrgNameInContextMutation = exports.InitializeOrgNameInContextDocument = exports.useInitiateConfigurationValueMutation = exports.InitiateConfigurationValueDocument = exports.useChangeOrganizationMutation = exports.ChangeOrganizationDocument = exports.useAddResourceToContextMutation = exports.AddResourceToContextDocument = exports.useAddContributionRoleMutation = exports.AddContributionRoleDocument = exports.usesidebarStateLazyQuery = exports.usesidebarStateQuery = exports.sidebarStateDocument = exports.usetoggleSidebarMutation = void 0;
|
11
|
+
exports.useGetOrgNameFromContextQuery = exports.GetOrgNameFromContextDocument = exports.useGetOrgContextLazyQuery = exports.useGetOrgContextQuery = exports.GetOrgContextDocument = exports.usegetContributionRolesLazyQuery = exports.usegetContributionRolesQuery = exports.getContributionRolesDocument = exports.useDefaultSettingsLazyQuery = exports.useDefaultSettingsQuery = exports.DefaultSettingsDocument = exports.useGetUserConfigurationLazyQuery = exports.useGetUserConfigurationQuery = exports.GetUserConfigurationDocument = exports.useGetResourcesConfigurationLazyQuery = exports.useGetResourcesConfigurationQuery = exports.GetResourcesConfigurationDocument = exports.useResolveConfigurationLazyQuery = exports.useResolveConfigurationQuery = exports.ResolveConfigurationDocument = exports.useGetOrgWithResourcesRoleLazyQuery = exports.useGetOrgWithResourcesRoleQuery = exports.GetOrgWithResourcesRoleDocument = exports.useGetOrgWithResourcesPolicyLazyQuery = exports.useGetOrgWithResourcesPolicyQuery = exports.GetOrgWithResourcesPolicyDocument = exports.useGetOrgRoleLazyQuery = exports.useGetOrgRoleQuery = exports.GetOrgRoleDocument = exports.useGetOrgPolicyLazyQuery = exports.useGetOrgPolicyQuery = exports.GetOrgPolicyDocument = exports.useGetOrgConfigurationLazyQuery = exports.useGetOrgConfigurationQuery = exports.GetOrgConfigurationDocument = exports.useOpenPreferencesSettingsLazyQuery = exports.useOpenPreferencesSettingsQuery = exports.OpenPreferencesSettingsDocument = exports.usegetUserAccessRoleLazyQuery = exports.usegetUserAccessRoleQuery = exports.getUserAccessRoleDocument = exports.useGetTeamNameFromContextLazyQuery = exports.useGetTeamNameFromContextQuery = exports.GetTeamNameFromContextDocument = exports.useGetTeamContextLazyQuery = exports.useGetTeamContextQuery = exports.GetTeamContextDocument = exports.useGetDefaultRoleLazyQuery = exports.useGetDefaultRoleQuery = exports.GetDefaultRoleDocument = void 0;
|
12
|
+
exports.useOrganizationResourceContextLazyQuery = exports.useOrganizationResourceContextQuery = exports.OrganizationResourceContextDocument = exports.useMachineResourceContextLazyQuery = exports.useMachineResourceContextQuery = exports.MachineResourceContextDocument = exports.usegetConfigurationDataLazyQuery = exports.usegetConfigurationDataQuery = exports.getConfigurationDataDocument = exports.useUpdateRoleValueMutation = exports.UpdateRoleValueDocument = exports.useUpdatePolicyValueMutation = exports.UpdatePolicyValueDocument = exports.useupdateOrganizationContextUpdateResourcesMutation = exports.updateOrganizationContextUpdateResourcesDocument = exports.useupdateOrganizationContextRemoveResourcesMutation = exports.updateOrganizationContextRemoveResourcesDocument = exports.useupdateOrganizationContextAddResourcesMutation = exports.updateOrganizationContextAddResourcesDocument = exports.useUpdateConfigurationValueMutation = exports.UpdateConfigurationValueDocument = exports.useUpdateConfigurationValueByUriMutation = exports.UpdateConfigurationValueByUriDocument = exports.useSubscribeToPolicyUpdateSubscription = exports.SubscribeToPolicyUpdateDocument = exports.useSubscribeToPermissionUpdateSubscription = exports.SubscribeToPermissionUpdateDocument = exports.usesubscribeToOrganizationContextSubscription = exports.subscribeToOrganizationContextDocument = exports.useSubscribeToConfigurationUpdateSubscription = exports.SubscribeToConfigurationUpdateDocument = exports.useGetUserWithDefaultConfigurationLazyQuery = exports.useGetUserWithDefaultConfigurationQuery = exports.GetUserWithDefaultConfigurationDocument = exports.useGetOrgWithResourcesConfigurationLazyQuery = exports.useGetOrgWithResourcesConfigurationQuery = exports.GetOrgWithResourcesConfigurationDocument = exports.useGetIntegrationConfigurationLazyQuery = exports.useGetIntegrationConfigurationQuery = exports.GetIntegrationConfigurationDocument = exports.useGetAllIntegrationConfigurationsLazyQuery = exports.useGetAllIntegrationConfigurationsQuery = exports.GetAllIntegrationConfigurationsDocument = exports.useFilterIntegrationConfigurationLazyQuery = exports.useFilterIntegrationConfigurationQuery = exports.FilterIntegrationConfigurationDocument = exports.usegetRoleLazyQuery = exports.usegetRoleQuery = exports.getRoleDocument = exports.useGetOrgNameFromContextLazyQuery = void 0;
|
13
|
+
exports.useViewerSettingsLazyQuery = exports.useViewerSettingsQuery = exports.ViewerSettingsDocument = void 0;
|
13
14
|
const enum_1 = require("../enum");
|
14
15
|
Object.defineProperty(exports, "InactivityInterval", { enumerable: true, get: function () { return enum_1.InactivityInterval; } });
|
15
16
|
const Apollo = require("@apollo/client");
|
@@ -25,6 +26,7 @@ var IAccountServiceAction;
|
|
25
26
|
IAccountServiceAction["deleteAccount"] = "deleteAccount";
|
26
27
|
IAccountServiceAction["onAccountCreated"] = "onAccountCreated";
|
27
28
|
IAccountServiceAction["onAccountDeleted"] = "onAccountDeleted";
|
29
|
+
IAccountServiceAction["accountOnBoarding"] = "accountOnBoarding";
|
28
30
|
})(IAccountServiceAction = exports.IAccountServiceAction || (exports.IAccountServiceAction = {}));
|
29
31
|
;
|
30
32
|
var IActivityServiceCommands;
|
@@ -313,6 +315,9 @@ var IOrganizationServiceAction;
|
|
313
315
|
IOrganizationServiceAction["onUserInvitationSend"] = "onUserInvitationSend";
|
314
316
|
IOrganizationServiceAction["onUserInvitationResend"] = "onUserInvitationResend";
|
315
317
|
IOrganizationServiceAction["onOrgMemberRemoved"] = "onOrgMemberRemoved";
|
318
|
+
IOrganizationServiceAction["onCreateOrganization"] = "onCreateOrganization";
|
319
|
+
IOrganizationServiceAction["onCreateTeam"] = "onCreateTeam";
|
320
|
+
IOrganizationServiceAction["onSendInvitation"] = "onSendInvitation";
|
316
321
|
})(IOrganizationServiceAction = exports.IOrganizationServiceAction || (exports.IOrganizationServiceAction = {}));
|
317
322
|
;
|
318
323
|
var IOrgUserRole;
|
@@ -862,7 +867,7 @@ function useCreateTaskMutation(baseOptions) {
|
|
862
867
|
return Apollo.useMutation(exports.CreateTaskDocument, options);
|
863
868
|
}
|
864
869
|
exports.useCreateTaskMutation = useCreateTaskMutation;
|
865
|
-
exports.createTeamDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "createTeam" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "request" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "TeamCreationRequest" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "createTeam" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "request" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "request" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "_id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "tags" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }] } }] } }] };
|
870
|
+
exports.createTeamDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "mutation", "name": { "kind": "Name", "value": "createTeam" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "request" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "TeamCreationRequest" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "createTeam" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "request" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "request" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "_id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "title" } }, { "kind": "Field", "name": { "kind": "Name", "value": "tags" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }] } }] } }] };
|
866
871
|
/**
|
867
872
|
* __usecreateTeamMutation__
|
868
873
|
*
|
@@ -1359,7 +1364,7 @@ function useUpsertProjectThroughIntegrationMutation(baseOptions) {
|
|
1359
1364
|
return Apollo.useMutation(exports.UpsertProjectThroughIntegrationDocument, options);
|
1360
1365
|
}
|
1361
1366
|
exports.useUpsertProjectThroughIntegrationMutation = useUpsertProjectThroughIntegrationMutation;
|
1362
|
-
exports.GetUserOrganizationsListDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetUserOrganizationsList" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getUserOrganizations" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isBillingLeader" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgMembers" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "OrgUser" } }, { "kind": "Field", "name": { "kind": "Name", "value": "inactive" } }] } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "OrgUser" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrgUser" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "role" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isSelf" } }] } }] };
|
1367
|
+
exports.GetUserOrganizationsListDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetUserOrganizationsList" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getUserOrganizations" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "title" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isBillingLeader" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgMembers" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "OrgUser" } }, { "kind": "Field", "name": { "kind": "Name", "value": "inactive" } }] } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "OrgUser" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrgUser" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "role" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isSelf" } }] } }] };
|
1363
1368
|
/**
|
1364
1369
|
* __useGetUserOrganizationsListQuery__
|
1365
1370
|
*
|
@@ -1385,6 +1390,33 @@ function useGetUserOrganizationsListLazyQuery(baseOptions) {
|
|
1385
1390
|
return Apollo.useLazyQuery(exports.GetUserOrganizationsListDocument, options);
|
1386
1391
|
}
|
1387
1392
|
exports.useGetUserOrganizationsListLazyQuery = useGetUserOrganizationsListLazyQuery;
|
1393
|
+
exports.AccountOnBoardingDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "AccountOnBoarding" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "IOnBoardingParams" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "accountOnBoarding" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "input" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "input" } } }] }] } }] };
|
1394
|
+
/**
|
1395
|
+
* __useAccountOnBoardingQuery__
|
1396
|
+
*
|
1397
|
+
* To run a query within a React component, call `useAccountOnBoardingQuery` and pass it any options that fit your needs.
|
1398
|
+
* When your component renders, `useAccountOnBoardingQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
1399
|
+
* you can use to render your UI.
|
1400
|
+
*
|
1401
|
+
* @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;
|
1402
|
+
*
|
1403
|
+
* @example
|
1404
|
+
* const { data, loading, error } = useAccountOnBoardingQuery({
|
1405
|
+
* variables: {
|
1406
|
+
* input: // value for 'input'
|
1407
|
+
* },
|
1408
|
+
* });
|
1409
|
+
*/
|
1410
|
+
function useAccountOnBoardingQuery(baseOptions) {
|
1411
|
+
const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
|
1412
|
+
return Apollo.useQuery(exports.AccountOnBoardingDocument, options);
|
1413
|
+
}
|
1414
|
+
exports.useAccountOnBoardingQuery = useAccountOnBoardingQuery;
|
1415
|
+
function useAccountOnBoardingLazyQuery(baseOptions) {
|
1416
|
+
const options = Object.assign(Object.assign({}, defaultOptions), baseOptions);
|
1417
|
+
return Apollo.useLazyQuery(exports.AccountOnBoardingDocument, options);
|
1418
|
+
}
|
1419
|
+
exports.useAccountOnBoardingLazyQuery = useAccountOnBoardingLazyQuery;
|
1388
1420
|
exports.DecodeOrganizationInvitationDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "DecodeOrganizationInvitation" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "token" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "decodeOrganizationInvitation" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "token" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "token" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "orgName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "teamName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "email" } }, { "kind": "Field", "name": { "kind": "Name", "value": "invitationId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "invitedBy" } }] } }] } }] };
|
1389
1421
|
/**
|
1390
1422
|
* __useDecodeOrganizationInvitationQuery__
|
@@ -1597,7 +1629,7 @@ function useGetInvoicesLazyQuery(baseOptions) {
|
|
1597
1629
|
return Apollo.useLazyQuery(exports.GetInvoicesDocument, options);
|
1598
1630
|
}
|
1599
1631
|
exports.useGetInvoicesLazyQuery = useGetInvoicesLazyQuery;
|
1600
|
-
exports.GetManageableOrganizationsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetManageableOrganizations" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getManageableOrganizations" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isBillingLeader" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgMembers" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "OrgUser" } }, { "kind": "Field", "name": { "kind": "Name", "value": "inactive" } }] } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "OrgUser" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrgUser" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "role" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isSelf" } }] } }] };
|
1632
|
+
exports.GetManageableOrganizationsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetManageableOrganizations" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getManageableOrganizations" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "title" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isBillingLeader" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgMembers" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "OrgUser" } }, { "kind": "Field", "name": { "kind": "Name", "value": "inactive" } }] } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "OrgUser" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrgUser" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "role" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isSelf" } }] } }] };
|
1601
1633
|
/**
|
1602
1634
|
* __useGetManageableOrganizationsQuery__
|
1603
1635
|
*
|
@@ -1783,7 +1815,7 @@ function useGetOrganizationMembersWithNameLazyQuery(baseOptions) {
|
|
1783
1815
|
return Apollo.useLazyQuery(exports.GetOrganizationMembersWithNameDocument, options);
|
1784
1816
|
}
|
1785
1817
|
exports.useGetOrganizationMembersWithNameLazyQuery = useGetOrganizationMembersWithNameLazyQuery;
|
1786
|
-
exports.getOrganizationTeamsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "getOrganizationTeams" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orgName" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getOrganizationTeams" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "orgName" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orgName" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "_id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "tags" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }, { "kind": "Field", "name": { "kind": "Name", "value": "settingsUri" } }, { "kind": "Field", "name": { "kind": "Name", "value": "teamMembers" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "status" } }] } }] } }] } }] };
|
1818
|
+
exports.getOrganizationTeamsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "getOrganizationTeams" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orgName" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getOrganizationTeams" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "orgName" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orgName" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "_id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "title" } }, { "kind": "Field", "name": { "kind": "Name", "value": "tags" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }, { "kind": "Field", "name": { "kind": "Name", "value": "settingsUri" } }, { "kind": "Field", "name": { "kind": "Name", "value": "teamMembers" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "status" } }] } }] } }] } }] };
|
1787
1819
|
/**
|
1788
1820
|
* __usegetOrganizationTeamsQuery__
|
1789
1821
|
*
|
@@ -1945,7 +1977,7 @@ function useGetUserAccountLazyQuery(baseOptions) {
|
|
1945
1977
|
return Apollo.useLazyQuery(exports.GetUserAccountDocument, options);
|
1946
1978
|
}
|
1947
1979
|
exports.useGetUserAccountLazyQuery = useGetUserAccountLazyQuery;
|
1948
|
-
exports.getUserOrganizationsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "getUserOrganizations" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "userId" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getUserOrganizations" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "userId" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "userId" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgMembers" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "role" } }] } }] } }] } }] };
|
1980
|
+
exports.getUserOrganizationsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "getUserOrganizations" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "userId" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getUserOrganizations" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "userId" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "userId" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "title" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgMembers" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "role" } }] } }] } }] } }] };
|
1949
1981
|
/**
|
1950
1982
|
* __usegetUserOrganizationsQuery__
|
1951
1983
|
*
|
@@ -1972,7 +2004,7 @@ function usegetUserOrganizationsLazyQuery(baseOptions) {
|
|
1972
2004
|
return Apollo.useLazyQuery(exports.getUserOrganizationsDocument, options);
|
1973
2005
|
}
|
1974
2006
|
exports.usegetUserOrganizationsLazyQuery = usegetUserOrganizationsLazyQuery;
|
1975
|
-
exports.getUserOrganizationsWithRoleDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "getUserOrganizationsWithRole" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "userId" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getUserOrganizationsWithRole" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "userId" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "userId" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgMembers" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "OrgUser" } }] } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "OrgUser" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrgUser" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "role" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isSelf" } }] } }] };
|
2007
|
+
exports.getUserOrganizationsWithRoleDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "getUserOrganizationsWithRole" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "userId" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "String" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getUserOrganizationsWithRole" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "userId" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "userId" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "title" } }, { "kind": "Field", "name": { "kind": "Name", "value": "description" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgMembers" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "FragmentSpread", "name": { "kind": "Name", "value": "OrgUser" } }] } }] } }] } }, { "kind": "FragmentDefinition", "name": { "kind": "Name", "value": "OrgUser" }, "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrgUser" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "role" } }, { "kind": "Field", "name": { "kind": "Name", "value": "orgName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isSelf" } }] } }] };
|
1976
2008
|
/**
|
1977
2009
|
* __usegetUserOrganizationsWithRoleQuery__
|
1978
2010
|
*
|