@middlewr/contracts 0.0.40 → 0.0.42

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.
@@ -0,0 +1,373 @@
1
+ import { z } from 'zod';
2
+ export declare const LinkTemplateSchema: z.ZodObject<{
3
+ id: z.ZodString;
4
+ workspace_id: z.ZodString;
5
+ title: z.ZodString;
6
+ description: z.ZodNullable<z.ZodString>;
7
+ rule_graph: z.ZodNullable<z.ZodObject<{
8
+ entry: z.ZodString;
9
+ nodes: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
10
+ id: z.ZodString;
11
+ type: z.ZodLiteral<"condition">;
12
+ position: z.ZodObject<{
13
+ x: z.ZodNumber;
14
+ y: z.ZodNumber;
15
+ }, z.core.$strip>;
16
+ field: z.ZodString;
17
+ operator: z.ZodEnum<{
18
+ eq: "eq";
19
+ neq: "neq";
20
+ in: "in";
21
+ not_in: "not_in";
22
+ contains: "contains";
23
+ not_contains: "not_contains";
24
+ gt: "gt";
25
+ lt: "lt";
26
+ gte: "gte";
27
+ lte: "lte";
28
+ regex: "regex";
29
+ }>;
30
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>, z.ZodNumber]>;
31
+ outputs: z.ZodObject<{
32
+ true: z.ZodNullable<z.ZodString>;
33
+ false: z.ZodNullable<z.ZodString>;
34
+ }, z.core.$strip>;
35
+ }, z.core.$strip>, z.ZodObject<{
36
+ id: z.ZodString;
37
+ type: z.ZodLiteral<"split">;
38
+ position: z.ZodObject<{
39
+ x: z.ZodNumber;
40
+ y: z.ZodNumber;
41
+ }, z.core.$strip>;
42
+ variants: z.ZodArray<z.ZodObject<{
43
+ weight: z.ZodNumber;
44
+ target: z.ZodNullable<z.ZodString>;
45
+ }, z.core.$strip>>;
46
+ }, z.core.$strip>, z.ZodObject<{
47
+ id: z.ZodString;
48
+ type: z.ZodLiteral<"destination">;
49
+ position: z.ZodObject<{
50
+ x: z.ZodNumber;
51
+ y: z.ZodNumber;
52
+ }, z.core.$strip>;
53
+ url: z.ZodString;
54
+ }, z.core.$strip>, z.ZodObject<{
55
+ id: z.ZodString;
56
+ type: z.ZodLiteral<"transform">;
57
+ position: z.ZodObject<{
58
+ x: z.ZodNumber;
59
+ y: z.ZodNumber;
60
+ }, z.core.$strip>;
61
+ transforms: z.ZodObject<{
62
+ query_params: z.ZodOptional<z.ZodArray<z.ZodObject<{
63
+ key: z.ZodString;
64
+ value: z.ZodString;
65
+ mode: z.ZodEnum<{
66
+ set: "set";
67
+ append: "append";
68
+ }>;
69
+ }, z.core.$strip>>>;
70
+ redirect_status: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<301>, z.ZodLiteral<302>, z.ZodLiteral<307>, z.ZodLiteral<308>]>>;
71
+ response_headers: z.ZodOptional<z.ZodArray<z.ZodObject<{
72
+ key: z.ZodString;
73
+ value: z.ZodString;
74
+ mode: z.ZodEnum<{
75
+ set: "set";
76
+ append: "append";
77
+ }>;
78
+ }, z.core.$strip>>>;
79
+ }, z.core.$strip>;
80
+ next: z.ZodNullable<z.ZodString>;
81
+ }, z.core.$strip>, z.ZodObject<{
82
+ id: z.ZodString;
83
+ type: z.ZodLiteral<"password">;
84
+ position: z.ZodObject<{
85
+ x: z.ZodNumber;
86
+ y: z.ZodNumber;
87
+ }, z.core.$strip>;
88
+ next: z.ZodNullable<z.ZodString>;
89
+ }, z.core.$strip>], "type">>;
90
+ }, z.core.$strip>>;
91
+ created_at: z.ZodCoercedDate<unknown>;
92
+ updated_at: z.ZodNullable<z.ZodCoercedDate<unknown>>;
93
+ }, z.core.$strip>;
94
+ export declare const CreateLinkTemplateInputSchema: z.ZodObject<{
95
+ title: z.ZodString;
96
+ description: z.ZodOptional<z.ZodString>;
97
+ rule_graph: z.ZodNullable<z.ZodObject<{
98
+ entry: z.ZodString;
99
+ nodes: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
100
+ id: z.ZodString;
101
+ type: z.ZodLiteral<"condition">;
102
+ position: z.ZodObject<{
103
+ x: z.ZodNumber;
104
+ y: z.ZodNumber;
105
+ }, z.core.$strip>;
106
+ field: z.ZodString;
107
+ operator: z.ZodEnum<{
108
+ eq: "eq";
109
+ neq: "neq";
110
+ in: "in";
111
+ not_in: "not_in";
112
+ contains: "contains";
113
+ not_contains: "not_contains";
114
+ gt: "gt";
115
+ lt: "lt";
116
+ gte: "gte";
117
+ lte: "lte";
118
+ regex: "regex";
119
+ }>;
120
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>, z.ZodNumber]>;
121
+ outputs: z.ZodObject<{
122
+ true: z.ZodNullable<z.ZodString>;
123
+ false: z.ZodNullable<z.ZodString>;
124
+ }, z.core.$strip>;
125
+ }, z.core.$strip>, z.ZodObject<{
126
+ id: z.ZodString;
127
+ type: z.ZodLiteral<"split">;
128
+ position: z.ZodObject<{
129
+ x: z.ZodNumber;
130
+ y: z.ZodNumber;
131
+ }, z.core.$strip>;
132
+ variants: z.ZodArray<z.ZodObject<{
133
+ weight: z.ZodNumber;
134
+ target: z.ZodNullable<z.ZodString>;
135
+ }, z.core.$strip>>;
136
+ }, z.core.$strip>, z.ZodObject<{
137
+ id: z.ZodString;
138
+ type: z.ZodLiteral<"destination">;
139
+ position: z.ZodObject<{
140
+ x: z.ZodNumber;
141
+ y: z.ZodNumber;
142
+ }, z.core.$strip>;
143
+ url: z.ZodString;
144
+ }, z.core.$strip>, z.ZodObject<{
145
+ id: z.ZodString;
146
+ type: z.ZodLiteral<"transform">;
147
+ position: z.ZodObject<{
148
+ x: z.ZodNumber;
149
+ y: z.ZodNumber;
150
+ }, z.core.$strip>;
151
+ transforms: z.ZodObject<{
152
+ query_params: z.ZodOptional<z.ZodArray<z.ZodObject<{
153
+ key: z.ZodString;
154
+ value: z.ZodString;
155
+ mode: z.ZodEnum<{
156
+ set: "set";
157
+ append: "append";
158
+ }>;
159
+ }, z.core.$strip>>>;
160
+ redirect_status: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<301>, z.ZodLiteral<302>, z.ZodLiteral<307>, z.ZodLiteral<308>]>>;
161
+ response_headers: z.ZodOptional<z.ZodArray<z.ZodObject<{
162
+ key: z.ZodString;
163
+ value: z.ZodString;
164
+ mode: z.ZodEnum<{
165
+ set: "set";
166
+ append: "append";
167
+ }>;
168
+ }, z.core.$strip>>>;
169
+ }, z.core.$strip>;
170
+ next: z.ZodNullable<z.ZodString>;
171
+ }, z.core.$strip>, z.ZodObject<{
172
+ id: z.ZodString;
173
+ type: z.ZodLiteral<"password">;
174
+ position: z.ZodObject<{
175
+ x: z.ZodNumber;
176
+ y: z.ZodNumber;
177
+ }, z.core.$strip>;
178
+ next: z.ZodNullable<z.ZodString>;
179
+ }, z.core.$strip>], "type">>;
180
+ }, z.core.$strip>>;
181
+ }, z.core.$strip>;
182
+ export declare const UpdateLinkTemplateInputSchema: z.ZodObject<{
183
+ title: z.ZodOptional<z.ZodString>;
184
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
185
+ rule_graph: z.ZodOptional<z.ZodNullable<z.ZodObject<{
186
+ entry: z.ZodString;
187
+ nodes: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
188
+ id: z.ZodString;
189
+ type: z.ZodLiteral<"condition">;
190
+ position: z.ZodObject<{
191
+ x: z.ZodNumber;
192
+ y: z.ZodNumber;
193
+ }, z.core.$strip>;
194
+ field: z.ZodString;
195
+ operator: z.ZodEnum<{
196
+ eq: "eq";
197
+ neq: "neq";
198
+ in: "in";
199
+ not_in: "not_in";
200
+ contains: "contains";
201
+ not_contains: "not_contains";
202
+ gt: "gt";
203
+ lt: "lt";
204
+ gte: "gte";
205
+ lte: "lte";
206
+ regex: "regex";
207
+ }>;
208
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>, z.ZodNumber]>;
209
+ outputs: z.ZodObject<{
210
+ true: z.ZodNullable<z.ZodString>;
211
+ false: z.ZodNullable<z.ZodString>;
212
+ }, z.core.$strip>;
213
+ }, z.core.$strip>, z.ZodObject<{
214
+ id: z.ZodString;
215
+ type: z.ZodLiteral<"split">;
216
+ position: z.ZodObject<{
217
+ x: z.ZodNumber;
218
+ y: z.ZodNumber;
219
+ }, z.core.$strip>;
220
+ variants: z.ZodArray<z.ZodObject<{
221
+ weight: z.ZodNumber;
222
+ target: z.ZodNullable<z.ZodString>;
223
+ }, z.core.$strip>>;
224
+ }, z.core.$strip>, z.ZodObject<{
225
+ id: z.ZodString;
226
+ type: z.ZodLiteral<"destination">;
227
+ position: z.ZodObject<{
228
+ x: z.ZodNumber;
229
+ y: z.ZodNumber;
230
+ }, z.core.$strip>;
231
+ url: z.ZodString;
232
+ }, z.core.$strip>, z.ZodObject<{
233
+ id: z.ZodString;
234
+ type: z.ZodLiteral<"transform">;
235
+ position: z.ZodObject<{
236
+ x: z.ZodNumber;
237
+ y: z.ZodNumber;
238
+ }, z.core.$strip>;
239
+ transforms: z.ZodObject<{
240
+ query_params: z.ZodOptional<z.ZodArray<z.ZodObject<{
241
+ key: z.ZodString;
242
+ value: z.ZodString;
243
+ mode: z.ZodEnum<{
244
+ set: "set";
245
+ append: "append";
246
+ }>;
247
+ }, z.core.$strip>>>;
248
+ redirect_status: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<301>, z.ZodLiteral<302>, z.ZodLiteral<307>, z.ZodLiteral<308>]>>;
249
+ response_headers: z.ZodOptional<z.ZodArray<z.ZodObject<{
250
+ key: z.ZodString;
251
+ value: z.ZodString;
252
+ mode: z.ZodEnum<{
253
+ set: "set";
254
+ append: "append";
255
+ }>;
256
+ }, z.core.$strip>>>;
257
+ }, z.core.$strip>;
258
+ next: z.ZodNullable<z.ZodString>;
259
+ }, z.core.$strip>, z.ZodObject<{
260
+ id: z.ZodString;
261
+ type: z.ZodLiteral<"password">;
262
+ position: z.ZodObject<{
263
+ x: z.ZodNumber;
264
+ y: z.ZodNumber;
265
+ }, z.core.$strip>;
266
+ next: z.ZodNullable<z.ZodString>;
267
+ }, z.core.$strip>], "type">>;
268
+ }, z.core.$strip>>>;
269
+ }, z.core.$strip>;
270
+ export declare const LinkTemplateFiltersSchema: z.ZodObject<{
271
+ search: z.ZodOptional<z.ZodString>;
272
+ page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
273
+ per_page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
274
+ }, z.core.$strip>;
275
+ export declare const PaginatedLinkTemplatesSchema: z.ZodObject<{
276
+ link_templates: z.ZodArray<z.ZodObject<{
277
+ id: z.ZodString;
278
+ workspace_id: z.ZodString;
279
+ title: z.ZodString;
280
+ description: z.ZodNullable<z.ZodString>;
281
+ rule_graph: z.ZodNullable<z.ZodObject<{
282
+ entry: z.ZodString;
283
+ nodes: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
284
+ id: z.ZodString;
285
+ type: z.ZodLiteral<"condition">;
286
+ position: z.ZodObject<{
287
+ x: z.ZodNumber;
288
+ y: z.ZodNumber;
289
+ }, z.core.$strip>;
290
+ field: z.ZodString;
291
+ operator: z.ZodEnum<{
292
+ eq: "eq";
293
+ neq: "neq";
294
+ in: "in";
295
+ not_in: "not_in";
296
+ contains: "contains";
297
+ not_contains: "not_contains";
298
+ gt: "gt";
299
+ lt: "lt";
300
+ gte: "gte";
301
+ lte: "lte";
302
+ regex: "regex";
303
+ }>;
304
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>, z.ZodNumber]>;
305
+ outputs: z.ZodObject<{
306
+ true: z.ZodNullable<z.ZodString>;
307
+ false: z.ZodNullable<z.ZodString>;
308
+ }, z.core.$strip>;
309
+ }, z.core.$strip>, z.ZodObject<{
310
+ id: z.ZodString;
311
+ type: z.ZodLiteral<"split">;
312
+ position: z.ZodObject<{
313
+ x: z.ZodNumber;
314
+ y: z.ZodNumber;
315
+ }, z.core.$strip>;
316
+ variants: z.ZodArray<z.ZodObject<{
317
+ weight: z.ZodNumber;
318
+ target: z.ZodNullable<z.ZodString>;
319
+ }, z.core.$strip>>;
320
+ }, z.core.$strip>, z.ZodObject<{
321
+ id: z.ZodString;
322
+ type: z.ZodLiteral<"destination">;
323
+ position: z.ZodObject<{
324
+ x: z.ZodNumber;
325
+ y: z.ZodNumber;
326
+ }, z.core.$strip>;
327
+ url: z.ZodString;
328
+ }, z.core.$strip>, z.ZodObject<{
329
+ id: z.ZodString;
330
+ type: z.ZodLiteral<"transform">;
331
+ position: z.ZodObject<{
332
+ x: z.ZodNumber;
333
+ y: z.ZodNumber;
334
+ }, z.core.$strip>;
335
+ transforms: z.ZodObject<{
336
+ query_params: z.ZodOptional<z.ZodArray<z.ZodObject<{
337
+ key: z.ZodString;
338
+ value: z.ZodString;
339
+ mode: z.ZodEnum<{
340
+ set: "set";
341
+ append: "append";
342
+ }>;
343
+ }, z.core.$strip>>>;
344
+ redirect_status: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<301>, z.ZodLiteral<302>, z.ZodLiteral<307>, z.ZodLiteral<308>]>>;
345
+ response_headers: z.ZodOptional<z.ZodArray<z.ZodObject<{
346
+ key: z.ZodString;
347
+ value: z.ZodString;
348
+ mode: z.ZodEnum<{
349
+ set: "set";
350
+ append: "append";
351
+ }>;
352
+ }, z.core.$strip>>>;
353
+ }, z.core.$strip>;
354
+ next: z.ZodNullable<z.ZodString>;
355
+ }, z.core.$strip>, z.ZodObject<{
356
+ id: z.ZodString;
357
+ type: z.ZodLiteral<"password">;
358
+ position: z.ZodObject<{
359
+ x: z.ZodNumber;
360
+ y: z.ZodNumber;
361
+ }, z.core.$strip>;
362
+ next: z.ZodNullable<z.ZodString>;
363
+ }, z.core.$strip>], "type">>;
364
+ }, z.core.$strip>>;
365
+ created_at: z.ZodCoercedDate<unknown>;
366
+ updated_at: z.ZodNullable<z.ZodCoercedDate<unknown>>;
367
+ }, z.core.$strip>>;
368
+ total: z.ZodNumber;
369
+ page: z.ZodNumber;
370
+ per_page: z.ZodNumber;
371
+ total_pages: z.ZodNumber;
372
+ }, z.core.$strip>;
373
+ //# sourceMappingURL=link-templates.schema.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"link-templates.schema.d.ts","sourceRoot":"","sources":["../../src/link-templates.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAQ7B,CAAC;AAEH,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAIxC,CAAC;AAEH,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAIxC,CAAC;AAEH,eAAO,MAAM,yBAAyB;;;;iBAIpC,CAAC;AAEH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAMvC,CAAC"}
@@ -155,6 +155,14 @@ export declare const LinkSchema: z.ZodObject<{
155
155
  }, z.core.$strip>>>;
