@forge/util

2.0.1-experimental-78908582.0.1-experimental-04cc2b9
packages/ari/google/account/index.js
~packages/ari/google/account/index.jsModified
+4−1
Index: package/packages/ari/google/account/index.js
===================================================================
--- package/packages/ari/google/account/index.js
+++ package/packages/ari/google/account/index.js
@@ -284,20 +284,23 @@
 var googleAccountAriStaticOpts = {
   qualifier: "ari",
   platformQualifier: "third-party",
   cloudId: new RegExp("^$"),
+  // eslint-disable-line no-useless-escape
   resourceOwner: GoogleAccountAriResourceOwner,
   resourceType: GoogleAccountAriResourceType,
   resourceIdSlug: "{accountId}",
   resourceIdSegmentFormats: {
     accountId: /[a-zA-Z0-9\-_.~@;{}=]{0,255}/
+    // eslint-disable-line no-useless-escape
   }
 };
 
 // src/google/account/index.ts
 var GoogleAccountAri = class _GoogleAccountAri extends RegisteredAri {
   constructor(opts) {
-    super(opts), this._accountId = opts.resourceIdSegmentValues.accountId;
+    super(opts);
+    this._accountId = opts.resourceIdSegmentValues.accountId;
   }
   get accountId() {
     return this._accountId;
   }