gst-common 1.6.48 → 1.6.50
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/index.d.cts +5 -12
- package/dist/index.d.ts +5 -12
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2726,18 +2726,11 @@ type TCategoryInternalDeleteRes = TCategoryEntity;
|
|
|
2726
2726
|
type TCategoryInternalListRes = TCategoryEntity[];
|
|
2727
2727
|
type TCategoryPublicListSubjectRes = TCategoryEntity[];
|
|
2728
2728
|
type TCategoryPublicListKeywordRes = TCategoryEntity[];
|
|
2729
|
-
type TProposedCategoryInternalListKeywordsRes = {
|
|
2730
|
-
|
|
2731
|
-
|
|
2732
|
-
|
|
2733
|
-
|
|
2734
|
-
name: string;
|
|
2735
|
-
status: PROPOSED_CATEGORY_STATUS;
|
|
2736
|
-
createdAt: string;
|
|
2737
|
-
updatedAt: string;
|
|
2738
|
-
fromProgramId: string;
|
|
2739
|
-
}[];
|
|
2740
|
-
}[];
|
|
2729
|
+
type TProposedCategoryInternalListKeywordsRes = (TCategoryEntity & {
|
|
2730
|
+
proposedCategories: (TProposedCategoryEntity & {
|
|
2731
|
+
fromProgram: TProgramEntity;
|
|
2732
|
+
})[];
|
|
2733
|
+
})[];
|
|
2741
2734
|
type TProposedCategoryInternalListSubjectKeywordsRes = (TProposedCategoryEntity & {
|
|
2742
2735
|
children: TProposedCategoryEntity[];
|
|
2743
2736
|
fromProgram: TProgramEntity;
|
package/dist/index.d.ts
CHANGED
|
@@ -2726,18 +2726,11 @@ type TCategoryInternalDeleteRes = TCategoryEntity;
|
|
|
2726
2726
|
type TCategoryInternalListRes = TCategoryEntity[];
|
|
2727
2727
|
type TCategoryPublicListSubjectRes = TCategoryEntity[];
|
|
2728
2728
|
type TCategoryPublicListKeywordRes = TCategoryEntity[];
|
|
2729
|
-
type TProposedCategoryInternalListKeywordsRes = {
|
|
2730
|
-
|
|
2731
|
-
|
|
2732
|
-
|
|
2733
|
-
|
|
2734
|
-
name: string;
|
|
2735
|
-
status: PROPOSED_CATEGORY_STATUS;
|
|
2736
|
-
createdAt: string;
|
|
2737
|
-
updatedAt: string;
|
|
2738
|
-
fromProgramId: string;
|
|
2739
|
-
}[];
|
|
2740
|
-
}[];
|
|
2729
|
+
type TProposedCategoryInternalListKeywordsRes = (TCategoryEntity & {
|
|
2730
|
+
proposedCategories: (TProposedCategoryEntity & {
|
|
2731
|
+
fromProgram: TProgramEntity;
|
|
2732
|
+
})[];
|
|
2733
|
+
})[];
|
|
2741
2734
|
type TProposedCategoryInternalListSubjectKeywordsRes = (TProposedCategoryEntity & {
|
|
2742
2735
|
children: TProposedCategoryEntity[];
|
|
2743
2736
|
fromProgram: TProgramEntity;
|