156
156
  }, z.core.$strip>;
157
157
  next: z.ZodNullable<z.ZodString>;
158
+ }, z.core.$strip>, z.ZodObject<{
159
+ id: z.ZodString;
160
+ type: z.ZodLiteral<"password">;
161
+ position: z.ZodObject<{
162
+ x: z.ZodNumber;
163
+ y: z.ZodNumber;
164
+ }, z.core.$strip>;
165
+ next: z.ZodNullable<z.ZodString>;
158
166
  }, z.core.$strip>], "type">>;
159
167
  }, z.core.$strip>>>;
160
168
  tags: z.ZodArray<z.ZodObject<{
@@ -287,6 +295,14 @@ export declare const CreateLinkInputSchema: z.ZodObject<{
287
295
  }, z.core.$strip>>>;
288
296
  }, z.core.$strip>;
289
297
  next: z.ZodNullable<z.ZodString>;
298
+ }, z.core.$strip>, z.ZodObject<{
299
+ id: z.ZodString;
300
+ type: z.ZodLiteral<"password">;
301
+ position: z.ZodObject<{
302
+ x: z.ZodNumber;
303
+ y: z.ZodNumber;
304
+ }, z.core.$strip>;
305
+ next: z.ZodNullable<z.ZodString>;
290
306
  }, z.core.$strip>], "type">>;
