mftsccs-browser 2.2.19-beta → 2.2.20-beta
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/dist/main.bundle.js +1 -1
- package/dist/serviceWorker.bundle.js +1 -1
- package/dist/types/Api/Images/GetImages.d.ts +1 -1
- package/dist/types/Api/SearchConcept/GetTypeConceptByBulk.d.ts +2 -0
- package/dist/types/DataStructures/BaseUrl.d.ts +1 -0
- package/dist/types/Services/ConceptFinding/GetConceptByCharacterAndCategory.d.ts +1 -0
- package/dist/types/Services/Logs/LogEvent.d.ts +1 -0
- package/dist/types/app.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare function GetImageApi(imageName: string): Promise<ReadableStream<Uint8Array
|
|
1
|
+
export declare function GetImageApi(imageName: string): Promise<ReadableStream<Uint8Array> | null | undefined>;
|
|
@@ -69,6 +69,7 @@ export declare class BaseUrl {
|
|
|
69
69
|
static MakeTheTypeConceptUrl(): string;
|
|
70
70
|
static DeleteTheConnectionUrl(): string;
|
|
71
71
|
static DeleteTheConnectionBulkUrl(): string;
|
|
72
|
+
static GetTypeConceptBulk(): string;
|
|
72
73
|
static FreeschemaQueryUrl(): string;
|
|
73
74
|
static uploadImageUrl(): string;
|
|
74
75
|
static uploadImageUrlWithSmall(): string;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Concept } from "../../app";
|
|
2
2
|
export declare function GetConceptByCharacterAndCategory(character: string): Promise<Concept>;
|
|
3
|
+
export declare function GetTypeConceptsByCharacterAndCategoryBulk(typeConcepts: string[]): Promise<Concept[]>;
|
|
3
4
|
export declare function GetConceptByCharacter(characterValue: string): Promise<Concept>;
|
|
4
5
|
export declare function GetConceptByCharacterAndCategoryFromMemory(character: string, category: number): Promise<Concept>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function LogEvent(EventName: string, EventDescription: string, event: any): void;
|
package/dist/types/app.d.ts
CHANGED
|
@@ -126,6 +126,7 @@ export { BuildWidgetFromId } from './Widgets/WidgetBuild';
|
|
|
126
126
|
export { removeAllChildren } from './Services/Common/RemoveAllChild';
|
|
127
127
|
export { getUserDetails } from './Services/User/UserFromLocalStorage';
|
|
128
128
|
export { CountInfo } from './DataStructures/Count/CountInfo';
|
|
129
|
+
export { LogEvent } from './Services/Logs/LogEvent';
|
|
129
130
|
export { Selector } from './Api/Prototype/Selector';
|
|
130
131
|
export { AccessControlService } from './Services/AccessControl/AccessControl';
|
|
131
132
|
export { importLatestWidget, renderImportedWidget, renderLatestWidget, renderPage, renderWidget, convertWidgetTreeToWidgetWithWrapper, getWidgetFromId, convertWidgetTreeToWidget, unwrapContainers, getWidgetBulkFromId } from './Widgets/RenderWidgetService';
|