From bce557cc2dc767628bed6aac87301a1be7c5431b Mon Sep 17 00:00:00 2001 From: rxliuli Date: Tue, 4 Nov 2025 05:03:50 +0800 Subject: init commit --- .../app-store/tmp/src/api/models/ad-incidents.js | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 node_modules/@jet-app/app-store/tmp/src/api/models/ad-incidents.js (limited to 'node_modules/@jet-app/app-store/tmp/src/api/models/ad-incidents.js') diff --git a/node_modules/@jet-app/app-store/tmp/src/api/models/ad-incidents.js b/node_modules/@jet-app/app-store/tmp/src/api/models/ad-incidents.js new file mode 100644 index 0000000..d62caa5 --- /dev/null +++ b/node_modules/@jet-app/app-store/tmp/src/api/models/ad-incidents.js @@ -0,0 +1,26 @@ +/** + * Models for Ad Incidents that may occur while building model. + */ +import { Model } from "./base"; +/** + * @public + * Base Incident Type + */ +export class AdIncident extends Model { + constructor(incidentType) { + super(); + this.incidentType = incidentType; + } +} +/** + * @public + * Type of Ad Incident where Ad was discarded due to some reason + */ +export class DiscardAdIncident extends AdIncident { + constructor(instanceId, reason) { + super("discard"); + this.instanceId = instanceId; + this.reason = reason; + } +} +//# sourceMappingURL=ad-incidents.js.map \ No newline at end of file -- cgit v1.2.3