@dxs-ts/eveli-ide 0.0.81 → 0.0.82

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 WrenchComposerApi {
989
989
  interface Nav {
990
990
  value?: string | null;
package/build/index.js CHANGED
@@ -48110,7 +48110,7 @@ const zX = ({ site: e }) => {
48110
48110
  ] })
48111
48111
  }
48112
48112
  );
48113
- }, uc = { tag: "eveli-ide-0.0.81", built: "30/12/2024" }, GX = (e, t, n) => {
48113
+ }, uc = { tag: "eveli-ide-0.0.82", built: "06/01/2025" }, GX = (e, t, n) => {
48114
48114
  var i, r, s, o, l, a, u, d;
48115
48115
  return [
48116
48116
  {
@@ -81945,7 +81945,7 @@ const Nne = () => {
81945
81945
  // array of data
81946
81946
  page: C.pageable.pageNumber,
81947
81947
  // current page we are on, starts with 0 = first page
81948
- totalCount: C.numberOfElements
81948
+ totalCount: C.totalElements
81949
81949
  // total entries on all the pages combined
81950
81950
  }));
81951
81951
  }, v = () => r.cFetch(`${s}worker/rest/api/tasks/unread`).then((E) => E.json()).then((E) => E);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxs-ts/eveli-ide",
3
- "version": "0.0.81",
3
+ "version": "0.0.82",
4
4
  "homepage": "https://github.com/digiexpress-io/digiexpress-parent",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",