oci-workrequests
Advanced tools
Comparing version 1.5.7 to 1.6.0
@@ -32,4 +32,5 @@ /** | ||
protected "_clientConfiguration": common.ClientConfiguration; | ||
protected _circuitBreaker: null; | ||
protected _httpClient: common.HttpClient; | ||
constructor(params: common.AuthParams); | ||
constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration); | ||
/** | ||
@@ -73,6 +74,2 @@ * Get the endpoint that is being used to call (ex, https://www.example.com). | ||
/** | ||
* Sets the client configuration for the client | ||
*/ | ||
clientConfiguration: common.ClientConfiguration; | ||
/** | ||
* Gets the details of a work request. | ||
@@ -79,0 +76,0 @@ * @param GetWorkRequestRequest |
@@ -41,9 +41,17 @@ "use strict"; | ||
class WorkRequestClient { | ||
constructor(params) { | ||
constructor(params, clientConfiguration) { | ||
this["_endpoint"] = ""; | ||
this["_defaultHeaders"] = {}; | ||
this._circuitBreaker = null; | ||
const requestSigner = params.authenticationDetailsProvider | ||
? new common.DefaultRequestSigner(params.authenticationDetailsProvider) | ||
: null; | ||
this._httpClient = params.httpClient || new common.FetchHttpClient(requestSigner); | ||
if (clientConfiguration) { | ||
this._clientConfiguration = clientConfiguration; | ||
this._circuitBreaker = clientConfiguration.circuitBreaker | ||
? clientConfiguration.circuitBreaker.circuit | ||
: null; | ||
} | ||
this._httpClient = | ||
params.httpClient || new common.FetchHttpClient(requestSigner, this._circuitBreaker); | ||
if (params.authenticationDetailsProvider && | ||
@@ -117,8 +125,2 @@ common.isRegionProvider(params.authenticationDetailsProvider)) { | ||
/** | ||
* Sets the client configuration for the client | ||
*/ | ||
set clientConfiguration(clientConfiguration) { | ||
this._clientConfiguration = clientConfiguration; | ||
} | ||
/** | ||
* Gets the details of a work request. | ||
@@ -125,0 +127,0 @@ * @param GetWorkRequestRequest |
{ | ||
"name": "oci-workrequests", | ||
"version": "1.5.7", | ||
"version": "1.6.0", | ||
"description": "OCI NodeJS client for WorkRequests", | ||
@@ -18,4 +18,4 @@ "repository": { | ||
"dependencies": { | ||
"oci-common": "1.5.7", | ||
"oci-workrequests": "1.5.7" | ||
"oci-common": "1.6.0", | ||
"oci-workrequests": "1.6.0" | ||
}, | ||
@@ -22,0 +22,0 @@ "publishConfig": { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
188608
1770
+ Addedoci-common@1.6.0(transitive)
- Removedoci-common@1.5.7(transitive)
Updatedoci-common@1.6.0
Updatedoci-workrequests@1.6.0