@likewatt/models 1.73.0 → 1.75.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -187,6 +187,7 @@ export declare class ScenarioType extends Scenario {
187
187
  scenarioOption?: string;
188
188
  siteId: string;
189
189
  isLeads?: boolean;
190
+ order?: number;
190
191
  }
191
192
  export type ScenarioTypeDocument = ScenarioType & Document;
192
193
  export declare const ScenarioTypeSchema: MSchema<ScenarioType, import("mongoose").Model<ScenarioType, any, any, any, Document<unknown, any, ScenarioType, any, {}> & ScenarioType & Required<{
@@ -681,6 +681,13 @@ __decorate([
681
681
  (0, class_validator_1.IsBoolean)(),
682
682
  __metadata("design:type", Boolean)
683
683
  ], ScenarioType.prototype, "isLeads", void 0);
684
+ __decorate([
685
+ (0, swagger_1.ApiPropertyOptional)({ example: 0, description: 'Ordre du scénario leads (drag & drop)' }),
686
+ (0, mongoose_1.Prop)({ type: Number, required: false }),
687
+ (0, class_validator_1.IsOptional)(),
688
+ (0, class_validator_1.IsNumber)(),
689
+ __metadata("design:type", Number)
690
+ ], ScenarioType.prototype, "order", void 0);
684
691
  exports.ScenarioType = ScenarioType = __decorate([
685
692
  (0, mongoose_1.Schema)({
686
693
  timestamps: true,
@@ -42,6 +42,14 @@ export declare class Site {
42
42
  endDate?: Date | string;
43
43
  automaticUpdateError?: string | null;
44
44
  automaticUpdateErrorHint?: RetryHint | null;
45
+ /**
46
+ * Structured error code (e.g. 'SGT500', 'UPSTREAM_5XX', 'NETWORK', '404',
47
+ * 'SGT589'). Source of truth for the frontend retry-policy classifier;
48
+ * preferred over regex-parsing the `[CODE] message` prefix in
49
+ * `automaticUpdateError`, which remains for backward-compat with sites
50
+ * persisted before this field existed.
51
+ */
52
+ automaticUpdateErrorCode?: string | null;
45
53
  automaticUpdateRetryAt?: Date | null;
46
54
  scenario?: string;
47
55
  user?: string;
package/dist/core/Site.js CHANGED
@@ -226,6 +226,13 @@ __decorate([
226
226
  (0, class_validator_1.IsEnum)(RetryHint_1.RetryHint),
227
227
  __metadata("design:type", Object)
228
228
  ], Site.prototype, "automaticUpdateErrorHint", void 0);
229
+ __decorate([
230
+ (0, swagger_1.ApiPropertyOptional)(),
231
+ (0, mongoose_1.Prop)({ type: String, required: false }),
232
+ (0, class_validator_1.IsOptional)(),
233
+ (0, class_validator_1.IsString)(),
234
+ __metadata("design:type", Object)
235
+ ], Site.prototype, "automaticUpdateErrorCode", void 0);
229
236
  __decorate([
230
237
  (0, swagger_1.ApiPropertyOptional)(),
231
238
  (0, mongoose_1.Prop)({ type: Date, required: false }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@likewatt/models",
3
- "version": "1.73.0",
3
+ "version": "1.75.0",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {