c2-climbing-x 1.0.100 → 1.0.101

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.
@@ -21,8 +21,6 @@ export declare const AdminComunicationSchema: Schema<any, import("mongoose").Mod
21
21
  updatedAt: string;
22
22
  };
23
23
  }, {
24
- createdAtDateTime: Date;
25
- updatedAtDateTime: Date;
26
24
  name: string;
27
25
  status: string;
28
26
  description?: string | undefined;
@@ -45,8 +43,6 @@ export declare const AdminComunicationSchema: Schema<any, import("mongoose").Mod
45
43
  isValid?: {} | undefined;
46
44
  } | undefined;
47
45
  }, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
48
- createdAtDateTime: Date;
49
- updatedAtDateTime: Date;
50
46
  name: string;
51
47
  status: string;
52
48
  description?: string | undefined;
@@ -69,8 +65,6 @@ export declare const AdminComunicationSchema: Schema<any, import("mongoose").Mod
69
65
  isValid?: {} | undefined;
70
66
  } | undefined;
71
67
  }>> & import("mongoose").FlatRecord<{
72
- createdAtDateTime: Date;
73
- updatedAtDateTime: Date;
74
68
  name: string;
75
69
  status: string;
76
70
  description?: string | undefined;
@@ -14,8 +14,6 @@ exports.AdminComunicationSchema = new mongoose_1.Schema({
14
14
  templateEmail: { type: mongoose_1.Types.ObjectId, ref: "admin-template-email", required: false },
15
15
  templatePush: { type: mongoose_1.Types.ObjectId, ref: "admin-template-push", required: false },
16
16
  status: { type: String, enum: AdminComunicationStatus, required: true, default: AdminComunicationStatus.DRAFT },
17
- createdAtDateTime: { type: Date, required: true },
18
- updatedAtDateTime: { type: Date, required: true }
19
17
  }, {
20
18
  timestamps: { createdAt: "createdAtDateTime", updatedAt: "updatedAtDateTime" }
21
19
  });
@@ -45,8 +45,6 @@ export declare const AdminEventComunicationSchema: Schema<any, import("mongoose"
45
45
  updatedAt: string;
46
46
  };
47
47
  }, {
48
- createdAtDateTime: Date;
49
- updatedAtDateTime: Date;
50
48
  account: {
51
49
  prototype?: Types.ObjectId | undefined;
52
50
  cacheHexString?: unknown;
@@ -104,8 +102,6 @@ export declare const AdminEventComunicationSchema: Schema<any, import("mongoose"
104
102
  addresses: string[];
105
103
  } | undefined;
106
104
  }, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
107
- createdAtDateTime: Date;
108
- updatedAtDateTime: Date;
109
105
  account: {
110
106
  prototype?: Types.ObjectId | undefined;
111
107
  cacheHexString?: unknown;
@@ -163,8 +159,6 @@ export declare const AdminEventComunicationSchema: Schema<any, import("mongoose"
163
159
  addresses: string[];
164
160
  } | undefined;
165
161
  }>> & import("mongoose").FlatRecord<{
166
- createdAtDateTime: Date;
167
- updatedAtDateTime: Date;
168
162
  account: {
169
163
  prototype?: Types.ObjectId | undefined;
170
164
  cacheHexString?: unknown;
@@ -43,8 +43,6 @@ exports.AdminEventComunicationSchema = new mongoose_1.Schema({
43
43
  required: false
44
44
  },
45
45
  status: { type: String, enum: AdminEventComunicationStatus, required: true, default: AdminEventComunicationStatus.CREATED },
46
- createdAtDateTime: { type: Date, required: true },
47
- updatedAtDateTime: { type: Date, required: true }
48
46
  }, {
49
47
  timestamps: { createdAt: "createdAtDateTime", updatedAt: "updatedAtDateTime" }
50
48
  });
@@ -18,22 +18,16 @@ export declare const AdminTemplateEmailSchema: Schema<any, import("mongoose").Mo
18
18
  updatedAt: string;
19
19
  };
20
20
  }, {
21
- createdAtDateTime: Date;
22
- updatedAtDateTime: Date;
23
21
  name: string;
24
22
  status: string;
25
23
  subject: string;
26
24
  bodyHtml: string;
27
25
  }, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
28
- createdAtDateTime: Date;
29
- updatedAtDateTime: Date;
30
26
  name: string;
31
27
  status: string;
32
28
  subject: string;
33
29
  bodyHtml: string;
34
30
  }>> & import("mongoose").FlatRecord<{
35
- createdAtDateTime: Date;
36
- updatedAtDateTime: Date;
37
31
  name: string;
38
32
  status: string;
39
33
  subject: string;
@@ -13,8 +13,6 @@ exports.AdminTemplateEmailSchema = new mongoose_1.Schema({
13
13
  subject: { type: String, required: true },
14
14
  bodyHtml: { type: String, required: true },
15
15
  status: { type: String, enum: AdminTemplateEmailStatus, required: true, default: AdminTemplateEmailStatus.DRAFT },
16
- createdAtDateTime: { type: Date, required: true },
17
- updatedAtDateTime: { type: Date, required: true }
18
16
  }, {
19
17
  timestamps: { createdAt: "createdAtDateTime", updatedAt: "updatedAtDateTime" }
20
18
  });
@@ -22,8 +22,6 @@ export declare const AdminTemplatePushSchema: Schema<any, import("mongoose").Mod
22
22
  updatedAt: string;
23
23
  };
24
24
  }, {
25
- createdAtDateTime: Date;
26
- updatedAtDateTime: Date;
27
25
  name: string;
28
26
  title: string;
29
27
  body: string;
@@ -37,8 +35,6 @@ export declare const AdminTemplatePushSchema: Schema<any, import("mongoose").Mod
37
35
  redirect?: string | undefined;
38
36
  metadata?: Map<string, string> | undefined;
39
37
  }, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
40
- createdAtDateTime: Date;
41
- updatedAtDateTime: Date;
42
38
  name: string;
43
39
  title: string;
44
40
  body: string;
@@ -52,8 +48,6 @@ export declare const AdminTemplatePushSchema: Schema<any, import("mongoose").Mod
52
48
  redirect?: string | undefined;
53
49
  metadata?: Map<string, string> | undefined;
54
50
  }>> & import("mongoose").FlatRecord<{
55
- createdAtDateTime: Date;
56
- updatedAtDateTime: Date;
57
51
  name: string;
58
52
  title: string;
59
53
  body: string;
@@ -17,8 +17,6 @@ exports.AdminTemplatePushSchema = new mongoose_1.Schema({
17
17
  redirect: { type: String, required: false },
18
18
  metadata: { type: Map, of: String, required: false },
19
19
  status: { type: String, enum: AdminTemplatePushStatus, required: true, default: AdminTemplatePushStatus.DRAFT },
20
- createdAtDateTime: { type: Date, required: true },
21
- updatedAtDateTime: { type: Date, required: true }
22
20
  }, {
23
21
  timestamps: { createdAt: "createdAtDateTime", updatedAt: "updatedAtDateTime" }
24
22
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "c2-climbing-x",
3
- "version": "1.0.100",
3
+ "version": "1.0.101",
4
4
  "description": "Modelagem TypeScript/Mongoose para o jogo Escalada X (times, campeonatos, fases, rodadas, confrontos, desafios)",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",