tering-serieuze-types 1.22.2 → 1.22.3
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.
- package/dist/index.js +3 -0
- package/package.json +1 -1
- package/src/jingle.ts +3 -0
package/dist/index.js
CHANGED
|
@@ -345,6 +345,9 @@ var PlayJingleDto = class extends (0, import_swagger7.PickType)(Jingle, ["folder
|
|
|
345
345
|
};
|
|
346
346
|
var BigBrotherItem = class {
|
|
347
347
|
};
|
|
348
|
+
__decorateClass([
|
|
349
|
+
(0, import_swagger7.ApiProperty)({ type: String, example: "internet-gekkies/mand.mp3", description: "Path of the played jingle" })
|
|
350
|
+
], BigBrotherItem.prototype, "data", 2);
|
|
348
351
|
__decorateClass([
|
|
349
352
|
(0, import_swagger7.ApiProperty)({ type: String, example: "frank@maxserv.com", description: "User's email" })
|
|
350
353
|
], BigBrotherItem.prototype, "user", 2);
|
package/package.json
CHANGED
package/src/jingle.ts
CHANGED
|
@@ -28,6 +28,9 @@ export class JingleFolder {
|
|
|
28
28
|
export class PlayJingleDto extends PickType(Jingle, ['folder', 'file'] as const) {}
|
|
29
29
|
|
|
30
30
|
export class BigBrotherItem {
|
|
31
|
+
@ApiProperty({ type: String, example: 'internet-gekkies/mand.mp3', description: 'Path of the played jingle' })
|
|
32
|
+
data: string;
|
|
33
|
+
|
|
31
34
|
@ApiProperty({ type: String, example: 'frank@maxserv.com', description: "User's email" })
|
|
32
35
|
user: string;
|
|
33
36
|
|