telegram-jobs-contract 1.0.14 → 1.0.16

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.
@@ -9,73 +9,43 @@ export declare const channelsContract: {
9
9
  success: z.ZodLiteral<true>;
10
10
  message: z.ZodString;
11
11
  data: z.ZodArray<z.ZodObject<{
12
- id: z.ZodString;
13
12
  username: z.ZodString;
14
13
  title: z.ZodString;
15
14
  description: z.ZodOptional<z.ZodString>;
16
- category: z.ZodOptional<z.ZodString>;
17
- memberCount: z.ZodOptional<z.ZodString>;
18
- isActive: z.ZodBoolean;
19
- isRecommended: z.ZodBoolean;
20
- lastScrapedAt: z.ZodOptional<z.ZodString>;
21
- createdAt: z.ZodString;
22
- updatedAt: z.ZodOptional<z.ZodString>;
15
+ memberCount: z.ZodOptional<z.ZodNumber>;
16
+ isJoined: z.ZodBoolean;
23
17
  }, "strip", z.ZodTypeAny, {
24
- id: string;
25
- createdAt: string;
26
18
  username: string;
27
19
  title: string;
28
- isActive: boolean;
29
- isRecommended: boolean;
20
+ isJoined: boolean;
30
21
  description?: string | undefined;
31
- updatedAt?: string | undefined;
32
- category?: string | undefined;
33
- memberCount?: string | undefined;
34
- lastScrapedAt?: string | undefined;
22
+ memberCount?: number | undefined;
35
23
  }, {
36
- id: string;
37
- createdAt: string;
38
24
  username: string;
39
25
  title: string;
40
- isActive: boolean;
41
- isRecommended: boolean;
26
+ isJoined: boolean;
42
27
  description?: string | undefined;
43
- updatedAt?: string | undefined;
44
- category?: string | undefined;
45
- memberCount?: string | undefined;
46
- lastScrapedAt?: string | undefined;
28
+ memberCount?: number | undefined;
47
29
  }>, "many">;
48
30
  }, "strip", z.ZodTypeAny, {
49
31
  message: string;
50
32
  success: true;
51
33
  data: {
52
- id: string;
53
- createdAt: string;
54
34
  username: string;
55
35
  title: string;
56
- isActive: boolean;
57
- isRecommended: boolean;
36
+ isJoined: boolean;
58
37
  description?: string | undefined;
59
- updatedAt?: string | undefined;
60
- category?: string | undefined;
61
- memberCount?: string | undefined;
62
- lastScrapedAt?: string | undefined;
38
+ memberCount?: number | undefined;
63
39
  }[];
64
40
  }, {
65
41
  message: string;
66
42
  success: true;
67
43
  data: {
68
- id: string;
69
- createdAt: string;
70
44
  username: string;
71
45
  title: string;
72
- isActive: boolean;
73
- isRecommended: boolean;
46
+ isJoined: boolean;
74
47
  description?: string | undefined;
75
- updatedAt?: string | undefined;
76
- category?: string | undefined;
77
- memberCount?: string | undefined;
78
- lastScrapedAt?: string | undefined;
48
+ memberCount?: number | undefined;
79
49
  }[];
80
50
  }>;
