@lokalise/connector-api-contracts 4.0.0 → 4.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.
@@ -247,7 +247,47 @@ export declare const CAPABILITY_SCHEMA: z.ZodObject<{
247
247
  data: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
248
248
  }, z.core.$strip>;
249
249
  export type Capability = z.infer<typeof CAPABILITY_SCHEMA>;
250
+ export declare const BASE_MANIFEST_COLUMN: z.ZodObject<{
251
+ id: z.ZodString;
252
+ }, z.core.$strip>;
253
+ export declare const PRIMARY_COLUMN: z.ZodObject<{
254
+ id: z.ZodString;
255
+ type: z.ZodLiteral<"primary">;
256
+ paths: z.ZodObject<{
257
+ title: z.ZodString;
258
+ updatedAt: z.ZodOptional<z.ZodString>;
259
+ icon: z.ZodOptional<z.ZodString>;
260
+ }, z.core.$strip>;
261
+ }, z.core.$strip>;
262
+ export type PrimaryColumn = z.infer<typeof PRIMARY_COLUMN>;
263
+ export declare const TEXT_COLUMN: z.ZodObject<{
264
+ id: z.ZodString;
265
+ type: z.ZodLiteral<"text">;
266
+ paths: z.ZodObject<{
267
+ text: z.ZodString;
268
+ icon: z.ZodOptional<z.ZodString>;
269
+ }, z.core.$strip>;
270
+ }, z.core.$strip>;
271
+ export type TextColumn = z.infer<typeof TEXT_COLUMN>;
272
+ export declare const MANIFEST_COLUMN: z.ZodDiscriminatedUnion<[z.ZodObject<{
273
+ id: z.ZodString;
274
+ type: z.ZodLiteral<"primary">;
275
+ paths: z.ZodObject<{
276
+ title: z.ZodString;
277
+ updatedAt: z.ZodOptional<z.ZodString>;
278
+ icon: z.ZodOptional<z.ZodString>;
279
+ }, z.core.$strip>;
280
+ }, z.core.$strip>, z.ZodObject<{
281
+ id: z.ZodString;
282
+ type: z.ZodLiteral<"text">;
283
+ paths: z.ZodObject<{
284
+ text: z.ZodString;
285
+ icon: z.ZodOptional<z.ZodString>;
286
+ }, z.core.$strip>;
287
+ }, z.core.$strip>], "type">;
288
+ export type ManifestColumn = z.infer<typeof MANIFEST_COLUMN>;
250
289
  export declare const MANIFEST_SCHEMA: z.ZodObject<{
290
+ name: z.ZodString;
251
291
  authentication: z.ZodDiscriminatedUnion<[z.ZodObject<{
252
292
  type: z.ZodLiteral<"oauth">;
253
293
  }, z.core.$strip>, z.ZodObject<{
@@ -318,9 +358,26 @@ export declare const MANIFEST_SCHEMA: z.ZodObject<{
318
358
  version: z.ZodNumber;
319
359
  data: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
320
360
  }, z.core.$strip>>;
361
+ columns: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
362
+ id: z.ZodString;
363
+ type: z.ZodLiteral<"primary">;
364
+ paths: z.ZodObject<{
365
+ title: z.ZodString;
366
+ updatedAt: z.ZodOptional<z.ZodString>;
367
+ icon: z.ZodOptional<z.ZodString>;
368
+ }, z.core.$strip>;
369
+ }, z.core.$strip>, z.ZodObject<{
370
+ id: z.ZodString;
371
+ type: z.ZodLiteral<"text">;
372
+ paths: z.ZodObject<{
373
+ text: z.ZodString;
374
+ icon: z.ZodOptional<z.ZodString>;
375
+ }, z.core.$strip>;
376
+ }, z.core.$strip>], "type">>;
321
377
  }, z.core.$strip>;
322
378
  export type Manifest = z.infer<typeof MANIFEST_SCHEMA>;
323
379
  export declare const MANIFESTS_BY_MODE_SCHEMA: z.ZodRecord<z.ZodString, z.ZodObject<{
380
+ name: z.ZodString;
324
381
  authentication: z.ZodDiscriminatedUnion<[z.ZodObject<{
325
382
  type: z.ZodLiteral<"oauth">;
326
383
  }, z.core.$strip>, z.ZodObject<{
@@ -391,9 +448,26 @@ export declare const MANIFESTS_BY_MODE_SCHEMA: z.ZodRecord<z.ZodString, z.ZodObj
391
448
  version: z.ZodNumber;
392
449
  data: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
393
450
  }, z.core.$strip>>;
451
+ columns: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
452
+ id: z.ZodString;
453
+ type: z.ZodLiteral<"primary">;
454
+ paths: z.ZodObject<{
455
+ title: z.ZodString;
456
+ updatedAt: z.ZodOptional<z.ZodString>;
457
+ icon: z.ZodOptional<z.ZodString>;
458
+ }, z.core.$strip>;
459
+ }, z.core.$strip>, z.ZodObject<{
460
+ id: z.ZodString;
461
+ type: z.ZodLiteral<"text">;
462
+ paths: z.ZodObject<{
463
+ text: z.ZodString;
464
+ icon: z.ZodOptional<z.ZodString>;
465
+ }, z.core.$strip>;
466
+ }, z.core.$strip>], "type">>;
394
467
  }, z.core.$strip>>;
