@livetiles/reach-plugin-types 0.5.0-preview.809 → 0.5.0-preview.811
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/lib/index.d.ts +6 -6
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -378,7 +378,7 @@ declare module "libs/shared/util/environment/src/OpenIdConfiguration" {
|
|
|
378
378
|
export interface OpenIdConfiguration {
|
|
379
379
|
clientId: string;
|
|
380
380
|
url: string;
|
|
381
|
-
scope
|
|
381
|
+
scope?: string;
|
|
382
382
|
issuer: string;
|
|
383
383
|
}
|
|
384
384
|
export interface MobileOpenIdConfiguration extends OpenIdConfiguration {
|
|
@@ -5030,8 +5030,8 @@ declare module "libs/reach/ui/common/src/common/LongPressUtil" {
|
|
|
5030
5030
|
declare module "libs/reach/ui/common/src/common/useVideosApi" {
|
|
5031
5031
|
import { ItemResourceTypes, VideoSource } from "libs/reach/util/common/src/index";
|
|
5032
5032
|
export function useVideosApi(): {
|
|
5033
|
-
getVideoThumbnailUrl: (token: string, subscriptionId: string, videoSource: VideoSource, videoId: string, itemId?: string, hasCustomThumbnail?: boolean) => string;
|
|
5034
|
-
getBannerVideoThumbnailUrl: (token: string, itemId: string, subscriptionId: string, resourceType: ItemResourceTypes) => string;
|
|
5033
|
+
getVideoThumbnailUrl: (token: string, subscriptionId: string, videoSource: VideoSource, videoId: string, itemId?: string, hasCustomThumbnail?: boolean, width?: number | 'default', height?: number) => string;
|
|
5034
|
+
getBannerVideoThumbnailUrl: (token: string, itemId: string, subscriptionId: string, resourceType: ItemResourceTypes, width: number | 'default', height?: number) => string;
|
|
5035
5035
|
uploadCustomVideoThumbnail: (token: string, itemId: string, subscriptionId: string, videoId: string, file: File) => Promise<Response>;
|
|
5036
5036
|
};
|
|
5037
5037
|
}
|
|
@@ -11776,7 +11776,7 @@ declare module "libs/shared/util/capacitor-plugins/openid-client/src/definitions
|
|
|
11776
11776
|
export interface OpenIdAuthArguments {
|
|
11777
11777
|
clientId: string;
|
|
11778
11778
|
url: string;
|
|
11779
|
-
scope
|
|
11779
|
+
scope?: string;
|
|
11780
11780
|
userName?: string;
|
|
11781
11781
|
openIdTokenEndPoint: string;
|
|
11782
11782
|
openIdAuthorizeEndPoint: string;
|
|
@@ -12261,12 +12261,12 @@ declare module "libs/shared/util/authentication-services/src/keycloak/OnPremKeyc
|
|
|
12261
12261
|
getSupportedAuthTypes(): AuthenticationType[];
|
|
12262
12262
|
}
|
|
12263
12263
|
}
|
|
12264
|
-
declare module "libs/shared/util/authentication-services/src/
|
|
12264
|
+
declare module "libs/shared/util/authentication-services/src/oidc-client/MobileOpenIdAuthService" {
|
|
12265
12265
|
import { AuthenticationType } from "libs/shared/util/authentication/src/index";
|
|
12266
12266
|
import { MobileOpenIdConfiguration } from "libs/shared/util/environment/src/index";
|
|
12267
12267
|
import { BaseAuthService } from "libs/shared/util/authentication-services/src/BaseAuthService";
|
|
12268
12268
|
import { LoginArguments } from "libs/shared/util/authentication-services/src/LoginArguments";
|
|
12269
|
-
export class
|
|
12269
|
+
export class MobileOpenIdAuthService extends BaseAuthService {
|
|
12270
12270
|
private readonly openIdClient;
|
|
12271
12271
|
private readonly config;
|
|
12272
12272
|
constructor(config: MobileOpenIdConfiguration);
|