@ms-cloudpack/api-server 0.34.5 → 0.35.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/lib/apis/addPackageOverride.d.ts +2 -2
- package/lib/apis/ensurePackageBundled.d.ts +2 -2
- package/lib/apis/getData.d.ts +2 -2
- package/lib/apis/getSessionId.d.ts +2 -2
- package/lib/apis/onDataChanged.d.ts +2 -2
- package/lib/apis/openCodeEditor.d.ts +2 -2
- package/lib/apis/openConfigEditor.d.ts +2 -2
- package/lib/apis/openFilePath.d.ts +2 -2
- package/lib/apis/reportMetric.d.ts +2 -2
- package/lib/apis/syncDownload.d.ts +2 -2
- package/lib/apis/syncUpload.d.ts +2 -2
- package/lib/apis/validatePackageOverride.d.ts +2 -2
- package/lib/data/busSources.d.ts +5 -161
- package/lib/data/busSources.d.ts.map +1 -1
- package/lib/index.browser.d.ts +1 -14
- package/lib/index.browser.d.ts.map +1 -1
- package/lib/index.browser.js +1 -1
- package/lib/index.browser.js.map +1 -1
- package/lib/trpc/common.d.ts +3 -3
- package/lib/trpc/createAppRouter.d.ts +25 -25
- package/lib/trpc/createCloudpackServer.d.ts +1 -1
- package/lib/trpc/createRouterFromApis.d.ts +1 -1
- package/lib/types/TaskDescription.d.ts +3 -119
- package/lib/types/TaskDescription.d.ts.map +1 -1
- package/lib/types/TaskEndDescription.d.ts +0 -116
- package/lib/types/TaskEndDescription.d.ts.map +1 -1
- package/lib/types/TaskMessage.d.ts +0 -57
- package/lib/types/TaskMessage.d.ts.map +1 -1
- package/lib/types/TaskMessage.js +0 -2
- package/lib/types/TaskMessage.js.map +1 -1
- package/lib/types/TaskMessageLocation.d.ts +0 -9
- package/lib/types/TaskMessageLocation.d.ts.map +1 -1
- package/lib/types/TaskMessageLocation.js +0 -3
- package/lib/types/TaskMessageLocation.js.map +1 -1
- package/lib/types/TaskResponse.d.ts +0 -148
- package/lib/types/TaskResponse.d.ts.map +1 -1
- package/lib/types/TaskResult.d.ts +0 -116
- package/lib/types/TaskResult.d.ts.map +1 -1
- package/package.json +8 -8
|
@@ -36,13 +36,13 @@ export declare function addPackageOverride(params: ApiParams<AddPackageOverrideI
|
|
|
36
36
|
export declare namespace addPackageOverride {
|
|
37
37
|
var procedure: import("@trpc/server").BuildProcedure<"mutation", {
|
|
38
38
|
_config: import("@trpc/server").RootConfig<{
|
|
39
|
-
ctx: import("../index.
|
|
39
|
+
ctx: import("../index.js").Context;
|
|
40
40
|
meta: object;
|
|
41
41
|
errorShape: import("@trpc/server").DefaultErrorShape;
|
|
42
42
|
transformer: import("@trpc/server").DefaultDataTransformer;
|
|
43
43
|
}>;
|
|
44
44
|
_meta: object;
|
|
45
|
-
_ctx_out: import("../index.
|
|
45
|
+
_ctx_out: import("../index.js").Context;
|
|
46
46
|
_input_in: {
|
|
47
47
|
packageName: string;
|
|
48
48
|
importPath: string;
|
|
@@ -55,13 +55,13 @@ export declare function ensurePackageBundled(params: ApiParams<EnsurePackageBund
|
|
|
55
55
|
export declare namespace ensurePackageBundled {
|
|
56
56
|
var procedure: import("@trpc/server").BuildProcedure<"mutation", {
|
|
57
57
|
_config: import("@trpc/server").RootConfig<{
|
|
58
|
-
ctx: import("../index.
|
|
58
|
+
ctx: import("../index.js").Context;
|
|
59
59
|
meta: object;
|
|
60
60
|
errorShape: import("@trpc/server").DefaultErrorShape;
|
|
61
61
|
transformer: import("@trpc/server").DefaultDataTransformer;
|
|
62
62
|
}>;
|
|
63
63
|
_meta: object;
|
|
64
|
-
_ctx_out: import("../index.
|
|
64
|
+
_ctx_out: import("../index.js").Context;
|
|
65
65
|
_input_in: EnsurePackageBundledInput;
|
|
66
66
|
_input_out: EnsurePackageBundledInput;
|
|
67
67
|
_output_in: EnsurePackageBundledOutput;
|
package/lib/apis/getData.d.ts
CHANGED
|
@@ -14,13 +14,13 @@ export declare function getData(params: ApiParams<GetDataInput, 'bus'>): GetData
|
|
|
14
14
|
export declare namespace getData {
|
|
15
15
|
var procedure: import("@trpc/server").BuildProcedure<"query", {
|
|
16
16
|
_config: import("@trpc/server").RootConfig<{
|
|
17
|
-
ctx: import("../index.
|
|
17
|
+
ctx: import("../index.js").Context;
|
|
18
18
|
meta: object;
|
|
19
19
|
errorShape: import("@trpc/server").DefaultErrorShape;
|
|
20
20
|
transformer: import("@trpc/server").DefaultDataTransformer;
|
|
21
21
|
}>;
|
|
22
22
|
_meta: object;
|
|
23
|
-
_ctx_out: import("../index.
|
|
23
|
+
_ctx_out: import("../index.js").Context;
|
|
24
24
|
_input_in: {
|
|
25
25
|
path: string[];
|
|
26
26
|
};
|
|
@@ -6,13 +6,13 @@ export declare function getSessionId(params: ApiParams<void, 'session'>): GetSes
|
|
|
6
6
|
export declare namespace getSessionId {
|
|
7
7
|
var procedure: import("@trpc/server").BuildProcedure<"query", {
|
|
8
8
|
_config: import("@trpc/server").RootConfig<{
|
|
9
|
-
ctx: import("../index.
|
|
9
|
+
ctx: import("../index.js").Context;
|
|
10
10
|
meta: object;
|
|
11
11
|
errorShape: import("@trpc/server").DefaultErrorShape;
|
|
12
12
|
transformer: import("@trpc/server").DefaultDataTransformer;
|
|
13
13
|
}>;
|
|
14
14
|
_meta: object;
|
|
15
|
-
_ctx_out: import("../index.
|
|
15
|
+
_ctx_out: import("../index.js").Context;
|
|
16
16
|
_input_in: typeof import("@trpc/server").unsetMarker;
|
|
17
17
|
_input_out: typeof import("@trpc/server").unsetMarker;
|
|
18
18
|
_output_in: string | undefined;
|
|
@@ -17,13 +17,13 @@ export declare function onDataChanged(params: ApiParams<OnDataChangedInput, 'bus
|
|
|
17
17
|
export declare namespace onDataChanged {
|
|
18
18
|
var procedure: import("@trpc/server").BuildProcedure<"subscription", {
|
|
19
19
|
_config: import("@trpc/server").RootConfig<{
|
|
20
|
-
ctx: import("../index.
|
|
20
|
+
ctx: import("../index.js").Context;
|
|
21
21
|
meta: object;
|
|
22
22
|
errorShape: import("@trpc/server").DefaultErrorShape;
|
|
23
23
|
transformer: import("@trpc/server").DefaultDataTransformer;
|
|
24
24
|
}>;
|
|
25
25
|
_meta: object;
|
|
26
|
-
_ctx_out: import("../index.
|
|
26
|
+
_ctx_out: import("../index.js").Context;
|
|
27
27
|
_input_in: {
|
|
28
28
|
path: string[];
|
|
29
29
|
};
|
|
@@ -21,13 +21,13 @@ export declare function openCodeEditor(params: ApiParams<OpenCodeEditorInput, ne
|
|
|
21
21
|
export declare namespace openCodeEditor {
|
|
22
22
|
var procedure: import("@trpc/server").BuildProcedure<"mutation", {
|
|
23
23
|
_config: import("@trpc/server").RootConfig<{
|
|
24
|
-
ctx: import("../index.
|
|
24
|
+
ctx: import("../index.js").Context;
|
|
25
25
|
meta: object;
|
|
26
26
|
errorShape: import("@trpc/server").DefaultErrorShape;
|
|
27
27
|
transformer: import("@trpc/server").DefaultDataTransformer;
|
|
28
28
|
}>;
|
|
29
29
|
_meta: object;
|
|
30
|
-
_ctx_out: import("../index.
|
|
30
|
+
_ctx_out: import("../index.js").Context;
|
|
31
31
|
_input_in: {
|
|
32
32
|
rootPath: string;
|
|
33
33
|
relativePath?: string | undefined;
|
|
@@ -3,12 +3,12 @@ export declare function openConfigEditor(params: ApiParams<void, 'session'>): Pr
|
|
|
3
3
|
export declare namespace openConfigEditor {
|
|
4
4
|
var procedure: import("@trpc/server").BuildProcedure<"mutation", {
|
|
5
5
|
_config: import("@trpc/server").RootConfig<{
|
|
6
|
-
ctx: import("../index.
|
|
6
|
+
ctx: import("../index.js").Context;
|
|
7
7
|
meta: object;
|
|
8
8
|
errorShape: import("@trpc/server").DefaultErrorShape;
|
|
9
9
|
transformer: import("@trpc/server").DefaultDataTransformer;
|
|
10
10
|
}>;
|
|
11
|
-
_ctx_out: import("../index.
|
|
11
|
+
_ctx_out: import("../index.js").Context;
|
|
12
12
|
_input_in: typeof import("@trpc/server").unsetMarker;
|
|
13
13
|
_input_out: typeof import("@trpc/server").unsetMarker;
|
|
14
14
|
_output_in: typeof import("@trpc/server").unsetMarker;
|
|
@@ -15,13 +15,13 @@ export declare function openFilePath(params: ApiParams<OpenFilePathInput, 'sessi
|
|
|
15
15
|
export declare namespace openFilePath {
|
|
16
16
|
var procedure: import("@trpc/server").BuildProcedure<"mutation", {
|
|
17
17
|
_config: import("@trpc/server").RootConfig<{
|
|
18
|
-
ctx: import("../index.
|
|
18
|
+
ctx: import("../index.js").Context;
|
|
19
19
|
meta: object;
|
|
20
20
|
errorShape: import("@trpc/server").DefaultErrorShape;
|
|
21
21
|
transformer: import("@trpc/server").DefaultDataTransformer;
|
|
22
22
|
}>;
|
|
23
23
|
_meta: object;
|
|
24
|
-
_ctx_out: import("../index.
|
|
24
|
+
_ctx_out: import("../index.js").Context;
|
|
25
25
|
_input_in: {
|
|
26
26
|
rootPath: string;
|
|
27
27
|
relativePath?: string | undefined;
|
|
@@ -15,13 +15,13 @@ export declare function reportMetric(params: ApiParams<ReportMetricInput, 'telem
|
|
|
15
15
|
export declare namespace reportMetric {
|
|
16
16
|
var procedure: import("@trpc/server").BuildProcedure<"mutation", {
|
|
17
17
|
_config: import("@trpc/server").RootConfig<{
|
|
18
|
-
ctx: import("../index.
|
|
18
|
+
ctx: import("../index.js").Context;
|
|
19
19
|
meta: object;
|
|
20
20
|
errorShape: import("@trpc/server").DefaultErrorShape;
|
|
21
21
|
transformer: import("@trpc/server").DefaultDataTransformer;
|
|
22
22
|
}>;
|
|
23
23
|
_meta: object;
|
|
24
|
-
_ctx_out: import("../index.
|
|
24
|
+
_ctx_out: import("../index.js").Context;
|
|
25
25
|
_input_in: {
|
|
26
26
|
value: number;
|
|
27
27
|
metric: string;
|
|
@@ -12,13 +12,13 @@ export declare function syncDownload(params: ApiParams<SyncDownloadInput, 'sessi
|
|
|
12
12
|
export declare namespace syncDownload {
|
|
13
13
|
var procedure: import("@trpc/server").BuildProcedure<"mutation", {
|
|
14
14
|
_config: import("@trpc/server").RootConfig<{
|
|
15
|
-
ctx: import("../index.
|
|
15
|
+
ctx: import("../index.js").Context;
|
|
16
16
|
meta: object;
|
|
17
17
|
errorShape: import("@trpc/server").DefaultErrorShape;
|
|
18
18
|
transformer: import("@trpc/server").DefaultDataTransformer;
|
|
19
19
|
}>;
|
|
20
20
|
_meta: object;
|
|
21
|
-
_ctx_out: import("../index.
|
|
21
|
+
_ctx_out: import("../index.js").Context;
|
|
22
22
|
_input_in: {
|
|
23
23
|
loginMethod: "interactive" | "azure-cli" | "device-code";
|
|
24
24
|
};
|
package/lib/apis/syncUpload.d.ts
CHANGED
|
@@ -12,13 +12,13 @@ export declare function syncUpload(params: ApiParams<SyncUploadInput, 'session'
|
|
|
12
12
|
export declare namespace syncUpload {
|
|
13
13
|
var procedure: import("@trpc/server").BuildProcedure<"mutation", {
|
|
14
14
|
_config: import("@trpc/server").RootConfig<{
|
|
15
|
-
ctx: import("../index.
|
|
15
|
+
ctx: import("../index.js").Context;
|
|
16
16
|
meta: object;
|
|
17
17
|
errorShape: import("@trpc/server").DefaultErrorShape;
|
|
18
18
|
transformer: import("@trpc/server").DefaultDataTransformer;
|
|
19
19
|
}>;
|
|
20
20
|
_meta: object;
|
|
21
|
-
_ctx_out: import("../index.
|
|
21
|
+
_ctx_out: import("../index.js").Context;
|
|
22
22
|
_input_in: {
|
|
23
23
|
loginMethod: "interactive" | "azure-cli" | "device-code";
|
|
24
24
|
};
|
|
@@ -26,13 +26,13 @@ export declare function validatePackageOverride(params: ApiParams<ValidatePackag
|
|
|
26
26
|
export declare namespace validatePackageOverride {
|
|
27
27
|
var procedure: import("@trpc/server").BuildProcedure<"query", {
|
|
28
28
|
_config: import("@trpc/server").RootConfig<{
|
|
29
|
-
ctx: import("../index.
|
|
29
|
+
ctx: import("../index.js").Context;
|
|
30
30
|
meta: object;
|
|
31
31
|
errorShape: import("@trpc/server").DefaultErrorShape;
|
|
32
32
|
transformer: import("@trpc/server").DefaultDataTransformer;
|
|
33
33
|
}>;
|
|
34
34
|
_meta: object;
|
|
35
|
-
_ctx_out: import("../index.
|
|
35
|
+
_ctx_out: import("../index.js").Context;
|
|
36
36
|
_input_in: {
|
|
37
37
|
packageName: string;
|
|
38
38
|
importPath: string;
|