Skip to content

Commit

Permalink
refactor: renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
jkoenig134 committed Jul 17, 2024
1 parent 9c88d7d commit 46309c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/sdk/src/types/requests/ConnectorRequestContent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export interface ConnectorRequestContent {
"@type"?: string;
id?: string;
expiresAt?: string;
items: (CreateOutgoingRequestRequestContentItemDerivations | ConnectorRequestContentItemGroup)[];
items: (ConnectorRequestItemDerivation | ConnectorRequestContentItemGroup)[];
title?: string;
description?: string;
metadata?: object;
Expand All @@ -19,10 +19,10 @@ export interface ConnectorRequestContentItemGroup {
description?: string;
mustBeAccepted: boolean;
metadata?: object;
items: CreateOutgoingRequestRequestContentItemDerivations[];
items: ConnectorRequestItemDerivation[];
}

export type CreateOutgoingRequestRequestContentItemDerivations =
export type ConnectorRequestItemDerivation =
| CreateAttributeRequestItem
| DeleteAttributeRequestItem
| ShareAttributeRequestItem
Expand Down

0 comments on commit 46309c6

Please sign in to comment.