@fonoster/apiserver 0.12.14 → 0.12.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.
|
@@ -171,7 +171,7 @@ declare const assistantWithoutApiKeySchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
171
171
|
method: z.ZodDefault<z.ZodNativeEnum<typeof import("@fonoster/common").AllowedHttpMethod>>;
|
|
172
172
|
url: z.ZodString;
|
|
173
173
|
waitForResponse: z.ZodDefault<z.ZodBoolean>;
|
|
174
|
-
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString
|
|
174
|
+
headers: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodString>, Record<string, string>, Record<string, string>>>;
|
|
175
175
|
}, "strip", z.ZodTypeAny, {
|
|
176
176
|
url?: string;
|
|
177
177
|
method?: import("@fonoster/common").AllowedHttpMethod;
|
|
@@ -577,7 +577,7 @@ declare const assistantWithoutApiKeySchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
577
577
|
method: z.ZodDefault<z.ZodNativeEnum<typeof import("@fonoster/common").AllowedHttpMethod>>;
|
|
578
578
|
url: z.ZodString;
|
|
579
579
|
waitForResponse: z.ZodDefault<z.ZodBoolean>;
|
|
580
|
-
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString
|
|
580
|
+
headers: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodString>, Record<string, string>, Record<string, string>>>;
|
|
581
581
|
}, "strip", z.ZodTypeAny, {
|
|
582
582
|
url?: string;
|
|
583
583
|
method?: import("@fonoster/common").AllowedHttpMethod;
|
|
@@ -209,7 +209,7 @@ declare function createValidationSchema(request: {
|
|
|
209
209
|
method: z.ZodDefault<z.ZodNativeEnum<typeof import("@fonoster/common").AllowedHttpMethod>>;
|
|
210
210
|
url: z.ZodString;
|
|
211
211
|
waitForResponse: z.ZodDefault<z.ZodBoolean>;
|
|
212
|
-
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString
|
|
212
|
+
headers: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodString>, Record<string, string>, Record<string, string>>>;
|
|
213
213
|
}, "strip", z.ZodTypeAny, {
|
|
214
214
|
url?: string;
|
|
215
215
|
method?: import("@fonoster/common").AllowedHttpMethod;
|
|
@@ -615,7 +615,7 @@ declare function createValidationSchema(request: {
|
|
|
615
615
|
method: z.ZodDefault<z.ZodNativeEnum<typeof import("@fonoster/common").AllowedHttpMethod>>;
|
|
616
616
|
url: z.ZodString;
|
|
617
617
|
waitForResponse: z.ZodDefault<z.ZodBoolean>;
|
|
618
|
-
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString
|
|
618
|
+
headers: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodString>, Record<string, string>, Record<string, string>>>;
|
|
619
619
|
}, "strip", z.ZodTypeAny, {
|
|
620
620
|
url?: string;
|
|
621
621
|
method?: import("@fonoster/common").AllowedHttpMethod;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fonoster/apiserver",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.16",
|
|
4
4
|
"description": "APIServer for Fonoster",
|
|
5
5
|
"author": "Pedro Sanders <psanders@fonoster.com>",
|
|
6
6
|
"homepage": "https://github.com/fonoster/fonoster#readme",
|
|
@@ -21,11 +21,11 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@deepgram/sdk": "^3.5.1",
|
|
24
|
-
"@fonoster/authz": "^0.12.
|
|
25
|
-
"@fonoster/common": "^0.12.
|
|
26
|
-
"@fonoster/identity": "^0.12.
|
|
24
|
+
"@fonoster/authz": "^0.12.16",
|
|
25
|
+
"@fonoster/common": "^0.12.16",
|
|
26
|
+
"@fonoster/identity": "^0.12.16",
|
|
27
27
|
"@fonoster/logger": "^0.12.6",
|
|
28
|
-
"@fonoster/sipnet": "^0.12.
|
|
28
|
+
"@fonoster/sipnet": "^0.12.16",
|
|
29
29
|
"@fonoster/streams": "^0.12.6",
|
|
30
30
|
"@fonoster/types": "^0.12.6",
|
|
31
31
|
"@google-cloud/speech": "^6.6.0",
|
|
@@ -73,5 +73,5 @@
|
|
|
73
73
|
"@types/uuid": "^10.0.0",
|
|
74
74
|
"@types/validator": "^13.12.0"
|
|
75
75
|
},
|
|
76
|
-
"gitHead": "
|
|
76
|
+
"gitHead": "ec03d81daf288d40aee731c84391ad42025b1bd5"
|
|
77
77
|
}
|