@dxs-ts/eveli-ide 0.0.316 → 0.0.318
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/api-stencil/StencilApi.d.ts +8 -0
- package/build/{cssMode-C-6DZnP7.js → cssMode-DAFsT-e-.js} +1 -1
- package/build/eveli-fetch/createFileFetch.d.ts +10 -0
- package/build/fetch/worker.rest.api.assets.stencil.commitlogs.get.d.ts +6 -0
- package/build/fetchTree.gen.d.ts +12 -0
- package/build/{freemarker2-BBYZhLlW.js → freemarker2-CvZYc_Ep.js} +1 -1
- package/build/{handlebars-Sw0vhojM.js → handlebars-Cs2aQrzT.js} +1 -1
- package/build/{html-CzRwhEwr.js → html-Dg6l3p2y.js} +1 -1
- package/build/{htmlMode-BvkM-M1H.js → htmlMode-CilbAHy3.js} +1 -1
- package/build/{index-CRoXeqj7.js → index-BGfK45Uw.js} +24711 -24687
- package/build/index.js +1 -1
- package/build/{javascript-Dvnja9Hx.js → javascript-DBB8oAO4.js} +1 -1
- package/build/{jsonMode-DxuJ9hxl.js → jsonMode-Xrt1rkxU.js} +1 -1
- package/build/{liquid-D98gWBRS.js → liquid-6R6qfByH.js} +1 -1
- package/build/{mdx-CGWOlNFv.js → mdx-BbW9lxNa.js} +1 -1
- package/build/{python-BUMNDcm5.js → python-Ci3l2UTk.js} +1 -1
- package/build/{razor-2xxxEyBp.js → razor-B9EjQEey.js} +1 -1
- package/build/stencil-setup/Reducer.d.ts +1 -0
- package/build/stencil-setup/SessionData.d.ts +4 -0
- package/build/stencil-setup/ide.d.ts +2 -0
- package/build/{tsMode-D3AxuL0e.js → tsMode-DT6I7AR1.js} +1 -1
- package/build/{typescript-BiQdv9Co.js → typescript-B2ZwbeFu.js} +1 -1
- package/build/{xml-CQzwrSt-.js → xml-Bh0E2wuV.js} +1 -1
- package/build/{yaml-CRFkEGjI.js → yaml-C20Bz18J.js} +1 -1
- package/package.json +1 -1
- package/build/stencil-explorer/article/ArticlePageItem1.d.ts +0 -7
|
@@ -29,6 +29,12 @@ export declare namespace StencilApi {
|
|
|
29
29
|
type TemplateId = string;
|
|
30
30
|
type LinkType = "internal" | "external" | "phone";
|
|
31
31
|
type TemplateType = "page";
|
|
32
|
+
interface SiteCommitLog {
|
|
33
|
+
objectId: string;
|
|
34
|
+
commitId: string;
|
|
35
|
+
createdAt: string;
|
|
36
|
+
createdBy: string;
|
|
37
|
+
}
|
|
32
38
|
interface Site {
|
|
33
39
|
name: string;
|
|
34
40
|
contentType: "OK" | "NOT_CREATED" | "EMPTY" | "ERRORS" | "NO_CONNECTION";
|
|
@@ -198,6 +204,7 @@ export declare namespace StencilApi {
|
|
|
198
204
|
}
|
|
199
205
|
interface Service {
|
|
200
206
|
getSite(): Promise<Site>;
|
|
207
|
+
getSiteCommitLog(): Promise<SiteCommitLog[]>;
|
|
201
208
|
getReleaseContent(releaseId: string): Promise<{}>;
|
|
202
209
|
create(): CreateBuilder;
|
|
203
210
|
delete(): DeleteBuilder;
|
|
@@ -288,6 +295,7 @@ export declare namespace StencilApi {
|
|
|
288
295
|
}
|
|
289
296
|
interface StencilRestApi {
|
|
290
297
|
getSite(): Promise<Site>;
|
|
298
|
+
getSiteCommitLog(): Promise<SiteCommitLog[]>;
|
|
291
299
|
getReleaseContent(releaseId: string): Promise<{}>;
|
|
292
300
|
create(): CreateBuilder;
|
|
293
301
|
delete(): DeleteBuilder;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as et } from "./index-
|
|
1
|
+
import { m as et } from "./index-BGfK45Uw.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
|
|
@@ -300,6 +300,16 @@ export declare class RootFileFetch {
|
|
|
300
300
|
}, {}, {
|
|
301
301
|
update: () => import("..").StencilApi.UpdateBuilder;
|
|
302
302
|
}>;
|
|
303
|
+
} | {
|
|
304
|
+
id: "worker/rest/api/assets/stencil/commitlogs.GET";
|
|
305
|
+
path: "worker/rest/api/assets/stencil/commitlogs";
|
|
306
|
+
method: "GET";
|
|
307
|
+
params: {};
|
|
308
|
+
hook: HookImpl<"worker/rest/api/assets/stencil/commitlogs.GET", Hook<{}, {
|
|
309
|
+
getSiteCommitLog: () => Promise<import("..").StencilApi.SiteCommitLog[]>;
|
|
310
|
+
}>, "worker/rest/api/assets/stencil/commitlogs", "GET", {}, {}, {
|
|
311
|
+
getSiteCommitLog: () => Promise<import("..").StencilApi.SiteCommitLog[]>;
|
|
312
|
+
}>;
|
|
303
313
|
} | {
|
|
304
314
|
id: "worker/rest/api/assets/stencil.GET";
|
|
305
315
|
path: "worker/rest/api/assets/stencil";
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { StencilApi } from '../api-stencil';
|
|
2
|
+
export declare const Hook: import('../eveli-fetch').HookImpl<"worker/rest/api/assets/stencil/commitlogs.GET", import('../eveli-fetch').Hook<{}, {
|
|
3
|
+
getSiteCommitLog: () => Promise<StencilApi.SiteCommitLog[]>;
|
|
4
|
+
}>, "worker/rest/api/assets/stencil/commitlogs", "GET", {}, {}, {
|
|
5
|
+
getSiteCommitLog: () => Promise<StencilApi.SiteCommitLog[]>;
|
|
6
|
+
}>;
|
package/build/fetchTree.gen.d.ts
CHANGED
|
@@ -153,6 +153,11 @@ declare const workerRestApiAssetsStencilAssetTypePUTRoute: import('./eveli-fetch
|
|
|
153
153
|
}, {}, {
|
|
154
154
|
update: () => import("./index.ts").StencilApi.UpdateBuilder;
|
|
155
155
|
}>;
|
|
156
|
+
declare const workerRestApiAssetsStencilCommitlogsGETRoute: import('./eveli-fetch').HookImpl<"worker/rest/api/assets/stencil/commitlogs.GET", import('./eveli-fetch').Hook<{}, {
|
|
157
|
+
getSiteCommitLog: () => Promise<import("./index.ts").StencilApi.SiteCommitLog[]>;
|
|
158
|
+
}>, "worker/rest/api/assets/stencil/commitlogs", "GET", {}, {}, {
|
|
159
|
+
getSiteCommitLog: () => Promise<import("./index.ts").StencilApi.SiteCommitLog[]>;
|
|
160
|
+
}>;
|
|
156
161
|
declare const workerRestApiAssetsStencilGETRoute: import('./eveli-fetch').HookImpl<"worker/rest/api/assets/stencil.GET", import('./eveli-fetch').Hook<{}, {
|
|
157
162
|
getSite: () => Promise<import("./index.ts").StencilApi.Site>;
|
|
158
163
|
}>, "worker/rest/api/assets/stencil", "GET", {}, {}, {
|
|
@@ -646,6 +651,13 @@ declare module './eveli-fetch' {
|
|
|
646
651
|
};
|
|
647
652
|
hook: typeof workerRestApiAssetsStencilAssetTypePUTRoute;
|
|
648
653
|
};
|
|
654
|
+
'worker/rest/api/assets/stencil/commitlogs.GET': {
|
|
655
|
+
id: 'worker/rest/api/assets/stencil/commitlogs.GET';
|
|
656
|
+
path: 'worker/rest/api/assets/stencil/commitlogs';
|
|
657
|
+
method: 'GET';
|
|
658
|
+
params: {};
|
|
659
|
+
hook: typeof workerRestApiAssetsStencilCommitlogsGETRoute;
|
|
660
|
+
};
|
|
649
661
|
'worker/rest/api/assets/stencil.GET': {
|
|
650
662
|
id: 'worker/rest/api/assets/stencil.GET';
|
|
651
663
|
path: 'worker/rest/api/assets/stencil';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as f } from "./index-
|
|
1
|
+
import { m as f } from "./index-BGfK45Uw.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as l } from "./index-
|
|
1
|
+
import { m as l } from "./index-BGfK45Uw.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as s } from "./index-
|
|
1
|
+
import { m as s } from "./index-BGfK45Uw.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as lt } from "./index-
|
|
1
|
+
import { m as lt } from "./index-BGfK45Uw.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
|