@adminide-stack/core 1.1.1-alpha.387 → 1.1.1-alpha.402
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.
@@ -1579,6 +1579,7 @@ export declare type IOrganization = {
|
|
1579
1579
|
name?: Maybe<Scalars['String']>;
|
1580
1580
|
title?: Maybe<Scalars['String']>;
|
1581
1581
|
description?: Maybe<Scalars['String']>;
|
1582
|
+
status?: Maybe<Scalars['String']>;
|
1582
1583
|
picture?: Maybe<Scalars['String']>;
|
1583
1584
|
stripeId?: Maybe<Scalars['String']>;
|
1584
1585
|
namespace?: Maybe<Scalars['String']>;
|
@@ -1966,7 +1967,7 @@ export declare const enum IPermissionType {
|
|
1966
1967
|
}
|
1967
1968
|
export declare type IPhoneNumber = {
|
1968
1969
|
__typename?: 'PhoneNumber';
|
1969
|
-
countryCode?: Maybe<
|
1970
|
+
countryCode?: Maybe<Scalars['String']>;
|
1970
1971
|
phoneNumber?: Maybe<Scalars['String']>;
|
1971
1972
|
};
|
1972
1973
|
/**
|
@@ -2965,6 +2966,7 @@ export declare type IUserAuth0UpdateFields = {
|
|
2965
2966
|
company_name?: Maybe<Scalars['String']>;
|
2966
2967
|
dob?: Maybe<Scalars['Date']>;
|
2967
2968
|
zip_code?: Maybe<Scalars['Int']>;
|
2969
|
+
email_verified?: Maybe<Scalars['Boolean']>;
|
2968
2970
|
};
|
2969
2971
|
export declare const enum IUserBroadcasterAction {
|
2970
2972
|
onUserLoggedIn = "onUserLoggedIn",
|
@@ -3515,7 +3517,7 @@ export declare type IGetUserOrganizationsListQuery = ({
|
|
3515
3517
|
} & {
|
3516
3518
|
getUserOrganizations?: Maybe<Array<Maybe<({
|
3517
3519
|
__typename?: 'Organization';
|
3518
|
-
} & Pick<IOrganization, 'name' | 'title' | 'createdAt' | 'isBillingLeader'> & {
|
3520
|
+
} & Pick<IOrganization, 'name' | 'title' | 'status' | 'createdAt' | 'isBillingLeader'> & {
|
3519
3521
|
orgMembers?: Maybe<Array<Maybe<({
|
3520
3522
|
__typename?: 'OrgUser';
|
3521
3523
|
} & Pick<IOrgUser, 'inactive'> & IOrgUserFragment)>>>;
|
@@ -3842,7 +3844,7 @@ export declare type IgetUserOrganizationsQuery = ({
|
|
3842
3844
|
} & {
|
3843
3845
|
getUserOrganizations?: Maybe<Array<Maybe<({
|
3844
3846
|
__typename?: 'Organization';
|
3845
|
-
} & Pick<IOrganization, 'id' | 'name' | 'title' | 'description'> & {
|
3847
|
+
} & Pick<IOrganization, 'id' | 'name' | 'title' | 'status' | 'description'> & {
|
3846
3848
|
orgMembers?: Maybe<Array<Maybe<({
|
3847
3849
|
__typename?: 'OrgUser';
|
3848
3850
|
} & Pick<IOrgUser, 'userId' | 'role'>)>>>;
|
@@ -3856,7 +3858,7 @@ export declare type IgetUserOrganizationsWithRoleQuery = ({
|
|
3856
3858
|
} & {
|
3857
3859
|
getUserOrganizationsWithRole?: Maybe<Array<Maybe<({
|
3858
3860
|
__typename?: 'Organization';
|
3859
|
-
} & Pick<IOrganization, 'id' | 'name' | 'title' | 'description'> & {
|
3861
|
+
} & Pick<IOrganization, 'id' | 'name' | 'title' | 'status' | 'description'> & {
|
3860
3862
|
orgMembers?: Maybe<Array<Maybe<({
|
3861
3863
|
__typename?: 'OrgUser';
|
3862
3864
|
} & IOrgUserFragment)>>>;
|
@@ -8547,8 +8549,8 @@ export declare type IResolversTypes = {
|
|
8547
8549
|
UserAccount: ResolverTypeWrapper<IUserAccount>;
|
8548
8550
|
Node: IResolversTypes['UserAccount'] | IResolversTypes['OrgUserAccunt'];
|
8549
8551
|
PhoneNumber: ResolverTypeWrapper<IPhoneNumber>;
|
8550
|
-
Country: ResolverTypeWrapper<ICountry>;
|
8551
8552
|
UserVerificationToken: ResolverTypeWrapper<IUserVerificationToken>;
|
8553
|
+
Country: ResolverTypeWrapper<ICountry>;
|
8552
8554
|
AsanaConnection: ResolverTypeWrapper<IAsanaConnection>;
|
8553
8555
|
AsanaConnectionState: ResolverTypeWrapper<IAsanaConnectionState>;
|
8554
8556
|
AsanaUser: ResolverTypeWrapper<IAsanaUser>;
|
@@ -8859,8 +8861,8 @@ export declare type IResolversParentTypes = {
|
|
8859
8861
|
UserAccount: IUserAccount;
|
8860
8862
|
Node: IResolversParentTypes['UserAccount'] | IResolversParentTypes['OrgUserAccunt'];
|
8861
8863
|
PhoneNumber: IPhoneNumber;
|
8862
|
-
Country: ICountry;
|
8863
8864
|
UserVerificationToken: IUserVerificationToken;
|
8865
|
+
Country: ICountry;
|
8864
8866
|
AsanaConnection: IAsanaConnection;
|
8865
8867
|
AsanaConnectionState: IAsanaConnectionState;
|
8866
8868
|
AsanaUser: IAsanaUser;
|
@@ -9805,6 +9807,7 @@ export declare type IOrganizationResolvers<ContextType = MyContext, ParentType e
|
|
9805
9807
|
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9806
9808
|
title?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9807
9809
|
description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9810
|
+
status?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9808
9811
|
picture?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9809
9812
|
stripeId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9810
9813
|
namespace?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
@@ -9995,7 +9998,7 @@ export declare type IPermissionSubjectResolvers<ContextType = MyContext, ParentT
|
|
9995
9998
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
9996
9999
|
};
|
9997
10000
|
export declare type IPhoneNumberResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['PhoneNumber'] = IResolversParentTypes['PhoneNumber']> = {
|
9998
|
-
countryCode?: Resolver<Maybe<IResolversTypes['
|
10001
|
+
countryCode?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
9999
10002
|
phoneNumber?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
10000
10003
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10001
10004
|
};
|
@@ -1394,7 +1394,7 @@ function useVerifyUserEmailVerificationTokenMutation(baseOptions) {
|
|
1394
1394
|
return Apollo.useMutation(exports.VerifyUserEmailVerificationTokenDocument, options);
|
1395
1395
|
}
|
1396
1396
|
exports.useVerifyUserEmailVerificationTokenMutation = useVerifyUserEmailVerificationTokenMutation;
|
1397
|
-
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" } }] } }] };
|
1397
|
+
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": "status" } }, { "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" } }] } }] };
|
1398
1398
|
/**
|
1399
1399
|
* __useGetUserOrganizationsListQuery__
|
1400
1400
|
*
|
@@ -2033,7 +2033,7 @@ function useGetUserEmailVerificationTokenDetailsLazyQuery(baseOptions) {
|
|
2033
2033
|
return Apollo.useLazyQuery(exports.GetUserEmailVerificationTokenDetailsDocument, options);
|
2034
2034
|
}
|
2035
2035
|
exports.useGetUserEmailVerificationTokenDetailsLazyQuery = useGetUserEmailVerificationTokenDetailsLazyQuery;
|
2036
|
-
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" } }] } }] } }] } }] };
|
2036
|
+
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": "status" } }, { "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" } }] } }] } }] } }] };
|
2037
2037
|
/**
|
2038
2038
|
* __usegetUserOrganizationsQuery__
|
2039
2039
|
*
|
@@ -2060,7 +2060,7 @@ function usegetUserOrganizationsLazyQuery(baseOptions) {
|
|
2060
2060
|
return Apollo.useLazyQuery(exports.getUserOrganizationsDocument, options);
|
2061
2061
|
}
|
2062
2062
|
exports.usegetUserOrganizationsLazyQuery = usegetUserOrganizationsLazyQuery;
|
2063
|
-
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" } }] } }] };
|
2063
|
+
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": "status" } }, { "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" } }] } }] };
|
2064
2064
|
/**
|
2065
2065
|
* __usegetUserOrganizationsWithRoleQuery__
|
2066
2066
|
*
|