@forge/util
2.0.12.0.1-experimental-7890858
packages/ari/microsoft.outlook-calendar/index.js~
packages/ari/microsoft.outlook-calendar/index.jsModified+1−5
Index: package/packages/ari/microsoft.outlook-calendar/index.js
===================================================================
--- package/packages/ari/microsoft.outlook-calendar/index.js
+++ package/packages/ari/microsoft.outlook-calendar/index.js
@@ -282,25 +282,21 @@
var microsoftOutlookCalendarCalendarEventAriStaticOpts = {
qualifier: "ari",
platformQualifier: "third-party",
cloudId: new RegExp("^$"),
- // eslint-disable-line no-useless-escape
resourceOwner: MicrosoftOutlookCalendarCalendarEventAriResourceOwner,
resourceType: MicrosoftOutlookCalendarCalendarEventAriResourceType,
resourceIdSlug: "outlook/userId/{userId}/calendarEventId/{calendarEventId}",
resourceIdSegmentFormats: {
userId: /[!a-zA-Z0-9\-_.~@:;{}=]+(\/[!a-zA-Z0-9\-_.~@:;{}=]+)*/,
- // eslint-disable-line no-useless-escape
calendarEventId: /[!a-zA-Z0-9\-_.~@:;{}=]+(\/[!a-zA-Z0-9\-_.~@:;{}=]+)*/
- // eslint-disable-line no-useless-escape
}
};
// src/microsoft.outlook-calendar/calendar-event/index.ts
var MicrosoftOutlookCalendarCalendarEventAri = class _MicrosoftOutlookCalendarCalendarEventAri extends RegisteredAri {
constructor(opts) {
- super(opts);
- this._userId = opts.resourceIdSegmentValues.userId, this._calendarEventId = opts.resourceIdSegmentValues.calendarEventId;
+ super(opts), this._userId = opts.resourceIdSegmentValues.userId, this._calendarEventId = opts.resourceIdSegmentValues.calendarEventId;
}
get userId() {
return this._userId;
}