Skip to content

Commit

Permalink
fix: add missing projectId property to CollectionLayer type (#168)
Browse files Browse the repository at this point in the history
  • Loading branch information
rickharris authored and bitpshr committed Oct 29, 2019
1 parent 8415a0b commit 5f9e77a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/abstract-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,7 @@ A collection layer represents an underlying layer within a collection. Collectio
| `fileId` | `string` | UUID of the file that the underlying layer is part of |
| `pageId` | `string` | UUID of the page that the underlying layer is part of |
| `layerId` | `string` | UUID of the underlying layer that this collection layer represents |
| `projectId` | `string` | UUID of the project that this collectioin layer is contained within |
| `isPinned` | `boolean` | SHA of the commit introducing changes in this changeset |
| `useLatestCommit` | `boolean` | Determines if this collection layer should always point to the latest version of its underlying layer |
| `id` | `string` | UUID identifier of this collection layer |
Expand Down
1 change: 1 addition & 0 deletions src/types.js
Original file line number Diff line number Diff line change
Expand Up @@ -585,6 +585,7 @@ export type CollectionLayer = {
layerId: string,
order: number,
pageId: string,
projectId: string,
sha: "latest" | string,
useLatestCommit: boolean
};
Expand Down

0 comments on commit 5f9e77a

Please sign in to comment.