@dxs-ts/eveli-ide 0.0.90 → 0.0.92
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 +17517 -17154
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -891,6 +891,51 @@ export declare const wrenchIntl: {
|
|
|
891
891
|
export { }
|
|
892
892
|
|
|
893
893
|
|
|
894
|
+
declare namespace HdesClient {
|
|
895
|
+
}
|
|
896
|
+
|
|
897
|
+
|
|
898
|
+
declare namespace HdesClient {
|
|
899
|
+
class StoreErrorImpl extends Error {
|
|
900
|
+
private _props;
|
|
901
|
+
constructor(props: HdesApi.ServiceErrorProps);
|
|
902
|
+
get name(): string;
|
|
903
|
+
get status(): number;
|
|
904
|
+
get errors(): HdesApi.ServiceErrorMsg[];
|
|
905
|
+
}
|
|
906
|
+
class DefaultStore implements HdesApi.Store {
|
|
907
|
+
private _config;
|
|
908
|
+
private _updateStarted;
|
|
909
|
+
private _iapSessionRefreshWindow;
|
|
910
|
+
private _defRef;
|
|
911
|
+
constructor(config: HdesApi.StoreConfig);
|
|
912
|
+
iapRefresh(): Promise<void>;
|
|
913
|
+
iapLogin(): boolean;
|
|
914
|
+
handle401(): Promise<void>;
|
|
915
|
+
fetch<T>(path: string, req?: RequestInit): Promise<T>;
|
|
916
|
+
}
|
|
917
|
+
class ServiceImpl implements HdesApi.Service {
|
|
918
|
+
private _store;
|
|
919
|
+
private _branch;
|
|
920
|
+
private _headers;
|
|
921
|
+
constructor(store: HdesApi.Store, branchName?: string);
|
|
922
|
+
withBranch(branchName?: string): ServiceImpl;
|
|
923
|
+
get branch(): string | undefined;
|
|
924
|
+
create(): HdesApi.CreateBuilder;
|
|
925
|
+
delete(): HdesApi.DeleteBuilder;
|
|
926
|
+
update(id: string, body: HdesApi.AstCommand[]): Promise<HdesApi.Site>;
|
|
927
|
+
createAsset(name: string, desc: string | undefined, type: HdesApi.AstBodyType | "SITE", body?: HdesApi.AstCommand[]): Promise<HdesApi.Site>;
|
|
928
|
+
ast(id: string, body: HdesApi.AstCommand[]): Promise<HdesApi.Entity<any>>;
|
|
929
|
+
getSite(): Promise<HdesApi.Site>;
|
|
930
|
+
debug(debug: HdesApi.DebugRequest): Promise<HdesApi.DebugResponse>;
|
|
931
|
+
copy(id: string, name: string): Promise<HdesApi.Site>;
|
|
932
|
+
version(): Promise<HdesApi.VersionEntity>;
|
|
933
|
+
diff(input: HdesApi.DiffRequest): Promise<HdesApi.DiffResponse>;
|
|
934
|
+
summary(tagId: string): Promise<HdesApi.AstTagSummary>;
|
|
935
|
+
}
|
|
936
|
+
}
|
|
937
|
+
|
|
938
|
+
|
|
894
939
|
declare module 'react' {
|
|
895
940
|
interface CSSProperties {
|
|
896
941
|
'--tree-view-text-color'?: string;
|
|
@@ -943,51 +988,6 @@ declare module '@mui/material/styles' {
|
|
|
943
988
|
}
|
|
944
989
|
|
|
945
990
|
|
|
946
|
-
declare namespace HdesClient {
|
|
947
|
-
}
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
declare namespace HdesClient {
|
|
951
|
-
class StoreErrorImpl extends Error {
|
|
952
|
-
private _props;
|
|
953
|
-
constructor(props: HdesApi.ServiceErrorProps);
|
|
954
|
-
get name(): string;
|
|
955
|
-
get status(): number;
|
|
956
|
-
get errors(): HdesApi.ServiceErrorMsg[];
|
|
957
|
-
}
|
|
958
|
-
class DefaultStore implements HdesApi.Store {
|
|
959
|
-
private _config;
|
|
960
|
-
private _updateStarted;
|
|
961
|
-
private _iapSessionRefreshWindow;
|
|
962
|
-
private _defRef;
|
|
963
|
-
constructor(config: HdesApi.StoreConfig);
|
|
964
|
-
iapRefresh(): Promise<void>;
|
|
965
|
-
iapLogin(): boolean;
|
|
966
|
-
handle401(): Promise<void>;
|
|
967
|
-
fetch<T>(path: string, req?: RequestInit): Promise<T>;
|
|
968
|
-
}
|
|
969
|
-
class ServiceImpl implements HdesApi.Service {
|
|
970
|
-
private _store;
|
|
971
|
-
private _branch;
|
|
972
|
-
private _headers;
|
|
973
|
-
constructor(store: HdesApi.Store, branchName?: string);
|
|
974
|
-
withBranch(branchName?: string): ServiceImpl;
|
|
975
|
-
get branch(): string | undefined;
|
|
976
|
-
create(): HdesApi.CreateBuilder;
|
|
977
|
-
delete(): HdesApi.DeleteBuilder;
|
|
978
|
-
update(id: string, body: HdesApi.AstCommand[]): Promise<HdesApi.Site>;
|
|
979
|
-
createAsset(name: string, desc: string | undefined, type: HdesApi.AstBodyType | "SITE", body?: HdesApi.AstCommand[]): Promise<HdesApi.Site>;
|
|
980
|
-
ast(id: string, body: HdesApi.AstCommand[]): Promise<HdesApi.Entity<any>>;
|
|
981
|
-
getSite(): Promise<HdesApi.Site>;
|
|
982
|
-
debug(debug: HdesApi.DebugRequest): Promise<HdesApi.DebugResponse>;
|
|
983
|
-
copy(id: string, name: string): Promise<HdesApi.Site>;
|
|
984
|
-
version(): Promise<HdesApi.VersionEntity>;
|
|
985
|
-
diff(input: HdesApi.DiffRequest): Promise<HdesApi.DiffResponse>;
|
|
986
|
-
summary(tagId: string): Promise<HdesApi.AstTagSummary>;
|
|
987
|
-
}
|
|
988
|
-
}
|
|
989
|
-
|
|
990
|
-
|
|
991
991
|
declare namespace StencilComposerApi {
|
|
992
992
|
interface SearchData {
|
|
993
993
|
values: readonly SearchDataEntry[];
|