@adstage/web-sdk 3.0.4 → 3.0.6
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.cjs.js +1 -1
- package/dist/index.d.ts +0 -2
- package/dist/index.esm.js +1 -1
- package/dist/index.standalone.js +2 -2
- package/dist/index.umd.js +2 -2
- package/package.json +1 -1
- package/src/constants/endpoints.ts +1 -1
- package/src/managers/device-info-collector.ts +1 -1
- package/src/types/config.ts +1 -2
- package/src/utils/config-utils.ts +1 -7
package/package.json
CHANGED
|
@@ -99,7 +99,7 @@ export class DeviceInfoCollector {
|
|
|
99
99
|
sessionId: DeviceInfoCollector.generateSessionId(),
|
|
100
100
|
osVersion: DOMUtils.isBrowser() ? navigator.platform : 'SSR',
|
|
101
101
|
deviceModel: DOMUtils.isBrowser() ? navigator.platform : 'SSR',
|
|
102
|
-
appVersion:
|
|
102
|
+
appVersion: '1.0.0', // 기본값 (사용자가 별도 설정 필요)
|
|
103
103
|
sdkVersion: getSDKVersion(), // package.json에서 동적 로드
|
|
104
104
|
language: DOMUtils.isBrowser() ? (navigator.language || 'ko') : 'ko',
|
|
105
105
|
country: 'KR', // 기본값
|
package/src/types/config.ts
CHANGED