@forge/util
2.0.1-experimental-78908582.0.1-experimental-04cc2b9
packages/ari/workday.workday/position/index.js~
packages/ari/workday.workday/position/index.jsModified+4−1
Index: package/packages/ari/workday.workday/position/index.js
===================================================================
--- package/packages/ari/workday.workday/position/index.js
+++ package/packages/ari/workday.workday/position/index.js
@@ -284,20 +284,23 @@
var workdayWorkdayPositionAriStaticOpts = {
qualifier: "ari",
platformQualifier: "third-party",
cloudId: new RegExp("^$"),
+ // eslint-disable-line no-useless-escape
resourceOwner: WorkdayWorkdayPositionAriResourceOwner,
resourceType: WorkdayWorkdayPositionAriResourceType,
resourceIdSlug: "{workdayId}",
resourceIdSegmentFormats: {
workdayId: /[a-zA-Z0-9_-]+/
+ // eslint-disable-line no-useless-escape
}
};
// src/workday.workday/position/index.ts
var WorkdayWorkdayPositionAri = class _WorkdayWorkdayPositionAri extends RegisteredAri {
constructor(opts) {
- super(opts), this._workdayId = opts.resourceIdSegmentValues.workdayId;
+ super(opts);
+ this._workdayId = opts.resourceIdSegmentValues.workdayId;
}
get workdayId() {
return this._workdayId;
}