@vendasta/developer-training 0.30.0 → 0.32.0

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.
Files changed (33) hide show
  1. package/esm2020/lib/_internal/a-amadora-to-do.api.service.mjs +58 -0
  2. package/esm2020/lib/_internal/index.mjs +4 -1
  3. package/esm2020/lib/_internal/interfaces/aamadora.interface.mjs +8 -0
  4. package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
  5. package/esm2020/lib/_internal/interfaces/nchaudhary.interface.mjs +2 -0
  6. package/esm2020/lib/_internal/interfaces/paging.interface.mjs +8 -0
  7. package/esm2020/lib/_internal/interfaces/srathod.interface.mjs +8 -0
  8. package/esm2020/lib/_internal/n-chaudhary-to-do.api.service.mjs +60 -0
  9. package/esm2020/lib/_internal/objects/aamadora.mjs +223 -0
  10. package/esm2020/lib/_internal/objects/index.mjs +5 -1
  11. package/esm2020/lib/_internal/objects/nchaudhary.mjs +300 -0
  12. package/esm2020/lib/_internal/objects/paging.mjs +62 -0
  13. package/esm2020/lib/_internal/objects/srathod.mjs +241 -0
  14. package/esm2020/lib/_internal/task-man.api.service.mjs +55 -0
  15. package/fesm2015/vendasta-developer-training.mjs +1096 -119
  16. package/fesm2015/vendasta-developer-training.mjs.map +1 -1
  17. package/fesm2020/vendasta-developer-training.mjs +1096 -119
  18. package/fesm2020/vendasta-developer-training.mjs.map +1 -1
  19. package/lib/_internal/a-amadora-to-do.api.service.d.ts +18 -0
  20. package/lib/_internal/index.d.ts +3 -0
  21. package/lib/_internal/interfaces/aamadora.interface.d.ts +32 -0
  22. package/lib/_internal/interfaces/index.d.ts +4 -0
  23. package/lib/_internal/interfaces/nchaudhary.interface.d.ts +48 -0
  24. package/lib/_internal/interfaces/paging.interface.d.ts +9 -0
  25. package/lib/_internal/interfaces/srathod.interface.d.ts +38 -0
  26. package/lib/_internal/n-chaudhary-to-do.api.service.d.ts +17 -0
  27. package/lib/_internal/objects/aamadora.d.ts +61 -0
  28. package/lib/_internal/objects/index.d.ts +4 -0
  29. package/lib/_internal/objects/nchaudhary.d.ts +83 -0
  30. package/lib/_internal/objects/paging.d.ts +17 -0
  31. package/lib/_internal/objects/srathod.d.ts +67 -0
  32. package/lib/_internal/task-man.api.service.d.ts +16 -0
  33. package/package.json +1 -1
@@ -0,0 +1,18 @@
1
+ import { AAmadoraCreateToDoItemRequest, AAmadoraCreateToDoItemResponse, AAmadoraDeleteToDoItemRequest, AAmadoraListToDoItemRequest, AAmadoraListToDoItemResponse, AAmadoraListTodoItemsResponse, AAmadoraUpdateToDoItemRequest, AAmadoraUpdateToDoItemResponse } from './objects/';
2
+ import { AAmadoraCreateToDoItemRequestInterface, AAmadoraDeleteToDoItemRequestInterface, AAmadoraListToDoItemRequestInterface, AAmadoraUpdateToDoItemRequestInterface } from './interfaces/';
3
+ import { HttpResponse } from '@angular/common/http';
4
+ import { Observable } from 'rxjs';
5
+ import * as i0 from "@angular/core";
6
+ export declare class AAmadoraToDoApiService {
7
+ private readonly hostService;
8
+ private readonly http;
9
+ private _host;
10
+ private apiOptions;
11
+ createToDoItem(r: AAmadoraCreateToDoItemRequest | AAmadoraCreateToDoItemRequestInterface): Observable<AAmadoraCreateToDoItemResponse>;
12
+ listToDoItems(): Observable<AAmadoraListTodoItemsResponse>;
13
+ listToDoItem(r: AAmadoraListToDoItemRequest | AAmadoraListToDoItemRequestInterface): Observable<AAmadoraListToDoItemResponse>;
14
+ updateToDoItem(r: AAmadoraUpdateToDoItemRequest | AAmadoraUpdateToDoItemRequestInterface): Observable<AAmadoraUpdateToDoItemResponse>;
15
+ deleteToDoItem(r: AAmadoraDeleteToDoItemRequest | AAmadoraDeleteToDoItemRequestInterface): Observable<HttpResponse<null>>;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<AAmadoraToDoApiService, never>;
17
+ static ɵprov: i0.ɵɵInjectableDeclaration<AAmadoraToDoApiService>;
18
+ }
@@ -1,6 +1,7 @@
1
1
  export * from './enums';
