@d-id/client-sdk 1.2.0-staging.339 → 1.2.1-staging.342
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/{index-CneVgQpS.js → index-N14c6VW4.js} +131 -118
- package/dist/index.js +24 -23
- package/dist/index.umd.cjs +5 -5
- package/dist/{livekit-manager-DXAfWjwR.js → livekit-manager-Cn2SQGJF.js} +1 -1
- package/dist/src/errors/network-error.d.ts +8 -2
- package/dist/src/index.d.ts +1 -0
- package/dist/src/version.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { c as De, C as O, S as l, a as Fe, b as Ne, A as m, d as Ue, l as de, e as je, t as xe, f as v, g as U, h as Oe, i as Be, j as A, n as Je } from "./index-
|
|
1
|
+
import { c as De, C as O, S as l, a as Fe, b as Ne, A as m, d as Ue, l as de, e as je, t as xe, f as v, g as U, h as Oe, i as Be, j as A, n as Je } from "./index-N14c6VW4.js";
|
|
2
2
|
function Qe(C, L, g, i) {
|
|
3
3
|
const M = De(C, `${L}/v2/agents/${g}`, i);
|
|
4
4
|
return {
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
-
import { BaseError } from './base-error';
|
|
1
|
+
import { BaseError, ErrorJson } from './base-error';
|
|
2
2
|
|
|
3
3
|
export declare class NetworkError extends BaseError {
|
|
4
|
-
|
|
4
|
+
readonly endpoint?: string;
|
|
5
|
+
readonly method?: string;
|
|
6
|
+
constructor(originalError?: unknown, meta?: {
|
|
7
|
+
url?: string;
|
|
8
|
+
method?: string;
|
|
9
|
+
});
|
|
10
|
+
toJson(): ErrorJson;
|
|
5
11
|
}
|
package/dist/src/index.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const SDK_VERSION: string;
|