sales-frontend-bridge 0.0.87 → 0.0.88

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/index.d.cts CHANGED
@@ -394,6 +394,16 @@ interface DudExternalFileUploadHeaders {
394
394
  interface DudExternalFileUploadOptions {
395
395
  /** 업로드할 태블릿 로컬 파일 경로 */
396
396
  filePath: string;
397
+ /** 파일식별자값 */
398
+ fileIdentifierValue: string;
399
+ /** 파일확장내용1 */
400
+ fileExtendContent1?: string;
401
+ /** 파일확장내용2 */
402
+ fileExtendContent2?: string;
403
+ /** 보존기간 */
404
+ preservationTerm?: number;
405
+ /** 파일타입 */
406
+ fileType: 'png' | 'jpg' | 'gif' | 'pdf' | 'json' | 'xml' | 'txt' | 'ozd';
397
407
  /** DUD 호출에 필요한 필수 요청 헤더 */
398
408
  headers: DudExternalFileUploadHeaders;
399
409
  }
package/dist/index.d.ts CHANGED
@@ -394,6 +394,16 @@ interface DudExternalFileUploadHeaders {
394
394
  interface DudExternalFileUploadOptions {
395
395
  /** 업로드할 태블릿 로컬 파일 경로 */
396
396
  filePath: string;
397
+ /** 파일식별자값 */
398
+ fileIdentifierValue: string;
399
+ /** 파일확장내용1 */
400
+ fileExtendContent1?: string;
401
+ /** 파일확장내용2 */
402
+ fileExtendContent2?: string;
403
+ /** 보존기간 */
404
+ preservationTerm?: number;
405
+ /** 파일타입 */
406
+ fileType: 'png' | 'jpg' | 'gif' | 'pdf' | 'json' | 'xml' | 'txt' | 'ozd';
397
407
  /** DUD 호출에 필요한 필수 요청 헤더 */
398
408
  headers: DudExternalFileUploadHeaders;
399
409
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sales-frontend-bridge",
3
- "version": "0.0.87",
3
+ "version": "0.0.88",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",