@coveo/push-api-client 2.0.0 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/definitions/errors/privilegeError.d.ts +6 -0
- package/dist/definitions/help/axiosUtils.d.ts +2 -0
- package/dist/definitions/help/fileContainer.d.ts +9 -0
- package/dist/definitions/help/fileContainer.spec.d.ts +1 -0
- package/dist/definitions/help/urlUtils.d.ts +27 -0
- package/dist/definitions/interfaces.d.ts +4 -1
- package/dist/definitions/source/batchUploadDocumentsFromFile.d.ts +11 -0
- package/dist/definitions/source/catalog.d.ts +69 -0
- package/dist/definitions/source/catalog.spec.d.ts +1 -0
- package/dist/definitions/source/catalog.stream.spec.d.ts +1 -0
- package/dist/definitions/source/documentUploader.d.ts +5 -0
- package/dist/definitions/source/push.d.ts +5 -12
- package/dist/definitions/uploadStrategy/fileContainerStrategy.d.ts +23 -0
- package/dist/definitions/uploadStrategy/index.d.ts +3 -0
- package/dist/definitions/uploadStrategy/strategy.d.ts +16 -0
- package/dist/definitions/uploadStrategy/streamChunkStrategy.d.ts +27 -0
- package/dist/definitions/validation/preconditions/apiKeyPrivilege.d.ts +3 -0
- package/dist/definitions/validation/preconditions/apiKeyPrivilege.spec.d.ts +1 -0
- package/dist/definitions/validation/preconditions/platformPrivilege.d.ts +7 -0
- package/dist/docs/assets/search.js +1 -1
- package/dist/docs/classes/AnySecurityIdentityBuilder.html +2 -2
- package/dist/docs/classes/DocumentBuilder.html +16 -16
- package/dist/docs/classes/FieldAnalyser.html +3 -3
- package/dist/docs/classes/GroupSecurityIdentityBuilder.html +2 -2
- package/dist/docs/classes/PushSource.html +14 -14
- package/dist/docs/classes/UserSecurityIdentityBuilder.html +2 -2
- package/dist/docs/classes/VirtualGroupSecurityIdentityBuilder.html +2 -2
- package/dist/docs/enums/PlatformEnvironment.html +1 -1
- package/dist/docs/index.html +1 -1
- package/dist/docs/interfaces/BatchUpdateDocuments.html +1 -1
- package/dist/docs/interfaces/Document.html +13 -13
- package/dist/docs/interfaces/SecurityIdentity.html +3 -3
- package/dist/docs/interfaces/SecurityIdentityBuilder.html +1 -1
- package/dist/docs/interfaces/UploadBatchCallbackData.html +1 -1
- package/dist/docs/modules.html +2 -2
- package/dist/errors/privilegeError.js +13 -0
- package/dist/errors/privilegeError.js.map +1 -0
- package/dist/fieldAnalyser/fieldAnalyser.js +3 -0
- package/dist/fieldAnalyser/fieldAnalyser.js.map +1 -1
- package/dist/fieldAnalyser/fieldAnalyser.spec.js +13 -0
- package/dist/fieldAnalyser/fieldAnalyser.spec.js.map +1 -1
- package/dist/fieldAnalyser/fieldUtils.js +4 -0
- package/dist/fieldAnalyser/fieldUtils.js.map +1 -1
- package/dist/fieldAnalyser/fieldsUtils.spec.js +3 -0
- package/dist/fieldAnalyser/fieldsUtils.spec.js.map +1 -1
- package/dist/help/axiosUtils.js +12 -0
- package/dist/help/axiosUtils.js.map +1 -0
- package/dist/help/fileContainer.js +20 -0
- package/dist/help/fileContainer.js.map +1 -0
- package/dist/help/fileContainer.spec.js +34 -0
- package/dist/help/fileContainer.spec.js.map +1 -0
- package/dist/help/urlUtils.js +43 -0
- package/dist/help/urlUtils.js.map +1 -0
- package/dist/source/batchUploadDocumentsFromFile.js +50 -0
- package/dist/source/batchUploadDocumentsFromFile.js.map +1 -0
- package/dist/source/catalog.js +115 -0
- package/dist/source/catalog.js.map +1 -0
- package/dist/source/catalog.spec.js +239 -0
- package/dist/source/catalog.spec.js.map +1 -0
- package/dist/source/catalog.stream.spec.js +189 -0
- package/dist/source/catalog.stream.spec.js.map +1 -0
- package/dist/source/documentUploader.js +23 -0
- package/dist/source/documentUploader.js.map +1 -0
- package/dist/source/push.js +19 -57
- package/dist/source/push.js.map +1 -1
- package/dist/source/push.spec.js +3 -0
- package/dist/source/push.spec.js.map +1 -1
- package/dist/uploadStrategy/fileContainerStrategy.js +34 -0
- package/dist/uploadStrategy/fileContainerStrategy.js.map +1 -0
- package/dist/uploadStrategy/index.js +7 -0
- package/dist/uploadStrategy/index.js.map +1 -0
- package/dist/uploadStrategy/strategy.js +3 -0
- package/dist/uploadStrategy/strategy.js.map +1 -0
- package/dist/uploadStrategy/streamChunkStrategy.js +51 -0
- package/dist/uploadStrategy/streamChunkStrategy.js.map +1 -0
- package/dist/validation/preconditions/apiKeyPrivilege.js +21 -0
- package/dist/validation/preconditions/apiKeyPrivilege.js.map +1 -0
- package/dist/validation/preconditions/apiKeyPrivilege.spec.js +70 -0
- package/dist/validation/preconditions/apiKeyPrivilege.spec.js.map +1 -0
- package/dist/validation/preconditions/platformPrivilege.js +35 -0
- package/dist/validation/preconditions/platformPrivilege.js.map +1 -0
- package/package.json +1 -1
- package/dist/definitions/source/batchUpdateDocumentsFromFile.d.ts +0 -10
- package/dist/source/batchUpdateDocumentsFromFile.js +0 -42
- package/dist/source/batchUpdateDocumentsFromFile.js.map +0 -1
package/README.md
CHANGED
@@ -9,10 +9,10 @@ Coveo Push API client
|
|
9
9
|
## Usage
|
10
10
|
|
11
11
|
```js
|
12
|
-
import {
|
12
|
+
import {PushSource, DocumentBuilder} from '@coveo/push-api-client';
|
13
13
|
|
14
14
|
async function main() {
|
15
|
-
const source = new
|
15
|
+
const source = new PushSource('my_api_key', 'my_coveo_organization_id');
|
16
16
|
|
17
17
|
const myDocument = new DocumentBuilder(
|
18
18
|
'https://my.document.uri',
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { AxiosRequestConfig } from 'axios';
|
2
|
+
import { BatchUpdateDocuments } from '../interfaces';
|
3
|
+
export interface FileContainerResponse {
|
4
|
+
uploadUri: string;
|
5
|
+
fileId: string;
|
6
|
+
requiredHeaders: Record<string, string>;
|
7
|
+
}
|
8
|
+
export declare const uploadContentToFileContainer: (fileContainer: FileContainerResponse, batch: BatchUpdateDocuments) => Promise<import("axios").AxiosResponse<any, any>>;
|
9
|
+
export declare const getFileContainerAxiosConfig: (fileContainer: FileContainerResponse) => AxiosRequestConfig;
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1,27 @@
|
|
1
|
+
/// <reference types="node" />
|
2
|
+
import { PlatformUrlOptions } from '..';
|
3
|
+
export interface URLBuilder {
|
4
|
+
baseAPIURLForUpdate: URL;
|
5
|
+
fileContainerUrl: URL;
|
6
|
+
}
|
7
|
+
declare abstract class BaseUrlBuilder {
|
8
|
+
private organizationId;
|
9
|
+
private options;
|
10
|
+
protected constructor(organizationId: string, options: Required<PlatformUrlOptions>);
|
11
|
+
protected get platformURL(): string;
|
12
|
+
get fileContainerUrl(): import("url").URL;
|
13
|
+
abstract get baseAPIURLForUpdate(): URL;
|
14
|
+
}
|
15
|
+
export declare class PushUrlBuilder extends BaseUrlBuilder implements URLBuilder {
|
16
|
+
private sourceId;
|
17
|
+
constructor(sourceId: string, organizationId: string, options: Required<PlatformUrlOptions>);
|
18
|
+
get baseURL(): import("url").URL;
|
19
|
+
get baseAPIURLForUpdate(): import("url").URL;
|
20
|
+
}
|
21
|
+
export declare class StreamUrlBuilder extends BaseUrlBuilder implements URLBuilder {
|
22
|
+
private sourceId;
|
23
|
+
constructor(sourceId: string, organizationId: string, options: Required<PlatformUrlOptions>);
|
24
|
+
get baseStreamURL(): import("url").URL;
|
25
|
+
get baseAPIURLForUpdate(): import("url").URL;
|
26
|
+
}
|
27
|
+
export {};
|
@@ -20,7 +20,10 @@ export interface UploadBatchCallbackData {
|
|
20
20
|
}
|
21
21
|
export interface BatchUpdateDocumentsOptions {
|
22
22
|
/**
|
23
|
-
* Whether to create fields required in the index based on the document batch metadata.
|
23
|
+
* Whether to create the missing fields required in the index based on the document batch metadata.
|
24
|
+
*
|
25
|
+
* Make sure your API key is granted the privilege to EDIT fields before using this option.
|
26
|
+
* See https://docs.coveo.com/en/1707#fields-domain
|
24
27
|
*/
|
25
28
|
createFields?: boolean;
|
26
29
|
}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import PlatformClient from '@coveord/platform-client';
|
2
|
+
import { BatchUpdateDocumentsFromFiles, FailedUploadCallback, SuccessfulUploadCallback } from '../index';
|
3
|
+
import type { UploadStrategy } from '../uploadStrategy';
|
4
|
+
export declare class BatchUploadDocumentsFromFilesReturn {
|
5
|
+
private internalPromise;
|
6
|
+
private consumer;
|
7
|
+
constructor(platformClient: PlatformClient, strategy: UploadStrategy, filesOrDirectories: string[], options?: BatchUpdateDocumentsFromFiles);
|
8
|
+
onBatchUpload(cb: SuccessfulUploadCallback): this;
|
9
|
+
onBatchError(cb: FailedUploadCallback): this;
|
10
|
+
batch(): Promise<void>;
|
11
|
+
}
|
@@ -0,0 +1,69 @@
|
|
1
|
+
import { SourceVisibility } from '@coveord/platform-client';
|
2
|
+
import { PlatformUrlOptions } from '../environment';
|
3
|
+
import { SecurityIdentity } from './securityIdenty';
|
4
|
+
import { BatchUpdateDocuments, BatchUpdateDocumentsFromFiles, BatchUpdateDocumentsOptions } from '../interfaces';
|
5
|
+
import { BatchUploadDocumentsFromFilesReturn } from './batchUploadDocumentsFromFile';
|
6
|
+
/**
|
7
|
+
* Manage a catalog source.
|
8
|
+
*
|
9
|
+
* Allows you to create a new catalog source, manage security identities and documents in a Coveo organization.
|
10
|
+
*/
|
11
|
+
export declare class CatalogSource {
|
12
|
+
private apikey;
|
13
|
+
private organizationid;
|
14
|
+
private platformClient;
|
15
|
+
private options;
|
16
|
+
private static defaultOptions;
|
17
|
+
/**
|
18
|
+
* Creates an instance of CatalogSource.
|
19
|
+
* @param {string} apikey An apiKey capable of pushing documents and managing sources in a Coveo organization. See [Manage API Keys](https://docs.coveo.com/en/1718).
|
20
|
+
* @param {string} organizationid The Coveo Organization identifier.
|
21
|
+
* @param {PlatformUrlOptions} [opts=CatalogSource.defaultOptions]
|
22
|
+
*/
|
23
|
+
constructor(apikey: string, organizationid: string, opts?: PlatformUrlOptions);
|
24
|
+
/**
|
25
|
+
* Create a new catalog source
|
26
|
+
* @param name The name of the source to create.
|
27
|
+
* @param sourceVisibility The security option that should be applied to the content of the source. See [Content Security](https://docs.coveo.com/en/1779).
|
28
|
+
* @returns
|
29
|
+
*/
|
30
|
+
create(name: string, sourceVisibility: SourceVisibility): Promise<{
|
31
|
+
id: string;
|
32
|
+
}>;
|
33
|
+
get identity(): SecurityIdentity;
|
34
|
+
/**
|
35
|
+
* Manage batches of items in a catalog source.
|
36
|
+
* See [Full Document Update](https://docs.coveo.com/en/l62e0540)
|
37
|
+
* @param sourceId
|
38
|
+
* @param batch
|
39
|
+
* @param {BatchUpdateDocumentsOptions} [{createFields: createFields = true}={}]
|
40
|
+
* @returns
|
41
|
+
*/
|
42
|
+
batchUpdateDocuments(sourceId: string, batch: BatchUpdateDocuments, { createFields: createFields }?: BatchUpdateDocumentsOptions): Promise<import("axios").AxiosResponse<any, any>>;
|
43
|
+
/**
|
44
|
+
* Send your catalog data to your catalog source.
|
45
|
+
* See [How to Stream Your Catalog Data to Your Source](https://docs.coveo.com/en/lb4a0344)
|
46
|
+
* @param {string} sourceId
|
47
|
+
* @param {BatchUpdateDocuments} batch
|
48
|
+
* @param {BatchUpdateDocumentsOptions} [{createFields: createFields = true}={}]
|
49
|
+
*/
|
50
|
+
batchStreamDocuments(sourceId: string, batch: BatchUpdateDocuments, { createFields: createFields }?: BatchUpdateDocumentsOptions): Promise<void>;
|
51
|
+
/**
|
52
|
+
* Manage batches of items in a catalog source from a list of JSON files. See [Full Document Update Source](https://docs.coveo.com/en/l62e0540)
|
53
|
+
* @param {string} sourceId The unique identifier of the target Push source
|
54
|
+
* @param {string[]} filesOrDirectories A list of JSON files or directories (containing JSON files) from which to extract documents.
|
55
|
+
* @param {BatchUpdateDocumentsFromFiles} options
|
56
|
+
*/
|
57
|
+
batchUpdateDocumentsFromFiles(sourceId: string, filesOrDirectories: string[], options?: BatchUpdateDocumentsFromFiles): BatchUploadDocumentsFromFilesReturn;
|
58
|
+
/**
|
59
|
+
* Send your catalog data to your catalog source from a list of JSON files.
|
60
|
+
* See [How to Stream Your Catalog Data to Your Source](https://docs.coveo.com/en/lb4a0344)
|
61
|
+
* @param {string} sourceId The unique identifier of the target Push source
|
62
|
+
* @param {string[]} filesOrDirectories A list of JSON files or directories (containing JSON files) from which to extract documents.
|
63
|
+
* @param {BatchUpdateDocumentsFromFiles} [options]
|
64
|
+
*/
|
65
|
+
batchStreamDocumentsFromFiles(sourceId: string, filesOrDirectories: string[], options?: BatchUpdateDocumentsFromFiles): BatchUploadDocumentsFromFilesReturn;
|
66
|
+
private urlBuilder;
|
67
|
+
private fileContainerStrategy;
|
68
|
+
private streamChunkStrategy;
|
69
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1,5 @@
|
|
1
|
+
import PlatformClient from '@coveord/platform-client';
|
2
|
+
import { AxiosResponse } from 'axios';
|
3
|
+
import { BatchUpdateDocuments } from '../interfaces';
|
4
|
+
import { UploadStrategy } from '../uploadStrategy';
|
5
|
+
export declare function uploadBatch(platformClient: PlatformClient, strategy: UploadStrategy, batch: BatchUpdateDocuments, createFields?: boolean): Promise<AxiosResponse>;
|
@@ -4,8 +4,8 @@ import { DocumentBuilder } from '../documentBuilder';
|
|
4
4
|
import { PlatformUrlOptions } from '../environment';
|
5
5
|
import { FieldAnalyser } from '../fieldAnalyser/fieldAnalyser';
|
6
6
|
import { SecurityIdentity } from './securityIdenty';
|
7
|
-
import { BatchUpdateDocuments,
|
8
|
-
import {
|
7
|
+
import { BatchUpdateDocuments, BatchUpdateDocumentsFromFiles, BatchUpdateDocumentsOptions } from '../interfaces';
|
8
|
+
import { BatchUploadDocumentsFromFilesReturn } from './batchUploadDocumentsFromFile';
|
9
9
|
export declare type SourceStatus = 'REBUILD' | 'REFRESH' | 'INCREMENTAL' | 'IDLE';
|
10
10
|
/**
|
11
11
|
* Manage a push source.
|
@@ -87,7 +87,7 @@ export declare class PushSource {
|
|
87
87
|
* @param {UploadBatchCallback} callback Callback executed when a batch of documents is either successfully uploaded or when an error occurs during the upload
|
88
88
|
* @param {BatchUpdateDocumentsFromFiles} options
|
89
89
|
*/
|
90
|
-
batchUpdateDocumentsFromFiles(sourceID: string, filesOrDirectories: string[], options?: BatchUpdateDocumentsFromFiles):
|
90
|
+
batchUpdateDocumentsFromFiles(sourceID: string, filesOrDirectories: string[], options?: BatchUpdateDocumentsFromFiles): BatchUploadDocumentsFromFilesReturn;
|
91
91
|
/**
|
92
92
|
* Deletes a specific item from a Push source. Optionally, the child items of that item can also be deleted. See [Deleting an Item in a Push Source](https://docs.coveo.com/en/171).
|
93
93
|
* @param sourceID
|
@@ -110,15 +110,8 @@ export declare class PushSource {
|
|
110
110
|
* @returns
|
111
111
|
*/
|
112
112
|
setSourceStatus(sourceID: string, status: SourceStatus): Promise<import("axios").AxiosResponse<any, any>>;
|
113
|
-
uploadBatch(sourceID: string, batch: BatchUpdateDocuments): Promise<import("axios").AxiosResponse<any, any>>;
|
114
|
-
private get baseAPIURL();
|
115
|
-
private getBaseAPIURLForDocuments;
|
116
113
|
private get documentsAxiosConfig();
|
117
114
|
createFields(analyser: FieldAnalyser): Promise<void>;
|
118
|
-
private
|
119
|
-
private
|
120
|
-
private get authorizationHeader();
|
121
|
-
private createFileContainer;
|
122
|
-
private uploadContentToFileContainer;
|
123
|
-
private pushFileContainerContent;
|
115
|
+
private urlBuilder;
|
116
|
+
private fileContainerStrategy;
|
124
117
|
}
|
@@ -0,0 +1,23 @@
|
|
1
|
+
import { AxiosRequestConfig } from 'axios';
|
2
|
+
import { BatchUpdateDocuments } from '../interfaces';
|
3
|
+
import { UploadStrategy } from './strategy';
|
4
|
+
import { URLBuilder } from '../help/urlUtils';
|
5
|
+
export interface FileContainerResponse {
|
6
|
+
uploadUri: string;
|
7
|
+
fileId: string;
|
8
|
+
requiredHeaders: Record<string, string>;
|
9
|
+
}
|
10
|
+
/**
|
11
|
+
* Upload documents using the [File container](https://docs.coveo.com/en/43/index-content/creating-a-file-container)
|
12
|
+
*
|
13
|
+
* @class FileContainerStrategy
|
14
|
+
* @implements {UploadStrategy}
|
15
|
+
*/
|
16
|
+
export declare class FileContainerStrategy implements UploadStrategy {
|
17
|
+
private urlBuilder;
|
18
|
+
private documentsAxiosConfig;
|
19
|
+
constructor(urlBuilder: URLBuilder, documentsAxiosConfig: AxiosRequestConfig);
|
20
|
+
upload(batch: BatchUpdateDocuments): Promise<import("axios").AxiosResponse<any, any>>;
|
21
|
+
private createFileContainer;
|
22
|
+
private pushFileContainerContent;
|
23
|
+
}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
import type { AxiosResponse } from 'axios';
|
2
|
+
import type { BatchUpdateDocuments } from '../interfaces';
|
3
|
+
export interface UploadStrategy {
|
4
|
+
/**
|
5
|
+
* Upload a batch of documents
|
6
|
+
*
|
7
|
+
* @param {BatchUpdateDocuments} batch
|
8
|
+
*/
|
9
|
+
upload: (batch: BatchUpdateDocuments) => Promise<AxiosResponse>;
|
10
|
+
/**
|
11
|
+
* Async operation to run once the batch upload is complete
|
12
|
+
*
|
13
|
+
* @memberof UploadStrategy
|
14
|
+
*/
|
15
|
+
postUpload?: () => Promise<void>;
|
16
|
+
}
|
@@ -0,0 +1,27 @@
|
|
1
|
+
import { AxiosRequestConfig } from 'axios';
|
2
|
+
import { BatchUpdateDocuments } from '../interfaces';
|
3
|
+
import { UploadStrategy } from './strategy';
|
4
|
+
import { StreamUrlBuilder } from '../help/urlUtils';
|
5
|
+
export interface StreamResponse {
|
6
|
+
uploadUri: string;
|
7
|
+
fileId: string;
|
8
|
+
requiredHeaders: Record<string, string>;
|
9
|
+
streamId: string;
|
10
|
+
}
|
11
|
+
/**
|
12
|
+
* Upload documents using the [Stream API](https://docs.coveo.com/en/lb4a0344/coveo-for-commerce/how-to-stream-your-catalog-data-to-your-source)
|
13
|
+
*
|
14
|
+
* @class StreamChunkStrategy
|
15
|
+
* @implements {UploadStrategy}
|
16
|
+
*/
|
17
|
+
export declare class StreamChunkStrategy implements UploadStrategy {
|
18
|
+
private urlBuilder;
|
19
|
+
private documentsAxiosConfig;
|
20
|
+
private _openedStream;
|
21
|
+
constructor(urlBuilder: StreamUrlBuilder, documentsAxiosConfig: AxiosRequestConfig);
|
22
|
+
upload(batch: BatchUpdateDocuments): Promise<import("axios").AxiosResponse<any, any>>;
|
23
|
+
postUpload(): Promise<any>;
|
24
|
+
openStreamIfNotAlreadyOpen(): Promise<StreamResponse>;
|
25
|
+
closeOpenedStream(): Promise<any>;
|
26
|
+
private requestStreamChunk;
|
27
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1,7 @@
|
|
1
|
+
import type { PrivilegeModel } from '@coveord/platform-client';
|
2
|
+
export interface PlatformPrivilege {
|
3
|
+
models: PrivilegeModel[];
|
4
|
+
unsatisfiedConditionMessage: string;
|
5
|
+
}
|
6
|
+
export declare const readFieldsPrivilege: PlatformPrivilege;
|
7
|
+
export declare const writeFieldsPrivilege: PlatformPrivilege;
|
@@ -1 +1 @@
|
|
1
|
-
window.searchData = JSON.parse("{\"kinds\":{\"8\":\"Enumeration\",\"16\":\"Enumeration member\",\"32\":\"Variable\",\"128\":\"Class\",\"256\":\"Interface\",\"512\":\"Constructor\",\"1024\":\"Property\",\"2048\":\"Method\",\"65536\":\"Type literal\",\"262144\":\"Accessor\",\"4194304\":\"Type alias\"},\"rows\":[{\"id\":0,\"kind\":32,\"name\":\"Source\",\"url\":\"modules.html#Source\",\"classes\":\"tsd-kind-variable\"},{\"id\":1,\"kind\":128,\"name\":\"PushSource\",\"url\":\"classes/PushSource.html\",\"classes\":\"tsd-kind-class\"},{\"id\":2,\"kind\":1024,\"name\":\"defaultOptions\",\"url\":\"classes/PushSource.html#defaultOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private tsd-is-static\",\"parent\":\"PushSource\"},{\"id\":3,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/PushSource.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"PushSource\"},{\"id\":4,\"kind\":1024,\"name\":\"platformClient\",\"url\":\"classes/PushSource.html#platformClient\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"PushSource\"},{\"id\":5,\"kind\":1024,\"name\":\"options\",\"url\":\"classes/PushSource.html#options\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"PushSource\"},{\"id\":6,\"kind\":2048,\"name\":\"create\",\"url\":\"classes/PushSource.html#create\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"PushSource\"},{\"id\":7,\"kind\":2048,\"name\":\"createSecurityIdentity\",\"url\":\"classes/PushSource.html#createSecurityIdentity\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"PushSource\"},{\"id\":8,\"kind\":2048,\"name\":\"createOrUpdateSecurityIdentityAlias\",\"url\":\"classes/PushSource.html#createOrUpdateSecurityIdentityAlias\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"PushSource\"},{\"id\":9,\"kind\":2048,\"name\":\"deleteSecurityIdentity\",\"url\":\"classes/PushSource.html#deleteSecurityIdentity\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"PushSource\"},{\"id\":10,\"kind\":2048,\"name\":\"deleteOldSecurityIdentities\",\"url\":\"classes/PushSource.html#deleteOldSecurityIdentities\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"PushSource\"},{\"id\":11,\"kind\":2048,\"name\":\"manageSecurityIdentities\",\"url\":\"classes/PushSource.html#manageSecurityIdentities\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"PushSource\"},{\"id\":12,\"kind\":262144,\"name\":\"identity\",\"url\":\"classes/PushSource.html#identity\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"PushSource\"},{\"id\":13,\"kind\":2048,\"name\":\"addOrUpdateDocument\",\"url\":\"classes/PushSource.html#addOrUpdateDocument\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"PushSource\"},{\"id\":14,\"kind\":2048,\"name\":\"batchUpdateDocuments\",\"url\":\"classes/PushSource.html#batchUpdateDocuments\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"PushSource\"},{\"id\":15,\"kind\":2048,\"name\":\"batchUpdateDocumentsFromFiles\",\"url\":\"classes/PushSource.html#batchUpdateDocumentsFromFiles\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"PushSource\"},{\"id\":16,\"kind\":2048,\"name\":\"deleteDocument\",\"url\":\"classes/PushSource.html#deleteDocument\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"PushSource\"},{\"id\":17,\"kind\":2048,\"name\":\"deleteDocumentsOlderThan\",\"url\":\"classes/PushSource.html#deleteDocumentsOlderThan\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"PushSource\"},{\"id\":18,\"kind\":2048,\"name\":\"setSourceStatus\",\"url\":\"classes/PushSource.html#setSourceStatus\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"PushSource\"},{\"id\":19,\"kind\":2048,\"name\":\"uploadBatch\",\"url\":\"classes/PushSource.html#uploadBatch\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"PushSource\"},{\"id\":20,\"kind\":262144,\"name\":\"baseAPIURL\",\"url\":\"classes/PushSource.html#baseAPIURL\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-private\",\"parent\":\"PushSource\"},{\"id\":21,\"kind\":2048,\"name\":\"getBaseAPIURLForDocuments\",\"url\":\"classes/PushSource.html#getBaseAPIURLForDocuments\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"PushSource\"},{\"id\":22,\"kind\":262144,\"name\":\"documentsAxiosConfig\",\"url\":\"classes/PushSource.html#documentsAxiosConfig\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-private\",\"parent\":\"PushSource\"},{\"id\":23,\"kind\":2048,\"name\":\"createFields\",\"url\":\"classes/PushSource.html#createFields\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"PushSource\"},{\"id\":24,\"kind\":2048,\"name\":\"getFileContainerAxiosConfig\",\"url\":\"classes/PushSource.html#getFileContainerAxiosConfig\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"PushSource\"},{\"id\":25,\"kind\":262144,\"name\":\"documentsRequestHeaders\",\"url\":\"classes/PushSource.html#documentsRequestHeaders\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-private\",\"parent\":\"PushSource\"},{\"id\":26,\"kind\":262144,\"name\":\"authorizationHeader\",\"url\":\"classes/PushSource.html#authorizationHeader\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-private\",\"parent\":\"PushSource\"},{\"id\":27,\"kind\":2048,\"name\":\"createFileContainer\",\"url\":\"classes/PushSource.html#createFileContainer\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"PushSource\"},{\"id\":28,\"kind\":2048,\"name\":\"uploadContentToFileContainer\",\"url\":\"classes/PushSource.html#uploadContentToFileContainer\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"PushSource\"},{\"id\":29,\"kind\":2048,\"name\":\"pushFileContainerContent\",\"url\":\"classes/PushSource.html#pushFileContainerContent\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"PushSource\"},{\"id\":30,\"kind\":4194304,\"name\":\"SuccessfulUploadCallback\",\"url\":\"modules.html#SuccessfulUploadCallback\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":31,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules.html#SuccessfulUploadCallback.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"SuccessfulUploadCallback\"},{\"id\":32,\"kind\":4194304,\"name\":\"FailedUploadCallback\",\"url\":\"modules.html#FailedUploadCallback\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":33,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules.html#FailedUploadCallback.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"FailedUploadCallback\"},{\"id\":34,\"kind\":256,\"name\":\"UploadBatchCallbackData\",\"url\":\"interfaces/UploadBatchCallbackData.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":35,\"kind\":1024,\"name\":\"files\",\"url\":\"interfaces/UploadBatchCallbackData.html#files\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"UploadBatchCallbackData\"},{\"id\":36,\"kind\":1024,\"name\":\"batch\",\"url\":\"interfaces/UploadBatchCallbackData.html#batch\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"UploadBatchCallbackData\"},{\"id\":37,\"kind\":1024,\"name\":\"res\",\"url\":\"interfaces/UploadBatchCallbackData.html#res\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"UploadBatchCallbackData\"},{\"id\":38,\"kind\":256,\"name\":\"BatchUpdateDocuments\",\"url\":\"interfaces/BatchUpdateDocuments.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":39,\"kind\":1024,\"name\":\"addOrUpdate\",\"url\":\"interfaces/BatchUpdateDocuments.html#addOrUpdate\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BatchUpdateDocuments\"},{\"id\":40,\"kind\":1024,\"name\":\"delete\",\"url\":\"interfaces/BatchUpdateDocuments.html#delete\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BatchUpdateDocuments\"},{\"id\":41,\"kind\":4194304,\"name\":\"BatchUpdateDocumentsFromFiles\",\"url\":\"modules.html#BatchUpdateDocumentsFromFiles\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":42,\"kind\":128,\"name\":\"FieldAnalyser\",\"url\":\"classes/FieldAnalyser.html\",\"classes\":\"tsd-kind-class\"},{\"id\":43,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/FieldAnalyser.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"FieldAnalyser\"},{\"id\":44,\"kind\":1024,\"name\":\"inconsistencies\",\"url\":\"classes/FieldAnalyser.html#inconsistencies\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"FieldAnalyser\"},{\"id\":45,\"kind\":1024,\"name\":\"missingFields\",\"url\":\"classes/FieldAnalyser.html#missingFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"FieldAnalyser\"},{\"id\":46,\"kind\":1024,\"name\":\"existingFields\",\"url\":\"classes/FieldAnalyser.html#existingFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"FieldAnalyser\"},{\"id\":47,\"kind\":2048,\"name\":\"add\",\"url\":\"classes/FieldAnalyser.html#add\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"FieldAnalyser\"},{\"id\":48,\"kind\":2048,\"name\":\"report\",\"url\":\"classes/FieldAnalyser.html#report\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"FieldAnalyser\"},{\"id\":49,\"kind\":2048,\"name\":\"removeInconsistentFields\",\"url\":\"classes/FieldAnalyser.html#removeInconsistentFields\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"FieldAnalyser\"},{\"id\":50,\"kind\":2048,\"name\":\"storeMetadata\",\"url\":\"classes/FieldAnalyser.html#storeMetadata\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"FieldAnalyser\"},{\"id\":51,\"kind\":2048,\"name\":\"ensureExistingFields\",\"url\":\"classes/FieldAnalyser.html#ensureExistingFields\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"FieldAnalyser\"},{\"id\":52,\"kind\":2048,\"name\":\"ensurePermanentId\",\"url\":\"classes/FieldAnalyser.html#ensurePermanentId\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"FieldAnalyser\"},{\"id\":53,\"kind\":128,\"name\":\"DocumentBuilder\",\"url\":\"classes/DocumentBuilder.html\",\"classes\":\"tsd-kind-class\"},{\"id\":54,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/DocumentBuilder.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"DocumentBuilder\"},{\"id\":55,\"kind\":1024,\"name\":\"doc\",\"url\":\"classes/DocumentBuilder.html#doc\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"DocumentBuilder\"},{\"id\":56,\"kind\":2048,\"name\":\"withData\",\"url\":\"classes/DocumentBuilder.html#withData\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DocumentBuilder\"},{\"id\":57,\"kind\":2048,\"name\":\"withDate\",\"url\":\"classes/DocumentBuilder.html#withDate\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DocumentBuilder\"},{\"id\":58,\"kind\":2048,\"name\":\"withModifiedDate\",\"url\":\"classes/DocumentBuilder.html#withModifiedDate\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DocumentBuilder\"},{\"id\":59,\"kind\":2048,\"name\":\"withPermanentId\",\"url\":\"classes/DocumentBuilder.html#withPermanentId\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DocumentBuilder\"},{\"id\":60,\"kind\":2048,\"name\":\"withCompressedBinaryData\",\"url\":\"classes/DocumentBuilder.html#withCompressedBinaryData\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DocumentBuilder\"},{\"id\":61,\"kind\":2048,\"name\":\"withFileExtension\",\"url\":\"classes/DocumentBuilder.html#withFileExtension\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DocumentBuilder\"},{\"id\":62,\"kind\":2048,\"name\":\"withParentID\",\"url\":\"classes/DocumentBuilder.html#withParentID\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DocumentBuilder\"},{\"id\":63,\"kind\":2048,\"name\":\"withClickableUri\",\"url\":\"classes/DocumentBuilder.html#withClickableUri\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DocumentBuilder\"},{\"id\":64,\"kind\":2048,\"name\":\"withAuthor\",\"url\":\"classes/DocumentBuilder.html#withAuthor\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DocumentBuilder\"},{\"id\":65,\"kind\":2048,\"name\":\"withMetadataValue\",\"url\":\"classes/DocumentBuilder.html#withMetadataValue\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DocumentBuilder\"},{\"id\":66,\"kind\":2048,\"name\":\"withMetadata\",\"url\":\"classes/DocumentBuilder.html#withMetadata\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DocumentBuilder\"},{\"id\":67,\"kind\":2048,\"name\":\"withAllowedPermissions\",\"url\":\"classes/DocumentBuilder.html#withAllowedPermissions\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DocumentBuilder\"},{\"id\":68,\"kind\":2048,\"name\":\"withDeniedPermissions\",\"url\":\"classes/DocumentBuilder.html#withDeniedPermissions\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DocumentBuilder\"},{\"id\":69,\"kind\":2048,\"name\":\"withAllowAnonymousUsers\",\"url\":\"classes/DocumentBuilder.html#withAllowAnonymousUsers\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DocumentBuilder\"},{\"id\":70,\"kind\":2048,\"name\":\"build\",\"url\":\"classes/DocumentBuilder.html#build\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DocumentBuilder\"},{\"id\":71,\"kind\":2048,\"name\":\"marshal\",\"url\":\"classes/DocumentBuilder.html#marshal\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DocumentBuilder\"},{\"id\":72,\"kind\":2048,\"name\":\"marshalMetadata\",\"url\":\"classes/DocumentBuilder.html#marshalMetadata\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"DocumentBuilder\"},{\"id\":73,\"kind\":2048,\"name\":\"marshalCompressedBinaryData\",\"url\":\"classes/DocumentBuilder.html#marshalCompressedBinaryData\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"DocumentBuilder\"},{\"id\":74,\"kind\":2048,\"name\":\"marshalPermissions\",\"url\":\"classes/DocumentBuilder.html#marshalPermissions\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"DocumentBuilder\"},{\"id\":75,\"kind\":2048,\"name\":\"validateAndFillMissing\",\"url\":\"classes/DocumentBuilder.html#validateAndFillMissing\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"DocumentBuilder\"},{\"id\":76,\"kind\":2048,\"name\":\"generatePermanentId\",\"url\":\"classes/DocumentBuilder.html#generatePermanentId\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"DocumentBuilder\"},{\"id\":77,\"kind\":2048,\"name\":\"validateDateAndReturnValidDate\",\"url\":\"classes/DocumentBuilder.html#validateDateAndReturnValidDate\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"DocumentBuilder\"},{\"id\":78,\"kind\":2048,\"name\":\"validateCompressedBinaryData\",\"url\":\"classes/DocumentBuilder.html#validateCompressedBinaryData\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"DocumentBuilder\"},{\"id\":79,\"kind\":2048,\"name\":\"setPermission\",\"url\":\"classes/DocumentBuilder.html#setPermission\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"DocumentBuilder\"},{\"id\":80,\"kind\":8,\"name\":\"PlatformEnvironment\",\"url\":\"enums/PlatformEnvironment.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":81,\"kind\":16,\"name\":\"Dev\",\"url\":\"enums/PlatformEnvironment.html#Dev\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"PlatformEnvironment\"},{\"id\":82,\"kind\":16,\"name\":\"QA\",\"url\":\"enums/PlatformEnvironment.html#QA\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"PlatformEnvironment\"},{\"id\":83,\"kind\":16,\"name\":\"Hipaa\",\"url\":\"enums/PlatformEnvironment.html#Hipaa\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"PlatformEnvironment\"},{\"id\":84,\"kind\":16,\"name\":\"Prod\",\"url\":\"enums/PlatformEnvironment.html#Prod\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"PlatformEnvironment\"},{\"id\":85,\"kind\":4194304,\"name\":\"PlatformUrlOptions\",\"url\":\"modules.html#PlatformUrlOptions\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":86,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules.html#PlatformUrlOptions.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"PlatformUrlOptions\"},{\"id\":87,\"kind\":1024,\"name\":\"environment\",\"url\":\"modules.html#PlatformUrlOptions.__type.environment\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PlatformUrlOptions.__type\"},{\"id\":88,\"kind\":1024,\"name\":\"region\",\"url\":\"modules.html#PlatformUrlOptions.__type.region\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PlatformUrlOptions.__type\"},{\"id\":89,\"kind\":4194304,\"name\":\"SecurityIdentityType\",\"url\":\"modules.html#SecurityIdentityType\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":90,\"kind\":256,\"name\":\"SecurityIdentity\",\"url\":\"interfaces/SecurityIdentity.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":91,\"kind\":1024,\"name\":\"identity\",\"url\":\"interfaces/SecurityIdentity.html#identity\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"SecurityIdentity\"},{\"id\":92,\"kind\":1024,\"name\":\"identityType\",\"url\":\"interfaces/SecurityIdentity.html#identityType\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"SecurityIdentity\"},{\"id\":93,\"kind\":1024,\"name\":\"securityProvider\",\"url\":\"interfaces/SecurityIdentity.html#securityProvider\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"SecurityIdentity\"},{\"id\":94,\"kind\":4194304,\"name\":\"MetadataValue\",\"url\":\"modules.html#MetadataValue\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":95,\"kind\":4194304,\"name\":\"Metadata\",\"url\":\"modules.html#Metadata\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":96,\"kind\":4194304,\"name\":\"CompressionType\",\"url\":\"modules.html#CompressionType\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":97,\"kind\":256,\"name\":\"Document\",\"url\":\"interfaces/Document.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":98,\"kind\":1024,\"name\":\"uri\",\"url\":\"interfaces/Document.html#uri\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Document\"},{\"id\":99,\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/Document.html#title\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Document\"},{\"id\":100,\"kind\":1024,\"name\":\"clickableUri\",\"url\":\"interfaces/Document.html#clickableUri\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Document\"},{\"id\":101,\"kind\":1024,\"name\":\"author\",\"url\":\"interfaces/Document.html#author\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Document\"},{\"id\":102,\"kind\":1024,\"name\":\"date\",\"url\":\"interfaces/Document.html#date\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Document\"},{\"id\":103,\"kind\":1024,\"name\":\"modifiedDate\",\"url\":\"interfaces/Document.html#modifiedDate\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Document\"},{\"id\":104,\"kind\":1024,\"name\":\"permanentId\",\"url\":\"interfaces/Document.html#permanentId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Document\"},{\"id\":105,\"kind\":1024,\"name\":\"parentId\",\"url\":\"interfaces/Document.html#parentId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Document\"},{\"id\":106,\"kind\":1024,\"name\":\"data\",\"url\":\"interfaces/Document.html#data-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Document\"},{\"id\":107,\"kind\":1024,\"name\":\"compressedBinaryData\",\"url\":\"interfaces/Document.html#compressedBinaryData\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Document\"},{\"id\":108,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Document.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"Document\"},{\"id\":109,\"kind\":1024,\"name\":\"compressionType\",\"url\":\"interfaces/Document.html#__type.compressionType\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Document.__type\"},{\"id\":110,\"kind\":1024,\"name\":\"data\",\"url\":\"interfaces/Document.html#__type.data\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Document.__type\"},{\"id\":111,\"kind\":1024,\"name\":\"metadata\",\"url\":\"interfaces/Document.html#metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Document\"},{\"id\":112,\"kind\":1024,\"name\":\"permissions\",\"url\":\"interfaces/Document.html#permissions\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Document\"},{\"id\":113,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Document.html#__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"Document\"},{\"id\":114,\"kind\":1024,\"name\":\"allowAnonymous\",\"url\":\"interfaces/Document.html#__type-1.allowAnonymous\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Document.__type\"},{\"id\":115,\"kind\":1024,\"name\":\"allowedPermissions\",\"url\":\"interfaces/Document.html#__type-1.allowedPermissions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Document.__type\"},{\"id\":116,\"kind\":1024,\"name\":\"deniedPermissions\",\"url\":\"interfaces/Document.html#__type-1.deniedPermissions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Document.__type\"},{\"id\":117,\"kind\":1024,\"name\":\"fileExtension\",\"url\":\"interfaces/Document.html#fileExtension\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Document\"},{\"id\":118,\"kind\":256,\"name\":\"SecurityIdentityBuilder\",\"url\":\"interfaces/SecurityIdentityBuilder.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":119,\"kind\":2048,\"name\":\"build\",\"url\":\"interfaces/SecurityIdentityBuilder.html#build\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"SecurityIdentityBuilder\"},{\"id\":120,\"kind\":128,\"name\":\"AnySecurityIdentityBuilder\",\"url\":\"classes/AnySecurityIdentityBuilder.html\",\"classes\":\"tsd-kind-class\"},{\"id\":121,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/AnySecurityIdentityBuilder.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"AnySecurityIdentityBuilder\"},{\"id\":122,\"kind\":1024,\"name\":\"securityIdentity\",\"url\":\"classes/AnySecurityIdentityBuilder.html#securityIdentity\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"AnySecurityIdentityBuilder\"},{\"id\":123,\"kind\":2048,\"name\":\"build\",\"url\":\"classes/AnySecurityIdentityBuilder.html#build\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"AnySecurityIdentityBuilder\"},{\"id\":124,\"kind\":128,\"name\":\"UserSecurityIdentityBuilder\",\"url\":\"classes/UserSecurityIdentityBuilder.html\",\"classes\":\"tsd-kind-class\"},{\"id\":125,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/UserSecurityIdentityBuilder.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"UserSecurityIdentityBuilder\"},{\"id\":126,\"kind\":2048,\"name\":\"build\",\"url\":\"classes/UserSecurityIdentityBuilder.html#build\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"UserSecurityIdentityBuilder\"},{\"id\":127,\"kind\":128,\"name\":\"GroupSecurityIdentityBuilder\",\"url\":\"classes/GroupSecurityIdentityBuilder.html\",\"classes\":\"tsd-kind-class\"},{\"id\":128,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/GroupSecurityIdentityBuilder.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"GroupSecurityIdentityBuilder\"},{\"id\":129,\"kind\":2048,\"name\":\"build\",\"url\":\"classes/GroupSecurityIdentityBuilder.html#build\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"GroupSecurityIdentityBuilder\"},{\"id\":130,\"kind\":128,\"name\":\"VirtualGroupSecurityIdentityBuilder\",\"url\":\"classes/VirtualGroupSecurityIdentityBuilder.html\",\"classes\":\"tsd-kind-class\"},{\"id\":131,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/VirtualGroupSecurityIdentityBuilder.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"VirtualGroupSecurityIdentityBuilder\"},{\"id\":132,\"kind\":2048,\"name\":\"build\",\"url\":\"classes/VirtualGroupSecurityIdentityBuilder.html#build\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"VirtualGroupSecurityIdentityBuilder\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"parent\"],\"fieldVectors\":[[\"name/0\",[0,44.924]],[\"parent/0\",[]],[\"name/1\",[1,15.134]],[\"parent/1\",[]],[\"name/2\",[2,44.924]],[\"parent/2\",[1,1.4]],[\"name/3\",[3,28.829]],[\"parent/3\",[1,1.4]],[\"name/4\",[4,44.924]],[\"parent/4\",[1,1.4]],[\"name/5\",[5,44.924]],[\"parent/5\",[1,1.4]],[\"name/6\",[6,44.924]],[\"parent/6\",[1,1.4]],[\"name/7\",[7,44.924]],[\"parent/7\",[1,1.4]],[\"name/8\",[8,44.924]],[\"parent/8\",[1,1.4]],[\"name/9\",[9,44.924]],[\"parent/9\",[1,1.4]],[\"name/10\",[10,44.924]],[\"parent/10\",[1,1.4]],[\"name/11\",[11,44.924]],[\"parent/11\",[1,1.4]],[\"name/12\",[12,39.815]],[\"parent/12\",[1,1.4]],[\"name/13\",[13,44.924]],[\"parent/13\",[1,1.4]],[\"name/14\",[14,33.938]],[\"parent/14\",[1,1.4]],[\"name/15\",[15,39.815]],[\"parent/15\",[1,1.4]],[\"name/16\",[16,44.924]],[\"parent/16\",[1,1.4]],[\"name/17\",[17,44.924]],[\"parent/17\",[1,1.4]],[\"name/18\",[18,44.924]],[\"parent/18\",[1,1.4]],[\"name/19\",[19,44.924]],[\"parent/19\",[1,1.4]],[\"name/20\",[20,44.924]],[\"parent/20\",[1,1.4]],[\"name/21\",[21,44.924]],[\"parent/21\",[1,1.4]],[\"name/22\",[22,44.924]],[\"parent/22\",[1,1.4]],[\"name/23\",[23,44.924]],[\"parent/23\",[1,1.4]],[\"name/24\",[24,44.924]],[\"parent/24\",[1,1.4]],[\"name/25\",[25,44.924]],[\"parent/25\",[1,1.4]],[\"name/26\",[26,44.924]],[\"parent/26\",[1,1.4]],[\"name/27\",[27,44.924]],[\"parent/27\",[1,1.4]],[\"name/28\",[28,44.924]],[\"parent/28\",[1,1.4]],[\"name/29\",[29,44.924]],[\"parent/29\",[1,1.4]],[\"name/30\",[30,39.815]],[\"parent/30\",[]],[\"name/31\",[31,31.931]],[\"parent/31\",[30,3.683]],[\"name/32\",[32,39.815]],[\"parent/32\",[]],[\"name/33\",[31,31.931]],[\"parent/33\",[32,3.683]],[\"name/34\",[33,33.938]],[\"parent/34\",[]],[\"name/35\",[34,44.924]],[\"parent/35\",[33,3.139]],[\"name/36\",[35,44.924]],[\"parent/36\",[33,3.139]],[\"name/37\",[36,44.924]],[\"parent/37\",[33,3.139]],[\"name/38\",[14,33.938]],[\"parent/38\",[]],[\"name/39\",[37,44.924]],[\"parent/39\",[14,3.139]],[\"name/40\",[38,44.924]],[\"parent/40\",[14,3.139]],[\"name/41\",[15,39.815]],[\"parent/41\",[]],[\"name/42\",[39,24.555]],[\"parent/42\",[]],[\"name/43\",[3,28.829]],[\"parent/43\",[39,2.271]],[\"name/44\",[40,44.924]],[\"parent/44\",[39,2.271]],[\"name/45\",[41,44.924]],[\"parent/45\",[39,2.271]],[\"name/46\",[42,44.924]],[\"parent/46\",[39,2.271]],[\"name/47\",[43,44.924]],[\"parent/47\",[39,2.271]],[\"name/48\",[44,44.924]],[\"parent/48\",[39,2.271]],[\"name/49\",[45,44.924]],[\"parent/49\",[39,2.271]],[\"name/50\",[46,44.924]],[\"parent/50\",[39,2.271]],[\"name/51\",[47,44.924]],[\"parent/51\",[39,2.271]],[\"name/52\",[48,44.924]],[\"parent/52\",[39,2.271]],[\"name/53\",[49,15.837]],[\"parent/53\",[]],[\"name/54\",[3,28.829]],[\"parent/54\",[49,1.465]],[\"name/55\",[50,44.924]],[\"parent/55\",[49,1.465]],[\"name/56\",[51,44.924]],[\"parent/56\",[49,1.465]],[\"name/57\",[52,44.924]],[\"parent/57\",[49,1.465]],[\"name/58\",[53,44.924]],[\"parent/58\",[49,1.465]],[\"name/59\",[54,44.924]],[\"parent/59\",[49,1.465]],[\"name/60\",[55,44.924]],[\"parent/60\",[49,1.465]],[\"name/61\",[56,44.924]],[\"parent/61\",[49,1.465]],[\"name/62\",[57,44.924]],[\"parent/62\",[49,1.465]],[\"name/63\",[58,44.924]],[\"parent/63\",[49,1.465]],[\"name/64\",[59,44.924]],[\"parent/64\",[49,1.465]],[\"name/65\",[60,44.924]],[\"parent/65\",[49,1.465]],[\"name/66\",[61,44.924]],[\"parent/66\",[49,1.465]],[\"name/67\",[62,44.924]],[\"parent/67\",[49,1.465]],[\"name/68\",[63,44.924]],[\"parent/68\",[49,1.465]],[\"name/69\",[64,44.924]],[\"parent/69\",[49,1.465]],[\"name/70\",[65,30.26]],[\"parent/70\",[49,1.465]],[\"name/71\",[66,44.924]],[\"parent/71\",[49,1.465]],[\"name/72\",[67,44.924]],[\"parent/72\",[49,1.465]],[\"name/73\",[68,44.924]],[\"parent/73\",[49,1.465]],[\"name/74\",[69,44.924]],[\"parent/74\",[49,1.465]],[\"name/75\",[70,44.924]],[\"parent/75\",[49,1.465]],[\"name/76\",[71,44.924]],[\"parent/76\",[49,1.465]],[\"name/77\",[72,44.924]],[\"parent/77\",[49,1.465]],[\"name/78\",[73,44.924]],[\"parent/78\",[49,1.465]],[\"name/79\",[74,44.924]],[\"parent/79\",[49,1.465]],[\"name/80\",[75,31.931]],[\"parent/80\",[]],[\"name/81\",[76,44.924]],[\"parent/81\",[75,2.954]],[\"name/82\",[77,44.924]],[\"parent/82\",[75,2.954]],[\"name/83\",[78,44.924]],[\"parent/83\",[75,2.954]],[\"name/84\",[79,44.924]],[\"parent/84\",[75,2.954]],[\"name/85\",[80,39.815]],[\"parent/85\",[]],[\"name/86\",[31,31.931]],[\"parent/86\",[80,3.683]],[\"name/87\",[81,44.924]],[\"parent/87\",[82,3.683]],[\"name/88\",[83,44.924]],[\"parent/88\",[82,3.683]],[\"name/89\",[84,44.924]],[\"parent/89\",[]],[\"name/90\",[85,31.931]],[\"parent/90\",[]],[\"name/91\",[12,39.815]],[\"parent/91\",[85,2.954]],[\"name/92\",[86,44.924]],[\"parent/92\",[85,2.954]],[\"name/93\",[87,44.924]],[\"parent/93\",[85,2.954]],[\"name/94\",[88,44.924]],[\"parent/94\",[]],[\"name/95\",[89,39.815]],[\"parent/95\",[]],[\"name/96\",[90,39.815]],[\"parent/96\",[]],[\"name/97\",[91,20.945]],[\"parent/97\",[]],[\"name/98\",[92,44.924]],[\"parent/98\",[91,1.937]],[\"name/99\",[93,44.924]],[\"parent/99\",[91,1.937]],[\"name/100\",[94,44.924]],[\"parent/100\",[91,1.937]],[\"name/101\",[95,44.924]],[\"parent/101\",[91,1.937]],[\"name/102\",[96,44.924]],[\"parent/102\",[91,1.937]],[\"name/103\",[97,44.924]],[\"parent/103\",[91,1.937]],[\"name/104\",[98,44.924]],[\"parent/104\",[91,1.937]],[\"name/105\",[99,44.924]],[\"parent/105\",[91,1.937]],[\"name/106\",[100,39.815]],[\"parent/106\",[91,1.937]],[\"name/107\",[101,44.924]],[\"parent/107\",[91,1.937]],[\"name/108\",[31,31.931]],[\"parent/108\",[91,1.937]],[\"name/109\",[90,39.815]],[\"parent/109\",[102,2.954]],[\"name/110\",[100,39.815]],[\"parent/110\",[102,2.954]],[\"name/111\",[89,39.815]],[\"parent/111\",[91,1.937]],[\"name/112\",[103,44.924]],[\"parent/112\",[91,1.937]],[\"name/113\",[31,31.931]],[\"parent/113\",[91,1.937]],[\"name/114\",[104,44.924]],[\"parent/114\",[102,2.954]],[\"name/115\",[105,44.924]],[\"parent/115\",[102,2.954]],[\"name/116\",[106,44.924]],[\"parent/116\",[102,2.954]],[\"name/117\",[107,44.924]],[\"parent/117\",[91,1.937]],[\"name/118\",[108,39.815]],[\"parent/118\",[]],[\"name/119\",[65,30.26]],[\"parent/119\",[108,3.683]],[\"name/120\",[109,33.938]],[\"parent/120\",[]],[\"name/121\",[3,28.829]],[\"parent/121\",[109,3.139]],[\"name/122\",[85,31.931]],[\"parent/122\",[109,3.139]],[\"name/123\",[65,30.26]],[\"parent/123\",[109,3.139]],[\"name/124\",[110,36.451]],[\"parent/124\",[]],[\"name/125\",[3,28.829]],[\"parent/125\",[110,3.372]],[\"name/126\",[65,30.26]],[\"parent/126\",[110,3.372]],[\"name/127\",[111,36.451]],[\"parent/127\",[]],[\"name/128\",[3,28.829]],[\"parent/128\",[111,3.372]],[\"name/129\",[65,30.26]],[\"parent/129\",[111,3.372]],[\"name/130\",[112,36.451]],[\"parent/130\",[]],[\"name/131\",[3,28.829]],[\"parent/131\",[112,3.372]],[\"name/132\",[65,30.26]],[\"parent/132\",[112,3.372]]],\"invertedIndex\":[[\"__type\",{\"_index\":31,\"name\":{\"31\":{},\"33\":{},\"86\":{},\"108\":{},\"113\":{}},\"parent\":{}}],[\"add\",{\"_index\":43,\"name\":{\"47\":{}},\"parent\":{}}],[\"addorupdate\",{\"_index\":37,\"name\":{\"39\":{}},\"parent\":{}}],[\"addorupdatedocument\",{\"_index\":13,\"name\":{\"13\":{}},\"parent\":{}}],[\"allowanonymous\",{\"_index\":104,\"name\":{\"114\":{}},\"parent\":{}}],[\"allowedpermissions\",{\"_index\":105,\"name\":{\"115\":{}},\"parent\":{}}],[\"anysecurityidentitybuilder\",{\"_index\":109,\"name\":{\"120\":{}},\"parent\":{\"121\":{},\"122\":{},\"123\":{}}}],[\"author\",{\"_index\":95,\"name\":{\"101\":{}},\"parent\":{}}],[\"authorizationheader\",{\"_index\":26,\"name\":{\"26\":{}},\"parent\":{}}],[\"baseapiurl\",{\"_index\":20,\"name\":{\"20\":{}},\"parent\":{}}],[\"batch\",{\"_index\":35,\"name\":{\"36\":{}},\"parent\":{}}],[\"batchupdatedocuments\",{\"_index\":14,\"name\":{\"14\":{},\"38\":{}},\"parent\":{\"39\":{},\"40\":{}}}],[\"batchupdatedocumentsfromfiles\",{\"_index\":15,\"name\":{\"15\":{},\"41\":{}},\"parent\":{}}],[\"build\",{\"_index\":65,\"name\":{\"70\":{},\"119\":{},\"123\":{},\"126\":{},\"129\":{},\"132\":{}},\"parent\":{}}],[\"clickableuri\",{\"_index\":94,\"name\":{\"100\":{}},\"parent\":{}}],[\"compressedbinarydata\",{\"_index\":101,\"name\":{\"107\":{}},\"parent\":{}}],[\"compressiontype\",{\"_index\":90,\"name\":{\"96\":{},\"109\":{}},\"parent\":{}}],[\"constructor\",{\"_index\":3,\"name\":{\"3\":{},\"43\":{},\"54\":{},\"121\":{},\"125\":{},\"128\":{},\"131\":{}},\"parent\":{}}],[\"create\",{\"_index\":6,\"name\":{\"6\":{}},\"parent\":{}}],[\"createfields\",{\"_index\":23,\"name\":{\"23\":{}},\"parent\":{}}],[\"createfilecontainer\",{\"_index\":27,\"name\":{\"27\":{}},\"parent\":{}}],[\"createorupdatesecurityidentityalias\",{\"_index\":8,\"name\":{\"8\":{}},\"parent\":{}}],[\"createsecurityidentity\",{\"_index\":7,\"name\":{\"7\":{}},\"parent\":{}}],[\"data\",{\"_index\":100,\"name\":{\"106\":{},\"110\":{}},\"parent\":{}}],[\"date\",{\"_index\":96,\"name\":{\"102\":{}},\"parent\":{}}],[\"defaultoptions\",{\"_index\":2,\"name\":{\"2\":{}},\"parent\":{}}],[\"delete\",{\"_index\":38,\"name\":{\"40\":{}},\"parent\":{}}],[\"deletedocument\",{\"_index\":16,\"name\":{\"16\":{}},\"parent\":{}}],[\"deletedocumentsolderthan\",{\"_index\":17,\"name\":{\"17\":{}},\"parent\":{}}],[\"deleteoldsecurityidentities\",{\"_index\":10,\"name\":{\"10\":{}},\"parent\":{}}],[\"deletesecurityidentity\",{\"_index\":9,\"name\":{\"9\":{}},\"parent\":{}}],[\"deniedpermissions\",{\"_index\":106,\"name\":{\"116\":{}},\"parent\":{}}],[\"dev\",{\"_index\":76,\"name\":{\"81\":{}},\"parent\":{}}],[\"doc\",{\"_index\":50,\"name\":{\"55\":{}},\"parent\":{}}],[\"document\",{\"_index\":91,\"name\":{\"97\":{}},\"parent\":{\"98\":{},\"99\":{},\"100\":{},\"101\":{},\"102\":{},\"103\":{},\"104\":{},\"105\":{},\"106\":{},\"107\":{},\"108\":{},\"111\":{},\"112\":{},\"113\":{},\"117\":{}}}],[\"document.__type\",{\"_index\":102,\"name\":{},\"parent\":{\"109\":{},\"110\":{},\"114\":{},\"115\":{},\"116\":{}}}],[\"documentbuilder\",{\"_index\":49,\"name\":{\"53\":{}},\"parent\":{\"54\":{},\"55\":{},\"56\":{},\"57\":{},\"58\":{},\"59\":{},\"60\":{},\"61\":{},\"62\":{},\"63\":{},\"64\":{},\"65\":{},\"66\":{},\"67\":{},\"68\":{},\"69\":{},\"70\":{},\"71\":{},\"72\":{},\"73\":{},\"74\":{},\"75\":{},\"76\":{},\"77\":{},\"78\":{},\"79\":{}}}],[\"documentsaxiosconfig\",{\"_index\":22,\"name\":{\"22\":{}},\"parent\":{}}],[\"documentsrequestheaders\",{\"_index\":25,\"name\":{\"25\":{}},\"parent\":{}}],[\"ensureexistingfields\",{\"_index\":47,\"name\":{\"51\":{}},\"parent\":{}}],[\"ensurepermanentid\",{\"_index\":48,\"name\":{\"52\":{}},\"parent\":{}}],[\"environment\",{\"_index\":81,\"name\":{\"87\":{}},\"parent\":{}}],[\"existingfields\",{\"_index\":42,\"name\":{\"46\":{}},\"parent\":{}}],[\"faileduploadcallback\",{\"_index\":32,\"name\":{\"32\":{}},\"parent\":{\"33\":{}}}],[\"fieldanalyser\",{\"_index\":39,\"name\":{\"42\":{}},\"parent\":{\"43\":{},\"44\":{},\"45\":{},\"46\":{},\"47\":{},\"48\":{},\"49\":{},\"50\":{},\"51\":{},\"52\":{}}}],[\"fileextension\",{\"_index\":107,\"name\":{\"117\":{}},\"parent\":{}}],[\"files\",{\"_index\":34,\"name\":{\"35\":{}},\"parent\":{}}],[\"generatepermanentid\",{\"_index\":71,\"name\":{\"76\":{}},\"parent\":{}}],[\"getbaseapiurlfordocuments\",{\"_index\":21,\"name\":{\"21\":{}},\"parent\":{}}],[\"getfilecontaineraxiosconfig\",{\"_index\":24,\"name\":{\"24\":{}},\"parent\":{}}],[\"groupsecurityidentitybuilder\",{\"_index\":111,\"name\":{\"127\":{}},\"parent\":{\"128\":{},\"129\":{}}}],[\"hipaa\",{\"_index\":78,\"name\":{\"83\":{}},\"parent\":{}}],[\"identity\",{\"_index\":12,\"name\":{\"12\":{},\"91\":{}},\"parent\":{}}],[\"identitytype\",{\"_index\":86,\"name\":{\"92\":{}},\"parent\":{}}],[\"inconsistencies\",{\"_index\":40,\"name\":{\"44\":{}},\"parent\":{}}],[\"managesecurityidentities\",{\"_index\":11,\"name\":{\"11\":{}},\"parent\":{}}],[\"marshal\",{\"_index\":66,\"name\":{\"71\":{}},\"parent\":{}}],[\"marshalcompressedbinarydata\",{\"_index\":68,\"name\":{\"73\":{}},\"parent\":{}}],[\"marshalmetadata\",{\"_index\":67,\"name\":{\"72\":{}},\"parent\":{}}],[\"marshalpermissions\",{\"_index\":69,\"name\":{\"74\":{}},\"parent\":{}}],[\"metadata\",{\"_index\":89,\"name\":{\"95\":{},\"111\":{}},\"parent\":{}}],[\"metadatavalue\",{\"_index\":88,\"name\":{\"94\":{}},\"parent\":{}}],[\"missingfields\",{\"_index\":41,\"name\":{\"45\":{}},\"parent\":{}}],[\"modifieddate\",{\"_index\":97,\"name\":{\"103\":{}},\"parent\":{}}],[\"options\",{\"_index\":5,\"name\":{\"5\":{}},\"parent\":{}}],[\"parentid\",{\"_index\":99,\"name\":{\"105\":{}},\"parent\":{}}],[\"permanentid\",{\"_index\":98,\"name\":{\"104\":{}},\"parent\":{}}],[\"permissions\",{\"_index\":103,\"name\":{\"112\":{}},\"parent\":{}}],[\"platformclient\",{\"_index\":4,\"name\":{\"4\":{}},\"parent\":{}}],[\"platformenvironment\",{\"_index\":75,\"name\":{\"80\":{}},\"parent\":{\"81\":{},\"82\":{},\"83\":{},\"84\":{}}}],[\"platformurloptions\",{\"_index\":80,\"name\":{\"85\":{}},\"parent\":{\"86\":{}}}],[\"platformurloptions.__type\",{\"_index\":82,\"name\":{},\"parent\":{\"87\":{},\"88\":{}}}],[\"prod\",{\"_index\":79,\"name\":{\"84\":{}},\"parent\":{}}],[\"pushfilecontainercontent\",{\"_index\":29,\"name\":{\"29\":{}},\"parent\":{}}],[\"pushsource\",{\"_index\":1,\"name\":{\"1\":{}},\"parent\":{\"2\":{},\"3\":{},\"4\":{},\"5\":{},\"6\":{},\"7\":{},\"8\":{},\"9\":{},\"10\":{},\"11\":{},\"12\":{},\"13\":{},\"14\":{},\"15\":{},\"16\":{},\"17\":{},\"18\":{},\"19\":{},\"20\":{},\"21\":{},\"22\":{},\"23\":{},\"24\":{},\"25\":{},\"26\":{},\"27\":{},\"28\":{},\"29\":{}}}],[\"qa\",{\"_index\":77,\"name\":{\"82\":{}},\"parent\":{}}],[\"region\",{\"_index\":83,\"name\":{\"88\":{}},\"parent\":{}}],[\"removeinconsistentfields\",{\"_index\":45,\"name\":{\"49\":{}},\"parent\":{}}],[\"report\",{\"_index\":44,\"name\":{\"48\":{}},\"parent\":{}}],[\"res\",{\"_index\":36,\"name\":{\"37\":{}},\"parent\":{}}],[\"securityidentity\",{\"_index\":85,\"name\":{\"90\":{},\"122\":{}},\"parent\":{\"91\":{},\"92\":{},\"93\":{}}}],[\"securityidentitybuilder\",{\"_index\":108,\"name\":{\"118\":{}},\"parent\":{\"119\":{}}}],[\"securityidentitytype\",{\"_index\":84,\"name\":{\"89\":{}},\"parent\":{}}],[\"securityprovider\",{\"_index\":87,\"name\":{\"93\":{}},\"parent\":{}}],[\"setpermission\",{\"_index\":74,\"name\":{\"79\":{}},\"parent\":{}}],[\"setsourcestatus\",{\"_index\":18,\"name\":{\"18\":{}},\"parent\":{}}],[\"source\",{\"_index\":0,\"name\":{\"0\":{}},\"parent\":{}}],[\"storemetadata\",{\"_index\":46,\"name\":{\"50\":{}},\"parent\":{}}],[\"successfuluploadcallback\",{\"_index\":30,\"name\":{\"30\":{}},\"parent\":{\"31\":{}}}],[\"title\",{\"_index\":93,\"name\":{\"99\":{}},\"parent\":{}}],[\"uploadbatch\",{\"_index\":19,\"name\":{\"19\":{}},\"parent\":{}}],[\"uploadbatchcallbackdata\",{\"_index\":33,\"name\":{\"34\":{}},\"parent\":{\"35\":{},\"36\":{},\"37\":{}}}],[\"uploadcontenttofilecontainer\",{\"_index\":28,\"name\":{\"28\":{}},\"parent\":{}}],[\"uri\",{\"_index\":92,\"name\":{\"98\":{}},\"parent\":{}}],[\"usersecurityidentitybuilder\",{\"_index\":110,\"name\":{\"124\":{}},\"parent\":{\"125\":{},\"126\":{}}}],[\"validateandfillmissing\",{\"_index\":70,\"name\":{\"75\":{}},\"parent\":{}}],[\"validatecompressedbinarydata\",{\"_index\":73,\"name\":{\"78\":{}},\"parent\":{}}],[\"validatedateandreturnvaliddate\",{\"_index\":72,\"name\":{\"77\":{}},\"parent\":{}}],[\"virtualgroupsecurityidentitybuilder\",{\"_index\":112,\"name\":{\"130\":{}},\"parent\":{\"131\":{},\"132\":{}}}],[\"withallowanonymoususers\",{\"_index\":64,\"name\":{\"69\":{}},\"parent\":{}}],[\"withallowedpermissions\",{\"_index\":62,\"name\":{\"67\":{}},\"parent\":{}}],[\"withauthor\",{\"_index\":59,\"name\":{\"64\":{}},\"parent\":{}}],[\"withclickableuri\",{\"_index\":58,\"name\":{\"63\":{}},\"parent\":{}}],[\"withcompressedbinarydata\",{\"_index\":55,\"name\":{\"60\":{}},\"parent\":{}}],[\"withdata\",{\"_index\":51,\"name\":{\"56\":{}},\"parent\":{}}],[\"withdate\",{\"_index\":52,\"name\":{\"57\":{}},\"parent\":{}}],[\"withdeniedpermissions\",{\"_index\":63,\"name\":{\"68\":{}},\"parent\":{}}],[\"withfileextension\",{\"_index\":56,\"name\":{\"61\":{}},\"parent\":{}}],[\"withmetadata\",{\"_index\":61,\"name\":{\"66\":{}},\"parent\":{}}],[\"withmetadatavalue\",{\"_index\":60,\"name\":{\"65\":{}},\"parent\":{}}],[\"withmodifieddate\",{\"_index\":53,\"name\":{\"58\":{}},\"parent\":{}}],[\"withparentid\",{\"_index\":57,\"name\":{\"62\":{}},\"parent\":{}}],[\"withpermanentid\",{\"_index\":54,\"name\":{\"59\":{}},\"parent\":{}}]],\"pipeline\":[]}}");
|
1
|
+
window.searchData = JSON.parse("{\"kinds\":{\"8\":\"Enumeration\",\"16\":\"Enumeration member\",\"32\":\"Variable\",\"128\":\"Class\",\"256\":\"Interface\",\"512\":\"Constructor\",\"1024\":\"Property\",\"2048\":\"Method\",\"65536\":\"Type literal\",\"262144\":\"Accessor\",\"4194304\":\"Type alias\"},\"rows\":[{\"id\":0,\"kind\":32,\"name\":\"Source\",\"url\":\"modules.html#Source\",\"classes\":\"tsd-kind-variable\"},{\"id\":1,\"kind\":128,\"name\":\"PushSource\",\"url\":\"classes/PushSource.html\",\"classes\":\"tsd-kind-class\"},{\"id\":2,\"kind\":1024,\"name\":\"defaultOptions\",\"url\":\"classes/PushSource.html#defaultOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private tsd-is-static\",\"parent\":\"PushSource\"},{\"id\":3,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/PushSource.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"PushSource\"},{\"id\":4,\"kind\":1024,\"name\":\"platformClient\",\"url\":\"classes/PushSource.html#platformClient\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"PushSource\"},{\"id\":5,\"kind\":1024,\"name\":\"options\",\"url\":\"classes/PushSource.html#options\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"PushSource\"},{\"id\":6,\"kind\":2048,\"name\":\"create\",\"url\":\"classes/PushSource.html#create\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"PushSource\"},{\"id\":7,\"kind\":2048,\"name\":\"createSecurityIdentity\",\"url\":\"classes/PushSource.html#createSecurityIdentity\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"PushSource\"},{\"id\":8,\"kind\":2048,\"name\":\"createOrUpdateSecurityIdentityAlias\",\"url\":\"classes/PushSource.html#createOrUpdateSecurityIdentityAlias\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"PushSource\"},{\"id\":9,\"kind\":2048,\"name\":\"deleteSecurityIdentity\",\"url\":\"classes/PushSource.html#deleteSecurityIdentity\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"PushSource\"},{\"id\":10,\"kind\":2048,\"name\":\"deleteOldSecurityIdentities\",\"url\":\"classes/PushSource.html#deleteOldSecurityIdentities\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"PushSource\"},{\"id\":11,\"kind\":2048,\"name\":\"manageSecurityIdentities\",\"url\":\"classes/PushSource.html#manageSecurityIdentities\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"PushSource\"},{\"id\":12,\"kind\":262144,\"name\":\"identity\",\"url\":\"classes/PushSource.html#identity\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"PushSource\"},{\"id\":13,\"kind\":2048,\"name\":\"addOrUpdateDocument\",\"url\":\"classes/PushSource.html#addOrUpdateDocument\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"PushSource\"},{\"id\":14,\"kind\":2048,\"name\":\"batchUpdateDocuments\",\"url\":\"classes/PushSource.html#batchUpdateDocuments\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"PushSource\"},{\"id\":15,\"kind\":2048,\"name\":\"batchUpdateDocumentsFromFiles\",\"url\":\"classes/PushSource.html#batchUpdateDocumentsFromFiles\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"PushSource\"},{\"id\":16,\"kind\":2048,\"name\":\"deleteDocument\",\"url\":\"classes/PushSource.html#deleteDocument\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"PushSource\"},{\"id\":17,\"kind\":2048,\"name\":\"deleteDocumentsOlderThan\",\"url\":\"classes/PushSource.html#deleteDocumentsOlderThan\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"PushSource\"},{\"id\":18,\"kind\":2048,\"name\":\"setSourceStatus\",\"url\":\"classes/PushSource.html#setSourceStatus\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"PushSource\"},{\"id\":19,\"kind\":262144,\"name\":\"documentsAxiosConfig\",\"url\":\"classes/PushSource.html#documentsAxiosConfig\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-private\",\"parent\":\"PushSource\"},{\"id\":20,\"kind\":2048,\"name\":\"createFields\",\"url\":\"classes/PushSource.html#createFields\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"PushSource\"},{\"id\":21,\"kind\":2048,\"name\":\"urlBuilder\",\"url\":\"classes/PushSource.html#urlBuilder\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"PushSource\"},{\"id\":22,\"kind\":2048,\"name\":\"fileContainerStrategy\",\"url\":\"classes/PushSource.html#fileContainerStrategy\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"PushSource\"},{\"id\":23,\"kind\":4194304,\"name\":\"SuccessfulUploadCallback\",\"url\":\"modules.html#SuccessfulUploadCallback\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":24,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules.html#SuccessfulUploadCallback.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"SuccessfulUploadCallback\"},{\"id\":25,\"kind\":4194304,\"name\":\"FailedUploadCallback\",\"url\":\"modules.html#FailedUploadCallback\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":26,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules.html#FailedUploadCallback.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"FailedUploadCallback\"},{\"id\":27,\"kind\":256,\"name\":\"UploadBatchCallbackData\",\"url\":\"interfaces/UploadBatchCallbackData.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":28,\"kind\":1024,\"name\":\"files\",\"url\":\"interfaces/UploadBatchCallbackData.html#files\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"UploadBatchCallbackData\"},{\"id\":29,\"kind\":1024,\"name\":\"batch\",\"url\":\"interfaces/UploadBatchCallbackData.html#batch\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"UploadBatchCallbackData\"},{\"id\":30,\"kind\":1024,\"name\":\"res\",\"url\":\"interfaces/UploadBatchCallbackData.html#res\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"UploadBatchCallbackData\"},{\"id\":31,\"kind\":256,\"name\":\"BatchUpdateDocuments\",\"url\":\"interfaces/BatchUpdateDocuments.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":32,\"kind\":1024,\"name\":\"addOrUpdate\",\"url\":\"interfaces/BatchUpdateDocuments.html#addOrUpdate\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BatchUpdateDocuments\"},{\"id\":33,\"kind\":1024,\"name\":\"delete\",\"url\":\"interfaces/BatchUpdateDocuments.html#delete\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BatchUpdateDocuments\"},{\"id\":34,\"kind\":4194304,\"name\":\"BatchUpdateDocumentsFromFiles\",\"url\":\"modules.html#BatchUpdateDocumentsFromFiles\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":35,\"kind\":128,\"name\":\"FieldAnalyser\",\"url\":\"classes/FieldAnalyser.html\",\"classes\":\"tsd-kind-class\"},{\"id\":36,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/FieldAnalyser.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"FieldAnalyser\"},{\"id\":37,\"kind\":1024,\"name\":\"inconsistencies\",\"url\":\"classes/FieldAnalyser.html#inconsistencies\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"FieldAnalyser\"},{\"id\":38,\"kind\":1024,\"name\":\"missingFields\",\"url\":\"classes/FieldAnalyser.html#missingFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"FieldAnalyser\"},{\"id\":39,\"kind\":1024,\"name\":\"existingFields\",\"url\":\"classes/FieldAnalyser.html#existingFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"FieldAnalyser\"},{\"id\":40,\"kind\":2048,\"name\":\"add\",\"url\":\"classes/FieldAnalyser.html#add\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"FieldAnalyser\"},{\"id\":41,\"kind\":2048,\"name\":\"report\",\"url\":\"classes/FieldAnalyser.html#report\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"FieldAnalyser\"},{\"id\":42,\"kind\":2048,\"name\":\"removeInconsistentFields\",\"url\":\"classes/FieldAnalyser.html#removeInconsistentFields\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"FieldAnalyser\"},{\"id\":43,\"kind\":2048,\"name\":\"storeMetadata\",\"url\":\"classes/FieldAnalyser.html#storeMetadata\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"FieldAnalyser\"},{\"id\":44,\"kind\":2048,\"name\":\"ensureExistingFields\",\"url\":\"classes/FieldAnalyser.html#ensureExistingFields\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"FieldAnalyser\"},{\"id\":45,\"kind\":2048,\"name\":\"ensurePermanentId\",\"url\":\"classes/FieldAnalyser.html#ensurePermanentId\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"FieldAnalyser\"},{\"id\":46,\"kind\":128,\"name\":\"DocumentBuilder\",\"url\":\"classes/DocumentBuilder.html\",\"classes\":\"tsd-kind-class\"},{\"id\":47,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/DocumentBuilder.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"DocumentBuilder\"},{\"id\":48,\"kind\":1024,\"name\":\"doc\",\"url\":\"classes/DocumentBuilder.html#doc\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"DocumentBuilder\"},{\"id\":49,\"kind\":2048,\"name\":\"withData\",\"url\":\"classes/DocumentBuilder.html#withData\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DocumentBuilder\"},{\"id\":50,\"kind\":2048,\"name\":\"withDate\",\"url\":\"classes/DocumentBuilder.html#withDate\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DocumentBuilder\"},{\"id\":51,\"kind\":2048,\"name\":\"withModifiedDate\",\"url\":\"classes/DocumentBuilder.html#withModifiedDate\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DocumentBuilder\"},{\"id\":52,\"kind\":2048,\"name\":\"withPermanentId\",\"url\":\"classes/DocumentBuilder.html#withPermanentId\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DocumentBuilder\"},{\"id\":53,\"kind\":2048,\"name\":\"withCompressedBinaryData\",\"url\":\"classes/DocumentBuilder.html#withCompressedBinaryData\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DocumentBuilder\"},{\"id\":54,\"kind\":2048,\"name\":\"withFileExtension\",\"url\":\"classes/DocumentBuilder.html#withFileExtension\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DocumentBuilder\"},{\"id\":55,\"kind\":2048,\"name\":\"withParentID\",\"url\":\"classes/DocumentBuilder.html#withParentID\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DocumentBuilder\"},{\"id\":56,\"kind\":2048,\"name\":\"withClickableUri\",\"url\":\"classes/DocumentBuilder.html#withClickableUri\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DocumentBuilder\"},{\"id\":57,\"kind\":2048,\"name\":\"withAuthor\",\"url\":\"classes/DocumentBuilder.html#withAuthor\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DocumentBuilder\"},{\"id\":58,\"kind\":2048,\"name\":\"withMetadataValue\",\"url\":\"classes/DocumentBuilder.html#withMetadataValue\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DocumentBuilder\"},{\"id\":59,\"kind\":2048,\"name\":\"withMetadata\",\"url\":\"classes/DocumentBuilder.html#withMetadata\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DocumentBuilder\"},{\"id\":60,\"kind\":2048,\"name\":\"withAllowedPermissions\",\"url\":\"classes/DocumentBuilder.html#withAllowedPermissions\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DocumentBuilder\"},{\"id\":61,\"kind\":2048,\"name\":\"withDeniedPermissions\",\"url\":\"classes/DocumentBuilder.html#withDeniedPermissions\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DocumentBuilder\"},{\"id\":62,\"kind\":2048,\"name\":\"withAllowAnonymousUsers\",\"url\":\"classes/DocumentBuilder.html#withAllowAnonymousUsers\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DocumentBuilder\"},{\"id\":63,\"kind\":2048,\"name\":\"build\",\"url\":\"classes/DocumentBuilder.html#build\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DocumentBuilder\"},{\"id\":64,\"kind\":2048,\"name\":\"marshal\",\"url\":\"classes/DocumentBuilder.html#marshal\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DocumentBuilder\"},{\"id\":65,\"kind\":2048,\"name\":\"marshalMetadata\",\"url\":\"classes/DocumentBuilder.html#marshalMetadata\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"DocumentBuilder\"},{\"id\":66,\"kind\":2048,\"name\":\"marshalCompressedBinaryData\",\"url\":\"classes/DocumentBuilder.html#marshalCompressedBinaryData\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"DocumentBuilder\"},{\"id\":67,\"kind\":2048,\"name\":\"marshalPermissions\",\"url\":\"classes/DocumentBuilder.html#marshalPermissions\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"DocumentBuilder\"},{\"id\":68,\"kind\":2048,\"name\":\"validateAndFillMissing\",\"url\":\"classes/DocumentBuilder.html#validateAndFillMissing\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"DocumentBuilder\"},{\"id\":69,\"kind\":2048,\"name\":\"generatePermanentId\",\"url\":\"classes/DocumentBuilder.html#generatePermanentId\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"DocumentBuilder\"},{\"id\":70,\"kind\":2048,\"name\":\"validateDateAndReturnValidDate\",\"url\":\"classes/DocumentBuilder.html#validateDateAndReturnValidDate\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"DocumentBuilder\"},{\"id\":71,\"kind\":2048,\"name\":\"validateCompressedBinaryData\",\"url\":\"classes/DocumentBuilder.html#validateCompressedBinaryData\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"DocumentBuilder\"},{\"id\":72,\"kind\":2048,\"name\":\"setPermission\",\"url\":\"classes/DocumentBuilder.html#setPermission\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"DocumentBuilder\"},{\"id\":73,\"kind\":8,\"name\":\"PlatformEnvironment\",\"url\":\"enums/PlatformEnvironment.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":74,\"kind\":16,\"name\":\"Dev\",\"url\":\"enums/PlatformEnvironment.html#Dev\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"PlatformEnvironment\"},{\"id\":75,\"kind\":16,\"name\":\"QA\",\"url\":\"enums/PlatformEnvironment.html#QA\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"PlatformEnvironment\"},{\"id\":76,\"kind\":16,\"name\":\"Hipaa\",\"url\":\"enums/PlatformEnvironment.html#Hipaa\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"PlatformEnvironment\"},{\"id\":77,\"kind\":16,\"name\":\"Prod\",\"url\":\"enums/PlatformEnvironment.html#Prod\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"PlatformEnvironment\"},{\"id\":78,\"kind\":4194304,\"name\":\"PlatformUrlOptions\",\"url\":\"modules.html#PlatformUrlOptions\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":79,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules.html#PlatformUrlOptions.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"PlatformUrlOptions\"},{\"id\":80,\"kind\":1024,\"name\":\"environment\",\"url\":\"modules.html#PlatformUrlOptions.__type.environment\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PlatformUrlOptions.__type\"},{\"id\":81,\"kind\":1024,\"name\":\"region\",\"url\":\"modules.html#PlatformUrlOptions.__type.region\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PlatformUrlOptions.__type\"},{\"id\":82,\"kind\":4194304,\"name\":\"SecurityIdentityType\",\"url\":\"modules.html#SecurityIdentityType\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":83,\"kind\":256,\"name\":\"SecurityIdentity\",\"url\":\"interfaces/SecurityIdentity.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":84,\"kind\":1024,\"name\":\"identity\",\"url\":\"interfaces/SecurityIdentity.html#identity\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"SecurityIdentity\"},{\"id\":85,\"kind\":1024,\"name\":\"identityType\",\"url\":\"interfaces/SecurityIdentity.html#identityType\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"SecurityIdentity\"},{\"id\":86,\"kind\":1024,\"name\":\"securityProvider\",\"url\":\"interfaces/SecurityIdentity.html#securityProvider\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"SecurityIdentity\"},{\"id\":87,\"kind\":4194304,\"name\":\"MetadataValue\",\"url\":\"modules.html#MetadataValue\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":88,\"kind\":4194304,\"name\":\"Metadata\",\"url\":\"modules.html#Metadata\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":89,\"kind\":4194304,\"name\":\"CompressionType\",\"url\":\"modules.html#CompressionType\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":90,\"kind\":256,\"name\":\"Document\",\"url\":\"interfaces/Document.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":91,\"kind\":1024,\"name\":\"uri\",\"url\":\"interfaces/Document.html#uri\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Document\"},{\"id\":92,\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/Document.html#title\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Document\"},{\"id\":93,\"kind\":1024,\"name\":\"clickableUri\",\"url\":\"interfaces/Document.html#clickableUri\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Document\"},{\"id\":94,\"kind\":1024,\"name\":\"author\",\"url\":\"interfaces/Document.html#author\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Document\"},{\"id\":95,\"kind\":1024,\"name\":\"date\",\"url\":\"interfaces/Document.html#date\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Document\"},{\"id\":96,\"kind\":1024,\"name\":\"modifiedDate\",\"url\":\"interfaces/Document.html#modifiedDate\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Document\"},{\"id\":97,\"kind\":1024,\"name\":\"permanentId\",\"url\":\"interfaces/Document.html#permanentId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Document\"},{\"id\":98,\"kind\":1024,\"name\":\"parentId\",\"url\":\"interfaces/Document.html#parentId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Document\"},{\"id\":99,\"kind\":1024,\"name\":\"data\",\"url\":\"interfaces/Document.html#data-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Document\"},{\"id\":100,\"kind\":1024,\"name\":\"compressedBinaryData\",\"url\":\"interfaces/Document.html#compressedBinaryData\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Document\"},{\"id\":101,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Document.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"Document\"},{\"id\":102,\"kind\":1024,\"name\":\"compressionType\",\"url\":\"interfaces/Document.html#__type.compressionType\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Document.__type\"},{\"id\":103,\"kind\":1024,\"name\":\"data\",\"url\":\"interfaces/Document.html#__type.data\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Document.__type\"},{\"id\":104,\"kind\":1024,\"name\":\"metadata\",\"url\":\"interfaces/Document.html#metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Document\"},{\"id\":105,\"kind\":1024,\"name\":\"permissions\",\"url\":\"interfaces/Document.html#permissions\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Document\"},{\"id\":106,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Document.html#__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"Document\"},{\"id\":107,\"kind\":1024,\"name\":\"allowAnonymous\",\"url\":\"interfaces/Document.html#__type-1.allowAnonymous\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Document.__type\"},{\"id\":108,\"kind\":1024,\"name\":\"allowedPermissions\",\"url\":\"interfaces/Document.html#__type-1.allowedPermissions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Document.__type\"},{\"id\":109,\"kind\":1024,\"name\":\"deniedPermissions\",\"url\":\"interfaces/Document.html#__type-1.deniedPermissions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Document.__type\"},{\"id\":110,\"kind\":1024,\"name\":\"fileExtension\",\"url\":\"interfaces/Document.html#fileExtension\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Document\"},{\"id\":111,\"kind\":256,\"name\":\"SecurityIdentityBuilder\",\"url\":\"interfaces/SecurityIdentityBuilder.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":112,\"kind\":2048,\"name\":\"build\",\"url\":\"interfaces/SecurityIdentityBuilder.html#build\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"SecurityIdentityBuilder\"},{\"id\":113,\"kind\":128,\"name\":\"AnySecurityIdentityBuilder\",\"url\":\"classes/AnySecurityIdentityBuilder.html\",\"classes\":\"tsd-kind-class\"},{\"id\":114,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/AnySecurityIdentityBuilder.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"AnySecurityIdentityBuilder\"},{\"id\":115,\"kind\":1024,\"name\":\"securityIdentity\",\"url\":\"classes/AnySecurityIdentityBuilder.html#securityIdentity\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"AnySecurityIdentityBuilder\"},{\"id\":116,\"kind\":2048,\"name\":\"build\",\"url\":\"classes/AnySecurityIdentityBuilder.html#build\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"AnySecurityIdentityBuilder\"},{\"id\":117,\"kind\":128,\"name\":\"UserSecurityIdentityBuilder\",\"url\":\"classes/UserSecurityIdentityBuilder.html\",\"classes\":\"tsd-kind-class\"},{\"id\":118,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/UserSecurityIdentityBuilder.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"UserSecurityIdentityBuilder\"},{\"id\":119,\"kind\":2048,\"name\":\"build\",\"url\":\"classes/UserSecurityIdentityBuilder.html#build\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"UserSecurityIdentityBuilder\"},{\"id\":120,\"kind\":128,\"name\":\"GroupSecurityIdentityBuilder\",\"url\":\"classes/GroupSecurityIdentityBuilder.html\",\"classes\":\"tsd-kind-class\"},{\"id\":121,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/GroupSecurityIdentityBuilder.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"GroupSecurityIdentityBuilder\"},{\"id\":122,\"kind\":2048,\"name\":\"build\",\"url\":\"classes/GroupSecurityIdentityBuilder.html#build\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"GroupSecurityIdentityBuilder\"},{\"id\":123,\"kind\":128,\"name\":\"VirtualGroupSecurityIdentityBuilder\",\"url\":\"classes/VirtualGroupSecurityIdentityBuilder.html\",\"classes\":\"tsd-kind-class\"},{\"id\":124,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/VirtualGroupSecurityIdentityBuilder.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"VirtualGroupSecurityIdentityBuilder\"},{\"id\":125,\"kind\":2048,\"name\":\"build\",\"url\":\"classes/VirtualGroupSecurityIdentityBuilder.html#build\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"VirtualGroupSecurityIdentityBuilder\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"parent\"],\"fieldVectors\":[[\"name/0\",[0,44.387]],[\"parent/0\",[]],[\"name/1\",[1,17.307]],[\"parent/1\",[]],[\"name/2\",[2,44.387]],[\"parent/2\",[1,1.593]],[\"name/3\",[3,28.293]],[\"parent/3\",[1,1.593]],[\"name/4\",[4,44.387]],[\"parent/4\",[1,1.593]],[\"name/5\",[5,44.387]],[\"parent/5\",[1,1.593]],[\"name/6\",[6,44.387]],[\"parent/6\",[1,1.593]],[\"name/7\",[7,44.387]],[\"parent/7\",[1,1.593]],[\"name/8\",[8,44.387]],[\"parent/8\",[1,1.593]],[\"name/9\",[9,44.387]],[\"parent/9\",[1,1.593]],[\"name/10\",[10,44.387]],[\"parent/10\",[1,1.593]],[\"name/11\",[11,44.387]],[\"parent/11\",[1,1.593]],[\"name/12\",[12,39.279]],[\"parent/12\",[1,1.593]],[\"name/13\",[13,44.387]],[\"parent/13\",[1,1.593]],[\"name/14\",[14,33.401]],[\"parent/14\",[1,1.593]],[\"name/15\",[15,39.279]],[\"parent/15\",[1,1.593]],[\"name/16\",[16,44.387]],[\"parent/16\",[1,1.593]],[\"name/17\",[17,44.387]],[\"parent/17\",[1,1.593]],[\"name/18\",[18,44.387]],[\"parent/18\",[1,1.593]],[\"name/19\",[19,44.387]],[\"parent/19\",[1,1.593]],[\"name/20\",[20,44.387]],[\"parent/20\",[1,1.593]],[\"name/21\",[21,44.387]],[\"parent/21\",[1,1.593]],[\"name/22\",[22,44.387]],[\"parent/22\",[1,1.593]],[\"name/23\",[23,39.279]],[\"parent/23\",[]],[\"name/24\",[24,31.394]],[\"parent/24\",[23,3.615]],[\"name/25\",[25,39.279]],[\"parent/25\",[]],[\"name/26\",[24,31.394]],[\"parent/26\",[25,3.615]],[\"name/27\",[26,33.401]],[\"parent/27\",[]],[\"name/28\",[27,44.387]],[\"parent/28\",[26,3.074]],[\"name/29\",[28,44.387]],[\"parent/29\",[26,3.074]],[\"name/30\",[29,44.387]],[\"parent/30\",[26,3.074]],[\"name/31\",[14,33.401]],[\"parent/31\",[]],[\"name/32\",[30,44.387]],[\"parent/32\",[14,3.074]],[\"name/33\",[31,44.387]],[\"parent/33\",[14,3.074]],[\"name/34\",[15,39.279]],[\"parent/34\",[]],[\"name/35\",[32,24.018]],[\"parent/35\",[]],[\"name/36\",[3,28.293]],[\"parent/36\",[32,2.211]],[\"name/37\",[33,44.387]],[\"parent/37\",[32,2.211]],[\"name/38\",[34,44.387]],[\"parent/38\",[32,2.211]],[\"name/39\",[35,44.387]],[\"parent/39\",[32,2.211]],[\"name/40\",[36,44.387]],[\"parent/40\",[32,2.211]],[\"name/41\",[37,44.387]],[\"parent/41\",[32,2.211]],[\"name/42\",[38,44.387]],[\"parent/42\",[32,2.211]],[\"name/43\",[39,44.387]],[\"parent/43\",[32,2.211]],[\"name/44\",[40,44.387]],[\"parent/44\",[32,2.211]],[\"name/45\",[41,44.387]],[\"parent/45\",[32,2.211]],[\"name/46\",[42,15.3]],[\"parent/46\",[]],[\"name/47\",[3,28.293]],[\"parent/47\",[42,1.408]],[\"name/48\",[43,44.387]],[\"parent/48\",[42,1.408]],[\"name/49\",[44,44.387]],[\"parent/49\",[42,1.408]],[\"name/50\",[45,44.387]],[\"parent/50\",[42,1.408]],[\"name/51\",[46,44.387]],[\"parent/51\",[42,1.408]],[\"name/52\",[47,44.387]],[\"parent/52\",[42,1.408]],[\"name/53\",[48,44.387]],[\"parent/53\",[42,1.408]],[\"name/54\",[49,44.387]],[\"parent/54\",[42,1.408]],[\"name/55\",[50,44.387]],[\"parent/55\",[42,1.408]],[\"name/56\",[51,44.387]],[\"parent/56\",[42,1.408]],[\"name/57\",[52,44.387]],[\"parent/57\",[42,1.408]],[\"name/58\",[53,44.387]],[\"parent/58\",[42,1.408]],[\"name/59\",[54,44.387]],[\"parent/59\",[42,1.408]],[\"name/60\",[55,44.387]],[\"parent/60\",[42,1.408]],[\"name/61\",[56,44.387]],[\"parent/61\",[42,1.408]],[\"name/62\",[57,44.387]],[\"parent/62\",[42,1.408]],[\"name/63\",[58,29.724]],[\"parent/63\",[42,1.408]],[\"name/64\",[59,44.387]],[\"parent/64\",[42,1.408]],[\"name/65\",[60,44.387]],[\"parent/65\",[42,1.408]],[\"name/66\",[61,44.387]],[\"parent/66\",[42,1.408]],[\"name/67\",[62,44.387]],[\"parent/67\",[42,1.408]],[\"name/68\",[63,44.387]],[\"parent/68\",[42,1.408]],[\"name/69\",[64,44.387]],[\"parent/69\",[42,1.408]],[\"name/70\",[65,44.387]],[\"parent/70\",[42,1.408]],[\"name/71\",[66,44.387]],[\"parent/71\",[42,1.408]],[\"name/72\",[67,44.387]],[\"parent/72\",[42,1.408]],[\"name/73\",[68,31.394]],[\"parent/73\",[]],[\"name/74\",[69,44.387]],[\"parent/74\",[68,2.889]],[\"name/75\",[70,44.387]],[\"parent/75\",[68,2.889]],[\"name/76\",[71,44.387]],[\"parent/76\",[68,2.889]],[\"name/77\",[72,44.387]],[\"parent/77\",[68,2.889]],[\"name/78\",[73,39.279]],[\"parent/78\",[]],[\"name/79\",[24,31.394]],[\"parent/79\",[73,3.615]],[\"name/80\",[74,44.387]],[\"parent/80\",[75,3.615]],[\"name/81\",[76,44.387]],[\"parent/81\",[75,3.615]],[\"name/82\",[77,44.387]],[\"parent/82\",[]],[\"name/83\",[78,31.394]],[\"parent/83\",[]],[\"name/84\",[12,39.279]],[\"parent/84\",[78,2.889]],[\"name/85\",[79,44.387]],[\"parent/85\",[78,2.889]],[\"name/86\",[80,44.387]],[\"parent/86\",[78,2.889]],[\"name/87\",[81,44.387]],[\"parent/87\",[]],[\"name/88\",[82,39.279]],[\"parent/88\",[]],[\"name/89\",[83,39.279]],[\"parent/89\",[]],[\"name/90\",[84,20.408]],[\"parent/90\",[]],[\"name/91\",[85,44.387]],[\"parent/91\",[84,1.878]],[\"name/92\",[86,44.387]],[\"parent/92\",[84,1.878]],[\"name/93\",[87,44.387]],[\"parent/93\",[84,1.878]],[\"name/94\",[88,44.387]],[\"parent/94\",[84,1.878]],[\"name/95\",[89,44.387]],[\"parent/95\",[84,1.878]],[\"name/96\",[90,44.387]],[\"parent/96\",[84,1.878]],[\"name/97\",[91,44.387]],[\"parent/97\",[84,1.878]],[\"name/98\",[92,44.387]],[\"parent/98\",[84,1.878]],[\"name/99\",[93,39.279]],[\"parent/99\",[84,1.878]],[\"name/100\",[94,44.387]],[\"parent/100\",[84,1.878]],[\"name/101\",[24,31.394]],[\"parent/101\",[84,1.878]],[\"name/102\",[83,39.279]],[\"parent/102\",[95,2.889]],[\"name/103\",[93,39.279]],[\"parent/103\",[95,2.889]],[\"name/104\",[82,39.279]],[\"parent/104\",[84,1.878]],[\"name/105\",[96,44.387]],[\"parent/105\",[84,1.878]],[\"name/106\",[24,31.394]],[\"parent/106\",[84,1.878]],[\"name/107\",[97,44.387]],[\"parent/107\",[95,2.889]],[\"name/108\",[98,44.387]],[\"parent/108\",[95,2.889]],[\"name/109\",[99,44.387]],[\"parent/109\",[95,2.889]],[\"name/110\",[100,44.387]],[\"parent/110\",[84,1.878]],[\"name/111\",[101,39.279]],[\"parent/111\",[]],[\"name/112\",[58,29.724]],[\"parent/112\",[101,3.615]],[\"name/113\",[102,33.401]],[\"parent/113\",[]],[\"name/114\",[3,28.293]],[\"parent/114\",[102,3.074]],[\"name/115\",[78,31.394]],[\"parent/115\",[102,3.074]],[\"name/116\",[58,29.724]],[\"parent/116\",[102,3.074]],[\"name/117\",[103,35.914]],[\"parent/117\",[]],[\"name/118\",[3,28.293]],[\"parent/118\",[103,3.305]],[\"name/119\",[58,29.724]],[\"parent/119\",[103,3.305]],[\"name/120\",[104,35.914]],[\"parent/120\",[]],[\"name/121\",[3,28.293]],[\"parent/121\",[104,3.305]],[\"name/122\",[58,29.724]],[\"parent/122\",[104,3.305]],[\"name/123\",[105,35.914]],[\"parent/123\",[]],[\"name/124\",[3,28.293]],[\"parent/124\",[105,3.305]],[\"name/125\",[58,29.724]],[\"parent/125\",[105,3.305]]],\"invertedIndex\":[[\"__type\",{\"_index\":24,\"name\":{\"24\":{},\"26\":{},\"79\":{},\"101\":{},\"106\":{}},\"parent\":{}}],[\"add\",{\"_index\":36,\"name\":{\"40\":{}},\"parent\":{}}],[\"addorupdate\",{\"_index\":30,\"name\":{\"32\":{}},\"parent\":{}}],[\"addorupdatedocument\",{\"_index\":13,\"name\":{\"13\":{}},\"parent\":{}}],[\"allowanonymous\",{\"_index\":97,\"name\":{\"107\":{}},\"parent\":{}}],[\"allowedpermissions\",{\"_index\":98,\"name\":{\"108\":{}},\"parent\":{}}],[\"anysecurityidentitybuilder\",{\"_index\":102,\"name\":{\"113\":{}},\"parent\":{\"114\":{},\"115\":{},\"116\":{}}}],[\"author\",{\"_index\":88,\"name\":{\"94\":{}},\"parent\":{}}],[\"batch\",{\"_index\":28,\"name\":{\"29\":{}},\"parent\":{}}],[\"batchupdatedocuments\",{\"_index\":14,\"name\":{\"14\":{},\"31\":{}},\"parent\":{\"32\":{},\"33\":{}}}],[\"batchupdatedocumentsfromfiles\",{\"_index\":15,\"name\":{\"15\":{},\"34\":{}},\"parent\":{}}],[\"build\",{\"_index\":58,\"name\":{\"63\":{},\"112\":{},\"116\":{},\"119\":{},\"122\":{},\"125\":{}},\"parent\":{}}],[\"clickableuri\",{\"_index\":87,\"name\":{\"93\":{}},\"parent\":{}}],[\"compressedbinarydata\",{\"_index\":94,\"name\":{\"100\":{}},\"parent\":{}}],[\"compressiontype\",{\"_index\":83,\"name\":{\"89\":{},\"102\":{}},\"parent\":{}}],[\"constructor\",{\"_index\":3,\"name\":{\"3\":{},\"36\":{},\"47\":{},\"114\":{},\"118\":{},\"121\":{},\"124\":{}},\"parent\":{}}],[\"create\",{\"_index\":6,\"name\":{\"6\":{}},\"parent\":{}}],[\"createfields\",{\"_index\":20,\"name\":{\"20\":{}},\"parent\":{}}],[\"createorupdatesecurityidentityalias\",{\"_index\":8,\"name\":{\"8\":{}},\"parent\":{}}],[\"createsecurityidentity\",{\"_index\":7,\"name\":{\"7\":{}},\"parent\":{}}],[\"data\",{\"_index\":93,\"name\":{\"99\":{},\"103\":{}},\"parent\":{}}],[\"date\",{\"_index\":89,\"name\":{\"95\":{}},\"parent\":{}}],[\"defaultoptions\",{\"_index\":2,\"name\":{\"2\":{}},\"parent\":{}}],[\"delete\",{\"_index\":31,\"name\":{\"33\":{}},\"parent\":{}}],[\"deletedocument\",{\"_index\":16,\"name\":{\"16\":{}},\"parent\":{}}],[\"deletedocumentsolderthan\",{\"_index\":17,\"name\":{\"17\":{}},\"parent\":{}}],[\"deleteoldsecurityidentities\",{\"_index\":10,\"name\":{\"10\":{}},\"parent\":{}}],[\"deletesecurityidentity\",{\"_index\":9,\"name\":{\"9\":{}},\"parent\":{}}],[\"deniedpermissions\",{\"_index\":99,\"name\":{\"109\":{}},\"parent\":{}}],[\"dev\",{\"_index\":69,\"name\":{\"74\":{}},\"parent\":{}}],[\"doc\",{\"_index\":43,\"name\":{\"48\":{}},\"parent\":{}}],[\"document\",{\"_index\":84,\"name\":{\"90\":{}},\"parent\":{\"91\":{},\"92\":{},\"93\":{},\"94\":{},\"95\":{},\"96\":{},\"97\":{},\"98\":{},\"99\":{},\"100\":{},\"101\":{},\"104\":{},\"105\":{},\"106\":{},\"110\":{}}}],[\"document.__type\",{\"_index\":95,\"name\":{},\"parent\":{\"102\":{},\"103\":{},\"107\":{},\"108\":{},\"109\":{}}}],[\"documentbuilder\",{\"_index\":42,\"name\":{\"46\":{}},\"parent\":{\"47\":{},\"48\":{},\"49\":{},\"50\":{},\"51\":{},\"52\":{},\"53\":{},\"54\":{},\"55\":{},\"56\":{},\"57\":{},\"58\":{},\"59\":{},\"60\":{},\"61\":{},\"62\":{},\"63\":{},\"64\":{},\"65\":{},\"66\":{},\"67\":{},\"68\":{},\"69\":{},\"70\":{},\"71\":{},\"72\":{}}}],[\"documentsaxiosconfig\",{\"_index\":19,\"name\":{\"19\":{}},\"parent\":{}}],[\"ensureexistingfields\",{\"_index\":40,\"name\":{\"44\":{}},\"parent\":{}}],[\"ensurepermanentid\",{\"_index\":41,\"name\":{\"45\":{}},\"parent\":{}}],[\"environment\",{\"_index\":74,\"name\":{\"80\":{}},\"parent\":{}}],[\"existingfields\",{\"_index\":35,\"name\":{\"39\":{}},\"parent\":{}}],[\"faileduploadcallback\",{\"_index\":25,\"name\":{\"25\":{}},\"parent\":{\"26\":{}}}],[\"fieldanalyser\",{\"_index\":32,\"name\":{\"35\":{}},\"parent\":{\"36\":{},\"37\":{},\"38\":{},\"39\":{},\"40\":{},\"41\":{},\"42\":{},\"43\":{},\"44\":{},\"45\":{}}}],[\"filecontainerstrategy\",{\"_index\":22,\"name\":{\"22\":{}},\"parent\":{}}],[\"fileextension\",{\"_index\":100,\"name\":{\"110\":{}},\"parent\":{}}],[\"files\",{\"_index\":27,\"name\":{\"28\":{}},\"parent\":{}}],[\"generatepermanentid\",{\"_index\":64,\"name\":{\"69\":{}},\"parent\":{}}],[\"groupsecurityidentitybuilder\",{\"_index\":104,\"name\":{\"120\":{}},\"parent\":{\"121\":{},\"122\":{}}}],[\"hipaa\",{\"_index\":71,\"name\":{\"76\":{}},\"parent\":{}}],[\"identity\",{\"_index\":12,\"name\":{\"12\":{},\"84\":{}},\"parent\":{}}],[\"identitytype\",{\"_index\":79,\"name\":{\"85\":{}},\"parent\":{}}],[\"inconsistencies\",{\"_index\":33,\"name\":{\"37\":{}},\"parent\":{}}],[\"managesecurityidentities\",{\"_index\":11,\"name\":{\"11\":{}},\"parent\":{}}],[\"marshal\",{\"_index\":59,\"name\":{\"64\":{}},\"parent\":{}}],[\"marshalcompressedbinarydata\",{\"_index\":61,\"name\":{\"66\":{}},\"parent\":{}}],[\"marshalmetadata\",{\"_index\":60,\"name\":{\"65\":{}},\"parent\":{}}],[\"marshalpermissions\",{\"_index\":62,\"name\":{\"67\":{}},\"parent\":{}}],[\"metadata\",{\"_index\":82,\"name\":{\"88\":{},\"104\":{}},\"parent\":{}}],[\"metadatavalue\",{\"_index\":81,\"name\":{\"87\":{}},\"parent\":{}}],[\"missingfields\",{\"_index\":34,\"name\":{\"38\":{}},\"parent\":{}}],[\"modifieddate\",{\"_index\":90,\"name\":{\"96\":{}},\"parent\":{}}],[\"options\",{\"_index\":5,\"name\":{\"5\":{}},\"parent\":{}}],[\"parentid\",{\"_index\":92,\"name\":{\"98\":{}},\"parent\":{}}],[\"permanentid\",{\"_index\":91,\"name\":{\"97\":{}},\"parent\":{}}],[\"permissions\",{\"_index\":96,\"name\":{\"105\":{}},\"parent\":{}}],[\"platformclient\",{\"_index\":4,\"name\":{\"4\":{}},\"parent\":{}}],[\"platformenvironment\",{\"_index\":68,\"name\":{\"73\":{}},\"parent\":{\"74\":{},\"75\":{},\"76\":{},\"77\":{}}}],[\"platformurloptions\",{\"_index\":73,\"name\":{\"78\":{}},\"parent\":{\"79\":{}}}],[\"platformurloptions.__type\",{\"_index\":75,\"name\":{},\"parent\":{\"80\":{},\"81\":{}}}],[\"prod\",{\"_index\":72,\"name\":{\"77\":{}},\"parent\":{}}],[\"pushsource\",{\"_index\":1,\"name\":{\"1\":{}},\"parent\":{\"2\":{},\"3\":{},\"4\":{},\"5\":{},\"6\":{},\"7\":{},\"8\":{},\"9\":{},\"10\":{},\"11\":{},\"12\":{},\"13\":{},\"14\":{},\"15\":{},\"16\":{},\"17\":{},\"18\":{},\"19\":{},\"20\":{},\"21\":{},\"22\":{}}}],[\"qa\",{\"_index\":70,\"name\":{\"75\":{}},\"parent\":{}}],[\"region\",{\"_index\":76,\"name\":{\"81\":{}},\"parent\":{}}],[\"removeinconsistentfields\",{\"_index\":38,\"name\":{\"42\":{}},\"parent\":{}}],[\"report\",{\"_index\":37,\"name\":{\"41\":{}},\"parent\":{}}],[\"res\",{\"_index\":29,\"name\":{\"30\":{}},\"parent\":{}}],[\"securityidentity\",{\"_index\":78,\"name\":{\"83\":{},\"115\":{}},\"parent\":{\"84\":{},\"85\":{},\"86\":{}}}],[\"securityidentitybuilder\",{\"_index\":101,\"name\":{\"111\":{}},\"parent\":{\"112\":{}}}],[\"securityidentitytype\",{\"_index\":77,\"name\":{\"82\":{}},\"parent\":{}}],[\"securityprovider\",{\"_index\":80,\"name\":{\"86\":{}},\"parent\":{}}],[\"setpermission\",{\"_index\":67,\"name\":{\"72\":{}},\"parent\":{}}],[\"setsourcestatus\",{\"_index\":18,\"name\":{\"18\":{}},\"parent\":{}}],[\"source\",{\"_index\":0,\"name\":{\"0\":{}},\"parent\":{}}],[\"storemetadata\",{\"_index\":39,\"name\":{\"43\":{}},\"parent\":{}}],[\"successfuluploadcallback\",{\"_index\":23,\"name\":{\"23\":{}},\"parent\":{\"24\":{}}}],[\"title\",{\"_index\":86,\"name\":{\"92\":{}},\"parent\":{}}],[\"uploadbatchcallbackdata\",{\"_index\":26,\"name\":{\"27\":{}},\"parent\":{\"28\":{},\"29\":{},\"30\":{}}}],[\"uri\",{\"_index\":85,\"name\":{\"91\":{}},\"parent\":{}}],[\"urlbuilder\",{\"_index\":21,\"name\":{\"21\":{}},\"parent\":{}}],[\"usersecurityidentitybuilder\",{\"_index\":103,\"name\":{\"117\":{}},\"parent\":{\"118\":{},\"119\":{}}}],[\"validateandfillmissing\",{\"_index\":63,\"name\":{\"68\":{}},\"parent\":{}}],[\"validatecompressedbinarydata\",{\"_index\":66,\"name\":{\"71\":{}},\"parent\":{}}],[\"validatedateandreturnvaliddate\",{\"_index\":65,\"name\":{\"70\":{}},\"parent\":{}}],[\"virtualgroupsecurityidentitybuilder\",{\"_index\":105,\"name\":{\"123\":{}},\"parent\":{\"124\":{},\"125\":{}}}],[\"withallowanonymoususers\",{\"_index\":57,\"name\":{\"62\":{}},\"parent\":{}}],[\"withallowedpermissions\",{\"_index\":55,\"name\":{\"60\":{}},\"parent\":{}}],[\"withauthor\",{\"_index\":52,\"name\":{\"57\":{}},\"parent\":{}}],[\"withclickableuri\",{\"_index\":51,\"name\":{\"56\":{}},\"parent\":{}}],[\"withcompressedbinarydata\",{\"_index\":48,\"name\":{\"53\":{}},\"parent\":{}}],[\"withdata\",{\"_index\":44,\"name\":{\"49\":{}},\"parent\":{}}],[\"withdate\",{\"_index\":45,\"name\":{\"50\":{}},\"parent\":{}}],[\"withdeniedpermissions\",{\"_index\":56,\"name\":{\"61\":{}},\"parent\":{}}],[\"withfileextension\",{\"_index\":49,\"name\":{\"54\":{}},\"parent\":{}}],[\"withmetadata\",{\"_index\":54,\"name\":{\"59\":{}},\"parent\":{}}],[\"withmetadatavalue\",{\"_index\":53,\"name\":{\"58\":{}},\"parent\":{}}],[\"withmodifieddate\",{\"_index\":46,\"name\":{\"51\":{}},\"parent\":{}}],[\"withparentid\",{\"_index\":50,\"name\":{\"55\":{}},\"parent\":{}}],[\"withpermanentid\",{\"_index\":47,\"name\":{\"52\":{}},\"parent\":{}}]],\"pipeline\":[]}}");
|