@zimyo/engage 0.0.13 → 0.0.14

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,18 +1,17 @@
1
- export declare const LOGIN_API = "/guest/user/login";
2
- export declare const AUTHENTICATE_TOKEN = "/guest/user/authenticateToken";
3
- export declare const AWS_S3_READ_URL = "https://api.zimyo.app/files/attachments";
4
- export declare const SEARCH_EMPLOYEES = "/admin/employee/search";
5
- export declare const FETCH_MASTER_BADGES = "/admin/badge-master/list";
6
- export declare const FECTCH_SKILL_RATING_LIST = "/admin/org-rating-skill/list";
7
- export declare const FETCH_APPRECIATION_LIST = "/admin/appreciation/list";
8
- export declare const CREATE_APPRECIATION = "/admin/appreciation/create";
9
- export declare const FETCH_FEEDBACK_LIST = "/admin/feedback/list";
10
- export declare const CREATE_FEEDBACK = "/admin/feedback/create";
11
- export declare const FETCH_ONE_TO_ONE_LIST = "/admin/meeting/list";
12
- export declare const FETCH_MEETING_LIST = "/admin/meeting";
13
- export declare const CREATE_MEETING = "/admin/meeting/create";
14
- export declare const RESCHEDULE_ONE_TO_ONE = "/admin/meeting/reschedule";
15
- export declare const UPDATE_ONE_TO_ONE = "/admin/meeting/update";
1
+ export declare const LOGIN_API = "guest/user/login";
2
+ export declare const AUTHENTICATE_TOKEN = "guest/user/authenticateToken";
3
+ export declare const SEARCH_EMPLOYEES = "admin/employee/search";
4
+ export declare const FETCH_MASTER_BADGES = "admin/badge-master/list";
5
+ export declare const FECTCH_SKILL_RATING_LIST = "admin/org-rating-skill/list";
6
+ export declare const FETCH_APPRECIATION_LIST = "admin/appreciation/list";
7
+ export declare const CREATE_APPRECIATION = "admin/appreciation/create";
8
+ export declare const FETCH_FEEDBACK_LIST = "admin/feedback/list";
9
+ export declare const CREATE_FEEDBACK = "admin/feedback/create";
10
+ export declare const FETCH_ONE_TO_ONE_LIST = "admin/meeting/list";
11
+ export declare const FETCH_MEETING_LIST = "admin/meeting";
12
+ export declare const CREATE_MEETING = "admin/meeting/create";
13
+ export declare const RESCHEDULE_ONE_TO_ONE = "admin/meeting/reschedule";
14
+ export declare const UPDATE_ONE_TO_ONE = "admin/meeting/update";
16
15
  export declare const CREATE_MEETING_REMARK = "/admin/meeting/remark/create";
17
- export declare const GET_SEARCH_FIELDS = "/common/get-form-master";
18
- export declare const GET_FORM_FIELDS = "/common/get-form-field";
16
+ export declare const GET_SEARCH_FIELDS = "common/get-form-master";
17
+ export declare const GET_FORM_FIELDS = "common/get-form-field";
@@ -1,7 +1,8 @@
1
1
  import React from 'react';
2
- declare const AuthProvider: ({ children, token, apiURL }: {
2
+ declare const AuthProvider: ({ children, token, apiURL, AWS_S3_READ_URL }: {
3
3
  token: string;
4
4
  apiURL: string;
5
+ AWS_S3_READ_URL: string;
5
6
  children: React.ReactNode;
6
7
  }) => import("react/jsx-runtime").JSX.Element;
7
8
  export default AuthProvider;
@@ -2,7 +2,8 @@ import { ReactNode } from 'react';
2
2
  interface AuthProviderProps {
3
3
  token: string;
4
4
  apiURL: string;
5
+ AWS_S3_READ_URL: string;
5
6
  children: ReactNode;
6
7
  }
7
- declare const FeedbackProvider: ({ token, apiURL, children }: AuthProviderProps) => import("react/jsx-runtime").JSX.Element;
8
+ declare const FeedbackProvider: ({ token, apiURL, AWS_S3_READ_URL, children }: AuthProviderProps) => import("react/jsx-runtime").JSX.Element;
8
9
  export default FeedbackProvider;
@@ -3,6 +3,7 @@ export type State = {
3
3
  user: any;
4
4
  token?: string;
5
5
  apiURL?: string;
6
+ AWS_S3_READ_URL?: string;
6
7
  };
7
8
  };
8
9
  type Actions = {
@@ -10,6 +11,7 @@ type Actions = {
10
11
  user: any;
11
12
  token: string;
12
13
  apiURL: string;
14
+ AWS_S3_READ_URL: string;
13
15
  }) => void;
14
16
  clearSession: () => void;
15
17
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@zimyo/engage",
3
3
  "private": false,
4
- "version": "0.0.13",
4
+ "version": "0.0.14",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },