@tagsamurai/fats-api-services 1.0.3-alpha.31 → 1.0.3-alpha.32

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.
@@ -98,7 +98,7 @@ const ChangelogServices = {
98
98
  getChangelogList: (params) => {
99
99
  return API$I.get("/change-log", { params });
100
100
  },
101
- getChangelogListOptions: () => {
101
+ getChangelogListOptions: (params) => {
102
102
  return API$I.get("/change-log/options");
103
103
  },
104
104
  getSessionLogList: (params) => {
@@ -105,7 +105,7 @@ System.register(["axios"], function(exports, module) {
105
105
  getChangelogList: (params) => {
106
106
  return API$I.get("/change-log", { params });
107
107
  },
108
- getChangelogListOptions: () => {
108
+ getChangelogListOptions: (params) => {
109
109
  return API$I.get("/change-log/options");
110
110
  },
111
111
  getSessionLogList: (params) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tagsamurai/fats-api-services",
3
- "version": "1.0.3-alpha.31",
3
+ "version": "1.0.3-alpha.32",
4
4
  "author": "developer.tagsamurai",
5
5
  "description": "Fixed Asset Tag Samurai Services Library",
6
6
  "module": "./api-services.es.js",
@@ -1,6 +1,6 @@
1
1
  import { AxiosResponse } from 'axios';
2
2
  import { FetchDetailResponse, FetchListResponse, FetchOptionResponse } from '../types/fetchResponse.type';
3
- import { GetChangeLogListQueryParams, GetSessionLogListResponse, GetUserSystemLogListResponse, GetUserSystemLogOptionsResponse, SessionLogFetchParams, SessionOptionsQueryParams, SystemLogFetchParams, SystemLogLoadingFilters } from '../dto/log.dto';
3
+ import { ChangeLogOptionParams, GetChangeLogListQueryParams, GetSessionLogListResponse, GetUserSystemLogListResponse, GetUserSystemLogOptionsResponse, SessionLogFetchParams, SessionOptionsQueryParams, SystemLogFetchParams, SystemLogLoadingFilters } from '../dto/log.dto';
4
4
  import { ChangelogList, ChangelogListOptions } from '../types/log.type';
5
5
  import { GetUserLogAssignmentOptionsResponse, GetUserLogBorrowingOptionsResponse, UserLogAssignmentFetchParams, UserLogAssignmentLoadingFilters, UserLogBorrowingFetchParams, UserLogBorrowingLoadingFilters } from '../dto/user.dto';
6
6
  import { UserLogAssignment, UserLogBorrowing } from '../types/userLog.type';
@@ -10,7 +10,7 @@ import { TransactionDataType } from '../types/assetDetail.type';
10
10
  import { FetchOptionFn } from '@fewangsit/wangsvue-fats/components/filtercontainer/FilterContainer.vue';
11
11
  declare const ChangelogServices: {
12
12
  getChangelogList: (params?: GetChangeLogListQueryParams) => Promise<AxiosResponse<FetchListResponse<ChangelogList>>>;
13
- getChangelogListOptions: () => Promise<AxiosResponse<FetchDetailResponse<ChangelogListOptions>>>;
13
+ getChangelogListOptions: (params?: ChangeLogOptionParams) => Promise<AxiosResponse<FetchDetailResponse<ChangelogListOptions>>>;
14
14
  getSessionLogList: (params: SessionLogFetchParams) => Promise<AxiosResponse<GetSessionLogListResponse>>;
15
15
  getSessionLogListOptions: <T = SessionOptionsQueryParams>(params: T) => FetchOptionFn<T>;
16
16
  getTransactionLog: (params?: TransactionLogFilterParams) => Promise<AxiosResponse<FetchListResponse<TransactionDataType>>>;