@forge/util
2.0.1-experimental-78908582.0.1-experimental-04cc2b9
packages/ari/mercury/change-proposal-status/index.js~
packages/ari/mercury/change-proposal-status/index.jsModified+4−1
Index: package/packages/ari/mercury/change-proposal-status/index.js
===================================================================
--- package/packages/ari/mercury/change-proposal-status/index.js
+++ package/packages/ari/mercury/change-proposal-status/index.js
@@ -284,22 +284,25 @@
var mercuryChangeProposalStatusAriStaticOpts = {
qualifier: "ari",
platformQualifier: "cloud",
cloudId: new RegExp("^[a-zA-Z0-9_\\-.]{1,255}$"),
+ // eslint-disable-line no-useless-escape
resourceOwner: MercuryChangeProposalStatusAriResourceOwner,
resourceType: MercuryChangeProposalStatusAriResourceType,
resourceIdSlug: "workspace/{workspaceId}/{changeProposalStatusId}",
resourceIdSegmentFormats: {
workspaceId: /[a-zA-Z0-9\-]+/,
// eslint-disable-line no-useless-escape
changeProposalStatusId: /[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/mercury/change-proposal-status/index.ts
var MercuryChangeProposalStatusAri = class _MercuryChangeProposalStatusAri extends RegisteredAri {
constructor(opts) {
- super(opts), this._siteId = opts.cloudId || "", this._workspaceId = opts.resourceIdSegmentValues.workspaceId, this._changeProposalStatusId = opts.resourceIdSegmentValues.changeProposalStatusId;
+ super(opts);
+ this._siteId = opts.cloudId || "", this._workspaceId = opts.resourceIdSegmentValues.workspaceId, this._changeProposalStatusId = opts.resourceIdSegmentValues.changeProposalStatusId;
}
get siteId() {
return this._siteId;
}