@dxs-ts/eveli-ide 0.0.66 → 0.0.68

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.
Files changed (3) hide show
  1. package/build/index.d.ts +53 -53
  2. package/build/index.js +8787 -8755
  3. 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[];
@@ -1275,14 +1275,6 @@ declare namespace Decision {
1275
1275
  }
1276
1276
 
1277
1277
 
1278
- declare namespace GraphAPI {
1279
- const create: (props: {
1280
- fl: HdesApi.AstFlow;
1281
- models: HdesApi.Site;
1282
- }) => Vis.Model;
1283
- }
1284
-
1285
-
1286
1278
  declare namespace Vis {
1287
1279
  interface Model {
1288
1280
  nodes: Node[];
@@ -1323,3 +1315,11 @@ declare namespace Vis {
1323
1315
  declare namespace Vis {
1324
1316
  const create: (init: InitProps) => React.ReactElement;
1325
1317
  }
1318
+
1319
+
1320
+ declare namespace GraphAPI {
1321
+ const create: (props: {
1322
+ fl: HdesApi.AstFlow;
1323
+ models: HdesApi.Site;
1324
+ }) => Vis.Model;
1325
+ }