sdk-sapi-promarketing 0.0.13 → 0.0.14
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.mts +14 -0
- package/dist/index.d.ts +14 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -711,6 +711,14 @@ interface ValidateDocumentBySkinResponseType {
|
|
|
711
711
|
is_verified: boolean;
|
|
712
712
|
/** The user missing parameter. */
|
|
713
713
|
missing_parameter: boolean;
|
|
714
|
+
/** Affiliate code entered during registration. */
|
|
715
|
+
affiliate_id?: string;
|
|
716
|
+
/** Tracking id from marketing URL. */
|
|
717
|
+
tracking_id?: string;
|
|
718
|
+
/** Promo code from marketing URL. */
|
|
719
|
+
promo_code?: string;
|
|
720
|
+
/** Affiliate id from marketing URL. */
|
|
721
|
+
affid?: string;
|
|
714
722
|
}
|
|
715
723
|
interface DocumentIpBlockType {
|
|
716
724
|
title: string;
|
|
@@ -977,6 +985,12 @@ interface CreatePlayerDataType {
|
|
|
977
985
|
player_preregister_id: number;
|
|
978
986
|
/** The affiliate id. */
|
|
979
987
|
affiliate_id: string | null;
|
|
988
|
+
/** Tracking id from marketing URL. */
|
|
989
|
+
tracking_id?: string | null;
|
|
990
|
+
/** Promo code from marketing URL. */
|
|
991
|
+
promo_code?: string | null;
|
|
992
|
+
/** Affiliate id from marketing URL. */
|
|
993
|
+
affid?: string | null;
|
|
980
994
|
}
|
|
981
995
|
interface CreatePlayerPhoneDataType {
|
|
982
996
|
/** The player id. */
|
package/dist/index.d.ts
CHANGED
|
@@ -711,6 +711,14 @@ interface ValidateDocumentBySkinResponseType {
|
|
|
711
711
|
is_verified: boolean;
|
|
712
712
|
/** The user missing parameter. */
|
|
713
713
|
missing_parameter: boolean;
|
|
714
|
+
/** Affiliate code entered during registration. */
|
|
715
|
+
affiliate_id?: string;
|
|
716
|
+
/** Tracking id from marketing URL. */
|
|
717
|
+
tracking_id?: string;
|
|
718
|
+
/** Promo code from marketing URL. */
|
|
719
|
+
promo_code?: string;
|
|
720
|
+
/** Affiliate id from marketing URL. */
|
|
721
|
+
affid?: string;
|
|
714
722
|
}
|
|
715
723
|
interface DocumentIpBlockType {
|
|
716
724
|
title: string;
|
|
@@ -977,6 +985,12 @@ interface CreatePlayerDataType {
|
|
|
977
985
|
player_preregister_id: number;
|
|
978
986
|
/** The affiliate id. */
|
|
979
987
|
affiliate_id: string | null;
|
|
988
|
+
/** Tracking id from marketing URL. */
|
|
989
|
+
tracking_id?: string | null;
|
|
990
|
+
/** Promo code from marketing URL. */
|
|
991
|
+
promo_code?: string | null;
|
|
992
|
+
/** Affiliate id from marketing URL. */
|
|
993
|
+
affid?: string | null;
|
|
980
994
|
}
|
|
981
995
|
interface CreatePlayerPhoneDataType {
|
|
982
996
|
/** The player id. */
|