@forge/util
2.0.12.0.1-experimental-7890858
packages/ari/rovo/agent/index.js~
packages/ari/rovo/agent/index.jsModified+1−3
Index: package/packages/ari/rovo/agent/index.js
===================================================================
--- package/packages/ari/rovo/agent/index.js
+++ package/packages/ari/rovo/agent/index.js
@@ -284,9 +284,8 @@
var rovoAgentAriStaticOpts = {
qualifier: "ari",
platformQualifier: "cloud",
cloudId: new RegExp("^$"),
- // eslint-disable-line no-useless-escape
resourceOwner: RovoAgentAriResourceOwner,
resourceType: RovoAgentAriResourceType,
resourceIdSlug: "activation/{activationId}/{agentId}",
resourceIdSegmentFormats: {
@@ -299,10 +298,9 @@
// 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;
}