@campxdev/campx-web-utils 2.0.16 → 2.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.
- package/dist/cjs/index.js +1 -1
- package/dist/esm/index.js +2 -2
- package/package.json +1 -1
- package/src/config/voip.config.ts +2 -0
- package/src/utils/constants.ts +1 -0
package/package.json
CHANGED
|
@@ -11,6 +11,8 @@
|
|
|
11
11
|
* Add workspace names here to enable VoIP for that workspace.
|
|
12
12
|
*/
|
|
13
13
|
export const VOIP_ENABLED_WORKSPACES: string[] = [
|
|
14
|
+
'admissions-director-workspace',
|
|
15
|
+
'admissions-counsellor-workspace',
|
|
14
16
|
'admissions-officer-workspace',
|
|
15
17
|
'tele-counsellor-workspace',
|
|
16
18
|
]
|
package/src/utils/constants.ts
CHANGED
|
@@ -32,4 +32,5 @@ export const workspaceApiMapping: Record<string, string> = {
|
|
|
32
32
|
'team-owner-workspace': '/team-owner-api',
|
|
33
33
|
'admissions-counsellor-workspace': '/admissions-counsellor-api',
|
|
34
34
|
'admissions-officer-workspace': '/admissions-officer-api',
|
|
35
|
+
'admissions-director-workspace': '/admissions-director-api',
|
|
35
36
|
};
|