@tagsamurai/gsts-api-services 2.0.1-alpha.17 → 2.0.1-alpha.19

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tagsamurai/gsts-api-services",
3
- "version": "2.0.1-alpha.17",
3
+ "version": "2.0.1-alpha.19",
4
4
  "author": "developer.tagsamurai",
5
5
  "description": "Global Settings Tag Samurai Services Library",
6
6
  "module": "./api-services.es.js",
@@ -44,7 +44,7 @@ export type TAGEventlogDetailResponse = {
44
44
  };
45
45
  export type GetTAGEventLogOptionsBody = {
46
46
  type: 'Audit TAG' | 'Combine & Separate TAG';
47
- modifiedByOptions: boolean;
48
- actionOptions: boolean;
49
- moduleOptions: boolean;
47
+ modifiedByOptions?: boolean;
48
+ actionOptions?: boolean;
49
+ moduleOptions?: boolean;
50
50
  };
@@ -1,16 +1,16 @@
1
1
  import { AxiosResponse } from 'axios';
2
2
  import { GetAllTAGOptionsQuery, GetAllTAGParams, GetAuditTAGDetailParams, GetNotPairedYetListParams, GetNotPairedYetOptions, SubmitAuditTAGBody, SubmitCombineTAGBody, SubmitSeparateTAGBody } from '../dto/hardware.dto';
3
3
  import { TAGFetchOptionResponse } from '../dto/tag.dto';
4
- import { FetchDetailResponse } from '../types/fetchResponse.type';
4
+ import { FetchListResponse } from '../types/fetchResponse.type';
5
5
  import { TAGType } from '../types/tag.type';
6
6
  import { AuditTAGDetailResponse, NotPairedYetCountsResponse, TAGResponseType } from '../types/hardware.type';
7
7
  declare const GlobalTagServices: {
8
- getAllTAG: (tagType: TAGType, params?: GetAllTAGParams) => Promise<AxiosResponse<FetchDetailResponse<TAGResponseType>>>;
8
+ getAllTAG: (tagType: TAGType, params?: GetAllTAGParams) => Promise<AxiosResponse<FetchListResponse<TAGResponseType>>>;
9
9
  getAllTAGOptions: (tagType: TAGType, params?: GetAllTAGOptionsQuery) => Promise<AxiosResponse<{
10
10
  data: TAGFetchOptionResponse;
11
11
  }>>;
12
12
  getNotPairedYetCounts: () => Promise<AxiosResponse<NotPairedYetCountsResponse>>;
13
- getNotPairedYetList: (params?: GetNotPairedYetListParams) => Promise<AxiosResponse<FetchDetailResponse<TAGResponseType>>>;
13
+ getNotPairedYetList: (params?: GetNotPairedYetListParams) => Promise<AxiosResponse<FetchListResponse<TAGResponseType>>>;
14
14
  getNotPairedYetOptions: (params?: GetNotPairedYetOptions) => Promise<AxiosResponse<{
15
15
  data: TAGFetchOptionResponse;
16
16
  }>>;
@@ -18,7 +18,7 @@ declare const GlobalTagServices: {
18
18
  submitAuditTAG: (body: SubmitAuditTAGBody) => Promise<AxiosResponse>;
19
19
  submitCombineTAG: (body: SubmitCombineTAGBody) => Promise<AxiosResponse>;
20
20
  submitSeparateTAG: (body: SubmitSeparateTAGBody) => Promise<AxiosResponse>;
21
- getPairedList: (params?: GetAllTAGParams) => Promise<AxiosResponse<FetchDetailResponse<TAGResponseType>>>;
21
+ getPairedList: (params?: GetAllTAGParams) => Promise<AxiosResponse<FetchListResponse<TAGResponseType>>>;
22
22
  getPairedOptions: (params?: GetAllTAGParams) => Promise<AxiosResponse<{
23
23
  data: TAGFetchOptionResponse;
24
24
  }>>;