291
307
  }, z.core.$strip>>>;
292
308
  }, z.core.$strip>;
@@ -412,6 +428,14 @@ export declare const UpdateLinkInputSchema: z.ZodObject<{
412
428
  }, z.core.$strip>>>;
413
429
  }, z.core.$strip>;
414
430
  next: z.ZodNullable<z.ZodString>;
431
+ }, z.core.$strip>, z.ZodObject<{
432
+ id: z.ZodString;
433
+ type: z.ZodLiteral<"password">;
434
+ position: z.ZodObject<{
435
+ x: z.ZodNumber;
436
+ y: z.ZodNumber;
437
+ }, z.core.$strip>;
438
+ next: z.ZodNullable<z.ZodString>;
415
439
  }, z.core.$strip>], "type">>;
416
440
  }, z.core.$strip>>>;
417
441
  }, z.core.$strip>;
@@ -437,8 +461,8 @@ export declare const LinkFiltersSchema: z.ZodObject<{
437
461
  tag_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
438
462
  sort_by: z.ZodDefault<z.ZodEnum<{
439
463
  created_at: "created_at";
440
- original_url: "original_url";
441
464
  title: "title";
465
+ original_url: "original_url";
442
466
  click_count: "click_count";
443
467
  }>>;
444
468
  sort_order: z.ZodDefault<z.ZodEnum<{
@@ -449,12 +473,12 @@ export declare const LinkFiltersSchema: z.ZodObject<{
449
473
  per_page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
450
474
  }, z.core.$strip>;
451
475
  export declare const ExportLinksFiltersSchema: z.ZodObject<{
476
+ search: z.ZodOptional<z.ZodString>;
452
477
  is_active: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodBoolean, z.ZodEnum<{
453
478
  true: "true";
454
479
  false: "false";
455
480
  }>]>, z.ZodTransform<boolean, boolean | "true" | "false">>>;
456
481
  tag_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
457
- search: z.ZodOptional<z.ZodString>;
458
482
  domain_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
459
483
  has_expiration: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodBoolean, z.ZodEnum<{
460
484
  true: "true";
@@ -470,8 +494,8 @@ export declare const ExportLinksFiltersSchema: z.ZodObject<{
470
494
  expires_to: z.ZodOptional<z.ZodCoercedDate<unknown>>;
471
495
  sort_by: z.ZodDefault<z.ZodEnum<{
472
496
  created_at: "created_at";
473
- original_url: "original_url";
474
497
  title: "title";
498
+ original_url: "original_url";
475
499
  click_count: "click_count";
476
500
  }>>;
477
501
  sort_order: z.ZodDefault<z.ZodEnum<{
@@ -610,6 +634,14 @@ export declare const PaginatedLinksSchema: z.ZodObject<{
610
634
  }, z.core.$strip>>>;
611
635
  }, z.core.$strip>;
612
636
  next: z.ZodNullable<z.ZodString>;
637
+ }, z.core.$strip>, z.ZodObject<{
638
+ id: z.ZodString;
639
+ type: z.ZodLiteral<"password">;
640
+ position: z.ZodObject<{
641
+ x: z.ZodNumber;
642
+ y: z.ZodNumber;
643
+ }, z.core.$strip>;
644
+ next: z.ZodNullable<z.ZodString>;
613
645
  }, z.core.$strip>], "type">>;
614
646
  }, z.core.$strip>>>;
615
647
  tags: z.ZodArray<z.ZodObject<{
@@ -1 +1 @@
1
- {"version":3,"file":"links.schema.d.ts","sourceRoot":"","sources":["../../src/links.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AASxB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;iBAW/B,CAAC;AAEH,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBA8BrB,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAiC5B,CAAC;AAEP,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAkC5B,CAAC;AAMP,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAe5B,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAAyD,CAAC;AAE/F,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAM/B,CAAC;AAEH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;iBAYxB,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;iBAG/B,CAAC"}
1
+ {"version":3,"file":"links.schema.d.ts","sourceRoot":"","sources":["../../src/links.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AASxB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;iBAW/B,CAAC;AAEH,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBA8BrB,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAiC5B,CAAC;AAEP,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAkC5B,CAAC;AAMP,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAe5B,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAAyD,CAAC;AAE/F,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAM/B,CAAC;AAEH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;iBAYxB,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;iBAG/B,CAAC"}
@@ -71,6 +71,14 @@ export declare const RuleGraphNodeSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
71
71
  }, z.core.$strip>>>;
72
72
  }, z.core.$strip>;
73
73
  next: z.ZodNullable<z.ZodString>;
74
+ }, z.core.$strip>, z.ZodObject<{
75
+ id: z.ZodString;
76
+ type: z.ZodLiteral<"password">;
77
+ position: z.ZodObject<{
78
+ x: z.ZodNumber;
79
+ y: z.ZodNumber;
80
+ }, z.core.$strip>;
81
+ next: z.ZodNullable<z.ZodString>;
74
82
  }, z.core.$strip>], "type">;
