@adminide-stack/core 1.1.1-alpha.156 → 1.1.1-alpha.159
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.
@@ -161,6 +161,7 @@ export declare type IAccountTeam = {
|
|
161
161
|
id?: Maybe<Scalars['ID']>;
|
162
162
|
_id?: Maybe<Scalars['String']>;
|
163
163
|
name?: Maybe<Scalars['String']>;
|
164
|
+
title?: Maybe<Scalars['String']>;
|
164
165
|
orgName?: Maybe<Scalars['String']>;
|
165
166
|
tags?: Maybe<Array<Maybe<Scalars['String']>>>;
|
166
167
|
settingsUri?: Maybe<Scalars['URI']>;
|
@@ -174,6 +175,7 @@ export declare type IAccountTeam_Input = {
|
|
174
175
|
id?: Maybe<Scalars['ID']>;
|
175
176
|
_id?: Maybe<Scalars['String']>;
|
176
177
|
name?: Maybe<Scalars['String']>;
|
178
|
+
title?: Maybe<Scalars['String']>;
|
177
179
|
orgName?: Maybe<Scalars['String']>;
|
178
180
|
tags?: Maybe<Array<Maybe<Scalars['String']>>>;
|
179
181
|
description?: Maybe<Scalars['String']>;
|
@@ -2087,6 +2089,7 @@ export declare type IOrganization = {
|
|
2087
2089
|
__typename?: 'Organization';
|
2088
2090
|
id?: Maybe<Scalars['ID']>;
|
2089
2091
|
name?: Maybe<Scalars['String']>;
|
2092
|
+
title?: Maybe<Scalars['String']>;
|
2090
2093
|
description?: Maybe<Scalars['String']>;
|
2091
2094
|
picture?: Maybe<Scalars['String']>;
|
2092
2095
|
stripeId?: Maybe<Scalars['String']>;
|
@@ -2107,6 +2110,7 @@ export declare type IOrganization = {
|
|
2107
2110
|
export declare type IOrganization_Input = {
|
2108
2111
|
id?: Maybe<Scalars['ID']>;
|
2109
2112
|
name: Scalars['String'];
|
2113
|
+
title?: Maybe<Scalars['String']>;
|
2110
2114
|
description?: Maybe<Scalars['String']>;
|
2111
2115
|
picture?: Maybe<Scalars['String']>;
|
2112
2116
|
stripeId?: Maybe<Scalars['String']>;
|
@@ -2152,6 +2156,7 @@ export declare type IOrganizationCreatedEvent = IIEventWithContext & {
|
|
2152
2156
|
};
|
2153
2157
|
export declare type IOrganizationCreateRequest = {
|
2154
2158
|
name?: Maybe<Scalars['String']>;
|
2159
|
+
title?: Maybe<Scalars['String']>;
|
2155
2160
|
description?: Maybe<Scalars['String']>;
|
2156
2161
|
namespace?: Maybe<Scalars['String']>;
|
2157
2162
|
picture?: Maybe<Scalars['String']>;
|
@@ -3461,7 +3466,8 @@ export declare type ITaskRequest = {
|
|
3461
3466
|
taskName?: Maybe<Scalars['String']>;
|
3462
3467
|
};
|
3463
3468
|
export declare type ITeamCreateRequest = {
|
3464
|
-
name
|
3469
|
+
name?: Maybe<Scalars['String']>;
|
3470
|
+
title: Scalars['String'];
|
3465
3471
|
orgName: Scalars['String'];
|
3466
3472
|
tags?: Maybe<Array<Maybe<Scalars['String']>>>;
|
3467
3473
|
emails?: Maybe<Array<Maybe<Scalars['String']>>>;
|
@@ -3470,7 +3476,8 @@ export declare type ITeamCreateRequest = {
|
|
3470
3476
|
description?: Maybe<Scalars['String']>;
|
3471
3477
|
};
|
3472
3478
|
export declare type ITeamCreationRequest = {
|
3473
|
-
name
|
3479
|
+
name?: Maybe<Scalars['String']>;
|
3480
|
+
title: Scalars['String'];
|
3474
3481
|
orgName: Scalars['String'];
|
3475
3482
|
tags?: Maybe<Array<Maybe<Scalars['String']>>>;
|
3476
3483
|
emails?: Maybe<Array<Maybe<Scalars['String']>>>;
|
@@ -4397,7 +4404,7 @@ export declare type IcreateTeamMutation = ({
|
|
4397
4404
|
} & {
|
4398
4405
|
createTeam?: Maybe<({
|
4399
4406
|
__typename?: 'AccountTeam';
|
4400
|
-
} & Pick<IAccountTeam, '_id' | 'name' | 'tags' | 'orgName' | 'createdAt' | 'updatedAt' | 'description'>)>;
|
4407
|
+
} & Pick<IAccountTeam, '_id' | 'name' | 'title' | 'tags' | 'orgName' | 'createdAt' | 'updatedAt' | 'description'>)>;
|
4401
4408
|
});
|
4402
4409
|
export declare type IDeclineOrganizationInvitationMutationVariables = Exact<{
|
4403
4410
|
id: Scalars['ID'];
|
@@ -4569,7 +4576,7 @@ export declare type IGetUserOrganizationsListQuery = ({
|
|
4569
4576
|
} & {
|
4570
4577
|
getUserOrganizations?: Maybe<Array<Maybe<({
|
4571
4578
|
__typename?: 'Organization';
|
4572
|
-
} & Pick<IOrganization, 'name' | 'createdAt' | 'isBillingLeader'> & {
|
4579
|
+
} & Pick<IOrganization, 'name' | 'title' | 'createdAt' | 'isBillingLeader'> & {
|
4573
4580
|
orgMembers?: Maybe<Array<Maybe<({
|
4574
4581
|
__typename?: 'OrgUser';
|
4575
4582
|
} & Pick<IOrgUser, 'inactive'> & IOrgUserFragment)>>>;
|
@@ -4710,7 +4717,7 @@ export declare type IGetManageableOrganizationsQuery = ({
|
|
4710
4717
|
} & {
|
4711
4718
|
getManageableOrganizations?: Maybe<Array<Maybe<({
|
4712
4719
|
__typename?: 'Organization';
|
4713
|
-
} & Pick<IOrganization, 'name' | 'createdAt' | 'isBillingLeader'> & {
|
4720
|
+
} & Pick<IOrganization, 'name' | 'title' | 'createdAt' | 'isBillingLeader'> & {
|
4714
4721
|
orgMembers?: Maybe<Array<Maybe<({
|
4715
4722
|
__typename?: 'OrgUser';
|
4716
4723
|
} & Pick<IOrgUser, 'inactive'> & IOrgUserFragment)>>>;
|
@@ -4808,7 +4815,7 @@ export declare type IgetOrganizationTeamsQuery = ({
|
|
4808
4815
|
} & {
|
4809
4816
|
getOrganizationTeams?: Maybe<Array<Maybe<({
|
4810
4817
|
__typename?: 'AccountTeam';
|
4811
|
-
} & Pick<IAccountTeam, '_id' | 'name' | 'tags' | 'orgName' | 'createdAt' | 'updatedAt' | 'description' | 'settingsUri'> & {
|
4818
|
+
} & Pick<IAccountTeam, '_id' | 'name' | 'title' | 'tags' | 'orgName' | 'createdAt' | 'updatedAt' | 'description' | 'settingsUri'> & {
|
4812
4819
|
teamMembers?: Maybe<Array<Maybe<({
|
4813
4820
|
__typename?: 'TeamMember';
|
4814
4821
|
} & Pick<ITeamMember, 'id' | 'name' | 'status'>)>>>;
|
@@ -4882,7 +4889,7 @@ export declare type IgetUserOrganizationsQuery = ({
|
|
4882
4889
|
} & {
|
4883
4890
|
getUserOrganizations?: Maybe<Array<Maybe<({
|
4884
4891
|
__typename?: 'Organization';
|
4885
|
-
} & Pick<IOrganization, 'id' | 'name' | 'description'> & {
|
4892
|
+
} & Pick<IOrganization, 'id' | 'name' | 'title' | 'description'> & {
|
4886
4893
|
orgMembers?: Maybe<Array<Maybe<({
|
4887
4894
|
__typename?: 'OrgUser';
|
4888
4895
|
} & Pick<IOrgUser, 'userId' | 'role'>)>>>;
|
@@ -4896,7 +4903,7 @@ export declare type IgetUserOrganizationsWithRoleQuery = ({
|
|
4896
4903
|
} & {
|
4897
4904
|
getUserOrganizationsWithRole?: Maybe<Array<Maybe<({
|
4898
4905
|
__typename?: 'Organization';
|
4899
|
-
} & Pick<IOrganization, 'id' | 'name' | 'description'> & {
|
4906
|
+
} & Pick<IOrganization, 'id' | 'name' | 'title' | 'description'> & {
|
4900
4907
|
orgMembers?: Maybe<Array<Maybe<({
|
4901
4908
|
__typename?: 'OrgUser';
|
4902
4909
|
} & IOrgUserFragment)>>>;
|
@@ -11826,6 +11833,7 @@ export declare type IAccountTeamResolvers<ContextType = MyContext, ParentType ex
|
|
11826
11833
|
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
11827
11834
|
_id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11828
11835
|
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11836
|
+
title?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11829
11837
|
orgName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
11830
11838
|
tags?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
11831
11839
|
settingsUri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
@@ -12725,6 +12733,7 @@ export interface IObservableScalarConfig extends GraphQLScalarTypeConfig<IResolv
|
|
12725
12733
|
export declare type IOrganizationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Organization'] = IResolversParentTypes['Organization']> = {
|
12726
12734
|
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
12727
12735
|
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12736
|
+
title?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12728
12737
|
description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12729
12738
|
picture?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12730
12739
|
stripeId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -867,7 +867,7 @@ function useCreateTaskMutation(baseOptions) {
|
|
867
867
|
return Apollo.useMutation(exports.CreateTaskDocument, options);
|
868
868
|
}
|
869
869
|
exports.useCreateTaskMutation = useCreateTaskMutation;
|
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": "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" } }] } }] } }] };
|
871
871
|
/**
|
872
872
|
* __usecreateTeamMutation__
|
873
873
|
*
|
@@ -1364,7 +1364,7 @@ function useUpsertProjectThroughIntegrationMutation(baseOptions) {
|
|
1364
1364
|
return Apollo.useMutation(exports.UpsertProjectThroughIntegrationDocument, options);
|
1365
1365
|
}
|
1366
1366
|
exports.useUpsertProjectThroughIntegrationMutation = useUpsertProjectThroughIntegrationMutation;
|
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": "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" } }] } }] };
|
1368
1368
|
/**
|
1369
1369
|
* __useGetUserOrganizationsListQuery__
|
1370
1370
|
*
|
@@ -1629,7 +1629,7 @@ function useGetInvoicesLazyQuery(baseOptions) {
|
|
1629
1629
|
return Apollo.useLazyQuery(exports.GetInvoicesDocument, options);
|
1630
1630
|
}
|
1631
1631
|
exports.useGetInvoicesLazyQuery = useGetInvoicesLazyQuery;
|
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": "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" } }] } }] };
|
1633
1633
|
/**
|
1634
1634
|
* __useGetManageableOrganizationsQuery__
|
1635
1635
|
*
|
@@ -1815,7 +1815,7 @@ function useGetOrganizationMembersWithNameLazyQuery(baseOptions) {
|
|
1815
1815
|
return Apollo.useLazyQuery(exports.GetOrganizationMembersWithNameDocument, options);
|
1816
1816
|
}
|
1817
1817
|
exports.useGetOrganizationMembersWithNameLazyQuery = useGetOrganizationMembersWithNameLazyQuery;
|
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": "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" } }] } }] } }] } }] };
|
1819
1819
|
/**
|
1820
1820
|
* __usegetOrganizationTeamsQuery__
|
1821
1821
|
*
|
@@ -1977,7 +1977,7 @@ function useGetUserAccountLazyQuery(baseOptions) {
|
|
1977
1977
|
return Apollo.useLazyQuery(exports.GetUserAccountDocument, options);
|
1978
1978
|
}
|
1979
1979
|
exports.useGetUserAccountLazyQuery = useGetUserAccountLazyQuery;
|
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": "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" } }] } }] } }] } }] };
|
1981
1981
|
/**
|
1982
1982
|
* __usegetUserOrganizationsQuery__
|
1983
1983
|
*
|
@@ -2004,7 +2004,7 @@ function usegetUserOrganizationsLazyQuery(baseOptions) {
|
|
2004
2004
|
return Apollo.useLazyQuery(exports.getUserOrganizationsDocument, options);
|
2005
2005
|
}
|
2006
2006
|
exports.usegetUserOrganizationsLazyQuery = usegetUserOrganizationsLazyQuery;
|
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": "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" } }] } }] };
|
2008
2008
|
/**
|
2009
2009
|
* __usegetUserOrganizationsWithRoleQuery__
|
2010
2010
|
*
|