@keystrokehq/segment 0.0.1
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/README.md +232 -0
- package/dist/_official/index.d.mts +2 -0
- package/dist/_official/index.mjs +3 -0
- package/dist/_runtime/index.d.mts +1 -0
- package/dist/_runtime/index.mjs +1 -0
- package/dist/audiences.d.mts +282 -0
- package/dist/audiences.mjs +205 -0
- package/dist/client.d.mts +90 -0
- package/dist/client.mjs +337 -0
- package/dist/common-CdGiJbjq.mjs +56 -0
- package/dist/computed-traits.d.mts +215 -0
- package/dist/computed-traits.mjs +149 -0
- package/dist/connection.d.mts +2 -0
- package/dist/connection.mjs +3 -0
- package/dist/crud-SWa_79Hg.mjs +140 -0
- package/dist/deletion-suppression.d.mts +191 -0
- package/dist/deletion-suppression.mjs +103 -0
- package/dist/delivery-overview.d.mts +79 -0
- package/dist/delivery-overview.mjs +54 -0
- package/dist/destination-filters.d.mts +190 -0
- package/dist/destination-filters.mjs +115 -0
- package/dist/destinations.d.mts +473 -0
- package/dist/destinations.mjs +257 -0
- package/dist/edge-functions.d.mts +168 -0
- package/dist/edge-functions.mjs +72 -0
- package/dist/errors-4FGnrowW.mjs +27 -0
- package/dist/events-catalog.d.mts +111 -0
- package/dist/events-catalog.mjs +65 -0
- package/dist/events.d.mts +167 -0
- package/dist/events.mjs +134 -0
- package/dist/factory-CvfKfzMq.mjs +8 -0
- package/dist/functions.d.mts +347 -0
- package/dist/functions.mjs +180 -0
- package/dist/iam-groups.d.mts +284 -0
- package/dist/iam-groups.mjs +144 -0
- package/dist/iam-users.d.mts +205 -0
- package/dist/iam-users.mjs +91 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.mjs +1 -0
- package/dist/integration-B5zYasBZ.mjs +25 -0
- package/dist/integration-D2yRaKFR.d.mts +67 -0
- package/dist/labels.d.mts +100 -0
- package/dist/labels.mjs +58 -0
- package/dist/monitoring.d.mts +182 -0
- package/dist/monitoring.mjs +88 -0
- package/dist/profiles-sync.d.mts +127 -0
- package/dist/profiles-sync.mjs +89 -0
- package/dist/profiles.d.mts +197 -0
- package/dist/profiles.mjs +137 -0
- package/dist/reverse-etl.d.mts +448 -0
- package/dist/reverse-etl.mjs +228 -0
- package/dist/roles.d.mts +48 -0
- package/dist/roles.mjs +25 -0
- package/dist/schemas/index.d.mts +57 -0
- package/dist/schemas/index.mjs +3 -0
- package/dist/sources.d.mts +560 -0
- package/dist/sources.mjs +259 -0
- package/dist/tracking-plans.d.mts +351 -0
- package/dist/tracking-plans.mjs +160 -0
- package/dist/tracking.d.mts +499 -0
- package/dist/tracking.mjs +255 -0
- package/dist/transformations.d.mts +188 -0
- package/dist/transformations.mjs +83 -0
- package/dist/triggers.d.mts +54 -0
- package/dist/triggers.mjs +341 -0
- package/dist/usage.d.mts +70 -0
- package/dist/usage.mjs +55 -0
- package/dist/verification.d.mts +17 -0
- package/dist/verification.mjs +51 -0
- package/dist/warehouses.d.mts +341 -0
- package/dist/warehouses.mjs +176 -0
- package/dist/workspaces.d.mts +95 -0
- package/dist/workspaces.mjs +67 -0
- package/package.json +188 -0
|
@@ -0,0 +1,257 @@
|
|
|
1
|
+
import { createSegmentClient } from "./client.mjs";
|
|
2
|
+
import { a as segmentLooseObjectSchema, n as segmentIdSchema } from "./common-CdGiJbjq.mjs";
|
|
3
|
+
import { t as segmentOperation } from "./factory-CvfKfzMq.mjs";
|
|
4
|
+
import { n as crudList, r as crudMutate, t as crudGet } from "./crud-SWa_79Hg.mjs";
|
|
5
|
+
import { z } from "zod";
|
|
6
|
+
|
|
7
|
+
//#region src/destinations.ts
|
|
8
|
+
/**
|
|
9
|
+
* segment/destinations.ts — destination CRUD + catalog metadata +
|
|
10
|
+
* subscription CRUD + delivery metrics + event delivery failures.
|
|
11
|
+
* 14 actions total (PLAN.md § 6.3).
|
|
12
|
+
*/
|
|
13
|
+
const destinationSchema = segmentLooseObjectSchema({
|
|
14
|
+
id: segmentIdSchema,
|
|
15
|
+
name: z.string().optional(),
|
|
16
|
+
enabled: z.boolean().optional(),
|
|
17
|
+
sourceId: z.string().optional(),
|
|
18
|
+
metadata: z.record(z.string(), z.unknown()).optional(),
|
|
19
|
+
settings: z.record(z.string(), z.unknown()).optional()
|
|
20
|
+
});
|
|
21
|
+
const destinationMetadataSchema = segmentLooseObjectSchema({
|
|
22
|
+
id: segmentIdSchema,
|
|
23
|
+
name: z.string().optional(),
|
|
24
|
+
description: z.string().optional(),
|
|
25
|
+
categories: z.array(z.string()).optional(),
|
|
26
|
+
website: z.string().optional()
|
|
27
|
+
});
|
|
28
|
+
const subscriptionSchema = segmentLooseObjectSchema({
|
|
29
|
+
id: segmentIdSchema,
|
|
30
|
+
name: z.string().optional(),
|
|
31
|
+
enabled: z.boolean().optional(),
|
|
32
|
+
actionId: z.string().optional(),
|
|
33
|
+
actionSlug: z.string().optional(),
|
|
34
|
+
trigger: z.string().optional(),
|
|
35
|
+
settings: z.record(z.string(), z.unknown()).optional()
|
|
36
|
+
});
|
|
37
|
+
const deliveryMetricsSchema = segmentLooseObjectSchema({
|
|
38
|
+
totalDelivered: z.number().optional(),
|
|
39
|
+
totalFailed: z.number().optional(),
|
|
40
|
+
totalRetried: z.number().optional(),
|
|
41
|
+
metrics: z.array(z.record(z.string(), z.unknown())).optional()
|
|
42
|
+
});
|
|
43
|
+
const deliveryFailureSchema = segmentLooseObjectSchema({
|
|
44
|
+
messageId: z.string().optional(),
|
|
45
|
+
eventType: z.string().optional(),
|
|
46
|
+
failureReason: z.string().optional(),
|
|
47
|
+
timestamp: z.string().optional()
|
|
48
|
+
});
|
|
49
|
+
const listDestinations = crudList({
|
|
50
|
+
id: "segment.destinations.list",
|
|
51
|
+
name: "List destinations",
|
|
52
|
+
description: "Paginated list of Segment destinations.",
|
|
53
|
+
path: "/destinations",
|
|
54
|
+
itemsKey: "destinations",
|
|
55
|
+
item: destinationSchema,
|
|
56
|
+
extraInput: { sourceId: z.string().optional() }
|
|
57
|
+
});
|
|
58
|
+
const getDestination = crudGet({
|
|
59
|
+
id: "segment.destinations.get",
|
|
60
|
+
name: "Get destination",
|
|
61
|
+
description: "Fetch a destination by id.",
|
|
62
|
+
path: "/destinations/{id}",
|
|
63
|
+
output: destinationSchema,
|
|
64
|
+
unwrapKey: "destination"
|
|
65
|
+
});
|
|
66
|
+
const createDestination = crudMutate({
|
|
67
|
+
id: "segment.destinations.create",
|
|
68
|
+
name: "Create destination",
|
|
69
|
+
description: "Create a Segment destination attached to a source.",
|
|
70
|
+
method: "POST",
|
|
71
|
+
path: "/destinations",
|
|
72
|
+
bodyShape: {
|
|
73
|
+
name: z.string().min(1),
|
|
74
|
+
sourceId: z.string().min(1),
|
|
75
|
+
metadata: z.record(z.string(), z.unknown()).optional(),
|
|
76
|
+
settings: z.record(z.string(), z.unknown()).optional(),
|
|
77
|
+
enabled: z.boolean().optional()
|
|
78
|
+
},
|
|
79
|
+
output: destinationSchema,
|
|
80
|
+
unwrapKey: "destination"
|
|
81
|
+
});
|
|
82
|
+
const updateDestination = crudMutate({
|
|
83
|
+
id: "segment.destinations.update",
|
|
84
|
+
name: "Update destination",
|
|
85
|
+
description: "Patch a destination.",
|
|
86
|
+
method: "PATCH",
|
|
87
|
+
path: "/destinations/{id}",
|
|
88
|
+
bodyShape: {
|
|
89
|
+
name: z.string().optional(),
|
|
90
|
+
enabled: z.boolean().optional(),
|
|
91
|
+
settings: z.record(z.string(), z.unknown()).optional()
|
|
92
|
+
},
|
|
93
|
+
output: destinationSchema,
|
|
94
|
+
unwrapKey: "destination"
|
|
95
|
+
});
|
|
96
|
+
const deleteDestination = crudMutate({
|
|
97
|
+
id: "segment.destinations.delete",
|
|
98
|
+
name: "Delete destination",
|
|
99
|
+
description: "Delete a destination.",
|
|
100
|
+
method: "DELETE",
|
|
101
|
+
path: "/destinations/{id}",
|
|
102
|
+
output: z.object({}).catchall(z.unknown())
|
|
103
|
+
});
|
|
104
|
+
const listDestinationMetadata = crudList({
|
|
105
|
+
id: "segment.destinations.listMetadata",
|
|
106
|
+
name: "List destination catalog entries",
|
|
107
|
+
description: "Public destination catalog — every destination type Segment supports.",
|
|
108
|
+
path: "/catalog/destinations",
|
|
109
|
+
itemsKey: "destinationsCatalog",
|
|
110
|
+
item: destinationMetadataSchema
|
|
111
|
+
});
|
|
112
|
+
const getDestinationMetadata = crudGet({
|
|
113
|
+
id: "segment.destinations.getMetadata",
|
|
114
|
+
name: "Get destination catalog entry",
|
|
115
|
+
description: "Fetch a destination catalog entry by id.",
|
|
116
|
+
path: "/catalog/destinations/{id}",
|
|
117
|
+
output: destinationMetadataSchema,
|
|
118
|
+
unwrapKey: "destinationMetadata"
|
|
119
|
+
});
|
|
120
|
+
const listSubscriptions = segmentOperation({
|
|
121
|
+
id: "segment.destinations.listSubscriptions",
|
|
122
|
+
name: "List subscriptions",
|
|
123
|
+
description: "List the action subscriptions (actions-based destinations).",
|
|
124
|
+
input: z.object({ id: segmentIdSchema }),
|
|
125
|
+
output: z.object({ items: z.array(subscriptionSchema) }),
|
|
126
|
+
run: async (input, credentials) => {
|
|
127
|
+
const rec = await createSegmentClient(credentials).publicApi.request(`/destinations/${encodeURIComponent(input.id)}/subscriptions`);
|
|
128
|
+
return { items: (rec.data?.subscriptions ?? rec.subscriptions ?? []).map((entry) => subscriptionSchema.parse(entry)) };
|
|
129
|
+
}
|
|
130
|
+
});
|
|
131
|
+
const createSubscription = crudMutate({
|
|
132
|
+
id: "segment.destinations.createSubscription",
|
|
133
|
+
name: "Create subscription",
|
|
134
|
+
description: "Create a destination action subscription.",
|
|
135
|
+
method: "POST",
|
|
136
|
+
path: "/destinations/{id}/subscriptions",
|
|
137
|
+
includeId: true,
|
|
138
|
+
idField: "id",
|
|
139
|
+
bodyShape: {
|
|
140
|
+
name: z.string().min(1),
|
|
141
|
+
actionId: z.string().min(1),
|
|
142
|
+
trigger: z.string().optional(),
|
|
143
|
+
settings: z.record(z.string(), z.unknown()).optional(),
|
|
144
|
+
enabled: z.boolean().optional()
|
|
145
|
+
},
|
|
146
|
+
output: subscriptionSchema,
|
|
147
|
+
unwrapKey: "subscription"
|
|
148
|
+
});
|
|
149
|
+
const updateSubscription = segmentOperation({
|
|
150
|
+
id: "segment.destinations.updateSubscription",
|
|
151
|
+
name: "Update subscription",
|
|
152
|
+
description: "Patch an action subscription on a destination.",
|
|
153
|
+
input: z.object({
|
|
154
|
+
destinationId: segmentIdSchema,
|
|
155
|
+
subscriptionId: segmentIdSchema,
|
|
156
|
+
name: z.string().optional(),
|
|
157
|
+
enabled: z.boolean().optional(),
|
|
158
|
+
settings: z.record(z.string(), z.unknown()).optional()
|
|
159
|
+
}),
|
|
160
|
+
output: subscriptionSchema,
|
|
161
|
+
needsApproval: true,
|
|
162
|
+
run: async (input, credentials) => {
|
|
163
|
+
const client = createSegmentClient(credentials);
|
|
164
|
+
const { destinationId, subscriptionId, ...body } = input;
|
|
165
|
+
const response = await client.publicApi.request(`/destinations/${encodeURIComponent(destinationId)}/subscriptions/${encodeURIComponent(subscriptionId)}`, {
|
|
166
|
+
method: "PATCH",
|
|
167
|
+
body
|
|
168
|
+
});
|
|
169
|
+
const rec = response;
|
|
170
|
+
return subscriptionSchema.parse(rec.data?.subscription ?? response);
|
|
171
|
+
}
|
|
172
|
+
});
|
|
173
|
+
const deleteSubscription = segmentOperation({
|
|
174
|
+
id: "segment.destinations.deleteSubscription",
|
|
175
|
+
name: "Delete subscription",
|
|
176
|
+
description: "Delete an action subscription from a destination.",
|
|
177
|
+
input: z.object({
|
|
178
|
+
destinationId: segmentIdSchema,
|
|
179
|
+
subscriptionId: segmentIdSchema
|
|
180
|
+
}),
|
|
181
|
+
output: z.object({ deleted: z.literal(true) }),
|
|
182
|
+
needsApproval: true,
|
|
183
|
+
run: async (input, credentials) => {
|
|
184
|
+
await createSegmentClient(credentials).publicApi.request(`/destinations/${encodeURIComponent(input.destinationId)}/subscriptions/${encodeURIComponent(input.subscriptionId)}`, { method: "DELETE" });
|
|
185
|
+
return { deleted: true };
|
|
186
|
+
}
|
|
187
|
+
});
|
|
188
|
+
const listDeliveryMetricsSummary = segmentOperation({
|
|
189
|
+
id: "segment.destinations.listDeliveryMetricsSummary",
|
|
190
|
+
name: "List delivery metrics summary",
|
|
191
|
+
description: "Summary of delivery metrics per destination over a window.",
|
|
192
|
+
input: z.object({
|
|
193
|
+
id: segmentIdSchema,
|
|
194
|
+
startTime: z.iso.datetime({ offset: true }).optional(),
|
|
195
|
+
endTime: z.iso.datetime({ offset: true }).optional()
|
|
196
|
+
}),
|
|
197
|
+
output: deliveryMetricsSchema,
|
|
198
|
+
run: async (input, credentials) => {
|
|
199
|
+
const body = await createSegmentClient(credentials).publicApi.request(`/destinations/${encodeURIComponent(input.id)}/delivery-metrics/summary`, { query: {
|
|
200
|
+
startTime: input.startTime,
|
|
201
|
+
endTime: input.endTime
|
|
202
|
+
} });
|
|
203
|
+
const rec = body;
|
|
204
|
+
return deliveryMetricsSchema.parse(rec.data ?? body);
|
|
205
|
+
}
|
|
206
|
+
});
|
|
207
|
+
const listDeliveryMetricsSeries = segmentOperation({
|
|
208
|
+
id: "segment.destinations.listDeliveryMetricsSeries",
|
|
209
|
+
name: "List delivery metrics series",
|
|
210
|
+
description: "Time-series delivery metrics per destination.",
|
|
211
|
+
input: z.object({
|
|
212
|
+
id: segmentIdSchema,
|
|
213
|
+
startTime: z.iso.datetime({ offset: true }).optional(),
|
|
214
|
+
endTime: z.iso.datetime({ offset: true }).optional(),
|
|
215
|
+
granularity: z.string().optional()
|
|
216
|
+
}),
|
|
217
|
+
output: deliveryMetricsSchema,
|
|
218
|
+
run: async (input, credentials) => {
|
|
219
|
+
const body = await createSegmentClient(credentials).publicApi.request(`/destinations/${encodeURIComponent(input.id)}/delivery-metrics/series`, { query: {
|
|
220
|
+
startTime: input.startTime,
|
|
221
|
+
endTime: input.endTime,
|
|
222
|
+
granularity: input.granularity
|
|
223
|
+
} });
|
|
224
|
+
const rec = body;
|
|
225
|
+
return deliveryMetricsSchema.parse(rec.data ?? body);
|
|
226
|
+
}
|
|
227
|
+
});
|
|
228
|
+
const listEventDeliveryFailures = segmentOperation({
|
|
229
|
+
id: "segment.destinations.listEventDeliveryFailures",
|
|
230
|
+
name: "List event delivery failures",
|
|
231
|
+
description: "Recent delivery failures for events dispatched to a destination.",
|
|
232
|
+
input: z.object({
|
|
233
|
+
id: segmentIdSchema,
|
|
234
|
+
pageSize: z.number().int().positive().max(200).optional(),
|
|
235
|
+
pageToken: z.string().optional()
|
|
236
|
+
}),
|
|
237
|
+
output: z.object({
|
|
238
|
+
items: z.array(deliveryFailureSchema),
|
|
239
|
+
nextPageToken: z.string().optional()
|
|
240
|
+
}),
|
|
241
|
+
run: async (input, credentials) => {
|
|
242
|
+
const result = await createSegmentClient(credentials).publicApi.list(`/destinations/${encodeURIComponent(input.id)}/event-delivery/failures`, {
|
|
243
|
+
itemsKey: "failures",
|
|
244
|
+
items: deliveryFailureSchema
|
|
245
|
+
}, { query: {
|
|
246
|
+
count: input.pageSize,
|
|
247
|
+
cursor: input.pageToken
|
|
248
|
+
} });
|
|
249
|
+
return {
|
|
250
|
+
items: [...result.items],
|
|
251
|
+
...result.nextPageToken !== void 0 ? { nextPageToken: result.nextPageToken } : {}
|
|
252
|
+
};
|
|
253
|
+
}
|
|
254
|
+
});
|
|
255
|
+
|
|
256
|
+
//#endregion
|
|
257
|
+
export { createDestination, createSubscription, deleteDestination, deleteSubscription, destinationSchema, getDestination, getDestinationMetadata, listDeliveryMetricsSeries, listDeliveryMetricsSummary, listDestinationMetadata, listDestinations, listEventDeliveryFailures, listSubscriptions, updateDestination, updateSubscription };
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
import * as _keystrokehq_core_credential_set0 from "@keystrokehq/core/credential-set";
|
|
3
|
+
import * as _keystrokehq_core0 from "@keystrokehq/core";
|
|
4
|
+
|
|
5
|
+
//#region src/edge-functions.d.ts
|
|
6
|
+
declare const edgeFunctionSchema: z.ZodObject<{
|
|
7
|
+
id: z.ZodString;
|
|
8
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
9
|
+
description: z.ZodOptional<z.ZodString>;
|
|
10
|
+
code: z.ZodOptional<z.ZodString>;
|
|
11
|
+
deployedVersion: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
12
|
+
}, z.core.$catchall<z.ZodUnknown>>;
|
|
13
|
+
declare const listEdgeFunctions: _keystrokehq_core0.Operation<z.ZodIntersection<z.ZodObject<{
|
|
14
|
+
pageSize: z.ZodOptional<z.ZodNumber>;
|
|
15
|
+
pageToken: z.ZodOptional<z.ZodString>;
|
|
16
|
+
}, z.core.$strip>, z.ZodObject<{}, z.core.$strip>>, z.ZodObject<{
|
|
17
|
+
items: z.ZodArray<z.ZodObject<{
|
|
18
|
+
id: z.ZodString;
|
|
19
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
20
|
+
description: z.ZodOptional<z.ZodString>;
|
|
21
|
+
code: z.ZodOptional<z.ZodString>;
|
|
22
|
+
deployedVersion: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
23
|
+
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
24
|
+
nextPageToken: z.ZodOptional<z.ZodString>;
|
|
25
|
+
totalEntries: z.ZodOptional<z.ZodNumber>;
|
|
26
|
+
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"segment", z.ZodObject<{
|
|
27
|
+
SEGMENT_PUBLIC_API_TOKEN: z.ZodString;
|
|
28
|
+
SEGMENT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
29
|
+
us: "us";
|
|
30
|
+
eu: "eu";
|
|
31
|
+
}>>;
|
|
32
|
+
SEGMENT_DEFAULT_WRITE_KEY: z.ZodOptional<z.ZodString>;
|
|
33
|
+
SEGMENT_WRITE_KEYS_JSON: z.ZodOptional<z.ZodString>;
|
|
34
|
+
SEGMENT_PROFILE_API_TOKEN: z.ZodOptional<z.ZodString>;
|
|
35
|
+
SEGMENT_PROFILE_SPACE_ID: z.ZodOptional<z.ZodString>;
|
|
36
|
+
SEGMENT_WEBHOOK_SHARED_SECRET: z.ZodOptional<z.ZodString>;
|
|
37
|
+
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
38
|
+
SEGMENT_PUBLIC_API_TOKEN: z.ZodString;
|
|
39
|
+
SEGMENT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
40
|
+
us: "us";
|
|
41
|
+
eu: "eu";
|
|
42
|
+
}>>;
|
|
43
|
+
SEGMENT_DEFAULT_WRITE_KEY: z.ZodOptional<z.ZodString>;
|
|
44
|
+
SEGMENT_WRITE_KEYS_JSON: z.ZodOptional<z.ZodString>;
|
|
45
|
+
SEGMENT_PROFILE_API_TOKEN: z.ZodOptional<z.ZodString>;
|
|
46
|
+
SEGMENT_PROFILE_SPACE_ID: z.ZodOptional<z.ZodString>;
|
|
47
|
+
SEGMENT_WEBHOOK_SHARED_SECRET: z.ZodOptional<z.ZodString>;
|
|
48
|
+
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
49
|
+
declare const getEdgeFunction: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
50
|
+
[x: string]: z.core.$ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
51
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
52
|
+
id: z.ZodString;
|
|
53
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
54
|
+
description: z.ZodOptional<z.ZodString>;
|
|
55
|
+
code: z.ZodOptional<z.ZodString>;
|
|
56
|
+
deployedVersion: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
57
|
+
}, z.core.$catchall<z.ZodUnknown>>, readonly [_keystrokehq_core0.CredentialSet<"segment", z.ZodObject<{
|
|
58
|
+
SEGMENT_PUBLIC_API_TOKEN: z.ZodString;
|
|
59
|
+
SEGMENT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
60
|
+
us: "us";
|
|
61
|
+
eu: "eu";
|
|
62
|
+
}>>;
|
|
63
|
+
SEGMENT_DEFAULT_WRITE_KEY: z.ZodOptional<z.ZodString>;
|
|
64
|
+
SEGMENT_WRITE_KEYS_JSON: z.ZodOptional<z.ZodString>;
|
|
65
|
+
SEGMENT_PROFILE_API_TOKEN: z.ZodOptional<z.ZodString>;
|
|
66
|
+
SEGMENT_PROFILE_SPACE_ID: z.ZodOptional<z.ZodString>;
|
|
67
|
+
SEGMENT_WEBHOOK_SHARED_SECRET: z.ZodOptional<z.ZodString>;
|
|
68
|
+
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
69
|
+
SEGMENT_PUBLIC_API_TOKEN: z.ZodString;
|
|
70
|
+
SEGMENT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
71
|
+
us: "us";
|
|
72
|
+
eu: "eu";
|
|
73
|
+
}>>;
|
|
74
|
+
SEGMENT_DEFAULT_WRITE_KEY: z.ZodOptional<z.ZodString>;
|
|
75
|
+
SEGMENT_WRITE_KEYS_JSON: z.ZodOptional<z.ZodString>;
|
|
76
|
+
SEGMENT_PROFILE_API_TOKEN: z.ZodOptional<z.ZodString>;
|
|
77
|
+
SEGMENT_PROFILE_SPACE_ID: z.ZodOptional<z.ZodString>;
|
|
78
|
+
SEGMENT_WEBHOOK_SHARED_SECRET: z.ZodOptional<z.ZodString>;
|
|
79
|
+
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
80
|
+
declare const upsertEdgeFunction: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
81
|
+
[x: string]: z.core.$ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
82
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
83
|
+
id: z.ZodString;
|
|
84
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
85
|
+
description: z.ZodOptional<z.ZodString>;
|
|
86
|
+
code: z.ZodOptional<z.ZodString>;
|
|
87
|
+
deployedVersion: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
88
|
+
}, z.core.$catchall<z.ZodUnknown>>, readonly [_keystrokehq_core0.CredentialSet<"segment", z.ZodObject<{
|
|
89
|
+
SEGMENT_PUBLIC_API_TOKEN: z.ZodString;
|
|
90
|
+
SEGMENT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
91
|
+
us: "us";
|
|
92
|
+
eu: "eu";
|
|
93
|
+
}>>;
|
|
94
|
+
SEGMENT_DEFAULT_WRITE_KEY: z.ZodOptional<z.ZodString>;
|
|
95
|
+
SEGMENT_WRITE_KEYS_JSON: z.ZodOptional<z.ZodString>;
|
|
96
|
+
SEGMENT_PROFILE_API_TOKEN: z.ZodOptional<z.ZodString>;
|
|
97
|
+
SEGMENT_PROFILE_SPACE_ID: z.ZodOptional<z.ZodString>;
|
|
98
|
+
SEGMENT_WEBHOOK_SHARED_SECRET: z.ZodOptional<z.ZodString>;
|
|
99
|
+
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
100
|
+
SEGMENT_PUBLIC_API_TOKEN: z.ZodString;
|
|
101
|
+
SEGMENT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
102
|
+
us: "us";
|
|
103
|
+
eu: "eu";
|
|
104
|
+
}>>;
|
|
105
|
+
SEGMENT_DEFAULT_WRITE_KEY: z.ZodOptional<z.ZodString>;
|
|
106
|
+
SEGMENT_WRITE_KEYS_JSON: z.ZodOptional<z.ZodString>;
|
|
107
|
+
SEGMENT_PROFILE_API_TOKEN: z.ZodOptional<z.ZodString>;
|
|
108
|
+
SEGMENT_PROFILE_SPACE_ID: z.ZodOptional<z.ZodString>;
|
|
109
|
+
SEGMENT_WEBHOOK_SHARED_SECRET: z.ZodOptional<z.ZodString>;
|
|
110
|
+
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
111
|
+
declare const deleteEdgeFunction: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
112
|
+
[x: string]: z.core.$ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>;
|
|
113
|
+
}, z.core.$strip>, z.ZodObject<{}, z.core.$catchall<z.ZodUnknown>>, readonly [_keystrokehq_core0.CredentialSet<"segment", z.ZodObject<{
|
|
114
|
+
SEGMENT_PUBLIC_API_TOKEN: z.ZodString;
|
|
115
|
+
SEGMENT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
116
|
+
us: "us";
|
|
117
|
+
eu: "eu";
|
|
118
|
+
}>>;
|
|
119
|
+
SEGMENT_DEFAULT_WRITE_KEY: z.ZodOptional<z.ZodString>;
|
|
120
|
+
SEGMENT_WRITE_KEYS_JSON: z.ZodOptional<z.ZodString>;
|
|
121
|
+
SEGMENT_PROFILE_API_TOKEN: z.ZodOptional<z.ZodString>;
|
|
122
|
+
SEGMENT_PROFILE_SPACE_ID: z.ZodOptional<z.ZodString>;
|
|
123
|
+
SEGMENT_WEBHOOK_SHARED_SECRET: z.ZodOptional<z.ZodString>;
|
|
124
|
+
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
125
|
+
SEGMENT_PUBLIC_API_TOKEN: z.ZodString;
|
|
126
|
+
SEGMENT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
127
|
+
us: "us";
|
|
128
|
+
eu: "eu";
|
|
129
|
+
}>>;
|
|
130
|
+
SEGMENT_DEFAULT_WRITE_KEY: z.ZodOptional<z.ZodString>;
|
|
131
|
+
SEGMENT_WRITE_KEYS_JSON: z.ZodOptional<z.ZodString>;
|
|
132
|
+
SEGMENT_PROFILE_API_TOKEN: z.ZodOptional<z.ZodString>;
|
|
133
|
+
SEGMENT_PROFILE_SPACE_ID: z.ZodOptional<z.ZodString>;
|
|
134
|
+
SEGMENT_WEBHOOK_SHARED_SECRET: z.ZodOptional<z.ZodString>;
|
|
135
|
+
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
136
|
+
declare const deployEdgeFunction: _keystrokehq_core0.Operation<z.ZodObject<{
|
|
137
|
+
id: z.ZodString;
|
|
138
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
139
|
+
id: z.ZodString;
|
|
140
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
141
|
+
description: z.ZodOptional<z.ZodString>;
|
|
142
|
+
code: z.ZodOptional<z.ZodString>;
|
|
143
|
+
deployedVersion: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
144
|
+
}, z.core.$catchall<z.ZodUnknown>>, readonly [_keystrokehq_core0.CredentialSet<"segment", z.ZodObject<{
|
|
145
|
+
SEGMENT_PUBLIC_API_TOKEN: z.ZodString;
|
|
146
|
+
SEGMENT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
147
|
+
us: "us";
|
|
148
|
+
eu: "eu";
|
|
149
|
+
}>>;
|
|
150
|
+
SEGMENT_DEFAULT_WRITE_KEY: z.ZodOptional<z.ZodString>;
|
|
151
|
+
SEGMENT_WRITE_KEYS_JSON: z.ZodOptional<z.ZodString>;
|
|
152
|
+
SEGMENT_PROFILE_API_TOKEN: z.ZodOptional<z.ZodString>;
|
|
153
|
+
SEGMENT_PROFILE_SPACE_ID: z.ZodOptional<z.ZodString>;
|
|
154
|
+
SEGMENT_WEBHOOK_SHARED_SECRET: z.ZodOptional<z.ZodString>;
|
|
155
|
+
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
156
|
+
SEGMENT_PUBLIC_API_TOKEN: z.ZodString;
|
|
157
|
+
SEGMENT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
158
|
+
us: "us";
|
|
159
|
+
eu: "eu";
|
|
160
|
+
}>>;
|
|
161
|
+
SEGMENT_DEFAULT_WRITE_KEY: z.ZodOptional<z.ZodString>;
|
|
162
|
+
SEGMENT_WRITE_KEYS_JSON: z.ZodOptional<z.ZodString>;
|
|
163
|
+
SEGMENT_PROFILE_API_TOKEN: z.ZodOptional<z.ZodString>;
|
|
164
|
+
SEGMENT_PROFILE_SPACE_ID: z.ZodOptional<z.ZodString>;
|
|
165
|
+
SEGMENT_WEBHOOK_SHARED_SECRET: z.ZodOptional<z.ZodString>;
|
|
166
|
+
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
167
|
+
//#endregion
|
|
168
|
+
export { deleteEdgeFunction, deployEdgeFunction, edgeFunctionSchema, getEdgeFunction, listEdgeFunctions, upsertEdgeFunction };
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import { createSegmentClient } from "./client.mjs";
|
|
2
|
+
import { a as segmentLooseObjectSchema, n as segmentIdSchema } from "./common-CdGiJbjq.mjs";
|
|
3
|
+
import { t as segmentOperation } from "./factory-CvfKfzMq.mjs";
|
|
4
|
+
import { n as crudList, r as crudMutate, t as crudGet } from "./crud-SWa_79Hg.mjs";
|
|
5
|
+
import { z } from "zod";
|
|
6
|
+
|
|
7
|
+
//#region src/edge-functions.ts
|
|
8
|
+
/**
|
|
9
|
+
* segment/edge-functions.ts — Twilio Engage Edge Functions. 5 actions
|
|
10
|
+
* (PLAN § 6.17).
|
|
11
|
+
*/
|
|
12
|
+
const edgeFunctionSchema = segmentLooseObjectSchema({
|
|
13
|
+
id: segmentIdSchema,
|
|
14
|
+
displayName: z.string().optional(),
|
|
15
|
+
description: z.string().optional(),
|
|
16
|
+
code: z.string().optional(),
|
|
17
|
+
deployedVersion: z.union([z.number(), z.string()]).optional()
|
|
18
|
+
});
|
|
19
|
+
const listEdgeFunctions = crudList({
|
|
20
|
+
id: "segment.edgeFunctions.list",
|
|
21
|
+
name: "List edge functions",
|
|
22
|
+
description: "List Engage Edge Functions in the workspace.",
|
|
23
|
+
path: "/edge-functions",
|
|
24
|
+
itemsKey: "edgeFunctions",
|
|
25
|
+
item: edgeFunctionSchema
|
|
26
|
+
});
|
|
27
|
+
const getEdgeFunction = crudGet({
|
|
28
|
+
id: "segment.edgeFunctions.get",
|
|
29
|
+
name: "Get edge function",
|
|
30
|
+
description: "Fetch an Edge Function by id.",
|
|
31
|
+
path: "/edge-functions/{id}",
|
|
32
|
+
output: edgeFunctionSchema,
|
|
33
|
+
unwrapKey: "edgeFunction"
|
|
34
|
+
});
|
|
35
|
+
const upsertEdgeFunction = crudMutate({
|
|
36
|
+
id: "segment.edgeFunctions.upsert",
|
|
37
|
+
name: "Upsert edge function",
|
|
38
|
+
description: "Create or replace an Edge Function by id.",
|
|
39
|
+
method: "PUT",
|
|
40
|
+
path: "/edge-functions/{id}",
|
|
41
|
+
bodyShape: {
|
|
42
|
+
displayName: z.string().optional(),
|
|
43
|
+
description: z.string().optional(),
|
|
44
|
+
code: z.string().min(1)
|
|
45
|
+
},
|
|
46
|
+
output: edgeFunctionSchema,
|
|
47
|
+
unwrapKey: "edgeFunction"
|
|
48
|
+
});
|
|
49
|
+
const deleteEdgeFunction = crudMutate({
|
|
50
|
+
id: "segment.edgeFunctions.delete",
|
|
51
|
+
name: "Delete edge function",
|
|
52
|
+
description: "Delete an Edge Function.",
|
|
53
|
+
method: "DELETE",
|
|
54
|
+
path: "/edge-functions/{id}",
|
|
55
|
+
output: z.object({}).catchall(z.unknown())
|
|
56
|
+
});
|
|
57
|
+
const deployEdgeFunction = segmentOperation({
|
|
58
|
+
id: "segment.edgeFunctions.deploy",
|
|
59
|
+
name: "Deploy edge function",
|
|
60
|
+
description: "Deploy the current code of an Edge Function.",
|
|
61
|
+
input: z.object({ id: segmentIdSchema }),
|
|
62
|
+
output: edgeFunctionSchema,
|
|
63
|
+
needsApproval: true,
|
|
64
|
+
run: async (input, credentials) => {
|
|
65
|
+
const body = await createSegmentClient(credentials).publicApi.request(`/edge-functions/${encodeURIComponent(input.id)}/deploy`, { method: "POST" });
|
|
66
|
+
const rec = body;
|
|
67
|
+
return edgeFunctionSchema.parse(rec.data?.edgeFunction ?? body);
|
|
68
|
+
}
|
|
69
|
+
});
|
|
70
|
+
|
|
71
|
+
//#endregion
|
|
72
|
+
export { deleteEdgeFunction, deployEdgeFunction, edgeFunctionSchema, getEdgeFunction, listEdgeFunctions, upsertEdgeFunction };
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
//#region src/errors.ts
|
|
2
|
+
var SegmentApiError = class extends Error {
|
|
3
|
+
kind;
|
|
4
|
+
status;
|
|
5
|
+
requestId;
|
|
6
|
+
code;
|
|
7
|
+
retryable;
|
|
8
|
+
body;
|
|
9
|
+
constructor(init) {
|
|
10
|
+
super(init.message, init.cause !== void 0 ? { cause: init.cause } : void 0);
|
|
11
|
+
this.name = "SegmentApiError";
|
|
12
|
+
this.kind = init.kind;
|
|
13
|
+
this.status = init.status;
|
|
14
|
+
this.requestId = init.requestId;
|
|
15
|
+
this.code = init.code;
|
|
16
|
+
this.retryable = init.retryable ?? defaultRetryable(init.kind, init.status);
|
|
17
|
+
this.body = init.body;
|
|
18
|
+
}
|
|
19
|
+
};
|
|
20
|
+
function defaultRetryable(kind, status) {
|
|
21
|
+
if (kind === "rate_limit" || kind === "network") return true;
|
|
22
|
+
if (kind === "http" && typeof status === "number" && status >= 500 && status < 600) return true;
|
|
23
|
+
return false;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
//#endregion
|
|
27
|
+
export { SegmentApiError as t };
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
import * as _keystrokehq_core_credential_set0 from "@keystrokehq/core/credential-set";
|
|
3
|
+
import * as _keystrokehq_core0 from "@keystrokehq/core";
|
|
4
|
+
|
|
5
|
+
//#region src/events-catalog.d.ts
|
|
6
|
+
declare const listEventVolume: _keystrokehq_core0.Operation<z.ZodIntersection<z.ZodObject<{
|
|
7
|
+
pageSize: z.ZodOptional<z.ZodNumber>;
|
|
8
|
+
pageToken: z.ZodOptional<z.ZodString>;
|
|
9
|
+
}, z.core.$strip>, z.ZodObject<{}, z.core.$strip>>, z.ZodObject<{
|
|
10
|
+
items: z.ZodArray<z.ZodObject<{
|
|
11
|
+
sourceId: z.ZodOptional<z.ZodString>;
|
|
12
|
+
date: z.ZodOptional<z.ZodString>;
|
|
13
|
+
eventName: z.ZodOptional<z.ZodString>;
|
|
14
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
15
|
+
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
16
|
+
nextPageToken: z.ZodOptional<z.ZodString>;
|
|
17
|
+
totalEntries: z.ZodOptional<z.ZodNumber>;
|
|
18
|
+
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"segment", z.ZodObject<{
|
|
19
|
+
SEGMENT_PUBLIC_API_TOKEN: z.ZodString;
|
|
20
|
+
SEGMENT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
21
|
+
us: "us";
|
|
22
|
+
eu: "eu";
|
|
23
|
+
}>>;
|
|
24
|
+
SEGMENT_DEFAULT_WRITE_KEY: z.ZodOptional<z.ZodString>;
|
|
25
|
+
SEGMENT_WRITE_KEYS_JSON: z.ZodOptional<z.ZodString>;
|
|
26
|
+
SEGMENT_PROFILE_API_TOKEN: z.ZodOptional<z.ZodString>;
|
|
27
|
+
SEGMENT_PROFILE_SPACE_ID: z.ZodOptional<z.ZodString>;
|
|
28
|
+
SEGMENT_WEBHOOK_SHARED_SECRET: z.ZodOptional<z.ZodString>;
|
|
29
|
+
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
30
|
+
SEGMENT_PUBLIC_API_TOKEN: z.ZodString;
|
|
31
|
+
SEGMENT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
32
|
+
us: "us";
|
|
33
|
+
eu: "eu";
|
|
34
|
+
}>>;
|
|
35
|
+
SEGMENT_DEFAULT_WRITE_KEY: z.ZodOptional<z.ZodString>;
|
|
36
|
+
SEGMENT_WRITE_KEYS_JSON: z.ZodOptional<z.ZodString>;
|
|
37
|
+
SEGMENT_PROFILE_API_TOKEN: z.ZodOptional<z.ZodString>;
|
|
38
|
+
SEGMENT_PROFILE_SPACE_ID: z.ZodOptional<z.ZodString>;
|
|
39
|
+
SEGMENT_WEBHOOK_SHARED_SECRET: z.ZodOptional<z.ZodString>;
|
|
40
|
+
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
41
|
+
declare const listEventViolations: _keystrokehq_core0.Operation<z.ZodIntersection<z.ZodObject<{
|
|
42
|
+
pageSize: z.ZodOptional<z.ZodNumber>;
|
|
43
|
+
pageToken: z.ZodOptional<z.ZodString>;
|
|
44
|
+
}, z.core.$strip>, z.ZodObject<{}, z.core.$strip>>, z.ZodObject<{
|
|
45
|
+
items: z.ZodArray<z.ZodObject<{
|
|
46
|
+
eventName: z.ZodOptional<z.ZodString>;
|
|
47
|
+
violationCount: z.ZodOptional<z.ZodNumber>;
|
|
48
|
+
sourceId: z.ZodOptional<z.ZodString>;
|
|
49
|
+
trackingPlanId: z.ZodOptional<z.ZodString>;
|
|
50
|
+
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
51
|
+
nextPageToken: z.ZodOptional<z.ZodString>;
|
|
52
|
+
totalEntries: z.ZodOptional<z.ZodNumber>;
|
|
53
|
+
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"segment", z.ZodObject<{
|
|
54
|
+
SEGMENT_PUBLIC_API_TOKEN: z.ZodString;
|
|
55
|
+
SEGMENT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
56
|
+
us: "us";
|
|
57
|
+
eu: "eu";
|
|
58
|
+
}>>;
|
|
59
|
+
SEGMENT_DEFAULT_WRITE_KEY: z.ZodOptional<z.ZodString>;
|
|
60
|
+
SEGMENT_WRITE_KEYS_JSON: z.ZodOptional<z.ZodString>;
|
|
61
|
+
SEGMENT_PROFILE_API_TOKEN: z.ZodOptional<z.ZodString>;
|
|
62
|
+
SEGMENT_PROFILE_SPACE_ID: z.ZodOptional<z.ZodString>;
|
|
63
|
+
SEGMENT_WEBHOOK_SHARED_SECRET: z.ZodOptional<z.ZodString>;
|
|
64
|
+
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
65
|
+
SEGMENT_PUBLIC_API_TOKEN: z.ZodString;
|
|
66
|
+
SEGMENT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
67
|
+
us: "us";
|
|
68
|
+
eu: "eu";
|
|
69
|
+
}>>;
|
|
70
|
+
SEGMENT_DEFAULT_WRITE_KEY: z.ZodOptional<z.ZodString>;
|
|
71
|
+
SEGMENT_WRITE_KEYS_JSON: z.ZodOptional<z.ZodString>;
|
|
72
|
+
SEGMENT_PROFILE_API_TOKEN: z.ZodOptional<z.ZodString>;
|
|
73
|
+
SEGMENT_PROFILE_SPACE_ID: z.ZodOptional<z.ZodString>;
|
|
74
|
+
SEGMENT_WEBHOOK_SHARED_SECRET: z.ZodOptional<z.ZodString>;
|
|
75
|
+
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
76
|
+
declare const listEventSchema: _keystrokehq_core0.Operation<z.ZodIntersection<z.ZodObject<{
|
|
77
|
+
pageSize: z.ZodOptional<z.ZodNumber>;
|
|
78
|
+
pageToken: z.ZodOptional<z.ZodString>;
|
|
79
|
+
}, z.core.$strip>, z.ZodObject<{}, z.core.$strip>>, z.ZodObject<{
|
|
80
|
+
items: z.ZodArray<z.ZodObject<{
|
|
81
|
+
eventName: z.ZodOptional<z.ZodString>;
|
|
82
|
+
schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
83
|
+
sourceId: z.ZodOptional<z.ZodString>;
|
|
84
|
+
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
85
|
+
nextPageToken: z.ZodOptional<z.ZodString>;
|
|
86
|
+
totalEntries: z.ZodOptional<z.ZodNumber>;
|
|
87
|
+
}, z.core.$strip>, readonly [_keystrokehq_core0.CredentialSet<"segment", z.ZodObject<{
|
|
88
|
+
SEGMENT_PUBLIC_API_TOKEN: z.ZodString;
|
|
89
|
+
SEGMENT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
90
|
+
us: "us";
|
|
91
|
+
eu: "eu";
|
|
92
|
+
}>>;
|
|
93
|
+
SEGMENT_DEFAULT_WRITE_KEY: z.ZodOptional<z.ZodString>;
|
|
94
|
+
SEGMENT_WRITE_KEYS_JSON: z.ZodOptional<z.ZodString>;
|
|
95
|
+
SEGMENT_PROFILE_API_TOKEN: z.ZodOptional<z.ZodString>;
|
|
96
|
+
SEGMENT_PROFILE_SPACE_ID: z.ZodOptional<z.ZodString>;
|
|
97
|
+
SEGMENT_WEBHOOK_SHARED_SECRET: z.ZodOptional<z.ZodString>;
|
|
98
|
+
}, z.core.$strip>, readonly _keystrokehq_core_credential_set0.CredentialConnection<z.ZodObject<{
|
|
99
|
+
SEGMENT_PUBLIC_API_TOKEN: z.ZodString;
|
|
100
|
+
SEGMENT_REGION: z.ZodDefault<z.ZodEnum<{
|
|
101
|
+
us: "us";
|
|
102
|
+
eu: "eu";
|
|
103
|
+
}>>;
|
|
104
|
+
SEGMENT_DEFAULT_WRITE_KEY: z.ZodOptional<z.ZodString>;
|
|
105
|
+
SEGMENT_WRITE_KEYS_JSON: z.ZodOptional<z.ZodString>;
|
|
106
|
+
SEGMENT_PROFILE_API_TOKEN: z.ZodOptional<z.ZodString>;
|
|
107
|
+
SEGMENT_PROFILE_SPACE_ID: z.ZodOptional<z.ZodString>;
|
|
108
|
+
SEGMENT_WEBHOOK_SHARED_SECRET: z.ZodOptional<z.ZodString>;
|
|
109
|
+
}, z.core.$strip>>[] | undefined>], undefined>;
|
|
110
|
+
//#endregion
|
|
111
|
+
export { listEventSchema, listEventViolations, listEventVolume };
|