@rsdoctor/types 0.1.4 → 0.1.6-beta.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/dist/manifest.d.ts +8 -0
- package/dist/rule/code/E1004.js +1 -1
- package/dist/sdk/hooks.d.ts +1 -0
- package/dist/sdk/instance.d.ts +1 -0
- package/package.json +1 -1
package/dist/manifest.d.ts
CHANGED
|
@@ -2,6 +2,10 @@ import { PlainObject, ObjectPropertyNames } from './common';
|
|
|
2
2
|
import { StoreData } from './sdk';
|
|
3
3
|
export interface RsdoctorManifest {
|
|
4
4
|
client: RsdoctorManifestClient;
|
|
5
|
+
/**
|
|
6
|
+
* manifest url in tos, used by inner-rsdoctor.
|
|
7
|
+
*/
|
|
8
|
+
cloudManifestUrl?: string;
|
|
5
9
|
data: RsdoctorManifestData;
|
|
6
10
|
/** current build name */
|
|
7
11
|
name?: string;
|
|
@@ -18,6 +22,10 @@ export interface RsdoctorManifestSeriesData {
|
|
|
18
22
|
}
|
|
19
23
|
export interface RsdoctorManifestWithShardingFiles extends Omit<RsdoctorManifest, 'data'> {
|
|
20
24
|
data: Record<keyof RsdoctorManifestData, string[] | string>;
|
|
25
|
+
/**
|
|
26
|
+
* manifest data shareding file urls in tos, used by inner-rsdoctor.
|
|
27
|
+
*/
|
|
28
|
+
cloudData?: Record<keyof RsdoctorManifestData, string[] | string>;
|
|
21
29
|
/**
|
|
22
30
|
* local server will proxy the manifest content and inject `__LOCAL__SERVER__: true`
|
|
23
31
|
*/
|
package/dist/rule/code/E1004.js
CHANGED
package/dist/sdk/hooks.d.ts
CHANGED
package/dist/sdk/instance.d.ts
CHANGED