@unito/integration-cli 0.60.3 → 0.60.5
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.
|
@@ -55,6 +55,9 @@ class OAuth2Service {
|
|
|
55
55
|
if (!Object.values(configurationTypes_1.RequestContentType).includes(this.requestContentType)) {
|
|
56
56
|
throw new errors_1.UnsupportedContentTypeError(`Request content type not supported: ${this.requestContentType}`);
|
|
57
57
|
}
|
|
58
|
+
this.startServer = this.startServer.bind(this);
|
|
59
|
+
this.stopServer = this.stopServer.bind(this);
|
|
60
|
+
this.handleCallback = this.handleCallback.bind(this);
|
|
58
61
|
}
|
|
59
62
|
/**
|
|
60
63
|
* Initiate the authorization flow and redirects the user to the provider's authorization page.
|
package/oclif.manifest.json
CHANGED