@zimyo/engage 0.1.14-pms → 0.1.16-pms

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,9 +1,8 @@
1
1
  import { ReactNode } from 'react';
2
- declare const AuthProvider: ({ children, token, API_BASE_URL, ASSETS_BASE_URL, GOOGLE_OAUTH_CLIENT_ID, ADMIN_BASE_URL, PMS_API_BASE_URL }: {
2
+ declare const AuthProvider: ({ children, token, API_BASE_URL, ASSETS_BASE_URL, ADMIN_BASE_URL, PMS_API_BASE_URL }: {
3
3
  token: string;
4
4
  API_BASE_URL: string;
5
5
  ASSETS_BASE_URL: string;
6
- GOOGLE_OAUTH_CLIENT_ID: string;
7
6
  children: ReactNode;
8
7
  ADMIN_BASE_URL: string;
9
8
  PMS_API_BASE_URL?: string;
@@ -5,10 +5,9 @@ interface AuthProviderProps {
5
5
  token: string;
6
6
  API_BASE_URL: string;
7
7
  ASSETS_BASE_URL: string;
8
- GOOGLE_OAUTH_CLIENT_ID: string;
9
8
  children: ReactNode;
10
9
  ADMIN_BASE_URL: string;
11
10
  PMS_API_BASE_URL?: string;
12
11
  }
13
- declare const EngageProvider: ({ queryClient, token, API_BASE_URL, ASSETS_BASE_URL, GOOGLE_OAUTH_CLIENT_ID, ADMIN_BASE_URL, PMS_API_BASE_URL, children }: AuthProviderProps) => import("react/jsx-runtime").JSX.Element;
12
+ declare const EngageProvider: ({ queryClient, token, API_BASE_URL, ASSETS_BASE_URL, ADMIN_BASE_URL, PMS_API_BASE_URL, children }: AuthProviderProps) => import("react/jsx-runtime").JSX.Element;
14
13
  export default EngageProvider;
@@ -4,7 +4,6 @@ export type State = {
4
4
  token?: string;
5
5
  API_BASE_URL?: string;
6
6
  ASSETS_BASE_URL?: string;
7
- GOOGLE_OAUTH_CLIENT_ID?: string;
8
7
  ADMIN_BASE_URL?: string;
9
8
  PMS_API_BASE_URL?: string;
10
9
  };
@@ -15,7 +14,6 @@ type Actions = {
15
14
  token: string;
16
15
  API_BASE_URL: string;
17
16
  ASSETS_BASE_URL: string;
18
- GOOGLE_OAUTH_CLIENT_ID: string;
19
17
  ADMIN_BASE_URL: string;
20
18
  PMS_API_BASE_URL?: string;
21
19
  }) => void;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@zimyo/engage",
3
3
  "private": false,
4
- "version": "0.1.14-pms",
4
+ "version": "0.1.16-pms",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -1 +0,0 @@
1
- export declare const OAUTH_SCOPE = "https://www.googleapis.com/auth/calendar https://www.google.com/calendar/feeds/ https://www.google.com/calendar/feeds http://www.google.com/calendar/feeds/default/allcalendars/full https://www.google.com/calendar/feeds/default/owncalendars/full http://www.google.com/calendar/feeds/ http://www.google.com/calendar/feeds https://www.google.com/calendar/feeds/default/private/full http://www.google.com/calendar/feeds/default/private/full http://www.google.com/calendar/feeds/default/owncalendars/full/ https://www.google.com/calendar/feeds/default https://www.google.com/calendar/freebusy https://www.googleapis.com/auth/calendar.app.created https://www.googleapis.com/auth/calendar.events https://www.googleapis.com/auth/calendar.events.owned";