@forge/util
2.0.1-experimental-78908582.0.1-experimental-04cc2b9
packages/ari/microsoft.outlook-calendar/index.js~
packages/ari/microsoft.outlook-calendar/index.jsModified+5−1
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,21 +282,25 @@
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;
}