2
2
  export * from './objects';
3
3
  export * from './interfaces';
4
+ export { AAmadoraToDoApiService } from './a-amadora-to-do.api.service';
4
5
  export { AOlabenjoTodoListApiService } from './a-olabenjo-todo-list.api.service';
5
6
  export { AdminLibraryUserApiService } from './admin-library-user.api.service';
6
7
  export { BookMasterDataApiService } from './book-master-data.api.service';
@@ -12,6 +13,8 @@ export { HGoyalTaskApiService } from './h-goyal-task.api.service';
12
13
  export { IAntoshToDoListApiService } from './i-antosh-to-do-list.api.service';
13
14
  export { KOdlandTaskApiService } from './k-odland-task.api.service';
14
15
  export { KSinghSandhuTodoApiService } from './k-singh-sandhu-todo.api.service';
16
+ export { NChaudharyToDoApiService } from './n-chaudhary-to-do.api.service';
15
17
  export { NTamrazyanToDoApiService } from './n-tamrazyan-to-do.api.service';
16
18
  export { SPrajapatiToDoApiService } from './s-prajapati-to-do.api.service';
19
+ export { TaskManApiService } from './task-man.api.service';
17
20
  export { TaxiUserDataApiService } from './taxi-user-data.api.service';
@@ -0,0 +1,32 @@
1
+ export interface AAmadoraCreateToDoItemRequestInterface {
2
+ todoItem?: AAmadoraToDoItemInterface;
3
+ }
4
+ export interface AAmadoraCreateToDoItemResponseInterface {
5
+ id?: string;
6
+ }
7
+ export interface AAmadoraDeleteToDoItemRequestInterface {
8
+ id?: string;
9
+ }
10
+ export interface AAmadoraListToDoItemRequestInterface {
11
+ id?: string;
12
+ }
13
+ export interface AAmadoraListToDoItemResponseInterface {
14
+ todoItem?: AAmadoraToDoItemInterface;
15
+ }
16
+ export interface AAmadoraListTodoItemsResponseInterface {
17
+ todoItems?: AAmadoraToDoItemInterface[];
18
+ }
19
+ export interface AAmadoraToDoItemInterface {
20
+ id?: string;
21
+ name?: string;
22
+ description?: string;
23
+ dueDate?: Date;
24
+ completed?: Date;
25
+ deleted?: Date;
26
+ }
27
+ export interface AAmadoraUpdateToDoItemRequestInterface {
28
+ todoItem?: AAmadoraToDoItemInterface;
29
+ }
30
+ export interface AAmadoraUpdateToDoItemResponseInterface {
31
+ id?: string;
32
+ }
@@ -10,4 +10,8 @@ export { NTamrazyanCreateToDoItemRequestInterface, NTamrazyanCreateToDoItemRespo
10
10
  export { SPrajapatiCreateToDoRequestInterface, SPrajapatiCreateToDoResponseInterface, SPrajapatiDeleteToDoRequestInterface, SPrajapatiDeleteToDoResponseInterface, SPrajapatiListAllTodosRequestInterface, SPrajapatiListAllTodosResponseInterface, SPrajapatiToDoInterface, SPrajapatiUpdateToDoRequestInterface, SPrajapatiUpdateToDoResponseInterface, } from './sprajapati.interface';
11
11
  export { CCeleokaforCreateTodoRequestInterface, CCeleokaforCreateTodoResponseInterface, CCeleokaforDeleteTodoRequestInterface, CCeleokaforDeleteTodoResponseInterface, CCeleokaforGetAllTodosRequestInterface, CCeleokaforGetAllTodosResponseInterface, CCeleokaforTodoListItemInterface, CCeleokaforUpdateTodoRequestInterface, CCeleokaforUpdateTodoResponseInterface, } from './cceleokafor.interface';
12
12
  export { GPAddTaskRequestInterface, GPAddTaskResponseInterface, GPDeleteTaskRequestInterface, GPDeleteTaskResponseInterface, GPGetAllTasksResponseInterface, GPGetTaskRequestInterface, GPGetTaskResponseInterface, GPTaskItemInterface, GPUpdateTaskRequestInterface, GPUpdateTaskResponseInterface, } from './gobinda.interface';
13
+ export { PagedRequestOptionsInterface, PagedResponseMetadataInterface, } from './paging.interface';
14
+ export { NChaudharyCreateItemRequestInterface, NChaudharyCreateItemResponseInterface, NChaudharyDeleteItemRequestInterface, NChaudharyDeleteItemResponseInterface, NChaudharyGetItemRequestInterface, NChaudharyGetItemResponseInterface, NChaudharyListAllRequestInterface, NChaudharyListAllResponseInterface, NChaudharyToDoItemInterface, NChaudharyUpdateItemRequestInterface, NChaudharyUpdateItemResponseInterface, } from './nchaudhary.interface';
15
+ export { SRCreateTaskRequestInterface, SRCreateTaskResponseInterface, SRDeleteTaskRequestInterface, SRDeleteTaskResponseInterface, SRListTasksRequestInterface, SRListTasksResponseInterface, SRUpdateTaskRequestInterface, SRUpdateTaskResponseInterface, TaskInterface, } from './srathod.interface';
16
+ export { AAmadoraCreateToDoItemRequestInterface, AAmadoraCreateToDoItemResponseInterface, AAmadoraDeleteToDoItemRequestInterface, AAmadoraListToDoItemRequestInterface, AAmadoraListToDoItemResponseInterface, AAmadoraListTodoItemsResponseInterface, AAmadoraToDoItemInterface, AAmadoraUpdateToDoItemRequestInterface, AAmadoraUpdateToDoItemResponseInterface, } from './aamadora.interface';
13
17
  export { AddAdminLibraryUserRequestInterface, AddAdminLibraryUserResponseInterface, AddTaxiUserDataRequestInterface, AddTaxiUserDataResponseInterface, AdminUserManagementInterface, AdminuserfilterInterface, AdminuserpagingrequestInterface, AdminuserpagingresponseInterface, BookCheckOutRequestInterface, BookCheckedOutDataInterface, BookCheckoutResponseInterface, BookDropdownDataInterface, BookDropdownRequestInterface, BookDropdownResponseInterface, BookFilterRequestInterface, BookFilterResponseInterface, BookReturnEditRequestInterface, BookReturnEditResponseInterface, BookReturnRequestInterface, BookReturnResponseInterface, BookReturnedDataInterface, BookmasterAddRequestInterface, BookmasterAddResponseInterface, BookmasterEditRequestInterface, BookmasterEditResponseInterface, BookmasterRequestInterface, BookmasterResponseInterface, BookmasterdeleterequestInterface, BookmasterdeleteresponseInterface, BookmasterfilterInterface, BookmastergetbyidrequestInterface, BookmastergetbyidresponseInterface, BookmasterpagingrequestInterface, BookmasterpagingresponseInterface, BookmastersortoptionsInterface, BookmastersummaryrequestInterface, BookmastersummaryresponseInterface, BookreturnfilterInterface, BookreturnsortoptionsInterface, DeleteAdminLibraryUserRequestInterface, DeleteAdminLibraryUserResponseInterface, DeleteTaxiUserDataRequestInterface, DeleteTaxiUserDataResponseInterface, EditAdminLibraryUserRequestInterface, EditAdminLibraryUserResponseInterface, EditTaxiUserDataRequestInterface, EditTaxiUserDataResponseInterface, FilterTaxiUserDataInterface, FilterTransactionReportDataInterface, GetActiveUserListRequestInterface, GetActiveUserListResponseInterface, GetActiveUserListResponseDataInterface, GetByIdTaxiUserDataRequestInterface, GetByIdTaxiUserDataResponseInterface, GetByMailIdAdminLibraryUserRequestInterface, GetByMailIdAdminLibraryUserResponseInterface, GetCheckedOutDataRequestInterface, GetCheckedOutDataResponseInterface, GetReturnedDataRequestInterface, GetReturnedDataResponseInterface, GetTaxiUserDataPaginationRequestInterface, GetTaxiUserDataPaginationResponseInterface, GetUserListIdInterface, LibraryAdminUserManangementRequestInterface, LibraryAdminUserManangementResponseInterface, PageaccessInterface, TaxiUserDataInterface, TaxiUserDataRequestInterface, TransactionReportDataInterface, TransactionReportRequestInterface, TransactionReportResponseInterface, UserFilterInterface, UserSortDataInterface, ValidateUserWithIamRequestInterface, ValidateUserWithIamResponseInterface, } from './api.interface';
@@ -0,0 +1,48 @@
1
+ import { PagedRequestOptionsInterface, PagedResponseMetadataInterface } from './paging.interface';
2
+ export interface NChaudharyCreateItemRequestInterface {
3
+ title?: string;
4
+ description?: string;
5
+ dueDate?: Date;
6
+ }
7
+ export interface NChaudharyCreateItemResponseInterface {
8
+ taskId?: string;
9
+ }
10
+ export interface NChaudharyDeleteItemRequestInterface {
11
+ taskId?: string;
12
+ }
13
+ export interface NChaudharyDeleteItemResponseInterface {
14
+ taskId?: string;
15
+ }
16
+ export interface NChaudharyGetItemRequestInterface {
17
+ taskId?: string;
18
+ }
19
+ export interface NChaudharyGetItemResponseInterface {
20
+ task?: NChaudharyToDoItemInterface;
21
+ }
22
+ export interface NChaudharyListAllRequestInterface {
23
+ pagingOptions?: PagedRequestOptionsInterface;
24
+ }
25
+ export interface NChaudharyListAllResponseInterface {
26
+ tasks?: NChaudharyToDoItemInterface[];
27
+ pagingMetadata?: PagedResponseMetadataInterface;
28
+ }
29
+ export interface NChaudharyToDoItemInterface {
30
+ taskId?: string;
31
+ title?: string;
32
+ description?: string;
33
+ dueDate?: Date;
34
+ status?: boolean;
35
+ created?: Date;
36
+ updated?: Date;
37
+ deleted?: Date;
38
+ }
39
+ export interface NChaudharyUpdateItemRequestInterface {
40
+ taskId?: string;
41
+ title?: string;
42
+ description?: string;
43
+ dueDate?: Date;
44
+ status?: boolean;
45
+ }
46
+ export interface NChaudharyUpdateItemResponseInterface {
47
+ taskId?: string;
48
+ }
@@ -0,0 +1,9 @@
1
+ export interface PagedRequestOptionsInterface {
2
+ cursor?: string;
3
+ pageSize?: number;
4
+ }
5
+ export interface PagedResponseMetadataInterface {
6
+ nextCursor?: string;
7
+ hasMore?: boolean;
8
+ totalResults?: number;
9
+ }
@@ -0,0 +1,38 @@
1
+ export interface SRCreateTaskRequestInterface {
2
+ taskTitle?: string;
3
+ taskDesc?: string;
4
+ dueDate?: Date;
5
+ }
6
+ export interface SRCreateTaskResponseInterface {
7
+ taskId?: string;
8
+ }
9
+ export interface SRDeleteTaskRequestInterface {
10
+ taskId?: string;
11
+ }
12
+ export interface SRDeleteTaskResponseInterface {
13
+ deletedValue?: string;
14
+ }
15
+ export interface SRListTasksRequestInterface {
16
+ deleted?: boolean;
17
+ completed?: boolean;
18
+ }
19
+ export interface SRListTasksResponseInterface {
20
+ taskList?: TaskInterface[];
21
+ }
22
+ export interface SRUpdateTaskRequestInterface {
23
+ item?: TaskInterface;
24
+ }
25
+ export interface SRUpdateTaskResponseInterface {
26
+ taskId?: string;
27
+ }
28
+ export interface TaskInterface {
29
+ taskId?: string;
30
+ taskTitle?: string;
31
+ taskDesc?: string;
32
+ dueDate?: Date;
33
+ completed?: boolean;
34
+ deleted?: boolean;
35
+ createdAt?: Date;
36
+ updatedAt?: Date;
37
+ deletedAt?: Date;
38
+ }
@@ -0,0 +1,17 @@
1
+ import { NChaudharyCreateItemRequest, NChaudharyCreateItemResponse, NChaudharyDeleteItemRequest, NChaudharyDeleteItemResponse, NChaudharyGetItemRequest, NChaudharyGetItemResponse, NChaudharyListAllRequest, NChaudharyListAllResponse, NChaudharyUpdateItemRequest, NChaudharyUpdateItemResponse } from './objects/';
2
+ import { NChaudharyCreateItemRequestInterface, NChaudharyDeleteItemRequestInterface, NChaudharyGetItemRequestInterface, NChaudharyListAllRequestInterface, NChaudharyUpdateItemRequestInterface } from './interfaces/';
3
+ import { Observable } from 'rxjs';
4
+ import * as i0 from "@angular/core";
5
+ export declare class NChaudharyToDoApiService {
6
+ private readonly hostService;
7
+ private readonly http;
8
+ private _host;
9
+ private apiOptions;
10
+ nChaudharyCreateTask(r: NChaudharyCreateItemRequest | NChaudharyCreateItemRequestInterface): Observable<NChaudharyCreateItemResponse>;
11
+ nChaudharyListAllTasks(r: NChaudharyListAllRequest | NChaudharyListAllRequestInterface): Observable<NChaudharyListAllResponse>;
12
+ nChaudharyGetTask(r: NChaudharyGetItemRequest | NChaudharyGetItemRequestInterface): Observable<NChaudharyGetItemResponse>;
13
+ nChaudharyDeleteTask(r: NChaudharyDeleteItemRequest | NChaudharyDeleteItemRequestInterface): Observable<NChaudharyDeleteItemResponse>;
14
+ nChaudharyUpdateTask(r: NChaudharyUpdateItemRequest | NChaudharyUpdateItemRequestInterface): Observable<NChaudharyUpdateItemResponse>;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<NChaudharyToDoApiService, never>;
16
+ static ɵprov: i0.ɵɵInjectableDeclaration<NChaudharyToDoApiService>;
17
+ }
@@ -0,0 +1,61 @@
1
+ import * as i from '../interfaces';
2
+ export declare function enumStringToValue<E>(enumRef: any, value: string): E;
3
+ export declare class AAmadoraCreateToDoItemRequest implements i.AAmadoraCreateToDoItemRequestInterface {
4
+ todoItem: AAmadoraToDoItem;
5
+ static fromProto(proto: any): AAmadoraCreateToDoItemRequest;
6
+ constructor(kwargs?: i.AAmadoraCreateToDoItemRequestInterface);
7
+ toApiJson(): object;
8
+ }
9
+ export declare class AAmadoraCreateToDoItemResponse implements i.AAmadoraCreateToDoItemResponseInterface {
10
+ id: string;
11
+ static fromProto(proto: any): AAmadoraCreateToDoItemResponse;
12
+ constructor(kwargs?: i.AAmadoraCreateToDoItemResponseInterface);
13
+ toApiJson(): object;
14
+ }
15
+ export declare class AAmadoraDeleteToDoItemRequest implements i.AAmadoraDeleteToDoItemRequestInterface {
16
+ id: string;
17
+ static fromProto(proto: any): AAmadoraDeleteToDoItemRequest;
18
+ constructor(kwargs?: i.AAmadoraDeleteToDoItemRequestInterface);
19
+ toApiJson(): object;
20
+ }
21
+ export declare class AAmadoraListToDoItemRequest implements i.AAmadoraListToDoItemRequestInterface {
22
+ id: string;
23
+ static fromProto(proto: any): AAmadoraListToDoItemRequest;
24
+ constructor(kwargs?: i.AAmadoraListToDoItemRequestInterface);
25
+ toApiJson(): object;
26
+ }
27
+ export declare class AAmadoraListToDoItemResponse implements i.AAmadoraListToDoItemResponseInterface {
28
+ todoItem: AAmadoraToDoItem;
29
+ static fromProto(proto: any): AAmadoraListToDoItemResponse;
30
+ constructor(kwargs?: i.AAmadoraListToDoItemResponseInterface);
31
+ toApiJson(): object;
32
+ }
33
+ export declare class AAmadoraListTodoItemsResponse implements i.AAmadoraListTodoItemsResponseInterface {
34
+ todoItems: AAmadoraToDoItem[];
35
+ static fromProto(proto: any): AAmadoraListTodoItemsResponse;
36
+ constructor(kwargs?: i.AAmadoraListTodoItemsResponseInterface);
37
+ toApiJson(): object;
38
+ }
39
+ export declare class AAmadoraToDoItem implements i.AAmadoraToDoItemInterface {
40
+ id: string;
41
+ name: string;
42
+ description: string;
43
+ dueDate: Date;
44
+ completed: Date;
45
+ deleted: Date;
46
+ static fromProto(proto: any): AAmadoraToDoItem;
47
+ constructor(kwargs?: i.AAmadoraToDoItemInterface);
48
+ toApiJson(): object;
49
+ }
50
+ export declare class AAmadoraUpdateToDoItemRequest implements i.AAmadoraUpdateToDoItemRequestInterface {
51
+ todoItem: AAmadoraToDoItem;
52
+ static fromProto(proto: any): AAmadoraUpdateToDoItemRequest;
53
+ constructor(kwargs?: i.AAmadoraUpdateToDoItemRequestInterface);
54
+ toApiJson(): object;
55
+ }
56
+ export declare class AAmadoraUpdateToDoItemResponse implements i.AAmadoraUpdateToDoItemResponseInterface {
57
+ id: string;
58
+ static fromProto(proto: any): AAmadoraUpdateToDoItemResponse;
59
+ constructor(kwargs?: i.AAmadoraUpdateToDoItemResponseInterface);
60
+ toApiJson(): object;
61
+ }
@@ -10,4 +10,8 @@ export { NTamrazyanCreateToDoItemRequest, NTamrazyanCreateToDoItemResponse, NTam
10
10
  export { SPrajapatiCreateToDoRequest, SPrajapatiCreateToDoResponse, SPrajapatiDeleteToDoRequest, SPrajapatiDeleteToDoResponse, SPrajapatiListAllTodosRequest, SPrajapatiListAllTodosResponse, SPrajapatiToDo, SPrajapatiUpdateToDoRequest, SPrajapatiUpdateToDoResponse, } from './sprajapati';
11
11
  export { CCeleokaforCreateTodoRequest, CCeleokaforCreateTodoResponse, CCeleokaforDeleteTodoRequest, CCeleokaforDeleteTodoResponse, CCeleokaforGetAllTodosRequest, CCeleokaforGetAllTodosResponse, CCeleokaforTodoListItem, CCeleokaforUpdateTodoRequest, CCeleokaforUpdateTodoResponse, } from './cceleokafor';
12
12
  export { GPAddTaskRequest, GPAddTaskResponse, GPDeleteTaskRequest, GPDeleteTaskResponse, GPGetAllTasksResponse, GPGetTaskRequest, GPGetTaskResponse, GPTaskItem, GPUpdateTaskRequest, GPUpdateTaskResponse, } from './gobinda';
13
+ export { PagedRequestOptions, PagedResponseMetadata, } from './paging';
14
+ export { NChaudharyCreateItemRequest, NChaudharyCreateItemResponse, NChaudharyDeleteItemRequest, NChaudharyDeleteItemResponse, NChaudharyGetItemRequest, NChaudharyGetItemResponse, NChaudharyListAllRequest, NChaudharyListAllResponse, NChaudharyToDoItem, NChaudharyUpdateItemRequest, NChaudharyUpdateItemResponse, } from './nchaudhary';
15
+ export { SRCreateTaskRequest, SRCreateTaskResponse, SRDeleteTaskRequest, SRDeleteTaskResponse, SRListTasksRequest, SRListTasksResponse, SRUpdateTaskRequest, SRUpdateTaskResponse, Task, } from './srathod';
16
+ export { AAmadoraCreateToDoItemRequest, AAmadoraCreateToDoItemResponse, AAmadoraDeleteToDoItemRequest, AAmadoraListToDoItemRequest, AAmadoraListToDoItemResponse, AAmadoraListTodoItemsResponse, AAmadoraToDoItem, AAmadoraUpdateToDoItemRequest, AAmadoraUpdateToDoItemResponse, } from './aamadora';
13
17
  export { AddAdminLibraryUserRequest, AddAdminLibraryUserResponse, AddTaxiUserDataRequest, AddTaxiUserDataResponse, AdminUserManagement, Adminuserfilter, Adminuserpagingrequest, Adminuserpagingresponse, BookCheckOutRequest, BookCheckedOutData, BookCheckoutResponse, BookDropdownData, BookDropdownRequest, BookDropdownResponse, BookFilterRequest, BookFilterResponse, BookReturnEditRequest, BookReturnEditResponse, BookReturnRequest, BookReturnResponse, BookReturnedData, BookmasterAddRequest, BookmasterAddResponse, BookmasterEditRequest, BookmasterEditResponse, BookmasterRequest, BookmasterResponse, Bookmasterdeleterequest, Bookmasterdeleteresponse, Bookmasterfilter, Bookmastergetbyidrequest, Bookmastergetbyidresponse, Bookmasterpagingrequest, Bookmasterpagingresponse, Bookmastersortoptions, Bookmastersummaryrequest, Bookmastersummaryresponse, Bookreturnfilter, Bookreturnsortoptions, DeleteAdminLibraryUserRequest, DeleteAdminLibraryUserResponse, DeleteTaxiUserDataRequest, DeleteTaxiUserDataResponse, EditAdminLibraryUserRequest, EditAdminLibraryUserResponse, EditTaxiUserDataRequest, EditTaxiUserDataResponse, FilterTaxiUserData, FilterTransactionReportData, GetActiveUserListRequest, GetActiveUserListResponse, GetActiveUserListResponseData, GetByIdTaxiUserDataRequest, GetByIdTaxiUserDataResponse, GetByMailIdAdminLibraryUserRequest, GetByMailIdAdminLibraryUserResponse, GetCheckedOutDataRequest, GetCheckedOutDataResponse, GetReturnedDataRequest, GetReturnedDataResponse, GetTaxiUserDataPaginationRequest, GetTaxiUserDataPaginationResponse, GetUserListId, LibraryAdminUserManangementRequest, LibraryAdminUserManangementResponse, Pageaccess, TaxiUserData, TaxiUserDataRequest, TransactionReportData, TransactionReportRequest, TransactionReportResponse, UserFilter, UserSortData, ValidateUserWithIamRequest, ValidateUserWithIamResponse, } from './api';
@@ -0,0 +1,83 @@
1
+ import * as i from '../interfaces';
2
+ import { PagedRequestOptions, PagedResponseMetadata } from './paging';
3
+ export declare function enumStringToValue<E>(enumRef: any, value: string): E;
4
+ export declare class NChaudharyCreateItemRequest implements i.NChaudharyCreateItemRequestInterface {
5
+ title: string;
6
+ description: string;
7
+ dueDate: Date;
8
+ static fromProto(proto: any): NChaudharyCreateItemRequest;
9
+ constructor(kwargs?: i.NChaudharyCreateItemRequestInterface);
10
+ toApiJson(): object;
11
+ }
12
+ export declare class NChaudharyCreateItemResponse implements i.NChaudharyCreateItemResponseInterface {
13
+ taskId: string;
14
+ static fromProto(proto: any): NChaudharyCreateItemResponse;
15
+ constructor(kwargs?: i.NChaudharyCreateItemResponseInterface);
16
+ toApiJson(): object;
17
+ }
18
+ export declare class NChaudharyDeleteItemRequest implements i.NChaudharyDeleteItemRequestInterface {
19
+ taskId: string;
20
+ static fromProto(proto: any): NChaudharyDeleteItemRequest;
21
+ constructor(kwargs?: i.NChaudharyDeleteItemRequestInterface);
22
+ toApiJson(): object;
23
+ }
24
+ export declare class NChaudharyDeleteItemResponse implements i.NChaudharyDeleteItemResponseInterface {
25
+ taskId: string;
26
+ static fromProto(proto: any): NChaudharyDeleteItemResponse;
27
+ constructor(kwargs?: i.NChaudharyDeleteItemResponseInterface);
28
+ toApiJson(): object;
29
+ }
30
+ export declare class NChaudharyGetItemRequest implements i.NChaudharyGetItemRequestInterface {
31
+ taskId: string;
32
+ static fromProto(proto: any): NChaudharyGetItemRequest;
33
+ constructor(kwargs?: i.NChaudharyGetItemRequestInterface);
34
+ toApiJson(): object;
35
+ }
36
+ export declare class NChaudharyGetItemResponse implements i.NChaudharyGetItemResponseInterface {
37
+ task: NChaudharyToDoItem;
38
+ static fromProto(proto: any): NChaudharyGetItemResponse;
39
+ constructor(kwargs?: i.NChaudharyGetItemResponseInterface);
40
+ toApiJson(): object;
41
+ }
42
+ export declare class NChaudharyListAllRequest implements i.NChaudharyListAllRequestInterface {
43
+ pagingOptions: PagedRequestOptions;
44
+ static fromProto(proto: any): NChaudharyListAllRequest;
45
+ constructor(kwargs?: i.NChaudharyListAllRequestInterface);
46
+ toApiJson(): object;
47
+ }
48
+ export declare class NChaudharyListAllResponse implements i.NChaudharyListAllResponseInterface {
49
+ tasks: NChaudharyToDoItem[];
50
+ pagingMetadata: PagedResponseMetadata;
51
+ static fromProto(proto: any): NChaudharyListAllResponse;
52
+ constructor(kwargs?: i.NChaudharyListAllResponseInterface);
53
+ toApiJson(): object;
54
+ }
55
+ export declare class NChaudharyToDoItem implements i.NChaudharyToDoItemInterface {
56
+ taskId: string;
57
+ title: string;
58
+ description: string;
59
+ dueDate: Date;
60
+ status: boolean;
61
+ created: Date;
62
+ updated: Date;
63
+ deleted: Date;
64
+ static fromProto(proto: any): NChaudharyToDoItem;
65
+ constructor(kwargs?: i.NChaudharyToDoItemInterface);
66
+ toApiJson(): object;
67
+ }
68
+ export declare class NChaudharyUpdateItemRequest implements i.NChaudharyUpdateItemRequestInterface {
69
+ taskId: string;
70
+ title: string;
71
+ description: string;
72
+ dueDate: Date;
73
+ status: boolean;
74
+ static fromProto(proto: any): NChaudharyUpdateItemRequest;
75
+ constructor(kwargs?: i.NChaudharyUpdateItemRequestInterface);
76
+ toApiJson(): object;
77
+ }
78
+ export declare class NChaudharyUpdateItemResponse implements i.NChaudharyUpdateItemResponseInterface {
79
+ taskId: string;
80
+ static fromProto(proto: any): NChaudharyUpdateItemResponse;
81
+ constructor(kwargs?: i.NChaudharyUpdateItemResponseInterface);
82
+ toApiJson(): object;
83
+ }
@@ -0,0 +1,17 @@
1
+ import * as i from '../interfaces';
2
+ export declare function enumStringToValue<E>(enumRef: any, value: string): E;
3
+ export declare class PagedRequestOptions implements i.PagedRequestOptionsInterface {
4
+ cursor: string;
5
+ pageSize: number;
6
+ static fromProto(proto: any): PagedRequestOptions;
7
+ constructor(kwargs?: i.PagedRequestOptionsInterface);
8
+ toApiJson(): object;
9
+ }
10
+ export declare class PagedResponseMetadata implements i.PagedResponseMetadataInterface {
11
+ nextCursor: string;
12
+ hasMore: boolean;
13
+ totalResults: number;
14
+ static fromProto(proto: any): PagedResponseMetadata;
15
+ constructor(kwargs?: i.PagedResponseMetadataInterface);
16
+ toApiJson(): object;
17
+ }
@@ -0,0 +1,67 @@
1
+ import * as i from '../interfaces';
2
+ export declare function enumStringToValue<E>(enumRef: any, value: string): E;
3
+ export declare class SRCreateTaskRequest implements i.SRCreateTaskRequestInterface {
4
+ taskTitle: string;
5
+ taskDesc: string;
6
+ dueDate: Date;
7
+ static fromProto(proto: any): SRCreateTaskRequest;
8
+ constructor(kwargs?: i.SRCreateTaskRequestInterface);
9
+ toApiJson(): object;
10
+ }
11
+ export declare class SRCreateTaskResponse implements i.SRCreateTaskResponseInterface {
12
+ taskId: string;
13
+ static fromProto(proto: any): SRCreateTaskResponse;
14
+ constructor(kwargs?: i.SRCreateTaskResponseInterface);
15
+ toApiJson(): object;
16
+ }
17
+ export declare class SRDeleteTaskRequest implements i.SRDeleteTaskRequestInterface {
18
+ taskId: string;
19
+ static fromProto(proto: any): SRDeleteTaskRequest;
20
+ constructor(kwargs?: i.SRDeleteTaskRequestInterface);
21
+ toApiJson(): object;
22
+ }
23
+ export declare class SRDeleteTaskResponse implements i.SRDeleteTaskResponseInterface {
24
+ deletedValue: string;
25
+ static fromProto(proto: any): SRDeleteTaskResponse;
26
+ constructor(kwargs?: i.SRDeleteTaskResponseInterface);
27
+ toApiJson(): object;
28
+ }
29
+ export declare class SRListTasksRequest implements i.SRListTasksRequestInterface {
30
+ deleted: boolean;
31
+ completed: boolean;
32
+ static fromProto(proto: any): SRListTasksRequest;
33
+ constructor(kwargs?: i.SRListTasksRequestInterface);
34
+ toApiJson(): object;
35
+ }
36
+ export declare class SRListTasksResponse implements i.SRListTasksResponseInterface {
37
+ taskList: Task[];
38
+ static fromProto(proto: any): SRListTasksResponse;
39
+ constructor(kwargs?: i.SRListTasksResponseInterface);
40
+ toApiJson(): object;
41
+ }
42
+ export declare class SRUpdateTaskRequest implements i.SRUpdateTaskRequestInterface {
43
+ item: Task;
44
+ static fromProto(proto: any): SRUpdateTaskRequest;
45
+ constructor(kwargs?: i.SRUpdateTaskRequestInterface);
46
+ toApiJson(): object;
47
+ }
48
+ export declare class SRUpdateTaskResponse implements i.SRUpdateTaskResponseInterface {
49
+ taskId: string;
50
+ static fromProto(proto: any): SRUpdateTaskResponse;
51
+ constructor(kwargs?: i.SRUpdateTaskResponseInterface);
52
+ toApiJson(): object;
53
+ }
54
+ export declare class Task implements i.TaskInterface {
55
+ taskId: string;
56
+ taskTitle: string;
57
+ taskDesc: string;
58
+ dueDate: Date;
59
+ completed: boolean;
60
+ deleted: boolean;
61
+ createdAt: Date;
62
+ updatedAt: Date;
63
+ deletedAt: Date;
64
+ static fromProto(proto: any): Task;
65
+ constructor(kwargs?: i.TaskInterface);
66
+ toApiJson(): object;
67
+ }
@@ -0,0 +1,16 @@
1
+ import { SRCreateTaskRequest, SRCreateTaskResponse, SRDeleteTaskRequest, SRDeleteTaskResponse, SRListTasksRequest, SRListTasksResponse, SRUpdateTaskRequest, SRUpdateTaskResponse } from './objects/';
2
+ import { SRCreateTaskRequestInterface, SRDeleteTaskRequestInterface, SRListTasksRequestInterface, SRUpdateTaskRequestInterface } from './interfaces/';
3
+ import { Observable } from 'rxjs';
4
+ import * as i0 from "@angular/core";
5
+ export declare class TaskManApiService {
6
+ private readonly hostService;
7
+ private readonly http;
8
+ private _host;
9
+ private apiOptions;
10
+ srCreateTask(r: SRCreateTaskRequest | SRCreateTaskRequestInterface): Observable<SRCreateTaskResponse>;
11
+ srListTasks(r: SRListTasksRequest | SRListTasksRequestInterface): Observable<SRListTasksResponse>;
12
+ srDeleteTask(r: SRDeleteTaskRequest | SRDeleteTaskRequestInterface): Observable<SRDeleteTaskResponse>;
13
+ srUpdateTask(r: SRUpdateTaskRequest | SRUpdateTaskRequestInterface): Observable<SRUpdateTaskResponse>;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<TaskManApiService, never>;
15
+ static ɵprov: i0.ɵɵInjectableDeclaration<TaskManApiService>;
16
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/developer-training",
3
- "version": "0.30.0",
3
+ "version": "0.32.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0",
6
6
  "@angular/core": "^15.1.0"