@lokalise/workspaces-api-schemas 5.1.1 → 5.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -403,3 +403,252 @@ export declare const getExpertTeamProjectsContract: import("@lokalise/api-contra
|
|
|
403
403
|
}, z.core.$strip>>;
|
|
404
404
|
}, z.core.$strip>;
|
|
405
405
|
}>;
|
|
406
|
+
export declare const POST_EXPERT_CREATE_PROJECT_REQUEST_BODY_SCHEMA: z.ZodObject<{
|
|
407
|
+
name: z.ZodString;
|
|
408
|
+
team_id: z.ZodString;
|
|
409
|
+
base_lang_iso: z.ZodString;
|
|
410
|
+
languages: z.ZodArray<z.ZodObject<{
|
|
411
|
+
lang_iso: z.ZodString;
|
|
412
|
+
custom_iso: z.ZodOptional<z.ZodString>;
|
|
413
|
+
}, z.core.$strip>>;
|
|
414
|
+
project_type: z.ZodEnum<{
|
|
415
|
+
localization_files: "localization_files";
|
|
416
|
+
paged_documents: "paged_documents";
|
|
417
|
+
content_integration: "content_integration";
|
|
418
|
+
marketing: "marketing";
|
|
419
|
+
marketing_integrations: "marketing_integrations";
|
|
420
|
+
marketing_portal: "marketing_portal";
|
|
421
|
+
}>;
|
|
422
|
+
is_segmentation_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
423
|
+
}, z.core.$strip>;
|
|
424
|
+
export declare const POST_EXPERT_CREATE_PROJECT_RESPONSE: z.ZodObject<{
|
|
425
|
+
project_id: z.ZodString;
|
|
426
|
+
uuid: z.ZodGUID;
|
|
427
|
+
project_type: z.ZodEnum<{
|
|
428
|
+
localization_files: "localization_files";
|
|
429
|
+
paged_documents: "paged_documents";
|
|
430
|
+
content_integration: "content_integration";
|
|
431
|
+
marketing: "marketing";
|
|
432
|
+
marketing_integrations: "marketing_integrations";
|
|
433
|
+
marketing_portal: "marketing_portal";
|
|
434
|
+
}>;
|
|
435
|
+
name: z.ZodString;
|
|
436
|
+
description: z.ZodString;
|
|
437
|
+
created_at: z.ZodString;
|
|
438
|
+
created_at_timestamp: z.ZodNumber;
|
|
439
|
+
created_by: z.ZodNumber;
|
|
440
|
+
created_by_email: z.ZodString;
|
|
441
|
+
team_id: z.ZodNumber;
|
|
442
|
+
team_uuid: z.ZodGUID;
|
|
443
|
+
base_language_id: z.ZodNumber;
|
|
444
|
+
base_language_iso: z.ZodString;
|
|
445
|
+
base_project_language_id: z.ZodNumber;
|
|
446
|
+
base_project_language_uuid: z.ZodGUID;
|
|
447
|
+
settings: z.ZodOptional<z.ZodObject<{
|
|
448
|
+
per_platform_key_names: z.ZodBoolean;
|
|
449
|
+
reviewing: z.ZodBoolean;
|
|
450
|
+
auto_toggle_unverified: z.ZodBoolean;
|
|
451
|
+
offline_translation: z.ZodBoolean;
|
|
452
|
+
key_editing: z.ZodBoolean;
|
|
453
|
+
branching: z.ZodBoolean;
|
|
454
|
+
inline_machine_translations: z.ZodBoolean;
|
|
455
|
+
custom_translation_statuses: z.ZodBoolean;
|
|
456
|
+
custom_translation_statuses_allow_multiple: z.ZodBoolean;
|
|
457
|
+
segmentation: z.ZodBoolean;
|
|
458
|
+
contributor_preview_download_enabled: z.ZodBoolean;
|
|
459
|
+
}, z.core.$strip>>;
|
|
460
|
+
statistics: z.ZodOptional<z.ZodObject<{
|
|
461
|
+
progress_total: z.ZodNumber;
|
|
462
|
+
keys_total: z.ZodNumber;
|
|
463
|
+
team: z.ZodNumber;
|
|
464
|
+
base_words: z.ZodNumber;
|
|
465
|
+
qa_issues_total: z.ZodNumber;
|
|
466
|
+
qa_issues: z.ZodObject<{
|
|
467
|
+
not_reviewed: z.ZodNumber;
|
|
468
|
+
unverified: z.ZodNumber;
|
|
469
|
+
spelling_grammar: z.ZodNumber;
|
|
470
|
+
inconsistent_placeholders: z.ZodNumber;
|
|
471
|
+
inconsistent_html: z.ZodNumber;
|
|
472
|
+
different_number_of_urls: z.ZodNumber;
|
|
473
|
+
different_urls: z.ZodNumber;
|
|
474
|
+
leading_whitespace: z.ZodNumber;
|
|
475
|
+
trailing_whitespace: z.ZodNumber;
|
|
476
|
+
different_number_of_email_address: z.ZodNumber;
|
|
477
|
+
different_email_address: z.ZodNumber;
|
|
478
|
+
different_brackets: z.ZodNumber;
|
|
479
|
+
different_numbers: z.ZodNumber;
|
|
480
|
+
double_space: z.ZodNumber;
|
|
481
|
+
special_placeholder: z.ZodNumber;
|
|
482
|
+
unbalanced_brackets: z.ZodNumber;
|
|
483
|
+
}, z.core.$strip>;
|
|
484
|
+
languages: z.ZodArray<z.ZodObject<{
|
|
485
|
+
language_id: z.ZodNumber;
|
|
486
|
+
language_iso: z.ZodString;
|
|
487
|
+
progress: z.ZodNumber;
|
|
488
|
+
words_to_do: z.ZodNumber;
|
|
489
|
+
project_language_id: z.ZodNumber;
|
|
490
|
+
project_language_uuid: z.ZodGUID;
|
|
491
|
+
}, z.core.$strip>>;
|
|
492
|
+
}, z.core.$strip>>;
|
|
493
|
+
}, z.core.$strip>;
|
|
494
|
+
export declare const postExpertCreateProjectContract: import("@lokalise/api-contracts").PayloadRouteDefinition<z.ZodObject<{
|
|
495
|
+
name: z.ZodString;
|
|
496
|
+
team_id: z.ZodString;
|
|
497
|
+
base_lang_iso: z.ZodString;
|
|
498
|
+
languages: z.ZodArray<z.ZodObject<{
|
|
499
|
+
lang_iso: z.ZodString;
|
|
500
|
+
custom_iso: z.ZodOptional<z.ZodString>;
|
|
501
|
+
}, z.core.$strip>>;
|
|
502
|
+
project_type: z.ZodEnum<{
|
|
503
|
+
localization_files: "localization_files";
|
|
504
|
+
paged_documents: "paged_documents";
|
|
505
|
+
content_integration: "content_integration";
|
|
506
|
+
marketing: "marketing";
|
|
507
|
+
marketing_integrations: "marketing_integrations";
|
|
508
|
+
marketing_portal: "marketing_portal";
|
|
509
|
+
}>;
|
|
510
|
+
is_segmentation_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
511
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
512
|
+
project_id: z.ZodString;
|
|
513
|
+
uuid: z.ZodGUID;
|
|
514
|
+
project_type: z.ZodEnum<{
|
|
515
|
+
localization_files: "localization_files";
|
|
516
|
+
paged_documents: "paged_documents";
|
|
517
|
+
content_integration: "content_integration";
|
|
518
|
+
marketing: "marketing";
|
|
519
|
+
marketing_integrations: "marketing_integrations";
|
|
520
|
+
marketing_portal: "marketing_portal";
|
|
521
|
+
}>;
|
|
522
|
+
name: z.ZodString;
|
|
523
|
+
description: z.ZodString;
|
|
524
|
+
created_at: z.ZodString;
|
|
525
|
+
created_at_timestamp: z.ZodNumber;
|
|
526
|
+
created_by: z.ZodNumber;
|
|
527
|
+
created_by_email: z.ZodString;
|
|
528
|
+
team_id: z.ZodNumber;
|
|
529
|
+
team_uuid: z.ZodGUID;
|
|
530
|
+
base_language_id: z.ZodNumber;
|
|
531
|
+
base_language_iso: z.ZodString;
|
|
532
|
+
base_project_language_id: z.ZodNumber;
|
|
533
|
+
base_project_language_uuid: z.ZodGUID;
|
|
534
|
+
settings: z.ZodOptional<z.ZodObject<{
|
|
535
|
+
per_platform_key_names: z.ZodBoolean;
|
|
536
|
+
reviewing: z.ZodBoolean;
|
|
537
|
+
auto_toggle_unverified: z.ZodBoolean;
|
|
538
|
+
offline_translation: z.ZodBoolean;
|
|
539
|
+
key_editing: z.ZodBoolean;
|
|
540
|
+
branching: z.ZodBoolean;
|
|
541
|
+
inline_machine_translations: z.ZodBoolean;
|
|
542
|
+
custom_translation_statuses: z.ZodBoolean;
|
|
543
|
+
custom_translation_statuses_allow_multiple: z.ZodBoolean;
|
|
544
|
+
segmentation: z.ZodBoolean;
|
|
545
|
+
contributor_preview_download_enabled: z.ZodBoolean;
|
|
546
|
+
}, z.core.$strip>>;
|
|
547
|
+
statistics: z.ZodOptional<z.ZodObject<{
|
|
548
|
+
progress_total: z.ZodNumber;
|
|
549
|
+
keys_total: z.ZodNumber;
|
|
550
|
+
team: z.ZodNumber;
|
|
551
|
+
base_words: z.ZodNumber;
|
|
552
|
+
qa_issues_total: z.ZodNumber;
|
|
553
|
+
qa_issues: z.ZodObject<{
|
|
554
|
+
not_reviewed: z.ZodNumber;
|
|
555
|
+
unverified: z.ZodNumber;
|
|
556
|
+
spelling_grammar: z.ZodNumber;
|
|
557
|
+
inconsistent_placeholders: z.ZodNumber;
|
|
558
|
+
inconsistent_html: z.ZodNumber;
|
|
559
|
+
different_number_of_urls: z.ZodNumber;
|
|
560
|
+
different_urls: z.ZodNumber;
|
|
561
|
+
leading_whitespace: z.ZodNumber;
|
|
562
|
+
trailing_whitespace: z.ZodNumber;
|
|
563
|
+
different_number_of_email_address: z.ZodNumber;
|
|
564
|
+
different_email_address: z.ZodNumber;
|
|
565
|
+
different_brackets: z.ZodNumber;
|
|
566
|
+
different_numbers: z.ZodNumber;
|
|
567
|
+
double_space: z.ZodNumber;
|
|
568
|
+
special_placeholder: z.ZodNumber;
|
|
569
|
+
unbalanced_brackets: z.ZodNumber;
|
|
570
|
+
}, z.core.$strip>;
|
|
571
|
+
languages: z.ZodArray<z.ZodObject<{
|
|
572
|
+
language_id: z.ZodNumber;
|
|
573
|
+
language_iso: z.ZodString;
|
|
574
|
+
progress: z.ZodNumber;
|
|
575
|
+
words_to_do: z.ZodNumber;
|
|
576
|
+
project_language_id: z.ZodNumber;
|
|
577
|
+
project_language_uuid: z.ZodGUID;
|
|
578
|
+
}, z.core.$strip>>;
|
|
579
|
+
}, z.core.$strip>>;
|
|
580
|
+
}, z.core.$strip>, undefined, undefined, z.ZodObject<{
|
|
581
|
+
Authorization: z.ZodString;
|
|
582
|
+
'Content-Type': z.ZodLiteral<"application/json">;
|
|
583
|
+
}, z.core.$strip>, undefined, false, false, {
|
|
584
|
+
200: z.ZodObject<{
|
|
585
|
+
project_id: z.ZodString;
|
|
586
|
+
uuid: z.ZodGUID;
|
|
587
|
+
project_type: z.ZodEnum<{
|
|
588
|
+
localization_files: "localization_files";
|
|
589
|
+
paged_documents: "paged_documents";
|
|
590
|
+
content_integration: "content_integration";
|
|
591
|
+
marketing: "marketing";
|
|
592
|
+
marketing_integrations: "marketing_integrations";
|
|
593
|
+
marketing_portal: "marketing_portal";
|
|
594
|
+
}>;
|
|
595
|
+
name: z.ZodString;
|
|
596
|
+
description: z.ZodString;
|
|
597
|
+
created_at: z.ZodString;
|
|
598
|
+
created_at_timestamp: z.ZodNumber;
|
|
599
|
+
created_by: z.ZodNumber;
|
|
600
|
+
created_by_email: z.ZodString;
|
|
601
|
+
team_id: z.ZodNumber;
|
|
602
|
+
team_uuid: z.ZodGUID;
|
|
603
|
+
base_language_id: z.ZodNumber;
|
|
604
|
+
base_language_iso: z.ZodString;
|
|
605
|
+
base_project_language_id: z.ZodNumber;
|
|
606
|
+
base_project_language_uuid: z.ZodGUID;
|
|
607
|
+
settings: z.ZodOptional<z.ZodObject<{
|
|
608
|
+
per_platform_key_names: z.ZodBoolean;
|
|
609
|
+
reviewing: z.ZodBoolean;
|
|
610
|
+
auto_toggle_unverified: z.ZodBoolean;
|
|
611
|
+
offline_translation: z.ZodBoolean;
|
|
612
|
+
key_editing: z.ZodBoolean;
|
|
613
|
+
branching: z.ZodBoolean;
|
|
614
|
+
inline_machine_translations: z.ZodBoolean;
|
|
615
|
+
custom_translation_statuses: z.ZodBoolean;
|
|
616
|
+
custom_translation_statuses_allow_multiple: z.ZodBoolean;
|
|
617
|
+
segmentation: z.ZodBoolean;
|
|
618
|
+
contributor_preview_download_enabled: z.ZodBoolean;
|
|
619
|
+
}, z.core.$strip>>;
|
|
620
|
+
statistics: z.ZodOptional<z.ZodObject<{
|
|
621
|
+
progress_total: z.ZodNumber;
|
|
622
|
+
keys_total: z.ZodNumber;
|
|
623
|
+
team: z.ZodNumber;
|
|
624
|
+
base_words: z.ZodNumber;
|
|
625
|
+
qa_issues_total: z.ZodNumber;
|
|
626
|
+
qa_issues: z.ZodObject<{
|
|
627
|
+
not_reviewed: z.ZodNumber;
|
|
628
|
+
unverified: z.ZodNumber;
|
|
629
|
+
spelling_grammar: z.ZodNumber;
|
|
630
|
+
inconsistent_placeholders: z.ZodNumber;
|
|
631
|
+
inconsistent_html: z.ZodNumber;
|
|
632
|
+
different_number_of_urls: z.ZodNumber;
|
|
633
|
+
different_urls: z.ZodNumber;
|
|
634
|
+
leading_whitespace: z.ZodNumber;
|
|
635
|
+
trailing_whitespace: z.ZodNumber;
|
|
636
|
+
different_number_of_email_address: z.ZodNumber;
|
|
637
|
+
different_email_address: z.ZodNumber;
|
|
638
|
+
different_brackets: z.ZodNumber;
|
|
639
|
+
different_numbers: z.ZodNumber;
|
|
640
|
+
double_space: z.ZodNumber;
|
|
641
|
+
special_placeholder: z.ZodNumber;
|
|
642
|
+
unbalanced_brackets: z.ZodNumber;
|
|
643
|
+
}, z.core.$strip>;
|
|
644
|
+
languages: z.ZodArray<z.ZodObject<{
|
|
645
|
+
language_id: z.ZodNumber;
|
|
646
|
+
language_iso: z.ZodString;
|
|
647
|
+
progress: z.ZodNumber;
|
|
648
|
+
words_to_do: z.ZodNumber;
|
|
649
|
+
project_language_id: z.ZodNumber;
|
|
650
|
+
project_language_uuid: z.ZodGUID;
|
|
651
|
+
}, z.core.$strip>>;
|
|
652
|
+
}, z.core.$strip>>;
|
|
653
|
+
}, z.core.$strip>;
|
|
654
|
+
}>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { buildGetRoute } from '@lokalise/api-contracts';
|
|
1
|
+
import { buildGetRoute, buildPayloadRoute } from '@lokalise/api-contracts';
|
|
2
2
|
import { z } from 'zod/v4';
|
|
3
|
+
import { API_PROJECT_SCHEMA, CREATE_PROJECT_REQUEST_BODY_SCHEMA } from "../../types/projectTypes.js";
|
|
3
4
|
import { EXPERT_AUTHORIZATION_HEADER_SCHEMA, EXPERT_MANDATORY_PAGINATION_SCHEMA, PROJECT_ID_REQUEST_PARAM_SCHEMA, } from "./common.js";
|
|
4
5
|
// ---------------------------------------------------
|
|
5
6
|
// GET /api2/projects/:projectId
|
|
@@ -96,4 +97,20 @@ export const getExpertTeamProjectsContract = buildGetRoute({
|
|
|
96
97
|
},
|
|
97
98
|
requestHeaderSchema: EXPERT_AUTHORIZATION_HEADER_SCHEMA,
|
|
98
99
|
});
|
|
100
|
+
// ---------------------------------------------------
|
|
101
|
+
// POST /api2/projects
|
|
102
|
+
// ---------------------------------------------------
|
|
103
|
+
export const POST_EXPERT_CREATE_PROJECT_REQUEST_BODY_SCHEMA = CREATE_PROJECT_REQUEST_BODY_SCHEMA;
|
|
104
|
+
export const POST_EXPERT_CREATE_PROJECT_RESPONSE = API_PROJECT_SCHEMA;
|
|
105
|
+
export const postExpertCreateProjectContract = buildPayloadRoute({
|
|
106
|
+
method: 'post',
|
|
107
|
+
pathResolver: (_) => `/api2/projects`,
|
|
108
|
+
description: 'Create project',
|
|
109
|
+
requestHeaderSchema: EXPERT_AUTHORIZATION_HEADER_SCHEMA,
|
|
110
|
+
requestBodySchema: POST_EXPERT_CREATE_PROJECT_REQUEST_BODY_SCHEMA,
|
|
111
|
+
successResponseBodySchema: POST_EXPERT_CREATE_PROJECT_RESPONSE,
|
|
112
|
+
responseSchemasByStatusCode: {
|
|
113
|
+
200: POST_EXPERT_CREATE_PROJECT_RESPONSE,
|
|
114
|
+
},
|
|
115
|
+
});
|
|
99
116
|
//# sourceMappingURL=projects.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"projects.js","sourceRoot":"","sources":["../../../src/schemas/expert/projects.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAA;
|
|
1
|
+
{"version":3,"file":"projects.js","sourceRoot":"","sources":["../../../src/schemas/expert/projects.ts"],"names":[],"mappings":"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"}
|