Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: create rekomendasi form #66

Open
wants to merge 12 commits into
base: develop
Choose a base branch
from
7 changes: 4 additions & 3 deletions src/api/generated/ApiClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import { CalendarService } from './services/CalendarService';
import { CategoryService } from './services/CategoryService';
import { CommentService } from './services/CommentService';
import { CompetitionsService } from './services/CompetitionsService';
import { RecommendationService } from './services/RecommendationService';
import { CourseService } from './services/CourseService';
import { CurhatService } from './services/CurhatService';
import { InfoService } from './services/InfoService';
Expand All @@ -18,18 +19,19 @@ import { MediaService } from './services/MediaService';
import { OpenGraphService } from './services/OpenGraphService';
import { PushService } from './services/PushService';
import { ReactionService } from './services/ReactionService';
import { RecommendationService } from './services/RecommendationService';
import { TestimoniService } from './services/TestimoniService';
import { UnsubscribeService } from './services/UnsubscribeService';
import { UserFinderService } from './services/UserFinderService';
import { UserProfileService } from './services/UserProfileService';

type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
export class ApiClient {
public readonly auth: AuthService;
public readonly calendar: CalendarService;
public readonly category: CategoryService;
public readonly comment: CommentService;
public readonly competitions: CompetitionsService;
public readonly recommendation: RecommendationService;
public readonly course: CourseService;
public readonly curhat: CurhatService;
public readonly info: InfoService;
Expand All @@ -38,7 +40,6 @@ export class ApiClient {
public readonly openGraph: OpenGraphService;
public readonly push: PushService;
public readonly reaction: ReactionService;
public readonly recommendation: RecommendationService;
public readonly testimoni: TestimoniService;
public readonly unsubscribe: UnsubscribeService;
public readonly userFinder: UserFinderService;
Expand All @@ -59,6 +60,7 @@ export class ApiClient {
this.auth = new AuthService(this.request);
this.calendar = new CalendarService(this.request);
this.category = new CategoryService(this.request);
this.recommendation = new RecommendationService(this.request);
this.comment = new CommentService(this.request);
this.competitions = new CompetitionsService(this.request);
this.course = new CourseService(this.request);
Expand All @@ -69,7 +71,6 @@ export class ApiClient {
this.openGraph = new OpenGraphService(this.request);
this.push = new PushService(this.request);
this.reaction = new ReactionService(this.request);
this.recommendation = new RecommendationService(this.request);
this.testimoni = new TestimoniService(this.request);
this.unsubscribe = new UnsubscribeService(this.request);
this.userFinder = new UserFinderService(this.request);
Expand Down
2 changes: 2 additions & 0 deletions src/api/generated/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ export type { Comment } from './models/Comment';
export type { CommentWithReactions } from './models/CommentWithReactions';
export type { Competition } from './models/Competition';
export type { CompetitionCategories } from './models/CompetitionCategories';
export type { Voucher } from './models/Voucher';
export type { CoWorking } from './models/CoWorking';
export type { Course } from './models/Course';
export type { Error } from './models/Error';
export type { Info } from './models/Info';
Expand Down
13 changes: 13 additions & 0 deletions src/api/generated/models/CoWorking.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/* generated using openapi-typescript-codegen -- do not edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
export type CoWorking = {
title: string;
imageUrl: string;
location: string;
address: string;
mapUrl: string;
description: string | null;
};

5 changes: 5 additions & 0 deletions src/api/generated/models/LocationCategories.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/* generated using openapi-typescript-codegen -- do not edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
export type LocationCategories = Array<'Ganesha' | 'Jatinangor'>;
13 changes: 13 additions & 0 deletions src/api/generated/models/Voucher.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/* generated using openapi-typescript-codegen -- do not edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
export type Voucher = {
title: string;
imageURL: string;
link: string| null;
startPeriod: string| null;
endPeriod: string| null;
description: string | null;
};

Loading
Loading