nextemos 3.7.6 → 3.7.8

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.
@@ -82,7 +82,7 @@ interface IConstraint {
82
82
  /**
83
83
  * Blog gönderisi ve etiket eşleşmesini temsil eden arayüz
84
84
  */
85
- interface BlogPostBlogTagMapping {
85
+ export interface BlogPostBlogTagMapping {
86
86
  id?: number;
87
87
  blogTagId?: number;
88
88
  blogPostId?: number;
@@ -91,7 +91,7 @@ interface BlogPostBlogTagMapping {
91
91
  /**
92
92
  * Blog gönderisi ve kategori eşleşmesini temsil eden arayüz
93
93
  */
94
- interface BlogPostBlogCategoryMapping {
94
+ export interface BlogPostBlogCategoryMapping {
95
95
  id?: number;
96
96
  blogPostId?: number;
97
97
  blogCategoryId?: number;
@@ -118,20 +118,20 @@ export interface DisplayType {
118
118
  }
119
119
  export interface ICategory {
120
120
  id: number;
121
- name: string;
122
- description: string;
123
- sort: number;
124
- parentId: number;
125
- catalogId: number;
126
- integrationCode: string;
127
- className: string;
128
- isDefault: boolean;
129
- routePath: string;
130
- routeTitle: string;
131
- routeDescription: string;
132
- parameterName: string;
133
- hierarchy: number[];
134
- extensionData: any;
121
+ name?: string;
122
+ description?: string;
123
+ sort?: number;
124
+ parentId?: number;
125
+ catalogId?: number;
126
+ integrationCode?: string;
127
+ className?: string;
128
+ isDefault?: boolean;
129
+ routePath?: string;
130
+ routeTitle?: string;
131
+ routeDescription?: string;
132
+ parameterName?: string;
133
+ hierarchy?: number[];
134
+ extensionData?: any;
135
135
  }
136
136
  export interface ICategoryWithChilds extends ICategory {
137
137
  childCategories: ICategory[];
@@ -250,6 +250,7 @@ export interface AttributeValue {
250
250
  routeDescription: string;
251
251
  parameterName: string;
252
252
  integrationCode: string;
253
+ icon: string;
253
254
  className: string;
254
255
  sort: number;
255
256
  extensionData: any;
@@ -2,7 +2,7 @@ import { IResponse } from './response';
2
2
  export interface IRouteResponse extends IResponse {
3
3
  route?: Route;
4
4
  }
5
- interface Part {
5
+ export interface Part {
6
6
  id: number;
7
7
  path?: string;
8
8
  title?: string;
@@ -11,10 +11,10 @@ interface Part {
11
11
  isMainPart?: boolean;
12
12
  culture?: string;
13
13
  }
14
- type RouteParts = {
14
+ export type RouteParts = {
15
15
  [key: string]: Part[];
16
16
  };
17
- interface Route {
17
+ export interface Route {
18
18
  urlTo?: string;
19
19
  commonPageName?: string;
20
20
  queryString?: string;
@@ -23,4 +23,3 @@ interface Route {
23
23
  description?: string;
24
24
  isRedirected?: boolean;
25
25
  }
26
- export {};
@@ -2,28 +2,28 @@ import { IApiResponse, IBannerContainersResponse, IBannerResponse, IBannersRespo
2
2
  /**
3
3
  * Banner ID'sine göre banner alma isteği arayüzü.
4
4
  */
5
- interface IGetBannerByIdRequest {
5
+ export interface IGetBannerByIdRequest {
6
6
  id: number;
7
7
  language?: string;
8
8
  }
9
9
  /**
10
10
  * Banner ismine göre banner alma isteği arayüzü.
11
11
  */
12
- interface IGetBannerByNameRequest {
12
+ export interface IGetBannerByNameRequest {
13
13
  name: string;
14
14
  language?: string;
15
15
  }
16
16
  /**
17
17
  * Banner anahtarına göre banner alma isteği arayüzü.
18
18
  */
19
- interface IGetBannerByKeyRequest {
19
+ export interface IGetBannerByKeyRequest {
20
20
  key: string;
21
21
  language?: string;
22
22
  }
23
23
  /**
24
24
  * Banner listesi alma isteği arayüzü.
25
25
  */
26
- interface IGetBannerListRequest {
26
+ export interface IGetBannerListRequest {
27
27
  bannerContainerIds?: number[];
28
28
  bannerContainerNames?: string[];
29
29
  bannerContainerKeys?: string[];
@@ -37,7 +37,7 @@ interface IGetBannerListRequest {
37
37
  /**
38
38
  * Banner konteyner listesi alma isteği arayüzü.
39
39
  */
40
- interface IGetBannerContainerListRequest {
40
+ export interface IGetBannerContainerListRequest {
41
41
  ids?: number[];
42
42
  names?: string[];
43
43
  keys?: string[];
@@ -79,4 +79,3 @@ export interface IBannerService {
79
79
  */
80
80
  GetBannerContainerList: (data?: IGetBannerContainerListRequest, options?: IRequestInit) => Promise<IApiResponse<IBannerContainersResponse>>;
81
81
  }
82
- export {};
@@ -2,14 +2,14 @@ import { IApiResponse, IBlogPostResponse, IBlogPostsResponse, IGetBlogCategories
2
2
  /**
3
3
  * Aggregation filtreleme için arayüz
4
4
  */
5
- interface AggregationFilter {
5
+ export interface AggregationFilter {
6
6
  field: string;
7
7
  keys: string[];
8
8
  }
9
9
  /**
10
10
  * Blog gönderileri istek arayüzü
11
11
  */
12
- interface IGetBlogPostsRequest {
12
+ export interface IGetBlogPostsRequest {
13
13
  blogPostIds?: number[];
14
14
  blogCategoryIds?: number[];
15
15
  tagIds?: number[];
@@ -30,7 +30,7 @@ interface IGetBlogPostsRequest {
30
30
  /**
31
31
  * Tek bir blog gönderisi istek arayüzü
32
32
  */
33
- interface IGetBlogPostRequest {
33
+ export interface IGetBlogPostRequest {
34
34
  id: number;
35
35
  flags?: string;
36
36
  includes?: string[];
@@ -40,7 +40,7 @@ interface IGetBlogPostRequest {
40
40
  /**
41
41
  * Blog kategorileri istek arayüzü
42
42
  */
43
- interface IGetBlogCategoriesRequest {
43
+ export interface IGetBlogCategoriesRequest {
44
44
  blogCategoryIds?: number[];
45
45
  blogCategoryHierarchyIds?: number[];
46
46
  categoryKeys?: string[];
@@ -54,7 +54,7 @@ interface IGetBlogCategoriesRequest {
54
54
  /**
55
55
  * Tek bir blog kategorisi istek arayüzü
56
56
  */
57
- interface IGetBlogCategoryRequest {
57
+ export interface IGetBlogCategoryRequest {
58
58
  id: number;
59
59
  includes?: string[];
60
60
  tags?: string[];
@@ -63,7 +63,7 @@ interface IGetBlogCategoryRequest {
63
63
  /**
64
64
  * Blog kategori hiyerarşisi istek arayüzü
65
65
  */
66
- interface IGetBlogCategoryHierarchyRequest {
66
+ export interface IGetBlogCategoryHierarchyRequest {
67
67
  id: number;
68
68
  includes?: string[];
69
69
  tags?: string[];
@@ -72,7 +72,7 @@ interface IGetBlogCategoryHierarchyRequest {
72
72
  /**
73
73
  * Blog kategori ağacı istek arayüzü
74
74
  */
75
- interface IGetBlogCategoryTreeRequest {
75
+ export interface IGetBlogCategoryTreeRequest {
76
76
  categoryId?: number;
77
77
  levelCount?: number;
78
78
  key?: string;
@@ -83,7 +83,7 @@ interface IGetBlogCategoryTreeRequest {
83
83
  /**
84
84
  * Blog etiketleri istek arayüzü
85
85
  */
86
- interface IGetBlogTagsRequest {
86
+ export interface IGetBlogTagsRequest {
87
87
  blogTagIds?: number[];
88
88
  tags?: string[];
89
89
  searchTerm?: string;
@@ -95,7 +95,7 @@ interface IGetBlogTagsRequest {
95
95
  /**
96
96
  * Tek bir blog etiketi istek arayüzü
97
97
  */
98
- interface IGetBlogTagRequest {
98
+ export interface IGetBlogTagRequest {
99
99
  id: number;
100
100
  includes?: string[];
101
101
  tags?: string[];
@@ -146,4 +146,3 @@ export interface IBlogService {
146
146
  */
147
147
  GetBlogTagsRequest: (data: IGetBlogTagsRequest, options?: IRequestInit) => Promise<IApiResponse<IGetBlogTagsResponse>>;
148
148
  }
149
- export {};
@@ -54,7 +54,7 @@ export interface ContentSortOption {
54
54
  contentTypeName: string;
55
55
  id: number;
56
56
  }
57
- export interface AggregationFilter {
57
+ interface AggregationFilter {
58
58
  field: string;
59
59
  keys: string[];
60
60
  }
@@ -132,3 +132,4 @@ export interface IProductService {
132
132
  */
133
133
  AllCategories: (data: IAllCategoriesRequest, options?: IRequestInit) => Promise<IApiResponse<IProductCategoryAllResponse>>;
134
134
  }
135
+ export {};
@@ -2,7 +2,7 @@ import { IApiResponse, IRequestInit, IRouteResponse } from '../..';
2
2
  /**
3
3
  * Banner konteyner listesi alma isteği arayüzü.
4
4
  */
5
- interface IGetRouteInfoRequest {
5
+ export interface IGetRouteInfoRequest {
6
6
  baseUrl: string;
7
7
  queryString?: string;
8
8
  showRedirectDetail?: boolean;
@@ -26,4 +26,3 @@ export interface IRouteService {
26
26
  */
27
27
  GetRouteInfo: (data: IGetRouteInfoRequest, options?: IRequestInit) => Promise<IApiResponse<IRouteResponse>>;
28
28
  }
29
- export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nextemos",
3
- "version": "3.7.6",
3
+ "version": "3.7.8",
4
4
  "description": "For helpers and hooks used in NextJS projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "./dist/index.d.ts",