@fanfare-io/fanfare-sdk-contracts 0.1.0
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/LICENSE +202 -0
- package/README.md +22 -0
- package/dist/auction.d.ts +25 -0
- package/dist/auction.js +20 -0
- package/dist/beacon-names.d.ts +25 -0
- package/dist/beacon-names.js +46 -0
- package/dist/beacon.d.ts +2468 -0
- package/dist/beacon.js +269 -0
- package/dist/challenges.d.ts +36 -0
- package/dist/challenges.js +37 -0
- package/dist/consumer-me.d.ts +28988 -0
- package/dist/consumer-me.js +320 -0
- package/dist/errors.d.ts +147 -0
- package/dist/errors.js +133 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +62 -0
- package/dist/routing.d.ts +1202 -0
- package/dist/routing.js +141 -0
- package/dist/theme.d.ts +25 -0
- package/dist/theme.js +43 -0
- package/package.json +107 -0
package/dist/beacon.d.ts
ADDED
|
@@ -0,0 +1,2468 @@
|
|
|
1
|
+
import { InferOutput } from 'valibot';
|
|
2
|
+
import { BeaconEventName as BeaconEventNameValue, BeaconEventNames, RFM_SEGMENT_KEYS } from './beacon-names';
|
|
3
|
+
import * as v from "valibot";
|
|
4
|
+
export declare const BeaconEventName: {
|
|
5
|
+
readonly PAGE_VIEW: "pageView";
|
|
6
|
+
readonly PRODUCT_IMPRESSION: "productImpression";
|
|
7
|
+
readonly PRODUCT_CLICK: "productClick";
|
|
8
|
+
readonly PRODUCT_VIEW: "productView";
|
|
9
|
+
readonly SEARCH_SUBMITTED: "searchSubmitted";
|
|
10
|
+
readonly ADD_TO_CART: "addToCart";
|
|
11
|
+
readonly REMOVE_FROM_CART: "removeFromCart";
|
|
12
|
+
readonly VIEW_CART: "viewCart";
|
|
13
|
+
readonly BEGIN_CHECKOUT: "beginCheckout";
|
|
14
|
+
readonly PURCHASE: "purchase";
|
|
15
|
+
readonly QR_SCANNED: "qrScanned";
|
|
16
|
+
readonly MESSAGE_CLICKED: "messageClicked";
|
|
17
|
+
readonly MESSAGE_OPENED: "messageOpened";
|
|
18
|
+
readonly MESSAGE_READ: "messageRead";
|
|
19
|
+
readonly MESSAGE_SENT: "messageSent";
|
|
20
|
+
readonly MESSAGE_DELIVERED: "messageDelivered";
|
|
21
|
+
readonly MESSAGE_BOUNCED: "messageBounced";
|
|
22
|
+
readonly MESSAGE_COMPLAINED: "messageComplained";
|
|
23
|
+
readonly MESSAGE_FAILED: "messageFailed";
|
|
24
|
+
};
|
|
25
|
+
export type { RfmSegmentKey } from './beacon-names';
|
|
26
|
+
export { BeaconEventNames, RFM_SEGMENT_KEYS };
|
|
27
|
+
export type BeaconEventName = BeaconEventNameValue;
|
|
28
|
+
export type BeaconEventNameType = BeaconEventNameValue;
|
|
29
|
+
export declare const BEACON_EVENT_PROPERTIES_MAX_ENTRIES = 50;
|
|
30
|
+
export declare const BEACON_EVENT_PROPERTY_KEY_MAX_LENGTH = 64;
|
|
31
|
+
export declare const BEACON_EVENT_PROPERTY_STRING_MAX_LENGTH = 2048;
|
|
32
|
+
export declare const BEACON_EVENT_SHORT_STRING_MAX_LENGTH = 256;
|
|
33
|
+
export declare const BEACON_EVENT_PURCHASE_PRODUCTS_MAX_ITEMS = 50;
|
|
34
|
+
export declare const MONETARY_AMOUNT_REGEX: RegExp;
|
|
35
|
+
export declare const RfmSegmentKeySchema: v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>;
|
|
36
|
+
export declare const BeaconEventLongStringSchema: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>;
|
|
37
|
+
export declare const BeaconEventShortStringSchema: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
38
|
+
export declare const BeaconEventMoneyStringSchema: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "validation.number">, v.MaxLengthAction<string, 256, "validation.beacon.money.maxLength">]>;
|
|
39
|
+
export declare const BeaconEventTimestampStringSchema: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
40
|
+
export declare const BeaconEventNanosecondsStringSchema: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>;
|
|
41
|
+
export declare const BeaconEventNumberSchema: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>;
|
|
42
|
+
export declare const BeaconEventPropertiesSchema: v.SchemaWithPipe<readonly [v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 64, "validation.beacon.propertyKey.maxLength">]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, v.BooleanSchema<undefined>, v.NullSchema<undefined>], undefined>, undefined>, v.MaxEntriesAction<{
|
|
43
|
+
[x: string]: string | number | boolean | null;
|
|
44
|
+
}, 50, "validation.beacon.eventProperties.maxEntries">]>;
|
|
45
|
+
export declare const BeaconEventEnrichmentPropertiesSchemaEntries: {
|
|
46
|
+
postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
47
|
+
timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
48
|
+
botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
49
|
+
geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
50
|
+
geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
51
|
+
};
|
|
52
|
+
export declare const BeaconEventCoreSchema: v.ObjectSchema<{
|
|
53
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
54
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
55
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
56
|
+
readonly eventName: v.PicklistSchema<readonly ["pageView", "productImpression", "productClick", "productView", "searchSubmitted", "addToCart", "removeFromCart", "viewCart", "beginCheckout", "purchase", "qrScanned", "messageClicked", "messageOpened", "messageRead", "messageSent", "messageDelivered", "messageBounced", "messageComplained", "messageFailed"], undefined>;
|
|
57
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
58
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
59
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
60
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
61
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
62
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
63
|
+
}, undefined>, undefined>;
|
|
64
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
65
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
66
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
67
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
68
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
69
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
70
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
71
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
72
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
73
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
74
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
75
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
76
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
77
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
78
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
79
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
80
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
81
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
82
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
83
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
84
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
85
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
86
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
87
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
88
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
89
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
90
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
91
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
92
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
93
|
+
readonly eventProperties: v.OptionalSchema<v.SchemaWithPipe<readonly [v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 64, "validation.beacon.propertyKey.maxLength">]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, v.BooleanSchema<undefined>, v.NullSchema<undefined>], undefined>, undefined>, v.MaxEntriesAction<{
|
|
94
|
+
[x: string]: string | number | boolean | null;
|
|
95
|
+
}, 50, "validation.beacon.eventProperties.maxEntries">]>, undefined>;
|
|
96
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
97
|
+
}, undefined>;
|
|
98
|
+
export type BeaconEventCore = InferOutput<typeof BeaconEventCoreSchema>;
|
|
99
|
+
export declare const PageViewPropertiesSchema: v.StrictObjectSchema<{
|
|
100
|
+
readonly pageType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
101
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
102
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
103
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
104
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
105
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
106
|
+
}, undefined>;
|
|
107
|
+
export declare const ProductImpressionPropertiesSchema: v.StrictObjectSchema<{
|
|
108
|
+
readonly productId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
109
|
+
readonly listName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
110
|
+
readonly position: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
111
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
112
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
113
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
114
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
115
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
116
|
+
}, undefined>;
|
|
117
|
+
export declare const ProductClickPropertiesSchema: v.StrictObjectSchema<{
|
|
118
|
+
readonly productId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
119
|
+
readonly listName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
120
|
+
readonly position: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
121
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
122
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
123
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
124
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
125
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
126
|
+
}, undefined>;
|
|
127
|
+
export declare const ProductViewPropertiesSchema: v.StrictObjectSchema<{
|
|
128
|
+
readonly productId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
129
|
+
readonly sku: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
130
|
+
readonly productName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
131
|
+
readonly category: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
132
|
+
readonly brand: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
133
|
+
readonly variant: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
134
|
+
readonly price: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "validation.number">, v.MaxLengthAction<string, 256, "validation.beacon.money.maxLength">]>, undefined>;
|
|
135
|
+
readonly currency: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
136
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
137
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
138
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
139
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
140
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
141
|
+
}, undefined>;
|
|
142
|
+
export declare const AddToCartPropertiesSchema: v.StrictObjectSchema<{
|
|
143
|
+
readonly cartId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
144
|
+
readonly productId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
145
|
+
readonly sku: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
146
|
+
readonly productName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
147
|
+
readonly category: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
148
|
+
readonly variant: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
149
|
+
readonly price: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "validation.number">, v.MaxLengthAction<string, 256, "validation.beacon.money.maxLength">]>, undefined>;
|
|
150
|
+
readonly quantity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
151
|
+
readonly currency: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
152
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
153
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
154
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
155
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
156
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
157
|
+
}, undefined>;
|
|
158
|
+
export declare const RemoveFromCartPropertiesSchema: v.StrictObjectSchema<{
|
|
159
|
+
readonly cartId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
160
|
+
readonly productId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
161
|
+
readonly sku: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
162
|
+
readonly productName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
163
|
+
readonly category: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
164
|
+
readonly variant: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
165
|
+
readonly price: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "validation.number">, v.MaxLengthAction<string, 256, "validation.beacon.money.maxLength">]>, undefined>;
|
|
166
|
+
readonly quantity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
167
|
+
readonly currency: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
168
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
169
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
170
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
171
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
172
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
173
|
+
}, undefined>;
|
|
174
|
+
export declare const ViewCartPropertiesSchema: v.StrictObjectSchema<{
|
|
175
|
+
readonly cartId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
176
|
+
readonly cartTotal: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "validation.number">, v.MaxLengthAction<string, 256, "validation.beacon.money.maxLength">]>, undefined>;
|
|
177
|
+
readonly itemCount: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
178
|
+
readonly currency: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
179
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
180
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
181
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
182
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
183
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
184
|
+
}, undefined>;
|
|
185
|
+
export declare const BeginCheckoutPropertiesSchema: v.StrictObjectSchema<{
|
|
186
|
+
readonly cartId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
187
|
+
readonly cartTotal: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "validation.number">, v.MaxLengthAction<string, 256, "validation.beacon.money.maxLength">]>, undefined>;
|
|
188
|
+
readonly itemCount: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
189
|
+
readonly currency: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
190
|
+
readonly couponCodeApplied: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
191
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
192
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
193
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
194
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
195
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
196
|
+
}, undefined>;
|
|
197
|
+
export declare const PurchaseProductSchema: v.StrictObjectSchema<{
|
|
198
|
+
readonly productId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
199
|
+
readonly sku: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
200
|
+
readonly productName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
201
|
+
readonly category: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
202
|
+
readonly variant: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
203
|
+
readonly price: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "validation.number">, v.MaxLengthAction<string, 256, "validation.beacon.money.maxLength">]>, undefined>;
|
|
204
|
+
readonly quantity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
205
|
+
}, undefined>;
|
|
206
|
+
export declare const PurchasePropertiesSchema: v.StrictObjectSchema<{
|
|
207
|
+
readonly orderId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
208
|
+
readonly transactionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
209
|
+
readonly totalRevenue: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "validation.number">, v.MaxLengthAction<string, 256, "validation.beacon.money.maxLength">]>, undefined>;
|
|
210
|
+
readonly subtotal: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "validation.number">, v.MaxLengthAction<string, 256, "validation.beacon.money.maxLength">]>, undefined>;
|
|
211
|
+
readonly tax: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "validation.number">, v.MaxLengthAction<string, 256, "validation.beacon.money.maxLength">]>, undefined>;
|
|
212
|
+
readonly shippingCost: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "validation.number">, v.MaxLengthAction<string, 256, "validation.beacon.money.maxLength">]>, undefined>;
|
|
213
|
+
readonly currency: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
214
|
+
readonly couponCodeUsed: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
215
|
+
readonly discountAmount: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "validation.number">, v.MaxLengthAction<string, 256, "validation.beacon.money.maxLength">]>, undefined>;
|
|
216
|
+
readonly products: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.StrictObjectSchema<{
|
|
217
|
+
readonly productId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
218
|
+
readonly sku: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
219
|
+
readonly productName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
220
|
+
readonly category: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
221
|
+
readonly variant: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
222
|
+
readonly price: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "validation.number">, v.MaxLengthAction<string, 256, "validation.beacon.money.maxLength">]>, undefined>;
|
|
223
|
+
readonly quantity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
224
|
+
}, undefined>, undefined>, v.MaxLengthAction<{
|
|
225
|
+
productId?: string | undefined;
|
|
226
|
+
sku?: string | undefined;
|
|
227
|
+
productName?: string | undefined;
|
|
228
|
+
category?: string | undefined;
|
|
229
|
+
variant?: string | undefined;
|
|
230
|
+
price?: string | undefined;
|
|
231
|
+
quantity?: number | undefined;
|
|
232
|
+
}[], 50, "validation.beacon.purchaseProducts.maxLength">]>, undefined>;
|
|
233
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
234
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
235
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
236
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
237
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
238
|
+
}, undefined>;
|
|
239
|
+
export declare const SearchSubmittedPropertiesSchema: v.StrictObjectSchema<{
|
|
240
|
+
readonly searchQuery: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
241
|
+
readonly resultsCount: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
242
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
243
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
244
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
245
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
246
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
247
|
+
}, undefined>;
|
|
248
|
+
export declare const QRScannedPropertiesSchema: v.StrictObjectSchema<{
|
|
249
|
+
readonly experienceId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
250
|
+
readonly sequenceId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
251
|
+
readonly locationId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
252
|
+
readonly qrPayload: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
253
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
254
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
255
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
256
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
257
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
258
|
+
}, undefined>;
|
|
259
|
+
export declare const MessageChannelSchema: v.PicklistSchema<["email", "sms"], undefined>;
|
|
260
|
+
export type MessageChannel = InferOutput<typeof MessageChannelSchema>;
|
|
261
|
+
export declare const MessageEventPropertiesSchema: v.StrictObjectSchema<{
|
|
262
|
+
readonly channel: v.OptionalSchema<v.PicklistSchema<["email", "sms"], undefined>, undefined>;
|
|
263
|
+
readonly messageId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
264
|
+
readonly template: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
265
|
+
readonly priority: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
266
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
267
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
268
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
269
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
270
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
271
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
272
|
+
}, undefined>;
|
|
273
|
+
export declare const MessageBouncedPropertiesSchema: v.StrictObjectSchema<{
|
|
274
|
+
readonly bounceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
275
|
+
readonly channel: v.OptionalSchema<v.PicklistSchema<["email", "sms"], undefined>, undefined>;
|
|
276
|
+
readonly messageId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
277
|
+
readonly template: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
278
|
+
readonly priority: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
279
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
280
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
281
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
282
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
283
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
284
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
285
|
+
}, undefined>;
|
|
286
|
+
export declare const MessageComplainedPropertiesSchema: v.StrictObjectSchema<{
|
|
287
|
+
readonly complaintType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
288
|
+
readonly channel: v.OptionalSchema<v.PicklistSchema<["email", "sms"], undefined>, undefined>;
|
|
289
|
+
readonly messageId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
290
|
+
readonly template: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
291
|
+
readonly priority: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
292
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
293
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
294
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
295
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
296
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
297
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
298
|
+
}, undefined>;
|
|
299
|
+
export declare const MessageFailedPropertiesSchema: v.StrictObjectSchema<{
|
|
300
|
+
readonly retryCount: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
301
|
+
readonly channel: v.OptionalSchema<v.PicklistSchema<["email", "sms"], undefined>, undefined>;
|
|
302
|
+
readonly messageId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
303
|
+
readonly template: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
304
|
+
readonly priority: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
305
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
306
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
307
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
308
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
309
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
310
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
311
|
+
}, undefined>;
|
|
312
|
+
export declare const PageViewEventSchema: v.ObjectSchema<{
|
|
313
|
+
readonly eventName: v.LiteralSchema<"pageView", undefined>;
|
|
314
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
315
|
+
readonly pageType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
316
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
317
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
318
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
319
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
320
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
321
|
+
}, undefined>, undefined>;
|
|
322
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
323
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
324
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
325
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
326
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
327
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
328
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
329
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
330
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
331
|
+
}, undefined>, undefined>;
|
|
332
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
333
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
334
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
335
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
336
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
337
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
338
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
339
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
340
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
341
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
342
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
343
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
344
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
345
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
346
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
347
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
348
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
349
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
350
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
351
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
352
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
353
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
354
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
355
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
356
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
357
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
358
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
359
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
360
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
361
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
362
|
+
}, undefined>;
|
|
363
|
+
export declare const ProductImpressionEventSchema: v.ObjectSchema<{
|
|
364
|
+
readonly eventName: v.LiteralSchema<"productImpression", undefined>;
|
|
365
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
366
|
+
readonly productId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
367
|
+
readonly listName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
368
|
+
readonly position: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
369
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
370
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
371
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
372
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
373
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
374
|
+
}, undefined>, undefined>;
|
|
375
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
376
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
377
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
378
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
379
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
380
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
381
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
382
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
383
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
384
|
+
}, undefined>, undefined>;
|
|
385
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
386
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
387
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
388
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
389
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
390
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
391
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
392
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
393
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
394
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
395
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
396
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
397
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
398
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
399
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
400
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
401
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
402
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
403
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
404
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
405
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
406
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
407
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
408
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
409
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
410
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
411
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
412
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
413
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
414
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
415
|
+
}, undefined>;
|
|
416
|
+
export declare const ProductClickEventSchema: v.ObjectSchema<{
|
|
417
|
+
readonly eventName: v.LiteralSchema<"productClick", undefined>;
|
|
418
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
419
|
+
readonly productId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
420
|
+
readonly listName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
421
|
+
readonly position: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
422
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
423
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
424
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
425
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
426
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
427
|
+
}, undefined>, undefined>;
|
|
428
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
429
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
430
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
431
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
432
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
433
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
434
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
435
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
436
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
437
|
+
}, undefined>, undefined>;
|
|
438
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
439
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
440
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
441
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
442
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
443
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
444
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
445
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
446
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
447
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
448
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
449
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
450
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
451
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
452
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
453
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
454
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
455
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
456
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
457
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
458
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
459
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
460
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
461
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
462
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
463
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
464
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
465
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
466
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
467
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
468
|
+
}, undefined>;
|
|
469
|
+
export declare const ProductViewEventSchema: v.ObjectSchema<{
|
|
470
|
+
readonly eventName: v.LiteralSchema<"productView", undefined>;
|
|
471
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
472
|
+
readonly productId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
473
|
+
readonly sku: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
474
|
+
readonly productName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
475
|
+
readonly category: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
476
|
+
readonly brand: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
477
|
+
readonly variant: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
478
|
+
readonly price: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "validation.number">, v.MaxLengthAction<string, 256, "validation.beacon.money.maxLength">]>, undefined>;
|
|
479
|
+
readonly currency: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
480
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
481
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
482
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
483
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
484
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
485
|
+
}, undefined>, undefined>;
|
|
486
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
487
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
488
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
489
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
490
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
491
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
492
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
493
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
494
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
495
|
+
}, undefined>, undefined>;
|
|
496
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
497
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
498
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
499
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
500
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
501
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
502
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
503
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
504
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
505
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
506
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
507
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
508
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
509
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
510
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
511
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
512
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
513
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
514
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
515
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
516
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
517
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
518
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
519
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
520
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
521
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
522
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
523
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
524
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
525
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
526
|
+
}, undefined>;
|
|
527
|
+
export declare const AddToCartEventSchema: v.ObjectSchema<{
|
|
528
|
+
readonly eventName: v.LiteralSchema<"addToCart", undefined>;
|
|
529
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
530
|
+
readonly cartId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
531
|
+
readonly productId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
532
|
+
readonly sku: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
533
|
+
readonly productName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
534
|
+
readonly category: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
535
|
+
readonly variant: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
536
|
+
readonly price: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "validation.number">, v.MaxLengthAction<string, 256, "validation.beacon.money.maxLength">]>, undefined>;
|
|
537
|
+
readonly quantity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
538
|
+
readonly currency: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
539
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
540
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
541
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
542
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
543
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
544
|
+
}, undefined>, undefined>;
|
|
545
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
546
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
547
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
548
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
549
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
550
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
551
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
552
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
553
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
554
|
+
}, undefined>, undefined>;
|
|
555
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
556
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
557
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
558
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
559
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
560
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
561
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
562
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
563
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
564
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
565
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
566
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
567
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
568
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
569
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
570
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
571
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
572
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
573
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
574
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
575
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
576
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
577
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
578
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
579
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
580
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
581
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
582
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
583
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
584
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
585
|
+
}, undefined>;
|
|
586
|
+
export declare const RemoveFromCartEventSchema: v.ObjectSchema<{
|
|
587
|
+
readonly eventName: v.LiteralSchema<"removeFromCart", undefined>;
|
|
588
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
589
|
+
readonly cartId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
590
|
+
readonly productId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
591
|
+
readonly sku: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
592
|
+
readonly productName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
593
|
+
readonly category: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
594
|
+
readonly variant: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
595
|
+
readonly price: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "validation.number">, v.MaxLengthAction<string, 256, "validation.beacon.money.maxLength">]>, undefined>;
|
|
596
|
+
readonly quantity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
597
|
+
readonly currency: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
598
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
599
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
600
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
601
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
602
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
603
|
+
}, undefined>, undefined>;
|
|
604
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
605
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
606
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
607
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
608
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
609
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
610
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
611
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
612
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
613
|
+
}, undefined>, undefined>;
|
|
614
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
615
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
616
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
617
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
618
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
619
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
620
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
621
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
622
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
623
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
624
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
625
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
626
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
627
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
628
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
629
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
630
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
631
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
632
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
633
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
634
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
635
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
636
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
637
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
638
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
639
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
640
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
641
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
642
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
643
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
644
|
+
}, undefined>;
|
|
645
|
+
export declare const ViewCartEventSchema: v.ObjectSchema<{
|
|
646
|
+
readonly eventName: v.LiteralSchema<"viewCart", undefined>;
|
|
647
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
648
|
+
readonly cartId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
649
|
+
readonly cartTotal: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "validation.number">, v.MaxLengthAction<string, 256, "validation.beacon.money.maxLength">]>, undefined>;
|
|
650
|
+
readonly itemCount: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
651
|
+
readonly currency: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
652
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
653
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
654
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
655
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
656
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
657
|
+
}, undefined>, undefined>;
|
|
658
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
659
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
660
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
661
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
662
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
663
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
664
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
665
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
666
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
667
|
+
}, undefined>, undefined>;
|
|
668
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
669
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
670
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
671
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
672
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
673
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
674
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
675
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
676
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
677
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
678
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
679
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
680
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
681
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
682
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
683
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
684
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
685
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
686
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
687
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
688
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
689
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
690
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
691
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
692
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
693
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
694
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
695
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
696
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
697
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
698
|
+
}, undefined>;
|
|
699
|
+
export declare const BeginCheckoutEventSchema: v.ObjectSchema<{
|
|
700
|
+
readonly eventName: v.LiteralSchema<"beginCheckout", undefined>;
|
|
701
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
702
|
+
readonly cartId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
703
|
+
readonly cartTotal: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "validation.number">, v.MaxLengthAction<string, 256, "validation.beacon.money.maxLength">]>, undefined>;
|
|
704
|
+
readonly itemCount: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
705
|
+
readonly currency: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
706
|
+
readonly couponCodeApplied: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
707
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
708
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
709
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
710
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
711
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
712
|
+
}, undefined>, undefined>;
|
|
713
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
714
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
715
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
716
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
717
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
718
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
719
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
720
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
721
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
722
|
+
}, undefined>, undefined>;
|
|
723
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
724
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
725
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
726
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
727
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
728
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
729
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
730
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
731
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
732
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
733
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
734
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
735
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
736
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
737
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
738
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
739
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
740
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
741
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
742
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
743
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
744
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
745
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
746
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
747
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
748
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
749
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
750
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
751
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
752
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
753
|
+
}, undefined>;
|
|
754
|
+
export declare const PurchaseEventSchema: v.ObjectSchema<{
|
|
755
|
+
readonly eventName: v.LiteralSchema<"purchase", undefined>;
|
|
756
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
757
|
+
readonly orderId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
758
|
+
readonly transactionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
759
|
+
readonly totalRevenue: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "validation.number">, v.MaxLengthAction<string, 256, "validation.beacon.money.maxLength">]>, undefined>;
|
|
760
|
+
readonly subtotal: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "validation.number">, v.MaxLengthAction<string, 256, "validation.beacon.money.maxLength">]>, undefined>;
|
|
761
|
+
readonly tax: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "validation.number">, v.MaxLengthAction<string, 256, "validation.beacon.money.maxLength">]>, undefined>;
|
|
762
|
+
readonly shippingCost: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "validation.number">, v.MaxLengthAction<string, 256, "validation.beacon.money.maxLength">]>, undefined>;
|
|
763
|
+
readonly currency: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
764
|
+
readonly couponCodeUsed: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
765
|
+
readonly discountAmount: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "validation.number">, v.MaxLengthAction<string, 256, "validation.beacon.money.maxLength">]>, undefined>;
|
|
766
|
+
readonly products: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.StrictObjectSchema<{
|
|
767
|
+
readonly productId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
768
|
+
readonly sku: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
769
|
+
readonly productName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
770
|
+
readonly category: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
771
|
+
readonly variant: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
772
|
+
readonly price: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "validation.number">, v.MaxLengthAction<string, 256, "validation.beacon.money.maxLength">]>, undefined>;
|
|
773
|
+
readonly quantity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
774
|
+
}, undefined>, undefined>, v.MaxLengthAction<{
|
|
775
|
+
productId?: string | undefined;
|
|
776
|
+
sku?: string | undefined;
|
|
777
|
+
productName?: string | undefined;
|
|
778
|
+
category?: string | undefined;
|
|
779
|
+
variant?: string | undefined;
|
|
780
|
+
price?: string | undefined;
|
|
781
|
+
quantity?: number | undefined;
|
|
782
|
+
}[], 50, "validation.beacon.purchaseProducts.maxLength">]>, undefined>;
|
|
783
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
784
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
785
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
786
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
787
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
788
|
+
}, undefined>, undefined>;
|
|
789
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
790
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
791
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
792
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
793
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
794
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
795
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
796
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
797
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
798
|
+
}, undefined>, undefined>;
|
|
799
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
800
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
801
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
802
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
803
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
804
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
805
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
806
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
807
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
808
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
809
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
810
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
811
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
812
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
813
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
814
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
815
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
816
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
817
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
818
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
819
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
820
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
821
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
822
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
823
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
824
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
825
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
826
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
827
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
828
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
829
|
+
}, undefined>;
|
|
830
|
+
export declare const SearchSubmittedEventSchema: v.ObjectSchema<{
|
|
831
|
+
readonly eventName: v.LiteralSchema<"searchSubmitted", undefined>;
|
|
832
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
833
|
+
readonly searchQuery: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
834
|
+
readonly resultsCount: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
835
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
836
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
837
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
838
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
839
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
840
|
+
}, undefined>, undefined>;
|
|
841
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
842
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
843
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
844
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
845
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
846
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
847
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
848
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
849
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
850
|
+
}, undefined>, undefined>;
|
|
851
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
852
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
853
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
854
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
855
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
856
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
857
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
858
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
859
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
860
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
861
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
862
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
863
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
864
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
865
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
866
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
867
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
868
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
869
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
870
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
871
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
872
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
873
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
874
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
875
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
876
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
877
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
878
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
879
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
880
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
881
|
+
}, undefined>;
|
|
882
|
+
export declare const QRScannedEventSchema: v.ObjectSchema<{
|
|
883
|
+
readonly eventName: v.LiteralSchema<"qrScanned", undefined>;
|
|
884
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
885
|
+
readonly experienceId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
886
|
+
readonly sequenceId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
887
|
+
readonly locationId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
888
|
+
readonly qrPayload: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
889
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
890
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
891
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
892
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
893
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
894
|
+
}, undefined>, undefined>;
|
|
895
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
896
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
897
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
898
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
899
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
900
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
901
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
902
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
903
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
904
|
+
}, undefined>, undefined>;
|
|
905
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
906
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
907
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
908
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
909
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
910
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
911
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
912
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
913
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
914
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
915
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
916
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
917
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
918
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
919
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
920
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
921
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
922
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
923
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
924
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
925
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
926
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
927
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
928
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
929
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
930
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
931
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
932
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
933
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
934
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
935
|
+
}, undefined>;
|
|
936
|
+
export declare const MessageSentEventSchema: v.ObjectSchema<{
|
|
937
|
+
readonly eventName: v.LiteralSchema<"messageSent", undefined>;
|
|
938
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
939
|
+
readonly channel: v.OptionalSchema<v.PicklistSchema<["email", "sms"], undefined>, undefined>;
|
|
940
|
+
readonly messageId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
941
|
+
readonly template: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
942
|
+
readonly priority: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
943
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
944
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
945
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
946
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
947
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
948
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
949
|
+
}, undefined>, undefined>;
|
|
950
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
951
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
952
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
953
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
954
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
955
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
956
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
957
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
958
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
959
|
+
}, undefined>, undefined>;
|
|
960
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
961
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
962
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
963
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
964
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
965
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
966
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
967
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
968
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
969
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
970
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
971
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
972
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
973
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
974
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
975
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
976
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
977
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
978
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
979
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
980
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
981
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
982
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
983
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
984
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
985
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
986
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
987
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
988
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
989
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
990
|
+
}, undefined>;
|
|
991
|
+
export declare const MessageDeliveredEventSchema: v.ObjectSchema<{
|
|
992
|
+
readonly eventName: v.LiteralSchema<"messageDelivered", undefined>;
|
|
993
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
994
|
+
readonly channel: v.OptionalSchema<v.PicklistSchema<["email", "sms"], undefined>, undefined>;
|
|
995
|
+
readonly messageId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
996
|
+
readonly template: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
997
|
+
readonly priority: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
998
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
999
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1000
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1001
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1002
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1003
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1004
|
+
}, undefined>, undefined>;
|
|
1005
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
1006
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1007
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
1008
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
1009
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
1010
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
1011
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
1012
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
1013
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
1014
|
+
}, undefined>, undefined>;
|
|
1015
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1016
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1017
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1018
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1019
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1020
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1021
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1022
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1023
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1024
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1025
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1026
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1027
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1028
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1029
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1030
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1031
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1032
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1033
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1034
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1035
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1036
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1037
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1038
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1039
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1040
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1041
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1042
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1043
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1044
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1045
|
+
}, undefined>;
|
|
1046
|
+
export declare const MessageBouncedEventSchema: v.ObjectSchema<{
|
|
1047
|
+
readonly eventName: v.LiteralSchema<"messageBounced", undefined>;
|
|
1048
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
1049
|
+
readonly bounceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1050
|
+
readonly channel: v.OptionalSchema<v.PicklistSchema<["email", "sms"], undefined>, undefined>;
|
|
1051
|
+
readonly messageId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1052
|
+
readonly template: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1053
|
+
readonly priority: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1054
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1055
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1056
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1057
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1058
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1059
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1060
|
+
}, undefined>, undefined>;
|
|
1061
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
1062
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1063
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
1064
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
1065
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
1066
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
1067
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
1068
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
1069
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
1070
|
+
}, undefined>, undefined>;
|
|
1071
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1072
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1073
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1074
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1075
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1076
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1077
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1078
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1079
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1080
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1081
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1082
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1083
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1084
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1085
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1086
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1087
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1088
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1089
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1090
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1091
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1092
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1093
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1094
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1095
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1096
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1097
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1098
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1099
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1100
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1101
|
+
}, undefined>;
|
|
1102
|
+
export declare const MessageComplainedEventSchema: v.ObjectSchema<{
|
|
1103
|
+
readonly eventName: v.LiteralSchema<"messageComplained", undefined>;
|
|
1104
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
1105
|
+
readonly complaintType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1106
|
+
readonly channel: v.OptionalSchema<v.PicklistSchema<["email", "sms"], undefined>, undefined>;
|
|
1107
|
+
readonly messageId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1108
|
+
readonly template: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1109
|
+
readonly priority: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1110
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1111
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1112
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1113
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1114
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1115
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1116
|
+
}, undefined>, undefined>;
|
|
1117
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
1118
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1119
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
1120
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
1121
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
1122
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
1123
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
1124
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
1125
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
1126
|
+
}, undefined>, undefined>;
|
|
1127
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1128
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1129
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1130
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1131
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1132
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1133
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1134
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1135
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1136
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1137
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1138
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1139
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1140
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1141
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1142
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1143
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1144
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1145
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1146
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1147
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1148
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1149
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1150
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1151
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1152
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1153
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1154
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1155
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1156
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1157
|
+
}, undefined>;
|
|
1158
|
+
export declare const MessageClickedEventSchema: v.ObjectSchema<{
|
|
1159
|
+
readonly eventName: v.LiteralSchema<"messageClicked", undefined>;
|
|
1160
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
1161
|
+
readonly channel: v.OptionalSchema<v.PicklistSchema<["email", "sms"], undefined>, undefined>;
|
|
1162
|
+
readonly messageId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1163
|
+
readonly template: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1164
|
+
readonly priority: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1165
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1166
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1167
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1168
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1169
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1170
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1171
|
+
}, undefined>, undefined>;
|
|
1172
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
1173
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1174
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
1175
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
1176
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
1177
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
1178
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
1179
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
1180
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
1181
|
+
}, undefined>, undefined>;
|
|
1182
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1183
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1184
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1185
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1186
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1187
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1188
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1189
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1190
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1191
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1192
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1193
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1194
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1195
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1196
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1197
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1198
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1199
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1200
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1201
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1202
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1203
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1204
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1205
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1206
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1207
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1208
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1209
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1210
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1211
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1212
|
+
}, undefined>;
|
|
1213
|
+
export declare const MessageOpenedEventSchema: v.ObjectSchema<{
|
|
1214
|
+
readonly eventName: v.LiteralSchema<"messageOpened", undefined>;
|
|
1215
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
1216
|
+
readonly channel: v.OptionalSchema<v.PicklistSchema<["email", "sms"], undefined>, undefined>;
|
|
1217
|
+
readonly messageId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1218
|
+
readonly template: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1219
|
+
readonly priority: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1220
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1221
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1222
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1223
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1224
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1225
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1226
|
+
}, undefined>, undefined>;
|
|
1227
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
1228
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1229
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
1230
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
1231
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
1232
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
1233
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
1234
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
1235
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
1236
|
+
}, undefined>, undefined>;
|
|
1237
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1238
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1239
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1240
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1241
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1242
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1243
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1244
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1245
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1246
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1247
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1248
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1249
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1250
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1251
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1252
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1253
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1254
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1255
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1256
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1257
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1258
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1259
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1260
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1261
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1262
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1263
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1264
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1265
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1266
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1267
|
+
}, undefined>;
|
|
1268
|
+
export declare const MessageReadEventSchema: v.ObjectSchema<{
|
|
1269
|
+
readonly eventName: v.LiteralSchema<"messageRead", undefined>;
|
|
1270
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
1271
|
+
readonly channel: v.OptionalSchema<v.PicklistSchema<["email", "sms"], undefined>, undefined>;
|
|
1272
|
+
readonly messageId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1273
|
+
readonly template: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1274
|
+
readonly priority: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1275
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1276
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1277
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1278
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1279
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1280
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1281
|
+
}, undefined>, undefined>;
|
|
1282
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
1283
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1284
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
1285
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
1286
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
1287
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
1288
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
1289
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
1290
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
1291
|
+
}, undefined>, undefined>;
|
|
1292
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1293
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1294
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1295
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1296
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1297
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1298
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1299
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1300
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1301
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1302
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1303
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1304
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1305
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1306
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1307
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1308
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1309
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1310
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1311
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1312
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1313
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1314
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1315
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1316
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1317
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1318
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1319
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1320
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1321
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1322
|
+
}, undefined>;
|
|
1323
|
+
export declare const MessageFailedEventSchema: v.ObjectSchema<{
|
|
1324
|
+
readonly eventName: v.LiteralSchema<"messageFailed", undefined>;
|
|
1325
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
1326
|
+
readonly retryCount: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1327
|
+
readonly channel: v.OptionalSchema<v.PicklistSchema<["email", "sms"], undefined>, undefined>;
|
|
1328
|
+
readonly messageId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1329
|
+
readonly template: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1330
|
+
readonly priority: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1331
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1332
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1333
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1334
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1335
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1336
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1337
|
+
}, undefined>, undefined>;
|
|
1338
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
1339
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1340
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
1341
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
1342
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
1343
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
1344
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
1345
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
1346
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
1347
|
+
}, undefined>, undefined>;
|
|
1348
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1349
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1350
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1351
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1352
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1353
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1354
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1355
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1356
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1357
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1358
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1359
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1360
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1361
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1362
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1363
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1364
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1365
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1366
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1367
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1368
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1369
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1370
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1371
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1372
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1373
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1374
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1375
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1376
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1377
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1378
|
+
}, undefined>;
|
|
1379
|
+
export declare const BeaconEventSchema: v.UnionSchema<[v.ObjectSchema<{
|
|
1380
|
+
readonly eventName: v.LiteralSchema<"pageView", undefined>;
|
|
1381
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
1382
|
+
readonly pageType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1383
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1384
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1385
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1386
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1387
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1388
|
+
}, undefined>, undefined>;
|
|
1389
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
1390
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1391
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
1392
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
1393
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
1394
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
1395
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
1396
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
1397
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
1398
|
+
}, undefined>, undefined>;
|
|
1399
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1400
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1401
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1402
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1403
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1404
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1405
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1406
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1407
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1408
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1409
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1410
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1411
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1412
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1413
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1414
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1415
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1416
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1417
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1418
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1419
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1420
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1421
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1422
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1423
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1424
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1425
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1426
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1427
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1428
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1429
|
+
}, undefined>, v.ObjectSchema<{
|
|
1430
|
+
readonly eventName: v.LiteralSchema<"productImpression", undefined>;
|
|
1431
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
1432
|
+
readonly productId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1433
|
+
readonly listName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1434
|
+
readonly position: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1435
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1436
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1437
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1438
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1439
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1440
|
+
}, undefined>, undefined>;
|
|
1441
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
1442
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1443
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
1444
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
1445
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
1446
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
1447
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
1448
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
1449
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
1450
|
+
}, undefined>, undefined>;
|
|
1451
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1452
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1453
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1454
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1455
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1456
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1457
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1458
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1459
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1460
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1461
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1462
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1463
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1464
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1465
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1466
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1467
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1468
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1469
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1470
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1471
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1472
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1473
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1474
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1475
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1476
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1477
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1478
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1479
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1480
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1481
|
+
}, undefined>, v.ObjectSchema<{
|
|
1482
|
+
readonly eventName: v.LiteralSchema<"productClick", undefined>;
|
|
1483
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
1484
|
+
readonly productId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1485
|
+
readonly listName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1486
|
+
readonly position: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1487
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1488
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1489
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1490
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1491
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1492
|
+
}, undefined>, undefined>;
|
|
1493
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
1494
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1495
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
1496
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
1497
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
1498
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
1499
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
1500
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
1501
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
1502
|
+
}, undefined>, undefined>;
|
|
1503
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1504
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1505
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1506
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1507
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1508
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1509
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1510
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1511
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1512
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1513
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1514
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1515
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1516
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1517
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1518
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1519
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1520
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1521
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1522
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1523
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1524
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1525
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1526
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1527
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1528
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1529
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1530
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1531
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1532
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1533
|
+
}, undefined>, v.ObjectSchema<{
|
|
1534
|
+
readonly eventName: v.LiteralSchema<"productView", undefined>;
|
|
1535
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
1536
|
+
readonly productId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1537
|
+
readonly sku: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1538
|
+
readonly productName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1539
|
+
readonly category: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1540
|
+
readonly brand: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1541
|
+
readonly variant: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1542
|
+
readonly price: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "validation.number">, v.MaxLengthAction<string, 256, "validation.beacon.money.maxLength">]>, undefined>;
|
|
1543
|
+
readonly currency: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1544
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1545
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1546
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1547
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1548
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1549
|
+
}, undefined>, undefined>;
|
|
1550
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
1551
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1552
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
1553
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
1554
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
1555
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
1556
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
1557
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
1558
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
1559
|
+
}, undefined>, undefined>;
|
|
1560
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1561
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1562
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1563
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1564
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1565
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1566
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1567
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1568
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1569
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1570
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1571
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1572
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1573
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1574
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1575
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1576
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1577
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1578
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1579
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1580
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1581
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1582
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1583
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1584
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1585
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1586
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1587
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1588
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1589
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1590
|
+
}, undefined>, v.ObjectSchema<{
|
|
1591
|
+
readonly eventName: v.LiteralSchema<"addToCart", undefined>;
|
|
1592
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
1593
|
+
readonly cartId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1594
|
+
readonly productId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1595
|
+
readonly sku: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1596
|
+
readonly productName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1597
|
+
readonly category: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1598
|
+
readonly variant: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1599
|
+
readonly price: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "validation.number">, v.MaxLengthAction<string, 256, "validation.beacon.money.maxLength">]>, undefined>;
|
|
1600
|
+
readonly quantity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1601
|
+
readonly currency: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1602
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1603
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1604
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1605
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1606
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1607
|
+
}, undefined>, undefined>;
|
|
1608
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
1609
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1610
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
1611
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
1612
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
1613
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
1614
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
1615
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
1616
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
1617
|
+
}, undefined>, undefined>;
|
|
1618
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1619
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1620
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1621
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1622
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1623
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1624
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1625
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1626
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1627
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1628
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1629
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1630
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1631
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1632
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1633
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1634
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1635
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1636
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1637
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1638
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1639
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1640
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1641
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1642
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1643
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1644
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1645
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1646
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1647
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1648
|
+
}, undefined>, v.ObjectSchema<{
|
|
1649
|
+
readonly eventName: v.LiteralSchema<"removeFromCart", undefined>;
|
|
1650
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
1651
|
+
readonly cartId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1652
|
+
readonly productId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1653
|
+
readonly sku: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1654
|
+
readonly productName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1655
|
+
readonly category: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1656
|
+
readonly variant: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1657
|
+
readonly price: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "validation.number">, v.MaxLengthAction<string, 256, "validation.beacon.money.maxLength">]>, undefined>;
|
|
1658
|
+
readonly quantity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1659
|
+
readonly currency: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1660
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1661
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1662
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1663
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1664
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1665
|
+
}, undefined>, undefined>;
|
|
1666
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
1667
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1668
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
1669
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
1670
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
1671
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
1672
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
1673
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
1674
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
1675
|
+
}, undefined>, undefined>;
|
|
1676
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1677
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1678
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1679
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1680
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1681
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1682
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1683
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1684
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1685
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1686
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1687
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1688
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1689
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1690
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1691
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1692
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1693
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1694
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1695
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1696
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1697
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1698
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1699
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1700
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1701
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1702
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1703
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1704
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1705
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1706
|
+
}, undefined>, v.ObjectSchema<{
|
|
1707
|
+
readonly eventName: v.LiteralSchema<"viewCart", undefined>;
|
|
1708
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
1709
|
+
readonly cartId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1710
|
+
readonly cartTotal: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "validation.number">, v.MaxLengthAction<string, 256, "validation.beacon.money.maxLength">]>, undefined>;
|
|
1711
|
+
readonly itemCount: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1712
|
+
readonly currency: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1713
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1714
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1715
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1716
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1717
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1718
|
+
}, undefined>, undefined>;
|
|
1719
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
1720
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1721
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
1722
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
1723
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
1724
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
1725
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
1726
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
1727
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
1728
|
+
}, undefined>, undefined>;
|
|
1729
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1730
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1731
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1732
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1733
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1734
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1735
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1736
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1737
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1738
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1739
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1740
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1741
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1742
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1743
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1744
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1745
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1746
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1747
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1748
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1749
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1750
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1751
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1752
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1753
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1754
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1755
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1756
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1757
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1758
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1759
|
+
}, undefined>, v.ObjectSchema<{
|
|
1760
|
+
readonly eventName: v.LiteralSchema<"beginCheckout", undefined>;
|
|
1761
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
1762
|
+
readonly cartId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1763
|
+
readonly cartTotal: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "validation.number">, v.MaxLengthAction<string, 256, "validation.beacon.money.maxLength">]>, undefined>;
|
|
1764
|
+
readonly itemCount: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1765
|
+
readonly currency: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1766
|
+
readonly couponCodeApplied: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1767
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1768
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1769
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1770
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1771
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1772
|
+
}, undefined>, undefined>;
|
|
1773
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
1774
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1775
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
1776
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
1777
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
1778
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
1779
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
1780
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
1781
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
1782
|
+
}, undefined>, undefined>;
|
|
1783
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1784
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1785
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1786
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1787
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1788
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1789
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1790
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1791
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1792
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1793
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1794
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1795
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1796
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1797
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1798
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1799
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1800
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1801
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1802
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1803
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1804
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1805
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1806
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1807
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1808
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1809
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1810
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1811
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1812
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1813
|
+
}, undefined>, v.ObjectSchema<{
|
|
1814
|
+
readonly eventName: v.LiteralSchema<"purchase", undefined>;
|
|
1815
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
1816
|
+
readonly orderId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1817
|
+
readonly transactionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1818
|
+
readonly totalRevenue: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "validation.number">, v.MaxLengthAction<string, 256, "validation.beacon.money.maxLength">]>, undefined>;
|
|
1819
|
+
readonly subtotal: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "validation.number">, v.MaxLengthAction<string, 256, "validation.beacon.money.maxLength">]>, undefined>;
|
|
1820
|
+
readonly tax: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "validation.number">, v.MaxLengthAction<string, 256, "validation.beacon.money.maxLength">]>, undefined>;
|
|
1821
|
+
readonly shippingCost: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "validation.number">, v.MaxLengthAction<string, 256, "validation.beacon.money.maxLength">]>, undefined>;
|
|
1822
|
+
readonly currency: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1823
|
+
readonly couponCodeUsed: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1824
|
+
readonly discountAmount: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "validation.number">, v.MaxLengthAction<string, 256, "validation.beacon.money.maxLength">]>, undefined>;
|
|
1825
|
+
readonly products: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.StrictObjectSchema<{
|
|
1826
|
+
readonly productId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1827
|
+
readonly sku: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1828
|
+
readonly productName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1829
|
+
readonly category: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1830
|
+
readonly variant: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1831
|
+
readonly price: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "validation.number">, v.MaxLengthAction<string, 256, "validation.beacon.money.maxLength">]>, undefined>;
|
|
1832
|
+
readonly quantity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1833
|
+
}, undefined>, undefined>, v.MaxLengthAction<{
|
|
1834
|
+
productId?: string | undefined;
|
|
1835
|
+
sku?: string | undefined;
|
|
1836
|
+
productName?: string | undefined;
|
|
1837
|
+
category?: string | undefined;
|
|
1838
|
+
variant?: string | undefined;
|
|
1839
|
+
price?: string | undefined;
|
|
1840
|
+
quantity?: number | undefined;
|
|
1841
|
+
}[], 50, "validation.beacon.purchaseProducts.maxLength">]>, undefined>;
|
|
1842
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1843
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1844
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1845
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1846
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1847
|
+
}, undefined>, undefined>;
|
|
1848
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
1849
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1850
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
1851
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
1852
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
1853
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
1854
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
1855
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
1856
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
1857
|
+
}, undefined>, undefined>;
|
|
1858
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1859
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1860
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1861
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1862
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1863
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1864
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1865
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1866
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1867
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1868
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1869
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1870
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1871
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1872
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1873
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1874
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1875
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1876
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1877
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1878
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1879
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1880
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1881
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1882
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1883
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1884
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1885
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1886
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1887
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1888
|
+
}, undefined>, v.ObjectSchema<{
|
|
1889
|
+
readonly eventName: v.LiteralSchema<"searchSubmitted", undefined>;
|
|
1890
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
1891
|
+
readonly searchQuery: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1892
|
+
readonly resultsCount: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1893
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1894
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1895
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1896
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1897
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1898
|
+
}, undefined>, undefined>;
|
|
1899
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
1900
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1901
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
1902
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
1903
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
1904
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
1905
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
1906
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
1907
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
1908
|
+
}, undefined>, undefined>;
|
|
1909
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1910
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1911
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1912
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1913
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1914
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1915
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1916
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1917
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1918
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1919
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1920
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1921
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1922
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1923
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1924
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1925
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1926
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1927
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1928
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1929
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1930
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1931
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1932
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1933
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1934
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1935
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1936
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1937
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1938
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1939
|
+
}, undefined>, v.ObjectSchema<{
|
|
1940
|
+
readonly eventName: v.LiteralSchema<"qrScanned", undefined>;
|
|
1941
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
1942
|
+
readonly experienceId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1943
|
+
readonly sequenceId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1944
|
+
readonly locationId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1945
|
+
readonly qrPayload: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1946
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1947
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1948
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1949
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1950
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1951
|
+
}, undefined>, undefined>;
|
|
1952
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
1953
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1954
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
1955
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
1956
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
1957
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
1958
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
1959
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
1960
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
1961
|
+
}, undefined>, undefined>;
|
|
1962
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1963
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1964
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1965
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1966
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1967
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1968
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1969
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1970
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1971
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1972
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1973
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1974
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1975
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1976
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1977
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1978
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
1979
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1980
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1981
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1982
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1983
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1984
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1985
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1986
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1987
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1988
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1989
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1990
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1991
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1992
|
+
}, undefined>, v.ObjectSchema<{
|
|
1993
|
+
readonly eventName: v.LiteralSchema<"messageSent", undefined>;
|
|
1994
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
1995
|
+
readonly channel: v.OptionalSchema<v.PicklistSchema<["email", "sms"], undefined>, undefined>;
|
|
1996
|
+
readonly messageId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1997
|
+
readonly template: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1998
|
+
readonly priority: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
1999
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2000
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2001
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2002
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2003
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2004
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2005
|
+
}, undefined>, undefined>;
|
|
2006
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
2007
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2008
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
2009
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
2010
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
2011
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
2012
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
2013
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
2014
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
2015
|
+
}, undefined>, undefined>;
|
|
2016
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2017
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2018
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2019
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2020
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2021
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2022
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2023
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2024
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2025
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2026
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2027
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2028
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2029
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2030
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2031
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2032
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2033
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2034
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2035
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2036
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2037
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2038
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2039
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2040
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2041
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2042
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2043
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2044
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2045
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2046
|
+
}, undefined>, v.ObjectSchema<{
|
|
2047
|
+
readonly eventName: v.LiteralSchema<"messageDelivered", undefined>;
|
|
2048
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
2049
|
+
readonly channel: v.OptionalSchema<v.PicklistSchema<["email", "sms"], undefined>, undefined>;
|
|
2050
|
+
readonly messageId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2051
|
+
readonly template: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2052
|
+
readonly priority: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2053
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2054
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2055
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2056
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2057
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2058
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2059
|
+
}, undefined>, undefined>;
|
|
2060
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
2061
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2062
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
2063
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
2064
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
2065
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
2066
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
2067
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
2068
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
2069
|
+
}, undefined>, undefined>;
|
|
2070
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2071
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2072
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2073
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2074
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2075
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2076
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2077
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2078
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2079
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2080
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2081
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2082
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2083
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2084
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2085
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2086
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2087
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2088
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2089
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2090
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2091
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2092
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2093
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2094
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2095
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2096
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2097
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2098
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2099
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2100
|
+
}, undefined>, v.ObjectSchema<{
|
|
2101
|
+
readonly eventName: v.LiteralSchema<"messageBounced", undefined>;
|
|
2102
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
2103
|
+
readonly bounceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2104
|
+
readonly channel: v.OptionalSchema<v.PicklistSchema<["email", "sms"], undefined>, undefined>;
|
|
2105
|
+
readonly messageId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2106
|
+
readonly template: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2107
|
+
readonly priority: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2108
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2109
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2110
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2111
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2112
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2113
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2114
|
+
}, undefined>, undefined>;
|
|
2115
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
2116
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2117
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
2118
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
2119
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
2120
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
2121
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
2122
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
2123
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
2124
|
+
}, undefined>, undefined>;
|
|
2125
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2126
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2127
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2128
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2129
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2130
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2131
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2132
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2133
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2134
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2135
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2136
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2137
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2138
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2139
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2140
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2141
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2142
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2143
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2144
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2145
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2146
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2147
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2148
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2149
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2150
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2151
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2152
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2153
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2154
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2155
|
+
}, undefined>, v.ObjectSchema<{
|
|
2156
|
+
readonly eventName: v.LiteralSchema<"messageComplained", undefined>;
|
|
2157
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
2158
|
+
readonly complaintType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2159
|
+
readonly channel: v.OptionalSchema<v.PicklistSchema<["email", "sms"], undefined>, undefined>;
|
|
2160
|
+
readonly messageId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2161
|
+
readonly template: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2162
|
+
readonly priority: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2163
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2164
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2165
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2166
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2167
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2168
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2169
|
+
}, undefined>, undefined>;
|
|
2170
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
2171
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2172
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
2173
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
2174
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
2175
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
2176
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
2177
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
2178
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
2179
|
+
}, undefined>, undefined>;
|
|
2180
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2181
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2182
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2183
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2184
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2185
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2186
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2187
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2188
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2189
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2190
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2191
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2192
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2193
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2194
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2195
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2196
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2197
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2198
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2199
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2200
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2201
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2202
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2203
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2204
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2205
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2206
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2207
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2208
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2209
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2210
|
+
}, undefined>, v.ObjectSchema<{
|
|
2211
|
+
readonly eventName: v.LiteralSchema<"messageClicked", undefined>;
|
|
2212
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
2213
|
+
readonly channel: v.OptionalSchema<v.PicklistSchema<["email", "sms"], undefined>, undefined>;
|
|
2214
|
+
readonly messageId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2215
|
+
readonly template: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2216
|
+
readonly priority: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2217
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2218
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2219
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2220
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2221
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2222
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2223
|
+
}, undefined>, undefined>;
|
|
2224
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
2225
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2226
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
2227
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
2228
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
2229
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
2230
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
2231
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
2232
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
2233
|
+
}, undefined>, undefined>;
|
|
2234
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2235
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2236
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2237
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2238
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2239
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2240
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2241
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2242
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2243
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2244
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2245
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2246
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2247
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2248
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2249
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2250
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2251
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2252
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2253
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2254
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2255
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2256
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2257
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2258
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2259
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2260
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2261
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2262
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2263
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2264
|
+
}, undefined>, v.ObjectSchema<{
|
|
2265
|
+
readonly eventName: v.LiteralSchema<"messageOpened", undefined>;
|
|
2266
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
2267
|
+
readonly channel: v.OptionalSchema<v.PicklistSchema<["email", "sms"], undefined>, undefined>;
|
|
2268
|
+
readonly messageId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2269
|
+
readonly template: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2270
|
+
readonly priority: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2271
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2272
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2273
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2274
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2275
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2276
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2277
|
+
}, undefined>, undefined>;
|
|
2278
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
2279
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2280
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
2281
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
2282
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
2283
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
2284
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
2285
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
2286
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
2287
|
+
}, undefined>, undefined>;
|
|
2288
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2289
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2290
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2291
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2292
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2293
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2294
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2295
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2296
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2297
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2298
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2299
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2300
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2301
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2302
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2303
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2304
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2305
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2306
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2307
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2308
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2309
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2310
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2311
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2312
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2313
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2314
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2315
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2316
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2317
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2318
|
+
}, undefined>, v.ObjectSchema<{
|
|
2319
|
+
readonly eventName: v.LiteralSchema<"messageRead", undefined>;
|
|
2320
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
2321
|
+
readonly channel: v.OptionalSchema<v.PicklistSchema<["email", "sms"], undefined>, undefined>;
|
|
2322
|
+
readonly messageId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2323
|
+
readonly template: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2324
|
+
readonly priority: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2325
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2326
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2327
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2328
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2329
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2330
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2331
|
+
}, undefined>, undefined>;
|
|
2332
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
2333
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2334
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
2335
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
2336
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
2337
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
2338
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
2339
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
2340
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
2341
|
+
}, undefined>, undefined>;
|
|
2342
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2343
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2344
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2345
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2346
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2347
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2348
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2349
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2350
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2351
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2352
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2353
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2354
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2355
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2356
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2357
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2358
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2359
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2360
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2361
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2362
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2363
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2364
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2365
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2366
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2367
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2368
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2369
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2370
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2371
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2372
|
+
}, undefined>, v.ObjectSchema<{
|
|
2373
|
+
readonly eventName: v.LiteralSchema<"messageFailed", undefined>;
|
|
2374
|
+
readonly eventProperties: v.OptionalSchema<v.StrictObjectSchema<{
|
|
2375
|
+
readonly retryCount: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2376
|
+
readonly channel: v.OptionalSchema<v.PicklistSchema<["email", "sms"], undefined>, undefined>;
|
|
2377
|
+
readonly messageId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2378
|
+
readonly template: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2379
|
+
readonly priority: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2380
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2381
|
+
readonly postalCode: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2382
|
+
readonly timezone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2383
|
+
readonly botScore: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2384
|
+
readonly geoLat: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2385
|
+
readonly geoLng: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2386
|
+
}, undefined>, undefined>;
|
|
2387
|
+
readonly organizationId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
2388
|
+
readonly consumerId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2389
|
+
readonly eventId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>;
|
|
2390
|
+
readonly eventTimestamp: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>;
|
|
2391
|
+
readonly eventTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
2392
|
+
readonly receivedTimestamp: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>, v.MaxLengthAction<string, 64, "validation.beacon.timestamp.maxLength">]>, undefined>;
|
|
2393
|
+
readonly receivedTimestampNs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MaxLengthAction<string, 32, "validation.beacon.timestampNs.maxLength">]>, undefined>;
|
|
2394
|
+
readonly segments: v.OptionalSchema<v.ObjectSchema<{
|
|
2395
|
+
readonly rfm: v.OptionalSchema<v.PicklistSchema<readonly ["CHAMPIONS", "LOYAL", "AT_RISK", "NEW", "LOST"], undefined>, undefined>;
|
|
2396
|
+
}, undefined>, undefined>;
|
|
2397
|
+
readonly userId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2398
|
+
readonly anonymousId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2399
|
+
readonly sessionId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2400
|
+
readonly platform: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2401
|
+
readonly appVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2402
|
+
readonly deviceType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2403
|
+
readonly osName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2404
|
+
readonly osVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2405
|
+
readonly browserName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2406
|
+
readonly browserVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2407
|
+
readonly userAgent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2408
|
+
readonly ipAddress: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2409
|
+
readonly geoCountry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2410
|
+
readonly geoRegion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2411
|
+
readonly geoCity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2412
|
+
readonly geoLatitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2413
|
+
readonly geoLongitude: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.CheckAction<number, "validation.beacon.number.finite">]>, undefined>;
|
|
2414
|
+
readonly pageUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2415
|
+
readonly pagePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2416
|
+
readonly pageTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2417
|
+
readonly screenName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2418
|
+
readonly referrerUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2419
|
+
readonly referringDomain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2048, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2420
|
+
readonly utmSource: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2421
|
+
readonly utmMedium: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2422
|
+
readonly utmCampaign: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2423
|
+
readonly utmTerm: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2424
|
+
readonly utmContent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2425
|
+
readonly eventSchemaVersion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2426
|
+
readonly beaconRequestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 256, "validation.beacon.string.maxLength">]>, undefined>;
|
|
2427
|
+
}, undefined>], undefined>;
|
|
2428
|
+
export type BeaconEvent = InferOutput<typeof BeaconEventSchema>;
|
|
2429
|
+
export type AddToCartEvent = InferOutput<typeof AddToCartEventSchema>;
|
|
2430
|
+
export type AddToCartProperties = InferOutput<typeof AddToCartPropertiesSchema>;
|
|
2431
|
+
export type BeginCheckoutEvent = InferOutput<typeof BeginCheckoutEventSchema>;
|
|
2432
|
+
export type BeginCheckoutProperties = InferOutput<typeof BeginCheckoutPropertiesSchema>;
|
|
2433
|
+
export type MessageBouncedEvent = InferOutput<typeof MessageBouncedEventSchema>;
|
|
2434
|
+
export type MessageBouncedProperties = InferOutput<typeof MessageBouncedPropertiesSchema>;
|
|
2435
|
+
export type MessageClickedEvent = InferOutput<typeof MessageClickedEventSchema>;
|
|
2436
|
+
export type MessageComplainedEvent = InferOutput<typeof MessageComplainedEventSchema>;
|
|
2437
|
+
export type MessageComplainedProperties = InferOutput<typeof MessageComplainedPropertiesSchema>;
|
|
2438
|
+
export type MessageDeliveredEvent = InferOutput<typeof MessageDeliveredEventSchema>;
|
|
2439
|
+
export type MessageEventProperties = InferOutput<typeof MessageEventPropertiesSchema>;
|
|
2440
|
+
export type MessageFailedEvent = InferOutput<typeof MessageFailedEventSchema>;
|
|
2441
|
+
export type MessageFailedProperties = InferOutput<typeof MessageFailedPropertiesSchema>;
|
|
2442
|
+
export type MessageOpenedEvent = InferOutput<typeof MessageOpenedEventSchema>;
|
|
2443
|
+
export type MessageReadEvent = InferOutput<typeof MessageReadEventSchema>;
|
|
2444
|
+
export type MessageSentEvent = InferOutput<typeof MessageSentEventSchema>;
|
|
2445
|
+
export type PageViewEvent = InferOutput<typeof PageViewEventSchema>;
|
|
2446
|
+
export type PageViewProperties = InferOutput<typeof PageViewPropertiesSchema>;
|
|
2447
|
+
export type ProductClickEvent = InferOutput<typeof ProductClickEventSchema>;
|
|
2448
|
+
export type ProductClickProperties = InferOutput<typeof ProductClickPropertiesSchema>;
|
|
2449
|
+
export type ProductImpressionEvent = InferOutput<typeof ProductImpressionEventSchema>;
|
|
2450
|
+
export type ProductImpressionProperties = InferOutput<typeof ProductImpressionPropertiesSchema>;
|
|
2451
|
+
export type ProductViewEvent = InferOutput<typeof ProductViewEventSchema>;
|
|
2452
|
+
export type ProductViewProperties = InferOutput<typeof ProductViewPropertiesSchema>;
|
|
2453
|
+
export type PurchaseEvent = InferOutput<typeof PurchaseEventSchema>;
|
|
2454
|
+
export type PurchaseProduct = InferOutput<typeof PurchaseProductSchema>;
|
|
2455
|
+
export type PurchaseProperties = InferOutput<typeof PurchasePropertiesSchema>;
|
|
2456
|
+
export type QRScannedEvent = InferOutput<typeof QRScannedEventSchema>;
|
|
2457
|
+
export type QRScannedProperties = InferOutput<typeof QRScannedPropertiesSchema>;
|
|
2458
|
+
export type RemoveFromCartEvent = InferOutput<typeof RemoveFromCartEventSchema>;
|
|
2459
|
+
export type RemoveFromCartProperties = InferOutput<typeof RemoveFromCartPropertiesSchema>;
|
|
2460
|
+
export type SearchSubmittedEvent = InferOutput<typeof SearchSubmittedEventSchema>;
|
|
2461
|
+
export type SearchSubmittedProperties = InferOutput<typeof SearchSubmittedPropertiesSchema>;
|
|
2462
|
+
export type ViewCartEvent = InferOutput<typeof ViewCartEventSchema>;
|
|
2463
|
+
export type ViewCartProperties = InferOutput<typeof ViewCartPropertiesSchema>;
|
|
2464
|
+
type EnrichedField = "organizationId" | "eventId" | "eventTimestamp" | "eventTimestampNs";
|
|
2465
|
+
type MakeOptional<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;
|
|
2466
|
+
type DistributiveMakeOptional<T, K extends PropertyKey> = T extends unknown ? MakeOptional<T, Extract<K, keyof T>> : never;
|
|
2467
|
+
export type BeaconEventInput = DistributiveMakeOptional<BeaconEvent, EnrichedField>;
|
|
2468
|
+
export declare function deserializeBeaconEvent(serialized: string): BeaconEvent;
|