@forge/util
2.0.12.0.1-experimental-7890858
packages/ari/graph/conversation-chunk/index.js~
packages/ari/graph/conversation-chunk/index.jsModified+1−4
Index: package/packages/ari/graph/conversation-chunk/index.js
===================================================================
--- package/packages/ari/graph/conversation-chunk/index.js
+++ package/packages/ari/graph/conversation-chunk/index.js
@@ -284,25 +284,22 @@
var graphConversationChunkAriStaticOpts = {
qualifier: "ari",
platformQualifier: "cloud",
cloudId: new RegExp("^$"),
- // eslint-disable-line no-useless-escape
resourceOwner: GraphConversationChunkAriResourceOwner,
resourceType: GraphConversationChunkAriResourceType,
resourceIdSlug: "activation/{activationId}/{chunkId}",
resourceIdSegmentFormats: {
activationId: /[a-zA-Z0-9\-]+/,
// eslint-disable-line no-useless-escape
chunkId: /[!a-zA-Z0-9\-_.~@:;{}=]+(\/[!a-zA-Z0-9\-_.~@:;{}=]+)*/
- // eslint-disable-line no-useless-escape
}
};
// src/graph/conversation-chunk/index.ts
var GraphConversationChunkAri = class _GraphConversationChunkAri extends RegisteredAri {
constructor(opts) {
- super(opts);
- this._activationId = opts.resourceIdSegmentValues.activationId, this._chunkId = opts.resourceIdSegmentValues.chunkId;
+ super(opts), this._activationId = opts.resourceIdSegmentValues.activationId, this._chunkId = opts.resourceIdSegmentValues.chunkId;
}
get activationId() {
return this._activationId;
}