75
83
  export declare const RuleGraphSchema: z.ZodNullable<z.ZodObject<{
76
84
  entry: z.ZodString;
@@ -146,6 +154,14 @@ export declare const RuleGraphSchema: z.ZodNullable<z.ZodObject<{
146
154
  }, z.core.$strip>>>;
147
155
  }, z.core.$strip>;
148
156
  next: z.ZodNullable<z.ZodString>;
157
+ }, z.core.$strip>, z.ZodObject<{
158
+ id: z.ZodString;
159
+ type: z.ZodLiteral<"password">;
160
+ position: z.ZodObject<{
161
+ x: z.ZodNumber;
162
+ y: z.ZodNumber;
163
+ }, z.core.$strip>;
164
+ next: z.ZodNullable<z.ZodString>;
149
165
  }, z.core.$strip>], "type">>;
150
166
  }, z.core.$strip>>;
151
167
  //# sourceMappingURL=rules.schema.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"rules.schema.d.ts","sourceRoot":"","sources":["../../src/rules.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAiFxB,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAK9B,CAAC;AAEH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBASb,CAAC"}
1
+ {"version":3,"file":"rules.schema.d.ts","sourceRoot":"","sources":["../../src/rules.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAwFxB,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAM9B,CAAC;AAEH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBASb,CAAC"}
@@ -32,6 +32,10 @@ export declare const WorkspaceApiKeyIdParamSchema: z.ZodObject<{
32
32
  workspace_id: z.ZodString;
33
33
  api_key_id: z.ZodString;
34
34
  }, z.core.$strip>;
35
+ export declare const LinkTemplateIdParamSchema: z.ZodObject<{
36
+ workspace_id: z.ZodString;
37
+ link_template_id: z.ZodString;
38
+ }, z.core.$strip>;
35
39
  export declare const TokenParamSchema: z.ZodObject<{
36
40
  token: z.ZodString;
37
41
  }, z.core.$strip>;
@@ -1 +1 @@
1
- {"version":3,"file":"common.schema.d.ts","sourceRoot":"","sources":["../../src/common.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,sBAAsB;;iBAEjC,CAAC;AAEH,eAAO,MAAM,iBAAiB;;;iBAG5B,CAAC;AAEH,eAAO,MAAM,gBAAgB;;;iBAG3B,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;iBAG9B,CAAC;AAEH,eAAO,MAAM,uBAAuB;;;iBAGlC,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;iBAG9B,CAAC;AAEH,eAAO,MAAM,iBAAiB;;iBAE5B,CAAC;AAEH,eAAO,MAAM,mBAAmB;;iBAE9B,CAAC;AAEH,eAAO,MAAM,4BAA4B;;;iBAGvC,CAAC;AAEH,eAAO,MAAM,gBAAgB;;iBAE3B,CAAC"}
1
+ {"version":3,"file":"common.schema.d.ts","sourceRoot":"","sources":["../../src/common.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,sBAAsB;;iBAEjC,CAAC;AAEH,eAAO,MAAM,iBAAiB;;;iBAG5B,CAAC;AAEH,eAAO,MAAM,gBAAgB;;;iBAG3B,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;iBAG9B,CAAC;AAEH,eAAO,MAAM,uBAAuB;;;iBAGlC,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;iBAG9B,CAAC;AAEH,eAAO,MAAM,iBAAiB;;iBAE5B,CAAC;AAEH,eAAO,MAAM,mBAAmB;;iBAE9B,CAAC;AAEH,eAAO,MAAM,4BAA4B;;;iBAGvC,CAAC;AAEH,eAAO,MAAM,yBAAyB;;;iBAGpC,CAAC;AAEH,eAAO,MAAM,gBAAgB;;iBAE3B,CAAC"}