@@ -368,6 +368,7 @@ export type LoginToken = {
368
368
export type Mutation = {
369
369
__typename ?: 'Mutation' ;
370
370
activateWorkspace : Workspace ;
371
+ addUserToWorkspace : User ;
371
372
authorizeApp : AuthorizeApp ;
372
373
challenge : LoginToken ;
373
374
checkoutSession : SessionEntity ;
@@ -391,6 +392,7 @@ export type Mutation = {
391
392
renewToken : AuthTokens ;
392
393
signUp : LoginToken ;
393
394
syncRemoteTable : RemoteTable ;
395
+ syncRemoteTableSchemaChanges : RemoteTable ;
394
396
track : Analytics ;
395
397
unsyncRemoteTable : RemoteTable ;
396
398
updateBillingSubscription : UpdateBillingEntity ;
@@ -412,6 +414,11 @@ export type MutationActivateWorkspaceArgs = {
412
414
} ;
413
415
414
416
417
+ export type MutationAddUserToWorkspaceArgs = {
418
+ inviteHash : Scalars [ 'String' ] [ 'input' ] ;
419
+ } ;
420
+
421
+
415
422
export type MutationAuthorizeAppArgs = {
416
423
clientId : Scalars [ 'String' ] [ 'input' ] ;
417
424
codeChallenge ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
@@ -523,6 +530,11 @@ export type MutationSyncRemoteTableArgs = {
523
530
} ;
524
531
525
532
533
+ export type MutationSyncRemoteTableSchemaChangesArgs = {
534
+ input : RemoteTableInput ;
535
+ } ;
536
+
537
+
526
538
export type MutationTrackArgs = {
527
539
data : Scalars [ 'JSON' ] [ 'input' ] ;
528
540
type : Scalars [ 'String' ] [ 'input' ] ;
@@ -1284,6 +1296,13 @@ export type SyncRemoteTableMutationVariables = Exact<{
1284
1296
1285
1297
export type SyncRemoteTableMutation = { __typename ?: 'Mutation' , syncRemoteTable : { __typename ?: 'RemoteTable' , id ?: any | null , name : string , schema ?: string | null , status : RemoteTableStatus , schemaPendingUpdates ?: Array < DistantTableUpdate > | null } } ;
1286
1298
1299
+ export type SyncRemoteTableSchemaChangesMutationVariables = Exact < {
1300
+ input : RemoteTableInput ;
1301
+ } > ;
1302
+
1303
+
1304
+ export type SyncRemoteTableSchemaChangesMutation = { __typename ?: 'Mutation' , syncRemoteTableSchemaChanges : { __typename ?: 'RemoteTable' , id ?: any | null , name : string , schema ?: string | null , status : RemoteTableStatus , schemaPendingUpdates ?: Array < DistantTableUpdate > | null } } ;
1305
+
1287
1306
export type UnsyncRemoteTableMutationVariables = Exact < {
1288
1307
input : RemoteTableInput ;
1289
1308
} > ;
@@ -1390,6 +1409,7 @@ export const RemoteTableFieldsFragmentDoc = {"kind":"Document","definitions":[{"
1390
1409
export const CreateServerDocument = { "kind" :"Document" , "definitions" :[ { "kind" :"OperationDefinition" , "operation" :"mutation" , "name" :{ "kind" :"Name" , "value" :"createServer" } , "variableDefinitions" :[ { "kind" :"VariableDefinition" , "variable" :{ "kind" :"Variable" , "name" :{ "kind" :"Name" , "value" :"input" } } , "type" :{ "kind" :"NonNullType" , "type" :{ "kind" :"NamedType" , "name" :{ "kind" :"Name" , "value" :"CreateRemoteServerInput" } } } } ] , "selectionSet" :{ "kind" :"SelectionSet" , "selections" :[ { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"createOneRemoteServer" } , "arguments" :[ { "kind" :"Argument" , "name" :{ "kind" :"Name" , "value" :"input" } , "value" :{ "kind" :"Variable" , "name" :{ "kind" :"Name" , "value" :"input" } } } ] , "selectionSet" :{ "kind" :"SelectionSet" , "selections" :[ { "kind" :"FragmentSpread" , "name" :{ "kind" :"Name" , "value" :"RemoteServerFields" } } ] } } ] } } , { "kind" :"FragmentDefinition" , "name" :{ "kind" :"Name" , "value" :"RemoteServerFields" } , "typeCondition" :{ "kind" :"NamedType" , "name" :{ "kind" :"Name" , "value" :"RemoteServer" } } , "selectionSet" :{ "kind" :"SelectionSet" , "selections" :[ { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"id" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"createdAt" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"foreignDataWrapperId" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"foreignDataWrapperOptions" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"foreignDataWrapperType" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"userMappingOptions" } , "selectionSet" :{ "kind" :"SelectionSet" , "selections" :[ { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"user" } } ] } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"updatedAt" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"schema" } } ] } } ] } as unknown as DocumentNode < CreateServerMutation , CreateServerMutationVariables > ;
1391
1410
export const DeleteServerDocument = { "kind" :"Document" , "definitions" :[ { "kind" :"OperationDefinition" , "operation" :"mutation" , "name" :{ "kind" :"Name" , "value" :"deleteServer" } , "variableDefinitions" :[ { "kind" :"VariableDefinition" , "variable" :{ "kind" :"Variable" , "name" :{ "kind" :"Name" , "value" :"input" } } , "type" :{ "kind" :"NonNullType" , "type" :{ "kind" :"NamedType" , "name" :{ "kind" :"Name" , "value" :"RemoteServerIdInput" } } } } ] , "selectionSet" :{ "kind" :"SelectionSet" , "selections" :[ { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"deleteOneRemoteServer" } , "arguments" :[ { "kind" :"Argument" , "name" :{ "kind" :"Name" , "value" :"input" } , "value" :{ "kind" :"Variable" , "name" :{ "kind" :"Name" , "value" :"input" } } } ] , "selectionSet" :{ "kind" :"SelectionSet" , "selections" :[ { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"id" } } ] } } ] } } ] } as unknown as DocumentNode < DeleteServerMutation , DeleteServerMutationVariables > ;
1392
1411
export const SyncRemoteTableDocument = { "kind" :"Document" , "definitions" :[ { "kind" :"OperationDefinition" , "operation" :"mutation" , "name" :{ "kind" :"Name" , "value" :"syncRemoteTable" } , "variableDefinitions" :[ { "kind" :"VariableDefinition" , "variable" :{ "kind" :"Variable" , "name" :{ "kind" :"Name" , "value" :"input" } } , "type" :{ "kind" :"NonNullType" , "type" :{ "kind" :"NamedType" , "name" :{ "kind" :"Name" , "value" :"RemoteTableInput" } } } } ] , "selectionSet" :{ "kind" :"SelectionSet" , "selections" :[ { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"syncRemoteTable" } , "arguments" :[ { "kind" :"Argument" , "name" :{ "kind" :"Name" , "value" :"input" } , "value" :{ "kind" :"Variable" , "name" :{ "kind" :"Name" , "value" :"input" } } } ] , "selectionSet" :{ "kind" :"SelectionSet" , "selections" :[ { "kind" :"FragmentSpread" , "name" :{ "kind" :"Name" , "value" :"RemoteTableFields" } } ] } } ] } } , { "kind" :"FragmentDefinition" , "name" :{ "kind" :"Name" , "value" :"RemoteTableFields" } , "typeCondition" :{ "kind" :"NamedType" , "name" :{ "kind" :"Name" , "value" :"RemoteTable" } } , "selectionSet" :{ "kind" :"SelectionSet" , "selections" :[ { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"id" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"name" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"schema" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"status" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"schemaPendingUpdates" } } ] } } ] } as unknown as DocumentNode < SyncRemoteTableMutation , SyncRemoteTableMutationVariables > ;
1412
+ export const SyncRemoteTableSchemaChangesDocument = { "kind" :"Document" , "definitions" :[ { "kind" :"OperationDefinition" , "operation" :"mutation" , "name" :{ "kind" :"Name" , "value" :"syncRemoteTableSchemaChanges" } , "variableDefinitions" :[ { "kind" :"VariableDefinition" , "variable" :{ "kind" :"Variable" , "name" :{ "kind" :"Name" , "value" :"input" } } , "type" :{ "kind" :"NonNullType" , "type" :{ "kind" :"NamedType" , "name" :{ "kind" :"Name" , "value" :"RemoteTableInput" } } } } ] , "selectionSet" :{ "kind" :"SelectionSet" , "selections" :[ { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"syncRemoteTableSchemaChanges" } , "arguments" :[ { "kind" :"Argument" , "name" :{ "kind" :"Name" , "value" :"input" } , "value" :{ "kind" :"Variable" , "name" :{ "kind" :"Name" , "value" :"input" } } } ] , "selectionSet" :{ "kind" :"SelectionSet" , "selections" :[ { "kind" :"FragmentSpread" , "name" :{ "kind" :"Name" , "value" :"RemoteTableFields" } } ] } } ] } } , { "kind" :"FragmentDefinition" , "name" :{ "kind" :"Name" , "value" :"RemoteTableFields" } , "typeCondition" :{ "kind" :"NamedType" , "name" :{ "kind" :"Name" , "value" :"RemoteTable" } } , "selectionSet" :{ "kind" :"SelectionSet" , "selections" :[ { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"id" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"name" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"schema" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"status" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"schemaPendingUpdates" } } ] } } ] } as unknown as DocumentNode < SyncRemoteTableSchemaChangesMutation , SyncRemoteTableSchemaChangesMutationVariables > ;
1393
1413
export const UnsyncRemoteTableDocument = { "kind" :"Document" , "definitions" :[ { "kind" :"OperationDefinition" , "operation" :"mutation" , "name" :{ "kind" :"Name" , "value" :"unsyncRemoteTable" } , "variableDefinitions" :[ { "kind" :"VariableDefinition" , "variable" :{ "kind" :"Variable" , "name" :{ "kind" :"Name" , "value" :"input" } } , "type" :{ "kind" :"NonNullType" , "type" :{ "kind" :"NamedType" , "name" :{ "kind" :"Name" , "value" :"RemoteTableInput" } } } } ] , "selectionSet" :{ "kind" :"SelectionSet" , "selections" :[ { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"unsyncRemoteTable" } , "arguments" :[ { "kind" :"Argument" , "name" :{ "kind" :"Name" , "value" :"input" } , "value" :{ "kind" :"Variable" , "name" :{ "kind" :"Name" , "value" :"input" } } } ] , "selectionSet" :{ "kind" :"SelectionSet" , "selections" :[ { "kind" :"FragmentSpread" , "name" :{ "kind" :"Name" , "value" :"RemoteTableFields" } } ] } } ] } } , { "kind" :"FragmentDefinition" , "name" :{ "kind" :"Name" , "value" :"RemoteTableFields" } , "typeCondition" :{ "kind" :"NamedType" , "name" :{ "kind" :"Name" , "value" :"RemoteTable" } } , "selectionSet" :{ "kind" :"SelectionSet" , "selections" :[ { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"id" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"name" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"schema" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"status" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"schemaPendingUpdates" } } ] } } ] } as unknown as DocumentNode < UnsyncRemoteTableMutation , UnsyncRemoteTableMutationVariables > ;
1394
1414
export const UpdateServerDocument = { "kind" :"Document" , "definitions" :[ { "kind" :"OperationDefinition" , "operation" :"mutation" , "name" :{ "kind" :"Name" , "value" :"updateServer" } , "variableDefinitions" :[ { "kind" :"VariableDefinition" , "variable" :{ "kind" :"Variable" , "name" :{ "kind" :"Name" , "value" :"input" } } , "type" :{ "kind" :"NonNullType" , "type" :{ "kind" :"NamedType" , "name" :{ "kind" :"Name" , "value" :"UpdateRemoteServerInput" } } } } ] , "selectionSet" :{ "kind" :"SelectionSet" , "selections" :[ { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"updateOneRemoteServer" } , "arguments" :[ { "kind" :"Argument" , "name" :{ "kind" :"Name" , "value" :"input" } , "value" :{ "kind" :"Variable" , "name" :{ "kind" :"Name" , "value" :"input" } } } ] , "selectionSet" :{ "kind" :"SelectionSet" , "selections" :[ { "kind" :"FragmentSpread" , "name" :{ "kind" :"Name" , "value" :"RemoteServerFields" } } ] } } ] } } , { "kind" :"FragmentDefinition" , "name" :{ "kind" :"Name" , "value" :"RemoteServerFields" } , "typeCondition" :{ "kind" :"NamedType" , "name" :{ "kind" :"Name" , "value" :"RemoteServer" } } , "selectionSet" :{ "kind" :"SelectionSet" , "selections" :[ { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"id" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"createdAt" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"foreignDataWrapperId" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"foreignDataWrapperOptions" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"foreignDataWrapperType" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"userMappingOptions" } , "selectionSet" :{ "kind" :"SelectionSet" , "selections" :[ { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"user" } } ] } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"updatedAt" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"schema" } } ] } } ] } as unknown as DocumentNode < UpdateServerMutation , UpdateServerMutationVariables > ;
1395
1415
export const GetManyDatabaseConnectionsDocument = { "kind" :"Document" , "definitions" :[ { "kind" :"OperationDefinition" , "operation" :"query" , "name" :{ "kind" :"Name" , "value" :"GetManyDatabaseConnections" } , "variableDefinitions" :[ { "kind" :"VariableDefinition" , "variable" :{ "kind" :"Variable" , "name" :{ "kind" :"Name" , "value" :"input" } } , "type" :{ "kind" :"NonNullType" , "type" :{ "kind" :"NamedType" , "name" :{ "kind" :"Name" , "value" :"RemoteServerTypeInput" } } } } ] , "selectionSet" :{ "kind" :"SelectionSet" , "selections" :[ { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"findManyRemoteServersByType" } , "arguments" :[ { "kind" :"Argument" , "name" :{ "kind" :"Name" , "value" :"input" } , "value" :{ "kind" :"Variable" , "name" :{ "kind" :"Name" , "value" :"input" } } } ] , "selectionSet" :{ "kind" :"SelectionSet" , "selections" :[ { "kind" :"FragmentSpread" , "name" :{ "kind" :"Name" , "value" :"RemoteServerFields" } } ] } } ] } } , { "kind" :"FragmentDefinition" , "name" :{ "kind" :"Name" , "value" :"RemoteServerFields" } , "typeCondition" :{ "kind" :"NamedType" , "name" :{ "kind" :"Name" , "value" :"RemoteServer" } } , "selectionSet" :{ "kind" :"SelectionSet" , "selections" :[ { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"id" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"createdAt" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"foreignDataWrapperId" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"foreignDataWrapperOptions" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"foreignDataWrapperType" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"userMappingOptions" } , "selectionSet" :{ "kind" :"SelectionSet" , "selections" :[ { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"user" } } ] } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"updatedAt" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"schema" } } ] } } ] } as unknown as DocumentNode < GetManyDatabaseConnectionsQuery , GetManyDatabaseConnectionsQueryVariables > ;
0 commit comments