@forge/util
2.0.1-experimental-78908582.0.1-experimental-04cc2b9
packages/ari/commerce/ship-to-party/index.js~
packages/ari/commerce/ship-to-party/index.jsModified+4−1
Index: package/packages/ari/commerce/ship-to-party/index.js
===================================================================
--- package/packages/ari/commerce/ship-to-party/index.js
+++ package/packages/ari/commerce/ship-to-party/index.js
@@ -284,20 +284,23 @@
var commerceShipToPartyAriStaticOpts = {
qualifier: "ari",
platformQualifier: "cloud",
cloudId: new RegExp("^[a-zA-Z0-9\\-]+$"),
+ // eslint-disable-line no-useless-escape
resourceOwner: CommerceShipToPartyAriResourceOwner,
resourceType: CommerceShipToPartyAriResourceType,
resourceIdSlug: "{shipToPartyId}",
resourceIdSegmentFormats: {
shipToPartyId: /[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}/
+ // eslint-disable-line no-useless-escape
}
};
// src/commerce/ship-to-party/index.ts
var CommerceShipToPartyAri = class _CommerceShipToPartyAri extends RegisteredAri {
constructor(opts) {
- super(opts), this._txaId = opts.cloudId || "", this._shipToPartyId = opts.resourceIdSegmentValues.shipToPartyId;
+ super(opts);
+ this._txaId = opts.cloudId || "", this._shipToPartyId = opts.resourceIdSegmentValues.shipToPartyId;
}
get txaId() {
return this._txaId;
}