@adstage/web-sdk 3.0.13 → 3.0.15
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 +7 -1
- 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/core/adstage.ts +5 -2
- package/src/modules/tracking/tracking-params.ts +39 -11
- package/src/utils/api-headers.ts +13 -22
package/dist/index.d.ts
CHANGED
|
@@ -671,6 +671,12 @@ interface TrackingParams {
|
|
|
671
671
|
ad_creative?: string;
|
|
672
672
|
creative_id?: string;
|
|
673
673
|
term?: string;
|
|
674
|
+
k_campaign?: string;
|
|
675
|
+
k_adgroup?: string;
|
|
676
|
+
k_keyword?: string;
|
|
677
|
+
k_keyword_id?: string;
|
|
678
|
+
k_creative?: string;
|
|
679
|
+
k_rank?: string;
|
|
674
680
|
utm_source?: string;
|
|
675
681
|
utm_medium?: string;
|
|
676
682
|
utm_campaign?: string;
|
|
@@ -722,7 +728,7 @@ declare class TrackingParamsModule {
|
|
|
722
728
|
static hasClickId(): boolean;
|
|
723
729
|
/**
|
|
724
730
|
* Click 이벤트 자동 전송 여부 확인
|
|
725
|
-
* 새로운 클릭 ID
|
|
731
|
+
* 새로운 클릭 ID 또는 channel 파라미터가 발견되면 true 반환
|
|
726
732
|
*/
|
|
727
733
|
static shouldSendClickEvent(): boolean;
|
|
728
734
|
/**
|