@dxs-ts/eveli-ide 0.0.99 → 0.0.100
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 +2459 -2458
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -919,6 +919,51 @@ export declare const wrenchIntl: {
|
|
|
919
919
|
export { }
|
|
920
920
|
|
|
921
921
|
|
|
922
|
+
declare namespace HdesClient {
|
|
923
|
+
}
|
|
924
|
+
|
|
925
|
+
|
|
926
|
+
declare namespace HdesClient {
|
|
927
|
+
class StoreErrorImpl extends Error {
|
|
928
|
+
private _props;
|
|
929
|
+
constructor(props: HdesApi.ServiceErrorProps);
|
|
930
|
+
get name(): string;
|
|
931
|
+
get status(): number;
|
|
932
|
+
get errors(): HdesApi.ServiceErrorMsg[];
|
|
933
|
+
}
|
|
934
|
+
class DefaultStore implements HdesApi.Store {
|
|
935
|
+
private _config;
|
|
936
|
+
private _updateStarted;
|
|
937
|
+
private _iapSessionRefreshWindow;
|
|
938
|
+
private _defRef;
|
|
939
|
+
constructor(config: HdesApi.StoreConfig);
|
|
940
|
+
iapRefresh(): Promise<void>;
|
|
941
|
+
iapLogin(): boolean;
|
|
942
|
+
handle401(): Promise<void>;
|
|
943
|
+
fetch<T>(path: string, req?: RequestInit): Promise<T>;
|
|
944
|
+
}
|
|
945
|
+
class ServiceImpl implements HdesApi.Service {
|
|
946
|
+
private _store;
|
|
947
|
+
private _branch;
|
|
948
|
+
private _headers;
|
|
949
|
+
constructor(store: HdesApi.Store, branchName?: string);
|
|
950
|
+
withBranch(branchName?: string): ServiceImpl;
|
|
951
|
+
get branch(): string | undefined;
|
|
952
|
+
create(): HdesApi.CreateBuilder;
|
|
953
|
+
delete(): HdesApi.DeleteBuilder;
|
|
954
|
+
update(id: string, body: HdesApi.AstCommand[]): Promise<HdesApi.Site>;
|
|
955
|
+
createAsset(name: string, desc: string | undefined, type: HdesApi.AstBodyType | "SITE", body?: HdesApi.AstCommand[]): Promise<HdesApi.Site>;
|
|
956
|
+
ast(id: string, body: HdesApi.AstCommand[]): Promise<HdesApi.Entity<any>>;
|
|
957
|
+
getSite(): Promise<HdesApi.Site>;
|
|
958
|
+
debug(debug: HdesApi.DebugRequest): Promise<HdesApi.DebugResponse>;
|
|
959
|
+
copy(id: string, name: string): Promise<HdesApi.Site>;
|
|
960
|
+
version(): Promise<HdesApi.VersionEntity>;
|
|
961
|
+
diff(input: HdesApi.DiffRequest): Promise<HdesApi.DiffResponse>;
|
|
962
|
+
summary(tagId: string): Promise<HdesApi.AstTagSummary>;
|
|
963
|
+
}
|
|
964
|
+
}
|
|
965
|
+
|
|
966
|
+
|
|
922
967
|
declare module 'react' {
|
|
923
968
|
interface CSSProperties {
|
|
924
969
|
'--tree-view-text-color'?: string;
|
|
@@ -971,51 +1016,6 @@ declare module '@mui/material/styles' {
|
|
|
971
1016
|
}
|
|
972
1017
|
|
|
973
1018
|
|
|
974
|
-
declare namespace HdesClient {
|
|
975
|
-
}
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
declare namespace HdesClient {
|
|
979
|
-
class StoreErrorImpl extends Error {
|
|
980
|
-
private _props;
|
|
981
|
-
constructor(props: HdesApi.ServiceErrorProps);
|
|
982
|
-
get name(): string;
|
|
983
|
-
get status(): number;
|
|
984
|
-
get errors(): HdesApi.ServiceErrorMsg[];
|
|
985
|
-
}
|
|
986
|
-
class DefaultStore implements HdesApi.Store {
|
|
987
|
-
private _config;
|
|
988
|
-
private _updateStarted;
|
|
989
|
-
private _iapSessionRefreshWindow;
|
|
990
|
-
private _defRef;
|
|
991
|
-
constructor(config: HdesApi.StoreConfig);
|
|
992
|
-
iapRefresh(): Promise<void>;
|
|
993
|
-
iapLogin(): boolean;
|
|
994
|
-
handle401(): Promise<void>;
|
|
995
|
-
fetch<T>(path: string, req?: RequestInit): Promise<T>;
|
|
996
|
-
}
|
|
997
|
-
class ServiceImpl implements HdesApi.Service {
|
|
998
|
-
private _store;
|
|
999
|
-
private _branch;
|
|
1000
|
-
private _headers;
|
|
1001
|
-
constructor(store: HdesApi.Store, branchName?: string);
|
|
1002
|
-
withBranch(branchName?: string): ServiceImpl;
|
|
1003
|
-
get branch(): string | undefined;
|
|
1004
|
-
create(): HdesApi.CreateBuilder;
|
|
1005
|
-
delete(): HdesApi.DeleteBuilder;
|
|
1006
|
-
update(id: string, body: HdesApi.AstCommand[]): Promise<HdesApi.Site>;
|
|
1007
|
-
createAsset(name: string, desc: string | undefined, type: HdesApi.AstBodyType | "SITE", body?: HdesApi.AstCommand[]): Promise<HdesApi.Site>;
|
|
1008
|
-
ast(id: string, body: HdesApi.AstCommand[]): Promise<HdesApi.Entity<any>>;
|
|
1009
|
-
getSite(): Promise<HdesApi.Site>;
|
|
1010
|
-
debug(debug: HdesApi.DebugRequest): Promise<HdesApi.DebugResponse>;
|
|
1011
|
-
copy(id: string, name: string): Promise<HdesApi.Site>;
|
|
1012
|
-
version(): Promise<HdesApi.VersionEntity>;
|
|
1013
|
-
diff(input: HdesApi.DiffRequest): Promise<HdesApi.DiffResponse>;
|
|
1014
|
-
summary(tagId: string): Promise<HdesApi.AstTagSummary>;
|
|
1015
|
-
}
|
|
1016
|
-
}
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
1019
|
declare namespace WrenchComposerApi {
|
|
1020
1020
|
interface Nav {
|
|
1021
1021
|
value?: string | null;
|