-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CLI Deploy: support collections (#860)
* CLI: support collections * fix failing tests * support deletion * add release changeset * version: [email protected] --------- Co-authored-by: Joe Clark <[email protected]>
- Loading branch information
1 parent
0337621
commit 084fe7e
Showing
10 changed files
with
170 additions
and
364 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ export function fullExampleSpec() { | |
return { | ||
name: 'my project', | ||
description: 'some helpful description', | ||
collections: {}, | ||
credentials: {}, | ||
workflows: { | ||
'workflow-one': { | ||
|
@@ -56,6 +57,7 @@ export function fullExampleState() { | |
id: 'be156ab1-8426-4151-9a18-4045142f9ec0', | ||
name: 'my project', | ||
description: 'some helpful description', | ||
collections: {}, | ||
project_credentials: {}, | ||
workflows: { | ||
'workflow-one': { | ||
|
@@ -116,6 +118,12 @@ export const lightningProjectPayload = { | |
updated_at: '2023-08-25T08:57:31', | ||
scheduled_deletion: null, | ||
requires_mfa: false, | ||
collections: [ | ||
{ | ||
id: 'f8e1c1e1-5c5a-4d9b-8e9f-4b2f6b1c2f4e', | ||
name: 'collection-one', | ||
}, | ||
], | ||
project_credentials: [ | ||
{ | ||
id: '25f48989-d349-4eb8-99c3-923ebba5b116', | ||
|
@@ -240,6 +248,12 @@ export const lightningProjectState = { | |
updated_at: '2023-08-25T08:57:31', | ||
scheduled_deletion: null, | ||
requires_mfa: false, | ||
collections: { | ||
'collection-one': { | ||
id: 'f8e1c1e1-5c5a-4d9b-8e9f-4b2f6b1c2f4e', | ||
name: 'collection-one', | ||
}, | ||
}, | ||
project_credentials: { | ||
'[email protected]': { | ||
id: '25f48989-d349-4eb8-99c3-923ebba5b116', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.