@api-client/core 0.8.22 → 0.9.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/build/browser.d.ts +12 -5
- package/build/browser.js +2 -3
- package/build/browser.js.map +1 -1
- package/build/index.d.ts +12 -5
- package/build/index.js +2 -4
- package/build/index.js.map +1 -1
- package/build/src/events/BaseEvents.d.ts +125 -18
- package/build/src/events/BaseEvents.js.map +1 -1
- package/build/src/events/EventTypes.d.ts +0 -14
- package/build/src/events/EventTypes.js +0 -2
- package/build/src/events/EventTypes.js.map +1 -1
- package/build/src/events/Events.d.ts +1 -5
- package/build/src/events/Events.js +0 -2
- package/build/src/events/Events.js.map +1 -1
- package/build/src/events/transport/TransportEventTypes.d.ts +0 -1
- package/build/src/events/transport/TransportEventTypes.js +0 -1
- package/build/src/events/transport/TransportEventTypes.js.map +1 -1
- package/build/src/events/transport/TransportEvents.d.ts +0 -8
- package/build/src/events/transport/TransportEvents.js +0 -11
- package/build/src/events/transport/TransportEvents.js.map +1 -1
- package/build/src/mocking/ProjectMock.d.ts +0 -3
- package/build/src/mocking/ProjectMock.js +0 -3
- package/build/src/mocking/ProjectMock.js.map +1 -1
- package/build/src/mocking/lib/History.js +5 -0
- package/build/src/mocking/lib/History.js.map +1 -1
- package/build/src/models/{Workspace.d.ts → Folder.d.ts} +7 -7
- package/build/src/models/{Workspace.js → Folder.js} +5 -5
- package/build/src/models/Folder.js.map +1 -0
- package/build/src/models/HttpHistory.d.ts +38 -43
- package/build/src/models/HttpHistory.js +27 -34
- package/build/src/models/HttpHistory.js.map +1 -1
- package/build/src/models/HttpProject.d.ts +0 -2
- package/build/src/models/HttpProject.js +0 -27
- package/build/src/models/HttpProject.js.map +1 -1
- package/build/src/models/Project.d.ts +0 -8
- package/build/src/models/Project.js +0 -4
- package/build/src/models/Project.js.map +1 -1
- package/build/src/models/ProjectFolder.d.ts +0 -2
- package/build/src/models/ProjectFolder.js +0 -14
- package/build/src/models/ProjectFolder.js.map +1 -1
- package/build/src/models/ProjectItem.d.ts +0 -2
- package/build/src/models/ProjectItem.js +0 -20
- package/build/src/models/ProjectItem.js.map +1 -1
- package/build/src/models/ProjectRequest.d.ts +2 -3
- package/build/src/models/ProjectRequest.js.map +1 -1
- package/build/src/models/RequestConfig.d.ts +1 -1
- package/build/src/models/Space.d.ts +42 -0
- package/build/src/models/Space.js +81 -0
- package/build/src/models/Space.js.map +1 -0
- package/build/src/models/TrashEntry.d.ts +27 -0
- package/build/src/models/TrashEntry.js +2 -0
- package/build/src/models/TrashEntry.js.map +1 -0
- package/build/src/models/store/Backend.d.ts +0 -315
- package/build/src/models/store/Backend.js +0 -1
- package/build/src/models/store/Backend.js.map +1 -1
- package/build/src/models/store/File.d.ts +30 -0
- package/build/src/models/store/File.js +5 -5
- package/build/src/models/store/File.js.map +1 -1
- package/build/src/proxy/ProxyService.d.ts +0 -10
- package/build/src/proxy/ProxyService.js +0 -14
- package/build/src/proxy/ProxyService.js.map +1 -1
- package/build/src/runtime/node/InteropInterfaces.d.ts +1 -2
- package/build/src/runtime/node/ProjectParallelRunner.d.ts +2 -3
- package/build/src/runtime/node/ProjectParallelRunner.js.map +1 -1
- package/build/src/runtime/node/ProjectRequestRunner.d.ts +7 -8
- package/build/src/runtime/node/ProjectRequestRunner.js +2 -3
- package/build/src/runtime/node/ProjectRequestRunner.js.map +1 -1
- package/build/src/runtime/node/ProjectRunner.d.ts +3 -4
- package/build/src/runtime/node/ProjectRunner.js.map +1 -1
- package/build/src/runtime/node/ProjectRunnerWorker.js +0 -4
- package/build/src/runtime/node/ProjectRunnerWorker.js.map +1 -1
- package/build/src/runtime/store/CertificatesSdk.d.ts +46 -0
- package/build/src/runtime/store/CertificatesSdk.js +227 -0
- package/build/src/runtime/store/CertificatesSdk.js.map +1 -0
- package/build/src/runtime/store/FilesSdk.d.ts +14 -9
- package/build/src/runtime/store/FilesSdk.js +60 -16
- package/build/src/runtime/store/FilesSdk.js.map +1 -1
- package/build/src/runtime/store/HistorySdk.d.ts +11 -8
- package/build/src/runtime/store/HistorySdk.js +140 -17
- package/build/src/runtime/store/HistorySdk.js.map +1 -1
- package/build/src/runtime/store/RevisionsSdk.d.ts +12 -0
- package/build/src/runtime/store/RevisionsSdk.js +43 -0
- package/build/src/runtime/store/RevisionsSdk.js.map +1 -0
- package/build/src/runtime/store/RouteBuilder.d.ts +16 -18
- package/build/src/runtime/store/RouteBuilder.js +33 -60
- package/build/src/runtime/store/RouteBuilder.js.map +1 -1
- package/build/src/runtime/store/Sdk.d.ts +10 -7
- package/build/src/runtime/store/Sdk.js +12 -5
- package/build/src/runtime/store/Sdk.js.map +1 -1
- package/build/src/runtime/store/SdkBase.js.map +1 -1
- package/build/src/runtime/store/SharedSdk.d.ts +2 -2
- package/build/src/runtime/store/SharedSdk.js.map +1 -1
- package/build/src/runtime/store/SpacesSdk.d.ts +29 -0
- package/build/src/runtime/store/SpacesSdk.js +135 -0
- package/build/src/runtime/store/SpacesSdk.js.map +1 -0
- package/build/src/runtime/store/TrashSdk.d.ts +35 -0
- package/build/src/runtime/store/TrashSdk.js +155 -0
- package/build/src/runtime/store/TrashSdk.js.map +1 -0
- package/build/src/runtime/store/UsersSdk.d.ts +2 -2
- package/build/src/runtime/store/UsersSdk.js.map +1 -1
- package/build/src/runtime/store/interfaces/ApiClientStore.d.ts +30 -0
- package/build/src/runtime/store/interfaces/ApiClientStore.js +2 -0
- package/build/src/runtime/store/interfaces/ApiClientStore.js.map +1 -0
- package/build/src/runtime/store/interfaces/Certificates.d.ts +49 -0
- package/build/src/runtime/store/interfaces/Certificates.js +2 -0
- package/build/src/runtime/store/interfaces/Certificates.js.map +1 -0
- package/build/src/runtime/store/interfaces/Files.d.ts +63 -0
- package/build/src/runtime/store/interfaces/Files.js +2 -0
- package/build/src/runtime/store/interfaces/Files.js.map +1 -0
- package/build/src/runtime/store/interfaces/History.d.ts +63 -0
- package/build/src/runtime/store/interfaces/History.js +2 -0
- package/build/src/runtime/store/interfaces/History.js.map +1 -0
- package/build/src/runtime/store/interfaces/Media.d.ts +42 -0
- package/build/src/runtime/store/interfaces/Media.js +2 -0
- package/build/src/runtime/store/interfaces/Media.js.map +1 -0
- package/build/src/runtime/store/interfaces/Revisions.d.ts +25 -0
- package/build/src/runtime/store/interfaces/Revisions.js +2 -0
- package/build/src/runtime/store/interfaces/Revisions.js.map +1 -0
- package/build/src/runtime/store/interfaces/Spaces.d.ts +42 -0
- package/build/src/runtime/store/interfaces/Spaces.js +2 -0
- package/build/src/runtime/store/interfaces/Spaces.js.map +1 -0
- package/build/src/runtime/store/interfaces/Trash.d.ts +38 -0
- package/build/src/runtime/store/interfaces/Trash.js +2 -0
- package/build/src/runtime/store/interfaces/Trash.js.map +1 -0
- package/package.json +1 -1
- package/src/events/BaseEvents.ts +136 -18
- package/src/events/EventTypes.ts +0 -2
- package/src/events/Events.ts +0 -2
- package/src/events/transport/TransportEventTypes.ts +0 -1
- package/src/events/transport/TransportEvents.ts +0 -13
- package/src/mocking/ProjectMock.ts +0 -4
- package/src/mocking/lib/History.ts +5 -0
- package/src/models/{Workspace.ts → Folder.ts} +12 -12
- package/src/models/HttpHistory.ts +53 -63
- package/src/models/HttpProject.ts +0 -29
- package/src/models/Project.ts +0 -8
- package/src/models/ProjectFolder.ts +0 -16
- package/src/models/ProjectItem.ts +0 -18
- package/src/models/ProjectRequest.ts +3 -4
- package/src/models/RequestConfig.ts +1 -1
- package/src/models/Space.ts +105 -0
- package/src/models/TrashEntry.ts +29 -0
- package/src/models/store/Backend.ts +0 -342
- package/src/models/store/File.ts +38 -5
- package/src/proxy/ProxyService.ts +0 -15
- package/src/proxy/readme.md +0 -1
- package/src/runtime/node/InteropInterfaces.ts +1 -2
- package/src/runtime/node/ProjectParallelRunner.ts +2 -3
- package/src/runtime/node/ProjectRequestRunner.ts +13 -14
- package/src/runtime/node/ProjectRunner.ts +3 -4
- package/src/runtime/node/ProjectRunnerWorker.ts +1 -4
- package/src/runtime/store/CertificatesSdk.ts +231 -0
- package/src/runtime/store/FilesSdk.ts +71 -26
- package/src/runtime/store/HistorySdk.ts +145 -33
- package/src/runtime/store/RevisionsSdk.ts +44 -0
- package/src/runtime/store/RouteBuilder.ts +37 -69
- package/src/runtime/store/Sdk.ts +17 -7
- package/src/runtime/store/SdkBase.ts +1 -1
- package/src/runtime/store/SharedSdk.ts +3 -3
- package/src/runtime/store/SpacesSdk.ts +136 -0
- package/src/runtime/store/TrashSdk.ts +159 -0
- package/src/runtime/store/UsersSdk.ts +3 -3
- package/src/runtime/store/interfaces/ApiClientStore.ts +39 -0
- package/src/runtime/store/interfaces/Certificates.ts +56 -0
- package/src/runtime/store/interfaces/Files.ts +70 -0
- package/src/runtime/store/interfaces/History.ts +64 -0
- package/src/runtime/store/interfaces/Media.ts +46 -0
- package/src/runtime/store/interfaces/Revisions.ts +27 -0
- package/src/runtime/store/interfaces/Spaces.ts +48 -0
- package/src/runtime/store/interfaces/Trash.ts +42 -0
- package/build/src/events/models/ClientCertificateEvents.d.ts +0 -54
- package/build/src/events/models/ClientCertificateEvents.js +0 -78
- package/build/src/events/models/ClientCertificateEvents.js.map +0 -1
- package/build/src/events/models/ModelEventTypes.d.ts +0 -13
- package/build/src/events/models/ModelEventTypes.js +0 -14
- package/build/src/events/models/ModelEventTypes.js.map +0 -1
- package/build/src/events/models/ModelEvents.d.ts +0 -4
- package/build/src/events/models/ModelEvents.js +0 -5
- package/build/src/events/models/ModelEvents.js.map +0 -1
- package/build/src/mocking/lib/App.d.ts +0 -36
- package/build/src/mocking/lib/App.js +0 -70
- package/build/src/mocking/lib/App.js.map +0 -1
- package/build/src/models/AppProject.d.ts +0 -817
- package/build/src/models/AppProject.js +0 -1721
- package/build/src/models/AppProject.js.map +0 -1
- package/build/src/models/AppRequest.d.ts +0 -69
- package/build/src/models/AppRequest.js +0 -150
- package/build/src/models/AppRequest.js.map +0 -1
- package/build/src/models/Workspace.js.map +0 -1
- package/build/src/proxy/AppProjectProxy.d.ts +0 -28
- package/build/src/proxy/AppProjectProxy.js +0 -107
- package/build/src/proxy/AppProjectProxy.js.map +0 -1
- package/build/src/runtime/store/AppSdk.d.ts +0 -213
- package/build/src/runtime/store/AppSdk.js +0 -836
- package/build/src/runtime/store/AppSdk.js.map +0 -1
- package/src/events/models/ClientCertificateEvents.ts +0 -85
- package/src/events/models/ModelEventTypes.ts +0 -13
- package/src/events/models/ModelEvents.ts +0 -5
- package/src/mocking/lib/App.ts +0 -101
- package/src/models/AppProject.ts +0 -2188
- package/src/models/AppRequest.ts +0 -176
- package/src/proxy/AppProjectProxy.ts +0 -126
- package/src/runtime/store/AppSdk.ts +0 -842
|
@@ -1,213 +0,0 @@
|
|
|
1
|
-
import { SdkBase, ISdkRequestOptions } from './SdkBase.js';
|
|
2
|
-
import { IBatchDeleteResult, IBatchReadResult, IBatchUpdateResult, IDeleteRecord, IListOptions, IListResponse, IPatchInfo, IPatchRevision, IQueryResponse, IRevertResponse } from '../../models/store/Backend.js';
|
|
3
|
-
import { AppRequest, IAppRequest } from '../../models/AppRequest.js';
|
|
4
|
-
import { AppProject, IAppProject } from '../../models/AppProject.js';
|
|
5
|
-
import { Sdk } from './Sdk.js';
|
|
6
|
-
/**
|
|
7
|
-
* SDK for the Application HTTP requests.
|
|
8
|
-
*/
|
|
9
|
-
export declare class AppRequestsSdk extends SdkBase {
|
|
10
|
-
/**
|
|
11
|
-
* Adds a single HTTP request to the app.
|
|
12
|
-
*
|
|
13
|
-
* @param value The HTTP request to add.
|
|
14
|
-
* @param appId The application id for which to create the request.
|
|
15
|
-
* @param request Optional request options
|
|
16
|
-
* @returns The created AppRequest with updated server-side properties.
|
|
17
|
-
*/
|
|
18
|
-
create(value: IAppRequest | AppRequest, appId: string, request?: ISdkRequestOptions): Promise<IAppRequest>;
|
|
19
|
-
/**
|
|
20
|
-
* Lists application requests.
|
|
21
|
-
*
|
|
22
|
-
* @param appId The application id to which lists the requests.
|
|
23
|
-
* @param options List query options.
|
|
24
|
-
* @param request Optional request options
|
|
25
|
-
* @returns The list response with `AppRequest`s
|
|
26
|
-
*/
|
|
27
|
-
list(appId: string, options?: IListOptions, request?: ISdkRequestOptions): Promise<IListResponse<IAppRequest>>;
|
|
28
|
-
/**
|
|
29
|
-
* Creates a number of `AppRequest`s in a batch operation.
|
|
30
|
-
*
|
|
31
|
-
* @param values The `AppRequest`s list to insert.
|
|
32
|
-
* @param appId The application id generating these requests.
|
|
33
|
-
* @param request Optional request options
|
|
34
|
-
* @returns The ordered list of created requests.
|
|
35
|
-
*/
|
|
36
|
-
createBatch(values: (IAppRequest | AppRequest)[], appId: string, request?: ISdkRequestOptions): Promise<IBatchUpdateResult<IAppRequest>>;
|
|
37
|
-
/**
|
|
38
|
-
* Reads `AppRequest`s in a batch operation.
|
|
39
|
-
*
|
|
40
|
-
* @param keys The list of request keys to read.
|
|
41
|
-
* @param appId The application id that generated the app requests.
|
|
42
|
-
* @param request Optional HTTP request options
|
|
43
|
-
* @returns The ordered list of results. The undefined/null value means the object couldn't be read (does not exists or no access).
|
|
44
|
-
*/
|
|
45
|
-
readBatch(keys: string[], appId: string, request?: ISdkRequestOptions): Promise<IBatchReadResult<IAppRequest>>;
|
|
46
|
-
/**
|
|
47
|
-
* Deletes `AppRequest`s in a batch operation.
|
|
48
|
-
*
|
|
49
|
-
* @param keys The list of request keys to delete.
|
|
50
|
-
* @param appId The application id that generated the app requests.
|
|
51
|
-
* @param request Optional HTTP request options
|
|
52
|
-
* @returns A delete record for each request or null/undefined when couldn't delete the record.
|
|
53
|
-
*/
|
|
54
|
-
deleteBatch(keys: string[], appId: string, request?: ISdkRequestOptions): Promise<IBatchDeleteResult>;
|
|
55
|
-
/**
|
|
56
|
-
* Restores previously deleted `AppRequest`s.
|
|
57
|
-
*
|
|
58
|
-
* @param keys The list of keys of deleted records.
|
|
59
|
-
* @param appId The application id that generated the app requests.
|
|
60
|
-
* @param request Optional HTTP request options
|
|
61
|
-
* @returns The ordered list of the restored requests. An item can be null/undefined when the service couldn't restore the request.
|
|
62
|
-
*/
|
|
63
|
-
undeleteBatch(keys: string[], appId: string, request?: ISdkRequestOptions): Promise<IRevertResponse<IAppRequest>>;
|
|
64
|
-
/**
|
|
65
|
-
* Reads a single AppRequest entry from the store.
|
|
66
|
-
*
|
|
67
|
-
* @param key The key of the request to read.
|
|
68
|
-
* @param appId The application id that created this entry.
|
|
69
|
-
* @param request Optional request options
|
|
70
|
-
* @returns The stored AppRequest.
|
|
71
|
-
*/
|
|
72
|
-
read(key: string, appId: string, request?: ISdkRequestOptions): Promise<IAppRequest>;
|
|
73
|
-
/**
|
|
74
|
-
* Deletes a single AppRequest.
|
|
75
|
-
*
|
|
76
|
-
* @param key The key of the AppRequest to delete.
|
|
77
|
-
* @param appId The application id that created this entry.
|
|
78
|
-
* @param request Optional request options
|
|
79
|
-
* @returns The delete record for the request.
|
|
80
|
-
*/
|
|
81
|
-
delete(key: string, appId: string, request?: ISdkRequestOptions): Promise<IDeleteRecord>;
|
|
82
|
-
/**
|
|
83
|
-
* Patches an app request in the store.
|
|
84
|
-
*
|
|
85
|
-
* @param key The key of the request to patch
|
|
86
|
-
* @param appId The application id that created this entry.
|
|
87
|
-
* @param value The JSON patch to be processed.
|
|
88
|
-
* @param request Optional HTTP request options.
|
|
89
|
-
* @returns The JSON patch to revert the change using the `@api-client/json` library
|
|
90
|
-
*/
|
|
91
|
-
patch(key: string, appId: string, value: IPatchInfo, request?: ISdkRequestOptions): Promise<IPatchRevision>;
|
|
92
|
-
/**
|
|
93
|
-
* Performs a full-text search on the stored documents.
|
|
94
|
-
*
|
|
95
|
-
* @param appId The application id that created documents.
|
|
96
|
-
* @param options Regular query options with required "query" property
|
|
97
|
-
* @param request Optional HTTP request options.
|
|
98
|
-
* @returns The list of documents with the indexes where the query was found.
|
|
99
|
-
*/
|
|
100
|
-
query(appId: string, options: IListOptions, request?: ISdkRequestOptions): Promise<IQueryResponse<IAppRequest>>;
|
|
101
|
-
}
|
|
102
|
-
/**
|
|
103
|
-
* SDK for the Application projects.
|
|
104
|
-
*/
|
|
105
|
-
export declare class AppProjectsSdk extends SdkBase {
|
|
106
|
-
/**
|
|
107
|
-
* Adds a single project to the app.
|
|
108
|
-
*
|
|
109
|
-
* @param value The project to add.
|
|
110
|
-
* @param appId The application id for which to create the project.
|
|
111
|
-
* @param request Optional request options
|
|
112
|
-
* @returns The created project with updated server-side properties.
|
|
113
|
-
*/
|
|
114
|
-
create(value: IAppProject | AppProject, appId: string, request?: ISdkRequestOptions): Promise<IAppProject>;
|
|
115
|
-
/**
|
|
116
|
-
* Lists application projects.
|
|
117
|
-
*
|
|
118
|
-
* @param appId The application id to which lists the projects.
|
|
119
|
-
* @param options List query options.
|
|
120
|
-
* @param request Optional request options
|
|
121
|
-
* @returns The list response with `AppProject`s
|
|
122
|
-
*/
|
|
123
|
-
list(appId: string, options?: IListOptions, request?: ISdkRequestOptions): Promise<IListResponse<IAppProject>>;
|
|
124
|
-
/**
|
|
125
|
-
* Creates a number of `AppProject`s in a batch operation.
|
|
126
|
-
*
|
|
127
|
-
* @param values The `AppProject`s list to insert.
|
|
128
|
-
* @param appId The application id generating these projects.
|
|
129
|
-
* @param request Optional request options
|
|
130
|
-
* @returns The ordered list of created projects.
|
|
131
|
-
*/
|
|
132
|
-
createBatch(values: (IAppProject | AppProject)[], appId: string, request?: ISdkRequestOptions): Promise<IBatchUpdateResult<IAppProject>>;
|
|
133
|
-
/**
|
|
134
|
-
* Reads `AppProject`s in a batch operation.
|
|
135
|
-
*
|
|
136
|
-
* @param keys The list of project keys to read.
|
|
137
|
-
* @param appId The application id that generated the app projects.
|
|
138
|
-
* @param request Optional HTTP request options
|
|
139
|
-
* @returns The ordered list of results. The undefined/null value means the object couldn't be read (does not exists or no access).
|
|
140
|
-
*/
|
|
141
|
-
readBatch(keys: string[], appId: string, request?: ISdkRequestOptions): Promise<IBatchReadResult<IAppProject>>;
|
|
142
|
-
/**
|
|
143
|
-
* Deletes `AppProject`s in a batch operation.
|
|
144
|
-
*
|
|
145
|
-
* @param keys The list of project keys to delete.
|
|
146
|
-
* @param appId The application id that generated the app projects.
|
|
147
|
-
* @param request Optional HTTP request options
|
|
148
|
-
* @returns A delete record for each project or null/undefined when couldn't delete the record.
|
|
149
|
-
*/
|
|
150
|
-
deleteBatch(keys: string[], appId: string, request?: ISdkRequestOptions): Promise<IBatchDeleteResult>;
|
|
151
|
-
/**
|
|
152
|
-
* Restores previously deleted `AppProject`s.
|
|
153
|
-
*
|
|
154
|
-
* @param keys The list of keys of deleted records.
|
|
155
|
-
* @param appId The application id that generated the app projects.
|
|
156
|
-
* @param request Optional HTTP request options
|
|
157
|
-
* @returns The ordered list of the restored projects. An item can be null/undefined when the service couldn't restore the project.
|
|
158
|
-
*/
|
|
159
|
-
undeleteBatch(keys: string[], appId: string, request?: ISdkRequestOptions): Promise<IRevertResponse<IAppProject>>;
|
|
160
|
-
/**
|
|
161
|
-
* Reads a single AppProject entry from the store.
|
|
162
|
-
*
|
|
163
|
-
* @param key The key of the project to read.
|
|
164
|
-
* @param appId The application id that created this entry.
|
|
165
|
-
* @param request Optional request options
|
|
166
|
-
* @returns The stored AppProject.
|
|
167
|
-
*/
|
|
168
|
-
read(key: string, appId: string, request?: ISdkRequestOptions): Promise<IAppProject>;
|
|
169
|
-
/**
|
|
170
|
-
* Deletes a single `AppProject`.
|
|
171
|
-
*
|
|
172
|
-
* @param key The key of the `AppProject` to delete.
|
|
173
|
-
* @param appId The application id that created this entry.
|
|
174
|
-
* @param request Optional request options
|
|
175
|
-
* @returns The delete record for the project.
|
|
176
|
-
*/
|
|
177
|
-
delete(key: string, appId: string, request?: ISdkRequestOptions): Promise<IDeleteRecord>;
|
|
178
|
-
/**
|
|
179
|
-
* Patches an app project in the store.
|
|
180
|
-
*
|
|
181
|
-
* @param key The key of the project to patch
|
|
182
|
-
* @param value The JSON patch to be processed.
|
|
183
|
-
* @param request Optional request options.
|
|
184
|
-
* @returns The JSON patch to revert the change using the `@api-client/json` library
|
|
185
|
-
*/
|
|
186
|
-
patch(key: string, appId: string, value: IPatchInfo, request?: ISdkRequestOptions): Promise<IPatchRevision>;
|
|
187
|
-
/**
|
|
188
|
-
* Performs a full-text search on the stored documents.
|
|
189
|
-
*
|
|
190
|
-
* @param appId The application id that created documents.
|
|
191
|
-
* @param options Regular query options with required "query" property
|
|
192
|
-
* @param request Optional HTTP request options.
|
|
193
|
-
* @returns The list of documents with the indexes where the query was found.
|
|
194
|
-
*/
|
|
195
|
-
query(appId: string, options: IListOptions, request?: ISdkRequestOptions): Promise<IQueryResponse<IAppProject>>;
|
|
196
|
-
}
|
|
197
|
-
/**
|
|
198
|
-
* Sdk used by the HTTP Client.
|
|
199
|
-
*/
|
|
200
|
-
export declare class AppSdk extends SdkBase {
|
|
201
|
-
requests: AppRequestsSdk;
|
|
202
|
-
projects: AppProjectsSdk;
|
|
203
|
-
constructor(sdk: Sdk);
|
|
204
|
-
/**
|
|
205
|
-
* Performs a full-text search on all supported application documents.
|
|
206
|
-
*
|
|
207
|
-
* @param appId The application id that created documents.
|
|
208
|
-
* @param options Regular query options with required "query" property
|
|
209
|
-
* @param request Optional HTTP request options.
|
|
210
|
-
* @returns The list of documents with the indexes where the query was found.
|
|
211
|
-
*/
|
|
212
|
-
query(appId: string, options: IListOptions, request?: ISdkRequestOptions): Promise<IQueryResponse<IAppProject | IAppRequest>>;
|
|
213
|
-
}
|