@tolinax/ayoune-interfaces 2026.2.13 → 2026.2.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/api/IResponseLocals.d.ts
CHANGED
|
@@ -46,6 +46,8 @@ export interface IResponseIdentity {
|
|
|
46
46
|
apiId?: string;
|
|
47
47
|
patId?: string;
|
|
48
48
|
debugId?: string;
|
|
49
|
+
scanId?: string;
|
|
50
|
+
reqId?: string;
|
|
49
51
|
}
|
|
50
52
|
export interface IResponseAuth {
|
|
51
53
|
user?: IaYOUneUser | IConsumer;
|
|
@@ -81,7 +83,8 @@ export interface IResponseClient {
|
|
|
81
83
|
ip?: string;
|
|
82
84
|
location?: IResponseLocationInfo;
|
|
83
85
|
device?: IResponseDevice;
|
|
84
|
-
|
|
86
|
+
deviceType?: string;
|
|
87
|
+
lang?: string;
|
|
85
88
|
inbound?: IResponseInboundTraffic;
|
|
86
89
|
}
|
|
87
90
|
export interface IResponseMeta {
|
|
@@ -113,5 +116,6 @@ export interface IResponseLocals extends IResponseIdentity, IResponseAuth, IResp
|
|
|
113
116
|
rateLimit?: IResponseRateLimit;
|
|
114
117
|
isBotPreview?: boolean;
|
|
115
118
|
previewBot?: string;
|
|
119
|
+
ua?: string;
|
|
116
120
|
[key: string]: any;
|
|
117
121
|
}
|
|
@@ -12,7 +12,7 @@ export interface IGratifyLoopView extends IaYOUneTrackingParams, IGeoIPLocationT
|
|
|
12
12
|
reqId?: string;
|
|
13
13
|
glPayload?: any;
|
|
14
14
|
glSig?: string;
|
|
15
|
-
|
|
15
|
+
fingerprintView?: string;
|
|
16
16
|
fingerprint?: string;
|
|
17
|
-
|
|
17
|
+
fingerprintRaw?: any;
|
|
18
18
|
}
|