@forge/util
2.0.12.0.1-experimental-7890858
packages/ari/graph/service/index.js~
packages/ari/graph/service/index.jsModified+1−5
Index: package/packages/ari/graph/service/index.js
===================================================================
--- package/packages/ari/graph/service/index.js
+++ package/packages/ari/graph/service/index.js
@@ -284,25 +284,21 @@
var graphServiceAriStaticOpts = {
qualifier: "ari",
platformQualifier: "cloud",
cloudId: new RegExp("^$"),
- // eslint-disable-line no-useless-escape
resourceOwner: GraphServiceAriResourceOwner,
resourceType: GraphServiceAriResourceType,
resourceIdSlug: "{workspaceId}/{serviceId}",
resourceIdSegmentFormats: {
workspaceId: /[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
serviceId: /[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/graph/service/index.ts
var GraphServiceAri = class _GraphServiceAri extends RegisteredAri {
constructor(opts) {
- super(opts);
- this._workspaceId = opts.resourceIdSegmentValues.workspaceId, this._serviceId = opts.resourceIdSegmentValues.serviceId;
+ super(opts), this._workspaceId = opts.resourceIdSegmentValues.workspaceId, this._serviceId = opts.resourceIdSegmentValues.serviceId;
}
get workspaceId() {
return this._workspaceId;
}