81
51
  401: z.ZodObject<{
@@ -115,73 +85,43 @@ export declare const channelsContract: {
115
85
  success: z.ZodLiteral<true>;
116
86
  message: z.ZodString;
117
87
  data: z.ZodArray<z.ZodObject<{
118
- id: z.ZodString;
119
88
  username: z.ZodString;
120
89
  title: z.ZodString;
121
90
  description: z.ZodOptional<z.ZodString>;
122
- category: z.ZodOptional<z.ZodString>;
123
- memberCount: z.ZodOptional<z.ZodString>;
124
- isActive: z.ZodBoolean;
125
- isRecommended: z.ZodBoolean;
126
- lastScrapedAt: z.ZodOptional<z.ZodString>;
127
- createdAt: z.ZodString;
128
- updatedAt: z.ZodOptional<z.ZodString>;
91
+ memberCount: z.ZodOptional<z.ZodNumber>;
92
+ isJoined: z.ZodBoolean;
129
93
  }, "strip", z.ZodTypeAny, {
130
- id: string;
131
- createdAt: string;
132
94
  username: string;
133
95
  title: string;
134
- isActive: boolean;
135
- isRecommended: boolean;
96
+ isJoined: boolean;
136
97
  description?: string | undefined;
137
- updatedAt?: string | undefined;
138
- category?: string | undefined;
139
- memberCount?: string | undefined;
140
- lastScrapedAt?: string | undefined;
98
+ memberCount?: number | undefined;
141
99
  }, {
142
- id: string;
143
- createdAt: string;
144
100
  username: string;
145
101
  title: string;
146
- isActive: boolean;
147
- isRecommended: boolean;
102
+ isJoined: boolean;
148
103
  description?: string | undefined;
149
- updatedAt?: string | undefined;
150
- category?: string | undefined;
151
- memberCount?: string | undefined;
152
- lastScrapedAt?: string | undefined;
104
+ memberCount?: number | undefined;
153
105
  }>, "many">;
154
106
  }, "strip", z.ZodTypeAny, {
155
107
  message: string;
156
108
  success: true;
157
109
  data: {
158
- id: string;
159
- createdAt: string;
160
110
  username: string;
161
111
  title: string;
162
- isActive: boolean;
163
- isRecommended: boolean;
112
+ isJoined: boolean;
164
113
  description?: string | undefined;
165
- updatedAt?: string | undefined;
166
- category?: string | undefined;
167
- memberCount?: string | undefined;
168
- lastScrapedAt?: string | undefined;
114
+ memberCount?: number | undefined;
169
115
  }[];
170
116
  }, {
171
117
  message: string;
172
118
  success: true;
173
119
  data: {
174
- id: string;
175
- createdAt: string;
176
120
  username: string;
177
121
  title: string;
178
- isActive: boolean;
179
- isRecommended: boolean;
122
+ isJoined: boolean;
180
123
  description?: string | undefined;
181
- updatedAt?: string | undefined;
182
- category?: string | undefined;
183
- memberCount?: string | undefined;
184
- lastScrapedAt?: string | undefined;
124
+ memberCount?: number | undefined;
185
125
  }[];
186
126
  }>;
187
127
  401: z.ZodObject<{
@@ -221,73 +161,43 @@ export declare const channelsContract: {
221
161
  success: z.ZodLiteral<true>;
222
162
  message: z.ZodString;
223
163
  data: z.ZodArray<z.ZodObject<{
224
- id: z.ZodString;
225
164
  username: z.ZodString;
226
165
  title: z.ZodString;
227
166
  description: z.ZodOptional<z.ZodString>;
228
- category: z.ZodOptional<z.ZodString>;
229
- memberCount: z.ZodOptional<z.ZodString>;
230
- isActive: z.ZodBoolean;
231
- isRecommended: z.ZodBoolean;
232
- lastScrapedAt: z.ZodOptional<z.ZodString>;
233
- createdAt: z.ZodString;
234
- updatedAt: z.ZodOptional<z.ZodString>;
167
+ memberCount: z.ZodOptional<z.ZodNumber>;
168
+ isJoined: z.ZodBoolean;
235
169
  }, "strip", z.ZodTypeAny, {
236
- id: string;
237
- createdAt: string;
238
170
  username: string;
239
171
  title: string;
240
- isActive: boolean;
241
- isRecommended: boolean;
172
+ isJoined: boolean;
242
173
  description?: string | undefined;
243
- updatedAt?: string | undefined;
244
- category?: string | undefined;
245
- memberCount?: string | undefined;
246
- lastScrapedAt?: string | undefined;
174
+ memberCount?: number | undefined;
247
175
  }, {
248
- id: string;
249
- createdAt: string;
250
176
  username: string;
251
177
  title: string;
252
- isActive: boolean;
253
- isRecommended: boolean;
178
+ isJoined: boolean;
254
179
  description?: string | undefined;
255
- updatedAt?: string | undefined;
256
- category?: string | undefined;
257
- memberCount?: string | undefined;
258
- lastScrapedAt?: string | undefined;
180
+ memberCount?: number | undefined;
259
181
  }>, "many">;
260
182
  }, "strip", z.ZodTypeAny, {
261
183
  message: string;
262
184
  success: true;
263
185
  data: {
264
- id: string;
265
- createdAt: string;
266
186
  username: string;
267
187
  title: string;
268
- isActive: boolean;
269
- isRecommended: boolean;
188
+ isJoined: boolean;
270
189
  description?: string | undefined;
271
- updatedAt?: string | undefined;
272
- category?: string | undefined;
273
- memberCount?: string | undefined;
274
- lastScrapedAt?: string | undefined;
190
+ memberCount?: number | undefined;
275
191
  }[];
276
192
  }, {
277
193
  message: string;
278
194
  success: true;
279
195
  data: {
280
- id: string;
281
- createdAt: string;
282
196
  username: string;
283
197
  title: string;
284
- isActive: boolean;
285
- isRecommended: boolean;
198
+ isJoined: boolean;
286
199
  description?: string | undefined;
287
- updatedAt?: string | undefined;
288
- category?: string | undefined;
289
- memberCount?: string | undefined;
290
- lastScrapedAt?: string | undefined;
200
+ memberCount?: number | undefined;
291
201
  }[];
292
202
  }>;
293
203
  500: z.ZodObject<{
@@ -313,30 +223,15 @@ export declare const channelsContract: {
313
223
  200: z.ZodObject<{
314
224
  success: z.ZodLiteral<true>;
315
225
  message: z.ZodString;
316
- data: z.ZodArray<z.ZodObject<{
317
- name: z.ZodString;
318
- count: z.ZodNumber;
319
- }, "strip", z.ZodTypeAny, {
320
- name: string;
321
- count: number;
322
- }, {
323
- name: string;
324
- count: number;
325
- }>, "many">;
226
+ data: z.ZodArray<z.ZodString, "many">;
326
227
  }, "strip", z.ZodTypeAny, {
327
228
  message: string;
328
229
  success: true;
329
- data: {
330
- name: string;
331
- count: number;
332
- }[];
230
+ data: string[];
333
231
  }, {
334
232
  message: string;
335
233
  success: true;
336
- data: {
337
- name: string;
338
- count: number;
339
- }[];
234
+ data: string[];
340
235
  }>;
341
236
  500: z.ZodObject<{
342
237
  success: z.ZodLiteral<false>;
@@ -482,73 +377,43 @@ export declare const channelsContract: {
482
377
  success: z.ZodLiteral<true>;
483
378
  message: z.ZodString;
484
379
  data: z.ZodArray<z.ZodObject<{
485
- id: z.ZodString;
486
380
  username: z.ZodString;
487
381
  title: z.ZodString;
488
382
  description: z.ZodOptional<z.ZodString>;
489
- category: z.ZodOptional<z.ZodString>;
490
- memberCount: z.ZodOptional<z.ZodString>;
491
- isActive: z.ZodBoolean;
492
- isRecommended: z.ZodBoolean;
493
- lastScrapedAt: z.ZodOptional<z.ZodString>;
494
- createdAt: z.ZodString;
495
- updatedAt: z.ZodOptional<z.ZodString>;
383
+ memberCount: z.ZodOptional<z.ZodNumber>;
384
+ isJoined: z.ZodBoolean;
496
385
  }, "strip", z.ZodTypeAny, {
497
- id: string;
498
- createdAt: string;
499
386
  username: string;
500
387
  title: string;
501
- isActive: boolean;
502
- isRecommended: boolean;
388
+ isJoined: boolean;
503
389
  description?: string | undefined;
504
- updatedAt?: string | undefined;
505
- category?: string | undefined;
506
- memberCount?: string | undefined;
507
- lastScrapedAt?: string | undefined;
390
+ memberCount?: number | undefined;
508
391
  }, {
509
- id: string;
510
- createdAt: string;
511
392
  username: string;
512
393
  title: string;
513
- isActive: boolean;
514
- isRecommended: boolean;
394
+ isJoined: boolean;
515
395
  description?: string | undefined;
516
- updatedAt?: string | undefined;
517
- category?: string | undefined;
518
- memberCount?: string | undefined;
519
- lastScrapedAt?: string | undefined;
396
+ memberCount?: number | undefined;
520
397
  }>, "many">;
521
398
  }, "strip", z.ZodTypeAny, {
522
399
  message: string;
523
400
  success: true;
524
401
  data: {
525
- id: string;
526
- createdAt: string;
527
402
  username: string;
528
403
  title: string;
529
- isActive: boolean;
530
- isRecommended: boolean;
404
+ isJoined: boolean;
531
405
  description?: string | undefined;
532
- updatedAt?: string | undefined;
533
- category?: string | undefined;
534
- memberCount?: string | undefined;
535
- lastScrapedAt?: string | undefined;
406
+ memberCount?: number | undefined;
536
407
  }[];
537
408
  }, {
538
409
  message: string;
539
410
  success: true;
540
411
  data: {
541
- id: string;
542
- createdAt: string;
543
412
  username: string;
544
413
  title: string;
545
- isActive: boolean;
546
- isRecommended: boolean;
414
+ isJoined: boolean;
547
415
  description?: string | undefined;
548
- updatedAt?: string | undefined;
549
- category?: string | undefined;
550
- memberCount?: string | undefined;
551
- lastScrapedAt?: string | undefined;
416
+ memberCount?: number | undefined;
552
417
  }[];
553
418
  }>;
554
419
  400: z.ZodObject<{
@@ -677,27 +542,32 @@ export declare const channelsContract: {
677
542
  message: z.ZodString;
678
543
  data: z.ZodObject<{
679
544
  success: z.ZodBoolean;
680
- message: z.ZodString;
545
+ totalChannels: z.ZodNumber;
546
+ swapsRemaining: z.ZodOptional<z.ZodNumber>;
681
547
  }, "strip", z.ZodTypeAny, {
682
- message: string;
683
548
  success: boolean;
549
+ totalChannels: number;
550
+ swapsRemaining?: number | undefined;
684
551
  }, {
685
- message: string;
686
552
  success: boolean;
553
+ totalChannels: number;
554
+ swapsRemaining?: number | undefined;
687
555
  }>;
688
556
  }, "strip", z.ZodTypeAny, {
689
557
  message: string;
690
558
  success: true;
691
559
  data: {
692
- message: string;
693
560
  success: boolean;
561
+ totalChannels: number;
562
+ swapsRemaining?: number | undefined;
694
563
  };
695
564
  }, {
696
565
  message: string;
697
566
  success: true;
698
567
  data: {
699
- message: string;
700
568
  success: boolean;
569
+ totalChannels: number;
570
+ swapsRemaining?: number | undefined;
701
571
  };
702
572
  }>;
703
573
  400: z.ZodObject<{
@@ -1 +1 @@
1
- {"version":3,"file":"channels.contract.d.ts","sourceRoot":"","sources":["../../src/contracts/channels.contract.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAaxB,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiI3B,CAAC"}
1
+ {"version":3,"file":"channels.contract.d.ts","sourceRoot":"","sources":["../../src/contracts/channels.contract.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAaxB,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkI3B,CAAC"}
@@ -2,7 +2,6 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.channelsContract = void 0;
4
4
  const core_1 = require("@ts-rest/core");
5
- const channels_1 = require("../schemas/channels");
6
5
  const errors_1 = require("../schemas/errors");
7
6
  const zod_1 = require("zod");
8
7
  const c = (0, core_1.initContract)();
@@ -19,7 +18,7 @@ exports.channelsContract = c.router({
19
18
  method: 'GET',
20
19
  path: '/api/channels/available',
21
20
  responses: {
22
- 200: (0, errors_1.SuccessResponseSchema)(zod_1.z.array(channels_1.ChannelSchema)),
21
+ 200: (0, errors_1.SuccessResponseSchema)(zod_1.z.array(ChannelInfoSchema)),
23
22
  401: errors_1.ErrorResponseSchema,
24
23
  500: errors_1.ErrorResponseSchema,
25
24
  },
@@ -29,7 +28,7 @@ exports.channelsContract = c.router({
29
28
  method: 'GET',
30
29
  path: '/api/channels/user-channels',
31
30
  responses: {
32
- 200: (0, errors_1.SuccessResponseSchema)(zod_1.z.array(channels_1.ChannelSchema)),
31
+ 200: (0, errors_1.SuccessResponseSchema)(zod_1.z.array(ChannelInfoSchema)),
33
32
  401: errors_1.ErrorResponseSchema,
34
33
  500: errors_1.ErrorResponseSchema,
35
34
  },
@@ -39,7 +38,7 @@ exports.channelsContract = c.router({
39
38
  method: 'GET',
40
39
  path: '/api/channels/recommended',
41
40
  responses: {
42
- 200: (0, errors_1.SuccessResponseSchema)(zod_1.z.array(channels_1.ChannelSchema)),
41
+ 200: (0, errors_1.SuccessResponseSchema)(zod_1.z.array(ChannelInfoSchema)),
43
42
  500: errors_1.ErrorResponseSchema,
44
43
  },
45
44
  summary: 'Get recommended channels',
@@ -48,7 +47,7 @@ exports.channelsContract = c.router({
48
47
  method: 'GET',
49
48
  path: '/api/channels/categories',
50
49
  responses: {
51
- 200: (0, errors_1.SuccessResponseSchema)(zod_1.z.array(channels_1.CategorySchema)),
50
+ 200: (0, errors_1.SuccessResponseSchema)(zod_1.z.array(zod_1.z.string())),
52
51
  500: errors_1.ErrorResponseSchema,
53
52
  },
54
53
  summary: 'Get all channel categories',
@@ -75,7 +74,7 @@ exports.channelsContract = c.router({
75
74
  path: '/api/channels/search',
76
75
  body: zod_1.z.object({ query: zod_1.z.string() }),
77
76
  responses: {
78
- 200: (0, errors_1.SuccessResponseSchema)(zod_1.z.array(channels_1.ChannelSchema)),
77
+ 200: (0, errors_1.SuccessResponseSchema)(zod_1.z.array(ChannelInfoSchema)),
79
78
  400: errors_1.ErrorResponseSchema,
80
79
  500: errors_1.ErrorResponseSchema,
81
80
  },
@@ -103,7 +102,8 @@ exports.channelsContract = c.router({
103
102
  responses: {
104
103
  200: (0, errors_1.SuccessResponseSchema)(zod_1.z.object({
105
104
  success: zod_1.z.boolean(),
106
- message: zod_1.z.string(),
105
+ totalChannels: zod_1.z.number(),
106
+ swapsRemaining: zod_1.z.number().optional(),
107
107
  })),
108
108
  400: errors_1.ErrorResponseSchema,
109
109
  401: errors_1.ErrorResponseSchema,
package/dist/index.d.ts CHANGED
@@ -959,73 +959,43 @@ export declare const apiContract: {
959
959
  success: z.ZodLiteral<true>;
960
960
  message: z.ZodString;
961
961
  data: z.ZodArray<z.ZodObject<{
962
- id: z.ZodString;
963
962
  username: z.ZodString;
964
963
  title: z.ZodString;
965
964
  description: z.ZodOptional<z.ZodString>;
966
- category: z.ZodOptional<z.ZodString>;
967
- memberCount: z.ZodOptional<z.ZodString>;
968
- isActive: z.ZodBoolean;
969
- isRecommended: z.ZodBoolean;
970
- lastScrapedAt: z.ZodOptional<z.ZodString>;
971
- createdAt: z.ZodString;
972
- updatedAt: z.ZodOptional<z.ZodString>;
965
+ memberCount: z.ZodOptional<z.ZodNumber>;
966
+ isJoined: z.ZodBoolean;
973
967
  }, "strip", z.ZodTypeAny, {
974
- id: string;
975
- createdAt: string;
976
968
  username: string;
977
969
  title: string;
978
- isActive: boolean;
979
- isRecommended: boolean;
970
+ isJoined: boolean;
980
971
  description?: string | undefined;
981
- updatedAt?: string | undefined;
982
- category?: string | undefined;
983
- memberCount?: string | undefined;
984
- lastScrapedAt?: string | undefined;
972
+ memberCount?: number | undefined;
985
973
  }, {
986
- id: string;
987
- createdAt: string;
988
974
  username: string;
989
975
  title: string;
990
- isActive: boolean;
991
- isRecommended: boolean;
976
+ isJoined: boolean;
992
977
  description?: string | undefined;
993
- updatedAt?: string | undefined;
994
- category?: string | undefined;
995
- memberCount?: string | undefined;
996
- lastScrapedAt?: string | undefined;
978
+ memberCount?: number | undefined;
997
979
  }>, "many">;
998
980
  }, "strip", z.ZodTypeAny, {
999
981
  message: string;
1000
982
  success: true;
1001
983
  data: {
1002
- id: string;
1003
- createdAt: string;
1004
984
  username: string;
1005
985
  title: string;
1006
- isActive: boolean;
1007
- isRecommended: boolean;
986
+ isJoined: boolean;
1008
987
  description?: string | undefined;
1009
- updatedAt?: string | undefined;
1010
- category?: string | undefined;
1011
- memberCount?: string | undefined;
1012
- lastScrapedAt?: string | undefined;
988
+ memberCount?: number | undefined;
1013
989
  }[];
1014
990
  }, {
1015
991
  message: string;
1016
992
  success: true;
1017
993
  data: {
1018
- id: string;
1019
- createdAt: string;
1020
994
  username: string;
1021
995
  title: string;
1022
- isActive: boolean;
1023
- isRecommended: boolean;
996
+ isJoined: boolean;
1024
997
  description?: string | undefined;
1025
- updatedAt?: string | undefined;
1026
- category?: string | undefined;
1027
- memberCount?: string | undefined;
1028
- lastScrapedAt?: string | undefined;
998
+ memberCount?: number | undefined;
1029
999
  }[];
1030
1000
  }>;
1031
1001
  401: z.ZodObject<{
@@ -1065,73 +1035,43 @@ export declare const apiContract: {
1065
1035
  success: z.ZodLiteral<true>;
1066
1036
  message: z.ZodString;
1067
1037
  data: z.ZodArray<z.ZodObject<{
1068
- id: z.ZodString;
1069
1038
  username: z.ZodString;
1070
1039
  title: z.ZodString;
1071
1040
  description: z.ZodOptional<z.ZodString>;
1072
- category: z.ZodOptional<z.ZodString>;
1073
- memberCount: z.ZodOptional<z.ZodString>;
1074
- isActive: z.ZodBoolean;
1075
- isRecommended: z.ZodBoolean;
1076
- lastScrapedAt: z.ZodOptional<z.ZodString>;
1077
- createdAt: z.ZodString;
1078
- updatedAt: z.ZodOptional<z.ZodString>;
1041
+ memberCount: z.ZodOptional<z.ZodNumber>;
1042
+ isJoined: z.ZodBoolean;
1079
1043
  }, "strip", z.ZodTypeAny, {
1080
- id: string;
1081
- createdAt: string;
1082
1044
  username: string;
1083
1045
  title: string;
1084
- isActive: boolean;
1085
- isRecommended: boolean;
1046
+ isJoined: boolean;
1086
1047
  description?: string | undefined;
1087
- updatedAt?: string | undefined;
1088
- category?: string | undefined;
1089
- memberCount?: string | undefined;
1090
- lastScrapedAt?: string | undefined;
1048
+ memberCount?: number | undefined;
1091
1049
  }, {
1092
- id: string;
1093
- createdAt: string;
1094
1050
  username: string;
1095
1051
  title: string;
1096
- isActive: boolean;
1097
- isRecommended: boolean;
1052
+ isJoined: boolean;
1098
1053
  description?: string | undefined;
1099
- updatedAt?: string | undefined;
1100
- category?: string | undefined;
1101
- memberCount?: string | undefined;
1102
- lastScrapedAt?: string | undefined;
1054
+ memberCount?: number | undefined;
1103
1055
  }>, "many">;
1104
1056
  }, "strip", z.ZodTypeAny, {
1105
1057
  message: string;
1106
1058
  success: true;
1107
1059
  data: {
1108
- id: string;
1109
- createdAt: string;
1110
1060
  username: string;
1111
1061
  title: string;
1112
- isActive: boolean;
1113
- isRecommended: boolean;
1062
+ isJoined: boolean;
1114
1063
  description?: string | undefined;
1115
- updatedAt?: string | undefined;
1116
- category?: string | undefined;
1117
- memberCount?: string | undefined;
1118
- lastScrapedAt?: string | undefined;
1064
+ memberCount?: number | undefined;
1119
1065
  }[];
1120
1066
  }, {
1121
1067
  message: string;
1122
1068
  success: true;
1123
1069
  data: {
1124
- id: string;
1125
- createdAt: string;
1126
1070
  username: string;
1127
1071
  title: string;
1128
- isActive: boolean;
1129
- isRecommended: boolean;
1072
+ isJoined: boolean;
1130
1073
  description?: string | undefined;
1131
- updatedAt?: string | undefined;
1132
- category?: string | undefined;
1133
- memberCount?: string | undefined;
1134
- lastScrapedAt?: string | undefined;
1074
+ memberCount?: number | undefined;
1135
1075
  }[];
1136
1076
  }>;
1137
1077
  401: z.ZodObject<{
@@ -1171,73 +1111,43 @@ export declare const apiContract: {
1171
1111
  success: z.ZodLiteral<true>;
1172
1112
  message: z.ZodString;
1173
1113
  data: z.ZodArray<z.ZodObject<{
1174
- id: z.ZodString;
1175
1114
  username: z.ZodString;
1176
1115
  title: z.ZodString;
1177
1116
  description: z.ZodOptional<z.ZodString>;
1178
- category: z.ZodOptional<z.ZodString>;
1179
- memberCount: z.ZodOptional<z.ZodString>;
1180
- isActive: z.ZodBoolean;
1181
- isRecommended: z.ZodBoolean;
1182
- lastScrapedAt: z.ZodOptional<z.ZodString>;
1183
- createdAt: z.ZodString;
1184
- updatedAt: z.ZodOptional<z.ZodString>;
1117
+ memberCount: z.ZodOptional<z.ZodNumber>;
1118
+ isJoined: z.ZodBoolean;
1185
1119
  }, "strip", z.ZodTypeAny, {
1186
- id: string;
1187
- createdAt: string;
1188
1120
  username: string;
1189
1121
  title: string;
1190
- isActive: boolean;
1191
- isRecommended: boolean;
1122
+ isJoined: boolean;
1192
1123
  description?: string | undefined;
1193
- updatedAt?: string | undefined;
1194
- category?: string | undefined;
1195
- memberCount?: string | undefined;
1196
- lastScrapedAt?: string | undefined;
1124
+ memberCount?: number | undefined;
1197
1125
  }, {
1198
- id: string;
1199
- createdAt: string;
1200
1126
  username: string;
1201
1127
  title: string;
1202
- isActive: boolean;
1203
- isRecommended: boolean;
1128
+ isJoined: boolean;
1204
1129
  description?: string | undefined;
1205
- updatedAt?: string | undefined;
1206
- category?: string | undefined;
1207
- memberCount?: string | undefined;
1208
- lastScrapedAt?: string | undefined;
1130
+ memberCount?: number | undefined;
1209
1131
  }>, "many">;
1210
1132
  }, "strip", z.ZodTypeAny, {
1211
1133
  message: string;
1212
1134
  success: true;
1213
1135
  data: {
1214
- id: string;
1215
- createdAt: string;
1216
1136
  username: string;
1217
1137
  title: string;
1218
- isActive: boolean;
1219
- isRecommended: boolean;
1138
+ isJoined: boolean;
1220
1139
  description?: string | undefined;
1221
- updatedAt?: string | undefined;
1222
- category?: string | undefined;
1223
- memberCount?: string | undefined;
1224
- lastScrapedAt?: string | undefined;
1140
+ memberCount?: number | undefined;
1225
1141
  }[];
1226
1142
  }, {
1227
1143
  message: string;
1228
1144
  success: true;
1229
1145
  data: {
1230
- id: string;
1231
- createdAt: string;
1232
1146
  username: string;
1233
1147
  title: string;
1234
- isActive: boolean;
1235
- isRecommended: boolean;
1148
+ isJoined: boolean;
1236
1149
  description?: string | undefined;
1237
- updatedAt?: string | undefined;
1238
- category?: string | undefined;
1239
- memberCount?: string | undefined;
1240
- lastScrapedAt?: string | undefined;
1150
+ memberCount?: number | undefined;
1241
1151
  }[];
1242
1152
  }>;
1243
1153
  500: z.ZodObject<{
@@ -1263,30 +1173,15 @@ export declare const apiContract: {
1263
1173
  200: z.ZodObject<{
1264
1174
  success: z.ZodLiteral<true>;
1265
1175
  message: z.ZodString;
1266
- data: z.ZodArray<z.ZodObject<{
1267
- name: z.ZodString;
1268
- count: z.ZodNumber;
1269
- }, "strip", z.ZodTypeAny, {
1270
- name: string;
1271
- count: number;
1272
- }, {
1273
- name: string;
1274
- count: number;
1275
- }>, "many">;
1176
+ data: z.ZodArray<z.ZodString, "many">;
1276
1177
  }, "strip", z.ZodTypeAny, {
1277
1178
  message: string;
1278
1179
  success: true;
1279
- data: {
1280
- name: string;
1281
- count: number;
1282
- }[];
1180
+ data: string[];
1283
1181
  }, {
1284
1182
  message: string;
1285
1183
  success: true;
1286
- data: {
1287
- name: string;
1288
- count: number;
1289
- }[];
1184
+ data: string[];
1290
1185
  }>;
1291
1186
  500: z.ZodObject<{
1292
1187
  success: z.ZodLiteral<false>;
@@ -1432,73 +1327,43 @@ export declare const apiContract: {
1432
1327
  success: z.ZodLiteral<true>;
1433
1328
  message: z.ZodString;
1434
1329
  data: z.ZodArray<z.ZodObject<{
1435
- id: z.ZodString;
1436
1330
  username: z.ZodString;
1437
1331
  title: z.ZodString;
1438
1332
  description: z.ZodOptional<z.ZodString>;
1439
- category: z.ZodOptional<z.ZodString>;
1440
- memberCount: z.ZodOptional<z.ZodString>;
1441
- isActive: z.ZodBoolean;
1442
- isRecommended: z.ZodBoolean;
1443
- lastScrapedAt: z.ZodOptional<z.ZodString>;
1444
- createdAt: z.ZodString;
1445
- updatedAt: z.ZodOptional<z.ZodString>;
1333
+ memberCount: z.ZodOptional<z.ZodNumber>;
1334
+ isJoined: z.ZodBoolean;
1446
1335
  }, "strip", z.ZodTypeAny, {
1447
- id: string;
1448
- createdAt: string;
1449
1336
  username: string;
1450
1337
  title: string;
1451
- isActive: boolean;
1452
- isRecommended: boolean;
1338
+ isJoined: boolean;
1453
1339
  description?: string | undefined;
1454
- updatedAt?: string | undefined;
1455
- category?: string | undefined;
1456
- memberCount?: string | undefined;
1457
- lastScrapedAt?: string | undefined;
1340
+ memberCount?: number | undefined;
1458
1341
  }, {
1459
- id: string;
1460
- createdAt: string;
1461
1342
  username: string;
1462
1343
  title: string;
1463
- isActive: boolean;
1464
- isRecommended: boolean;
1344
+ isJoined: boolean;
1465
1345
  description?: string | undefined;
1466
- updatedAt?: string | undefined;
1467
- category?: string | undefined;
1468
- memberCount?: string | undefined;
1469
- lastScrapedAt?: string | undefined;
1346
+ memberCount?: number | undefined;
1470
1347
  }>, "many">;
1471
1348
  }, "strip", z.ZodTypeAny, {
1472
1349
  message: string;
1473
1350
  success: true;
1474
1351
  data: {
1475
- id: string;
1476
- createdAt: string;
1477
1352
  username: string;
1478
1353
  title: string;
1479
- isActive: boolean;
1480
- isRecommended: boolean;
1354
+ isJoined: boolean;
1481
1355
  description?: string | undefined;
1482
- updatedAt?: string | undefined;
1483
- category?: string | undefined;
1484
- memberCount?: string | undefined;
1485
- lastScrapedAt?: string | undefined;
1356
+ memberCount?: number | undefined;
1486
1357
  }[];
1487
1358
  }, {
1488
1359
  message: string;
1489
1360
  success: true;
1490
1361
  data: {
1491
- id: string;
1492
- createdAt: string;
1493
1362
  username: string;
1494
1363
  title: string;
1495
- isActive: boolean;
1496
- isRecommended: boolean;
1364
+ isJoined: boolean;
1497
1365
  description?: string | undefined;
1498
- updatedAt?: string | undefined;
1499
- category?: string | undefined;
1500
- memberCount?: string | undefined;
1501
- lastScrapedAt?: string | undefined;
1366
+ memberCount?: number | undefined;
1502
1367
  }[];
1503
1368
  }>;
1504
1369
  400: z.ZodObject<{
@@ -1627,27 +1492,32 @@ export declare const apiContract: {
1627
1492
  message: z.ZodString;
1628
1493
  data: z.ZodObject<{
1629
1494
  success: z.ZodBoolean;
1630
- message: z.ZodString;
1495
+ totalChannels: z.ZodNumber;
1496
+ swapsRemaining: z.ZodOptional<z.ZodNumber>;
1631
1497
  }, "strip", z.ZodTypeAny, {
1632
- message: string;
1633
1498
  success: boolean;
1499
+ totalChannels: number;
1500
+ swapsRemaining?: number | undefined;
1634
1501
  }, {
1635
- message: string;
1636
1502
  success: boolean;
1503
+ totalChannels: number;
1504
+ swapsRemaining?: number | undefined;
1637
1505
  }>;
1638
1506
  }, "strip", z.ZodTypeAny, {
1639
1507
  message: string;
1640
1508
  success: true;
1641
1509
  data: {
1642
- message: string;
1643
1510
  success: boolean;
1511
+ totalChannels: number;
1512
+ swapsRemaining?: number | undefined;
1644
1513
  };
1645
1514
  }, {
1646
1515
  message: string;
1647
1516
  success: true;
1648
1517
  data: {
1649
- message: string;
1650
1518
  success: boolean;
1519
+ totalChannels: number;
1520
+ swapsRemaining?: number | undefined;
1651
1521
  };
1652
1522
  }>;
1653
1523
  400: z.ZodObject<{
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AACzD,OAAO,EAAE,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AACjE,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AACzD,OAAO,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAC;AAC7D,OAAO,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAC;AAC7D,OAAO,EAAE,qBAAqB,EAAE,MAAM,oCAAoC,CAAC;AAC3E,OAAO,EAAE,aAAa,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAC7E,OAAO,EAAE,eAAe,EAAE,MAAM,8BAA8B,CAAC;AAK/D,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAUtB,CAAC;AAGH,OAAO,EACL,YAAY,EACZ,gBAAgB,EAChB,YAAY,EACZ,cAAc,EACd,cAAc,EACd,qBAAqB,EACrB,aAAa,EACb,gBAAgB,EAChB,eAAe,GAChB,CAAC;AAGF,cAAc,kBAAkB,CAAC;AACjC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,oBAAoB,CAAC;AACnC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AAGjC,OAAO,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AAC7C,YAAY,EAAE,kBAAkB,EAAE,oBAAoB,EAAE,MAAM,eAAe,CAAC;AAG9E,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EACL,SAAS,EACT,gBAAgB,EAChB,kBAAkB,EAClB,iBAAiB,EACjB,mBAAmB,EACpB,MAAM,gBAAgB,CAAC;AACxB,OAAO,EACL,aAAa,EACb,cAAc,EACd,6BAA6B,EAC9B,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EACL,qBAAqB,EACrB,0BAA0B,EAC1B,gBAAgB,EACjB,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AACjD,OAAO,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AACpD,OAAO,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AAGvD,MAAM,MAAM,GAAG,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,SAAS,CAAC,CAAC;AAC5C,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAC1D,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAC9D,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAC5D,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAGhE,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AACpD,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AACtD,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAC3C,OAAO,6BAA6B,CACrC,CAAC;AAGF,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AACpE,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAC9E,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAG1D,MAAM,MAAM,MAAM,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,YAAY,CAAC,CAAC;AAGlD,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAC1D,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AACzD,OAAO,EAAE,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AACjE,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AACzD,OAAO,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAC;AAC7D,OAAO,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAC;AAC7D,OAAO,EAAE,qBAAqB,EAAE,MAAM,oCAAoC,CAAC;AAC3E,OAAO,EAAE,aAAa,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAC7E,OAAO,EAAE,eAAe,EAAE,MAAM,8BAA8B,CAAC;AAK/D,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAUtB,CAAC;AAGH,OAAO,EACL,YAAY,EACZ,gBAAgB,EAChB,YAAY,EACZ,cAAc,EACd,cAAc,EACd,qBAAqB,EACrB,aAAa,EACb,gBAAgB,EAChB,eAAe,GAChB,CAAC;AAGF,cAAc,kBAAkB,CAAC;AACjC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,oBAAoB,CAAC;AACnC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AAGjC,OAAO,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AAC7C,YAAY,EAAE,kBAAkB,EAAE,oBAAoB,EAAE,MAAM,eAAe,CAAC;AAG9E,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EACL,SAAS,EACT,gBAAgB,EAChB,kBAAkB,EAClB,iBAAiB,EACjB,mBAAmB,EACpB,MAAM,gBAAgB,CAAC;AACxB,OAAO,EACL,aAAa,EACb,cAAc,EACd,6BAA6B,EAC9B,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EACL,qBAAqB,EACrB,0BAA0B,EAC1B,gBAAgB,EACjB,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AACjD,OAAO,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AACpD,OAAO,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AAGvD,MAAM,MAAM,GAAG,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,SAAS,CAAC,CAAC;AAC5C,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAC1D,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAC9D,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAC5D,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAGhE,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AACpD,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AACtD,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAC3C,OAAO,6BAA6B,CACrC,CAAC;AAGF,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AACpE,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAC9E,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAG1D,MAAM,MAAM,MAAM,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,YAAY,CAAC,CAAC;AAGlD,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAC1D,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "telegram-jobs-contract",
3
- "version": "1.0.14",
3
+ "version": "1.0.16",
4
4
  "description": "Shared API contract for telegram-jobs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",