395
468
  export type ManifestsByMode = z.infer<typeof MANIFESTS_BY_MODE_SCHEMA>;
396
469
  export declare const getManifestContract: import("@lokalise/api-contracts").GetRouteDefinition<z.ZodRecord<z.ZodString, z.ZodObject<{
470
+ name: z.ZodString;
397
471
  authentication: z.ZodDiscriminatedUnion<[z.ZodObject<{
398
472
  type: z.ZodLiteral<"oauth">;
399
473
  }, z.core.$strip>, z.ZodObject<{
@@ -464,11 +538,28 @@ export declare const getManifestContract: import("@lokalise/api-contracts").GetR
464
538
  version: z.ZodNumber;
465
539
  data: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
466
540
  }, z.core.$strip>>;
541
+ columns: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
542
+ id: z.ZodString;
543
+ type: z.ZodLiteral<"primary">;
544
+ paths: z.ZodObject<{
545
+ title: z.ZodString;
546
+ updatedAt: z.ZodOptional<z.ZodString>;
547
+ icon: z.ZodOptional<z.ZodString>;
548
+ }, z.core.$strip>;
549
+ }, z.core.$strip>, z.ZodObject<{
550
+ id: z.ZodString;
551
+ type: z.ZodLiteral<"text">;
552
+ paths: z.ZodObject<{
553
+ text: z.ZodString;
554
+ icon: z.ZodOptional<z.ZodString>;
555
+ }, z.core.$strip>;
556
+ }, z.core.$strip>], "type">>;
467
557
  }, z.core.$strip>>, undefined, undefined, z.ZodObject<{
468
558
  'ce-config': z.ZodString;
469
559
  "x-connector-id": z.ZodString;
470
560
  }, z.core.$strip>, undefined, false, false, {
471
561
  200: z.ZodRecord<z.ZodString, z.ZodObject<{
562
+ name: z.ZodString;
472
563
  authentication: z.ZodDiscriminatedUnion<[z.ZodObject<{
473
564
  type: z.ZodLiteral<"oauth">;
474
565
  }, z.core.$strip>, z.ZodObject<{
@@ -539,6 +630,22 @@ export declare const getManifestContract: import("@lokalise/api-contracts").GetR
539
630
  version: z.ZodNumber;
540
631
  data: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
541
632
  }, z.core.$strip>>;
633
+ columns: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
634
+ id: z.ZodString;
635
+ type: z.ZodLiteral<"primary">;
636
+ paths: z.ZodObject<{
637
+ title: z.ZodString;
638
+ updatedAt: z.ZodOptional<z.ZodString>;
639
+ icon: z.ZodOptional<z.ZodString>;
640
+ }, z.core.$strip>;
641
+ }, z.core.$strip>, z.ZodObject<{
642
+ id: z.ZodString;
643
+ type: z.ZodLiteral<"text">;
644
+ paths: z.ZodObject<{
645
+ text: z.ZodString;
646
+ icon: z.ZodOptional<z.ZodString>;
647
+ }, z.core.$strip>;
648
+ }, z.core.$strip>], "type">>;
542
649
  }, z.core.$strip>>;
543
650
  403: z.ZodUnion<readonly [z.ZodObject<{
544
651
  statusCode: z.ZodNumber;
@@ -89,10 +89,31 @@ export const CAPABILITY_SCHEMA = z.object({
89
89
  version: z.number().int().positive(),
90
90
  data: z.looseObject({}).optional(),
91
91
  });
92
+ export const BASE_MANIFEST_COLUMN = z.object({
93
+ id: z.string(),
94
+ });
95
+ export const PRIMARY_COLUMN = BASE_MANIFEST_COLUMN.extend({
96
+ type: z.literal('primary'),
97
+ paths: z.object({
98
+ title: z.string(),
99
+ updatedAt: z.string().optional(),
100
+ icon: z.string().optional(),
101
+ }),
102
+ });
103
+ export const TEXT_COLUMN = BASE_MANIFEST_COLUMN.extend({
104
+ type: z.literal('text'),
105
+ paths: z.object({
106
+ text: z.string(),
107
+ icon: z.string().optional(),
108
+ }),
109
+ });
110
+ export const MANIFEST_COLUMN = z.discriminatedUnion('type', [PRIMARY_COLUMN, TEXT_COLUMN]);
92
111
  export const MANIFEST_SCHEMA = z.object({
112
+ name: z.string(),
93
113
  authentication: AUTHENTICATION_SCHEMA,
94
114
  filters: z.array(FILTER_SCHEMA),
95
115
  capabilities: z.record(z.string(), CAPABILITY_SCHEMA),
116
+ columns: z.array(MANIFEST_COLUMN),
96
117
  });
97
118
  export const MANIFESTS_BY_MODE_SCHEMA = z.record(z.string(), MANIFEST_SCHEMA);
98
119
  export const getManifestContract = buildGetRoute({
@@ -1 +1 @@
1
- {"version":3,"file":"manifestContracts.js","sourceRoot":"","sources":["../../src/contracts/manifestContracts.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"manifestContracts.js","sourceRoot":"","sources":["../../src/contracts/manifestContracts.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lokalise/connector-api-contracts",
3
- "version": "4.0.0",
3
+ "version": "4.0.1",
4
4
  "description": "Lokalise Connector API schemas and contracts",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",