@dxs-ts/eveli-ide 0.0.92 → 0.0.93
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 +73 -45
- package/build/index.js +3150 -3043
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -634,6 +634,10 @@ export declare namespace StencilApi {
|
|
|
634
634
|
anon?: boolean;
|
|
635
635
|
startDate?: string | undefined;
|
|
636
636
|
endDate?: string | undefined;
|
|
637
|
+
formName?: string | undefined;
|
|
638
|
+
formTag?: string | undefined;
|
|
639
|
+
formId?: string | undefined;
|
|
640
|
+
flowName?: string | undefined;
|
|
637
641
|
};
|
|
638
642
|
}
|
|
639
643
|
export interface WorkflowMutator {
|
|
@@ -645,6 +649,10 @@ export declare namespace StencilApi {
|
|
|
645
649
|
anon: boolean | undefined;
|
|
646
650
|
startDate?: string | undefined;
|
|
647
651
|
endDate?: string | undefined;
|
|
652
|
+
formName: string;
|
|
653
|
+
formTag: string;
|
|
654
|
+
formId?: string | undefined;
|
|
655
|
+
flowName: string;
|
|
648
656
|
}
|
|
649
657
|
export interface FetchIntegration {
|
|
650
658
|
fetch<T>(path: string, init?: RequestInit): Promise<T>;
|
|
@@ -656,6 +664,7 @@ export declare namespace StencilApi {
|
|
|
656
664
|
delete(): DeleteBuilder;
|
|
657
665
|
update(): UpdateBuilder;
|
|
658
666
|
version(): Promise<VersionEntity>;
|
|
667
|
+
assets(): AssetRepository;
|
|
659
668
|
}
|
|
660
669
|
export interface VersionEntity {
|
|
661
670
|
version: string;
|
|
@@ -697,6 +706,10 @@ export declare namespace StencilApi {
|
|
|
697
706
|
anon: boolean | undefined;
|
|
698
707
|
startDate?: string | undefined;
|
|
699
708
|
endDate?: string | undefined;
|
|
709
|
+
formName: string;
|
|
710
|
+
formTag: string;
|
|
711
|
+
formId?: string | undefined;
|
|
712
|
+
flowName: string;
|
|
700
713
|
}
|
|
701
714
|
export interface CreateRelease {
|
|
702
715
|
name: string;
|
|
@@ -745,6 +758,16 @@ export declare namespace StencilApi {
|
|
|
745
758
|
value: string;
|
|
746
759
|
};
|
|
747
760
|
}
|
|
761
|
+
export interface DialobTagAsset {
|
|
762
|
+
formLabel: string;
|
|
763
|
+
formName: string;
|
|
764
|
+
tagFormId: string;
|
|
765
|
+
tagName: string;
|
|
766
|
+
}
|
|
767
|
+
export interface AssetRepository {
|
|
768
|
+
flowNames(): Promise<string[]>;
|
|
769
|
+
dialobForms(): Promise<DialobTagAsset[]>;
|
|
770
|
+
}
|
|
748
771
|
export interface ErrorMsg {
|
|
749
772
|
id: string;
|
|
750
773
|
value: string;
|
|
@@ -761,6 +784,7 @@ export declare namespace StencilClient {
|
|
|
761
784
|
const service: (init: {
|
|
762
785
|
store?: StencilApi.Store;
|
|
763
786
|
config?: StencilApi.StoreConfig;
|
|
787
|
+
assets?: StencilApi.AssetRepository;
|
|
764
788
|
}) => StencilApi.Service;
|
|
765
789
|
export class CreateBuilderImpl implements StencilApi.CreateBuilder {
|
|
766
790
|
private _backend;
|
|
@@ -821,6 +845,10 @@ export declare namespace StencilClient {
|
|
|
821
845
|
handle401(): Promise<void>;
|
|
822
846
|
fetch<T>(path: string, req?: RequestInit): Promise<T>;
|
|
823
847
|
}
|
|
848
|
+
export class DefaultAssetRepository implements StencilApi.AssetRepository {
|
|
849
|
+
flowNames: () => Promise<string[]>;
|
|
850
|
+
dialobForms: () => Promise<StencilApi.DialobTagAsset[]>;
|
|
851
|
+
}
|
|
824
852
|
}
|
|
825
853
|
|
|
826
854
|
export declare const StencilComposer: default_2.FC<StencilComposerProps>;
|
|
@@ -891,51 +919,6 @@ export declare const wrenchIntl: {
|
|
|
891
919
|
export { }
|
|
892
920
|
|
|
893
921
|
|
|
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
|
-
|
|
939
922
|
declare module 'react' {
|
|
940
923
|
interface CSSProperties {
|
|
941
924
|
'--tree-view-text-color'?: string;
|
|
@@ -988,6 +971,51 @@ declare module '@mui/material/styles' {
|
|
|
988
971
|
}
|
|
989
972
|
|
|
990
973
|
|
|
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
|
+
|
|
991
1019
|
declare namespace StencilComposerApi {
|
|
992
1020
|
interface SearchData {
|
|
993
1021
|
values: readonly SearchDataEntry[];
|