@dxs-ts/eveli-ide 0.0.73 → 0.0.74
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/index.d.ts +45 -45
- package/build/index.js +13 -6
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -888,51 +888,6 @@ export declare const wrenchIntl: {
|
|
|
888
888
|
export { }
|
|
889
889
|
|
|
890
890
|
|
|
891
|
-
declare namespace HdesClient {
|
|
892
|
-
}
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
declare namespace HdesClient {
|
|
896
|
-
class StoreErrorImpl extends Error {
|
|
897
|
-
private _props;
|
|
898
|
-
constructor(props: HdesApi.ServiceErrorProps);
|
|
899
|
-
get name(): string;
|
|
900
|
-
get status(): number;
|
|
901
|
-
get errors(): HdesApi.ServiceErrorMsg[];
|
|
902
|
-
}
|
|
903
|
-
class DefaultStore implements HdesApi.Store {
|
|
904
|
-
private _config;
|
|
905
|
-
private _updateStarted;
|
|
906
|
-
private _iapSessionRefreshWindow;
|
|
907
|
-
private _defRef;
|
|
908
|
-
constructor(config: HdesApi.StoreConfig);
|
|
909
|
-
iapRefresh(): Promise<void>;
|
|
910
|
-
iapLogin(): boolean;
|
|
911
|
-
handle401(): Promise<void>;
|
|
912
|
-
fetch<T>(path: string, req?: RequestInit): Promise<T>;
|
|
913
|
-
}
|
|
914
|
-
class ServiceImpl implements HdesApi.Service {
|
|
915
|
-
private _store;
|
|
916
|
-
private _branch;
|
|
917
|
-
private _headers;
|
|
918
|
-
constructor(store: HdesApi.Store, branchName?: string);
|
|
919
|
-
withBranch(branchName?: string): ServiceImpl;
|
|
920
|
-
get branch(): string | undefined;
|
|
921
|
-
create(): HdesApi.CreateBuilder;
|
|
922
|
-
delete(): HdesApi.DeleteBuilder;
|
|
923
|
-
update(id: string, body: HdesApi.AstCommand[]): Promise<HdesApi.Site>;
|
|
924
|
-
createAsset(name: string, desc: string | undefined, type: HdesApi.AstBodyType | "SITE", body?: HdesApi.AstCommand[]): Promise<HdesApi.Site>;
|
|
925
|
-
ast(id: string, body: HdesApi.AstCommand[]): Promise<HdesApi.Entity<any>>;
|
|
926
|
-
getSite(): Promise<HdesApi.Site>;
|
|
927
|
-
debug(debug: HdesApi.DebugRequest): Promise<HdesApi.DebugResponse>;
|
|
928
|
-
copy(id: string, name: string): Promise<HdesApi.Site>;
|
|
929
|
-
version(): Promise<HdesApi.VersionEntity>;
|
|
930
|
-
diff(input: HdesApi.DiffRequest): Promise<HdesApi.DiffResponse>;
|
|
931
|
-
summary(tagId: string): Promise<HdesApi.AstTagSummary>;
|
|
932
|
-
}
|
|
933
|
-
}
|
|
934
|
-
|
|
935
|
-
|
|
936
891
|
declare module 'react' {
|
|
937
892
|
interface CSSProperties {
|
|
938
893
|
'--tree-view-text-color'?: string;
|
|
@@ -985,6 +940,51 @@ declare module '@mui/material/styles' {
|
|
|
985
940
|
}
|
|
986
941
|
|
|
987
942
|
|
|
943
|
+
declare namespace HdesClient {
|
|
944
|
+
}
|
|
945
|
+
|
|
946
|
+
|
|
947
|
+
declare namespace HdesClient {
|
|
948
|
+
class StoreErrorImpl extends Error {
|
|
949
|
+
private _props;
|
|
950
|
+
constructor(props: HdesApi.ServiceErrorProps);
|
|
951
|
+
get name(): string;
|
|
952
|
+
get status(): number;
|
|
953
|
+
get errors(): HdesApi.ServiceErrorMsg[];
|
|
954
|
+
}
|
|
955
|
+
class DefaultStore implements HdesApi.Store {
|
|
956
|
+
private _config;
|
|
957
|
+
private _updateStarted;
|
|
958
|
+
private _iapSessionRefreshWindow;
|
|
959
|
+
private _defRef;
|
|
960
|
+
constructor(config: HdesApi.StoreConfig);
|
|
961
|
+
iapRefresh(): Promise<void>;
|
|
962
|
+
iapLogin(): boolean;
|
|
963
|
+
handle401(): Promise<void>;
|
|
964
|
+
fetch<T>(path: string, req?: RequestInit): Promise<T>;
|
|
965
|
+
}
|
|
966
|
+
class ServiceImpl implements HdesApi.Service {
|
|
967
|
+
private _store;
|
|
968
|
+
private _branch;
|
|
969
|
+
private _headers;
|
|
970
|
+
constructor(store: HdesApi.Store, branchName?: string);
|
|
971
|
+
withBranch(branchName?: string): ServiceImpl;
|
|
972
|
+
get branch(): string | undefined;
|
|
973
|
+
create(): HdesApi.CreateBuilder;
|
|
974
|
+
delete(): HdesApi.DeleteBuilder;
|
|
975
|
+
update(id: string, body: HdesApi.AstCommand[]): Promise<HdesApi.Site>;
|
|
976
|
+
createAsset(name: string, desc: string | undefined, type: HdesApi.AstBodyType | "SITE", body?: HdesApi.AstCommand[]): Promise<HdesApi.Site>;
|
|
977
|
+
ast(id: string, body: HdesApi.AstCommand[]): Promise<HdesApi.Entity<any>>;
|
|
978
|
+
getSite(): Promise<HdesApi.Site>;
|
|
979
|
+
debug(debug: HdesApi.DebugRequest): Promise<HdesApi.DebugResponse>;
|
|
980
|
+
copy(id: string, name: string): Promise<HdesApi.Site>;
|
|
981
|
+
version(): Promise<HdesApi.VersionEntity>;
|
|
982
|
+
diff(input: HdesApi.DiffRequest): Promise<HdesApi.DiffResponse>;
|
|
983
|
+
summary(tagId: string): Promise<HdesApi.AstTagSummary>;
|
|
984
|
+
}
|
|
985
|
+
}
|
|
986
|
+
|
|
987
|
+
|
|
988
988
|
declare namespace WrenchComposerApi {
|
|
989
989
|
interface Nav {
|
|
990
990
|
value?: string | null;
|
package/build/index.js
CHANGED
|
@@ -48110,7 +48110,7 @@ const zX = ({ site: e }) => {
|
|
|
48110
48110
|
] })
|
|
48111
48111
|
}
|
|
48112
48112
|
);
|
|
48113
|
-
}, uc = { tag: "eveli-ide-0.0.
|
|
48113
|
+
}, uc = { tag: "eveli-ide-0.0.74", built: "11/12/2024" }, GX = (e, t, n) => {
|
|
48114
48114
|
var i, r, s, o, l, a, u, d;
|
|
48115
48115
|
return [
|
|
48116
48116
|
{
|
|
@@ -84472,7 +84472,9 @@ const ere = () => {
|
|
|
84472
84472
|
"feedback.noFeedback.info2": "Please send an external comment to customer, then you can publish the external comment.",
|
|
84473
84473
|
"button.cancel": "Cancel",
|
|
84474
84474
|
"button.publish": "Publish",
|
|
84475
|
-
"button.delete": "Delete this feedback"
|
|
84475
|
+
"button.delete": "Delete this feedback",
|
|
84476
|
+
"button.unpublish": "Unpublish this feedback",
|
|
84477
|
+
"button.update": "Update"
|
|
84476
84478
|
}, sre = {
|
|
84477
84479
|
"explorer.title": "Public feedback",
|
|
84478
84480
|
"menu.tasks": "Tasks",
|
|
@@ -84535,7 +84537,8 @@ const ere = () => {
|
|
|
84535
84537
|
"feedback.noFeedback.info2": "Please send an external comment to customer, then you can publish the external comment.",
|
|
84536
84538
|
"button.cancel": "Cancel",
|
|
84537
84539
|
"button.publish": "Publish",
|
|
84538
|
-
"button.delete": "Delete this feedback"
|
|
84540
|
+
"button.delete": "Delete this feedback",
|
|
84541
|
+
"button.update": "Update"
|
|
84539
84542
|
}, lre = {
|
|
84540
84543
|
en: ore,
|
|
84541
84544
|
fi: are,
|
|
@@ -84586,7 +84589,8 @@ const cre = ({ taskId: e, onComplete: t }) => {
|
|
|
84586
84589
|
processId: v.processId,
|
|
84587
84590
|
userId: v.userId,
|
|
84588
84591
|
subLabelKey: v.subLabelKey,
|
|
84589
|
-
subLabelValue: v.subLabelValue
|
|
84592
|
+
subLabelValue: v.subLabelValue,
|
|
84593
|
+
reply: v.replys.toString()
|
|
84590
84594
|
}), u(v), p(v.replys.join(`\r
|
|
84591
84595
|
\r
|
|
84592
84596
|
`));
|
|
@@ -84674,7 +84678,8 @@ const cre = ({ taskId: e, onComplete: t }) => {
|
|
|
84674
84678
|
processId: S.processId,
|
|
84675
84679
|
userId: S.userId,
|
|
84676
84680
|
subLabelKey: S.subLabelKey,
|
|
84677
|
-
subLabelValue: S.subLabelValue
|
|
84681
|
+
subLabelValue: S.subLabelValue,
|
|
84682
|
+
reply: E
|
|
84678
84683
|
}), v(S), x(S.replys.join(`\r
|
|
84679
84684
|
\r
|
|
84680
84685
|
`));
|
|
@@ -84692,7 +84697,7 @@ const cre = ({ taskId: e, onComplete: t }) => {
|
|
|
84692
84697
|
}
|
|
84693
84698
|
return !p || !k ? /* @__PURE__ */ y(EN, {}) : /* @__PURE__ */ Q("div", { style: { display: "flex", flexDirection: "column", padding: r.spacing(3) }, children: [
|
|
84694
84699
|
/* @__PURE__ */ Q(ue, { display: "flex", alignItems: "center", children: [
|
|
84695
|
-
/* @__PURE__ */ y(Ne, { variant: "h3", fontWeight: "bold", mr:
|
|
84700
|
+
/* @__PURE__ */ y(Ne, { variant: "h3", fontWeight: "bold", mr: 1, children: i.formatMessage({ id: "feedback.update.title" }) }),
|
|
84696
84701
|
/* @__PURE__ */ y(LS, { size: "LARGE", taskId: e }),
|
|
84697
84702
|
/* @__PURE__ */ y(ue, { flexGrow: 1 }),
|
|
84698
84703
|
/* @__PURE__ */ y(dre, { approvalCount: k.thumbsUpCount, disapprovalCount: k.thumbsDownCount })
|
|
@@ -86376,6 +86381,7 @@ const qre = {
|
|
|
86376
86381
|
"button.cancel": "Cancel",
|
|
86377
86382
|
"button.delete": "Delete this feedback",
|
|
86378
86383
|
"button.unpublish": "Unpublish this feedback",
|
|
86384
|
+
"button.update": "Update",
|
|
86379
86385
|
"button.publish": "Publish",
|
|
86380
86386
|
"button.accept": "Accept",
|
|
86381
86387
|
"button.edit": "Edit",
|
|
@@ -86591,6 +86597,7 @@ const qre = {
|
|
|
86591
86597
|
"button.edit": "Avaa",
|
|
86592
86598
|
"button.close": "Sulje",
|
|
86593
86599
|
"button.reject": "Hylkää",
|
|
86600
|
+
"button.update": "Update",
|
|
86594
86601
|
"button.send": "Lähetä",
|
|
86595
86602
|
"button.dismiss": "Sulje",
|
|
86596
86603
|
"button.editRoles": "Muokkaa",
|