@omnia/fx 8.0.540-dev → 8.0.542-dev

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.
@@ -4,6 +4,7 @@ export declare namespace RichTextEditorExtensionLocalization {
4
4
  SelectHeading: string;
5
5
  SelectColor: string;
6
6
  Html: string;
7
+ TextStyle: string;
7
8
  Extensions: {
8
9
  Blockquote: string;
9
10
  Bold: string;
@@ -0,0 +1,4 @@
1
+ import { IActionHandler } from "./IActionHandler";
2
+ export declare const bridgeGet: IActionHandler;
3
+ export declare const bridgePost: IActionHandler;
4
+ export declare const bridgePut: IActionHandler;
@@ -1,2 +1,6 @@
1
1
  import { IActionHandler } from "./IActionHandler";
2
2
  export declare const httpGet: IActionHandler;
3
+ export declare const httpPost: IActionHandler;
4
+ export declare const httpPut: IActionHandler;
5
+ export declare const httpDelete: IActionHandler;
6
+ export declare function handleHttpAction(verb: "get" | "post" | "put" | "delete", action: any, incomingUrl: string, body?: string): Promise<any>;
@@ -12,3 +12,4 @@ export * from "./Emit";
12
12
  export * from "./Timer";
13
13
  export * from "./Date";
14
14
  export * from "./Clone";
15
+ export * from "./Bridge";
@@ -1,10 +1,11 @@
1
+ import { HttpConfig } from "@omnia/fx-models/internal-do-not-import-from-here/shared";
1
2
  export interface VelcronActionHooks<TBefore = any, TAfter = any> {
2
3
  beforeHandler?: (args: TBefore) => TBefore;
3
4
  afterHandler?: (args: TBefore) => TAfter;
4
5
  }
5
6
  export interface HttpGetBeforeActionHookArgs {
6
7
  url: string;
7
- requestInit: RequestInit;
8
+ config: HttpConfig;
8
9
  }
9
10
  export interface HttpGetAfterActionHookArgs {
10
11
  json: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.540-dev",
4
+ "version": "8.0.542-dev",
5
5
  "description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -20,7 +20,7 @@
20
20
  ],
21
21
  "author": "Omnia Digital Workplace AB",
22
22
  "dependencies": {
23
- "@omnia/fx-models": "8.0.540-dev",
23
+ "@omnia/fx-models": "8.0.542-dev",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.11.7",