@forge/util
2.0.12.0.1-experimental-7890858
packages/ari/platform-services/index.js~
packages/ari/platform-services/index.jsModified+1−4
Index: package/packages/ari/platform-services/index.js
===================================================================
--- package/packages/ari/platform-services/index.js
+++ package/packages/ari/platform-services/index.js
@@ -282,23 +282,20 @@
var platformServicesStreamhubSchemaAriStaticOpts = {
qualifier: "ari",
platformQualifier: "cloud",
cloudId: new RegExp("^$"),
- // eslint-disable-line no-useless-escape
resourceOwner: PlatformServicesStreamhubSchemaAriResourceOwner,
resourceType: PlatformServicesStreamhubSchemaAriResourceType,
resourceIdSlug: "{streamhubSchemaId}",
resourceIdSegmentFormats: {
streamhubSchemaId: /[!a-zA-Z0-9\-_.~@:;{}=]+(\/[!a-zA-Z0-9\-_.~@:;{}=]+)*/
- // eslint-disable-line no-useless-escape
}
};
// src/platform-services/streamhub-schema/index.ts
var PlatformServicesStreamhubSchemaAri = class _PlatformServicesStreamhubSchemaAri extends RegisteredAri {
constructor(opts) {
- super(opts);
- this._streamhubSchemaId = opts.resourceIdSegmentValues.streamhubSchemaId;
+ super(opts), this._streamhubSchemaId = opts.resourceIdSegmentValues.streamhubSchemaId;
}
get streamhubSchemaId() {
return this._streamhubSchemaId;
}