@forge/util

2.0.12.0.1-experimental-7890858
packages/ari/commerce/catalog-account/index.js
~packages/ari/commerce/catalog-account/index.jsModified
+1−4
Index: package/packages/ari/commerce/catalog-account/index.js
===================================================================
--- package/packages/ari/commerce/catalog-account/index.js
+++ package/packages/ari/commerce/catalog-account/index.js
@@ -284,23 +284,20 @@
 var commerceCatalogAccountAriStaticOpts = {
   qualifier: "ari",
   platformQualifier: "cloud",
   cloudId: new RegExp("^$"),
-  // eslint-disable-line no-useless-escape
   resourceOwner: CommerceCatalogAccountAriResourceOwner,
   resourceType: CommerceCatalogAccountAriResourceType,
   resourceIdSlug: "{catalogAccountId}",
   resourceIdSegmentFormats: {
     catalogAccountId: /[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}/
-    // eslint-disable-line no-useless-escape
   }
 };
 
 // src/commerce/catalog-account/index.ts
 var CommerceCatalogAccountAri = class _CommerceCatalogAccountAri extends RegisteredAri {
   constructor(opts) {
-    super(opts);
-    this._catalogAccountId = opts.resourceIdSegmentValues.catalogAccountId;
+    super(opts), this._catalogAccountId = opts.resourceIdSegmentValues.catalogAccountId;
   }
   get catalogAccountId() {
     return this._catalogAccountId;
   }