-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.ts
1137 lines (1012 loc) · 22.7 KB
/
api.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import globalAxios, {
AxiosInstance,
AxiosPromise,
AxiosRequestConfig,
} from 'axios'
import { API_V, BASE_PATH, BaseAPI, RequestArgs } from './base'
import { DUMMY_BASE_URL, createRequestFunction, toPathString } from './common'
import { Configuration } from './configuration'
import { postsQuery, postQuery } from './queries/post'
import type { PostOrder, TopicOrder } from './types'
import { topicsQuery } from './queries/topic'
/**
* Represents the response object for a ProductHunt post.
*/
export interface ProductHuntPostResponse {
data?: PostData
}
/**
* Represents the data object within the ProductHunt post response.
*/
export interface PostData {
post?: Post
}
/**
* Represents the post object within the ProductHunt post data.
*/
export interface Post {
/**
* The number of comments on the post.
* @type {number}
*/
commentsCount?: number;
/**
* The timestamp when the post was created.
* @type {Date}
*/
createdAt?: Date;
/**
* The timestamp when the post was featured.
* @type {Date}
*/
featuredAt?: Date;
/**
* The description of the post.
* @type {string}
*/
description: string;
/**
* Indicates whether the post has been collected.
* @type {boolean}
*/
isCollected?: boolean;
/**
* The unique identifier of the post.
* @type {string}
*/
id?: string;
/**
* The name or title of the post.
* @type {string}
*/
name?: string;
/**
* Indicates whether the user has voted on the post.
* @type {boolean}
*/
isVoted?: boolean;
/**
* The rating given to the post in reviews.
* @type {number}
*/
reviewsRating?: number;
/**
* The number of reviews for the post.
* @type {number}
*/
reviewsCount?: number;
/**
* The tagline associated with the post.
* @type {string}
*/
tagline?: string;
/**
* The slug (short URL) of the post.
* @type {string}
*/
slug?: string;
/**
* The unique identifier of the user who created the post.
* @type {string}
*/
userId?: string;
/**
* The URL associated with the post.
* @type {string}
*/
url?: string;
/**
* The website URL associated with the post.
* @type {string}
*/
website?: string;
/**
* The number of votes received by the post.
* @type {number}
*/
votesCount?: number;
/**
* Information about collections associated with the post.
* @type {CollectionInfo}
*/
collections?: {
/**
* The total number of collections associated with the post.
* @type {number}
*/
totalCount?: number;
};
/**
* Information about comments on the post.
* @type {CommentInfo}
*/
comments?: {
/**
* The total number of comments on the post.
* @type {number}
*/
totalCount?: number;
};
/**
* Information about makers associated with the post.
* @type {Maker[]}
*/
makers?: Maker[];
/**
* Information about media content associated with the post.
* @type {MediaInfo[]}
*/
media?: Media[];
/**
* Information about product links associated with the post.
* @type {ProductLinkInfo[]}
*/
productLinks?: ProductLink[];
/**
* Information about the post's thumbnail.
* @type {Thumbnail}
*/
thumbnail?: Thumbnail;
/**
* Information about topics associated with the post.
* @type {Topic[]}
*/
topics?: Topic[];
/**
* Information about the user who created the post.
* @type {User}
*/
user?: User;
/**
* Information about votes received by the post.
* @type {VoteInfo}
*/
votes?: {
/**
* The total number of votes received by the post.
* @type {number}
*/
totalCount?: number;
};
}
/**
* Represents the response object for a ProductHunt post.
*/
export interface ProductHuntPostsResponse {
data?: PostsData
}
/**
* Represents the data object within the ProductHunt post response.
*/
export interface PostsData {
posts?: Posts
}
/**
* Represents the posts object within the ProductHunt post data.
*/
export interface PageInfo {
/**
* The end cursor value of the posts.
* @type {string}
* @memberof PageInfo
*/
endCursor?: string
/**
* If there is a next page of posts.
* @type {boolean}
* @memberof PageInfo
*/
hasNextPage?: boolean
/**
* If there is a previous page of posts.
* @type {boolean}
* @memberof PageInfo
*/
hasPreviousPage?: boolean
/**
* The start cursor value of the posts.
* @type {string}
* @memberof PageInfo
*/
startCursor?: string
}
/**
* Represents the posts object within the ProductHunt post data.
*/
export interface Posts {
/**
* The total count value of the posts.
* @type {number}
* @memberof Posts
*/
totalCount?: number
/**
* The page info object of the posts.
* @type {PageInfo}
* @memberof Posts
*/
pageInfo?: PageInfo
/**
* The edges object of the posts.
* @type {PostEdge[]}
* @memberof Posts
*/
edges?: PostEdge[]
}
/**
* Represents an edge object within the posts data.
*/
export interface PostEdge {
/**
* The cursor value of the edge.
* @type {string}
* @memberof PostEdge
*/
cursor?: string
/**
* The node object within the edge.
* @type {PostNode}
* @memberof PostEdge
*/
node?: PostNode
}
/**
* Represents a node object within the posts data.
*/
export interface PostNode {
/**
* The ID of the node.
* @type {string}
* @memberof PostNode
*/
id?: string
/**
* The name of the node.
* @type {string}
* @memberof PostNode
*/
name?: string
/**
* The tagline of the node.
* @type {string}
* @memberof PostNode
*/
tagline?: string
/**
* The description of the node.
* @type {string}
* @memberof PostNode
*/
description?: string
/**
* The URL of the node.
* @type {string}
* @memberof PostNode
*/
url?: string
/**
* The slug of the node.
* @type {string}
* @memberof PostNode
*/
slug?: string
/**
* The number of votes for the node.
* @type {number}
* @memberof PostNode
*/
votesCount?: number
/**
* The thumbnail object of the node.
* @type {Thumbnail}
* @memberof PostNode
*/
thumbnail?: Thumbnail
/**
* The website URL of the node.
* @type {string}
* @memberof PostNode
*/
website?: string
/**
* The rating of the reviews for the node.
* @type {number}
* @memberof PostNode
*/
reviewsRating?: number
/**
* The number of reviews for the node.
* @type {number}
* @memberof PostNode
*/
reviewsCount?: number
/**
* The creation date of the node.
* @type {Date}
* @memberof PostNode
*/
createdAt?: Date
/**
* The makers associated with the node.
* @type {Maker[]}
* @memberof PostNode
*/
makers?: Maker[]
/**
* The product links associated with the node.
* @type {Thumbnail[]}
* @memberof PostNode
*/
productLinks?: Thumbnail[]
/**
* The user object associated with the node.
* @type {User}
* @memberof PostNode
*/
user?: User
/**
* The number of comments for the node.
* @type {number}
* @memberof PostNode
*/
commentsCount?: number
/**
* The featured date of the node.
* @type {Date}
* @memberof PostNode
*/
featuredAt?: Date
/**
* Indicates if the node is collected.
* @type {boolean}
* @memberof PostNode
*/
isCollected?: boolean
/**
* Indicates if the node is voted.
* @type {boolean}
* @memberof PostNode
*/
isVoted?: boolean
/**
* The ID of the user associated with the node.
* @type {string}
* @memberof PostNode
*/
userId?: string
}
/**
* Represents a product link object.
*/
export interface ProductLink {
/**
* The type of the product link.
* @type {string}
* @memberof ProductLink
*/
type?: string
/**
* The url of the product link.
* @type {string}
* @memberof ProductLink
*/
url?: string
}
/**
* Represents a media object.
*/
export interface Media {
/**
* The type of the media.
* @type {string}
* @memberof Media
*/
type?: string
/**
* The url of the media.
* @type {string}
* @memberof Media
*/
url?: string
/**
* The video url of the media.
* @type {string}
* @memberof Media
*/
videoUrl?: string
}
/**
* Represents a maker object.
*/
export interface Maker {
/**
* The ID of the maker.
* @type {string}
* @memberof Maker
*/
id?: string
/**
* The name of the maker.
* @type {string}
* @memberof Maker
*/
name?: string
}
/**
* Represents a thumbnail object.
*/
export interface Thumbnail {
/**
* The type of the thumbnail.
* @type {string}
* @memberof Thumbnail
*/
type?: string
/**
* The URL of the thumbnail.
* @type {string}
* @memberof Thumbnail
*/
url?: string
/**
* The video URL of the thumbnail.
* @type {string}
* @memberof Thumbnail
*/
videoUrl?: string
}
/**
* Represents a user object.
*/
export interface User {
/**
* The cover image URL of the user.
* @type {(string | null)}
* @memberof User
*/
coverImage?: string | null
/**
* The creation date of the user.
* @type {Date}
* @memberof User
*/
createdAt?: Date
/**
* The headline of the user.
* @type {(string | null)}
* @memberof User
*/
headline?: string | null
/**
* Indicates if the user is being followed.
* @type {boolean}
* @memberof User
*/
isFollowing?: boolean
/**
* Indicates if the user is a maker.
* @type {boolean}
* @memberof User
*/
isMaker?: boolean
/**
* Indicates if the user is the viewer.
* @type {boolean}
* @memberof User
*/
isViewer?: boolean
/**
* The profile image URL of the user.
* @type {(string | null)}
* @memberof User
*/
profileImage?: string | null
/**
* The Twitter username of the user.
* @type {(string | null)}
* @memberof User
*/
twitterUsername?: string | null
/**
* The URL of the user.
* @type {string}
* @memberof User
*/
url?: string
/**
* The username of the user.
* @type {string}
* @memberof User
*/
username?: string
/**
* The website URL of the user.
* @type {null}
* @memberof User
*/
websiteUrl?: null
/**
* The ID of the user.
* @type {string}
* @memberof User
*/
id?: string
/**
* The name of the user.
* @type {string}
* @memberof User
*/
name?: string
}
/**
* @export
* @interface GetPostsRequestVariables
*/
export interface GetPostsRequestVariables {
featured?: boolean
postedBefore?: Date
postedAfter?: Date
topic?: string
order?: PostOrder
after?: string
before?: string
first?: number
twitterUrl?: string
url?: string
}
/**
*
* @export
* @interface GetPostsRequest
*/
export interface GetPostsRequest {
query?: string
variables?: GetPostsRequestVariables
}
/**
* @export
* @interface GetPostRequestVariables
*/
export interface GetPostRequestVariables {
id?: string
slug?: string
}
/**
*
* @export
* @interface GetPostRequest
*/
export interface GetPostRequest {
query?: string
variables?: GetPostRequestVariables
}
/**
* Represents the response object for a ProductHunt topic.
*/
export interface ProductHuntTopicResponse {
data?: TopicData
}
/**
* Represents the data object within the ProductHunt topic response.
*/
export interface TopicData {
topics?: Topics
}
/**
* Represents the topics object within the ProductHunt topic data.
*/
export interface Topics {
/**
* The total count value of the topics.
* @type {number}
* @memberof Topics
*/
totalCount?: number
/**
* The page info object of the topics.
* @type {PageInfo}
* @memberof Topics
*/
pageInfo?: PageInfo
/**
* The edges object of the topics.
* @type {PostEdge[]}
* @memberof Topics
*/
nodes?: Topic[]
}
/**
* Represents a Topic object within the topics data.
* @interface Topic
*/
export interface Topic {
/**
* The name of the topic.
* @type {string}
* @memberof Topic
*/
name?: string
/**
* The creation date of the topic.
* @type {Date}
* @memberof Topic
*/
createdAt?: Date
/**
* The description of the topic.
* @type {string}
* @memberof Topic
*/
description?: string
/**
* The number of followers of the topic.
* @type {number}
* @memberof Topic
*/
followersCount?: number
/**
* The unique identifier of the topic.
* @type {string}
* @memberof Topic
*/
id?: string
/**
* The image associated with the topic.
* @type {string}
* @memberof Topic
*/
image?: string
/**
* Indicates if the user is following the topic.
* @type {boolean}
* @memberof Topic
*/
isFollowing?: boolean
/**
* The number of posts related to the topic.
* @type {number}
* @memberof Topic
*/
postsCount?: number
/**
* The slug of the topic.
* @type {string}
* @memberof Topic
*/
slug?: string
/**
* The URL associated with the topic.
* @type {string}
* @memberof Topic
*/
url?: string
}
/**
* @export
* @interface GetTopicsRequestVariables
*/
export interface GetTopicsRequestVariables {
followedByUserid?: string
query?: string
order?: TopicOrder
after?: string
before?: string
first?: number
last?: number
}
/**
*
* @export
* @interface GetTopicsRequest
*/
export interface GetTopicsRequest {
query?: string
variables?: GetTopicsRequestVariables
}
/**
* ProductHuntAPI - object-oriented interface
* @export
* @class ProductHuntAPI
* @extends {BaseAPI}
*/
export class ProductHuntAPI extends BaseAPI {
/**
*
* @summary Creates a completion for the provided prompt and parameters.
* @param {GetPostsRequest} getPostsRequest
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof ProductHuntAPI
*/
public GetPosts(
getPostsRequest?: GetPostsRequest,
options?: AxiosRequestConfig
) {
return ProductHuntAPIFp(this.configuration)
.GetPosts(getPostsRequest, options)
.then(request => request(this.axios, this.basePath))
}
/**
*
* @summary Creates a completion for the provided prompt and parameters.
* @param {GetTopicsRequest} getTopicsRequest
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof ProductHuntAPI
*/
public GetTopics(
getTopicsRequest?: GetTopicsRequest,
options?: AxiosRequestConfig
) {
return ProductHuntAPIFp(this.configuration)
.GetTopics(getTopicsRequest, options)
.then(request => request(this.axios, this.basePath))
}
/**
*
* @summary Creates a completion for the provided prompt and parameters.
* @param {GetPostRequest} getPostRequest
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof ProductHuntAPI
*/
public GetPost(
getPostRequest?: GetPostRequest,
options?: AxiosRequestConfig
) {
return ProductHuntAPIFp(this.configuration)
.GetPost(getPostRequest, options)
.then(request => request(this.axios, this.basePath))
}
}
/**
* ProductHuntAPI - axios parameter creator
* @export
*/
export const ProductHuntAPIAxiosParamCreator = function (
configuration?: Configuration
) {
return {
/**
*
* @summary Creates a post response for the given params.
* @param {GetPostsRequest} getPostsRequest
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
GetPosts: async (
getPostsRequest?: GetPostsRequest,
options: AxiosRequestConfig = {}
): Promise<RequestArgs> => {
// verify required parameter 'getPostsRequest' is not null or undefined
//assertParamExists('getPosts', 'getPostsRequest', getPostsRequest)
const localVarPath = `${API_V}/api/graphql`
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL)
let baseOptions
if (configuration) {
baseOptions = configuration.baseOptions
}
const localVarRequestOptions = {
method: 'POST',
...baseOptions,
...options,
}
const localVarHeaderParameter = {} as any
//const localVarQueryParameter = {} as any
localVarHeaderParameter['Content-Type'] = 'application/json'
const data = {
query: getPostsRequest?.query ?? postsQuery,
variables: { ...getPostsRequest?.variables },
}
//setVariables(data, getPostsRequest.variables)
const headersFromBaseOptions =
baseOptions && baseOptions.headers ? baseOptions.headers : {}
localVarRequestOptions.headers = {
...localVarHeaderParameter,
...headersFromBaseOptions,
...options.headers,
}
/* localVarRequestOptions.data = serializeDataIfNeeded(
getPostsRequest,
localVarRequestOptions,
configuration
) */
localVarRequestOptions.data = data
return {
url: toPathString(localVarUrlObj),
options: localVarRequestOptions,
}
},
/**
*
* @summary Creates a topic response for the given params.
* @param {GetTopicsRequest} getTopicsRequest
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
GetTopics: async (
getTopicsRequest?: GetTopicsRequest,
options: AxiosRequestConfig = {}
): Promise<RequestArgs> => {
// verify required parameter 'getTopicsRequest' is not null or undefined
//assertParamExists('getPosts', 'getTopicsRequest', getTopicsRequest)
const localVarPath = `${API_V}/api/graphql`
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL)
let baseOptions
if (configuration) {
baseOptions = configuration.baseOptions
}
const localVarRequestOptions = {
method: 'POST',
...baseOptions,
...options,
}
const localVarHeaderParameter = {} as any
//const localVarQueryParameter = {} as any
localVarHeaderParameter['Content-Type'] = 'application/json'
const data = {
query: getTopicsRequest?.query ?? topicsQuery,
variables: { ...getTopicsRequest?.variables },
}
//setVariables(data, getTopicsRequest.variables)
const headersFromBaseOptions =
baseOptions && baseOptions.headers ? baseOptions.headers : {}
localVarRequestOptions.headers = {
...localVarHeaderParameter,
...headersFromBaseOptions,
...options.headers,
}
/* localVarRequestOptions.data = serializeDataIfNeeded(
getTopicsRequest,
localVarRequestOptions,
configuration
) */
localVarRequestOptions.data = data
return {
url: toPathString(localVarUrlObj),
options: localVarRequestOptions,
}
},
/**
*
* @summary Creates a post response for the given params.
* @param {GetPostRequest} getPostRequest
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
GetPost: async (
getPostRequest?: GetPostRequest,
options: AxiosRequestConfig = {}
): Promise<RequestArgs> => {
// verify required parameter 'getPostsRequest' is not null or undefined
//assertParamExists('getPosts', 'getPostsRequest', getPostsRequest)