feat(acc): blind change on update delete mutations from lineageUrn to id

This commit is contained in:
oguzhankoral
2025-07-31 18:47:40 +03:00
parent edd96b6f6f
commit 44fdd95840
7 changed files with 39 additions and 34 deletions
@@ -49,7 +49,7 @@ export type AccSyncItem = {
accFileName: Scalars['String']['output'];
accFileVersionIndex: Scalars['Int']['output'];
accFileVersionUrn: Scalars['String']['output'];
accFileViewName: Scalars['String']['output'];
accFileViewName?: Maybe<Scalars['String']['output']>;
accHubId: Scalars['String']['output'];
accProjectId: Scalars['String']['output'];
accRegion: Scalars['String']['output'];
@@ -989,7 +989,7 @@ export type CreateAccSyncItemInput = {
accFileName: Scalars['String']['input'];
accFileVersionIndex: Scalars['Int']['input'];
accFileVersionUrn: Scalars['String']['input'];
accFileViewName: Scalars['String']['input'];
accFileViewName?: InputMaybe<Scalars['String']['input']>;
accHubId: Scalars['String']['input'];
accProjectId: Scalars['String']['input'];
accRegion: Scalars['String']['input'];
@@ -1080,7 +1080,7 @@ export type CurrencyBasedPrices = {
};
export type DeleteAccSyncItemInput = {
accFileLineageUrn: Scalars['ID']['input'];
id: Scalars['ID']['input'];
projectId: Scalars['ID']['input'];
};
@@ -4143,7 +4143,7 @@ export type TriggeredAutomationsStatus = {
};
export type UpdateAccSyncItemInput = {
accFileLineageUrn: Scalars['ID']['input'];
id: Scalars['ID']['input'];
projectId: Scalars['ID']['input'];
status: AccSyncItemStatus;
};
@@ -6310,7 +6310,7 @@ export type AccSyncItemResolvers<ContextType = GraphQLContext, ParentType extend
accFileName?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
accFileVersionIndex?: Resolver<ResolversTypes['Int'], ParentType, ContextType>;
accFileVersionUrn?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
accFileViewName?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
accFileViewName?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
accHubId?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
accProjectId?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
accRegion?: Resolver<ResolversTypes['String'], ParentType, ContextType>;