@mediahub-bg/ott-objects 0.5.99 → 0.6.1

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/web/types.ts +12 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mediahub-bg/ott-objects",
3
- "version": "0.5.99",
3
+ "version": "0.6.1",
4
4
  "types": "web/types.d.ts",
5
5
  "files": [
6
6
  "web"
package/web/types.ts CHANGED
@@ -797,6 +797,18 @@ export interface InSignInGoogle {
797
797
  rememberme: boolean;
798
798
  viewmap: string[];
799
799
  view: string[];
800
+ requestRefreshToken: boolean;
801
+ }
802
+ export interface InSignInApple {
803
+ idToken: string;
804
+ code: string;
805
+ redirectUri: string;
806
+ nonce: string;
807
+ gdpr: boolean;
808
+ rememberme: boolean;
809
+ viewmap: string[];
810
+ view: string[];
811
+ requestRefreshToken: boolean;
800
812
  }
801
813
  export interface InSignIn {
802
814
  email: string;