sales-frontend-bridge 0.1.0 → 0.1.1
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 +6 -0
- package/dist/index.d.ts +6 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -191,6 +191,7 @@ interface GetAppInfoResponse {
|
|
|
191
191
|
* - Android: `uris` 배열(scheme URL)을 한 번에 반환합니다.
|
|
192
192
|
* - iOS: `sessionId` 를 반환하고 웹이 `documentCaptureNext` 를 `count` 회 호출합니다.
|
|
193
193
|
* - 사용자가 취소하면 Android 는 빈 응답, iOS 는 `count: 0` 을 반환합니다.
|
|
194
|
+
* - 구버전 앱: 멀티페이지 프로토콜 미지원 시 단일 `uri` 만 반환합니다. (하위호환)
|
|
194
195
|
*/
|
|
195
196
|
interface DocumentCaptureResponse {
|
|
196
197
|
/** Android 전용. 촬영된 이미지의 scheme URL 배열입니다. */
|
|
@@ -199,6 +200,11 @@ interface DocumentCaptureResponse {
|
|
|
199
200
|
sessionId?: string;
|
|
200
201
|
/** 촬영된 장수입니다. 취소 시 0 입니다. */
|
|
201
202
|
count?: number;
|
|
203
|
+
/**
|
|
204
|
+
* @deprecated 구버전 앱 하위호환 전용. 단일 촬영 scheme URL 입니다.
|
|
205
|
+
* 신규 앱은 `uris`/`sessionId` 를 사용합니다.
|
|
206
|
+
*/
|
|
207
|
+
uri?: string;
|
|
202
208
|
}
|
|
203
209
|
/**
|
|
204
210
|
* iOS 세션 pull 시 한 페이지의 base64 결과 응답입니다.
|
package/dist/index.d.ts
CHANGED
|
@@ -191,6 +191,7 @@ interface GetAppInfoResponse {
|
|
|
191
191
|
* - Android: `uris` 배열(scheme URL)을 한 번에 반환합니다.
|
|
192
192
|
* - iOS: `sessionId` 를 반환하고 웹이 `documentCaptureNext` 를 `count` 회 호출합니다.
|
|
193
193
|
* - 사용자가 취소하면 Android 는 빈 응답, iOS 는 `count: 0` 을 반환합니다.
|
|
194
|
+
* - 구버전 앱: 멀티페이지 프로토콜 미지원 시 단일 `uri` 만 반환합니다. (하위호환)
|
|
194
195
|
*/
|
|
195
196
|
interface DocumentCaptureResponse {
|
|
196
197
|
/** Android 전용. 촬영된 이미지의 scheme URL 배열입니다. */
|
|
@@ -199,6 +200,11 @@ interface DocumentCaptureResponse {
|
|
|
199
200
|
sessionId?: string;
|
|
200
201
|
/** 촬영된 장수입니다. 취소 시 0 입니다. */
|
|
201
202
|
count?: number;
|
|
203
|
+
/**
|
|
204
|
+
* @deprecated 구버전 앱 하위호환 전용. 단일 촬영 scheme URL 입니다.
|
|
205
|
+
* 신규 앱은 `uris`/`sessionId` 를 사용합니다.
|
|
206
|
+
*/
|
|
207
|
+
uri?: string;
|
|
202
208
|
}
|
|
203
209
|
/**
|
|
204
210
|
* iOS 세션 pull 시 한 페이지의 base64 결과 응답입니다.
|