Skip to content
This repository has been archived by the owner on Sep 26, 2024. It is now read-only.

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
osaton committed Mar 17, 2020
1 parent 675d3bf commit 200ed0e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Login
Push changes to Studio

**Kind**: instance method of [<code>StudioHelper</code>](#StudioHelper)
**Returns**: <code>Array.&lt;Object&gt;</code> - Array of objects with file upload information
**Returns**: <code>Array.&lt;Object&gt;</code> - Array of objects with file upload information. Array has `data` property which contains additional information.

| Param | Type | Default | Description |
| --- | --- | --- | --- |
Expand Down
5 changes: 4 additions & 1 deletion StudioHelper.js
Original file line number Diff line number Diff line change
Expand Up @@ -810,7 +810,7 @@ class StudioHelper {
* @param {boolean} [settings.folders[].includeSubFolders=false] - Create and upload sub folders
* @param {Object} [settings.folders[].createdFolderSettings=null] - Object with paths (RegEx pattern) as keys and FolderUpdateSettings object as value. See example.
* @param {Object} [settings.folders[].createdFileHeaders=null] - Object with file paths (RegEx pattern) as keys and FileHeaderSettings objcet as value. See example.
* @return {Array<Object>} Array of objects with file upload information
* @return {Array<Object>} Array of objects with file upload information. Array has `data` property which contains additional information.
*/
push(settings) {
let self = this;
Expand Down Expand Up @@ -1740,6 +1740,9 @@ class StudioHelper {
this.proxy = proxy;
}

/**
* @private
*/
uploadFilesInFolders(folders) {
let self = this,
foldersData = [];
Expand Down

0 comments on commit 200ed0e

Please sign in to comment.