Add sync front component (#17748)
## Context Allow twenty apps to sync front components
This commit is contained in:
@@ -971,8 +971,13 @@ export type CreateFieldInput = {
|
||||
};
|
||||
|
||||
export type CreateFrontComponentInput = {
|
||||
builtComponentChecksum: Scalars['String'];
|
||||
builtComponentPath: Scalars['String'];
|
||||
componentName: Scalars['String'];
|
||||
description?: InputMaybe<Scalars['String']>;
|
||||
id?: InputMaybe<Scalars['UUID']>;
|
||||
name: Scalars['String'];
|
||||
sourceComponentPath: Scalars['String'];
|
||||
};
|
||||
|
||||
export type CreateLogicFunctionInput = {
|
||||
@@ -1627,9 +1632,15 @@ export type FindAvailableSsoidpOutput = {
|
||||
export type FrontComponent = {
|
||||
__typename?: 'FrontComponent';
|
||||
applicationId: Scalars['UUID'];
|
||||
builtComponentChecksum: Scalars['String'];
|
||||
builtComponentPath: Scalars['String'];
|
||||
componentName: Scalars['String'];
|
||||
createdAt: Scalars['DateTime'];
|
||||
description?: Maybe<Scalars['String']>;
|
||||
id: Scalars['UUID'];
|
||||
name: Scalars['String'];
|
||||
sourceComponentPath: Scalars['String'];
|
||||
universalIdentifier?: Maybe<Scalars['UUID']>;
|
||||
updatedAt: Scalars['DateTime'];
|
||||
};
|
||||
|
||||
@@ -4535,6 +4546,7 @@ export type UpdateFrontComponentInput = {
|
||||
};
|
||||
|
||||
export type UpdateFrontComponentInputUpdates = {
|
||||
description?: InputMaybe<Scalars['String']>;
|
||||
name?: InputMaybe<Scalars['String']>;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user