bookish-api-client 0.1.16 → 0.1.17
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/apis/ActivityApi.d.ts +8 -4
- package/dist/apis/ActivityApi.js +84 -60
- package/dist/apis/ActivityApi.js.map +1 -1
- package/dist/models/GetPollResultResponseDto.d.ts +22 -0
- package/dist/models/GetPollResultResponseDto.js +29 -0
- package/dist/models/GetPollResultResponseDto.js.map +1 -0
- package/dist/models/ObjectSerializer.d.ts +9 -0
- package/dist/models/ObjectSerializer.js +27 -0
- package/dist/models/ObjectSerializer.js.map +1 -1
- package/dist/models/PollEventApiResponseDto.d.ts +22 -0
- package/dist/models/PollEventApiResponseDto.js +29 -0
- package/dist/models/PollEventApiResponseDto.js.map +1 -0
- package/dist/models/PollEventResponseDto.d.ts +21 -0
- package/dist/models/PollEventResponseDto.js +29 -0
- package/dist/models/PollEventResponseDto.js.map +1 -0
- package/dist/models/PollOptionResultDto.d.ts +23 -0
- package/dist/models/PollOptionResultDto.js +41 -0
- package/dist/models/PollOptionResultDto.js.map +1 -0
- package/dist/models/PollResultApiResponseDto.d.ts +22 -0
- package/dist/models/PollResultApiResponseDto.js +29 -0
- package/dist/models/PollResultApiResponseDto.js.map +1 -0
- package/dist/models/PollResultDataDto.d.ts +23 -0
- package/dist/models/PollResultDataDto.js +35 -0
- package/dist/models/PollResultDataDto.js.map +1 -0
- package/dist/models/PollResultResponseDto.d.ts +21 -0
- package/dist/models/PollResultResponseDto.js +29 -0
- package/dist/models/PollResultResponseDto.js.map +1 -0
- package/dist/models/SubstackEventApiResponseDto.d.ts +22 -0
- package/dist/models/SubstackEventApiResponseDto.js +29 -0
- package/dist/models/SubstackEventApiResponseDto.js.map +1 -0
- package/dist/models/SubstackEventResponseDto.d.ts +21 -0
- package/dist/models/SubstackEventResponseDto.js +29 -0
- package/dist/models/SubstackEventResponseDto.js.map +1 -0
- package/dist/models/all.d.ts +9 -0
- package/dist/models/all.js +9 -0
- package/dist/models/all.js.map +1 -1
- package/dist/types/ObjectParamAPI.d.ts +12 -8
- package/dist/types/ObjectParamAPI.js.map +1 -1
- package/dist/types/ObservableAPI.d.ts +12 -8
- package/dist/types/ObservableAPI.js.map +1 -1
- package/dist/types/PromiseAPI.d.ts +12 -8
- package/dist/types/PromiseAPI.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PollEventResponseDto = void 0;
|
|
4
|
+
var PollEventResponseDto = (function () {
|
|
5
|
+
function PollEventResponseDto() {
|
|
6
|
+
}
|
|
7
|
+
PollEventResponseDto.getAttributeTypeMap = function () {
|
|
8
|
+
return PollEventResponseDto.attributeTypeMap;
|
|
9
|
+
};
|
|
10
|
+
PollEventResponseDto.discriminator = undefined;
|
|
11
|
+
PollEventResponseDto.mapping = undefined;
|
|
12
|
+
PollEventResponseDto.attributeTypeMap = [
|
|
13
|
+
{
|
|
14
|
+
"name": "message",
|
|
15
|
+
"baseName": "message",
|
|
16
|
+
"type": "string",
|
|
17
|
+
"format": ""
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "status",
|
|
21
|
+
"baseName": "status",
|
|
22
|
+
"type": "boolean",
|
|
23
|
+
"format": ""
|
|
24
|
+
}
|
|
25
|
+
];
|
|
26
|
+
return PollEventResponseDto;
|
|
27
|
+
}());
|
|
28
|
+
exports.PollEventResponseDto = PollEventResponseDto;
|
|
29
|
+
//# sourceMappingURL=PollEventResponseDto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PollEventResponseDto.js","sourceRoot":"","sources":["../../models/PollEventResponseDto.ts"],"names":[],"mappings":";;;AAcA;IA0BI;IACA,CAAC;IALM,wCAAmB,GAA1B;QACI,OAAO,oBAAoB,CAAC,gBAAgB,CAAC;IACjD,CAAC;IApBe,kCAAa,GAAuB,SAAS,CAAC;IAE9C,4BAAO,GAA0C,SAAS,CAAC;IAE3D,qCAAgB,GAA0E;QACtG;YACI,MAAM,EAAE,SAAS;YACjB,UAAU,EAAE,SAAS;YACrB,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,2BAAC;CAAA,AA5BD,IA4BC;AA5BY,oDAAoB"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export declare class PollOptionResultDto {
|
|
2
|
+
'id': string;
|
|
3
|
+
'title': string;
|
|
4
|
+
'votes': number;
|
|
5
|
+
'percentage': number;
|
|
6
|
+
static readonly discriminator: string | undefined;
|
|
7
|
+
static readonly mapping: {
|
|
8
|
+
[index: string]: string;
|
|
9
|
+
} | undefined;
|
|
10
|
+
static readonly attributeTypeMap: Array<{
|
|
11
|
+
name: string;
|
|
12
|
+
baseName: string;
|
|
13
|
+
type: string;
|
|
14
|
+
format: string;
|
|
15
|
+
}>;
|
|
16
|
+
static getAttributeTypeMap(): {
|
|
17
|
+
name: string;
|
|
18
|
+
baseName: string;
|
|
19
|
+
type: string;
|
|
20
|
+
format: string;
|
|
21
|
+
}[];
|
|
22
|
+
constructor();
|
|
23
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PollOptionResultDto = void 0;
|
|
4
|
+
var PollOptionResultDto = (function () {
|
|
5
|
+
function PollOptionResultDto() {
|
|
6
|
+
}
|
|
7
|
+
PollOptionResultDto.getAttributeTypeMap = function () {
|
|
8
|
+
return PollOptionResultDto.attributeTypeMap;
|
|
9
|
+
};
|
|
10
|
+
PollOptionResultDto.discriminator = undefined;
|
|
11
|
+
PollOptionResultDto.mapping = undefined;
|
|
12
|
+
PollOptionResultDto.attributeTypeMap = [
|
|
13
|
+
{
|
|
14
|
+
"name": "id",
|
|
15
|
+
"baseName": "id",
|
|
16
|
+
"type": "string",
|
|
17
|
+
"format": ""
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "title",
|
|
21
|
+
"baseName": "title",
|
|
22
|
+
"type": "string",
|
|
23
|
+
"format": ""
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"name": "votes",
|
|
27
|
+
"baseName": "votes",
|
|
28
|
+
"type": "number",
|
|
29
|
+
"format": ""
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "percentage",
|
|
33
|
+
"baseName": "percentage",
|
|
34
|
+
"type": "number",
|
|
35
|
+
"format": ""
|
|
36
|
+
}
|
|
37
|
+
];
|
|
38
|
+
return PollOptionResultDto;
|
|
39
|
+
}());
|
|
40
|
+
exports.PollOptionResultDto = PollOptionResultDto;
|
|
41
|
+
//# sourceMappingURL=PollOptionResultDto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PollOptionResultDto.js","sourceRoot":"","sources":["../../models/PollOptionResultDto.ts"],"names":[],"mappings":";;;AAcA;IAwCI;IACA,CAAC;IALM,uCAAmB,GAA1B;QACI,OAAO,mBAAmB,CAAC,gBAAgB,CAAC;IAChD,CAAC;IAhCe,iCAAa,GAAuB,SAAS,CAAC;IAE9C,2BAAO,GAA0C,SAAS,CAAC;IAE3D,oCAAgB,GAA0E;QACtG;YACI,MAAM,EAAE,IAAI;YACZ,UAAU,EAAE,IAAI;YAChB,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,OAAO;YACf,UAAU,EAAE,OAAO;YACnB,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,0BAAC;CAAA,AA1CD,IA0CC;AA1CY,kDAAmB"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { PollResultResponseDto } from '../models/PollResultResponseDto';
|
|
2
|
+
export declare class PollResultApiResponseDto {
|
|
3
|
+
'data': PollResultResponseDto;
|
|
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.PollResultApiResponseDto = void 0;
|
|
4
|
+
var PollResultApiResponseDto = (function () {
|
|
5
|
+
function PollResultApiResponseDto() {
|
|
6
|
+
}
|
|
7
|
+
PollResultApiResponseDto.getAttributeTypeMap = function () {
|
|
8
|
+
return PollResultApiResponseDto.attributeTypeMap;
|
|
9
|
+
};
|
|
10
|
+
PollResultApiResponseDto.discriminator = undefined;
|
|
11
|
+
PollResultApiResponseDto.mapping = undefined;
|
|
12
|
+
PollResultApiResponseDto.attributeTypeMap = [
|
|
13
|
+
{
|
|
14
|
+
"name": "data",
|
|
15
|
+
"baseName": "data",
|
|
16
|
+
"type": "PollResultResponseDto",
|
|
17
|
+
"format": ""
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "isSuccess",
|
|
21
|
+
"baseName": "isSuccess",
|
|
22
|
+
"type": "boolean",
|
|
23
|
+
"format": ""
|
|
24
|
+
}
|
|
25
|
+
];
|
|
26
|
+
return PollResultApiResponseDto;
|
|
27
|
+
}());
|
|
28
|
+
exports.PollResultApiResponseDto = PollResultApiResponseDto;
|
|
29
|
+
//# sourceMappingURL=PollResultApiResponseDto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PollResultApiResponseDto.js","sourceRoot":"","sources":["../../models/PollResultApiResponseDto.ts"],"names":[],"mappings":";;;AAeA;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,MAAM;YACd,UAAU,EAAE,MAAM;YAClB,MAAM,EAAE,uBAAuB;YAC/B,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,+BAAC;CAAA,AA5BD,IA4BC;AA5BY,4DAAwB"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { PollOptionResultDto } from '../models/PollOptionResultDto';
|
|
2
|
+
export declare class PollResultDataDto {
|
|
3
|
+
'query': string;
|
|
4
|
+
'results': Array<PollOptionResultDto>;
|
|
5
|
+
'totalVotes': number;
|
|
6
|
+
static readonly discriminator: string | undefined;
|
|
7
|
+
static readonly mapping: {
|
|
8
|
+
[index: string]: string;
|
|
9
|
+
} | undefined;
|
|
10
|
+
static readonly attributeTypeMap: Array<{
|
|
11
|
+
name: string;
|
|
12
|
+
baseName: string;
|
|
13
|
+
type: string;
|
|
14
|
+
format: string;
|
|
15
|
+
}>;
|
|
16
|
+
static getAttributeTypeMap(): {
|
|
17
|
+
name: string;
|
|
18
|
+
baseName: string;
|
|
19
|
+
type: string;
|
|
20
|
+
format: string;
|
|
21
|
+
}[];
|
|
22
|
+
constructor();
|
|
23
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PollResultDataDto = void 0;
|
|
4
|
+
var PollResultDataDto = (function () {
|
|
5
|
+
function PollResultDataDto() {
|
|
6
|
+
}
|
|
7
|
+
PollResultDataDto.getAttributeTypeMap = function () {
|
|
8
|
+
return PollResultDataDto.attributeTypeMap;
|
|
9
|
+
};
|
|
10
|
+
PollResultDataDto.discriminator = undefined;
|
|
11
|
+
PollResultDataDto.mapping = undefined;
|
|
12
|
+
PollResultDataDto.attributeTypeMap = [
|
|
13
|
+
{
|
|
14
|
+
"name": "query",
|
|
15
|
+
"baseName": "query",
|
|
16
|
+
"type": "string",
|
|
17
|
+
"format": ""
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "results",
|
|
21
|
+
"baseName": "results",
|
|
22
|
+
"type": "Array<PollOptionResultDto>",
|
|
23
|
+
"format": ""
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"name": "totalVotes",
|
|
27
|
+
"baseName": "totalVotes",
|
|
28
|
+
"type": "number",
|
|
29
|
+
"format": ""
|
|
30
|
+
}
|
|
31
|
+
];
|
|
32
|
+
return PollResultDataDto;
|
|
33
|
+
}());
|
|
34
|
+
exports.PollResultDataDto = PollResultDataDto;
|
|
35
|
+
//# sourceMappingURL=PollResultDataDto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PollResultDataDto.js","sourceRoot":"","sources":["../../models/PollResultDataDto.ts"],"names":[],"mappings":";;;AAeA;IAiCI;IACA,CAAC;IALM,qCAAmB,GAA1B;QACI,OAAO,iBAAiB,CAAC,gBAAgB,CAAC;IAC9C,CAAC;IA1Be,+BAAa,GAAuB,SAAS,CAAC;IAE9C,yBAAO,GAA0C,SAAS,CAAC;IAE3D,kCAAgB,GAA0E;QACtG;YACI,MAAM,EAAE,OAAO;YACf,UAAU,EAAE,OAAO;YACnB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,SAAS;YACjB,UAAU,EAAE,SAAS;YACrB,MAAM,EAAE,4BAA4B;YACpC,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,wBAAC;CAAA,AAnCD,IAmCC;AAnCY,8CAAiB"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export declare class PollResultResponseDto {
|
|
2
|
+
'message': 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.PollResultResponseDto = void 0;
|
|
4
|
+
var PollResultResponseDto = (function () {
|
|
5
|
+
function PollResultResponseDto() {
|
|
6
|
+
}
|
|
7
|
+
PollResultResponseDto.getAttributeTypeMap = function () {
|
|
8
|
+
return PollResultResponseDto.attributeTypeMap;
|
|
9
|
+
};
|
|
10
|
+
PollResultResponseDto.discriminator = undefined;
|
|
11
|
+
PollResultResponseDto.mapping = undefined;
|
|
12
|
+
PollResultResponseDto.attributeTypeMap = [
|
|
13
|
+
{
|
|
14
|
+
"name": "message",
|
|
15
|
+
"baseName": "message",
|
|
16
|
+
"type": "string",
|
|
17
|
+
"format": ""
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "status",
|
|
21
|
+
"baseName": "status",
|
|
22
|
+
"type": "boolean",
|
|
23
|
+
"format": ""
|
|
24
|
+
}
|
|
25
|
+
];
|
|
26
|
+
return PollResultResponseDto;
|
|
27
|
+
}());
|
|
28
|
+
exports.PollResultResponseDto = PollResultResponseDto;
|
|
29
|
+
//# sourceMappingURL=PollResultResponseDto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PollResultResponseDto.js","sourceRoot":"","sources":["../../models/PollResultResponseDto.ts"],"names":[],"mappings":";;;AAcA;IA0BI;IACA,CAAC;IALM,yCAAmB,GAA1B;QACI,OAAO,qBAAqB,CAAC,gBAAgB,CAAC;IAClD,CAAC;IApBe,mCAAa,GAAuB,SAAS,CAAC;IAE9C,6BAAO,GAA0C,SAAS,CAAC;IAE3D,sCAAgB,GAA0E;QACtG;YACI,MAAM,EAAE,SAAS;YACjB,UAAU,EAAE,SAAS;YACrB,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,4BAAC;CAAA,AA5BD,IA4BC;AA5BY,sDAAqB"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { SubstackEventResponseDto } from '../models/SubstackEventResponseDto';
|
|
2
|
+
export declare class SubstackEventApiResponseDto {
|
|
3
|
+
'data': SubstackEventResponseDto;
|
|
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.SubstackEventApiResponseDto = void 0;
|
|
4
|
+
var SubstackEventApiResponseDto = (function () {
|
|
5
|
+
function SubstackEventApiResponseDto() {
|
|
6
|
+
}
|
|
7
|
+
SubstackEventApiResponseDto.getAttributeTypeMap = function () {
|
|
8
|
+
return SubstackEventApiResponseDto.attributeTypeMap;
|
|
9
|
+
};
|
|
10
|
+
SubstackEventApiResponseDto.discriminator = undefined;
|
|
11
|
+
SubstackEventApiResponseDto.mapping = undefined;
|
|
12
|
+
SubstackEventApiResponseDto.attributeTypeMap = [
|
|
13
|
+
{
|
|
14
|
+
"name": "data",
|
|
15
|
+
"baseName": "data",
|
|
16
|
+
"type": "SubstackEventResponseDto",
|
|
17
|
+
"format": ""
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "isSuccess",
|
|
21
|
+
"baseName": "isSuccess",
|
|
22
|
+
"type": "boolean",
|
|
23
|
+
"format": ""
|
|
24
|
+
}
|
|
25
|
+
];
|
|
26
|
+
return SubstackEventApiResponseDto;
|
|
27
|
+
}());
|
|
28
|
+
exports.SubstackEventApiResponseDto = SubstackEventApiResponseDto;
|
|
29
|
+
//# sourceMappingURL=SubstackEventApiResponseDto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SubstackEventApiResponseDto.js","sourceRoot":"","sources":["../../models/SubstackEventApiResponseDto.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 SubstackEventResponseDto {
|
|
2
|
+
'message': 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.SubstackEventResponseDto = void 0;
|
|
4
|
+
var SubstackEventResponseDto = (function () {
|
|
5
|
+
function SubstackEventResponseDto() {
|
|
6
|
+
}
|
|
7
|
+
SubstackEventResponseDto.getAttributeTypeMap = function () {
|
|
8
|
+
return SubstackEventResponseDto.attributeTypeMap;
|
|
9
|
+
};
|
|
10
|
+
SubstackEventResponseDto.discriminator = undefined;
|
|
11
|
+
SubstackEventResponseDto.mapping = undefined;
|
|
12
|
+
SubstackEventResponseDto.attributeTypeMap = [
|
|
13
|
+
{
|
|
14
|
+
"name": "message",
|
|
15
|
+
"baseName": "message",
|
|
16
|
+
"type": "string",
|
|
17
|
+
"format": ""
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "status",
|
|
21
|
+
"baseName": "status",
|
|
22
|
+
"type": "boolean",
|
|
23
|
+
"format": ""
|
|
24
|
+
}
|
|
25
|
+
];
|
|
26
|
+
return SubstackEventResponseDto;
|
|
27
|
+
}());
|
|
28
|
+
exports.SubstackEventResponseDto = SubstackEventResponseDto;
|
|
29
|
+
//# sourceMappingURL=SubstackEventResponseDto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SubstackEventResponseDto.js","sourceRoot":"","sources":["../../models/SubstackEventResponseDto.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,SAAS;YACjB,UAAU,EAAE,SAAS;YACrB,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"}
|
package/dist/models/all.d.ts
CHANGED
|
@@ -70,6 +70,7 @@ export * from '../models/FriendRequestItemEntityDto';
|
|
|
70
70
|
export * from '../models/FriendsResponse';
|
|
71
71
|
export * from '../models/FriendsResponseDto';
|
|
72
72
|
export * from '../models/GetPollResultDto';
|
|
73
|
+
export * from '../models/GetPollResultResponseDto';
|
|
73
74
|
export * from '../models/GoodReadsBookPayloadDto';
|
|
74
75
|
export * from '../models/InterestsPayloadDto';
|
|
75
76
|
export * from '../models/InterestsResponseDto';
|
|
@@ -96,7 +97,13 @@ export * from '../models/PaymentResponse';
|
|
|
96
97
|
export * from '../models/PaymentResponseDto';
|
|
97
98
|
export * from '../models/PermissionResponseDto';
|
|
98
99
|
export * from '../models/Places';
|
|
100
|
+
export * from '../models/PollEventApiResponseDto';
|
|
101
|
+
export * from '../models/PollEventResponseDto';
|
|
99
102
|
export * from '../models/PollOptionDto';
|
|
103
|
+
export * from '../models/PollOptionResultDto';
|
|
104
|
+
export * from '../models/PollResultApiResponseDto';
|
|
105
|
+
export * from '../models/PollResultDataDto';
|
|
106
|
+
export * from '../models/PollResultResponseDto';
|
|
100
107
|
export * from '../models/Rating';
|
|
101
108
|
export * from '../models/ReadingGoalPayload';
|
|
102
109
|
export * from '../models/ReadingGoalResponse';
|
|
@@ -110,6 +117,8 @@ export * from '../models/StripePayloadDto';
|
|
|
110
117
|
export * from '../models/StripePaymentPayloadDto';
|
|
111
118
|
export * from '../models/StripeResponse';
|
|
112
119
|
export * from '../models/StripeResponseDto';
|
|
120
|
+
export * from '../models/SubstackEventApiResponseDto';
|
|
121
|
+
export * from '../models/SubstackEventResponseDto';
|
|
113
122
|
export * from '../models/SuperAdminLoginPayloadDto';
|
|
114
123
|
export * from '../models/TopBookPayload';
|
|
115
124
|
export * from '../models/TopBooksResponse';
|
package/dist/models/all.js
CHANGED
|
@@ -86,6 +86,7 @@ __exportStar(require("../models/FriendRequestItemEntityDto"), exports);
|
|
|
86
86
|
__exportStar(require("../models/FriendsResponse"), exports);
|
|
87
87
|
__exportStar(require("../models/FriendsResponseDto"), exports);
|
|
88
88
|
__exportStar(require("../models/GetPollResultDto"), exports);
|
|
89
|
+
__exportStar(require("../models/GetPollResultResponseDto"), exports);
|
|
89
90
|
__exportStar(require("../models/GoodReadsBookPayloadDto"), exports);
|
|
90
91
|
__exportStar(require("../models/InterestsPayloadDto"), exports);
|
|
91
92
|
__exportStar(require("../models/InterestsResponseDto"), exports);
|
|
@@ -112,7 +113,13 @@ __exportStar(require("../models/PaymentResponse"), exports);
|
|
|
112
113
|
__exportStar(require("../models/PaymentResponseDto"), exports);
|
|
113
114
|
__exportStar(require("../models/PermissionResponseDto"), exports);
|
|
114
115
|
__exportStar(require("../models/Places"), exports);
|
|
116
|
+
__exportStar(require("../models/PollEventApiResponseDto"), exports);
|
|
117
|
+
__exportStar(require("../models/PollEventResponseDto"), exports);
|
|
115
118
|
__exportStar(require("../models/PollOptionDto"), exports);
|
|
119
|
+
__exportStar(require("../models/PollOptionResultDto"), exports);
|
|
120
|
+
__exportStar(require("../models/PollResultApiResponseDto"), exports);
|
|
121
|
+
__exportStar(require("../models/PollResultDataDto"), exports);
|
|
122
|
+
__exportStar(require("../models/PollResultResponseDto"), exports);
|
|
116
123
|
__exportStar(require("../models/Rating"), exports);
|
|
117
124
|
__exportStar(require("../models/ReadingGoalPayload"), exports);
|
|
118
125
|
__exportStar(require("../models/ReadingGoalResponse"), exports);
|
|
@@ -126,6 +133,8 @@ __exportStar(require("../models/StripePayloadDto"), exports);
|
|
|
126
133
|
__exportStar(require("../models/StripePaymentPayloadDto"), exports);
|
|
127
134
|
__exportStar(require("../models/StripeResponse"), exports);
|
|
128
135
|
__exportStar(require("../models/StripeResponseDto"), exports);
|
|
136
|
+
__exportStar(require("../models/SubstackEventApiResponseDto"), exports);
|
|
137
|
+
__exportStar(require("../models/SubstackEventResponseDto"), exports);
|
|
129
138
|
__exportStar(require("../models/SuperAdminLoginPayloadDto"), exports);
|
|
130
139
|
__exportStar(require("../models/TopBookPayload"), exports);
|
|
131
140
|
__exportStar(require("../models/TopBooksResponse"), exports);
|
package/dist/models/all.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"all.js","sourceRoot":"","sources":["../../models/all.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,qEAAkD;AAClD,qDAAkC;AAClC,6DAA0C;AAC1C,gEAA6C;AAC7C,6DAA0C;AAC1C,oDAAiC;AACjC,iEAA8C;AAC9C,wEAAqD;AACrD,6EAA0D;AAC1D,wDAAqC;AACrC,8DAA2C;AAC3C,2DAAwC;AACxC,iDAA8B;AAC9B,4DAAyC;AACzC,6DAA0C;AAC1C,iEAA8C;AAC9C,yEAAsD;AACtD,oEAAiD;AACjD,2EAAwD;AACxD,2DAAwC;AACxC,4DAAyC;AACzC,4DAAyC;AACzC,uEAAoD;AACpD,kDAA+B;AAC/B,6DAA0C;AAC1C,mEAAgD;AAChD,mEAAgD;AAChD,yDAAsC;AACtC,qEAAkD;AAClD,iDAA8B;AAC9B,uDAAoC;AACpC,qDAAkC;AAClC,gEAA6C;AAC7C,wDAAqC;AACrC,uDAAoC;AACpC,6DAA0C;AAC1C,2DAAwC;AACxC,8DAA2C;AAC3C,mEAAgD;AAChD,2EAAwD;AACxD,+DAA4C;AAC5C,gEAA6C;AAC7C,0DAAuC;AACvC,2DAAwC;AACxC,+DAA4C;AAC5C,mEAAgD;AAChD,2EAAwD;AACxD,8DAA2C;AAC3C,yDAAsC;AACtC,0DAAuC;AACvC,qEAAkD;AAClD,mEAAgD;AAChD,4DAAyC;AACzC,6DAA0C;AAC1C,mDAAgC;AAChC,uDAAoC;AACpC,8DAA2C;AAC3C,sEAAmD;AACnD,+DAA4C;AAC5C,0DAAuC;AACvC,oDAAiC;AACjC,qDAAkC;AAClC,+DAA4C;AAC5C,gEAA6C;AAC7C,yEAAsD;AACtD,4EAAyD;AACzD,qEAAkD;AAClD,8DAA2C;AAC3C,uEAAoD;AACpD,4DAAyC;AACzC,+DAA4C;AAC5C,6DAA0C;AAC1C,oEAAiD;AACjD,gEAA6C;AAC7C,iEAA8C;AAC9C,qDAAkC;AAClC,+DAA4C;AAC5C,sEAAmD;AACnD,gEAA6C;AAC7C,8DAA2C;AAC3C,4DAAyC;AACzC,yDAAsC;AACtC,oEAAiD;AACjD,+DAA4C;AAC5C,qDAAkC;AAClC,+DAA4C;AAC5C,6DAA0C;AAC1C,gEAA6C;AAC7C,+DAA4C;AAC5C,8DAA2C;AAC3C,gEAA6C;AAC7C,mEAAgD;AAChD,sEAAmD;AACnD,8DAA2C;AAC3C,4DAAyC;AACzC,+DAA4C;AAC5C,kEAA+C;AAC/C,mDAAgC;AAChC,0DAAuC;AACvC,mDAAgC;AAChC,+DAA4C;AAC5C,gEAA6C;AAC7C,mEAAgD;AAChD,mDAAgC;AAChC,4DAAyC;AACzC,6DAA0C;AAC1C,+DAA4C;AAC5C,mEAAgD;AAChD,6DAA0C;AAC1C,oEAAiD;AACjD,2DAAwC;AACxC,8DAA2C;AAC3C,sEAAmD;AACnD,2DAAwC;AACxC,6DAA0C;AAC1C,gEAA6C;AAC7C,0DAAuC;AACvC,2DAAwC;AACxC,+DAA4C;AAC5C,oEAAiD;AACjD,uEAAoD;AACpD,sEAAmD;AACnD,+DAA4C;AAC5C,sEAAmD;AACnD,mEAAgD;AAChD,sDAAmC;AACnC,8DAA2C;AAC3C,iEAA8C;AAC9C,kEAA+C;AAC/C,wDAAqC;AACrC,oEAAiD;AACjD,0DAAuC;AACvC,yDAAsC;AACtC,4DAAyC;AACzC,+DAA4C;AAC5C,wDAAqC;AACrC,gEAA6C;AAC7C,iEAA8C;AAC9C,wEAAqD"}
|
|
1
|
+
{"version":3,"file":"all.js","sourceRoot":"","sources":["../../models/all.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,qEAAkD;AAClD,qDAAkC;AAClC,6DAA0C;AAC1C,gEAA6C;AAC7C,6DAA0C;AAC1C,oDAAiC;AACjC,iEAA8C;AAC9C,wEAAqD;AACrD,6EAA0D;AAC1D,wDAAqC;AACrC,8DAA2C;AAC3C,2DAAwC;AACxC,iDAA8B;AAC9B,4DAAyC;AACzC,6DAA0C;AAC1C,iEAA8C;AAC9C,yEAAsD;AACtD,oEAAiD;AACjD,2EAAwD;AACxD,2DAAwC;AACxC,4DAAyC;AACzC,4DAAyC;AACzC,uEAAoD;AACpD,kDAA+B;AAC/B,6DAA0C;AAC1C,mEAAgD;AAChD,mEAAgD;AAChD,yDAAsC;AACtC,qEAAkD;AAClD,iDAA8B;AAC9B,uDAAoC;AACpC,qDAAkC;AAClC,gEAA6C;AAC7C,wDAAqC;AACrC,uDAAoC;AACpC,6DAA0C;AAC1C,2DAAwC;AACxC,8DAA2C;AAC3C,mEAAgD;AAChD,2EAAwD;AACxD,+DAA4C;AAC5C,gEAA6C;AAC7C,0DAAuC;AACvC,2DAAwC;AACxC,+DAA4C;AAC5C,mEAAgD;AAChD,2EAAwD;AACxD,8DAA2C;AAC3C,yDAAsC;AACtC,0DAAuC;AACvC,qEAAkD;AAClD,mEAAgD;AAChD,4DAAyC;AACzC,6DAA0C;AAC1C,mDAAgC;AAChC,uDAAoC;AACpC,8DAA2C;AAC3C,sEAAmD;AACnD,+DAA4C;AAC5C,0DAAuC;AACvC,oDAAiC;AACjC,qDAAkC;AAClC,+DAA4C;AAC5C,gEAA6C;AAC7C,yEAAsD;AACtD,4EAAyD;AACzD,qEAAkD;AAClD,8DAA2C;AAC3C,uEAAoD;AACpD,4DAAyC;AACzC,+DAA4C;AAC5C,6DAA0C;AAC1C,qEAAkD;AAClD,oEAAiD;AACjD,gEAA6C;AAC7C,iEAA8C;AAC9C,qDAAkC;AAClC,+DAA4C;AAC5C,sEAAmD;AACnD,gEAA6C;AAC7C,8DAA2C;AAC3C,4DAAyC;AACzC,yDAAsC;AACtC,oEAAiD;AACjD,+DAA4C;AAC5C,qDAAkC;AAClC,+DAA4C;AAC5C,6DAA0C;AAC1C,gEAA6C;AAC7C,+DAA4C;AAC5C,8DAA2C;AAC3C,gEAA6C;AAC7C,mEAAgD;AAChD,sEAAmD;AACnD,8DAA2C;AAC3C,4DAAyC;AACzC,+DAA4C;AAC5C,kEAA+C;AAC/C,mDAAgC;AAChC,oEAAiD;AACjD,iEAA8C;AAC9C,0DAAuC;AACvC,gEAA6C;AAC7C,qEAAkD;AAClD,8DAA2C;AAC3C,kEAA+C;AAC/C,mDAAgC;AAChC,+DAA4C;AAC5C,gEAA6C;AAC7C,mEAAgD;AAChD,mDAAgC;AAChC,4DAAyC;AACzC,6DAA0C;AAC1C,+DAA4C;AAC5C,mEAAgD;AAChD,6DAA0C;AAC1C,oEAAiD;AACjD,2DAAwC;AACxC,8DAA2C;AAC3C,wEAAqD;AACrD,qEAAkD;AAClD,sEAAmD;AACnD,2DAAwC;AACxC,6DAA0C;AAC1C,gEAA6C;AAC7C,0DAAuC;AACvC,2DAAwC;AACxC,+DAA4C;AAC5C,oEAAiD;AACjD,uEAAoD;AACpD,sEAAmD;AACnD,+DAA4C;AAC5C,sEAAmD;AACnD,mEAAgD;AAChD,sDAAmC;AACnC,8DAA2C;AAC3C,iEAA8C;AAC9C,kEAA+C;AAC/C,wDAAqC;AACrC,oEAAiD;AACjD,0DAAuC;AACvC,yDAAsC;AACtC,4DAAyC;AACzC,+DAA4C;AAC5C,wDAAqC;AACrC,gEAA6C;AAC7C,iEAA8C;AAC9C,wEAAqD"}
|
|
@@ -46,6 +46,7 @@ import { ForgetPasswordPayloadDto } from '../models/ForgetPasswordPayloadDto';
|
|
|
46
46
|
import { FriendRequestItemEntityDto } from '../models/FriendRequestItemEntityDto';
|
|
47
47
|
import { FriendsResponseDto } from '../models/FriendsResponseDto';
|
|
48
48
|
import { GetPollResultDto } from '../models/GetPollResultDto';
|
|
49
|
+
import { GetPollResultResponseDto } from '../models/GetPollResultResponseDto';
|
|
49
50
|
import { GoodReadsBookPayloadDto } from '../models/GoodReadsBookPayloadDto';
|
|
50
51
|
import { InterestsResponseDto } from '../models/InterestsResponseDto';
|
|
51
52
|
import { LocationPayloadDto } from '../models/LocationPayloadDto';
|
|
@@ -62,6 +63,8 @@ import { OtpEntityPayloadDto } from '../models/OtpEntityPayloadDto';
|
|
|
62
63
|
import { PasswordChangeResponseDto } from '../models/PasswordChangeResponseDto';
|
|
63
64
|
import { PaymentPayloadDto } from '../models/PaymentPayloadDto';
|
|
64
65
|
import { PaymentResponseDto } from '../models/PaymentResponseDto';
|
|
66
|
+
import { PollEventApiResponseDto } from '../models/PollEventApiResponseDto';
|
|
67
|
+
import { PollResultApiResponseDto } from '../models/PollResultApiResponseDto';
|
|
65
68
|
import { ReadingGoalPayload } from '../models/ReadingGoalPayload';
|
|
66
69
|
import { ReadingGoalResponseDTO } from '../models/ReadingGoalResponseDTO';
|
|
67
70
|
import { SignupPayloadDto } from '../models/SignupPayloadDto';
|
|
@@ -70,6 +73,7 @@ import { StoreDetailsPayloadDto } from '../models/StoreDetailsPayloadDto';
|
|
|
70
73
|
import { StripePayloadDto } from '../models/StripePayloadDto';
|
|
71
74
|
import { StripePaymentPayloadDto } from '../models/StripePaymentPayloadDto';
|
|
72
75
|
import { StripeResponseDto } from '../models/StripeResponseDto';
|
|
76
|
+
import { SubstackEventApiResponseDto } from '../models/SubstackEventApiResponseDto';
|
|
73
77
|
import { SuperAdminLoginPayloadDto } from '../models/SuperAdminLoginPayloadDto';
|
|
74
78
|
import { TopBookPayload } from '../models/TopBookPayload';
|
|
75
79
|
import { TopBooksResponseDTO } from '../models/TopBooksResponseDTO';
|
|
@@ -106,14 +110,14 @@ export interface ActivityApiActivityControllerGetPollResultRequest {
|
|
|
106
110
|
export declare class ObjectActivityApi {
|
|
107
111
|
private api;
|
|
108
112
|
constructor(configuration: Configuration, requestFactory?: ActivityApiRequestFactory, responseProcessor?: ActivityApiResponseProcessor);
|
|
109
|
-
activityControllerCreatePollEventWithHttpInfo(param: ActivityApiActivityControllerCreatePollEventRequest, options?: ConfigurationOptions): Promise<HttpInfo<
|
|
110
|
-
activityControllerCreatePollEvent(param: ActivityApiActivityControllerCreatePollEventRequest, options?: ConfigurationOptions): Promise<
|
|
111
|
-
activityControllerCreatePollResultWithHttpInfo(param: ActivityApiActivityControllerCreatePollResultRequest, options?: ConfigurationOptions): Promise<HttpInfo<
|
|
112
|
-
activityControllerCreatePollResult(param: ActivityApiActivityControllerCreatePollResultRequest, options?: ConfigurationOptions): Promise<
|
|
113
|
-
activityControllerCreateSubstackEventWithHttpInfo(param: ActivityApiActivityControllerCreateSubstackEventRequest, options?: ConfigurationOptions): Promise<HttpInfo<
|
|
114
|
-
activityControllerCreateSubstackEvent(param: ActivityApiActivityControllerCreateSubstackEventRequest, options?: ConfigurationOptions): Promise<
|
|
115
|
-
activityControllerGetPollResultWithHttpInfo(param: ActivityApiActivityControllerGetPollResultRequest, options?: ConfigurationOptions): Promise<HttpInfo<
|
|
116
|
-
activityControllerGetPollResult(param: ActivityApiActivityControllerGetPollResultRequest, options?: ConfigurationOptions): Promise<
|
|
113
|
+
activityControllerCreatePollEventWithHttpInfo(param: ActivityApiActivityControllerCreatePollEventRequest, options?: ConfigurationOptions): Promise<HttpInfo<PollEventApiResponseDto>>;
|
|
114
|
+
activityControllerCreatePollEvent(param: ActivityApiActivityControllerCreatePollEventRequest, options?: ConfigurationOptions): Promise<PollEventApiResponseDto>;
|
|
115
|
+
activityControllerCreatePollResultWithHttpInfo(param: ActivityApiActivityControllerCreatePollResultRequest, options?: ConfigurationOptions): Promise<HttpInfo<PollResultApiResponseDto>>;
|
|
116
|
+
activityControllerCreatePollResult(param: ActivityApiActivityControllerCreatePollResultRequest, options?: ConfigurationOptions): Promise<PollResultApiResponseDto>;
|
|
117
|
+
activityControllerCreateSubstackEventWithHttpInfo(param: ActivityApiActivityControllerCreateSubstackEventRequest, options?: ConfigurationOptions): Promise<HttpInfo<SubstackEventApiResponseDto>>;
|
|
118
|
+
activityControllerCreateSubstackEvent(param: ActivityApiActivityControllerCreateSubstackEventRequest, options?: ConfigurationOptions): Promise<SubstackEventApiResponseDto>;
|
|
119
|
+
activityControllerGetPollResultWithHttpInfo(param: ActivityApiActivityControllerGetPollResultRequest, options?: ConfigurationOptions): Promise<HttpInfo<GetPollResultResponseDto>>;
|
|
120
|
+
activityControllerGetPollResult(param: ActivityApiActivityControllerGetPollResultRequest, options?: ConfigurationOptions): Promise<GetPollResultResponseDto>;
|
|
117
121
|
}
|
|
118
122
|
import { AnalyticsApiRequestFactory, AnalyticsApiResponseProcessor } from "../apis/AnalyticsApi";
|
|
119
123
|
export interface AnalyticsApiAnalyticsControllerGetAnalyticsRequest {
|