@vonage/client-sdk 2.5.0 → 2.6.0
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/client/index.cjs +4553 -3875
- package/dist/client/index.mjs +4553 -3875
- package/dist/kotlin/clientsdk-clientcore_js.d.ts +3 -2
- package/dist/vonageClientSDK.js +4541 -3859
- package/dist/vonageClientSDK.min.js +23 -23
- package/dist/vonageClientSDK.min.mjs +21 -21
- package/dist/vonageClientSDK.mjs +4541 -3859
- package/package.json +4 -3
|
@@ -1083,10 +1083,11 @@ export declare namespace vonage {
|
|
|
1083
1083
|
equals(other: Nullable<any>): boolean;
|
|
1084
1084
|
}
|
|
1085
1085
|
class HttpClientResponseJS {
|
|
1086
|
-
constructor(statusCode: number, body?: Nullable<string>);
|
|
1086
|
+
constructor(statusCode: number, body?: Nullable<string>, headers?: Nullable<Json>);
|
|
1087
1087
|
get statusCode(): number;
|
|
1088
1088
|
get body(): Nullable<string>;
|
|
1089
|
-
|
|
1089
|
+
get headers(): Nullable<Json>;
|
|
1090
|
+
copy(statusCode?: number, body?: Nullable<string>, headers?: Nullable<Json>): vonage.HttpClientResponseJS;
|
|
1090
1091
|
toString(): string;
|
|
1091
1092
|
hashCode(): number;
|
|
1092
1093
|
equals(other: Nullable<any>): boolean;
|