bookish-api-client 0.1.22 → 0.1.23
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/models/CreateSpotifyEventDto.d.ts +2 -1
- package/dist/models/CreateSpotifyEventDto.js +6 -0
- package/dist/models/CreateSpotifyEventDto.js.map +1 -1
- package/dist/models/SpotifyStreamApiResponseDto.d.ts +22 -0
- package/dist/models/SpotifyStreamApiResponseDto.js +29 -0
- package/dist/models/SpotifyStreamApiResponseDto.js.map +1 -0
- package/dist/models/SpotifyStreamResponseDto.d.ts +21 -0
- package/dist/models/SpotifyStreamResponseDto.js +29 -0
- package/dist/models/SpotifyStreamResponseDto.js.map +1 -0
- package/package.json +1 -1
|
@@ -3,7 +3,8 @@ export declare class CreateSpotifyEventDto {
|
|
|
3
3
|
'title': string;
|
|
4
4
|
'description'?: string;
|
|
5
5
|
'link': string;
|
|
6
|
-
'
|
|
6
|
+
'duration': string;
|
|
7
|
+
'previewUrl': string;
|
|
7
8
|
static readonly discriminator: string | undefined;
|
|
8
9
|
static readonly mapping: {
|
|
9
10
|
[index: string]: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CreateSpotifyEventDto.js","sourceRoot":"","sources":["../../models/CreateSpotifyEventDto.ts"],"names":[],"mappings":";;;AAcA;
|
|
1
|
+
{"version":3,"file":"CreateSpotifyEventDto.js","sourceRoot":"","sources":["../../models/CreateSpotifyEventDto.ts"],"names":[],"mappings":";;;AAcA;IAsDI;IACA,CAAC;IALM,yCAAmB,GAA1B;QACI,OAAO,qBAAqB,CAAC,gBAAgB,CAAC;IAClD,CAAC;IA5Ce,mCAAa,GAAuB,SAAS,CAAC;IAE9C,6BAAO,GAA0C,SAAS,CAAC;IAE3D,sCAAgB,GAA0E;QACtG;YACI,MAAM,EAAE,OAAO;YACf,UAAU,EAAE,OAAO;YACnB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,OAAO;YACf,UAAU,EAAE,OAAO;YACnB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,aAAa;YACrB,UAAU,EAAE,aAAa;YACzB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,MAAM;YACd,UAAU,EAAE,MAAM;YAClB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,UAAU;YAClB,UAAU,EAAE,UAAU;YACtB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,YAAY;YACpB,UAAU,EAAE,YAAY;YACxB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;KAAK,CAAC;IAQf,4BAAC;CAAA,AAxDD,IAwDC;AAxDY,sDAAqB"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { SpotifyStreamResponseDto } from '../models/SpotifyStreamResponseDto';
|
|
2
|
+
export declare class SpotifyStreamApiResponseDto {
|
|
3
|
+
'data': SpotifyStreamResponseDto;
|
|
4
|
+
'isSuccess': boolean;
|
|
5
|
+
static readonly discriminator: string | undefined;
|
|
6
|
+
static readonly mapping: {
|
|
7
|
+
[index: string]: string;
|
|
8
|
+
} | undefined;
|
|
9
|
+
static readonly attributeTypeMap: Array<{
|
|
10
|
+
name: string;
|
|
11
|
+
baseName: string;
|
|
12
|
+
type: string;
|
|
13
|
+
format: string;
|
|
14
|
+
}>;
|
|
15
|
+
static getAttributeTypeMap(): {
|
|
16
|
+
name: string;
|
|
17
|
+
baseName: string;
|
|
18
|
+
type: string;
|
|
19
|
+
format: string;
|
|
20
|
+
}[];
|
|
21
|
+
constructor();
|
|
22
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SpotifyStreamApiResponseDto = void 0;
|
|
4
|
+
var SpotifyStreamApiResponseDto = (function () {
|
|
5
|
+
function SpotifyStreamApiResponseDto() {
|
|
6
|
+
}
|
|
7
|
+
SpotifyStreamApiResponseDto.getAttributeTypeMap = function () {
|
|
8
|
+
return SpotifyStreamApiResponseDto.attributeTypeMap;
|
|
9
|
+
};
|
|
10
|
+
SpotifyStreamApiResponseDto.discriminator = undefined;
|
|
11
|
+
SpotifyStreamApiResponseDto.mapping = undefined;
|
|
12
|
+
SpotifyStreamApiResponseDto.attributeTypeMap = [
|
|
13
|
+
{
|
|
14
|
+
"name": "data",
|
|
15
|
+
"baseName": "data",
|
|
16
|
+
"type": "SpotifyStreamResponseDto",
|
|
17
|
+
"format": ""
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "isSuccess",
|
|
21
|
+
"baseName": "isSuccess",
|
|
22
|
+
"type": "boolean",
|
|
23
|
+
"format": ""
|
|
24
|
+
}
|
|
25
|
+
];
|
|
26
|
+
return SpotifyStreamApiResponseDto;
|
|
27
|
+
}());
|
|
28
|
+
exports.SpotifyStreamApiResponseDto = SpotifyStreamApiResponseDto;
|
|
29
|
+
//# sourceMappingURL=SpotifyStreamApiResponseDto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SpotifyStreamApiResponseDto.js","sourceRoot":"","sources":["../../models/SpotifyStreamApiResponseDto.ts"],"names":[],"mappings":";;;AAeA;IA0BI;IACA,CAAC;IALM,+CAAmB,GAA1B;QACI,OAAO,2BAA2B,CAAC,gBAAgB,CAAC;IACxD,CAAC;IApBe,yCAAa,GAAuB,SAAS,CAAC;IAE9C,mCAAO,GAA0C,SAAS,CAAC;IAE3D,4CAAgB,GAA0E;QACtG;YACI,MAAM,EAAE,MAAM;YACd,UAAU,EAAE,MAAM;YAClB,MAAM,EAAE,0BAA0B;YAClC,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,WAAW;YACnB,UAAU,EAAE,WAAW;YACvB,MAAM,EAAE,SAAS;YACjB,QAAQ,EAAE,EAAE;SACf;KAAK,CAAC;IAQf,kCAAC;CAAA,AA5BD,IA4BC;AA5BY,kEAA2B"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export declare class SpotifyStreamResponseDto {
|
|
2
|
+
'streamUrl': string;
|
|
3
|
+
'status': boolean;
|
|
4
|
+
static readonly discriminator: string | undefined;
|
|
5
|
+
static readonly mapping: {
|
|
6
|
+
[index: string]: string;
|
|
7
|
+
} | undefined;
|
|
8
|
+
static readonly attributeTypeMap: Array<{
|
|
9
|
+
name: string;
|
|
10
|
+
baseName: string;
|
|
11
|
+
type: string;
|
|
12
|
+
format: string;
|
|
13
|
+
}>;
|
|
14
|
+
static getAttributeTypeMap(): {
|
|
15
|
+
name: string;
|
|
16
|
+
baseName: string;
|
|
17
|
+
type: string;
|
|
18
|
+
format: string;
|
|
19
|
+
}[];
|
|
20
|
+
constructor();
|
|
21
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SpotifyStreamResponseDto = void 0;
|
|
4
|
+
var SpotifyStreamResponseDto = (function () {
|
|
5
|
+
function SpotifyStreamResponseDto() {
|
|
6
|
+
}
|
|
7
|
+
SpotifyStreamResponseDto.getAttributeTypeMap = function () {
|
|
8
|
+
return SpotifyStreamResponseDto.attributeTypeMap;
|
|
9
|
+
};
|
|
10
|
+
SpotifyStreamResponseDto.discriminator = undefined;
|
|
11
|
+
SpotifyStreamResponseDto.mapping = undefined;
|
|
12
|
+
SpotifyStreamResponseDto.attributeTypeMap = [
|
|
13
|
+
{
|
|
14
|
+
"name": "streamUrl",
|
|
15
|
+
"baseName": "streamUrl",
|
|
16
|
+
"type": "string",
|
|
17
|
+
"format": ""
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "status",
|
|
21
|
+
"baseName": "status",
|
|
22
|
+
"type": "boolean",
|
|
23
|
+
"format": ""
|
|
24
|
+
}
|
|
25
|
+
];
|
|
26
|
+
return SpotifyStreamResponseDto;
|
|
27
|
+
}());
|
|
28
|
+
exports.SpotifyStreamResponseDto = SpotifyStreamResponseDto;
|
|
29
|
+
//# sourceMappingURL=SpotifyStreamResponseDto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SpotifyStreamResponseDto.js","sourceRoot":"","sources":["../../models/SpotifyStreamResponseDto.ts"],"names":[],"mappings":";;;AAcA;IA0BI;IACA,CAAC;IALM,4CAAmB,GAA1B;QACI,OAAO,wBAAwB,CAAC,gBAAgB,CAAC;IACrD,CAAC;IApBe,sCAAa,GAAuB,SAAS,CAAC;IAE9C,gCAAO,GAA0C,SAAS,CAAC;IAE3D,yCAAgB,GAA0E;QACtG;YACI,MAAM,EAAE,WAAW;YACnB,UAAU,EAAE,WAAW;YACvB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,QAAQ;YAChB,UAAU,EAAE,QAAQ;YACpB,MAAM,EAAE,SAAS;YACjB,QAAQ,EAAE,EAAE;SACf;KAAK,CAAC;IAQf,+BAAC;CAAA,AA5BD,IA4BC;AA5BY,4DAAwB"}
|