Skip to content

Commit

Permalink
Update documantation
Browse files Browse the repository at this point in the history
  • Loading branch information
fisgeci committed Jan 17, 2024
1 parent d351a9a commit 511890e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions DOCUMENTATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,13 @@ You can use the --includeDependencies flag to also export the dependencies of th
content-cli export packages -p <profileName> --packageKeys <package1> <package2> --includeDependencies
```

If you don't want to export any Action Flows with the packages you can use --excludeActionFlows flag

```
//Batch export packages with excluded Action Flows
content-cli export packages -p <profileName> --packageKeys <package1> <package2> --includeDependencies --excludeActionFlows
```

### Batch import packages into Studio

You can use the `import packages` command to batch import packages that were exported using `export packages` at once into studio.
Expand Down Expand Up @@ -312,6 +319,13 @@ By default, you can not overwrite a package in the target team. To do this you c
content-cli import packages -p <profileName> --file <exportedPackagesFile> --dataModelMappingsFile <dataModelMappingsFile> --overwrite
```

If you want to not overwrite a package but not the Action Flows inside that package you can use the --excludeActionFlows flag

```
// Example usage of excludeActionFlows
content-cli import packages -p <profileName> --file <exportedPackagesFile> --dataModelMappingsFile <dataModelMappingsFile> --overwrite --excludeActionFlows
```

### List all spaces in Studio
With this command you can retrieve a list of all spaces within a team.
The command takes your permissions into consideration and only lists the
Expand Down

0 comments on commit 511890e

Please sign in to comment.