@dxs-ts/eveli-ide 0.0.85 → 0.0.87
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 +5 -5
- 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 StencilComposerApi {
|
|
989
989
|
interface SearchData {
|
|
990
990
|
values: readonly SearchDataEntry[];
|
package/build/index.js
CHANGED
|
@@ -48181,7 +48181,7 @@ const efe = ({ site: e }) => {
|
|
|
48181
48181
|
] })
|
|
48182
48182
|
}
|
|
48183
48183
|
);
|
|
48184
|
-
}, Yp = { tag: "eveli-ide-0.0.
|
|
48184
|
+
}, Yp = { tag: "eveli-ide-0.0.87", built: "08/01/2025" }, rfe = (e, t, n) => {
|
|
48185
48185
|
var i, r, s, a, l, o, u, c;
|
|
48186
48186
|
return [
|
|
48187
48187
|
{
|
|
@@ -84808,7 +84808,7 @@ const k0e = ({ taskId: e, onComplete: t }) => {
|
|
|
84808
84808
|
labelValue: b.labelValue,
|
|
84809
84809
|
locale: b.locale,
|
|
84810
84810
|
origin: b.origin,
|
|
84811
|
-
|
|
84811
|
+
taskId: b.taskId,
|
|
84812
84812
|
userId: b.userId,
|
|
84813
84813
|
subLabelKey: b.subLabelKey,
|
|
84814
84814
|
subLabelValue: b.subLabelValue,
|
|
@@ -115225,8 +115225,8 @@ class EDe extends se.Component {
|
|
|
115225
115225
|
tt(this, "renderTextRoles", (n) => n.map((i) => this.findRoleDescription(i)).join(", "));
|
|
115226
115226
|
tt(this, "getTaskKeywords", (n) => n.keyWords.flatMap((i) => i.split(",")));
|
|
115227
115227
|
tt(this, "handleStatusCallback", async (n) => {
|
|
115228
|
-
var i, r, s, a, l, o, u, c
|
|
115229
|
-
n === "OPEN" && (((r = (i = this.formRef) == null ? void 0 : i.current) == null ? void 0 : r.values.status) === "NEW" || ((a = (s = this.formRef) == null ? void 0 : s.current) == null ? void 0 : a.values.status) === void 0) && (
|
|
115228
|
+
var i, r, s, a, l, o, u, c;
|
|
115229
|
+
n === "OPEN" && (((r = (i = this.formRef) == null ? void 0 : i.current) == null ? void 0 : r.values.status) === "NEW" || ((a = (s = this.formRef) == null ? void 0 : s.current) == null ? void 0 : a.values.status) === void 0) && (await this.formRef.current.setFieldValue("assignedUser", ((o = (l = this.props) == null ? void 0 : l.currentUser) == null ? void 0 : o.name) || ""), await this.formRef.current.setFieldValue("assignedUserEmail", ((c = (u = this.props) == null ? void 0 : u.currentUser) == null ? void 0 : c.email) || ""));
|
|
115230
115230
|
});
|
|
115231
115231
|
this.state = {
|
|
115232
115232
|
userList: [],
|
|
@@ -115442,7 +115442,7 @@ class EDe extends se.Component {
|
|
|
115442
115442
|
value: { userName: c.assignedUser, userEmail: c.assignedUserEmail },
|
|
115443
115443
|
onInputChange: (S, E) => {
|
|
115444
115444
|
var y;
|
|
115445
|
-
E !== c.assignedUser && A("assignedUserEmail", ((y = this.state.userList.find((N) => N.userName === E)) == null ? void 0 : y.userEmail) || ""), A("assignedUser", E);
|
|
115445
|
+
E !== c.assignedUser && (A("assignedUserEmail", ((y = this.state.userList.find((N) => N.userName === E)) == null ? void 0 : y.userEmail) || ""), A("assignedUser", E));
|
|
115446
115446
|
},
|
|
115447
115447
|
renderInput: (S) => /* @__PURE__ */ d(
|
|
115448
115448
|
br,
|