@forge/util
2.0.1-experimental-78908582.0.1-experimental-04cc2b9
packages/ari/workday.workday/index.js~
packages/ari/workday.workday/index.jsModified+12−3
Index: package/packages/ari/workday.workday/index.js
===================================================================
--- package/packages/ari/workday.workday/index.js
+++ package/packages/ari/workday.workday/index.js
@@ -284,20 +284,23 @@
var workdayWorkdayOrganisationAriStaticOpts = {
qualifier: "ari",
platformQualifier: "third-party",
cloudId: new RegExp("^$"),
+ // eslint-disable-line no-useless-escape
resourceOwner: WorkdayWorkdayOrganisationAriResourceOwner,
resourceType: WorkdayWorkdayOrganisationAriResourceType,
resourceIdSlug: "{workdayId}",
resourceIdSegmentFormats: {
workdayId: /[a-zA-Z0-9_-]+/
+ // eslint-disable-line no-useless-escape
}
};
// src/workday.workday/organisation/index.ts
var WorkdayWorkdayOrganisationAri = class _WorkdayWorkdayOrganisationAri extends RegisteredAri {
constructor(opts) {
- super(opts), this._workdayId = opts.resourceIdSegmentValues.workdayId;
+ super(opts);
+ this._workdayId = opts.resourceIdSegmentValues.workdayId;
}
get workdayId() {
return this._workdayId;
}
@@ -333,20 +336,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;
}
@@ -382,20 +388,23 @@
var workdayWorkdayWorkerAriStaticOpts = {
qualifier: "ari",
platformQualifier: "third-party",
cloudId: new RegExp("^$"),
+ // eslint-disable-line no-useless-escape
resourceOwner: WorkdayWorkdayWorkerAriResourceOwner,
resourceType: WorkdayWorkdayWorkerAriResourceType,
resourceIdSlug: "{workdayId}",
resourceIdSegmentFormats: {
workdayId: /[a-zA-Z0-9_-]+/
+ // eslint-disable-line no-useless-escape
}
};
// src/workday.workday/worker/index.ts
var WorkdayWorkdayWorkerAri = class _WorkdayWorkdayWorkerAri extends RegisteredAri {
constructor(opts) {
- super(opts), this._workdayId = opts.resourceIdSegmentValues.workdayId;
+ super(opts);
+ this._workdayId = opts.resourceIdSegmentValues.workdayId;
}
get workdayId() {
return this._workdayId;
}