sales-frontend-api 0.0.71 → 0.0.72

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/dist/method.d.cts CHANGED
@@ -3,6 +3,7 @@ import { AxiosRequestConfig, AxiosError } from 'axios';
3
3
  import { H as HttpClientAxios } from './http-client-axios-Cz6Oo35g.cjs';
4
4
  import * as _tanstack_react_query from '@tanstack/react-query';
5
5
  import { UseQueryOptions, UseSuspenseQueryOptions, UseMutationOptions } from '@tanstack/react-query';
6
+ import { InputHTMLAttributes, HTMLAttributes } from 'react';
6
7
  import { D as DspResponse, A as ApiConfig } from './shared.dto-YcQ7DpIa.cjs';
7
8
  import './header.types-duHbFvO0.cjs';
8
9
 
@@ -694,8 +695,9 @@ interface CustomerDto {
694
695
  /** @description 성별코드 */
695
696
  genderCode?: string;
696
697
  }
697
- interface CustomerSearchProps {
698
- onSelect?: (customer: CustomerDto) => void;
698
+ interface CustomerSearchProps extends InputHTMLAttributes<HTMLInputElement> {
699
+ onSelectCustomer?: (customer: CustomerDto) => void;
700
+ rootProps?: HTMLAttributes<HTMLDivElement>;
699
701
  }
700
702
  interface CustomerListRequestDto {
701
703
  /** @description 고객명 */
package/dist/method.d.ts CHANGED
@@ -3,6 +3,7 @@ import { AxiosRequestConfig, AxiosError } from 'axios';
3
3
  import { H as HttpClientAxios } from './http-client-axios-D4Ub9Xlb.js';
4
4
  import * as _tanstack_react_query from '@tanstack/react-query';
5
5
  import { UseQueryOptions, UseSuspenseQueryOptions, UseMutationOptions } from '@tanstack/react-query';
6
+ import { InputHTMLAttributes, HTMLAttributes } from 'react';
6
7
  import { D as DspResponse, A as ApiConfig } from './shared.dto-YcQ7DpIa.js';
7
8
  import './header.types-duHbFvO0.js';
8
9
 
@@ -694,8 +695,9 @@ interface CustomerDto {
694
695
  /** @description 성별코드 */
695
696
  genderCode?: string;
696
697
  }
697
- interface CustomerSearchProps {
698
- onSelect?: (customer: CustomerDto) => void;
698
+ interface CustomerSearchProps extends InputHTMLAttributes<HTMLInputElement> {
699
+ onSelectCustomer?: (customer: CustomerDto) => void;
700
+ rootProps?: HTMLAttributes<HTMLDivElement>;
699
701
  }
700
702
  interface CustomerListRequestDto {
701
703
  /** @description 고객명 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sales-frontend-api",
3
- "version": "0.0.71",
3
+ "version": "0.0.72",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",
@@ -58,8 +58,8 @@
58
58
  "tsup": "^8.4.0",
59
59
  "typescript": "5.8.2",
60
60
  "eslint-config-sales-frontend-eslint-config-v8": "^0.0.6",
61
- "sales-frontend-design-system": "0.0.74",
62
61
  "sales-frontend-bridge": "0.0.50",
62
+ "sales-frontend-design-system": "0.0.74",
63
63
  "sales-frontend-stores": "0.0.5",
64
64
  "sales-frontend-typescript-config": "0.0.2",
65
65
  "sales-frontend-utils": "0.0.16"
@@ -72,8 +72,8 @@
72
72
  "sales-frontend-debug": "0.0.13"
73
73
  },
74
74
  "peerDependencies": {
75
- "sales-frontend-design-system": "0.0.74",
76
75
  "sales-frontend-bridge": "0.0.50",
76
+ "sales-frontend-design-system": "0.0.74",
77
77
  "sales-frontend-stores": "0.0.5"
78
78
  },
79
79
  "scripts": {