@itwin/core-mobile 4.0.0-dev.7 → 4.0.0-dev.70
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/CHANGELOG.md +15 -1
- package/lib/cjs/MobileBackend.d.ts +7 -7
- package/lib/cjs/MobileBackend.js +28 -24
- package/lib/cjs/MobileBackend.js.map +1 -1
- package/lib/cjs/MobileFrontend.d.ts +5 -5
- package/lib/cjs/MobileFrontend.js +25 -21
- package/lib/cjs/MobileFrontend.js.map +1 -1
- package/lib/cjs/__DOC_ONLY__.d.ts +33 -33
- package/lib/cjs/__DOC_ONLY__.js +56 -52
- package/lib/cjs/__DOC_ONLY__.js.map +1 -1
- package/lib/cjs/backend/MobileAuthorizationBackend.d.ts +17 -17
- package/lib/cjs/backend/MobileAuthorizationBackend.js +46 -46
- package/lib/cjs/backend/MobileAuthorizationBackend.js.map +1 -1
- package/lib/cjs/backend/MobileFileHandler.d.ts +112 -112
- package/lib/cjs/backend/MobileFileHandler.js +263 -263
- package/lib/cjs/backend/MobileHost.d.ts +72 -72
- package/lib/cjs/backend/MobileHost.d.ts.map +1 -1
- package/lib/cjs/backend/MobileHost.js +155 -156
- package/lib/cjs/backend/MobileHost.js.map +1 -1
- package/lib/cjs/backend/MobileRpcServer.d.ts +19 -19
- package/lib/cjs/backend/MobileRpcServer.js +156 -156
- package/lib/cjs/backend/MobileRpcServer.js.map +1 -1
- package/lib/cjs/backend/Request.d.ts +149 -149
- package/lib/cjs/backend/Request.d.ts.map +1 -1
- package/lib/cjs/backend/Request.js +267 -267
- package/lib/cjs/common/MobileAppChannel.d.ts +4 -4
- package/lib/cjs/common/MobileAppChannel.js +11 -11
- package/lib/cjs/common/MobileAppProps.d.ts +35 -35
- package/lib/cjs/common/MobileAppProps.d.ts.map +1 -1
- package/lib/cjs/common/MobileAppProps.js +26 -26
- package/lib/cjs/common/MobileEventLoop.d.ts +11 -11
- package/lib/cjs/common/MobileEventLoop.js +30 -30
- package/lib/cjs/common/MobileEventLoop.js.map +1 -1
- package/lib/cjs/common/MobileIpc.d.ts +17 -17
- package/lib/cjs/common/MobileIpc.js +70 -70
- package/lib/cjs/common/MobilePush.d.ts +20 -20
- package/lib/cjs/common/MobilePush.js +53 -53
- package/lib/cjs/common/MobilePush.js.map +1 -1
- package/lib/cjs/common/MobileRpcManager.d.ts +40 -40
- package/lib/cjs/common/MobileRpcManager.js +110 -110
- package/lib/cjs/common/MobileRpcManager.js.map +1 -1
- package/lib/cjs/common/MobileRpcProtocol.d.ts +58 -58
- package/lib/cjs/common/MobileRpcProtocol.d.ts.map +1 -1
- package/lib/cjs/common/MobileRpcProtocol.js +277 -277
- package/lib/cjs/common/MobileRpcProtocol.js.map +1 -1
- package/lib/cjs/common/MobileRpcRequest.d.ts +20 -20
- package/lib/cjs/common/MobileRpcRequest.js +50 -50
- package/lib/cjs/frontend/MobileApp.d.ts +23 -23
- package/lib/cjs/frontend/MobileApp.d.ts.map +1 -1
- package/lib/cjs/frontend/MobileApp.js +79 -80
- package/lib/cjs/frontend/MobileApp.js.map +1 -1
- package/lib/cjs/frontend/MobileAuthorizationFrontend.d.ts +17 -17
- package/lib/cjs/frontend/MobileAuthorizationFrontend.d.ts.map +1 -1
- package/lib/cjs/frontend/MobileAuthorizationFrontend.js +54 -46
- package/lib/cjs/frontend/MobileAuthorizationFrontend.js.map +1 -1
- package/lib/cjs/test/ios/MobilePlatform.test.d.ts +1 -1
- package/lib/cjs/test/ios/MobilePlatform.test.js +84 -84
- package/package.json +18 -18
|
@@ -1,150 +1,150 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
|
-
import * as https from "https";
|
|
3
|
-
import { BentleyError, GetMetaDataFunction, HttpStatus } from "@itwin/core-bentley";
|
|
4
|
-
/** @internal */
|
|
5
|
-
export declare const requestIdHeaderName = "X-Correlation-Id";
|
|
6
|
-
/** Typical option to query REST API. Note that services may not quite support these fields,
|
|
7
|
-
* and the interface is only provided as a hint.
|
|
8
|
-
* @internal
|
|
9
|
-
*/
|
|
10
|
-
export interface RequestQueryOptions {
|
|
11
|
-
/**
|
|
12
|
-
* Select string used by the query (use the mapped EC property names, and not TypeScript property names)
|
|
13
|
-
* Example: "Name,Size,Description"
|
|
14
|
-
*/
|
|
15
|
-
$select?: string;
|
|
16
|
-
/**
|
|
17
|
-
* Filter string used by the query (use the mapped EC property names, and not TypeScript property names)
|
|
18
|
-
* Example: "Name like '*.pdf' and Size lt 1000"
|
|
19
|
-
*/
|
|
20
|
-
$filter?: string;
|
|
21
|
-
/** Sets the limit on the number of entries to be returned by the query */
|
|
22
|
-
$top?: number;
|
|
23
|
-
/** Sets the number of entries to be skipped */
|
|
24
|
-
$skip?: number;
|
|
25
|
-
/**
|
|
26
|
-
* Orders the return values (use the mapped EC property names, and not TypeScript property names)
|
|
27
|
-
* Example: "Size desc"
|
|
28
|
-
*/
|
|
29
|
-
$orderby?: string;
|
|
30
|
-
/**
|
|
31
|
-
* Sets the limit on the number of entries to be returned by a single response.
|
|
32
|
-
* Can be used with a Top option. For example if Top is set to 1000 and PageSize
|
|
33
|
-
* is set to 100 then 10 requests will be performed to get result.
|
|
34
|
-
*/
|
|
35
|
-
$pageSize?: number;
|
|
36
|
-
}
|
|
37
|
-
/** @internal */
|
|
38
|
-
export interface RequestQueryStringifyOptions {
|
|
39
|
-
delimiter?: string;
|
|
40
|
-
encode?: boolean;
|
|
41
|
-
}
|
|
42
|
-
/** Option to control the time outs
|
|
43
|
-
* Use a short response timeout to detect unresponsive networks quickly, and a long deadline to give time for downloads on slow,
|
|
44
|
-
* but reliable, networks. Note that both of these timers limit how long uploads of attached files are allowed to take. Use long
|
|
45
|
-
* timeouts if you're uploading files.
|
|
46
|
-
* @internal
|
|
47
|
-
*/
|
|
48
|
-
export interface RequestTimeoutOptions {
|
|
49
|
-
/** Sets a deadline (in milliseconds) for the entire request (including all uploads, redirects, server processing time) to complete.
|
|
50
|
-
* If the response isn't fully downloaded within that time, the request will be aborted
|
|
51
|
-
*/
|
|
52
|
-
deadline?: number;
|
|
53
|
-
/** Sets maximum time (in milliseconds) to wait for the first byte to arrive from the server, but it does not limit how long the entire
|
|
54
|
-
* download can take. Response timeout should be at least few seconds longer than just the time it takes the server to respond, because
|
|
55
|
-
* it also includes time to make DNS lookup, TCP/IP and TLS connections, and time to upload request data.
|
|
56
|
-
*/
|
|
57
|
-
response?: number;
|
|
58
|
-
}
|
|
59
|
-
/** @internal */
|
|
60
|
-
export interface RequestOptions {
|
|
61
|
-
method: string;
|
|
62
|
-
headers?: any;
|
|
63
|
-
body?: any;
|
|
64
|
-
qs?: any | RequestQueryOptions;
|
|
65
|
-
responseType?: string;
|
|
66
|
-
timeout?: RequestTimeoutOptions;
|
|
67
|
-
stream?: any;
|
|
68
|
-
readStream?: any;
|
|
69
|
-
buffer?: any;
|
|
70
|
-
parser?: any;
|
|
71
|
-
accept?: string;
|
|
72
|
-
redirects?: number;
|
|
73
|
-
errorCallback?: (response: any) => ResponseError;
|
|
74
|
-
retryCallback?: (error: any, response: any) => boolean;
|
|
75
|
-
progressCallback?: ProgressCallback;
|
|
76
|
-
agent?: https.Agent;
|
|
77
|
-
retries?: number;
|
|
78
|
-
useCorsProxy?: boolean;
|
|
79
|
-
}
|
|
80
|
-
/** Response object if the request was successful. Note that the status within the range of 200-299 are considered as a success.
|
|
81
|
-
* @internal
|
|
82
|
-
*/
|
|
83
|
-
export interface Response {
|
|
84
|
-
body: any;
|
|
85
|
-
text: string | undefined;
|
|
86
|
-
header: any;
|
|
87
|
-
status: number;
|
|
88
|
-
}
|
|
89
|
-
/** @internal */
|
|
90
|
-
export interface ProgressInfo {
|
|
91
|
-
percent?: number;
|
|
92
|
-
total?: number;
|
|
93
|
-
loaded: number;
|
|
94
|
-
}
|
|
95
|
-
/** @internal */
|
|
96
|
-
export
|
|
97
|
-
/** Error object that's thrown/rejected if the Request fails due to a network error, or if the status is *not* in the range of 200-299 (inclusive)
|
|
98
|
-
* @internal
|
|
99
|
-
*/
|
|
100
|
-
export declare class ResponseError extends BentleyError {
|
|
101
|
-
protected _data?: any;
|
|
102
|
-
status?: number;
|
|
103
|
-
description?: string;
|
|
104
|
-
constructor(errorNumber: number | HttpStatus, message?: string, getMetaData?: GetMetaDataFunction);
|
|
105
|
-
/**
|
|
106
|
-
* Parses error from server's response
|
|
107
|
-
* @param response Http response from the server.
|
|
108
|
-
* @returns Parsed error.
|
|
109
|
-
* @internal
|
|
110
|
-
*/
|
|
111
|
-
static parse(response: any, log?: boolean): ResponseError;
|
|
112
|
-
/**
|
|
113
|
-
* Decides whether request should be retried or not
|
|
114
|
-
* @param error Error returned by request
|
|
115
|
-
* @param response Response returned by request
|
|
116
|
-
* @internal
|
|
117
|
-
*/
|
|
118
|
-
static shouldRetry(error: any, response: any): boolean;
|
|
119
|
-
/**
|
|
120
|
-
* @internal
|
|
121
|
-
*/
|
|
122
|
-
static parseHttpStatus(statusType: number): HttpStatus;
|
|
123
|
-
/**
|
|
124
|
-
* @internal
|
|
125
|
-
*/
|
|
126
|
-
logMessage(): string;
|
|
127
|
-
/**
|
|
128
|
-
* Logs this error
|
|
129
|
-
* @internal
|
|
130
|
-
*/
|
|
131
|
-
log(): void;
|
|
132
|
-
}
|
|
133
|
-
/** Wrapper around making HTTP requests with the specific options.
|
|
134
|
-
*
|
|
135
|
-
* Usable in both a browser and node based environment.
|
|
136
|
-
*
|
|
137
|
-
* @param url Server URL to address the request
|
|
138
|
-
* @param options Options to pass to the request
|
|
139
|
-
* @returns Resolves to the response from the server
|
|
140
|
-
* @throws ResponseError if the request fails due to network issues, or if the returned status is *outside* the range of 200-299 (inclusive)
|
|
141
|
-
* @internal
|
|
142
|
-
*/
|
|
143
|
-
export declare function request(url: string, options: RequestOptions): Promise<Response>;
|
|
144
|
-
/**
|
|
145
|
-
* fetch json from HTTP request
|
|
146
|
-
* @param url server URL to address the request
|
|
147
|
-
* @internal
|
|
148
|
-
*/
|
|
149
|
-
export declare function getJson(url: string): Promise<any>;
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
import * as https from "https";
|
|
3
|
+
import { BentleyError, GetMetaDataFunction, HttpStatus } from "@itwin/core-bentley";
|
|
4
|
+
/** @internal */
|
|
5
|
+
export declare const requestIdHeaderName = "X-Correlation-Id";
|
|
6
|
+
/** Typical option to query REST API. Note that services may not quite support these fields,
|
|
7
|
+
* and the interface is only provided as a hint.
|
|
8
|
+
* @internal
|
|
9
|
+
*/
|
|
10
|
+
export interface RequestQueryOptions {
|
|
11
|
+
/**
|
|
12
|
+
* Select string used by the query (use the mapped EC property names, and not TypeScript property names)
|
|
13
|
+
* Example: "Name,Size,Description"
|
|
14
|
+
*/
|
|
15
|
+
$select?: string;
|
|
16
|
+
/**
|
|
17
|
+
* Filter string used by the query (use the mapped EC property names, and not TypeScript property names)
|
|
18
|
+
* Example: "Name like '*.pdf' and Size lt 1000"
|
|
19
|
+
*/
|
|
20
|
+
$filter?: string;
|
|
21
|
+
/** Sets the limit on the number of entries to be returned by the query */
|
|
22
|
+
$top?: number;
|
|
23
|
+
/** Sets the number of entries to be skipped */
|
|
24
|
+
$skip?: number;
|
|
25
|
+
/**
|
|
26
|
+
* Orders the return values (use the mapped EC property names, and not TypeScript property names)
|
|
27
|
+
* Example: "Size desc"
|
|
28
|
+
*/
|
|
29
|
+
$orderby?: string;
|
|
30
|
+
/**
|
|
31
|
+
* Sets the limit on the number of entries to be returned by a single response.
|
|
32
|
+
* Can be used with a Top option. For example if Top is set to 1000 and PageSize
|
|
33
|
+
* is set to 100 then 10 requests will be performed to get result.
|
|
34
|
+
*/
|
|
35
|
+
$pageSize?: number;
|
|
36
|
+
}
|
|
37
|
+
/** @internal */
|
|
38
|
+
export interface RequestQueryStringifyOptions {
|
|
39
|
+
delimiter?: string;
|
|
40
|
+
encode?: boolean;
|
|
41
|
+
}
|
|
42
|
+
/** Option to control the time outs
|
|
43
|
+
* Use a short response timeout to detect unresponsive networks quickly, and a long deadline to give time for downloads on slow,
|
|
44
|
+
* but reliable, networks. Note that both of these timers limit how long uploads of attached files are allowed to take. Use long
|
|
45
|
+
* timeouts if you're uploading files.
|
|
46
|
+
* @internal
|
|
47
|
+
*/
|
|
48
|
+
export interface RequestTimeoutOptions {
|
|
49
|
+
/** Sets a deadline (in milliseconds) for the entire request (including all uploads, redirects, server processing time) to complete.
|
|
50
|
+
* If the response isn't fully downloaded within that time, the request will be aborted
|
|
51
|
+
*/
|
|
52
|
+
deadline?: number;
|
|
53
|
+
/** Sets maximum time (in milliseconds) to wait for the first byte to arrive from the server, but it does not limit how long the entire
|
|
54
|
+
* download can take. Response timeout should be at least few seconds longer than just the time it takes the server to respond, because
|
|
55
|
+
* it also includes time to make DNS lookup, TCP/IP and TLS connections, and time to upload request data.
|
|
56
|
+
*/
|
|
57
|
+
response?: number;
|
|
58
|
+
}
|
|
59
|
+
/** @internal */
|
|
60
|
+
export interface RequestOptions {
|
|
61
|
+
method: string;
|
|
62
|
+
headers?: any;
|
|
63
|
+
body?: any;
|
|
64
|
+
qs?: any | RequestQueryOptions;
|
|
65
|
+
responseType?: string;
|
|
66
|
+
timeout?: RequestTimeoutOptions;
|
|
67
|
+
stream?: any;
|
|
68
|
+
readStream?: any;
|
|
69
|
+
buffer?: any;
|
|
70
|
+
parser?: any;
|
|
71
|
+
accept?: string;
|
|
72
|
+
redirects?: number;
|
|
73
|
+
errorCallback?: (response: any) => ResponseError;
|
|
74
|
+
retryCallback?: (error: any, response: any) => boolean;
|
|
75
|
+
progressCallback?: ProgressCallback;
|
|
76
|
+
agent?: https.Agent;
|
|
77
|
+
retries?: number;
|
|
78
|
+
useCorsProxy?: boolean;
|
|
79
|
+
}
|
|
80
|
+
/** Response object if the request was successful. Note that the status within the range of 200-299 are considered as a success.
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
83
|
+
export interface Response {
|
|
84
|
+
body: any;
|
|
85
|
+
text: string | undefined;
|
|
86
|
+
header: any;
|
|
87
|
+
status: number;
|
|
88
|
+
}
|
|
89
|
+
/** @internal */
|
|
90
|
+
export interface ProgressInfo {
|
|
91
|
+
percent?: number;
|
|
92
|
+
total?: number;
|
|
93
|
+
loaded: number;
|
|
94
|
+
}
|
|
95
|
+
/** @internal */
|
|
96
|
+
export type ProgressCallback = (progress: ProgressInfo) => void;
|
|
97
|
+
/** Error object that's thrown/rejected if the Request fails due to a network error, or if the status is *not* in the range of 200-299 (inclusive)
|
|
98
|
+
* @internal
|
|
99
|
+
*/
|
|
100
|
+
export declare class ResponseError extends BentleyError {
|
|
101
|
+
protected _data?: any;
|
|
102
|
+
status?: number;
|
|
103
|
+
description?: string;
|
|
104
|
+
constructor(errorNumber: number | HttpStatus, message?: string, getMetaData?: GetMetaDataFunction);
|
|
105
|
+
/**
|
|
106
|
+
* Parses error from server's response
|
|
107
|
+
* @param response Http response from the server.
|
|
108
|
+
* @returns Parsed error.
|
|
109
|
+
* @internal
|
|
110
|
+
*/
|
|
111
|
+
static parse(response: any, log?: boolean): ResponseError;
|
|
112
|
+
/**
|
|
113
|
+
* Decides whether request should be retried or not
|
|
114
|
+
* @param error Error returned by request
|
|
115
|
+
* @param response Response returned by request
|
|
116
|
+
* @internal
|
|
117
|
+
*/
|
|
118
|
+
static shouldRetry(error: any, response: any): boolean;
|
|
119
|
+
/**
|
|
120
|
+
* @internal
|
|
121
|
+
*/
|
|
122
|
+
static parseHttpStatus(statusType: number): HttpStatus;
|
|
123
|
+
/**
|
|
124
|
+
* @internal
|
|
125
|
+
*/
|
|
126
|
+
logMessage(): string;
|
|
127
|
+
/**
|
|
128
|
+
* Logs this error
|
|
129
|
+
* @internal
|
|
130
|
+
*/
|
|
131
|
+
log(): void;
|
|
132
|
+
}
|
|
133
|
+
/** Wrapper around making HTTP requests with the specific options.
|
|
134
|
+
*
|
|
135
|
+
* Usable in both a browser and node based environment.
|
|
136
|
+
*
|
|
137
|
+
* @param url Server URL to address the request
|
|
138
|
+
* @param options Options to pass to the request
|
|
139
|
+
* @returns Resolves to the response from the server
|
|
140
|
+
* @throws ResponseError if the request fails due to network issues, or if the returned status is *outside* the range of 200-299 (inclusive)
|
|
141
|
+
* @internal
|
|
142
|
+
*/
|
|
143
|
+
export declare function request(url: string, options: RequestOptions): Promise<Response>;
|
|
144
|
+
/**
|
|
145
|
+
* fetch json from HTTP request
|
|
146
|
+
* @param url server URL to address the request
|
|
147
|
+
* @internal
|
|
148
|
+
*/
|
|
149
|
+
export declare function getJson(url: string): Promise<any>;
|
|
150
150
|
//# sourceMappingURL=Request.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Request.d.ts","sourceRoot":"","sources":["../../../src/backend/Request.ts"],"names":[],"mappings":";AASA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAG/B,OAAO,EAAE,YAAY,EAAE,mBAAmB,EAAE,UAAU,EAAoB,MAAM,qBAAqB,CAAC;AAItG,gBAAgB;AAChB,eAAO,MAAM,mBAAmB,qBAAqB,CAAC;AAEtD;;;GAGG;AACH,MAAM,WAAW,mBAAmB;IAClC;;;OAGG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB;;;OAGG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB,0EAA0E;IAC1E,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd,+CAA+C;IAC/C,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,gBAAgB;AAChB,MAAM,WAAW,4BAA4B;IAC3C,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB;AAED;;;;;GAKG;AACH,MAAM,WAAW,qBAAqB;IACpC;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,gBAAgB;AAChB,MAAM,WAAW,cAAc;IAC7B,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,GAAG,CAAC;IACd,IAAI,CAAC,EAAE,GAAG,CAAC;IACX,EAAE,CAAC,EAAE,GAAG,GAAG,mBAAmB,CAAC;IAC/B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,OAAO,CAAC,EAAE,qBAAqB,CAAC;IAChC,MAAM,CAAC,EAAE,GAAG,CAAC;IACb,UAAU,CAAC,EAAE,GAAG,CAAC;IACjB,MAAM,CAAC,EAAE,GAAG,CAAC;IACb,MAAM,CAAC,EAAE,GAAG,CAAC;IACb,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,CAAC,QAAQ,EAAE,GAAG,KAAK,aAAa,CAAC;IACjD,aAAa,CAAC,EAAE,CAAC,KAAK,EAAE,GAAG,EAAE,QAAQ,EAAE,GAAG,KAAK,OAAO,CAAC;IACvD,gBAAgB,CAAC,EAAE,gBAAgB,CAAC;IACpC,KAAK,CAAC,EAAE,KAAK,CAAC,KAAK,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,YAAY,CAAC,EAAE,OAAO,CAAC;CACxB;AAED;;GAEG;AACH,MAAM,WAAW,QAAQ;IACvB,IAAI,EAAE,GAAG,CAAC;IACV,IAAI,EAAE,MAAM,GAAG,SAAS,CAAC;IACzB,MAAM,EAAE,GAAG,CAAC;IACZ,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,gBAAgB;AAChB,MAAM,WAAW,YAAY;IAC3B,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,gBAAgB;AAChB,
|
|
1
|
+
{"version":3,"file":"Request.d.ts","sourceRoot":"","sources":["../../../src/backend/Request.ts"],"names":[],"mappings":"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"}
|