@@ -667,10 +667,6 @@ export type AiPersonaService = {
667
667
updatedDate?: Maybe<Scalars['DateTime']>;
668
668
};
669
669
670
- export type AiPersonaServiceIngestInput = {
671
- aiPersonaServiceID: Scalars['UUID'];
672
- };
673
-
674
670
export type AiServer = {
675
671
__typename?: 'AiServer';
676
672
/** A particular AiPersonaService */
@@ -820,6 +816,7 @@ export type Authorization = {
820
816
};
821
817
822
818
export enum AuthorizationCredential {
819
+ AccountAdmin = 'ACCOUNT_ADMIN',
823
820
BetaTester = 'BETA_TESTER',
824
821
GlobalAdmin = 'GLOBAL_ADMIN',
825
822
GlobalAnonymous = 'GLOBAL_ANONYMOUS',
@@ -834,6 +831,7 @@ export enum AuthorizationCredential {
834
831
SpaceAdmin = 'SPACE_ADMIN',
835
832
SpaceLead = 'SPACE_LEAD',
836
833
SpaceMember = 'SPACE_MEMBER',
834
+ SpaceMemberInvitee = 'SPACE_MEMBER_INVITEE',
837
835
SpaceSubspaceAdmin = 'SPACE_SUBSPACE_ADMIN',
838
836
UserGroupMember = 'USER_GROUP_MEMBER',
839
837
UserSelfManagement = 'USER_SELF_MANAGEMENT',
@@ -2192,6 +2190,7 @@ export type CredentialMetadataOutput = {
2192
2190
};
2193
2191
2194
2192
export enum CredentialType {
2193
+ AccountAdmin = 'ACCOUNT_ADMIN',
2195
2194
AccountLicensePlus = 'ACCOUNT_LICENSE_PLUS',
2196
2195
BetaTester = 'BETA_TESTER',
2197
2196
GlobalAdmin = 'GLOBAL_ADMIN',
@@ -2214,6 +2213,7 @@ export enum CredentialType {
2214
2213
SpaceLicensePlus = 'SPACE_LICENSE_PLUS',
2215
2214
SpaceLicensePremium = 'SPACE_LICENSE_PREMIUM',
2216
2215
SpaceMember = 'SPACE_MEMBER',
2216
+ SpaceMemberInvitee = 'SPACE_MEMBER_INVITEE',
2217
2217
SpaceSubspaceAdmin = 'SPACE_SUBSPACE_ADMIN',
2218
2218
UserGroupMember = 'USER_GROUP_MEMBER',
2219
2219
UserSelfManagement = 'USER_SELF_MANAGEMENT',
@@ -3539,6 +3539,8 @@ export type MeQueryResults = {
3539
3539
communityApplications: Array<CommunityApplicationResult>;
3540
3540
/** The invitations the current authenticated user can act on. */
3541
3541
communityInvitations: Array<CommunityInvitationResult>;
3542
+ /** The number of invitations the current authenticated user can act on. */
3543
+ communityInvitationsCount: Scalars['Float'];
3542
3544
/** The query id */
3543
3545
id: Scalars['String'];
3544
3546
/** The Spaces I am contributing to */
@@ -3559,10 +3561,18 @@ export type MeQueryResultsCommunityInvitationsArgs = {
3559
3561
states?: InputMaybe<Array<Scalars['String']>>;
3560
3562
};
3561
3563
3564
+ export type MeQueryResultsCommunityInvitationsCountArgs = {
3565
+ states?: InputMaybe<Array<Scalars['String']>>;
3566
+ };
3567
+
3562
3568
export type MeQueryResultsMySpacesArgs = {
3563
3569
limit?: InputMaybe<Scalars['Float']>;
3564
3570
};
3565
3571
3572
+ export type MeQueryResultsSpaceMembershipsHierarchicalArgs = {
3573
+ limit?: InputMaybe<Scalars['Float']>;
3574
+ };
3575
+
3566
3576
/** A message that was sent either as an Update or as part of a Discussion. */
3567
3577
export type Message = {
3568
3578
__typename?: 'Message';
@@ -3665,8 +3675,6 @@ export type Mutation = {
3665
3675
aiServerCreateAiPersonaService: AiPersonaService;
3666
3676
/** Deletes the specified AiPersonaService. */
3667
3677
aiServerDeleteAiPersonaService: AiPersonaService;
3668
- /** Trigger an ingesting of data on the remove AI Persona Service. */
3669
- aiServerPersonaServiceIngest: Scalars['Boolean'];
3670
3678
/** Updates the specified AI Persona. */
3671
3679
aiServerUpdateAiPersonaService: AiPersonaService;
3672
3680
/** Apply to join the specified RoleSet in the entry Role. */
@@ -3757,6 +3765,8 @@ export type Mutation = {
3757
3765
createUserNewRegistration: User;
3758
3766
/** Creates a new VirtualContributor on an Account. */
3759
3767
createVirtualContributor: VirtualContributor;
3768
+ /** Creates an account in Wingback */
3769
+ createWingbackAccount: Scalars['String'];
3760
3770
/** Deletes the specified Actor. */
3761
3771
deleteActor: Actor;
3762
3772
/** Deletes the specified Actor Group, including contained Actors. */
@@ -3815,7 +3825,7 @@ export type Mutation = {
3815
3825
grantCredentialToUser: User;
3816
3826
/** Resets the interaction with the chat engine. */
3817
3827
ingest: Scalars['Boolean'];
3818
- /** Invite an existing Contriburor to join the specified RoleSet in the Entry Role. */
3828
+ /** Invite an existing Contributor to join the specified RoleSet in the Entry Role. */
3819
3829
inviteContributorsEntryRoleOnRoleSet: Array<Invitation>;
3820
3830
/** Invite a User to join the platform and the specified RoleSet as a member. */
3821
3831
inviteUserToPlatformAndRoleSet: PlatformInvitation;
@@ -4015,10 +4025,6 @@ export type MutationAiServerDeleteAiPersonaServiceArgs = {
4015
4025
deleteData: DeleteAiPersonaServiceInput;
4016
4026
};
4017
4027
4018
- export type MutationAiServerPersonaServiceIngestArgs = {
4019
- ingestData: AiPersonaServiceIngestInput;
4020
- };
4021
-
4022
4028
export type MutationAiServerUpdateAiPersonaServiceArgs = {
4023
4029
aiPersonaServiceData: UpdateAiPersonaServiceInput;
4024
4030
};
@@ -4175,6 +4181,10 @@ export type MutationCreateVirtualContributorArgs = {
4175
4181
virtualContributorData: CreateVirtualContributorOnAccountInput;
4176
4182
};
4177
4183
4184
+ export type MutationCreateWingbackAccountArgs = {
4185
+ accountID: Scalars['UUID'];
4186
+ };
4187
+
4178
4188
export type MutationDeleteActorArgs = {
4179
4189
deleteData: DeleteActorInput;
4180
4190
};
@@ -5675,6 +5685,7 @@ export enum RoleSetContributorType {
5675
5685
}
5676
5686
5677
5687
export enum RoleSetRoleImplicit {
5688
+ AccountAdmin = 'ACCOUNT_ADMIN',
5678
5689
SubspaceAdmin = 'SUBSPACE_ADMIN',
5679
5690
}
5680
5691
@@ -16658,6 +16669,12 @@ export type AllOrganizationsQuery = {
16658
16669
};
16659
16670
};
16660
16671
16672
+ export type CreateWingbackAccountMutationVariables = Exact<{
16673
+ accountID: Scalars['UUID'];
16674
+ }>;
16675
+
16676
+ export type CreateWingbackAccountMutation = { __typename?: 'Mutation'; createWingbackAccount: string };
16677
+
16661
16678
export type ContributorsPageOrganizationsQueryVariables = Exact<{
16662
16679
first: Scalars['Int'];
16663
16680
after?: InputMaybe<Scalars['UUID']>;
0 commit comments