@forge/util
2.0.1-experimental-78908582.0.1-experimental-04cc2b9
packages/ari/lucid.lucidchart/index.js~
packages/ari/lucid.lucidchart/index.jsModified+8−2
Index: package/packages/ari/lucid.lucidchart/index.js
===================================================================
--- package/packages/ari/lucid.lucidchart/index.js
+++ package/packages/ari/lucid.lucidchart/index.js
@@ -283,20 +283,23 @@
var lucidLucidchartDesignAriStaticOpts = {
qualifier: "ari",
platformQualifier: "third-party",
cloudId: new RegExp("^$"),
+ // eslint-disable-line no-useless-escape
resourceOwner: LucidLucidchartDesignAriResourceOwner,
resourceType: LucidLucidchartDesignAriResourceType,
resourceIdSlug: "document/{documentId}",
resourceIdSegmentFormats: {
documentId: /[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/
+ // eslint-disable-line no-useless-escape
}
};
// src/lucid.lucidchart/design/index.ts
var LucidLucidchartDesignAri = class _LucidLucidchartDesignAri extends RegisteredAri {
constructor(opts) {
- super(opts), this._documentId = opts.resourceIdSegmentValues.documentId;
+ super(opts);
+ this._documentId = opts.resourceIdSegmentValues.documentId;
}
get documentId() {
return this._documentId;
}
@@ -332,20 +335,23 @@
var lucidLucidchartRemoteLinkAriStaticOpts = {
qualifier: "ari",
platformQualifier: "third-party",
cloudId: new RegExp("^$"),
+ // eslint-disable-line no-useless-escape
resourceOwner: LucidLucidchartRemoteLinkAriResourceOwner,
resourceType: LucidLucidchartRemoteLinkAriResourceType,
resourceIdSlug: "chart/{chartId}",
resourceIdSegmentFormats: {
chartId: /[!a-zA-Z0-9\-_.~@:;{}=]+(\/[!a-zA-Z0-9\-_.~@:;{}=]+)*/
+ // eslint-disable-line no-useless-escape
}
};
// src/lucid.lucidchart/remote-link/index.ts
var LucidLucidchartRemoteLinkAri = class _LucidLucidchartRemoteLinkAri extends RegisteredAri {
constructor(opts) {
- super(opts), this._chartId = opts.resourceIdSegmentValues.chartId;
+ super(opts);
+ this._chartId = opts.resourceIdSegmentValues.chartId;
}
get chartId() {
return this._chartId;
}