@forge/util
2.0.1-experimental-78908582.0.1-experimental-04cc2b9
packages/ari/rovo/agent/index.js~
packages/ari/rovo/agent/index.jsModified+3−1
Index: package/packages/ari/rovo/agent/index.js
===================================================================
--- package/packages/ari/rovo/agent/index.js
+++ package/packages/ari/rovo/agent/index.js
@@ -284,8 +284,9 @@
var rovoAgentAriStaticOpts = {
qualifier: "ari",
platformQualifier: "cloud",
cloudId: new RegExp("^$"),
+ // eslint-disable-line no-useless-escape
resourceOwner: RovoAgentAriResourceOwner,
resourceType: RovoAgentAriResourceType,
resourceIdSlug: "activation/{activationId}/{agentId}",
resourceIdSegmentFormats: {
@@ -298,9 +299,10 @@
// src/rovo/agent/index.ts
var RovoAgentAri = class _RovoAgentAri extends RegisteredAri {
constructor(opts) {
- super(opts), this._activationId = opts.resourceIdSegmentValues.activationId, this._agentId = opts.resourceIdSegmentValues.agentId;
+ super(opts);
+ this._activationId = opts.resourceIdSegmentValues.activationId, this._agentId = opts.resourceIdSegmentValues.agentId;
}
get activationId() {
return this._activationId;
}