@keystrokehq/segment 0.0.5 → 0.0.6-rename-t1.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.
|
@@ -20,9 +20,9 @@ declare const suppressionSchema: z.ZodObject<{
|
|
|
20
20
|
declare const createUserDeletion: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
21
21
|
subjectIds: z.ZodArray<z.ZodString>;
|
|
22
22
|
subjectType: z.ZodDefault<z.ZodEnum<{
|
|
23
|
+
email: "email";
|
|
23
24
|
userId: "userId";
|
|
24
25
|
anonymousId: "anonymousId";
|
|
25
|
-
email: "email";
|
|
26
26
|
}>>;
|
|
27
27
|
}, z.core.$strip>, z.ZodObject<{
|
|
28
28
|
id: z.ZodString;
|
|
@@ -57,9 +57,9 @@ declare const createUserDeletion: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
57
57
|
declare const createSuppression: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
58
58
|
subjectIds: z.ZodArray<z.ZodString>;
|
|
59
59
|
subjectType: z.ZodDefault<z.ZodEnum<{
|
|
60
|
+
email: "email";
|
|
60
61
|
userId: "userId";
|
|
61
62
|
anonymousId: "anonymousId";
|
|
62
|
-
email: "email";
|
|
63
63
|
}>>;
|
|
64
64
|
}, z.core.$strip>, z.ZodObject<{
|
|
65
65
|
id: z.ZodString;
|
package/dist/reverse-etl.d.mts
CHANGED
|
@@ -16,10 +16,10 @@ declare const reverseEtlRunSchema: z.ZodObject<{
|
|
|
16
16
|
id: z.ZodString;
|
|
17
17
|
modelId: z.ZodOptional<z.ZodString>;
|
|
18
18
|
status: z.ZodOptional<z.ZodEnum<{
|
|
19
|
+
PENDING: "PENDING";
|
|
19
20
|
IN_PROGRESS: "IN_PROGRESS";
|
|
20
21
|
SUCCEEDED: "SUCCEEDED";
|
|
21
22
|
FAILED: "FAILED";
|
|
22
|
-
PENDING: "PENDING";
|
|
23
23
|
CANCELED: "CANCELED";
|
|
24
24
|
}>>;
|
|
25
25
|
startedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -201,10 +201,10 @@ declare const runReverseEtlModel: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
201
201
|
id: z.ZodString;
|
|
202
202
|
modelId: z.ZodOptional<z.ZodString>;
|
|
203
203
|
status: z.ZodOptional<z.ZodEnum<{
|
|
204
|
+
PENDING: "PENDING";
|
|
204
205
|
IN_PROGRESS: "IN_PROGRESS";
|
|
205
206
|
SUCCEEDED: "SUCCEEDED";
|
|
206
207
|
FAILED: "FAILED";
|
|
207
|
-
PENDING: "PENDING";
|
|
208
208
|
CANCELED: "CANCELED";
|
|
209
209
|
}>>;
|
|
210
210
|
startedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -242,10 +242,10 @@ declare const listReverseEtlRuns: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
242
242
|
id: z.ZodString;
|
|
243
243
|
modelId: z.ZodOptional<z.ZodString>;
|
|
244
244
|
status: z.ZodOptional<z.ZodEnum<{
|
|
245
|
+
PENDING: "PENDING";
|
|
245
246
|
IN_PROGRESS: "IN_PROGRESS";
|
|
246
247
|
SUCCEEDED: "SUCCEEDED";
|
|
247
248
|
FAILED: "FAILED";
|
|
248
|
-
PENDING: "PENDING";
|
|
249
249
|
CANCELED: "CANCELED";
|
|
250
250
|
}>>;
|
|
251
251
|
startedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -283,10 +283,10 @@ declare const getReverseEtlRun: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
|
283
283
|
id: z.ZodString;
|
|
284
284
|
modelId: z.ZodOptional<z.ZodString>;
|
|
285
285
|
status: z.ZodOptional<z.ZodEnum<{
|
|
286
|
+
PENDING: "PENDING";
|
|
286
287
|
IN_PROGRESS: "IN_PROGRESS";
|
|
287
288
|
SUCCEEDED: "SUCCEEDED";
|
|
288
289
|
FAILED: "FAILED";
|
|
289
|
-
PENDING: "PENDING";
|
|
290
290
|
CANCELED: "CANCELED";
|
|
291
291
|
}>>;
|
|
292
292
|
startedAt: z.ZodOptional<z.ZodString>;
|
package/dist/tracking.d.mts
CHANGED
|
@@ -33,11 +33,11 @@ declare const identify: _keystrokehq_core0.Operation<z.ZodIntersection<z.ZodInte
|
|
|
33
33
|
}, z.core.$strip>>, z.ZodObject<{
|
|
34
34
|
sent: z.ZodBoolean;
|
|
35
35
|
method: z.ZodEnum<{
|
|
36
|
+
group: "group";
|
|
36
37
|
page: "page";
|
|
37
38
|
screen: "screen";
|
|
38
39
|
identify: "identify";
|
|
39
40
|
track: "track";
|
|
40
|
-
group: "group";
|
|
41
41
|
alias: "alias";
|
|
42
42
|
}>;
|
|
43
43
|
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:segment", z.ZodObject<{
|
|
@@ -94,11 +94,11 @@ declare const track: _keystrokehq_core0.Operation<z.ZodIntersection<z.ZodInterse
|
|
|
94
94
|
}, z.core.$strip>>, z.ZodObject<{
|
|
95
95
|
sent: z.ZodBoolean;
|
|
96
96
|
method: z.ZodEnum<{
|
|
97
|
+
group: "group";
|
|
97
98
|
page: "page";
|
|
98
99
|
screen: "screen";
|
|
99
100
|
identify: "identify";
|
|
100
101
|
track: "track";
|
|
101
|
-
group: "group";
|
|
102
102
|
alias: "alias";
|
|
103
103
|
}>;
|
|
104
104
|
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:segment", z.ZodObject<{
|
|
@@ -156,11 +156,11 @@ declare const page: _keystrokehq_core0.Operation<z.ZodIntersection<z.ZodIntersec
|
|
|
156
156
|
}, z.core.$strip>>, z.ZodObject<{
|
|
157
157
|
sent: z.ZodBoolean;
|
|
158
158
|
method: z.ZodEnum<{
|
|
159
|
+
group: "group";
|
|
159
160
|
page: "page";
|
|
160
161
|
screen: "screen";
|
|
161
162
|
identify: "identify";
|
|
162
163
|
track: "track";
|
|
163
|
-
group: "group";
|
|
164
164
|
alias: "alias";
|
|
165
165
|
}>;
|
|
166
166
|
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:segment", z.ZodObject<{
|
|
@@ -218,11 +218,11 @@ declare const screen: _keystrokehq_core0.Operation<z.ZodIntersection<z.ZodInters
|
|
|
218
218
|
}, z.core.$strip>>, z.ZodObject<{
|
|
219
219
|
sent: z.ZodBoolean;
|
|
220
220
|
method: z.ZodEnum<{
|
|
221
|
+
group: "group";
|
|
221
222
|
page: "page";
|
|
222
223
|
screen: "screen";
|
|
223
224
|
identify: "identify";
|
|
224
225
|
track: "track";
|
|
225
|
-
group: "group";
|
|
226
226
|
alias: "alias";
|
|
227
227
|
}>;
|
|
228
228
|
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:segment", z.ZodObject<{
|
|
@@ -279,11 +279,11 @@ declare const group: _keystrokehq_core0.Operation<z.ZodIntersection<z.ZodInterse
|
|
|
279
279
|
}, z.core.$strip>>, z.ZodObject<{
|
|
280
280
|
sent: z.ZodBoolean;
|
|
281
281
|
method: z.ZodEnum<{
|
|
282
|
+
group: "group";
|
|
282
283
|
page: "page";
|
|
283
284
|
screen: "screen";
|
|
284
285
|
identify: "identify";
|
|
285
286
|
track: "track";
|
|
286
|
-
group: "group";
|
|
287
287
|
alias: "alias";
|
|
288
288
|
}>;
|
|
289
289
|
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:segment", z.ZodObject<{
|
|
@@ -337,11 +337,11 @@ declare const alias: _keystrokehq_core0.Operation<z.ZodIntersection<z.ZodObject<
|
|
|
337
337
|
}, z.core.$strip>>, z.ZodObject<{
|
|
338
338
|
sent: z.ZodBoolean;
|
|
339
339
|
method: z.ZodEnum<{
|
|
340
|
+
group: "group";
|
|
340
341
|
page: "page";
|
|
341
342
|
screen: "screen";
|
|
342
343
|
identify: "identify";
|
|
343
344
|
track: "track";
|
|
344
|
-
group: "group";
|
|
345
345
|
alias: "alias";
|
|
346
346
|
}>;
|
|
347
347
|
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:segment", z.ZodObject<{
|
|
@@ -390,11 +390,11 @@ declare const batch: _keystrokehq_core0.Operation<z.ZodIntersection<z.ZodObject<
|
|
|
390
390
|
}, z.core.$strip>, z.ZodObject<{
|
|
391
391
|
events: z.ZodArray<z.ZodObject<{
|
|
392
392
|
type: z.ZodEnum<{
|
|
393
|
+
group: "group";
|
|
393
394
|
page: "page";
|
|
394
395
|
screen: "screen";
|
|
395
396
|
identify: "identify";
|
|
396
397
|
track: "track";
|
|
397
|
-
group: "group";
|
|
398
398
|
alias: "alias";
|
|
399
399
|
}>;
|
|
400
400
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
@@ -402,11 +402,11 @@ declare const batch: _keystrokehq_core0.Operation<z.ZodIntersection<z.ZodObject<
|
|
|
402
402
|
chunksSent: z.ZodNumber;
|
|
403
403
|
rejected: z.ZodArray<z.ZodObject<{
|
|
404
404
|
type: z.ZodEnum<{
|
|
405
|
+
group: "group";
|
|
405
406
|
page: "page";
|
|
406
407
|
screen: "screen";
|
|
407
408
|
identify: "identify";
|
|
408
409
|
track: "track";
|
|
409
|
-
group: "group";
|
|
410
410
|
alias: "alias";
|
|
411
411
|
}>;
|
|
412
412
|
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
@@ -465,11 +465,11 @@ declare const importEvent: _keystrokehq_core0.Operation<z.ZodIntersection<z.ZodI
|
|
|
465
465
|
}, z.core.$strip>>, z.ZodObject<{
|
|
466
466
|
sent: z.ZodBoolean;
|
|
467
467
|
method: z.ZodEnum<{
|
|
468
|
+
group: "group";
|
|
468
469
|
page: "page";
|
|
469
470
|
screen: "screen";
|
|
470
471
|
identify: "identify";
|
|
471
472
|
track: "track";
|
|
472
|
-
group: "group";
|
|
473
473
|
alias: "alias";
|
|
474
474
|
}>;
|
|
475
475
|
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"keystroke:segment", z.ZodObject<{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keystrokehq/segment",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6-rename-t1.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
@@ -144,7 +144,7 @@
|
|
|
144
144
|
"LICENSE"
|
|
145
145
|
],
|
|
146
146
|
"dependencies": {
|
|
147
|
-
"@keystrokehq/integration-authoring": "^0.0.
|
|
147
|
+
"@keystrokehq/integration-authoring": "^0.0.6-rename-t1.0",
|
|
148
148
|
"zod": "^4.3.6"
|
|
149
149
|
},
|
|
150
150
|
"peerDependencies": {
|