@forge/util

2.0.1-experimental-78908582.0.1-experimental-04cc2b9
packages/ari/opsgenie/schedule-rotation/index.js
~packages/ari/opsgenie/schedule-rotation/index.jsModified
+4−1
Index: package/packages/ari/opsgenie/schedule-rotation/index.js
===================================================================
--- package/packages/ari/opsgenie/schedule-rotation/index.js
+++ package/packages/ari/opsgenie/schedule-rotation/index.js
@@ -284,22 +284,25 @@
 var opsgenieScheduleRotationAriStaticOpts = {
   qualifier: "ari",
   platformQualifier: "cloud",
   cloudId: new RegExp("^$"),
+  // eslint-disable-line no-useless-escape
   resourceOwner: OpsgenieScheduleRotationAriResourceOwner,
   resourceType: OpsgenieScheduleRotationAriResourceType,
   resourceIdSlug: "{workspaceId}/{scheduleRotationId}",
   resourceIdSegmentFormats: {
     workspaceId: /[a-zA-Z0-9\-]+/,
     // eslint-disable-line no-useless-escape
     scheduleRotationId: /[!a-zA-Z0-9\-_.~@:;{}=]+(\/[!a-zA-Z0-9\-_.~@:;{}=]+)*/
+    // eslint-disable-line no-useless-escape
   }
 };
 
 // src/opsgenie/schedule-rotation/index.ts
 var OpsgenieScheduleRotationAri = class _OpsgenieScheduleRotationAri extends RegisteredAri {
   constructor(opts) {
-    super(opts), this._workspaceId = opts.resourceIdSegmentValues.workspaceId, this._scheduleRotationId = opts.resourceIdSegmentValues.scheduleRotationId;
+    super(opts);
+    this._workspaceId = opts.resourceIdSegmentValues.workspaceId, this._scheduleRotationId = opts.resourceIdSegmentValues.scheduleRotationId;
   }
   get workspaceId() {
     return this._workspaceId;
   }