@fonoster/apiserver 0.9.52 → 0.9.54
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.
|
@@ -319,14 +319,17 @@ declare const assistantWithoutApiKeySchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
319
319
|
callDirection: z.ZodNativeEnum<typeof import("@fonoster/types").CallDirection>;
|
|
320
320
|
ingressNumber: z.ZodString;
|
|
321
321
|
callerNumber: z.ZodString;
|
|
322
|
+
metadata: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
322
323
|
}, "strip", z.ZodTypeAny, {
|
|
323
324
|
callDirection?: import("@fonoster/types").CallDirection;
|
|
324
325
|
ingressNumber?: string;
|
|
325
326
|
callerNumber?: string;
|
|
327
|
+
metadata?: Record<string, string>;
|
|
326
328
|
}, {
|
|
327
329
|
callDirection?: import("@fonoster/types").CallDirection;
|
|
328
330
|
ingressNumber?: string;
|
|
329
331
|
callerNumber?: string;
|
|
332
|
+
metadata?: Record<string, string>;
|
|
330
333
|
}>;
|
|
331
334
|
conversation: z.ZodArray<z.ZodObject<{
|
|
332
335
|
userInput: z.ZodString;
|
|
@@ -402,6 +405,7 @@ declare const assistantWithoutApiKeySchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
402
405
|
callDirection?: import("@fonoster/types").CallDirection;
|
|
403
406
|
ingressNumber?: string;
|
|
404
407
|
callerNumber?: string;
|
|
408
|
+
metadata?: Record<string, string>;
|
|
405
409
|
};
|
|
406
410
|
conversation?: {
|
|
407
411
|
expected?: {
|
|
@@ -423,6 +427,7 @@ declare const assistantWithoutApiKeySchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
423
427
|
callDirection?: import("@fonoster/types").CallDirection;
|
|
424
428
|
ingressNumber?: string;
|
|
425
429
|
callerNumber?: string;
|
|
430
|
+
metadata?: Record<string, string>;
|
|
426
431
|
};
|
|
427
432
|
conversation?: {
|
|
428
433
|
expected?: {
|
|
@@ -452,6 +457,7 @@ declare const assistantWithoutApiKeySchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
452
457
|
callDirection?: import("@fonoster/types").CallDirection;
|
|
453
458
|
ingressNumber?: string;
|
|
454
459
|
callerNumber?: string;
|
|
460
|
+
metadata?: Record<string, string>;
|
|
455
461
|
};
|
|
456
462
|
conversation?: {
|
|
457
463
|
expected?: {
|
|
@@ -481,6 +487,7 @@ declare const assistantWithoutApiKeySchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
481
487
|
callDirection?: import("@fonoster/types").CallDirection;
|
|
482
488
|
ingressNumber?: string;
|
|
483
489
|
callerNumber?: string;
|
|
490
|
+
metadata?: Record<string, string>;
|
|
484
491
|
};
|
|
485
492
|
conversation?: {
|
|
486
493
|
expected?: {
|
|
@@ -825,6 +832,7 @@ declare const assistantWithoutApiKeySchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
825
832
|
callDirection?: import("@fonoster/types").CallDirection;
|
|
826
833
|
ingressNumber?: string;
|
|
827
834
|
callerNumber?: string;
|
|
835
|
+
metadata?: Record<string, string>;
|
|
828
836
|
};
|
|
829
837
|
conversation?: {
|
|
830
838
|
expected?: {
|
|
@@ -919,6 +927,7 @@ declare const assistantWithoutApiKeySchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
919
927
|
callDirection?: import("@fonoster/types").CallDirection;
|
|
920
928
|
ingressNumber?: string;
|
|
921
929
|
callerNumber?: string;
|
|
930
|
+
metadata?: Record<string, string>;
|
|
922
931
|
};
|
|
923
932
|
conversation?: {
|
|
924
933
|
expected?: {
|
|
@@ -357,14 +357,17 @@ declare function createValidationSchema(request: {
|
|
|
357
357
|
callDirection: z.ZodNativeEnum<typeof import("@fonoster/types").CallDirection>;
|
|
358
358
|
ingressNumber: z.ZodString;
|
|
359
359
|
callerNumber: z.ZodString;
|
|
360
|
+
metadata: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
360
361
|
}, "strip", z.ZodTypeAny, {
|
|
361
362
|
callDirection?: import("@fonoster/types").CallDirection;
|
|
362
363
|
ingressNumber?: string;
|
|
363
364
|
callerNumber?: string;
|
|
365
|
+
metadata?: Record<string, string>;
|
|
364
366
|
}, {
|
|
365
367
|
callDirection?: import("@fonoster/types").CallDirection;
|
|
366
368
|
ingressNumber?: string;
|
|
367
369
|
callerNumber?: string;
|
|
370
|
+
metadata?: Record<string, string>;
|
|
368
371
|
}>;
|
|
369
372
|
conversation: z.ZodArray<z.ZodObject<{
|
|
370
373
|
userInput: z.ZodString;
|
|
@@ -440,6 +443,7 @@ declare function createValidationSchema(request: {
|
|
|
440
443
|
callDirection?: import("@fonoster/types").CallDirection;
|
|
441
444
|
ingressNumber?: string;
|
|
442
445
|
callerNumber?: string;
|
|
446
|
+
metadata?: Record<string, string>;
|
|
443
447
|
};
|
|
444
448
|
conversation?: {
|
|
445
449
|
expected?: {
|
|
@@ -461,6 +465,7 @@ declare function createValidationSchema(request: {
|
|
|
461
465
|
callDirection?: import("@fonoster/types").CallDirection;
|
|
462
466
|
ingressNumber?: string;
|
|
463
467
|
callerNumber?: string;
|
|
468
|
+
metadata?: Record<string, string>;
|
|
464
469
|
};
|
|
465
470
|
conversation?: {
|
|
466
471
|
expected?: {
|
|
@@ -490,6 +495,7 @@ declare function createValidationSchema(request: {
|
|
|
490
495
|
callDirection?: import("@fonoster/types").CallDirection;
|
|
491
496
|
ingressNumber?: string;
|
|
492
497
|
callerNumber?: string;
|
|
498
|
+
metadata?: Record<string, string>;
|
|
493
499
|
};
|
|
494
500
|
conversation?: {
|
|
495
501
|
expected?: {
|
|
@@ -519,6 +525,7 @@ declare function createValidationSchema(request: {
|
|
|
519
525
|
callDirection?: import("@fonoster/types").CallDirection;
|
|
520
526
|
ingressNumber?: string;
|
|
521
527
|
callerNumber?: string;
|
|
528
|
+
metadata?: Record<string, string>;
|
|
522
529
|
};
|
|
523
530
|
conversation?: {
|
|
524
531
|
expected?: {
|
|
@@ -863,6 +870,7 @@ declare function createValidationSchema(request: {
|
|
|
863
870
|
callDirection?: import("@fonoster/types").CallDirection;
|
|
864
871
|
ingressNumber?: string;
|
|
865
872
|
callerNumber?: string;
|
|
873
|
+
metadata?: Record<string, string>;
|
|
866
874
|
};
|
|
867
875
|
conversation?: {
|
|
868
876
|
expected?: {
|
|
@@ -957,6 +965,7 @@ declare function createValidationSchema(request: {
|
|
|
957
965
|
callDirection?: import("@fonoster/types").CallDirection;
|
|
958
966
|
ingressNumber?: string;
|
|
959
967
|
callerNumber?: string;
|
|
968
|
+
metadata?: Record<string, string>;
|
|
960
969
|
};
|
|
961
970
|
conversation?: {
|
|
962
971
|
expected?: {
|
|
@@ -1053,6 +1062,7 @@ declare function createValidationSchema(request: {
|
|
|
1053
1062
|
callDirection?: import("@fonoster/types").CallDirection;
|
|
1054
1063
|
ingressNumber?: string;
|
|
1055
1064
|
callerNumber?: string;
|
|
1065
|
+
metadata?: Record<string, string>;
|
|
1056
1066
|
};
|
|
1057
1067
|
conversation?: {
|
|
1058
1068
|
expected?: {
|
|
@@ -1150,6 +1160,7 @@ declare function createValidationSchema(request: {
|
|
|
1150
1160
|
callDirection?: import("@fonoster/types").CallDirection;
|
|
1151
1161
|
ingressNumber?: string;
|
|
1152
1162
|
callerNumber?: string;
|
|
1163
|
+
metadata?: Record<string, string>;
|
|
1153
1164
|
};
|
|
1154
1165
|
conversation?: {
|
|
1155
1166
|
expected?: {
|
|
@@ -1247,6 +1258,7 @@ declare function createValidationSchema(request: {
|
|
|
1247
1258
|
callDirection?: import("@fonoster/types").CallDirection;
|
|
1248
1259
|
ingressNumber?: string;
|
|
1249
1260
|
callerNumber?: string;
|
|
1261
|
+
metadata?: Record<string, string>;
|
|
1250
1262
|
};
|
|
1251
1263
|
conversation?: {
|
|
1252
1264
|
expected?: {
|
|
@@ -1344,6 +1356,7 @@ declare function createValidationSchema(request: {
|
|
|
1344
1356
|
callDirection?: import("@fonoster/types").CallDirection;
|
|
1345
1357
|
ingressNumber?: string;
|
|
1346
1358
|
callerNumber?: string;
|
|
1359
|
+
metadata?: Record<string, string>;
|
|
1347
1360
|
};
|
|
1348
1361
|
conversation?: {
|
|
1349
1362
|
expected?: {
|
|
@@ -1453,6 +1466,7 @@ declare function createValidationSchema(request: {
|
|
|
1453
1466
|
callDirection?: import("@fonoster/types").CallDirection;
|
|
1454
1467
|
ingressNumber?: string;
|
|
1455
1468
|
callerNumber?: string;
|
|
1469
|
+
metadata?: Record<string, string>;
|
|
1456
1470
|
};
|
|
1457
1471
|
conversation?: {
|
|
1458
1472
|
expected?: {
|
|
@@ -1565,6 +1579,7 @@ declare function createValidationSchema(request: {
|
|
|
1565
1579
|
callDirection?: import("@fonoster/types").CallDirection;
|
|
1566
1580
|
ingressNumber?: string;
|
|
1567
1581
|
callerNumber?: string;
|
|
1582
|
+
metadata?: Record<string, string>;
|
|
1568
1583
|
};
|
|
1569
1584
|
conversation?: {
|
|
1570
1585
|
expected?: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fonoster/apiserver",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.54",
|
|
4
4
|
"description": "APIServer for Fonoster",
|
|
5
5
|
"author": "Pedro Sanders <psanders@fonoster.com>",
|
|
6
6
|
"homepage": "https://github.com/fonoster/fonoster#readme",
|
|
@@ -21,13 +21,13 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@deepgram/sdk": "^3.5.1",
|
|
24
|
-
"@fonoster/authz": "^0.9.
|
|
25
|
-
"@fonoster/common": "^0.9.
|
|
26
|
-
"@fonoster/identity": "^0.9.
|
|
27
|
-
"@fonoster/logger": "^0.9.
|
|
28
|
-
"@fonoster/sipnet": "^0.9.
|
|
29
|
-
"@fonoster/streams": "^0.9.
|
|
30
|
-
"@fonoster/types": "^0.9.
|
|
24
|
+
"@fonoster/authz": "^0.9.54",
|
|
25
|
+
"@fonoster/common": "^0.9.54",
|
|
26
|
+
"@fonoster/identity": "^0.9.54",
|
|
27
|
+
"@fonoster/logger": "^0.9.54",
|
|
28
|
+
"@fonoster/sipnet": "^0.9.54",
|
|
29
|
+
"@fonoster/streams": "^0.9.54",
|
|
30
|
+
"@fonoster/types": "^0.9.54",
|
|
31
31
|
"@google-cloud/speech": "^6.6.0",
|
|
32
32
|
"@google-cloud/text-to-speech": "^5.3.0",
|
|
33
33
|
"@grpc/grpc-js": "~1.10.6",
|
|
@@ -73,5 +73,5 @@
|
|
|
73
73
|
"@types/uuid": "^10.0.0",
|
|
74
74
|
"@types/validator": "^13.12.0"
|
|
75
75
|
},
|
|
76
|
-
"gitHead": "
|
|
76
|
+
"gitHead": "5272372951df997cb17d49f9cda6fc9816e304c9"
|
|
77
77
|
}
|