@forge/util

2.0.1-experimental-78908582.0.1-experimental-04cc2b9
packages/ari/support/index.js
~packages/ari/support/index.jsModified
+8−2
Index: package/packages/ari/support/index.js
===================================================================
--- package/packages/ari/support/index.js
+++ package/packages/ari/support/index.js
@@ -283,20 +283,23 @@
 var supportCustomerAriStaticOpts = {
   qualifier: "ari",
   platformQualifier: "cloud",
   cloudId: new RegExp("^$"),
+  // eslint-disable-line no-useless-escape
   resourceOwner: SupportCustomerAriResourceOwner,
   resourceType: SupportCustomerAriResourceType,
   resourceIdSlug: "{resourceName}",
   resourceIdSegmentFormats: {
     resourceName: /[a-zA-Z0-9\-_.]*/
+    // eslint-disable-line no-useless-escape
   }
 };
 
 // src/support/customer/index.ts
 var SupportCustomerAri = class _SupportCustomerAri extends RegisteredAri {
   constructor(opts) {
-    super(opts), this._resourceName = opts.resourceIdSegmentValues.resourceName;
+    super(opts);
+    this._resourceName = opts.resourceIdSegmentValues.resourceName;
   }
   get resourceName() {
     return this._resourceName;
   }
@@ -332,20 +335,23 @@
 var supportCustomerSupportAriStaticOpts = {
   qualifier: "ari",
   platformQualifier: "cloud",
   cloudId: new RegExp("^$"),
+  // eslint-disable-line no-useless-escape
   resourceOwner: SupportCustomerSupportAriResourceOwner,
   resourceType: SupportCustomerSupportAriResourceType,
   resourceIdSlug: "{resourceName}",
   resourceIdSegmentFormats: {
     resourceName: /[a-zA-Z0-9\-_.]*/
+    // eslint-disable-line no-useless-escape
   }
 };
 
 // src/support/customer-support/index.ts
 var SupportCustomerSupportAri = class _SupportCustomerSupportAri extends RegisteredAri {
   constructor(opts) {
-    super(opts), this._resourceName = opts.resourceIdSegmentValues.resourceName;
+    super(opts);
+    this._resourceName = opts.resourceIdSegmentValues.resourceName;
   }
   get resourceName() {
     return this._resourceName;
   }