mirror of
https://github.com/jambonz/chrome-extension-dialer.git
synced 2026-01-25 02:08:05 +00:00
wip
This commit is contained in:
@@ -1,4 +1,10 @@
|
||||
import { Application, FetchError, FetchTransport, StatusCodes } from "./types";
|
||||
import {
|
||||
Application,
|
||||
FetchError,
|
||||
FetchTransport,
|
||||
Queue,
|
||||
StatusCodes,
|
||||
} from "./types";
|
||||
import { MSG_SOMETHING_WRONG } from "./constants";
|
||||
import { getAdvancedSettings } from "src/storage";
|
||||
|
||||
@@ -134,7 +140,7 @@ export const getApplications = () => {
|
||||
|
||||
export const getQueues = () => {
|
||||
const advancedSettings = getAdvancedSettings();
|
||||
return getFetch<string[]>(
|
||||
return getFetch<Queue[]>(
|
||||
`${advancedSettings.apiServer}/Accounts/${advancedSettings.accountSid}/Queues`
|
||||
);
|
||||
};
|
||||
|
||||
@@ -29,3 +29,8 @@ export interface Application {
|
||||
application_sid: string;
|
||||
name: string;
|
||||
}
|
||||
|
||||
export interface Queue {
|
||||
name: string;
|
||||
length: number;
|
||||
}
|
||||
|
||||
@@ -449,8 +449,8 @@ export const Phone = ({
|
||||
.then(({ json }) => {
|
||||
resolve(
|
||||
json.map((q) => ({
|
||||
name: q,
|
||||
value: q,
|
||||
name: `${q.name} (${q.length})`,
|
||||
value: q.name,
|
||||
}))
|
||||
);
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user