@forge/util

2.0.1-experimental-78908582.0.1-experimental-04cc2b9
packages/ari/papi/api/index.js
~packages/ari/papi/api/index.jsModified
+5−2
Index: package/packages/ari/papi/api/index.js
===================================================================
--- package/packages/ari/papi/api/index.js
+++ package/packages/ari/papi/api/index.js
@@ -284,20 +284,23 @@
 var papiApiAriStaticOpts = {
   qualifier: "ari",
   platformQualifier: "cloud",
   cloudId: new RegExp("^$"),
+  // eslint-disable-line no-useless-escape
   resourceOwner: PapiApiAriResourceOwner,
-  resourceType: "api",
+  resourceType: PapiApiAriResourceType,
   resourceIdSlug: "catalog/{uuid}",
   resourceIdSegmentFormats: {
     uuid: /[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/papi/api/index.ts
 var PapiApiAri = class _PapiApiAri extends RegisteredAri {
   constructor(opts) {
-    super(opts), this._uuid = opts.resourceIdSegmentValues.uuid;
+    super(opts);
+    this._uuid = opts.resourceIdSegmentValues.uuid;
   }
   get uuid() {
     return this._uuid;
   }