@omerlo/omerlo-webkit 0.0.16 → 0.0.17

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.
@@ -38,6 +38,4 @@ export declare const useReader: (f: typeof fetch) => {
38
38
  registerDevice: (params: import("./reader").DeviceParams) => Promise<import("./reader/utils/api").ApiResponse<unknown>>;
39
39
  userInfo: () => Promise<import("./reader/utils/api").ApiResponse<import("./reader").UserInfo>>;
40
40
  userEntitlements: () => Promise<import("./reader/utils/api").ApiResponse<import("./reader").UserEntitlement[]>>;
41
- verifyAccount: (params: import("./reader").VerifyAccountParams) => void;
42
- validateAccount: (params: import("./reader").ValidateAccountParams) => void;
43
41
  };
@@ -1,18 +1,7 @@
1
1
  export declare const accountsFetchers: (f: typeof fetch) => {
2
2
  userInfo: () => Promise<import("../utils/api").ApiResponse<UserInfo>>;
3
3
  userEntitlements: () => Promise<import("../utils/api").ApiResponse<UserEntitlement[]>>;
4
- verifyAccount: (params: VerifyAccountParams) => void;
5
- validateAccount: (params: ValidateAccountParams) => void;
6
4
  };
7
- export interface ValidateAccountParams {
8
- email: string;
9
- callbackUrl: string;
10
- }
11
- export declare function validateAccount(f: typeof fetch): (params: ValidateAccountParams) => void;
12
- export interface VerifyAccountParams {
13
- verification_token: string;
14
- }
15
- export declare function verifyAccount(f: typeof fetch): (params: VerifyAccountParams) => void;
16
5
  export declare function getUserInfo(f: typeof fetch): () => Promise<import("../utils/api").ApiResponse<UserInfo>>;
17
6
  export interface UserInfo {
18
7
  name: string;
@@ -3,31 +3,10 @@ import { request } from '../utils/request';
3
3
  export const accountsFetchers = (f) => {
4
4
  return {
5
5
  userInfo: getUserInfo(f),
6
- userEntitlements: getUserEntitlements(f),
7
- verifyAccount: verifyAccount(f),
8
- validateAccount: validateAccount(f)
6
+ userEntitlements: getUserEntitlements(f)
9
7
  };
10
8
  };
11
9
  //
12
- // Validate an account using the bearer token.
13
- //
14
- export function validateAccount(f) {
15
- return (params) => {
16
- const queryParams = { email: params.email, callback_url: params.callbackUrl };
17
- const opts = { queryParams, method: 'post' };
18
- request(f, '/account/validate', opts);
19
- };
20
- }
21
- //
22
- // Verify an account using the signed JWT token generate on account validation.
23
- //
24
- export function verifyAccount(f) {
25
- return (params) => {
26
- const opts = { queryParams: params };
27
- request(f, '/account/verify', opts);
28
- };
29
- }
30
- //
31
10
  // Get user's informations associated to the bearer token.
32
11
  //
33
12
  export function getUserInfo(f) {
@@ -22,6 +22,8 @@ export function getContent(f) {
22
22
  return async (id) => {
23
23
  const opts = { parser: parseContent };
24
24
  return requestPublisher(f, `media/contents/${id}`, opts);
25
+ // TODO: switch to Reader API (this API is already completed and documented)
26
+ // return request(f, `/contents/${id}`, opts)
25
27
  };
26
28
  }
27
29
  export function listContents(f) {
@@ -1,12 +1,12 @@
1
1
  import { type ApiAssocs, type ApiData, type PagingParams } from '../utils/api';
2
- import type { Issue } from './magazines';
2
+ import type { IssueSummary } from './magazines';
3
3
  export declare const distributionFetchers: (f: typeof fetch) => {
4
4
  listReleases: (distributionId: string, params?: Partial<PagingParams>) => Promise<import("../utils/api").ApiResponse<Release[]>>;
5
5
  };
6
6
  export declare function releasesFetcher(f: typeof fetch): (distributionId: string, params?: Partial<PagingParams>) => Promise<import("../utils/api").ApiResponse<Release[]>>;
7
7
  export interface Release {
8
8
  id: string;
9
- issue: Issue;
9
+ issue: IssueSummary;
10
10
  startsAt: Date;
11
11
  endsAt: Date | null;
12
12
  updatedAt: Date;
@@ -38,6 +38,4 @@ export declare const fetchers: (f: typeof fetch) => {
38
38
  registerDevice: (params: import("./endpoints/device").DeviceParams) => Promise<import("./utils/api").ApiResponse<unknown>>;
39
39
  userInfo: () => Promise<import("./utils/api").ApiResponse<import("./endpoints/accounts").UserInfo>>;
40
40
  userEntitlements: () => Promise<import("./utils/api").ApiResponse<import("./endpoints/accounts").UserEntitlement[]>>;
41
- verifyAccount: (params: import("./endpoints/accounts").VerifyAccountParams) => void;
42
- validateAccount: (params: import("./endpoints/accounts").ValidateAccountParams) => void;
43
41
  };
@@ -16,6 +16,9 @@ export function initReader() {
16
16
  registerAssocParser('contents', parseContentSummary);
17
17
  registerAssocParser('issue_types', parseIssueType);
18
18
  registerAssocParser('issue_block_configurations', parseIssueBlockConfiguration);
19
- // NOTE: This one is for retro compatibility with publisher public api v2
19
+ // NOTE: Those ones are for retro compatibility with publisher public api v2
20
+ // Reason is we renamed some assocs keys in Reader API that are different
21
+ // from Publisher public API V2
20
22
  registerAssocParser('templates', parseContentTemplate);
23
+ registerAssocParser('block_templates', parseContentBlockTemplate);
21
24
  }
@@ -3,3 +3,4 @@ export declare const handleUserToken: import("@sveltejs/kit").Handle;
3
3
  export * from './token';
4
4
  export * from './utils';
5
5
  export * from './email';
6
+ export * from './oauth';
@@ -4,3 +4,4 @@ export const handleUserToken = Hooks.handleUserToken;
4
4
  export * from './token';
5
5
  export * from './utils';
6
6
  export * from './email';
7
+ export * from './oauth';
@@ -0,0 +1 @@
1
+ export declare function verifyOauth(email: string, oauthUserId: string): Promise<void>;
@@ -0,0 +1,23 @@
1
+ import { env } from '$env/dynamic/private';
2
+ import { ApiError } from '../utils/api';
3
+ import { getApplicationToken } from './utils';
4
+ export async function verifyOauth(email, oauthUserId) {
5
+ const url = getOmerloEndpoint();
6
+ const accessToken = await getApplicationToken();
7
+ const headers = new Headers({
8
+ 'x-omerlo-media-id': env.PRIVATE_OMERLO_MEDIA_ID,
9
+ Authorization: `Bearer ${accessToken}`
10
+ });
11
+ url.pathname = '/api/media/v1/oauth/verify';
12
+ url.searchParams.append('oauth_user_id', oauthUserId);
13
+ url.searchParams.append('email', email);
14
+ const resp = await fetch(url, { method: 'POST', headers });
15
+ if (resp.ok) {
16
+ return;
17
+ }
18
+ const payload = await resp.json();
19
+ throw new ApiError(resp.status, payload.error, resp.statusText);
20
+ }
21
+ function getOmerloEndpoint() {
22
+ return new URL(`${env.PRIVATE_OMERLO_PROTOCOL}://${env.PRIVATE_OMERLO_HOST}`);
23
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@omerlo/omerlo-webkit",
3
- "version": "0.0.16",
3
+ "version": "0.0.17",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build && npm run package",