@zimyo/engage 0.0.14 → 0.0.16
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/dist/components/feedback/one-to-one/schedule-modal/form.schema.d.ts +3 -3
- package/dist/main.cjs +222 -222
- package/dist/main.d.ts +1 -1
- package/dist/main.js +13900 -13886
- package/dist/shared/constants/endpoints.d.ts +12 -0
- package/dist/shared/providers/engage-provider.d.ts +9 -0
- package/package.json +1 -1
- package/dist/shared/providers/feedback-provider.d.ts +0 -9
|
@@ -15,3 +15,15 @@ export declare const UPDATE_ONE_TO_ONE = "admin/meeting/update";
|
|
|
15
15
|
export declare const CREATE_MEETING_REMARK = "/admin/meeting/remark/create";
|
|
16
16
|
export declare const GET_SEARCH_FIELDS = "common/get-form-master";
|
|
17
17
|
export declare const GET_FORM_FIELDS = "common/get-form-field";
|
|
18
|
+
export declare const APIS: {
|
|
19
|
+
EMPLOYEES: {
|
|
20
|
+
SEARCH_EMPLOYEES: string;
|
|
21
|
+
};
|
|
22
|
+
APPRECIATIONS: {
|
|
23
|
+
BADGES: {
|
|
24
|
+
FETCH: string;
|
|
25
|
+
};
|
|
26
|
+
FETCH: string;
|
|
27
|
+
CREATE: string;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
interface EngageProviderProps {
|
|
3
|
+
token: string;
|
|
4
|
+
API_BASE_URL: string;
|
|
5
|
+
ASSETS_BASE_URL: string;
|
|
6
|
+
children: ReactNode;
|
|
7
|
+
}
|
|
8
|
+
declare const EngageProvider: ({ token, API_BASE_URL, ASSETS_BASE_URL, children }: EngageProviderProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export default EngageProvider;
|
package/package.json
CHANGED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { ReactNode } from 'react';
|
|
2
|
-
interface AuthProviderProps {
|
|
3
|
-
token: string;
|
|
4
|
-
apiURL: string;
|
|
5
|
-
AWS_S3_READ_URL: string;
|
|
6
|
-
children: ReactNode;
|
|
7
|
-
}
|
|
8
|
-
declare const FeedbackProvider: ({ token, apiURL, AWS_S3_READ_URL, children }: AuthProviderProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
-
export default FeedbackProvider;
|