@tagsamurai/gsts-api-services 2.0.1-alpha.14 → 2.0.1-alpha.15

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.14",
3
+ "version": "2.0.1-alpha.15",
4
4
  "author": "developer.tagsamurai",
5
5
  "description": "Global Settings Tag Samurai Services Library",
6
6
  "module": "./api-services.es.js",
@@ -3,13 +3,13 @@ import { GetAllTAGOptionsQuery, GetAllTAGParams, GetAuditTAGDetailParams, GetNot
3
3
  import { TAGFetchOptionResponse } from '../dto/tag.dto';
4
4
  import { FetchDetailResponse } from '../types/fetchResponse.type';
5
5
  import { TAGType } from '../types/tag.type';
6
- import { AuditTAGDetailResponse, NotPairedYetCounts, TAGResponseType } from '../types/hardware.type';
6
+ import { AuditTAGDetailResponse, NotPairedYetCountsResponse, TAGResponseType } from '../types/hardware.type';
7
7
  declare const GlobalTagServices: {
8
8
  getAllTAG: (tagType: TAGType, params?: GetAllTAGParams) => Promise<AxiosResponse<FetchDetailResponse<TAGResponseType>>>;
9
9
  getAllTAGOptions: (tagType: TAGType, params?: GetAllTAGOptionsQuery) => Promise<AxiosResponse<{
10
10
  data: TAGFetchOptionResponse;
11
11
  }>>;
12
- getNotPairedYetCounts: () => Promise<AxiosResponse<NotPairedYetCounts>>;
12
+ getNotPairedYetCounts: () => Promise<AxiosResponse<NotPairedYetCountsResponse>>;
13
13
  getNotPairedYetList: (params?: GetNotPairedYetListParams) => Promise<AxiosResponse<FetchDetailResponse<TAGResponseType>>>;
14
14
  getNotPairedYetOptions: (params?: GetNotPairedYetOptions) => Promise<AxiosResponse<{
15
15
  data: TAGFetchOptionResponse;
@@ -113,6 +113,9 @@ export type NotPairedModule = 'RFID' | 'NFC';
113
113
  export type AuditTAGDetailResponse = FetchResponse & {
114
114
  data: AuditTAGDetail;
115
115
  };
116
+ export type NotPairedYetCountsResponse = FetchResponse & {
117
+ data: NotPairedYetCounts;
118
+ };
116
119
  export type AuditTAGDetail = {
117
120
  found: {
118
121
  total: number;