@strapi/review-workflows 5.49.0 → 5.50.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.
- package/dist/admin/index.js +1 -0
- package/dist/admin/index.js.map +1 -1
- package/dist/admin/index.mjs +1 -0
- package/dist/admin/index.mjs.map +1 -1
- package/dist/admin/src/components/LimitsModal.d.ts +2 -2
- package/dist/admin/src/routes/settings/hooks/useDragAndDrop.d.ts +4 -4
- package/dist/admin/src/routes/settings/hooks/useKeyboardDragAndDrop.d.ts +1 -1
- package/dist/admin/src/routes/settings/hooks/useReviewWorkflows.d.ts +2 -2
- package/dist/admin/src/services/content-manager.d.ts +7 -7
- package/dist/admin/src/services/settings.d.ts +75 -75
- package/dist/admin/src/utils/users.d.ts +1 -1
- package/dist/admin/translations/ja.json.js +41 -0
- package/dist/admin/translations/ja.json.js.map +1 -0
- package/dist/admin/translations/ja.json.mjs +39 -0
- package/dist/admin/translations/ja.json.mjs.map +1 -0
- package/dist/server/controllers/stages.js +0 -2
- package/dist/server/controllers/stages.js.map +1 -1
- package/dist/server/controllers/stages.mjs +0 -2
- package/dist/server/controllers/stages.mjs.map +1 -1
- package/dist/server/controllers/workflows.js +0 -4
- package/dist/server/controllers/workflows.js.map +1 -1
- package/dist/server/controllers/workflows.mjs +0 -4
- package/dist/server/controllers/workflows.mjs.map +1 -1
- package/dist/server/src/bootstrap.d.ts.map +1 -1
- package/dist/server/src/controllers/index.d.ts +3 -4
- package/dist/server/src/controllers/index.d.ts.map +1 -1
- package/dist/server/src/controllers/stages.d.ts +1 -3
- package/dist/server/src/controllers/stages.d.ts.map +1 -1
- package/dist/server/src/controllers/workflows.d.ts +2 -6
- package/dist/server/src/controllers/workflows.d.ts.map +1 -1
- package/dist/server/src/destroy.d.ts.map +1 -1
- package/dist/server/src/homepage/controllers/homepage.d.ts.map +1 -1
- package/dist/server/src/homepage/controllers/index.d.ts +2 -1
- package/dist/server/src/homepage/controllers/index.d.ts.map +1 -1
- package/dist/server/src/homepage/index.d.ts +1 -1
- package/dist/server/src/homepage/services/homepage.d.ts +1 -1
- package/dist/server/src/homepage/services/homepage.d.ts.map +1 -1
- package/dist/server/src/homepage/services/index.d.ts +1 -1
- package/dist/server/src/index.d.ts +11 -12
- package/dist/server/src/index.d.ts.map +1 -1
- package/dist/server/src/register.d.ts.map +1 -1
- package/dist/server/src/routes/utils.d.ts.map +1 -1
- package/dist/server/src/services/assignees.d.ts.map +1 -1
- package/dist/server/src/services/index.d.ts +8 -8
- package/dist/server/src/services/index.d.ts.map +1 -1
- package/dist/server/src/services/metrics/index.d.ts.map +1 -1
- package/dist/server/src/services/metrics/weekly-metrics.d.ts.map +1 -1
- package/dist/server/src/services/stage-permissions.d.ts.map +1 -1
- package/dist/server/src/services/stages.d.ts.map +1 -1
- package/dist/server/src/services/validation.d.ts.map +1 -1
- package/dist/server/src/services/workflow-content-types.d.ts.map +1 -1
- package/dist/server/src/services/workflows.d.ts.map +1 -1
- package/dist/server/src/utils/index.d.ts.map +1 -1
- package/dist/server/src/utils/review-workflows.d.ts.map +1 -1
- package/dist/server/src/validation/review-workflows.d.ts +10 -10
- package/dist/server/src/validation/review-workflows.d.ts.map +1 -1
- package/package.json +7 -7
|
@@ -2,8 +2,8 @@ import type { Update, Delete, GetAll } from '../../../shared/contracts/review-wo
|
|
|
2
2
|
type GetWorkflowsParams = GetAll.Request['query'];
|
|
3
3
|
declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/buildHooks").UseQuery<import("@reduxjs/toolkit/query").QueryDefinition<void | ({
|
|
4
4
|
filters?: ({
|
|
5
|
-
$and?: (any & {
|
|
6
|
-
$not?: (any & any & {
|
|
5
|
+
$and?: (/*elided*/ any & {
|
|
6
|
+
$not?: (/*elided*/ any & /*elided*/ any & {
|
|
7
7
|
id?: import("@strapi/types/dist/data").ID | ({
|
|
8
8
|
$null?: boolean | undefined;
|
|
9
9
|
$notNull?: boolean | undefined;
|
|
@@ -55,7 +55,7 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
55
55
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
56
56
|
} & {
|
|
57
57
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
58
|
-
} & any & {
|
|
58
|
+
} & /*elided*/ any & {
|
|
59
59
|
$and?: (import("@strapi/types/dist/data").ID | ({
|
|
60
60
|
$null?: boolean | undefined;
|
|
61
61
|
$notNull?: boolean | undefined;
|
|
@@ -81,7 +81,7 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
81
81
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
82
82
|
} & {
|
|
83
83
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
84
|
-
} & any & any))[] | undefined;
|
|
84
|
+
} & /*elided*/ any & /*elided*/ any))[] | undefined;
|
|
85
85
|
$or?: (import("@strapi/types/dist/data").ID | ({
|
|
86
86
|
$null?: boolean | undefined;
|
|
87
87
|
$notNull?: boolean | undefined;
|
|
@@ -107,7 +107,7 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
107
107
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
108
108
|
} & {
|
|
109
109
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
110
|
-
} & any & any))[] | undefined;
|
|
110
|
+
} & /*elided*/ any & /*elided*/ any))[] | undefined;
|
|
111
111
|
}) | undefined;
|
|
112
112
|
} & {
|
|
113
113
|
$and?: (import("@strapi/types/dist/data").ID | ({
|
|
@@ -161,8 +161,8 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
161
161
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
162
162
|
} & {
|
|
163
163
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
164
|
-
} & any & any) | undefined;
|
|
165
|
-
} & any))[] | undefined;
|
|
164
|
+
} & /*elided*/ any & /*elided*/ any) | undefined;
|
|
165
|
+
} & /*elided*/ any))[] | undefined;
|
|
166
166
|
$or?: (import("@strapi/types/dist/data").ID | ({
|
|
167
167
|
$null?: boolean | undefined;
|
|
168
168
|
$notNull?: boolean | undefined;
|
|
@@ -214,9 +214,9 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
214
214
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
215
215
|
} & {
|
|
216
216
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
217
|
-
} & any & any) | undefined;
|
|
218
|
-
} & any))[] | undefined;
|
|
219
|
-
})
|
|
217
|
+
} & /*elided*/ any & /*elided*/ any) | undefined;
|
|
218
|
+
} & /*elided*/ any))[] | undefined;
|
|
219
|
+
});
|
|
220
220
|
} & import("@strapi/types/dist/modules/entity-service/params/filters").AbstractAttributesFiltering<"admin::review-workflow">) | undefined;
|
|
221
221
|
} & {
|
|
222
222
|
id?: import("@strapi/types/dist/data").ID | ({
|
|
@@ -270,7 +270,7 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
270
270
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
271
271
|
} & {
|
|
272
272
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
273
|
-
} & any & {
|
|
273
|
+
} & /*elided*/ any & {
|
|
274
274
|
$and?: (import("@strapi/types/dist/data").ID | ({
|
|
275
275
|
$null?: boolean | undefined;
|
|
276
276
|
$notNull?: boolean | undefined;
|
|
@@ -296,7 +296,7 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
296
296
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
297
297
|
} & {
|
|
298
298
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
299
|
-
} & any & any))[] | undefined;
|
|
299
|
+
} & /*elided*/ any & /*elided*/ any))[] | undefined;
|
|
300
300
|
$or?: (import("@strapi/types/dist/data").ID | ({
|
|
301
301
|
$null?: boolean | undefined;
|
|
302
302
|
$notNull?: boolean | undefined;
|
|
@@ -322,7 +322,7 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
322
322
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
323
323
|
} & {
|
|
324
324
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
325
|
-
} & any & any))[] | undefined;
|
|
325
|
+
} & /*elided*/ any & /*elided*/ any))[] | undefined;
|
|
326
326
|
}) | undefined;
|
|
327
327
|
} & {
|
|
328
328
|
$and?: (import("@strapi/types/dist/data").ID | ({
|
|
@@ -376,8 +376,8 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
376
376
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
377
377
|
} & {
|
|
378
378
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
379
|
-
} & any & any) | undefined;
|
|
380
|
-
} & any))[] | undefined;
|
|
379
|
+
} & /*elided*/ any & /*elided*/ any) | undefined;
|
|
380
|
+
} & /*elided*/ any))[] | undefined;
|
|
381
381
|
$or?: (import("@strapi/types/dist/data").ID | ({
|
|
382
382
|
$null?: boolean | undefined;
|
|
383
383
|
$notNull?: boolean | undefined;
|
|
@@ -429,12 +429,12 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
429
429
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
430
430
|
} & {
|
|
431
431
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
432
|
-
} & any & any) | undefined;
|
|
433
|
-
} & any))[] | undefined;
|
|
434
|
-
})
|
|
432
|
+
} & /*elided*/ any & /*elided*/ any) | undefined;
|
|
433
|
+
} & /*elided*/ any))[] | undefined;
|
|
434
|
+
});
|
|
435
435
|
} & import("@strapi/types/dist/modules/entity-service/params/filters").AbstractAttributesFiltering<"admin::review-workflow">)[] | undefined;
|
|
436
|
-
$or?: (any & {
|
|
437
|
-
$not?: (any & any & {
|
|
436
|
+
$or?: (/*elided*/ any & {
|
|
437
|
+
$not?: (/*elided*/ any & /*elided*/ any & {
|
|
438
438
|
id?: import("@strapi/types/dist/data").ID | ({
|
|
439
439
|
$null?: boolean | undefined;
|
|
440
440
|
$notNull?: boolean | undefined;
|
|
@@ -486,7 +486,7 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
486
486
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
487
487
|
} & {
|
|
488
488
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
489
|
-
} & any & {
|
|
489
|
+
} & /*elided*/ any & {
|
|
490
490
|
$and?: (import("@strapi/types/dist/data").ID | ({
|
|
491
491
|
$null?: boolean | undefined;
|
|
492
492
|
$notNull?: boolean | undefined;
|
|
@@ -512,7 +512,7 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
512
512
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
513
513
|
} & {
|
|
514
514
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
515
|
-
} & any & any))[] | undefined;
|
|
515
|
+
} & /*elided*/ any & /*elided*/ any))[] | undefined;
|
|
516
516
|
$or?: (import("@strapi/types/dist/data").ID | ({
|
|
517
517
|
$null?: boolean | undefined;
|
|
518
518
|
$notNull?: boolean | undefined;
|
|
@@ -538,7 +538,7 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
538
538
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
539
539
|
} & {
|
|
540
540
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
541
|
-
} & any & any))[] | undefined;
|
|
541
|
+
} & /*elided*/ any & /*elided*/ any))[] | undefined;
|
|
542
542
|
}) | undefined;
|
|
543
543
|
} & {
|
|
544
544
|
$and?: (import("@strapi/types/dist/data").ID | ({
|
|
@@ -592,8 +592,8 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
592
592
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
593
593
|
} & {
|
|
594
594
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
595
|
-
} & any & any) | undefined;
|
|
596
|
-
} & any))[] | undefined;
|
|
595
|
+
} & /*elided*/ any & /*elided*/ any) | undefined;
|
|
596
|
+
} & /*elided*/ any))[] | undefined;
|
|
597
597
|
$or?: (import("@strapi/types/dist/data").ID | ({
|
|
598
598
|
$null?: boolean | undefined;
|
|
599
599
|
$notNull?: boolean | undefined;
|
|
@@ -645,9 +645,9 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
645
645
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
646
646
|
} & {
|
|
647
647
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
648
|
-
} & any & any) | undefined;
|
|
649
|
-
} & any))[] | undefined;
|
|
650
|
-
})
|
|
648
|
+
} & /*elided*/ any & /*elided*/ any) | undefined;
|
|
649
|
+
} & /*elided*/ any))[] | undefined;
|
|
650
|
+
});
|
|
651
651
|
} & import("@strapi/types/dist/modules/entity-service/params/filters").AbstractAttributesFiltering<"admin::review-workflow">) | undefined;
|
|
652
652
|
} & {
|
|
653
653
|
id?: import("@strapi/types/dist/data").ID | ({
|
|
@@ -701,7 +701,7 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
701
701
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
702
702
|
} & {
|
|
703
703
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
704
|
-
} & any & {
|
|
704
|
+
} & /*elided*/ any & {
|
|
705
705
|
$and?: (import("@strapi/types/dist/data").ID | ({
|
|
706
706
|
$null?: boolean | undefined;
|
|
707
707
|
$notNull?: boolean | undefined;
|
|
@@ -727,7 +727,7 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
727
727
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
728
728
|
} & {
|
|
729
729
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
730
|
-
} & any & any))[] | undefined;
|
|
730
|
+
} & /*elided*/ any & /*elided*/ any))[] | undefined;
|
|
731
731
|
$or?: (import("@strapi/types/dist/data").ID | ({
|
|
732
732
|
$null?: boolean | undefined;
|
|
733
733
|
$notNull?: boolean | undefined;
|
|
@@ -753,7 +753,7 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
753
753
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
754
754
|
} & {
|
|
755
755
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
756
|
-
} & any & any))[] | undefined;
|
|
756
|
+
} & /*elided*/ any & /*elided*/ any))[] | undefined;
|
|
757
757
|
}) | undefined;
|
|
758
758
|
} & {
|
|
759
759
|
$and?: (import("@strapi/types/dist/data").ID | ({
|
|
@@ -807,8 +807,8 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
807
807
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
808
808
|
} & {
|
|
809
809
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
810
|
-
} & any & any) | undefined;
|
|
811
|
-
} & any))[] | undefined;
|
|
810
|
+
} & /*elided*/ any & /*elided*/ any) | undefined;
|
|
811
|
+
} & /*elided*/ any))[] | undefined;
|
|
812
812
|
$or?: (import("@strapi/types/dist/data").ID | ({
|
|
813
813
|
$null?: boolean | undefined;
|
|
814
814
|
$notNull?: boolean | undefined;
|
|
@@ -860,13 +860,13 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
860
860
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
861
861
|
} & {
|
|
862
862
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
863
|
-
} & any & any) | undefined;
|
|
864
|
-
} & any))[] | undefined;
|
|
865
|
-
})
|
|
863
|
+
} & /*elided*/ any & /*elided*/ any) | undefined;
|
|
864
|
+
} & /*elided*/ any))[] | undefined;
|
|
865
|
+
});
|
|
866
866
|
} & import("@strapi/types/dist/modules/entity-service/params/filters").AbstractAttributesFiltering<"admin::review-workflow">)[] | undefined;
|
|
867
867
|
} & {
|
|
868
868
|
$not?: ({
|
|
869
|
-
$and?: (any & any & {
|
|
869
|
+
$and?: (/*elided*/ any & /*elided*/ any & {
|
|
870
870
|
id?: import("@strapi/types/dist/data").ID | ({
|
|
871
871
|
$null?: boolean | undefined;
|
|
872
872
|
$notNull?: boolean | undefined;
|
|
@@ -918,7 +918,7 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
918
918
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
919
919
|
} & {
|
|
920
920
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
921
|
-
} & any & {
|
|
921
|
+
} & /*elided*/ any & {
|
|
922
922
|
$and?: (import("@strapi/types/dist/data").ID | ({
|
|
923
923
|
$null?: boolean | undefined;
|
|
924
924
|
$notNull?: boolean | undefined;
|
|
@@ -944,7 +944,7 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
944
944
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
945
945
|
} & {
|
|
946
946
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
947
|
-
} & any & any))[] | undefined;
|
|
947
|
+
} & /*elided*/ any & /*elided*/ any))[] | undefined;
|
|
948
948
|
$or?: (import("@strapi/types/dist/data").ID | ({
|
|
949
949
|
$null?: boolean | undefined;
|
|
950
950
|
$notNull?: boolean | undefined;
|
|
@@ -970,7 +970,7 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
970
970
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
971
971
|
} & {
|
|
972
972
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
973
|
-
} & any & any))[] | undefined;
|
|
973
|
+
} & /*elided*/ any & /*elided*/ any))[] | undefined;
|
|
974
974
|
}) | undefined;
|
|
975
975
|
} & {
|
|
976
976
|
$and?: (import("@strapi/types/dist/data").ID | ({
|
|
@@ -1024,8 +1024,8 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
1024
1024
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
1025
1025
|
} & {
|
|
1026
1026
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
1027
|
-
} & any & any) | undefined;
|
|
1028
|
-
} & any))[] | undefined;
|
|
1027
|
+
} & /*elided*/ any & /*elided*/ any) | undefined;
|
|
1028
|
+
} & /*elided*/ any))[] | undefined;
|
|
1029
1029
|
$or?: (import("@strapi/types/dist/data").ID | ({
|
|
1030
1030
|
$null?: boolean | undefined;
|
|
1031
1031
|
$notNull?: boolean | undefined;
|
|
@@ -1077,11 +1077,11 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
1077
1077
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
1078
1078
|
} & {
|
|
1079
1079
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
1080
|
-
} & any & any) | undefined;
|
|
1081
|
-
} & any))[] | undefined;
|
|
1082
|
-
})
|
|
1080
|
+
} & /*elided*/ any & /*elided*/ any) | undefined;
|
|
1081
|
+
} & /*elided*/ any))[] | undefined;
|
|
1082
|
+
});
|
|
1083
1083
|
} & import("@strapi/types/dist/modules/entity-service/params/filters").AbstractAttributesFiltering<"admin::review-workflow">)[] | undefined;
|
|
1084
|
-
$or?: (any & any & {
|
|
1084
|
+
$or?: (/*elided*/ any & /*elided*/ any & {
|
|
1085
1085
|
id?: import("@strapi/types/dist/data").ID | ({
|
|
1086
1086
|
$null?: boolean | undefined;
|
|
1087
1087
|
$notNull?: boolean | undefined;
|
|
@@ -1133,7 +1133,7 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
1133
1133
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
1134
1134
|
} & {
|
|
1135
1135
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
1136
|
-
} & any & {
|
|
1136
|
+
} & /*elided*/ any & {
|
|
1137
1137
|
$and?: (import("@strapi/types/dist/data").ID | ({
|
|
1138
1138
|
$null?: boolean | undefined;
|
|
1139
1139
|
$notNull?: boolean | undefined;
|
|
@@ -1159,7 +1159,7 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
1159
1159
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
1160
1160
|
} & {
|
|
1161
1161
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
1162
|
-
} & any & any))[] | undefined;
|
|
1162
|
+
} & /*elided*/ any & /*elided*/ any))[] | undefined;
|
|
1163
1163
|
$or?: (import("@strapi/types/dist/data").ID | ({
|
|
1164
1164
|
$null?: boolean | undefined;
|
|
1165
1165
|
$notNull?: boolean | undefined;
|
|
@@ -1185,7 +1185,7 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
1185
1185
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
1186
1186
|
} & {
|
|
1187
1187
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
1188
|
-
} & any & any))[] | undefined;
|
|
1188
|
+
} & /*elided*/ any & /*elided*/ any))[] | undefined;
|
|
1189
1189
|
}) | undefined;
|
|
1190
1190
|
} & {
|
|
1191
1191
|
$and?: (import("@strapi/types/dist/data").ID | ({
|
|
@@ -1239,8 +1239,8 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
1239
1239
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
1240
1240
|
} & {
|
|
1241
1241
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
1242
|
-
} & any & any) | undefined;
|
|
1243
|
-
} & any))[] | undefined;
|
|
1242
|
+
} & /*elided*/ any & /*elided*/ any) | undefined;
|
|
1243
|
+
} & /*elided*/ any))[] | undefined;
|
|
1244
1244
|
$or?: (import("@strapi/types/dist/data").ID | ({
|
|
1245
1245
|
$null?: boolean | undefined;
|
|
1246
1246
|
$notNull?: boolean | undefined;
|
|
@@ -1292,11 +1292,11 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
1292
1292
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
1293
1293
|
} & {
|
|
1294
1294
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
1295
|
-
} & any & any) | undefined;
|
|
1296
|
-
} & any))[] | undefined;
|
|
1297
|
-
})
|
|
1295
|
+
} & /*elided*/ any & /*elided*/ any) | undefined;
|
|
1296
|
+
} & /*elided*/ any))[] | undefined;
|
|
1297
|
+
});
|
|
1298
1298
|
} & import("@strapi/types/dist/modules/entity-service/params/filters").AbstractAttributesFiltering<"admin::review-workflow">)[] | undefined;
|
|
1299
|
-
} & any & {
|
|
1299
|
+
} & /*elided*/ any & {
|
|
1300
1300
|
id?: import("@strapi/types/dist/data").ID | ({
|
|
1301
1301
|
$null?: boolean | undefined;
|
|
1302
1302
|
$notNull?: boolean | undefined;
|
|
@@ -1348,7 +1348,7 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
1348
1348
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
1349
1349
|
} & {
|
|
1350
1350
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
1351
|
-
} & any & {
|
|
1351
|
+
} & /*elided*/ any & {
|
|
1352
1352
|
$and?: (import("@strapi/types/dist/data").ID | ({
|
|
1353
1353
|
$null?: boolean | undefined;
|
|
1354
1354
|
$notNull?: boolean | undefined;
|
|
@@ -1374,7 +1374,7 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
1374
1374
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
1375
1375
|
} & {
|
|
1376
1376
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
1377
|
-
} & any & any))[] | undefined;
|
|
1377
|
+
} & /*elided*/ any & /*elided*/ any))[] | undefined;
|
|
1378
1378
|
$or?: (import("@strapi/types/dist/data").ID | ({
|
|
1379
1379
|
$null?: boolean | undefined;
|
|
1380
1380
|
$notNull?: boolean | undefined;
|
|
@@ -1400,7 +1400,7 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
1400
1400
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
1401
1401
|
} & {
|
|
1402
1402
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
1403
|
-
} & any & any))[] | undefined;
|
|
1403
|
+
} & /*elided*/ any & /*elided*/ any))[] | undefined;
|
|
1404
1404
|
}) | undefined;
|
|
1405
1405
|
} & {
|
|
1406
1406
|
$and?: (import("@strapi/types/dist/data").ID | ({
|
|
@@ -1454,8 +1454,8 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
1454
1454
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
1455
1455
|
} & {
|
|
1456
1456
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
1457
|
-
} & any & any) | undefined;
|
|
1458
|
-
} & any))[] | undefined;
|
|
1457
|
+
} & /*elided*/ any & /*elided*/ any) | undefined;
|
|
1458
|
+
} & /*elided*/ any))[] | undefined;
|
|
1459
1459
|
$or?: (import("@strapi/types/dist/data").ID | ({
|
|
1460
1460
|
$null?: boolean | undefined;
|
|
1461
1461
|
$notNull?: boolean | undefined;
|
|
@@ -1507,9 +1507,9 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
1507
1507
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
1508
1508
|
} & {
|
|
1509
1509
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
1510
|
-
} & any & any) | undefined;
|
|
1511
|
-
} & any))[] | undefined;
|
|
1512
|
-
})
|
|
1510
|
+
} & /*elided*/ any & /*elided*/ any) | undefined;
|
|
1511
|
+
} & /*elided*/ any))[] | undefined;
|
|
1512
|
+
});
|
|
1513
1513
|
} & import("@strapi/types/dist/modules/entity-service/params/filters").AbstractAttributesFiltering<"admin::review-workflow">) | undefined;
|
|
1514
1514
|
} & {
|
|
1515
1515
|
id?: import("@strapi/types/dist/data").ID | ({
|
|
@@ -1563,7 +1563,7 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
1563
1563
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
1564
1564
|
} & {
|
|
1565
1565
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
1566
|
-
} & any & {
|
|
1566
|
+
} & /*elided*/ any & {
|
|
1567
1567
|
$and?: (import("@strapi/types/dist/data").ID | ({
|
|
1568
1568
|
$null?: boolean | undefined;
|
|
1569
1569
|
$notNull?: boolean | undefined;
|
|
@@ -1589,7 +1589,7 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
1589
1589
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
1590
1590
|
} & {
|
|
1591
1591
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
1592
|
-
} & any & any))[] | undefined;
|
|
1592
|
+
} & /*elided*/ any & /*elided*/ any))[] | undefined;
|
|
1593
1593
|
$or?: (import("@strapi/types/dist/data").ID | ({
|
|
1594
1594
|
$null?: boolean | undefined;
|
|
1595
1595
|
$notNull?: boolean | undefined;
|
|
@@ -1615,7 +1615,7 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
1615
1615
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
1616
1616
|
} & {
|
|
1617
1617
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
1618
|
-
} & any & any))[] | undefined;
|
|
1618
|
+
} & /*elided*/ any & /*elided*/ any))[] | undefined;
|
|
1619
1619
|
}) | undefined;
|
|
1620
1620
|
} & {
|
|
1621
1621
|
$and?: (import("@strapi/types/dist/data").ID | ({
|
|
@@ -1669,8 +1669,8 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
1669
1669
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
1670
1670
|
} & {
|
|
1671
1671
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
1672
|
-
} & any & any) | undefined;
|
|
1673
|
-
} & any))[] | undefined;
|
|
1672
|
+
} & /*elided*/ any & /*elided*/ any) | undefined;
|
|
1673
|
+
} & /*elided*/ any))[] | undefined;
|
|
1674
1674
|
$or?: (import("@strapi/types/dist/data").ID | ({
|
|
1675
1675
|
$null?: boolean | undefined;
|
|
1676
1676
|
$notNull?: boolean | undefined;
|
|
@@ -1722,22 +1722,22 @@ declare const useGetWorkflowsQuery: import("@reduxjs/toolkit/dist/query/react/bu
|
|
|
1722
1722
|
$notIn?: import("@strapi/types/dist/data").ID[] | undefined;
|
|
1723
1723
|
} & {
|
|
1724
1724
|
$between?: [import("@strapi/types/dist/data").ID, import("@strapi/types/dist/data").ID] | undefined;
|
|
1725
|
-
} & any & any) | undefined;
|
|
1726
|
-
} & any))[] | undefined;
|
|
1727
|
-
})
|
|
1725
|
+
} & /*elided*/ any & /*elided*/ any) | undefined;
|
|
1726
|
+
} & /*elided*/ any))[] | undefined;
|
|
1727
|
+
});
|
|
1728
1728
|
} & import("@strapi/types/dist/modules/entity-service/params/filters").AbstractAttributesFiltering<"admin::review-workflow">) | undefined;
|
|
1729
1729
|
} & {
|
|
1730
1730
|
populate?: import("@strapi/types/dist/modules/entity-service/params/populate").ArrayNotation<"admin::review-workflow"> | undefined;
|
|
1731
1731
|
}), import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@strapi/admin/strapi-admin").QueryArguments, unknown, import("@strapi/admin/strapi-admin").BaseQueryError, {}, {}>, "GuidedTourMeta" | "HomepageKeyStatistics" | "AiUsage" | "AiFeatureConfig" | "ReviewWorkflow" | "ReviewWorkflowStages" | "Document" | "ContentTypeSettings", {
|
|
1732
|
-
workflows: GetAll.Response[
|
|
1733
|
-
meta?: GetAll.Response[
|
|
1732
|
+
workflows: GetAll.Response["data"];
|
|
1733
|
+
meta?: GetAll.Response["meta"];
|
|
1734
1734
|
}, "adminApi">>, useCreateWorkflowMutation: import("@reduxjs/toolkit/dist/query/react/buildHooks").UseMutation<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
1735
1735
|
data: Omit<import("../../../shared/contracts/review-workflows").Workflow, "id" | "createdAt" | "updatedAt"> & {
|
|
1736
|
-
stageRequiredToPublishName?:
|
|
1736
|
+
stageRequiredToPublishName?: import("../../../shared/contracts/review-workflows").Stage["name"] | null;
|
|
1737
1737
|
};
|
|
1738
1738
|
}, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@strapi/admin/strapi-admin").QueryArguments, unknown, import("@strapi/admin/strapi-admin").BaseQueryError, {}, {}>, "GuidedTourMeta" | "HomepageKeyStatistics" | "AiUsage" | "AiFeatureConfig" | "ReviewWorkflow" | "ReviewWorkflowStages" | "Document" | "ContentTypeSettings", import("../../../shared/contracts/review-workflows").Workflow, "adminApi">>, useDeleteWorkflowMutation: import("@reduxjs/toolkit/dist/query/react/buildHooks").UseMutation<import("@reduxjs/toolkit/query").MutationDefinition<Delete.Params, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@strapi/admin/strapi-admin").QueryArguments, unknown, import("@strapi/admin/strapi-admin").BaseQueryError, {}, {}>, "GuidedTourMeta" | "HomepageKeyStatistics" | "AiUsage" | "AiFeatureConfig" | "ReviewWorkflow" | "ReviewWorkflowStages" | "Document" | "ContentTypeSettings", import("../../../shared/contracts/review-workflows").Workflow, "adminApi">>, useUpdateWorkflowMutation: import("@reduxjs/toolkit/dist/query/react/buildHooks").UseMutation<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
1739
1739
|
data: Partial<Omit<import("../../../shared/contracts/review-workflows").Workflow, "stageRequiredToPublish">> & {
|
|
1740
|
-
stageRequiredToPublishName?:
|
|
1740
|
+
stageRequiredToPublishName?: import("../../../shared/contracts/review-workflows").Stage["name"] | null;
|
|
1741
1741
|
};
|
|
1742
1742
|
} & Update.Params, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@strapi/admin/strapi-admin").QueryArguments, unknown, import("@strapi/admin/strapi-admin").BaseQueryError, {}, {}>, "GuidedTourMeta" | "HomepageKeyStatistics" | "AiUsage" | "AiFeatureConfig" | "ReviewWorkflow" | "ReviewWorkflowStages" | "Document" | "ContentTypeSettings", import("../../../shared/contracts/review-workflows").Workflow, "adminApi">>;
|
|
1743
1743
|
export { useGetWorkflowsQuery, useCreateWorkflowMutation, useDeleteWorkflowMutation, useUpdateWorkflowMutation, type GetWorkflowsParams, };
|
|
@@ -2,5 +2,5 @@ import type { SanitizedAdminUser } from '@strapi/admin/strapi-admin';
|
|
|
2
2
|
/**
|
|
3
3
|
* Retrieves the display name of an admin panel user
|
|
4
4
|
*/
|
|
5
|
-
declare const getDisplayName: ({ firstname, lastname, username, email, }?: Partial<Pick<SanitizedAdminUser,
|
|
5
|
+
declare const getDisplayName: ({ firstname, lastname, username, email, }?: Partial<Pick<SanitizedAdminUser, "firstname" | "lastname" | "username" | "email">>) => string;
|
|
6
6
|
export { getDisplayName };
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var ja = {
|
|
4
|
+
"assignee.clear": "担当者をクリア",
|
|
5
|
+
"assignee.error": "ユーザーの取得中にエラーが発生しました",
|
|
6
|
+
"assignee.label": "担当者",
|
|
7
|
+
"assignee.notification.saved": "担当者を更新しました",
|
|
8
|
+
"assignee.placeholder": "選択…",
|
|
9
|
+
"containers.list.table-headers.reviewWorkflows.assignee": "担当者",
|
|
10
|
+
"containers.list.table-headers.reviewWorkflows.assignee.label": "担当者",
|
|
11
|
+
"containers.list.table-headers.reviewWorkflows.stage": "レビューステージ",
|
|
12
|
+
"settings.not-available": "レビューワークフローはEnterprise Editionでのみ利用可能です。アップグレードするとワークフローの作成と管理ができます。",
|
|
13
|
+
"settings.page.delete.confirm.body": "削除されたステージに割り当てられたすべてのエントリーは前のステージに移動されます。保存してもよろしいですか?",
|
|
14
|
+
"settings.page.isLoading": "ワークフローを読み込み中",
|
|
15
|
+
"settings.page.purchase.description": "コンテンツレビュープロセスの管理",
|
|
16
|
+
"settings.page.purchase.perks1": "カスタマイズ可能なレビューステージ",
|
|
17
|
+
"settings.page.purchase.perks2": "ユーザー権限の管理",
|
|
18
|
+
"settings.page.purchase.perks3": "Webhookのサポート",
|
|
19
|
+
"settings.page.subtitle": "{count, plural, one {#個のステージ} other {#個のステージ}}",
|
|
20
|
+
"settings.page.title": "レビューワークフロー",
|
|
21
|
+
"settings.review-workflows.workflow.stageRequiredToPublish.any": "任意のステージ",
|
|
22
|
+
"settings.review-workflows.workflow.stageRequiredToPublish.hint": "必要なステージにないエントリーの公開を防ぎます。",
|
|
23
|
+
"settings.review-workflows.workflow.stageRequiredToPublish.label": "公開に必要なステージ",
|
|
24
|
+
"settings.stage.name.label": "ステージ名",
|
|
25
|
+
"stage.color": "色",
|
|
26
|
+
"stage.label": "レビューステージ",
|
|
27
|
+
"stage.notification.error": "レビューステージの更新中にエラーが発生しました",
|
|
28
|
+
"stage.notification.saved": "レビューステージを更新しました",
|
|
29
|
+
"stages.limit.body": "ステージを削除するか、営業担当に連絡してステージ数の追加を依頼してください。",
|
|
30
|
+
"stages.limit.title": "ご利用プランにおけるこのワークフローのステージ数上限に達しました",
|
|
31
|
+
"stages.no-transition": "このステージを更新する権限がありません。",
|
|
32
|
+
"stages.save-first": "ワークフローステージを割り当てるには、このエントリを保存してください。",
|
|
33
|
+
"stages.single-stage": "このワークフローにはステージが1つしかありません。ステージ間を遷移するには、ステージを追加してください。",
|
|
34
|
+
"widget.assigned.no-data": "エントリーがありません",
|
|
35
|
+
"widget.assigned.title": "自分への割り当て",
|
|
36
|
+
"workflows.limit.body": "ワークフローを削除するか、営業担当に連絡してワークフロー数の追加を依頼してください。",
|
|
37
|
+
"workflows.limit.title": "ご利用プランのワークフロー数上限に達しました"
|
|
38
|
+
};
|
|
39
|
+
|
|
40
|
+
module.exports = ja;
|
|
41
|
+
//# sourceMappingURL=ja.json.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ja.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
var ja = {
|
|
2
|
+
"assignee.clear": "担当者をクリア",
|
|
3
|
+
"assignee.error": "ユーザーの取得中にエラーが発生しました",
|
|
4
|
+
"assignee.label": "担当者",
|
|
5
|
+
"assignee.notification.saved": "担当者を更新しました",
|
|
6
|
+
"assignee.placeholder": "選択…",
|
|
7
|
+
"containers.list.table-headers.reviewWorkflows.assignee": "担当者",
|
|
8
|
+
"containers.list.table-headers.reviewWorkflows.assignee.label": "担当者",
|
|
9
|
+
"containers.list.table-headers.reviewWorkflows.stage": "レビューステージ",
|
|
10
|
+
"settings.not-available": "レビューワークフローはEnterprise Editionでのみ利用可能です。アップグレードするとワークフローの作成と管理ができます。",
|
|
11
|
+
"settings.page.delete.confirm.body": "削除されたステージに割り当てられたすべてのエントリーは前のステージに移動されます。保存してもよろしいですか?",
|
|
12
|
+
"settings.page.isLoading": "ワークフローを読み込み中",
|
|
13
|
+
"settings.page.purchase.description": "コンテンツレビュープロセスの管理",
|
|
14
|
+
"settings.page.purchase.perks1": "カスタマイズ可能なレビューステージ",
|
|
15
|
+
"settings.page.purchase.perks2": "ユーザー権限の管理",
|
|
16
|
+
"settings.page.purchase.perks3": "Webhookのサポート",
|
|
17
|
+
"settings.page.subtitle": "{count, plural, one {#個のステージ} other {#個のステージ}}",
|
|
18
|
+
"settings.page.title": "レビューワークフロー",
|
|
19
|
+
"settings.review-workflows.workflow.stageRequiredToPublish.any": "任意のステージ",
|
|
20
|
+
"settings.review-workflows.workflow.stageRequiredToPublish.hint": "必要なステージにないエントリーの公開を防ぎます。",
|
|
21
|
+
"settings.review-workflows.workflow.stageRequiredToPublish.label": "公開に必要なステージ",
|
|
22
|
+
"settings.stage.name.label": "ステージ名",
|
|
23
|
+
"stage.color": "色",
|
|
24
|
+
"stage.label": "レビューステージ",
|
|
25
|
+
"stage.notification.error": "レビューステージの更新中にエラーが発生しました",
|
|
26
|
+
"stage.notification.saved": "レビューステージを更新しました",
|
|
27
|
+
"stages.limit.body": "ステージを削除するか、営業担当に連絡してステージ数の追加を依頼してください。",
|
|
28
|
+
"stages.limit.title": "ご利用プランにおけるこのワークフローのステージ数上限に達しました",
|
|
29
|
+
"stages.no-transition": "このステージを更新する権限がありません。",
|
|
30
|
+
"stages.save-first": "ワークフローステージを割り当てるには、このエントリを保存してください。",
|
|
31
|
+
"stages.single-stage": "このワークフローにはステージが1つしかありません。ステージ間を遷移するには、ステージを追加してください。",
|
|
32
|
+
"widget.assigned.no-data": "エントリーがありません",
|
|
33
|
+
"widget.assigned.title": "自分への割り当て",
|
|
34
|
+
"workflows.limit.body": "ワークフローを削除するか、営業担当に連絡してワークフロー数の追加を依頼してください。",
|
|
35
|
+
"workflows.limit.title": "ご利用プランのワークフロー数上限に達しました"
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
export { ja as default };
|
|
39
|
+
//# sourceMappingURL=ja.json.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ja.json.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -20,7 +20,6 @@ var workflows = require('../constants/workflows.js');
|
|
|
20
20
|
var stages = {
|
|
21
21
|
/**
|
|
22
22
|
* List all stages
|
|
23
|
-
* @param {import('koa').BaseContext} ctx - koa context
|
|
24
23
|
*/ async find (ctx) {
|
|
25
24
|
const { workflow_id: workflowId } = ctx.params;
|
|
26
25
|
const { populate } = ctx.query;
|
|
@@ -38,7 +37,6 @@ var stages = {
|
|
|
38
37
|
},
|
|
39
38
|
/**
|
|
40
39
|
* Get one stage
|
|
41
|
-
* @param {import('koa').BaseContext} ctx - koa context
|
|
42
40
|
*/ async findById (ctx) {
|
|
43
41
|
const { id, workflow_id: workflowId } = ctx.params;
|
|
44
42
|
const { populate } = ctx.query;
|