@forge/util

2.0.12.0.1-experimental-7890858
packages/ari/chunk-DQZZKF3M.mjs
+packages/ari/chunk-DQZZKF3M.mjsNew file
+71
Index: package/packages/ari/chunk-DQZZKF3M.mjs
===================================================================
--- package/packages/ari/chunk-DQZZKF3M.mjs
+++ package/packages/ari/chunk-DQZZKF3M.mjs
@@ -0,0 +1,71 @@
+import {
+  JiraWorkflowSchemeAriResourceOwner,
+  JiraWorkflowSchemeAriResourceType
+} from "./chunk-GF5WTUWI.mjs";
+import {
+  RegisteredAri
+} from "./chunk-AB4PPISI.mjs";
+import {
+  AriParser
+} from "./chunk-S7RIZVFI.mjs";
+
+// src/jira/workflow-scheme/manifest.ts
+var jiraWorkflowSchemeAriStaticOpts = {
+  qualifier: "ari",
+  platformQualifier: "cloud",
+  cloudId: new RegExp("^[a-zA-Z0-9_\\-.]{1,255}$"),
+  resourceOwner: JiraWorkflowSchemeAriResourceOwner,
+  resourceType: JiraWorkflowSchemeAriResourceType,
+  resourceIdSlug: "activation/{activationId}/{workflowSchemeId}",
+  resourceIdSegmentFormats: {
+    activationId: /[a-zA-Z0-9\-]+/,
+    // eslint-disable-line no-useless-escape
+    workflowSchemeId: /[!a-zA-Z0-9\-_.~@:;{}=]+(\/[!a-zA-Z0-9\-_.~@:;{}=]+)*/
+  }
+};
+
+// src/jira/workflow-scheme/index.ts
+var JiraWorkflowSchemeAri = class _JiraWorkflowSchemeAri extends RegisteredAri {
+  constructor(opts) {
+    super(opts), this._siteId = opts.cloudId || "", this._activationId = opts.resourceIdSegmentValues.activationId, this._workflowSchemeId = opts.resourceIdSegmentValues.workflowSchemeId;
+  }
+  get siteId() {
+    return this._siteId;
+  }
+  get activationId() {
+    return this._activationId;
+  }
+  get workflowSchemeId() {
+    return this._workflowSchemeId;
+  }
+  static create(opts) {
+    let derivedOpts = {
+      qualifier: jiraWorkflowSchemeAriStaticOpts.qualifier,
+      platformQualifier: jiraWorkflowSchemeAriStaticOpts.platformQualifier,
+      cloudId: opts.siteId,
+      resourceOwner: jiraWorkflowSchemeAriStaticOpts.resourceOwner,
+      resourceType: jiraWorkflowSchemeAriStaticOpts.resourceType,
+      resourceId: `activation/${opts.activationId}/${opts.workflowSchemeId}`,
+      resourceIdSegmentValues: {
+        activationId: opts.activationId,
+        workflowSchemeId: opts.workflowSchemeId
+      }
+    }, ariOpts = AriParser.fromOpts(derivedOpts, jiraWorkflowSchemeAriStaticOpts);
+    return new _JiraWorkflowSchemeAri(ariOpts);
+  }
+  static parse(maybeAri) {
+    let opts = AriParser.fromString(maybeAri, jiraWorkflowSchemeAriStaticOpts);
+    return new _JiraWorkflowSchemeAri(opts);
+  }
+  getVariables() {
+    return {
+      siteId: this.siteId,
+      activationId: this.activationId,
+      workflowSchemeId: this.workflowSchemeId
+    };
+  }
+};
+
+export {
+  JiraWorkflowSchemeAri
+};