@forge/util

2.0.1-experimental-78908582.0.1-experimental-04cc2b9
packages/ari/workday/worker/index.js
~packages/ari/workday/worker/index.jsModified
+5−1
Index: package/packages/ari/workday/worker/index.js
===================================================================
--- package/packages/ari/workday/worker/index.js
+++ package/packages/ari/workday/worker/index.js
@@ -284,21 +284,25 @@
 var workdayWorkerAriStaticOpts = {
   qualifier: "ari",
   platformQualifier: "third-party",
   cloudId: new RegExp("^$"),
+  // eslint-disable-line no-useless-escape
   resourceOwner: WorkdayWorkerAriResourceOwner,
   resourceType: WorkdayWorkerAriResourceType,
   resourceIdSlug: "{workdayTenantKey}/{workerWorkdayId}",
   resourceIdSegmentFormats: {
     workdayTenantKey: /[!a-zA-Z0-9\-_.~@:;{}=]+(\/[!a-zA-Z0-9\-_.~@:;{}=]+)*/,
+    // eslint-disable-line no-useless-escape
     workerWorkdayId: /[!a-zA-Z0-9\-_.~@:;{}=]+(\/[!a-zA-Z0-9\-_.~@:;{}=]+)*/
+    // eslint-disable-line no-useless-escape
   }
 };
 
 // src/workday/worker/index.ts
 var WorkdayWorkerAri = class _WorkdayWorkerAri extends RegisteredAri {
   constructor(opts) {
-    super(opts), this._workdayTenantKey = opts.resourceIdSegmentValues.workdayTenantKey, this._workerWorkdayId = opts.resourceIdSegmentValues.workerWorkdayId;
+    super(opts);
+    this._workdayTenantKey = opts.resourceIdSegmentValues.workdayTenantKey, this._workerWorkdayId = opts.resourceIdSegmentValues.workerWorkdayId;
   }
   get workdayTenantKey() {
     return this._workdayTenantKey;
   }