@adstage/web-sdk 3.0.2 → 3.0.4

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.ts CHANGED
@@ -451,6 +451,40 @@ declare class EventsModule implements BaseModule {
451
451
  * 현재 사용자 속성 반환
452
452
  */
453
453
  getUserProperties(): any;
454
+ /**
455
+ * 디바이스 정보 설정
456
+ */
457
+ setDeviceInfo(deviceInfo: Partial<{
458
+ category: 'mobile' | 'desktop' | 'tablet' | 'other';
459
+ platform: string;
460
+ model: string;
461
+ appVersion: string;
462
+ osVersion: string;
463
+ }>): void;
464
+ /**
465
+ * 개별 디바이스 속성 설정
466
+ */
467
+ setDeviceProperty(key: 'category' | 'platform' | 'model' | 'appVersion' | 'osVersion', value: string): void;
468
+ /**
469
+ * 사용자 제공 디바이스 정보 초기화
470
+ */
471
+ clearDeviceInfo(): void;
472
+ /**
473
+ * 현재 사용자가 설정한 디바이스 정보 반환
474
+ */
475
+ getUserDeviceInfo(): any;
476
+ /**
477
+ * 현재 디바이스 정보 반환
478
+ */
479
+ getDeviceInfo(): any;
480
+ /**
481
+ * 현재 사용자 정보 반환
482
+ */
483
+ getUserInfo(): any;
484
+ /**
485
+ * 현재 사용자 속성 반환 (별칭)
486
+ */
487
+ getCurrentUserProperties(): any;
454
488
  /**
455
489
  * 이벤트 추적
456
490
  * @param eventName 이벤트 이름