Skip to content

Commit 2e41e10

Browse files
committed
Working
1 parent cdd71af commit 2e41e10

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/FusionAuthClient.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,12 @@ export class FusionAuthClient {
7272
/**
7373
* Activates the FusionAuth Reactor using a license id and optionally a license text (for air-gapped deployments)
7474
*
75-
* @param {string} licenseId The license id
7675
* @param {ReactorRequest} request An optional request that contains the license text to activate Reactor (useful for air-gap deployments of FusionAuth).
7776
* @returns {Promise<ClientResponse<void>>}
7877
*/
79-
activateReactor(licenseId: string, request: ReactorRequest): Promise<ClientResponse<void>> {
78+
activateReactor(request: ReactorRequest): Promise<ClientResponse<void>> {
8079
return this.start<void, Errors>()
8180
.withUri('/api/reactor')
82-
.withUriSegment(licenseId)
8381
.withJSONBody(request)
8482
.withMethod("POST")
8583
.go();
@@ -7289,6 +7287,7 @@ export interface ReactorMetrics {
72897287
*/
72907288
export interface ReactorRequest {
72917289
license?: string;
7290+
licenseId?: string;
72927291
}
72937292

72947293
/**

0 commit comments

Comments
 (0)