mftsccs-browser 2.2.18-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.
@@ -1 +1 @@
1
- export declare function GetImageApi(imageName: string): Promise<ReadableStream<Uint8Array<ArrayBuffer>> | null | undefined>;
1
+ export declare function GetImageApi(imageName: string): Promise<ReadableStream<Uint8Array> | null | undefined>;
@@ -0,0 +1,2 @@
1
+ import { Concept } from "../../app";
2
+ export declare function GetTypeConceptByBulk(characters: string[]): Promise<Concept[]>;
@@ -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;
@@ -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';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mftsccs-browser",
3
- "version": "2.2.18-beta",
3
+ "version": "2.2.20-beta",
4
4
 
5
5
  "environment": "production",
6
6
  "description": "Full Pack of concept and connection system",