@omnia/fx 7.6.22-preview → 7.6.23-preview

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,7 +1,10 @@
1
1
  import { HttpClient } from "@omnia/fx";
2
+ import { GuidValue, MediaflowAuthenticationInfo } from "@omnia/fx-models";
2
3
  import { MediaflowVideoInfo } from "../models";
3
4
  export declare class MediaflowService {
4
5
  protected httpClient: HttpClient;
5
- private baseUrl;
6
+ private omniaHttpClient;
7
+ private mediaflowUrl;
6
8
  getVideoInfo: (mediaId: string) => Promise<MediaflowVideoInfo>;
9
+ getAuthenticationInfo: (profileId: GuidValue) => Promise<MediaflowAuthenticationInfo>;
7
10
  }
@@ -1,14 +1,14 @@
1
1
  import { Store } from "@omnia/fx/stores";
2
2
  import { OmniaContext } from "@omnia/fx";
3
3
  import { MediaflowAuthenticationInfo, MediaflowSettings } from "@omnia/fx-models";
4
- import { SettingsService, SecretsService } from "@omnia/fx/services";
4
+ import { SettingsService } from "@omnia/fx/services";
5
+ import { MediaflowService } from "../service/MediaflowService";
5
6
  export declare class MediaflowProviderStore extends Store {
6
7
  settingService: SettingsService<MediaflowSettings>;
7
- secretService: SecretsService;
8
8
  omniaContext: OmniaContext;
9
+ mediaflowService: MediaflowService;
9
10
  private settings;
10
11
  private authenticationInfo;
11
- private mediaflowSecretKey;
12
12
  private mediaflowSettingKey;
13
13
  constructor();
14
14
  getters: {
@@ -25,5 +25,4 @@ export declare class MediaflowProviderStore extends Store {
25
25
  };
26
26
  protected onActivated(): void;
27
27
  protected onDisposing(): void;
28
- private extractAuthenticationInfoFromSecret;
29
28
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "7.6.22-preview",
4
+ "version": "7.6.23-preview",
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": "Precio Fishbone",
22
22
  "dependencies": {
23
- "@omnia/fx-models": "7.6.22-preview",
23
+ "@omnia/fx-models": "7.6.23-preview",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.10.7",