schedule-refactor #45
@ -324,12 +324,12 @@ export class ScheduleService {
 | 
				
			|||||||
     * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
 | 
					     * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
 | 
				
			||||||
     * @param reportProgress flag to report request and response progress.
 | 
					     * @param reportProgress flag to report request and response progress.
 | 
				
			||||||
     */
 | 
					     */
 | 
				
			||||||
    public schedulesScheduleIDBasicPost(scheduleID: number, basicScheduleFieldInfo?: BasicScheduleFieldInfo, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext}): Observable<SimpleStatusResponse>;
 | 
					    public schedulesScheduleIDPost(scheduleID: number, basicScheduleFieldInfo?: BasicScheduleFieldInfo, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext}): Observable<ScheduleInfo>;
 | 
				
			||||||
    public schedulesScheduleIDBasicPost(scheduleID: number, basicScheduleFieldInfo?: BasicScheduleFieldInfo, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext}): Observable<HttpResponse<SimpleStatusResponse>>;
 | 
					    public schedulesScheduleIDPost(scheduleID: number, basicScheduleFieldInfo?: BasicScheduleFieldInfo, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext}): Observable<HttpResponse<ScheduleInfo>>;
 | 
				
			||||||
    public schedulesScheduleIDBasicPost(scheduleID: number, basicScheduleFieldInfo?: BasicScheduleFieldInfo, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext}): Observable<HttpEvent<SimpleStatusResponse>>;
 | 
					    public schedulesScheduleIDPost(scheduleID: number, basicScheduleFieldInfo?: BasicScheduleFieldInfo, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext}): Observable<HttpEvent<ScheduleInfo>>;
 | 
				
			||||||
    public schedulesScheduleIDBasicPost(scheduleID: number, basicScheduleFieldInfo?: BasicScheduleFieldInfo, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext}): Observable<any> {
 | 
					    public schedulesScheduleIDPost(scheduleID: number, basicScheduleFieldInfo?: BasicScheduleFieldInfo, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext}): Observable<any> {
 | 
				
			||||||
        if (scheduleID === null || scheduleID === undefined) {
 | 
					        if (scheduleID === null || scheduleID === undefined) {
 | 
				
			||||||
            throw new Error('Required parameter scheduleID was null or undefined when calling schedulesScheduleIDBasicPost.');
 | 
					            throw new Error('Required parameter scheduleID was null or undefined when calling schedulesScheduleIDPost.');
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        let localVarHeaders = this.defaultHeaders;
 | 
					        let localVarHeaders = this.defaultHeaders;
 | 
				
			||||||
@ -373,7 +373,7 @@ export class ScheduleService {
 | 
				
			|||||||
            responseType_ = 'text';
 | 
					            responseType_ = 'text';
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        return this.httpClient.post<SimpleStatusResponse>(`${this.configuration.basePath}/schedules/${encodeURIComponent(String(scheduleID))}/basic`,
 | 
					        return this.httpClient.post<ScheduleInfo>(`${this.configuration.basePath}/schedules/${encodeURIComponent(String(scheduleID))}`,
 | 
				
			||||||
            basicScheduleFieldInfo,
 | 
					            basicScheduleFieldInfo,
 | 
				
			||||||
            {
 | 
					            {
 | 
				
			||||||
                context: localVarHttpContext,
 | 
					                context: localVarHttpContext,
 | 
				
			||||||
 | 
				
			|||||||
@ -43,7 +43,7 @@ export class BasicSchedulerComponent implements OnChanges{
 | 
				
			|||||||
          }
 | 
					          }
 | 
				
			||||||
        })
 | 
					        })
 | 
				
			||||||
      } else {
 | 
					      } else {
 | 
				
			||||||
        this.scheduleService.schedulesScheduleIDBasicPost(this.scheduleEntityInfo!.scheduleID, {
 | 
					        this.scheduleService.schedulesScheduleIDPost(this.scheduleEntityInfo!.scheduleID, {
 | 
				
			||||||
          scheduleDate: this.dateCtrl.value
 | 
					          scheduleDate: this.dateCtrl.value
 | 
				
			||||||
        }).subscribe({
 | 
					        }).subscribe({
 | 
				
			||||||
          next: resp => {
 | 
					          next: resp => {
 | 
				
			||||||
 | 
				
			|||||||
@ -1351,7 +1351,7 @@ paths:
 | 
				
			|||||||
              schema:
 | 
					              schema:
 | 
				
			||||||
                type: object
 | 
					                type: object
 | 
				
			||||||
                $ref: "#/components/schemas/SimpleStatusResponse"
 | 
					                $ref: "#/components/schemas/SimpleStatusResponse"
 | 
				
			||||||
  /schedules/{scheduleID}/basic:
 | 
					  /schedules/{scheduleID}:
 | 
				
			||||||
    post:
 | 
					    post:
 | 
				
			||||||
      security:
 | 
					      security:
 | 
				
			||||||
        - API_TOKEN: []
 | 
					        - API_TOKEN: []
 | 
				
			||||||
@ -1379,7 +1379,7 @@ paths:
 | 
				
			|||||||
            application/json:
 | 
					            application/json:
 | 
				
			||||||
              schema:
 | 
					              schema:
 | 
				
			||||||
                type: object
 | 
					                type: object
 | 
				
			||||||
                $ref: '#/components/schemas/SimpleStatusResponse'
 | 
					                $ref: '#/components/schemas/ScheduleInfo'
 | 
				
			||||||
        403:
 | 
					        403:
 | 
				
			||||||
          description: No permission
 | 
					          description: No permission
 | 
				
			||||||
          content:
 | 
					          content:
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user