@dxs-ts/eveli-ide 0.0.69 → 0.0.71

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 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,51 +985,6 @@ declare module '@mui/material/styles' {
940
985
  }
941
986
 
942
987
 
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[];