@forge/util
2.0.1-experimental-78908582.0.1-experimental-04cc2b9
packages/ari/graph/comment-history/index.js~
packages/ari/graph/comment-history/index.jsModified+5−1
Index: package/packages/ari/graph/comment-history/index.js
===================================================================
--- package/packages/ari/graph/comment-history/index.js
+++ package/packages/ari/graph/comment-history/index.js
@@ -284,23 +284,27 @@
var graphCommentHistoryAriStaticOpts = {
qualifier: "ari",
platformQualifier: "cloud",
cloudId: new RegExp("^$"),
+ // eslint-disable-line no-useless-escape
resourceOwner: GraphCommentHistoryAriResourceOwner,
resourceType: GraphCommentHistoryAriResourceType,
resourceIdSlug: "activation/{activationId}/{entityUUID}/{updateSequenceNumber}",
resourceIdSegmentFormats: {
activationId: /[a-zA-Z0-9\-]+/,
// eslint-disable-line no-useless-escape
entityUUID: /[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
updateSequenceNumber: /\d+/
+ // eslint-disable-line no-useless-escape
}
};
// src/graph/comment-history/index.ts
var GraphCommentHistoryAri = class _GraphCommentHistoryAri extends RegisteredAri {
constructor(opts) {
- super(opts), this._activationId = opts.resourceIdSegmentValues.activationId, this._entityUUID = opts.resourceIdSegmentValues.entityUUID, this._updateSequenceNumber = opts.resourceIdSegmentValues.updateSequenceNumber;
+ super(opts);
+ this._activationId = opts.resourceIdSegmentValues.activationId, this._entityUUID = opts.resourceIdSegmentValues.entityUUID, this._updateSequenceNumber = opts.resourceIdSegmentValues.updateSequenceNumber;
}
get activationId() {
return this._activationId;
}