@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.
@@ -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
- copy(statusCode?: number, body?: Nullable<string>): vonage.HttpClientResponseJS;
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;