@dxs-ts/eveli-ide 0.0.72 → 0.0.73
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 +140 -140
- package/build/index.js +6217 -6219
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -888,6 +888,51 @@ 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
|
+
|
|
891
936
|
declare module 'react' {
|
|
892
937
|
interface CSSProperties {
|
|
893
938
|
'--tree-view-text-color'?: string;
|
|
@@ -940,48 +985,105 @@ declare module '@mui/material/styles' {
|
|
|
940
985
|
}
|
|
941
986
|
|
|
942
987
|
|
|
943
|
-
declare namespace
|
|
988
|
+
declare namespace WrenchComposerApi {
|
|
989
|
+
interface Nav {
|
|
990
|
+
value?: string | null;
|
|
991
|
+
}
|
|
992
|
+
interface TabData {
|
|
993
|
+
nav?: Nav;
|
|
994
|
+
withNav(nav: Nav): TabData;
|
|
995
|
+
}
|
|
996
|
+
interface Tab extends BurgerApi.TabSession<TabData> {
|
|
997
|
+
}
|
|
998
|
+
interface DebugSession {
|
|
999
|
+
error?: HdesApi.StoreError;
|
|
1000
|
+
debug?: HdesApi.DebugResponse;
|
|
1001
|
+
csv?: string;
|
|
1002
|
+
json?: string;
|
|
1003
|
+
selected: HdesApi.EntityId;
|
|
1004
|
+
inputType: DebugInputType;
|
|
1005
|
+
}
|
|
1006
|
+
type DebugInputType = "CSV" | "JSON";
|
|
1007
|
+
interface DebugSessions {
|
|
1008
|
+
selected?: HdesApi.EntityId;
|
|
1009
|
+
values: Record<HdesApi.EntityId, DebugSession>;
|
|
1010
|
+
}
|
|
1011
|
+
interface PageUpdate {
|
|
1012
|
+
saved: boolean;
|
|
1013
|
+
origin: HdesApi.Entity<any>;
|
|
1014
|
+
value: HdesApi.AstCommand[];
|
|
1015
|
+
withValue(value: HdesApi.AstCommand[]): PageUpdate;
|
|
1016
|
+
}
|
|
1017
|
+
interface Session {
|
|
1018
|
+
site: HdesApi.Site;
|
|
1019
|
+
pages: Record<HdesApi.EntityId, PageUpdate>;
|
|
1020
|
+
debug: DebugSessions;
|
|
1021
|
+
branchName?: string;
|
|
1022
|
+
getDecision(decisionName: string): undefined | HdesApi.Entity<HdesApi.AstDecision>;
|
|
1023
|
+
getFlow(flowName: string): undefined | HdesApi.Entity<HdesApi.AstFlow>;
|
|
1024
|
+
getService(serviceName: string): undefined | HdesApi.Entity<HdesApi.AstService>;
|
|
1025
|
+
getEntity(id: HdesApi.EntityId): undefined | HdesApi.Entity<any>;
|
|
1026
|
+
withDebug(page: DebugSession): Session;
|
|
1027
|
+
withPage(page: HdesApi.EntityId): Session;
|
|
1028
|
+
withPageValue(page: HdesApi.EntityId, value: HdesApi.AstCommand[]): Session;
|
|
1029
|
+
withoutPages(pages: HdesApi.EntityId[]): Session;
|
|
1030
|
+
withBranch(branchName?: string): Session;
|
|
1031
|
+
withSite(site: HdesApi.Site): Session;
|
|
1032
|
+
}
|
|
1033
|
+
interface Actions {
|
|
1034
|
+
handleLoad(): Promise<void>;
|
|
1035
|
+
handleLoadSite(site?: HdesApi.Site): Promise<void>;
|
|
1036
|
+
handleDebugUpdate(debug: DebugSession): void;
|
|
1037
|
+
handlePageUpdate(page: HdesApi.EntityId, value: HdesApi.AstCommand[]): void;
|
|
1038
|
+
handlePageUpdateRemove(pages: HdesApi.EntityId[]): void;
|
|
1039
|
+
handleBranchUpdate(branchName?: string): void;
|
|
1040
|
+
}
|
|
1041
|
+
interface ContextType {
|
|
1042
|
+
session: Session;
|
|
1043
|
+
actions: Actions;
|
|
1044
|
+
service: HdesApi.Service;
|
|
1045
|
+
}
|
|
944
1046
|
}
|
|
945
1047
|
|
|
946
1048
|
|
|
947
|
-
declare namespace
|
|
948
|
-
class
|
|
949
|
-
private
|
|
950
|
-
constructor(props:
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
get
|
|
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>;
|
|
1049
|
+
declare namespace WrenchComposerApi {
|
|
1050
|
+
class ImmutableTabData implements TabData {
|
|
1051
|
+
private _nav;
|
|
1052
|
+
constructor(props: {
|
|
1053
|
+
nav: Nav;
|
|
1054
|
+
});
|
|
1055
|
+
get nav(): Nav;
|
|
1056
|
+
withNav(nav: Nav): ImmutableTabData;
|
|
984
1057
|
}
|
|
1058
|
+
const createTab: (props: {
|
|
1059
|
+
nav: Nav;
|
|
1060
|
+
page?: HdesApi.Entity<any>;
|
|
1061
|
+
}) => ImmutableTabData;
|
|
1062
|
+
const ComposerContext: React.Context<ContextType>;
|
|
1063
|
+
const useUnsaved: (entity: HdesApi.Entity<any>) => boolean;
|
|
1064
|
+
const useComposer: () => {
|
|
1065
|
+
session: Session;
|
|
1066
|
+
service: HdesApi.Service;
|
|
1067
|
+
actions: Actions;
|
|
1068
|
+
site: HdesApi.Site;
|
|
1069
|
+
isArticleSaved: (entity: HdesApi.Entity<any>) => boolean;
|
|
1070
|
+
};
|
|
1071
|
+
const useSite: () => HdesApi.Site;
|
|
1072
|
+
const useBranchName: () => string | undefined;
|
|
1073
|
+
const useSession: () => Session;
|
|
1074
|
+
const useNav: () => {
|
|
1075
|
+
handleInTab: (props: {
|
|
1076
|
+
article: HdesApi.Entity<any>;
|
|
1077
|
+
}) => void;
|
|
1078
|
+
findTab: (article: HdesApi.Entity<any>) => Tab | undefined;
|
|
1079
|
+
};
|
|
1080
|
+
const useDebug: () => {
|
|
1081
|
+
handleDebugInit: (selected: HdesApi.EntityId) => void;
|
|
1082
|
+
};
|
|
1083
|
+
const Provider: React.FC<{
|
|
1084
|
+
children: React.ReactNode;
|
|
1085
|
+
service: HdesApi.Service;
|
|
1086
|
+
}>;
|
|
985
1087
|
}
|
|
986
1088
|
|
|
987
1089
|
|
|
@@ -1142,108 +1244,6 @@ declare namespace StencilComposerApi {
|
|
|
1142
1244
|
}>;
|
|
1143
1245
|
}
|
|
1144
1246
|
|
|
1145
|
-
|
|
1146
|
-
declare namespace WrenchComposerApi {
|
|
1147
|
-
interface Nav {
|
|
1148
|
-
value?: string | null;
|
|
1149
|
-
}
|
|
1150
|
-
interface TabData {
|
|
1151
|
-
nav?: Nav;
|
|
1152
|
-
withNav(nav: Nav): TabData;
|
|
1153
|
-
}
|
|
1154
|
-
interface Tab extends BurgerApi.TabSession<TabData> {
|
|
1155
|
-
}
|
|
1156
|
-
interface DebugSession {
|
|
1157
|
-
error?: HdesApi.StoreError;
|
|
1158
|
-
debug?: HdesApi.DebugResponse;
|
|
1159
|
-
csv?: string;
|
|
1160
|
-
json?: string;
|
|
1161
|
-
selected: HdesApi.EntityId;
|
|
1162
|
-
inputType: DebugInputType;
|
|
1163
|
-
}
|
|
1164
|
-
type DebugInputType = "CSV" | "JSON";
|
|
1165
|
-
interface DebugSessions {
|
|
1166
|
-
selected?: HdesApi.EntityId;
|
|
1167
|
-
values: Record<HdesApi.EntityId, DebugSession>;
|
|
1168
|
-
}
|
|
1169
|
-
interface PageUpdate {
|
|
1170
|
-
saved: boolean;
|
|
1171
|
-
origin: HdesApi.Entity<any>;
|
|
1172
|
-
value: HdesApi.AstCommand[];
|
|
1173
|
-
withValue(value: HdesApi.AstCommand[]): PageUpdate;
|
|
1174
|
-
}
|
|
1175
|
-
interface Session {
|
|
1176
|
-
site: HdesApi.Site;
|
|
1177
|
-
pages: Record<HdesApi.EntityId, PageUpdate>;
|
|
1178
|
-
debug: DebugSessions;
|
|
1179
|
-
branchName?: string;
|
|
1180
|
-
getDecision(decisionName: string): undefined | HdesApi.Entity<HdesApi.AstDecision>;
|
|
1181
|
-
getFlow(flowName: string): undefined | HdesApi.Entity<HdesApi.AstFlow>;
|
|
1182
|
-
getService(serviceName: string): undefined | HdesApi.Entity<HdesApi.AstService>;
|
|
1183
|
-
getEntity(id: HdesApi.EntityId): undefined | HdesApi.Entity<any>;
|
|
1184
|
-
withDebug(page: DebugSession): Session;
|
|
1185
|
-
withPage(page: HdesApi.EntityId): Session;
|
|
1186
|
-
withPageValue(page: HdesApi.EntityId, value: HdesApi.AstCommand[]): Session;
|
|
1187
|
-
withoutPages(pages: HdesApi.EntityId[]): Session;
|
|
1188
|
-
withBranch(branchName?: string): Session;
|
|
1189
|
-
withSite(site: HdesApi.Site): Session;
|
|
1190
|
-
}
|
|
1191
|
-
interface Actions {
|
|
1192
|
-
handleLoad(): Promise<void>;
|
|
1193
|
-
handleLoadSite(site?: HdesApi.Site): Promise<void>;
|
|
1194
|
-
handleDebugUpdate(debug: DebugSession): void;
|
|
1195
|
-
handlePageUpdate(page: HdesApi.EntityId, value: HdesApi.AstCommand[]): void;
|
|
1196
|
-
handlePageUpdateRemove(pages: HdesApi.EntityId[]): void;
|
|
1197
|
-
handleBranchUpdate(branchName?: string): void;
|
|
1198
|
-
}
|
|
1199
|
-
interface ContextType {
|
|
1200
|
-
session: Session;
|
|
1201
|
-
actions: Actions;
|
|
1202
|
-
service: HdesApi.Service;
|
|
1203
|
-
}
|
|
1204
|
-
}
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
declare namespace WrenchComposerApi {
|
|
1208
|
-
class ImmutableTabData implements TabData {
|
|
1209
|
-
private _nav;
|
|
1210
|
-
constructor(props: {
|
|
1211
|
-
nav: Nav;
|
|
1212
|
-
});
|
|
1213
|
-
get nav(): Nav;
|
|
1214
|
-
withNav(nav: Nav): ImmutableTabData;
|
|
1215
|
-
}
|
|
1216
|
-
const createTab: (props: {
|
|
1217
|
-
nav: Nav;
|
|
1218
|
-
page?: HdesApi.Entity<any>;
|
|
1219
|
-
}) => ImmutableTabData;
|
|
1220
|
-
const ComposerContext: React.Context<ContextType>;
|
|
1221
|
-
const useUnsaved: (entity: HdesApi.Entity<any>) => boolean;
|
|
1222
|
-
const useComposer: () => {
|
|
1223
|
-
session: Session;
|
|
1224
|
-
service: HdesApi.Service;
|
|
1225
|
-
actions: Actions;
|
|
1226
|
-
site: HdesApi.Site;
|
|
1227
|
-
isArticleSaved: (entity: HdesApi.Entity<any>) => boolean;
|
|
1228
|
-
};
|
|
1229
|
-
const useSite: () => HdesApi.Site;
|
|
1230
|
-
const useBranchName: () => string | undefined;
|
|
1231
|
-
const useSession: () => Session;
|
|
1232
|
-
const useNav: () => {
|
|
1233
|
-
handleInTab: (props: {
|
|
1234
|
-
article: HdesApi.Entity<any>;
|
|
1235
|
-
}) => void;
|
|
1236
|
-
findTab: (article: HdesApi.Entity<any>) => Tab | undefined;
|
|
1237
|
-
};
|
|
1238
|
-
const useDebug: () => {
|
|
1239
|
-
handleDebugInit: (selected: HdesApi.EntityId) => void;
|
|
1240
|
-
};
|
|
1241
|
-
const Provider: React.FC<{
|
|
1242
|
-
children: React.ReactNode;
|
|
1243
|
-
service: HdesApi.Service;
|
|
1244
|
-
}>;
|
|
1245
|
-
}
|
|
1246
|
-
|
|
1247
1247
|
declare namespace Decision {
|
|
1248
1248
|
const Table: import("react").FC<{
|
|
1249
1249
|
ast: import("../../client").HdesApi.AstDecision;
|