1
0
mirror of https://github.com/sasjs/adapter.git synced 2025-12-11 09:24:35 +00:00

doc(forced deploy): updated documentation of 'SASViyaApiClient'

This commit is contained in:
Yury Shkoda
2020-09-09 13:05:06 +03:00
parent d22d9e1039
commit 951e119c08
10 changed files with 3305 additions and 3 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -76,7 +76,7 @@
<section class="tsd-index-section "> <section class="tsd-index-section ">
<h3>Modules</h3> <h3>Modules</h3>
<ul class="tsd-index-list"> <ul class="tsd-index-list">
<li class="tsd-kind-module tsd-is-not-exported"><a href="modules/reflection-648.html" class="tsd-kind-icon"><em>Module</em></a></li> <li class="tsd-kind-module tsd-is-not-exported"><a href="modules/reflection-678.html" class="tsd-kind-icon"><em>Module</em></a></li>
<li class="tsd-kind-module"><a href="modules/types.html" class="tsd-kind-icon">types</a></li> <li class="tsd-kind-module"><a href="modules/types.html" class="tsd-kind-icon">types</a></li>
<li class="tsd-kind-module"><a href="modules/utils.html" class="tsd-kind-icon">utils</a></li> <li class="tsd-kind-module"><a href="modules/utils.html" class="tsd-kind-icon">utils</a></li>
</ul> </ul>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -467,6 +467,8 @@ export class SASViyaApiClient {
* provided, the parentFolderUri must be provided. * provided, the parentFolderUri must be provided.
* @param parentFolderUri - the URI (eg /folders/folders/UUID) of the parent * @param parentFolderUri - the URI (eg /folders/folders/UUID) of the parent
* folder. If not provided, the parentFolderPath must be provided. * folder. If not provided, the parentFolderPath must be provided.
* @param accessToken - an access token for authorizing the request.
* @param isForced - flag that indicates if target folder already exists, it and all subfolders have to be deleted.
*/ */
public async createFolder( public async createFolder(
folderName: string, folderName: string,
@@ -755,7 +757,7 @@ export class SASViyaApiClient {
/** /**
* Deletes the client representing the supplied ID. * Deletes the client representing the supplied ID.
* @param clientId - the client ID to authenticate with. * @param clientId - the client ID to authenticate with.
* @param accessToken - an access token for an authorized user. * @param accessToken - an access token for authorizing the request.
*/ */
public async deleteClient(clientId: string, accessToken?: string) { public async deleteClient(clientId: string, accessToken?: string) {
const url = this.serverUrl + `/oauth/clients/${clientId}` const url = this.serverUrl + `/oauth/clients/${clientId}`