@ndla/types-backend 0.2.101 → 1.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.
@@ -1,16 +1,20 @@
1
1
  export type ArenaGroup = "ADMIN";
2
- export interface IArenaUser {
2
+ export interface IArenaUserDTO {
3
3
  id: number;
4
4
  displayName: string;
5
5
  username: string;
6
6
  location: string;
7
7
  groups: ArenaGroup[];
8
8
  }
9
- export interface IBreadcrumb {
9
+ export interface IBreadcrumbDTO {
10
10
  id: string;
11
11
  name: string;
12
12
  }
13
- export interface ICategory {
13
+ export interface ICategoryBreadcrumbDTO {
14
+ id: number;
15
+ title: string;
16
+ }
17
+ export interface ICategoryDTO {
14
18
  id: number;
15
19
  title: string;
16
20
  description: string;
@@ -21,14 +25,10 @@ export interface ICategory {
21
25
  rank: number;
22
26
  parentCategoryId?: number;
23
27
  categoryCount: number;
24
- subcategories: ICategory[];
25
- breadcrumbs: ICategoryBreadcrumb[];
26
- }
27
- export interface ICategoryBreadcrumb {
28
- id: number;
29
- title: string;
28
+ subcategories: ICategoryDTO[];
29
+ breadcrumbs: ICategoryBreadcrumbDTO[];
30
30
  }
31
- export interface ICategoryWithTopics {
31
+ export interface ICategoryWithTopicsDTO {
32
32
  id: number;
33
33
  title: string;
34
34
  description: string;
@@ -36,56 +36,56 @@ export interface ICategoryWithTopics {
36
36
  postCount: number;
37
37
  topicPage: number;
38
38
  topicPageSize: number;
39
- topics: ITopic[];
39
+ topics: ITopicDTO[];
40
40
  isFollowing: boolean;
41
41
  visible: boolean;
42
42
  rank: number;
43
43
  parentCategoryId?: number;
44
44
  categoryCount: number;
45
- subcategories: ICategory[];
46
- breadcrumbs: ICategoryBreadcrumb[];
45
+ subcategories: ICategoryDTO[];
46
+ breadcrumbs: ICategoryBreadcrumbDTO[];
47
47
  }
48
- export interface IConfigMeta {
48
+ export interface IConfigMetaDTO {
49
49
  key: string;
50
50
  value: (boolean | string[]);
51
51
  updatedAt: string;
52
52
  updatedBy: string;
53
53
  }
54
- export interface IConfigMetaRestricted {
54
+ export interface IConfigMetaRestrictedDTO {
55
55
  key: string;
56
56
  value: (boolean | string[]);
57
57
  }
58
- export interface IFlag {
58
+ export interface IFlagDTO {
59
59
  id: number;
60
60
  reason: string;
61
61
  created: string;
62
62
  resolved?: string;
63
63
  isResolved: boolean;
64
- flagger?: IArenaUser;
64
+ flagger?: IArenaUserDTO;
65
65
  }
66
- export interface IFolder {
66
+ export interface IFolderDTO {
67
67
  id: string;
68
68
  name: string;
69
69
  status: string;
70
70
  parentId?: string;
71
- breadcrumbs: IBreadcrumb[];
72
- subfolders: IFolderData[];
73
- resources: IResource[];
71
+ breadcrumbs: IBreadcrumbDTO[];
72
+ subfolders: IFolderDataDTO[];
73
+ resources: IResourceDTO[];
74
74
  rank: number;
75
75
  created: string;
76
76
  updated: string;
77
77
  shared?: string;
78
78
  description?: string;
79
- owner?: IOwner;
79
+ owner?: IOwnerDTO;
80
80
  }
81
- export type IFolderData = IFolder;
82
- export interface IMyNDLAGroup {
81
+ export type IFolderDataDTO = IFolderDTO;
82
+ export interface IMyNDLAGroupDTO {
83
83
  id: string;
84
84
  displayName: string;
85
85
  isPrimarySchool: boolean;
86
86
  parentId?: string;
87
87
  }
88
- export interface IMyNDLAUser {
88
+ export interface IMyNDLAUserDTO {
89
89
  id: number;
90
90
  feideId: string;
91
91
  username: string;
@@ -94,91 +94,91 @@ export interface IMyNDLAUser {
94
94
  favoriteSubjects: string[];
95
95
  role: string;
96
96
  organization: string;
97
- groups: IMyNDLAGroup[];
97
+ groups: IMyNDLAGroupDTO[];
98
98
  arenaEnabled: boolean;
99
99
  shareName: boolean;
100
100
  arenaGroups: ArenaGroup[];
101
101
  }
102
- export interface INewCategory {
102
+ export interface INewCategoryDTO {
103
103
  title: string;
104
104
  description: string;
105
105
  visible: boolean;
106
106
  parentCategoryId?: number;
107
107
  }
108
- export interface INewFlag {
108
+ export interface INewFlagDTO {
109
109
  reason: string;
110
110
  }
111
- export interface INewFolder {
111
+ export interface INewFolderDTO {
112
112
  name: string;
113
113
  parentId?: string;
114
114
  status?: string;
115
115
  description?: string;
116
116
  }
117
- export interface INewPost {
117
+ export interface INewPostDTO {
118
118
  content: string;
119
119
  toPostId?: number;
120
120
  }
121
- export interface INewPostNotification {
121
+ export interface INewPostNotificationDTO {
122
122
  id: number;
123
123
  topicId: number;
124
124
  isRead: boolean;
125
125
  topicTitle: string;
126
- post: IPost;
126
+ post: IPostDTO;
127
127
  notificationTime: string;
128
128
  }
129
- export interface INewResource {
129
+ export interface INewResourceDTO {
130
130
  resourceType: ResourceType;
131
131
  path: string;
132
132
  tags?: string[];
133
133
  resourceId: string;
134
134
  }
135
- export interface INewTopic {
135
+ export interface INewTopicDTO {
136
136
  title: string;
137
- initialPost: INewPost;
137
+ initialPost: INewPostDTO;
138
138
  isLocked?: boolean;
139
139
  isPinned?: boolean;
140
140
  }
141
- export interface IOwner {
141
+ export interface IOwnerDTO {
142
142
  name: string;
143
143
  }
144
- export interface IPaginatedArenaUsers {
144
+ export interface IPaginatedArenaUsersDTO {
145
145
  totalCount: number;
146
146
  page: number;
147
147
  pageSize: number;
148
- items: IArenaUser[];
148
+ items: IArenaUserDTO[];
149
149
  }
150
- export interface IPaginatedNewPostNotifications {
150
+ export interface IPaginatedNewPostNotificationsDTO {
151
151
  totalCount: number;
152
152
  page: number;
153
153
  pageSize: number;
154
- items: INewPostNotification[];
154
+ items: INewPostNotificationDTO[];
155
155
  }
156
- export interface IPaginatedPosts {
156
+ export interface IPaginatedPostsDTO {
157
157
  totalCount: number;
158
158
  page: number;
159
159
  pageSize: number;
160
- items: IPost[];
160
+ items: IPostDTO[];
161
161
  }
162
- export interface IPaginatedTopics {
162
+ export interface IPaginatedTopicsDTO {
163
163
  totalCount: number;
164
164
  page: number;
165
165
  pageSize: number;
166
- items: ITopic[];
166
+ items: ITopicDTO[];
167
167
  }
168
- export interface IPost {
168
+ export interface IPostDTO {
169
169
  id: number;
170
170
  content: string;
171
171
  created: string;
172
172
  updated: string;
173
- owner?: IArenaUser;
174
- flags?: IFlag[];
173
+ owner?: IArenaUserDTO;
174
+ flags?: IFlagDTO[];
175
175
  topicId: number;
176
- replies: IPostWrapper[];
176
+ replies: IPostWrapperDTO[];
177
177
  upvotes: number;
178
178
  upvoted: boolean;
179
179
  }
180
- export type IPostWrapper = IPost;
181
- export interface IResource {
180
+ export type IPostWrapperDTO = IPostDTO;
181
+ export interface IResourceDTO {
182
182
  id: string;
183
183
  resourceType: ResourceType;
184
184
  path: string;
@@ -187,27 +187,27 @@ export interface IResource {
187
187
  resourceId: string;
188
188
  rank?: number;
189
189
  }
190
- export interface IResourceStats {
190
+ export interface IResourceStatsDTO {
191
191
  type: string;
192
192
  number: number;
193
193
  }
194
- export interface ISingleResourceStats {
194
+ export interface ISingleResourceStatsDTO {
195
195
  id: string;
196
196
  favourites: number;
197
197
  }
198
- export interface IStats {
198
+ export interface IStatsDTO {
199
199
  numberOfUsers: number;
200
200
  numberOfFolders: number;
201
201
  numberOfResources: number;
202
202
  numberOfTags: number;
203
203
  numberOfSubjects: number;
204
204
  numberOfSharedFolders: number;
205
- favouritedResources: IResourceStats[];
205
+ favouritedResources: IResourceStatsDTO[];
206
206
  favourited: {
207
207
  [key: string]: number;
208
208
  };
209
209
  }
210
- export interface ITopic {
210
+ export interface ITopicDTO {
211
211
  id: number;
212
212
  title: string;
213
213
  postCount: number;
@@ -219,11 +219,11 @@ export interface ITopic {
219
219
  isPinned: boolean;
220
220
  voteCount: number;
221
221
  }
222
- export interface ITopicWithPosts {
222
+ export interface ITopicWithPostsDTO {
223
223
  id: number;
224
224
  title: string;
225
225
  postCount: number;
226
- posts: IPaginatedPosts;
226
+ posts: IPaginatedPostsDTO;
227
227
  created: string;
228
228
  updated: string;
229
229
  categoryId: number;
@@ -232,23 +232,23 @@ export interface ITopicWithPosts {
232
232
  isPinned: boolean;
233
233
  voteCount: number;
234
234
  }
235
- export interface IUpdatedFolder {
235
+ export interface IUpdatedFolderDTO {
236
236
  name?: string;
237
237
  status?: string;
238
238
  description?: string;
239
239
  }
240
- export interface IUpdatedMyNDLAUser {
240
+ export interface IUpdatedMyNDLAUserDTO {
241
241
  favoriteSubjects?: string[];
242
242
  arenaEnabled?: boolean;
243
243
  shareName?: boolean;
244
244
  arenaGroups?: ArenaGroup[];
245
245
  }
246
- export interface IUpdatedResource {
246
+ export interface IUpdatedResourceDTO {
247
247
  tags?: string[];
248
248
  resourceId?: string;
249
249
  }
250
- export interface IUserFolder {
251
- folders: IFolder[];
252
- sharedFolders: IFolder[];
250
+ export interface IUserFolderDTO {
251
+ folders: IFolderDTO[];
252
+ sharedFolders: IFolderDTO[];
253
253
  }
254
254
  export type ResourceType = ("article" | "audio" | "concept" | "image" | "learningpath" | "multidisciplinary" | "topic" | "video");
@@ -1,5 +1,5 @@
1
1
  export type GrepSort = ("-relevance" | "relevance" | "-title" | "title" | "-code" | "code");
2
- export interface IApiTaxonomyContext {
2
+ export interface IApiTaxonomyContextDTO {
3
3
  publicId: string;
4
4
  root: string;
5
5
  rootId: string;
@@ -9,47 +9,47 @@ export interface IApiTaxonomyContext {
9
9
  breadcrumbs: string[];
10
10
  contextId: string;
11
11
  contextType: string;
12
- resourceTypes: ITaxonomyResourceType[];
12
+ resourceTypes: ITaxonomyResourceTypeDTO[];
13
13
  language: string;
14
14
  isPrimary: boolean;
15
15
  isActive: boolean;
16
16
  url: string;
17
17
  }
18
- export interface IArticleIntroduction {
18
+ export interface IArticleIntroductionDTO {
19
19
  introduction: string;
20
20
  htmlIntroduction: string;
21
21
  language: string;
22
22
  }
23
- export interface IArticleResult {
23
+ export interface IArticleResultDTO {
24
24
  id: number;
25
- title: ITitleWithHtml;
26
- introduction?: IArticleIntroduction;
25
+ title: ITitleWithHtmlDTO;
26
+ introduction?: IArticleIntroductionDTO;
27
27
  articleType: string;
28
28
  supportedLanguages: string[];
29
29
  }
30
- export interface IArticleResults {
30
+ export interface IArticleResultsDTO {
31
31
  type: string;
32
32
  language: string;
33
33
  totalCount: number;
34
34
  page: number;
35
35
  pageSize: number;
36
- results: IArticleResult[];
36
+ results: IArticleResultDTO[];
37
37
  }
38
- export interface IAudioResult {
38
+ export interface IAudioResultDTO {
39
39
  id: number;
40
- title: ITitle;
40
+ title: ITitleDTO;
41
41
  url: string;
42
42
  supportedLanguages: string[];
43
43
  }
44
- export interface IAudioResults {
44
+ export interface IAudioResultsDTO {
45
45
  type: string;
46
46
  language: string;
47
47
  totalCount: number;
48
48
  page: number;
49
49
  pageSize: number;
50
- results: IAudioResult[];
50
+ results: IAudioResultDTO[];
51
51
  }
52
- export interface IComment {
52
+ export interface ICommentDTO {
53
53
  id: string;
54
54
  content: string;
55
55
  created: string;
@@ -57,11 +57,11 @@ export interface IComment {
57
57
  isOpen: boolean;
58
58
  solved: boolean;
59
59
  }
60
- export interface IDraftResponsible {
60
+ export interface IDraftResponsibleDTO {
61
61
  responsibleId: string;
62
62
  lastUpdated: string;
63
63
  }
64
- export interface IDraftSearchParams {
64
+ export interface IDraftSearchParamsDTO {
65
65
  page?: number;
66
66
  pageSize?: number;
67
67
  articleTypes?: string[];
@@ -97,11 +97,11 @@ export interface IDraftSearchParams {
97
97
  publishedDateTo?: string;
98
98
  resultTypes?: SearchType[];
99
99
  }
100
- export interface IGrepResult {
100
+ export interface IGrepResultDTO {
101
101
  code: string;
102
- title: ITitle;
102
+ title: ITitleDTO;
103
103
  }
104
- export interface IGrepSearchInput {
104
+ export interface IGrepSearchInputDTO {
105
105
  prefixFilter?: string[];
106
106
  codes?: string[];
107
107
  query?: string;
@@ -110,106 +110,106 @@ export interface IGrepSearchInput {
110
110
  sort?: GrepSort;
111
111
  language?: string;
112
112
  }
113
- export interface IGrepSearchResults {
113
+ export interface IGrepSearchResultsDTO {
114
114
  totalCount: number;
115
115
  page: number;
116
116
  pageSize: number;
117
117
  language: string;
118
- results: IGrepResult[];
118
+ results: IGrepResultDTO[];
119
119
  }
120
- export interface IGroupSearchResult {
120
+ export interface IGroupSearchResultDTO {
121
121
  totalCount: number;
122
122
  page?: number;
123
123
  pageSize: number;
124
124
  language: string;
125
- results: IMultiSearchSummary[];
126
- suggestions: IMultiSearchSuggestion[];
127
- aggregations: IMultiSearchTermsAggregation[];
125
+ results: IMultiSearchSummaryDTO[];
126
+ suggestions: IMultiSearchSuggestionDTO[];
127
+ aggregations: IMultiSearchTermsAggregationDTO[];
128
128
  resourceType: string;
129
129
  }
130
- export interface IHighlightedField {
130
+ export interface IHighlightedFieldDTO {
131
131
  field: string;
132
132
  matches: string[];
133
133
  }
134
- export interface IImageAltText {
134
+ export interface IImageAltTextDTO {
135
135
  altText: string;
136
136
  language: string;
137
137
  }
138
- export interface IImageResult {
138
+ export interface IImageResultDTO {
139
139
  id: number;
140
- title: ITitle;
141
- altText: IImageAltText;
140
+ title: ITitleDTO;
141
+ altText: IImageAltTextDTO;
142
142
  previewUrl: string;
143
143
  metaUrl: string;
144
144
  supportedLanguages: string[];
145
145
  }
146
- export interface IImageResults {
146
+ export interface IImageResultsDTO {
147
147
  type: string;
148
148
  language: string;
149
149
  totalCount: number;
150
150
  page: number;
151
151
  pageSize: number;
152
- results: IImageResult[];
152
+ results: IImageResultDTO[];
153
153
  }
154
- export interface ILearningPathIntroduction {
154
+ export interface ILearningPathIntroductionDTO {
155
155
  introduction: string;
156
156
  language: string;
157
157
  }
158
- export interface ILearningpathResult {
158
+ export interface ILearningpathResultDTO {
159
159
  id: number;
160
- title: ITitle;
161
- introduction: ILearningPathIntroduction;
160
+ title: ITitleDTO;
161
+ introduction: ILearningPathIntroductionDTO;
162
162
  supportedLanguages: string[];
163
163
  }
164
- export interface ILearningpathResults {
164
+ export interface ILearningpathResultsDTO {
165
165
  type: string;
166
166
  language: string;
167
167
  totalCount: number;
168
168
  page: number;
169
169
  pageSize: number;
170
- results: ILearningpathResult[];
170
+ results: ILearningpathResultDTO[];
171
171
  }
172
- export interface IMetaDescription {
172
+ export interface IMetaDescriptionDTO {
173
173
  metaDescription: string;
174
174
  language: string;
175
175
  }
176
- export interface IMetaImage {
176
+ export interface IMetaImageDTO {
177
177
  url: string;
178
178
  alt: string;
179
179
  language: string;
180
180
  }
181
- export interface IMultiSearchResult {
181
+ export interface IMultiSearchResultDTO {
182
182
  totalCount: number;
183
183
  page?: number;
184
184
  pageSize: number;
185
185
  language: string;
186
- results: IMultiSearchSummary[];
187
- suggestions: IMultiSearchSuggestion[];
188
- aggregations: IMultiSearchTermsAggregation[];
186
+ results: IMultiSearchSummaryDTO[];
187
+ suggestions: IMultiSearchSuggestionDTO[];
188
+ aggregations: IMultiSearchTermsAggregationDTO[];
189
189
  }
190
- export interface IMultiSearchSuggestion {
190
+ export interface IMultiSearchSuggestionDTO {
191
191
  name: string;
192
- suggestions: ISearchSuggestion[];
192
+ suggestions: ISearchSuggestionDTO[];
193
193
  }
194
- export interface IMultiSearchSummary {
194
+ export interface IMultiSearchSummaryDTO {
195
195
  id: number;
196
- title: ITitleWithHtml;
197
- metaDescription: IMetaDescription;
198
- metaImage?: IMetaImage;
196
+ title: ITitleWithHtmlDTO;
197
+ metaDescription: IMetaDescriptionDTO;
198
+ metaImage?: IMetaImageDTO;
199
199
  url: string;
200
- contexts: IApiTaxonomyContext[];
200
+ contexts: IApiTaxonomyContextDTO[];
201
201
  supportedLanguages: string[];
202
202
  learningResourceType: LearningResourceType;
203
- status?: IStatus;
203
+ status?: IStatusDTO;
204
204
  traits: string[];
205
205
  score: number;
206
- highlights: IHighlightedField[];
206
+ highlights: IHighlightedFieldDTO[];
207
207
  paths: string[];
208
208
  lastUpdated: string;
209
209
  license?: string;
210
- revisions: IRevisionMeta[];
211
- responsible?: IDraftResponsible;
212
- comments?: IComment[];
210
+ revisions: IRevisionMetaDTO[];
211
+ responsible?: IDraftResponsibleDTO;
212
+ comments?: ICommentDTO[];
213
213
  prioritized?: boolean;
214
214
  priority?: string;
215
215
  resourceTypeName?: string;
@@ -220,22 +220,18 @@ export interface IMultiSearchSummary {
220
220
  resultType: SearchType;
221
221
  conceptSubjectIds?: string[];
222
222
  }
223
- export interface IMultiSearchTermsAggregation {
223
+ export interface IMultiSearchTermsAggregationDTO {
224
224
  field: string;
225
225
  sumOtherDocCount: number;
226
226
  docCountErrorUpperBound: number;
227
- values: ITermValue[];
227
+ values: ITermValueDTO[];
228
228
  }
229
- export interface IRevisionMeta {
229
+ export interface IRevisionMetaDTO {
230
230
  revisionDate: string;
231
231
  note: string;
232
232
  status: string;
233
233
  }
234
- export interface ISearchError {
235
- type: string;
236
- errorMsg: string;
237
- }
238
- export interface ISearchParams {
234
+ export interface ISearchParamsDTO {
239
235
  page?: number;
240
236
  pageSize?: number;
241
237
  articleTypes?: string[];
@@ -257,17 +253,17 @@ export interface ISearchParams {
257
253
  filterInactive?: boolean;
258
254
  sort?: string;
259
255
  }
260
- export interface ISearchSuggestion {
256
+ export interface ISearchSuggestionDTO {
261
257
  text: string;
262
258
  offset: number;
263
259
  length: number;
264
- options: ISuggestOption[];
260
+ options: ISuggestOptionDTO[];
265
261
  }
266
- export interface IStatus {
262
+ export interface IStatusDTO {
267
263
  current: string;
268
264
  other: string[];
269
265
  }
270
- export interface ISubjectAggregation {
266
+ export interface ISubjectAggregationDTO {
271
267
  subjectId: string;
272
268
  publishedArticleCount: number;
273
269
  oldArticleCount: number;
@@ -275,30 +271,30 @@ export interface ISubjectAggregation {
275
271
  flowCount: number;
276
272
  favoritedCount: number;
277
273
  }
278
- export interface ISubjectAggregations {
279
- subjects: ISubjectAggregation[];
274
+ export interface ISubjectAggregationsDTO {
275
+ subjects: ISubjectAggregationDTO[];
280
276
  }
281
- export interface ISubjectAggsInput {
277
+ export interface ISubjectAggsInputDTO {
282
278
  subjects?: string[];
283
279
  }
284
- export interface ISuggestOption {
280
+ export interface ISuggestOptionDTO {
285
281
  text: string;
286
282
  score: number;
287
283
  }
288
- export interface ITaxonomyResourceType {
284
+ export interface ITaxonomyResourceTypeDTO {
289
285
  id: string;
290
286
  name: string;
291
287
  language: string;
292
288
  }
293
- export interface ITermValue {
289
+ export interface ITermValueDTO {
294
290
  value: string;
295
291
  count: number;
296
292
  }
297
- export interface ITitle {
293
+ export interface ITitleDTO {
298
294
  title: string;
299
295
  language: string;
300
296
  }
301
- export interface ITitleWithHtml {
297
+ export interface ITitleWithHtmlDTO {
302
298
  title: string;
303
299
  htmlTitle: string;
304
300
  language: string;
@@ -1 +1 @@
1
- {"version":3,"file":"search-api.js","sourceRoot":"","sources":["../search-api.ts"],"names":[],"mappings":";AAAA,2CAA2C;;;AAiW3C,IAAY,QA6BX;AA7BD,WAAY,QAAQ;IAClB,0CAA8B,CAAA;IAC9B,wCAA4B,CAAA;IAC5B,kCAAsB,CAAA;IACtB,gCAAoB,CAAA;IACpB,8CAAkC,CAAA;IAClC,4CAAgC,CAAA;IAChC,4BAAgB,CAAA;IAChB,0BAAc,CAAA;IACd,wCAA4B,CAAA;IAC5B,sCAA0B,CAAA;IAC1B,8CAAkC,CAAA;IAClC,gDAAoC,CAAA;IACpC,kEAAsD,CAAA;IACtD,oEAAwD,CAAA;IACxD,kCAAsB,CAAA;IACtB,oCAAwB,CAAA;IACxB,8CAAkC,CAAA;IAClC,4CAAgC,CAAA;IAChC,sDAA0C,CAAA;IAC1C,oDAAwC,CAAA;IACxC,8CAAkC,CAAA;IAClC,4CAAgC,CAAA;IAChC,gDAAoC,CAAA;IACpC,8CAAkC,CAAA;IAClC,0CAA8B,CAAA;IAC9B,wCAA4B,CAAA;IAC5B,0CAA8B,CAAA;IAC9B,wCAA4B,CAAA;AAC9B,CAAC,EA7BW,QAAQ,wBAAR,QAAQ,QA6BnB"}
1
+ {"version":3,"file":"search-api.js","sourceRoot":"","sources":["../search-api.ts"],"names":[],"mappings":";AAAA,2CAA2C;;;AA4V3C,IAAY,QA6BX;AA7BD,WAAY,QAAQ;IAClB,0CAA8B,CAAA;IAC9B,wCAA4B,CAAA;IAC5B,kCAAsB,CAAA;IACtB,gCAAoB,CAAA;IACpB,8CAAkC,CAAA;IAClC,4CAAgC,CAAA;IAChC,4BAAgB,CAAA;IAChB,0BAAc,CAAA;IACd,wCAA4B,CAAA;IAC5B,sCAA0B,CAAA;IAC1B,8CAAkC,CAAA;IAClC,gDAAoC,CAAA;IACpC,kEAAsD,CAAA;IACtD,oEAAwD,CAAA;IACxD,kCAAsB,CAAA;IACtB,oCAAwB,CAAA;IACxB,8CAAkC,CAAA;IAClC,4CAAgC,CAAA;IAChC,sDAA0C,CAAA;IAC1C,oDAAwC,CAAA;IACxC,8CAAkC,CAAA;IAClC,4CAAgC,CAAA;IAChC,gDAAoC,CAAA;IACpC,8CAAkC,CAAA;IAClC,0CAA8B,CAAA;IAC9B,wCAA4B,CAAA;IAC5B,0CAA8B,CAAA;IAC9B,wCAA4B,CAAA;AAC9B,CAAC,EA7BW,QAAQ,wBAAR,QAAQ,QA6BnB"}
package/package.json CHANGED
@@ -27,5 +27,5 @@
27
27
  "devDependencies": {
28
28
  "typescript": "^5.3.3"
29
29
  },
30
- "version": "0.2.101"
30
+ "version": "1.0.1"
31
31
  }