@nomalism-com/types 0.35.13 → 0.36.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.
- package/dist/index.cjs +2 -42
- package/dist/index.js +2 -42
- package/dist/main.d.ts +1 -3
- package/dist/modules/document/materialEntrance/interfaces.d.ts +1 -1
- package/dist/modules/stock/sideMenu/interface.d.ts +1 -1
- package/dist/modules/supply/documentHeader/interfaces.d.ts +3 -0
- package/dist/shared/entities/stock.d.ts +1 -16
- package/package-lock.json +199 -156
- package/package.json +1 -1
- package/src/main.ts +0 -7
- package/src/modules/document/materialEntrance/interfaces.ts +1 -1
- package/src/modules/stock/sideMenu/interface.ts +1 -1
- package/src/modules/supply/documentHeader/interfaces.ts +3 -0
- package/src/modules/supply/documentHeader/route.schema.ts +1 -0
- package/src/modules/user/persona/route.schema.ts +1 -3
- package/src/shared/entities/stock.ts +1 -17
- package/dist/modules/stock/tag/interface.d.ts +0 -22
- package/dist/modules/stock/tag/route.schema.d.ts +0 -3
- package/src/modules/stock/tag/interface.ts +0 -36
- package/src/modules/stock/tag/route.schema.ts +0 -30
package/dist/index.cjs
CHANGED
|
@@ -190,8 +190,6 @@ __export(main_exports, {
|
|
|
190
190
|
StoreOperatorRoutes: () => route_schema_exports48,
|
|
191
191
|
Swift: () => interface_exports29,
|
|
192
192
|
SwiftRoutes: () => route_schema_exports49,
|
|
193
|
-
Tag: () => interface_exports59,
|
|
194
|
-
TagRoutes: () => route_schema_exports111,
|
|
195
193
|
Task: () => interface_exports50,
|
|
196
194
|
TaskMessage: () => interface_exports51,
|
|
197
195
|
TaskMessageRoutes: () => route_schema_exports101,
|
|
@@ -1656,6 +1654,7 @@ var updateBodyKeys9 = {
|
|
|
1656
1654
|
is_archived: joi11.boolean().optional(),
|
|
1657
1655
|
is_void: joi11.boolean().optional(),
|
|
1658
1656
|
who_handles: joi11.string().allow(null).optional(),
|
|
1657
|
+
tags: joi11.string().allow(null, "").optional(),
|
|
1659
1658
|
warning: joi11.string().optional().valid(...Object.values(IWarningType)),
|
|
1660
1659
|
created_by: joi11.string().uuid().allow(null).optional()
|
|
1661
1660
|
};
|
|
@@ -4518,7 +4517,7 @@ __export(route_schema_exports81, {
|
|
|
4518
4517
|
updateBody: () => updateBody51
|
|
4519
4518
|
});
|
|
4520
4519
|
import joi82 from "joi";
|
|
4521
|
-
var emailSchema = joi82.string().trim(true).lowercase().email({ tlds: { allow: false } })
|
|
4520
|
+
var emailSchema = joi82.string().trim(true).lowercase().email({ tlds: { allow: false } });
|
|
4522
4521
|
var createBodyKeys56 = {
|
|
4523
4522
|
name: joi82.string().allow(null, "").optional(),
|
|
4524
4523
|
nif: joi82.string().allow(null, "").optional(),
|
|
@@ -5818,45 +5817,6 @@ var createOrUpdateBodyKeys2 = {
|
|
|
5818
5817
|
};
|
|
5819
5818
|
var createOrUpdateBody2 = joi111.object().keys(createOrUpdateBodyKeys2).messages(messages);
|
|
5820
5819
|
|
|
5821
|
-
// src/modules/stock/tag/interface.ts
|
|
5822
|
-
var interface_exports59 = {};
|
|
5823
|
-
__export(interface_exports59, {
|
|
5824
|
-
ITagType: () => ITagType,
|
|
5825
|
-
ITagTypeEnum: () => ITagTypeEnum,
|
|
5826
|
-
LowerName: () => LowerName104,
|
|
5827
|
-
Route: () => Route105,
|
|
5828
|
-
UpperName: () => UpperName104
|
|
5829
|
-
});
|
|
5830
|
-
var Route105 = "tag";
|
|
5831
|
-
var UpperName104 = "Tag";
|
|
5832
|
-
var LowerName104 = UpperName104[0].toLowerCase() + UpperName104.substring(1);
|
|
5833
|
-
var ITagTypeEnum = {
|
|
5834
|
-
private: "private",
|
|
5835
|
-
public: "public"
|
|
5836
|
-
};
|
|
5837
|
-
var ITagType = Object.keys(ITagTypeEnum);
|
|
5838
|
-
|
|
5839
|
-
// src/modules/stock/tag/route.schema.ts
|
|
5840
|
-
var route_schema_exports111 = {};
|
|
5841
|
-
__export(route_schema_exports111, {
|
|
5842
|
-
createBody: () => createBody70,
|
|
5843
|
-
updateManyBody: () => updateManyBody3
|
|
5844
|
-
});
|
|
5845
|
-
import joi112 from "joi";
|
|
5846
|
-
var createBodyKeys69 = {
|
|
5847
|
-
document_header_id: joi112.string().uuid().required(),
|
|
5848
|
-
index: joi112.number().allow(0).required(),
|
|
5849
|
-
text: joi112.string().required(),
|
|
5850
|
-
type: joi112.string().valid(...ITagType).required()
|
|
5851
|
-
};
|
|
5852
|
-
var createBody70 = joi112.object().keys(createBodyKeys69).messages(messages);
|
|
5853
|
-
var updateManyBodyKeys2 = {
|
|
5854
|
-
id: joi112.string().uuid().required(),
|
|
5855
|
-
index: joi112.number().allow(0).optional(),
|
|
5856
|
-
type: joi112.string().valid(...ITagType).optional()
|
|
5857
|
-
};
|
|
5858
|
-
var updateManyBody3 = joi112.array().items(joi112.object().keys(updateManyBodyKeys2)).messages(messages);
|
|
5859
|
-
|
|
5860
5820
|
// src/index.ts
|
|
5861
5821
|
var index_default = main_exports;
|
|
5862
5822
|
export {
|
package/dist/index.js
CHANGED
|
@@ -190,8 +190,6 @@ __export(main_exports, {
|
|
|
190
190
|
StoreOperatorRoutes: () => route_schema_exports48,
|
|
191
191
|
Swift: () => interface_exports29,
|
|
192
192
|
SwiftRoutes: () => route_schema_exports49,
|
|
193
|
-
Tag: () => interface_exports59,
|
|
194
|
-
TagRoutes: () => route_schema_exports111,
|
|
195
193
|
Task: () => interface_exports50,
|
|
196
194
|
TaskMessage: () => interface_exports51,
|
|
197
195
|
TaskMessageRoutes: () => route_schema_exports101,
|
|
@@ -1656,6 +1654,7 @@ var updateBodyKeys9 = {
|
|
|
1656
1654
|
is_archived: joi11.boolean().optional(),
|
|
1657
1655
|
is_void: joi11.boolean().optional(),
|
|
1658
1656
|
who_handles: joi11.string().allow(null).optional(),
|
|
1657
|
+
tags: joi11.string().allow(null, "").optional(),
|
|
1659
1658
|
warning: joi11.string().optional().valid(...Object.values(IWarningType)),
|
|
1660
1659
|
created_by: joi11.string().uuid().allow(null).optional()
|
|
1661
1660
|
};
|
|
@@ -4518,7 +4517,7 @@ __export(route_schema_exports81, {
|
|
|
4518
4517
|
updateBody: () => updateBody51
|
|
4519
4518
|
});
|
|
4520
4519
|
import joi82 from "joi";
|
|
4521
|
-
var emailSchema = joi82.string().trim(true).lowercase().email({ tlds: { allow: false } })
|
|
4520
|
+
var emailSchema = joi82.string().trim(true).lowercase().email({ tlds: { allow: false } });
|
|
4522
4521
|
var createBodyKeys56 = {
|
|
4523
4522
|
name: joi82.string().allow(null, "").optional(),
|
|
4524
4523
|
nif: joi82.string().allow(null, "").optional(),
|
|
@@ -5818,45 +5817,6 @@ var createOrUpdateBodyKeys2 = {
|
|
|
5818
5817
|
};
|
|
5819
5818
|
var createOrUpdateBody2 = joi111.object().keys(createOrUpdateBodyKeys2).messages(messages);
|
|
5820
5819
|
|
|
5821
|
-
// src/modules/stock/tag/interface.ts
|
|
5822
|
-
var interface_exports59 = {};
|
|
5823
|
-
__export(interface_exports59, {
|
|
5824
|
-
ITagType: () => ITagType,
|
|
5825
|
-
ITagTypeEnum: () => ITagTypeEnum,
|
|
5826
|
-
LowerName: () => LowerName104,
|
|
5827
|
-
Route: () => Route105,
|
|
5828
|
-
UpperName: () => UpperName104
|
|
5829
|
-
});
|
|
5830
|
-
var Route105 = "tag";
|
|
5831
|
-
var UpperName104 = "Tag";
|
|
5832
|
-
var LowerName104 = UpperName104[0].toLowerCase() + UpperName104.substring(1);
|
|
5833
|
-
var ITagTypeEnum = {
|
|
5834
|
-
private: "private",
|
|
5835
|
-
public: "public"
|
|
5836
|
-
};
|
|
5837
|
-
var ITagType = Object.keys(ITagTypeEnum);
|
|
5838
|
-
|
|
5839
|
-
// src/modules/stock/tag/route.schema.ts
|
|
5840
|
-
var route_schema_exports111 = {};
|
|
5841
|
-
__export(route_schema_exports111, {
|
|
5842
|
-
createBody: () => createBody70,
|
|
5843
|
-
updateManyBody: () => updateManyBody3
|
|
5844
|
-
});
|
|
5845
|
-
import joi112 from "joi";
|
|
5846
|
-
var createBodyKeys69 = {
|
|
5847
|
-
document_header_id: joi112.string().uuid().required(),
|
|
5848
|
-
index: joi112.number().allow(0).required(),
|
|
5849
|
-
text: joi112.string().required(),
|
|
5850
|
-
type: joi112.string().valid(...ITagType).required()
|
|
5851
|
-
};
|
|
5852
|
-
var createBody70 = joi112.object().keys(createBodyKeys69).messages(messages);
|
|
5853
|
-
var updateManyBodyKeys2 = {
|
|
5854
|
-
id: joi112.string().uuid().required(),
|
|
5855
|
-
index: joi112.number().allow(0).optional(),
|
|
5856
|
-
type: joi112.string().valid(...ITagType).optional()
|
|
5857
|
-
};
|
|
5858
|
-
var updateManyBody3 = joi112.array().items(joi112.object().keys(updateManyBodyKeys2)).messages(messages);
|
|
5859
|
-
|
|
5860
5820
|
// src/index.ts
|
|
5861
5821
|
var index_default = main_exports;
|
|
5862
5822
|
export {
|
package/dist/main.d.ts
CHANGED
|
@@ -229,6 +229,4 @@ import * as DocumentLineMt from './modules/supply/documentLineMT/interface';
|
|
|
229
229
|
import * as DocumentLineMtRoutes from './modules/supply/documentLineMT/route.schema';
|
|
230
230
|
import * as ChatSubscriber from './modules/user/chatSubscribers/interfaces';
|
|
231
231
|
import * as ChatSubscriberRoutes from './modules/user/chatSubscribers/route.schema';
|
|
232
|
-
|
|
233
|
-
import * as TagRoutes from './modules/stock/tag/route.schema';
|
|
234
|
-
export { shared, viewErrors, stockErrors, userErrors, documentManagementErrors, integrationErrors, ZipCode, ZipCodeRoutes, BankData, BankDataRoutes, Client, ClientRoutes, ClientType, ClientTypeRoutes, ClientCurrentAccount, ClientCurrentAccountRoutes, Chat, ChatRoutes, Commissioner, CommissionerRoutes, Counter, CounterRoutes, Country, CountryRoutes, DeliveryMethods, DeliveryMethodsRoutes, DocumentHeader, DocumentHeaderRoutes, BillOfLading, BillOfLadingRoutes, ProductionOrder, ProductionOrderRoutes, Proforma, ProformaRoutes, PropostaFornecedor, PropostaFornecedorRoutes, ProviderCreditNoteFromReturn, ProviderCreditNoteFromReturnRoutes, ProviderFinancialCreditNote, ProviderFinancialCreditNoteRoutes, ProviderServiceInvoice, ProviderServiceInvoiceRoutes, DocumentLine, DocumentLineRoutes, DocumentLineAssoc, DocumentLineAssocRoutes, DocumentSet, DocumentSetRoutes, DocumentType, DocumentTypeRoutes, ExternalDocumentType, ExternalDocumentHeader, ExternalDocumentHeaderRoutes, Favorites, FavoritesRoutes, File, FileRoutes, GroupPermissions, GroupPermissionsRoutes, GoogleSheets, GoogleSheetsRoutes, Language, LanguageRoutes, Location, LocationRoutes, MaturityDates, MaturityDatesRoutes, Multimedia, MultimediaRoutes, OrderManagement, Observation, ObservationRoutes, ObservationType, ObservationTypeRoutes, Password, PasswordRoutes, Payment, PaymentRoutes, PaymentMethods, PaymentMethodsRoutes, Permissions, PermissionsRoutes, ProductImage, ProductImageRoutes, Promotion, PromotionRoutes, PromotionAssoc, PromotionAssocRoutes, Providers, ProvidersRoutes, ProviderType, ProviderTypeRoutes, ProviderCurrentAccount, ProviderCurrentAccountRoutes, PurchaseConditions, PurchaseConditionsRoutes, ReasonForExemption, ReasonForExemptionRoutes, RefreshToken, RefreshTokenRoutes, SegmentsArea, SegmentsAreaRoutes, Sessions, SessionsRoutes, Shippings, ShippingsRoutes, StoreOperator, StoreOperatorRoutes, Swift, SwiftRoutes, TypeOfLocation, TypeOfLocationRoutes, UnitOfMeasure, UnitOfMeasureRoutes, UserPermissions, UserPermissionsRoutes, UserPositions, UserPositionsRoutes, Users, UsersRoutes, UserTokens, UserTokensRoutes, VatValidation, VatValidationRoutes, VatTax, VatTaxRoutes, VatTaxZone, VatTaxZoneRoutes, Vehicles, VehiclesRoutes, Workflow, WorkflowRoutes, StockMovement, StockMovementRoutes, Tenant, TenantRoutes, PreSale, PreSaleRoutes, PreSaleProduct, PreSaleProductRoutes, Npc, NpcRoutes, Printer, PrinterRoutes, SchedulePrintJob, SchedulePrintJobRoutes, QueryList, QueryListRoutes, QueryParameter, QueryParameterRoutes, ReturnReason, ReturnReasonRoutes, PropostaSheets, PropostaSheetsRoutes, Schedule, ScheduleRoutes, GoogleFilePermission, GoogleFilePermissionRoutes, Settings, SettingsRoutes, Tickets, TicketsRoutes, Channel, ChannelRoutes, TicketsLanguage, TicketsLanguageRoutes, CLT, CLTRoutes, StartDocumentHeaderLastUpdate, Persona, PersonaRoutes, ProjectInfo, ProjectInfoRoutes, EmailVerification, EmailVerificationRoutes, EmailLog, EmailLogRoutes, Purchase, PurchaseRoutes, Order, OrderRoutes, MaterialEntrance, MaterialEntranceRoutes, Transformado, TransformadoRoutes, Quebra, QuebraRoutes, UpfrontReturn, UpfrontReturnRoutes, SavedEmPicking, SavedEmPickingRoutes, EmailTemplate, EmailTemplateRoutes, EmailTemplateAttachment, EmailTemplateAttachmentRoutes, Inventario, InventarioRoutes, ReturnToProvider, ReturnToProviderRoutes, Prison, PrisonRoutes, DocumentLineNote, DocumentLineNoteRoutes, SavedProviderProposal, SavedProviderProposalRoutes, ProductGoogleSheets, ProductGoogleSheetsRoutes, Task, TaskRoutes, TaskMessage, TaskMessageRoutes, RecurrentTasks, TaskRead, TaskReadRoutes, Theme, ThemeRoutes, Dashboard, DashboardRoutes, ChatRapidMessage, ChatRapidMessageRoutes, SideMenu, SideMenuRoutes, AdminPanel, ErrorLog, ErrorLogRoutes, DocumentLineRm, DocumentLineRmRoutes, DocumentLineMt, DocumentLineMtRoutes, ChatSubscriber, ChatSubscriberRoutes, Tag, TagRoutes, };
|
|
232
|
+
export { shared, viewErrors, stockErrors, userErrors, documentManagementErrors, integrationErrors, ZipCode, ZipCodeRoutes, BankData, BankDataRoutes, Client, ClientRoutes, ClientType, ClientTypeRoutes, ClientCurrentAccount, ClientCurrentAccountRoutes, Chat, ChatRoutes, Commissioner, CommissionerRoutes, Counter, CounterRoutes, Country, CountryRoutes, DeliveryMethods, DeliveryMethodsRoutes, DocumentHeader, DocumentHeaderRoutes, BillOfLading, BillOfLadingRoutes, ProductionOrder, ProductionOrderRoutes, Proforma, ProformaRoutes, PropostaFornecedor, PropostaFornecedorRoutes, ProviderCreditNoteFromReturn, ProviderCreditNoteFromReturnRoutes, ProviderFinancialCreditNote, ProviderFinancialCreditNoteRoutes, ProviderServiceInvoice, ProviderServiceInvoiceRoutes, DocumentLine, DocumentLineRoutes, DocumentLineAssoc, DocumentLineAssocRoutes, DocumentSet, DocumentSetRoutes, DocumentType, DocumentTypeRoutes, ExternalDocumentType, ExternalDocumentHeader, ExternalDocumentHeaderRoutes, Favorites, FavoritesRoutes, File, FileRoutes, GroupPermissions, GroupPermissionsRoutes, GoogleSheets, GoogleSheetsRoutes, Language, LanguageRoutes, Location, LocationRoutes, MaturityDates, MaturityDatesRoutes, Multimedia, MultimediaRoutes, OrderManagement, Observation, ObservationRoutes, ObservationType, ObservationTypeRoutes, Password, PasswordRoutes, Payment, PaymentRoutes, PaymentMethods, PaymentMethodsRoutes, Permissions, PermissionsRoutes, ProductImage, ProductImageRoutes, Promotion, PromotionRoutes, PromotionAssoc, PromotionAssocRoutes, Providers, ProvidersRoutes, ProviderType, ProviderTypeRoutes, ProviderCurrentAccount, ProviderCurrentAccountRoutes, PurchaseConditions, PurchaseConditionsRoutes, ReasonForExemption, ReasonForExemptionRoutes, RefreshToken, RefreshTokenRoutes, SegmentsArea, SegmentsAreaRoutes, Sessions, SessionsRoutes, Shippings, ShippingsRoutes, StoreOperator, StoreOperatorRoutes, Swift, SwiftRoutes, TypeOfLocation, TypeOfLocationRoutes, UnitOfMeasure, UnitOfMeasureRoutes, UserPermissions, UserPermissionsRoutes, UserPositions, UserPositionsRoutes, Users, UsersRoutes, UserTokens, UserTokensRoutes, VatValidation, VatValidationRoutes, VatTax, VatTaxRoutes, VatTaxZone, VatTaxZoneRoutes, Vehicles, VehiclesRoutes, Workflow, WorkflowRoutes, StockMovement, StockMovementRoutes, Tenant, TenantRoutes, PreSale, PreSaleRoutes, PreSaleProduct, PreSaleProductRoutes, Npc, NpcRoutes, Printer, PrinterRoutes, SchedulePrintJob, SchedulePrintJobRoutes, QueryList, QueryListRoutes, QueryParameter, QueryParameterRoutes, ReturnReason, ReturnReasonRoutes, PropostaSheets, PropostaSheetsRoutes, Schedule, ScheduleRoutes, GoogleFilePermission, GoogleFilePermissionRoutes, Settings, SettingsRoutes, Tickets, TicketsRoutes, Channel, ChannelRoutes, TicketsLanguage, TicketsLanguageRoutes, CLT, CLTRoutes, StartDocumentHeaderLastUpdate, Persona, PersonaRoutes, ProjectInfo, ProjectInfoRoutes, EmailVerification, EmailVerificationRoutes, EmailLog, EmailLogRoutes, Purchase, PurchaseRoutes, Order, OrderRoutes, MaterialEntrance, MaterialEntranceRoutes, Transformado, TransformadoRoutes, Quebra, QuebraRoutes, UpfrontReturn, UpfrontReturnRoutes, SavedEmPicking, SavedEmPickingRoutes, EmailTemplate, EmailTemplateRoutes, EmailTemplateAttachment, EmailTemplateAttachmentRoutes, Inventario, InventarioRoutes, ReturnToProvider, ReturnToProviderRoutes, Prison, PrisonRoutes, DocumentLineNote, DocumentLineNoteRoutes, SavedProviderProposal, SavedProviderProposalRoutes, ProductGoogleSheets, ProductGoogleSheetsRoutes, Task, TaskRoutes, TaskMessage, TaskMessageRoutes, RecurrentTasks, TaskRead, TaskReadRoutes, Theme, ThemeRoutes, Dashboard, DashboardRoutes, ChatRapidMessage, ChatRapidMessageRoutes, SideMenu, SideMenuRoutes, AdminPanel, ErrorLog, ErrorLogRoutes, DocumentLineRm, DocumentLineRmRoutes, DocumentLineMt, DocumentLineMtRoutes, ChatSubscriber, ChatSubscriberRoutes, };
|
|
@@ -66,7 +66,7 @@ export interface IEntradaDeMaterialNC {
|
|
|
66
66
|
}
|
|
67
67
|
export interface IGetMaterialEntranceInfoResponse {
|
|
68
68
|
clientOrders: IEntradaDeMaterialClientOrder[];
|
|
69
|
-
stock: IEntradaDeMaterialStock;
|
|
69
|
+
stock: IEntradaDeMaterialStock[];
|
|
70
70
|
not_ok: IEntradaDeMaterialNC;
|
|
71
71
|
saved_id: string | null;
|
|
72
72
|
}
|
|
@@ -170,6 +170,7 @@ export interface IUpdateRequest {
|
|
|
170
170
|
is_archived?: boolean;
|
|
171
171
|
is_void?: boolean;
|
|
172
172
|
who_handles?: string | null;
|
|
173
|
+
tags?: string | null;
|
|
173
174
|
warning?: IWarningType;
|
|
174
175
|
created_by?: string;
|
|
175
176
|
}
|
|
@@ -202,6 +203,7 @@ export interface IFindResponse {
|
|
|
202
203
|
total: number;
|
|
203
204
|
emission_date: string;
|
|
204
205
|
line_count: number;
|
|
206
|
+
tags: string;
|
|
205
207
|
is_void: boolean;
|
|
206
208
|
is_archived: boolean;
|
|
207
209
|
adjudicado: boolean;
|
|
@@ -285,6 +287,7 @@ export interface IFindRmOpenDocuments {
|
|
|
285
287
|
document_header_id: string;
|
|
286
288
|
document_number: string;
|
|
287
289
|
identifier: string;
|
|
290
|
+
tags: string | null;
|
|
288
291
|
upfront_total: number | null;
|
|
289
292
|
who_handles: string | null;
|
|
290
293
|
document_lines: {
|
|
@@ -3,7 +3,6 @@ import { IDocumentTypeUserType, IDocumentTypeCodeType } from '../../modules/supp
|
|
|
3
3
|
import { IBatchType, IPaymentOrigin } from '../../modules/supply/payment/interface';
|
|
4
4
|
import { IProductType } from '../../modules/stock/productGoogleSheets/interface';
|
|
5
5
|
import { IImageType } from '../../modules/stock/productImage/interface';
|
|
6
|
-
import { ITagType } from '../../modules/stock/tag/interface';
|
|
7
6
|
import { IQueryParameterDatatype } from '../../modules/stock/queryParameter/interfaces';
|
|
8
7
|
import { IData, IDataDocumentoPago, IDataPagamento, IPromotions, type IImportedFromSheets } from '../../modules/supply/documentLine/interfaces';
|
|
9
8
|
import { IPhcDocumentType } from '../../modules/supply/clientCurrentAccount/interfaces';
|
|
@@ -319,6 +318,7 @@ export type DocumentHeader = {
|
|
|
319
318
|
is_void: boolean;
|
|
320
319
|
origin_id: string | null;
|
|
321
320
|
who_handles: string | null;
|
|
321
|
+
tags: string | null;
|
|
322
322
|
warning: string | null;
|
|
323
323
|
created_at: Date;
|
|
324
324
|
updated_at: Date;
|
|
@@ -1206,18 +1206,3 @@ export type DocumentLineMT = {
|
|
|
1206
1206
|
created_at: Date;
|
|
1207
1207
|
updated_at: Date;
|
|
1208
1208
|
};
|
|
1209
|
-
/**
|
|
1210
|
-
* Model Tag
|
|
1211
|
-
*
|
|
1212
|
-
*/
|
|
1213
|
-
export type Tag = {
|
|
1214
|
-
id: string;
|
|
1215
|
-
text: string;
|
|
1216
|
-
index: number;
|
|
1217
|
-
type: ITagType;
|
|
1218
|
-
document_header_id: string;
|
|
1219
|
-
created_by: string;
|
|
1220
|
-
updated_by: string;
|
|
1221
|
-
created_at: Date;
|
|
1222
|
-
updated_at: Date;
|
|
1223
|
-
};
|
package/package-lock.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nomalism-com/types",
|
|
3
|
-
"version": "0.34.
|
|
3
|
+
"version": "0.34.38",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@nomalism-com/types",
|
|
9
|
-
"version": "0.34.
|
|
9
|
+
"version": "0.34.38",
|
|
10
10
|
"license": "UNLICENSED",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"joi": "^17.13.3"
|
|
@@ -513,9 +513,9 @@
|
|
|
513
513
|
}
|
|
514
514
|
},
|
|
515
515
|
"node_modules/@eslint/config-array": {
|
|
516
|
-
"version": "0.20.
|
|
517
|
-
"resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.20.
|
|
518
|
-
"integrity": "sha512-
|
|
516
|
+
"version": "0.20.1",
|
|
517
|
+
"resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.20.1.tgz",
|
|
518
|
+
"integrity": "sha512-OL0RJzC/CBzli0DrrR31qzj6d6i6Mm3HByuhflhl4LOBiWxN+3i6/t/ZQQNii4tjksXi8r2CRW1wMpWA2ULUEw==",
|
|
519
519
|
"dev": true,
|
|
520
520
|
"license": "Apache-2.0",
|
|
521
521
|
"dependencies": {
|
|
@@ -528,9 +528,9 @@
|
|
|
528
528
|
}
|
|
529
529
|
},
|
|
530
530
|
"node_modules/@eslint/config-array/node_modules/brace-expansion": {
|
|
531
|
-
"version": "1.1.
|
|
532
|
-
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.
|
|
533
|
-
"integrity": "sha512-
|
|
531
|
+
"version": "1.1.12",
|
|
532
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
|
|
533
|
+
"integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
|
|
534
534
|
"dev": true,
|
|
535
535
|
"license": "MIT",
|
|
536
536
|
"dependencies": {
|
|
@@ -552,9 +552,9 @@
|
|
|
552
552
|
}
|
|
553
553
|
},
|
|
554
554
|
"node_modules/@eslint/config-helpers": {
|
|
555
|
-
"version": "0.2.
|
|
556
|
-
"resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.2.
|
|
557
|
-
"integrity": "sha512
|
|
555
|
+
"version": "0.2.3",
|
|
556
|
+
"resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.2.3.tgz",
|
|
557
|
+
"integrity": "sha512-u180qk2Um1le4yf0ruXH3PYFeEZeYC3p/4wCTKrr2U1CmGdzGi3KtY0nuPDH48UJxlKCC5RDzbcbh4X0XlqgHg==",
|
|
558
558
|
"dev": true,
|
|
559
559
|
"license": "Apache-2.0",
|
|
560
560
|
"engines": {
|
|
@@ -599,9 +599,9 @@
|
|
|
599
599
|
}
|
|
600
600
|
},
|
|
601
601
|
"node_modules/@eslint/eslintrc/node_modules/brace-expansion": {
|
|
602
|
-
"version": "1.1.
|
|
603
|
-
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.
|
|
604
|
-
"integrity": "sha512-
|
|
602
|
+
"version": "1.1.12",
|
|
603
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
|
|
604
|
+
"integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
|
|
605
605
|
"dev": true,
|
|
606
606
|
"license": "MIT",
|
|
607
607
|
"dependencies": {
|
|
@@ -633,9 +633,9 @@
|
|
|
633
633
|
}
|
|
634
634
|
},
|
|
635
635
|
"node_modules/@eslint/js": {
|
|
636
|
-
"version": "9.
|
|
637
|
-
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.
|
|
638
|
-
"integrity": "sha512-
|
|
636
|
+
"version": "9.29.0",
|
|
637
|
+
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.29.0.tgz",
|
|
638
|
+
"integrity": "sha512-3PIF4cBw/y+1u2EazflInpV+lYsSG0aByVIQzAgb1m1MhHFSbqTyNqtBKHgWf/9Ykud+DhILS9EGkmekVhbKoQ==",
|
|
639
639
|
"dev": true,
|
|
640
640
|
"license": "MIT",
|
|
641
641
|
"engines": {
|
|
@@ -656,19 +656,32 @@
|
|
|
656
656
|
}
|
|
657
657
|
},
|
|
658
658
|
"node_modules/@eslint/plugin-kit": {
|
|
659
|
-
"version": "0.3.
|
|
660
|
-
"resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.3.
|
|
661
|
-
"integrity": "sha512-
|
|
659
|
+
"version": "0.3.2",
|
|
660
|
+
"resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.3.2.tgz",
|
|
661
|
+
"integrity": "sha512-4SaFZCNfJqvk/kenHpI8xvN42DMaoycy4PzKc5otHxRswww1kAt82OlBuwRVLofCACCTZEcla2Ydxv8scMXaTg==",
|
|
662
662
|
"dev": true,
|
|
663
663
|
"license": "Apache-2.0",
|
|
664
664
|
"dependencies": {
|
|
665
|
-
"@eslint/core": "^0.
|
|
665
|
+
"@eslint/core": "^0.15.0",
|
|
666
666
|
"levn": "^0.4.1"
|
|
667
667
|
},
|
|
668
668
|
"engines": {
|
|
669
669
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
670
670
|
}
|
|
671
671
|
},
|
|
672
|
+
"node_modules/@eslint/plugin-kit/node_modules/@eslint/core": {
|
|
673
|
+
"version": "0.15.0",
|
|
674
|
+
"resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.15.0.tgz",
|
|
675
|
+
"integrity": "sha512-b7ePw78tEWWkpgZCDYkbqDOP8dmM6qe+AOC6iuJqlq1R/0ahMAeH3qynpnqKFGkMltrp44ohV4ubGyvLX28tzw==",
|
|
676
|
+
"dev": true,
|
|
677
|
+
"license": "Apache-2.0",
|
|
678
|
+
"dependencies": {
|
|
679
|
+
"@types/json-schema": "^7.0.15"
|
|
680
|
+
},
|
|
681
|
+
"engines": {
|
|
682
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
683
|
+
}
|
|
684
|
+
},
|
|
672
685
|
"node_modules/@hapi/hoek": {
|
|
673
686
|
"version": "9.3.0",
|
|
674
687
|
"resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz",
|
|
@@ -1198,15 +1211,15 @@
|
|
|
1198
1211
|
"license": "BSD-3-Clause"
|
|
1199
1212
|
},
|
|
1200
1213
|
"node_modules/@swc/core": {
|
|
1201
|
-
"version": "1.12.
|
|
1202
|
-
"resolved": "https://registry.npmjs.org/@swc/core/-/core-1.12.
|
|
1203
|
-
"integrity": "sha512
|
|
1214
|
+
"version": "1.12.1",
|
|
1215
|
+
"resolved": "https://registry.npmjs.org/@swc/core/-/core-1.12.1.tgz",
|
|
1216
|
+
"integrity": "sha512-aKXdDTqxTVFl/bKQZ3EQUjEMBEoF6JBv29moMZq0kbVO43na6u/u+3Vcbhbrh+A2N0X5OL4RaveuWfAjEgOmeA==",
|
|
1204
1217
|
"dev": true,
|
|
1205
1218
|
"hasInstallScript": true,
|
|
1206
1219
|
"license": "Apache-2.0",
|
|
1207
1220
|
"dependencies": {
|
|
1208
1221
|
"@swc/counter": "^0.1.3",
|
|
1209
|
-
"@swc/types": "^0.1.
|
|
1222
|
+
"@swc/types": "^0.1.23"
|
|
1210
1223
|
},
|
|
1211
1224
|
"engines": {
|
|
1212
1225
|
"node": ">=10"
|
|
@@ -1216,16 +1229,16 @@
|
|
|
1216
1229
|
"url": "https://opencollective.com/swc"
|
|
1217
1230
|
},
|
|
1218
1231
|
"optionalDependencies": {
|
|
1219
|
-
"@swc/core-darwin-arm64": "1.12.
|
|
1220
|
-
"@swc/core-darwin-x64": "1.12.
|
|
1221
|
-
"@swc/core-linux-arm-gnueabihf": "1.12.
|
|
1222
|
-
"@swc/core-linux-arm64-gnu": "1.12.
|
|
1223
|
-
"@swc/core-linux-arm64-musl": "1.12.
|
|
1224
|
-
"@swc/core-linux-x64-gnu": "1.12.
|
|
1225
|
-
"@swc/core-linux-x64-musl": "1.12.
|
|
1226
|
-
"@swc/core-win32-arm64-msvc": "1.12.
|
|
1227
|
-
"@swc/core-win32-ia32-msvc": "1.12.
|
|
1228
|
-
"@swc/core-win32-x64-msvc": "1.12.
|
|
1232
|
+
"@swc/core-darwin-arm64": "1.12.1",
|
|
1233
|
+
"@swc/core-darwin-x64": "1.12.1",
|
|
1234
|
+
"@swc/core-linux-arm-gnueabihf": "1.12.1",
|
|
1235
|
+
"@swc/core-linux-arm64-gnu": "1.12.1",
|
|
1236
|
+
"@swc/core-linux-arm64-musl": "1.12.1",
|
|
1237
|
+
"@swc/core-linux-x64-gnu": "1.12.1",
|
|
1238
|
+
"@swc/core-linux-x64-musl": "1.12.1",
|
|
1239
|
+
"@swc/core-win32-arm64-msvc": "1.12.1",
|
|
1240
|
+
"@swc/core-win32-ia32-msvc": "1.12.1",
|
|
1241
|
+
"@swc/core-win32-x64-msvc": "1.12.1"
|
|
1229
1242
|
},
|
|
1230
1243
|
"peerDependencies": {
|
|
1231
1244
|
"@swc/helpers": ">=0.5.17"
|
|
@@ -1237,9 +1250,9 @@
|
|
|
1237
1250
|
}
|
|
1238
1251
|
},
|
|
1239
1252
|
"node_modules/@swc/core-darwin-arm64": {
|
|
1240
|
-
"version": "1.12.
|
|
1241
|
-
"resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.12.
|
|
1242
|
-
"integrity": "sha512-
|
|
1253
|
+
"version": "1.12.1",
|
|
1254
|
+
"resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.12.1.tgz",
|
|
1255
|
+
"integrity": "sha512-nUjWVcJ3YS2N40ZbKwYO2RJ4+o2tWYRzNOcIQp05FqW0+aoUCVMdAUUzQinPDynfgwVshDAXCKemY8X7nN5MaA==",
|
|
1243
1256
|
"cpu": [
|
|
1244
1257
|
"arm64"
|
|
1245
1258
|
],
|
|
@@ -1254,9 +1267,9 @@
|
|
|
1254
1267
|
}
|
|
1255
1268
|
},
|
|
1256
1269
|
"node_modules/@swc/core-darwin-x64": {
|
|
1257
|
-
"version": "1.12.
|
|
1258
|
-
"resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.12.
|
|
1259
|
-
"integrity": "sha512-
|
|
1270
|
+
"version": "1.12.1",
|
|
1271
|
+
"resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.12.1.tgz",
|
|
1272
|
+
"integrity": "sha512-OGm4a4d3OeJn+tRt8H/eiHgTFrJbS6r8mi/Ob65tAEXZGHN900T2kR7c5ALr0V2hBOQ8BfhexwPoQlGQP/B95w==",
|
|
1260
1273
|
"cpu": [
|
|
1261
1274
|
"x64"
|
|
1262
1275
|
],
|
|
@@ -1271,9 +1284,9 @@
|
|
|
1271
1284
|
}
|
|
1272
1285
|
},
|
|
1273
1286
|
"node_modules/@swc/core-linux-arm-gnueabihf": {
|
|
1274
|
-
"version": "1.12.
|
|
1275
|
-
"resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.12.
|
|
1276
|
-
"integrity": "sha512-
|
|
1287
|
+
"version": "1.12.1",
|
|
1288
|
+
"resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.12.1.tgz",
|
|
1289
|
+
"integrity": "sha512-76YeeQKyK0EtNkQiNBZ0nbVGooPf9IucY0WqVXVpaU4wuG7ZyLEE2ZAIgXafIuzODGQoLfetue7I8boMxh1/MA==",
|
|
1277
1290
|
"cpu": [
|
|
1278
1291
|
"arm"
|
|
1279
1292
|
],
|
|
@@ -1288,9 +1301,9 @@
|
|
|
1288
1301
|
}
|
|
1289
1302
|
},
|
|
1290
1303
|
"node_modules/@swc/core-linux-arm64-gnu": {
|
|
1291
|
-
"version": "1.12.
|
|
1292
|
-
"resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.12.
|
|
1293
|
-
"integrity": "sha512-
|
|
1304
|
+
"version": "1.12.1",
|
|
1305
|
+
"resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.12.1.tgz",
|
|
1306
|
+
"integrity": "sha512-BxJDIJPq1+aCh9UsaSAN6wo3tuln8UhNXruOrzTI8/ElIig/3sAueDM6Eq7GvZSGGSA7ljhNATMJ0elD7lFatQ==",
|
|
1294
1307
|
"cpu": [
|
|
1295
1308
|
"arm64"
|
|
1296
1309
|
],
|
|
@@ -1305,9 +1318,9 @@
|
|
|
1305
1318
|
}
|
|
1306
1319
|
},
|
|
1307
1320
|
"node_modules/@swc/core-linux-arm64-musl": {
|
|
1308
|
-
"version": "1.12.
|
|
1309
|
-
"resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.12.
|
|
1310
|
-
"integrity": "sha512-
|
|
1321
|
+
"version": "1.12.1",
|
|
1322
|
+
"resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.12.1.tgz",
|
|
1323
|
+
"integrity": "sha512-NhLdbffSXvY0/FwUSAl4hKBlpe5GHQGXK8DxTo3HHjLsD9sCPYieo3vG0NQoUYAy4ZUY1WeGjyxeq4qZddJzEQ==",
|
|
1311
1324
|
"cpu": [
|
|
1312
1325
|
"arm64"
|
|
1313
1326
|
],
|
|
@@ -1322,9 +1335,9 @@
|
|
|
1322
1335
|
}
|
|
1323
1336
|
},
|
|
1324
1337
|
"node_modules/@swc/core-linux-x64-gnu": {
|
|
1325
|
-
"version": "1.12.
|
|
1326
|
-
"resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.12.
|
|
1327
|
-
"integrity": "sha512-
|
|
1338
|
+
"version": "1.12.1",
|
|
1339
|
+
"resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.12.1.tgz",
|
|
1340
|
+
"integrity": "sha512-CrYnV8SZIgArQ9LKH0xEF95PKXzX9WkRSc5j55arOSBeDCeDUQk1Bg/iKdnDiuj5HC1hZpvzwMzSBJjv+Z70jA==",
|
|
1328
1341
|
"cpu": [
|
|
1329
1342
|
"x64"
|
|
1330
1343
|
],
|
|
@@ -1339,9 +1352,9 @@
|
|
|
1339
1352
|
}
|
|
1340
1353
|
},
|
|
1341
1354
|
"node_modules/@swc/core-linux-x64-musl": {
|
|
1342
|
-
"version": "1.12.
|
|
1343
|
-
"resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.12.
|
|
1344
|
-
"integrity": "sha512-
|
|
1355
|
+
"version": "1.12.1",
|
|
1356
|
+
"resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.12.1.tgz",
|
|
1357
|
+
"integrity": "sha512-BQMl3d0HaGB0/h2xcKlGtjk/cGRn2tnbsaChAKcjFdCepblKBCz1pgO/mL7w5iXq3s57wMDUn++71/a5RAkZOA==",
|
|
1345
1358
|
"cpu": [
|
|
1346
1359
|
"x64"
|
|
1347
1360
|
],
|
|
@@ -1356,9 +1369,9 @@
|
|
|
1356
1369
|
}
|
|
1357
1370
|
},
|
|
1358
1371
|
"node_modules/@swc/core-win32-arm64-msvc": {
|
|
1359
|
-
"version": "1.12.
|
|
1360
|
-
"resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.12.
|
|
1361
|
-
"integrity": "sha512-
|
|
1372
|
+
"version": "1.12.1",
|
|
1373
|
+
"resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.12.1.tgz",
|
|
1374
|
+
"integrity": "sha512-b7NeGnpqTfmIGtUqXBl0KqoSmOnH64nRZoT5l4BAGdvwY7nxitWR94CqZuwyLPty/bLywmyDA9uO12Kvgb3+gg==",
|
|
1362
1375
|
"cpu": [
|
|
1363
1376
|
"arm64"
|
|
1364
1377
|
],
|
|
@@ -1373,9 +1386,9 @@
|
|
|
1373
1386
|
}
|
|
1374
1387
|
},
|
|
1375
1388
|
"node_modules/@swc/core-win32-ia32-msvc": {
|
|
1376
|
-
"version": "1.12.
|
|
1377
|
-
"resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.12.
|
|
1378
|
-
"integrity": "sha512-
|
|
1389
|
+
"version": "1.12.1",
|
|
1390
|
+
"resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.12.1.tgz",
|
|
1391
|
+
"integrity": "sha512-iU/29X2D7cHBp1to62cUg/5Xk8K+lyOJiKIGGW5rdzTW/c2zz3d/ehgpzVP/rqC4NVr88MXspqHU4il5gmDajw==",
|
|
1379
1392
|
"cpu": [
|
|
1380
1393
|
"ia32"
|
|
1381
1394
|
],
|
|
@@ -1390,9 +1403,9 @@
|
|
|
1390
1403
|
}
|
|
1391
1404
|
},
|
|
1392
1405
|
"node_modules/@swc/core-win32-x64-msvc": {
|
|
1393
|
-
"version": "1.12.
|
|
1394
|
-
"resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.12.
|
|
1395
|
-
"integrity": "sha512
|
|
1406
|
+
"version": "1.12.1",
|
|
1407
|
+
"resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.12.1.tgz",
|
|
1408
|
+
"integrity": "sha512-+Zh+JKDwiFqV5N9yAd2DhYVGPORGh9cfenu1ptr9yge+eHAf7vZJcC3rnj6QMR1QJh0Y5VC9+YBjRFjZVA7XDw==",
|
|
1396
1409
|
"cpu": [
|
|
1397
1410
|
"x64"
|
|
1398
1411
|
],
|
|
@@ -1414,9 +1427,9 @@
|
|
|
1414
1427
|
"license": "Apache-2.0"
|
|
1415
1428
|
},
|
|
1416
1429
|
"node_modules/@swc/types": {
|
|
1417
|
-
"version": "0.1.
|
|
1418
|
-
"resolved": "https://registry.npmjs.org/@swc/types/-/types-0.1.
|
|
1419
|
-
"integrity": "sha512-
|
|
1430
|
+
"version": "0.1.23",
|
|
1431
|
+
"resolved": "https://registry.npmjs.org/@swc/types/-/types-0.1.23.tgz",
|
|
1432
|
+
"integrity": "sha512-u1iIVZV9Q0jxY+yM2vw/hZGDNudsN85bBpTqzAQ9rzkxW9D+e3aEM4Han+ow518gSewkXgjmEK0BD79ZcNVgPw==",
|
|
1420
1433
|
"dev": true,
|
|
1421
1434
|
"license": "Apache-2.0",
|
|
1422
1435
|
"dependencies": {
|
|
@@ -1449,9 +1462,9 @@
|
|
|
1449
1462
|
"license": "MIT"
|
|
1450
1463
|
},
|
|
1451
1464
|
"node_modules/@types/node": {
|
|
1452
|
-
"version": "22.15.
|
|
1453
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.15.
|
|
1454
|
-
"integrity": "sha512-
|
|
1465
|
+
"version": "22.15.32",
|
|
1466
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.15.32.tgz",
|
|
1467
|
+
"integrity": "sha512-3jigKqgSjsH6gYZv2nEsqdXfZqIFGAV36XYYjf9KGZ3PSG+IhLecqPnI310RvjutyMwifE2hhhNEklOUrvx/wA==",
|
|
1455
1468
|
"dev": true,
|
|
1456
1469
|
"license": "MIT",
|
|
1457
1470
|
"dependencies": {
|
|
@@ -1692,10 +1705,38 @@
|
|
|
1692
1705
|
"url": "https://opencollective.com/eslint"
|
|
1693
1706
|
}
|
|
1694
1707
|
},
|
|
1708
|
+
"node_modules/@unrs/resolver-binding-android-arm-eabi": {
|
|
1709
|
+
"version": "1.9.0",
|
|
1710
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm-eabi/-/resolver-binding-android-arm-eabi-1.9.0.tgz",
|
|
1711
|
+
"integrity": "sha512-h1T2c2Di49ekF2TE8ZCoJkb+jwETKUIPDJ/nO3tJBKlLFPu+fyd93f0rGP/BvArKx2k2HlRM4kqkNarj3dvZlg==",
|
|
1712
|
+
"cpu": [
|
|
1713
|
+
"arm"
|
|
1714
|
+
],
|
|
1715
|
+
"dev": true,
|
|
1716
|
+
"license": "MIT",
|
|
1717
|
+
"optional": true,
|
|
1718
|
+
"os": [
|
|
1719
|
+
"android"
|
|
1720
|
+
]
|
|
1721
|
+
},
|
|
1722
|
+
"node_modules/@unrs/resolver-binding-android-arm64": {
|
|
1723
|
+
"version": "1.9.0",
|
|
1724
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm64/-/resolver-binding-android-arm64-1.9.0.tgz",
|
|
1725
|
+
"integrity": "sha512-sG1NHtgXtX8owEkJ11yn34vt0Xqzi3k9TJ8zppDmyG8GZV4kVWw44FHwKwHeEFl07uKPeC4ZoyuQaGh5ruJYPA==",
|
|
1726
|
+
"cpu": [
|
|
1727
|
+
"arm64"
|
|
1728
|
+
],
|
|
1729
|
+
"dev": true,
|
|
1730
|
+
"license": "MIT",
|
|
1731
|
+
"optional": true,
|
|
1732
|
+
"os": [
|
|
1733
|
+
"android"
|
|
1734
|
+
]
|
|
1735
|
+
},
|
|
1695
1736
|
"node_modules/@unrs/resolver-binding-darwin-arm64": {
|
|
1696
|
-
"version": "1.
|
|
1697
|
-
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-arm64/-/resolver-binding-darwin-arm64-1.
|
|
1698
|
-
"integrity": "sha512-
|
|
1737
|
+
"version": "1.9.0",
|
|
1738
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-arm64/-/resolver-binding-darwin-arm64-1.9.0.tgz",
|
|
1739
|
+
"integrity": "sha512-nJ9z47kfFnCxN1z/oYZS7HSNsFh43y2asePzTEZpEvK7kGyuShSl3RRXnm/1QaqFL+iP+BjMwuB+DYUymOkA5A==",
|
|
1699
1740
|
"cpu": [
|
|
1700
1741
|
"arm64"
|
|
1701
1742
|
],
|
|
@@ -1707,9 +1748,9 @@
|
|
|
1707
1748
|
]
|
|
1708
1749
|
},
|
|
1709
1750
|
"node_modules/@unrs/resolver-binding-darwin-x64": {
|
|
1710
|
-
"version": "1.
|
|
1711
|
-
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-x64/-/resolver-binding-darwin-x64-1.
|
|
1712
|
-
"integrity": "sha512-
|
|
1751
|
+
"version": "1.9.0",
|
|
1752
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-x64/-/resolver-binding-darwin-x64-1.9.0.tgz",
|
|
1753
|
+
"integrity": "sha512-TK+UA1TTa0qS53rjWn7cVlEKVGz2B6JYe0C++TdQjvWYIyx83ruwh0wd4LRxYBM5HeuAzXcylA9BH2trARXJTw==",
|
|
1713
1754
|
"cpu": [
|
|
1714
1755
|
"x64"
|
|
1715
1756
|
],
|
|
@@ -1721,9 +1762,9 @@
|
|
|
1721
1762
|
]
|
|
1722
1763
|
},
|
|
1723
1764
|
"node_modules/@unrs/resolver-binding-freebsd-x64": {
|
|
1724
|
-
"version": "1.
|
|
1725
|
-
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-freebsd-x64/-/resolver-binding-freebsd-x64-1.
|
|
1726
|
-
"integrity": "sha512-
|
|
1765
|
+
"version": "1.9.0",
|
|
1766
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-freebsd-x64/-/resolver-binding-freebsd-x64-1.9.0.tgz",
|
|
1767
|
+
"integrity": "sha512-6uZwzMRFcD7CcCd0vz3Hp+9qIL2jseE/bx3ZjaLwn8t714nYGwiE84WpaMCYjU+IQET8Vu/+BNAGtYD7BG/0yA==",
|
|
1727
1768
|
"cpu": [
|
|
1728
1769
|
"x64"
|
|
1729
1770
|
],
|
|
@@ -1735,9 +1776,9 @@
|
|
|
1735
1776
|
]
|
|
1736
1777
|
},
|
|
1737
1778
|
"node_modules/@unrs/resolver-binding-linux-arm-gnueabihf": {
|
|
1738
|
-
"version": "1.
|
|
1739
|
-
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-gnueabihf/-/resolver-binding-linux-arm-gnueabihf-1.
|
|
1740
|
-
"integrity": "sha512-
|
|
1779
|
+
"version": "1.9.0",
|
|
1780
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-gnueabihf/-/resolver-binding-linux-arm-gnueabihf-1.9.0.tgz",
|
|
1781
|
+
"integrity": "sha512-bPUBksQfrgcfv2+mm+AZinaKq8LCFvt5PThYqRotqSuuZK1TVKkhbVMS/jvSRfYl7jr3AoZLYbDkItxgqMKRkg==",
|
|
1741
1782
|
"cpu": [
|
|
1742
1783
|
"arm"
|
|
1743
1784
|
],
|
|
@@ -1749,9 +1790,9 @@
|
|
|
1749
1790
|
]
|
|
1750
1791
|
},
|
|
1751
1792
|
"node_modules/@unrs/resolver-binding-linux-arm-musleabihf": {
|
|
1752
|
-
"version": "1.
|
|
1753
|
-
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-musleabihf/-/resolver-binding-linux-arm-musleabihf-1.
|
|
1754
|
-
"integrity": "sha512-
|
|
1793
|
+
"version": "1.9.0",
|
|
1794
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-musleabihf/-/resolver-binding-linux-arm-musleabihf-1.9.0.tgz",
|
|
1795
|
+
"integrity": "sha512-uT6E7UBIrTdCsFQ+y0tQd3g5oudmrS/hds5pbU3h4s2t/1vsGWbbSKhBSCD9mcqaqkBwoqlECpUrRJCmldl8PA==",
|
|
1755
1796
|
"cpu": [
|
|
1756
1797
|
"arm"
|
|
1757
1798
|
],
|
|
@@ -1763,9 +1804,9 @@
|
|
|
1763
1804
|
]
|
|
1764
1805
|
},
|
|
1765
1806
|
"node_modules/@unrs/resolver-binding-linux-arm64-gnu": {
|
|
1766
|
-
"version": "1.
|
|
1767
|
-
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-gnu/-/resolver-binding-linux-arm64-gnu-1.
|
|
1768
|
-
"integrity": "sha512-
|
|
1807
|
+
"version": "1.9.0",
|
|
1808
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-gnu/-/resolver-binding-linux-arm64-gnu-1.9.0.tgz",
|
|
1809
|
+
"integrity": "sha512-vdqBh911wc5awE2bX2zx3eflbyv8U9xbE/jVKAm425eRoOVv/VseGZsqi3A3SykckSpF4wSROkbQPvbQFn8EsA==",
|
|
1769
1810
|
"cpu": [
|
|
1770
1811
|
"arm64"
|
|
1771
1812
|
],
|
|
@@ -1777,9 +1818,9 @@
|
|
|
1777
1818
|
]
|
|
1778
1819
|
},
|
|
1779
1820
|
"node_modules/@unrs/resolver-binding-linux-arm64-musl": {
|
|
1780
|
-
"version": "1.
|
|
1781
|
-
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-musl/-/resolver-binding-linux-arm64-musl-1.
|
|
1782
|
-
"integrity": "sha512
|
|
1821
|
+
"version": "1.9.0",
|
|
1822
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-musl/-/resolver-binding-linux-arm64-musl-1.9.0.tgz",
|
|
1823
|
+
"integrity": "sha512-/8JFZ/SnuDr1lLEVsxsuVwrsGquTvT51RZGvyDB/dOK3oYK2UqeXzgeyq6Otp8FZXQcEYqJwxb9v+gtdXn03eQ==",
|
|
1783
1824
|
"cpu": [
|
|
1784
1825
|
"arm64"
|
|
1785
1826
|
],
|
|
@@ -1791,9 +1832,9 @@
|
|
|
1791
1832
|
]
|
|
1792
1833
|
},
|
|
1793
1834
|
"node_modules/@unrs/resolver-binding-linux-ppc64-gnu": {
|
|
1794
|
-
"version": "1.
|
|
1795
|
-
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-ppc64-gnu/-/resolver-binding-linux-ppc64-gnu-1.
|
|
1796
|
-
"integrity": "sha512-
|
|
1835
|
+
"version": "1.9.0",
|
|
1836
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-ppc64-gnu/-/resolver-binding-linux-ppc64-gnu-1.9.0.tgz",
|
|
1837
|
+
"integrity": "sha512-FkJjybtrl+rajTw4loI3L6YqSOpeZfDls4SstL/5lsP2bka9TiHUjgMBjygeZEis1oC8LfJTS8FSgpKPaQx2tQ==",
|
|
1797
1838
|
"cpu": [
|
|
1798
1839
|
"ppc64"
|
|
1799
1840
|
],
|
|
@@ -1805,9 +1846,9 @@
|
|
|
1805
1846
|
]
|
|
1806
1847
|
},
|
|
1807
1848
|
"node_modules/@unrs/resolver-binding-linux-riscv64-gnu": {
|
|
1808
|
-
"version": "1.
|
|
1809
|
-
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-gnu/-/resolver-binding-linux-riscv64-gnu-1.
|
|
1810
|
-
"integrity": "sha512-
|
|
1849
|
+
"version": "1.9.0",
|
|
1850
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-gnu/-/resolver-binding-linux-riscv64-gnu-1.9.0.tgz",
|
|
1851
|
+
"integrity": "sha512-w/NZfHNeDusbqSZ8r/hp8iL4S39h4+vQMc9/vvzuIKMWKppyUGKm3IST0Qv0aOZ1rzIbl9SrDeIqK86ZpUK37w==",
|
|
1811
1852
|
"cpu": [
|
|
1812
1853
|
"riscv64"
|
|
1813
1854
|
],
|
|
@@ -1819,9 +1860,9 @@
|
|
|
1819
1860
|
]
|
|
1820
1861
|
},
|
|
1821
1862
|
"node_modules/@unrs/resolver-binding-linux-riscv64-musl": {
|
|
1822
|
-
"version": "1.
|
|
1823
|
-
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-musl/-/resolver-binding-linux-riscv64-musl-1.
|
|
1824
|
-
"integrity": "sha512-
|
|
1863
|
+
"version": "1.9.0",
|
|
1864
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-musl/-/resolver-binding-linux-riscv64-musl-1.9.0.tgz",
|
|
1865
|
+
"integrity": "sha512-bEPBosut8/8KQbUixPry8zg/fOzVOWyvwzOfz0C0Rw6dp+wIBseyiHKjkcSyZKv/98edrbMknBaMNJfA/UEdqw==",
|
|
1825
1866
|
"cpu": [
|
|
1826
1867
|
"riscv64"
|
|
1827
1868
|
],
|
|
@@ -1833,9 +1874,9 @@
|
|
|
1833
1874
|
]
|
|
1834
1875
|
},
|
|
1835
1876
|
"node_modules/@unrs/resolver-binding-linux-s390x-gnu": {
|
|
1836
|
-
"version": "1.
|
|
1837
|
-
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-s390x-gnu/-/resolver-binding-linux-s390x-gnu-1.
|
|
1838
|
-
"integrity": "sha512-
|
|
1877
|
+
"version": "1.9.0",
|
|
1878
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-s390x-gnu/-/resolver-binding-linux-s390x-gnu-1.9.0.tgz",
|
|
1879
|
+
"integrity": "sha512-LDtMT7moE3gK753gG4pc31AAqGUC86j3AplaFusc717EUGF9ZFJ356sdQzzZzkBk1XzMdxFyZ4f/i35NKM/lFA==",
|
|
1839
1880
|
"cpu": [
|
|
1840
1881
|
"s390x"
|
|
1841
1882
|
],
|
|
@@ -1847,9 +1888,9 @@
|
|
|
1847
1888
|
]
|
|
1848
1889
|
},
|
|
1849
1890
|
"node_modules/@unrs/resolver-binding-linux-x64-gnu": {
|
|
1850
|
-
"version": "1.
|
|
1851
|
-
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-gnu/-/resolver-binding-linux-x64-gnu-1.
|
|
1852
|
-
"integrity": "sha512-
|
|
1891
|
+
"version": "1.9.0",
|
|
1892
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-gnu/-/resolver-binding-linux-x64-gnu-1.9.0.tgz",
|
|
1893
|
+
"integrity": "sha512-WmFd5KINHIXj8o1mPaT8QRjA9HgSXhN1gl9Da4IZihARihEnOylu4co7i/yeaIpcfsI6sYs33cNZKyHYDh0lrA==",
|
|
1853
1894
|
"cpu": [
|
|
1854
1895
|
"x64"
|
|
1855
1896
|
],
|
|
@@ -1861,9 +1902,9 @@
|
|
|
1861
1902
|
]
|
|
1862
1903
|
},
|
|
1863
1904
|
"node_modules/@unrs/resolver-binding-linux-x64-musl": {
|
|
1864
|
-
"version": "1.
|
|
1865
|
-
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-musl/-/resolver-binding-linux-x64-musl-1.
|
|
1866
|
-
"integrity": "sha512-
|
|
1905
|
+
"version": "1.9.0",
|
|
1906
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-musl/-/resolver-binding-linux-x64-musl-1.9.0.tgz",
|
|
1907
|
+
"integrity": "sha512-CYuXbANW+WgzVRIl8/QvZmDaZxrqvOldOwlbUjIM4pQ46FJ0W5cinJ/Ghwa/Ng1ZPMJMk1VFdsD/XwmCGIXBWg==",
|
|
1867
1908
|
"cpu": [
|
|
1868
1909
|
"x64"
|
|
1869
1910
|
],
|
|
@@ -1875,9 +1916,9 @@
|
|
|
1875
1916
|
]
|
|
1876
1917
|
},
|
|
1877
1918
|
"node_modules/@unrs/resolver-binding-wasm32-wasi": {
|
|
1878
|
-
"version": "1.
|
|
1879
|
-
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-wasm32-wasi/-/resolver-binding-wasm32-wasi-1.
|
|
1880
|
-
"integrity": "sha512-
|
|
1919
|
+
"version": "1.9.0",
|
|
1920
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-wasm32-wasi/-/resolver-binding-wasm32-wasi-1.9.0.tgz",
|
|
1921
|
+
"integrity": "sha512-6Rp2WH0OoitMYR57Z6VE8Y6corX8C6QEMWLgOV6qXiJIeZ1F9WGXY/yQ8yDC4iTraotyLOeJ2Asea0urWj2fKQ==",
|
|
1881
1922
|
"cpu": [
|
|
1882
1923
|
"wasm32"
|
|
1883
1924
|
],
|
|
@@ -1892,9 +1933,9 @@
|
|
|
1892
1933
|
}
|
|
1893
1934
|
},
|
|
1894
1935
|
"node_modules/@unrs/resolver-binding-win32-arm64-msvc": {
|
|
1895
|
-
"version": "1.
|
|
1896
|
-
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-arm64-msvc/-/resolver-binding-win32-arm64-msvc-1.
|
|
1897
|
-
"integrity": "sha512-
|
|
1936
|
+
"version": "1.9.0",
|
|
1937
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-arm64-msvc/-/resolver-binding-win32-arm64-msvc-1.9.0.tgz",
|
|
1938
|
+
"integrity": "sha512-rknkrTRuvujprrbPmGeHi8wYWxmNVlBoNW8+4XF2hXUnASOjmuC9FNF1tGbDiRQWn264q9U/oGtixyO3BT8adQ==",
|
|
1898
1939
|
"cpu": [
|
|
1899
1940
|
"arm64"
|
|
1900
1941
|
],
|
|
@@ -1906,9 +1947,9 @@
|
|
|
1906
1947
|
]
|
|
1907
1948
|
},
|
|
1908
1949
|
"node_modules/@unrs/resolver-binding-win32-ia32-msvc": {
|
|
1909
|
-
"version": "1.
|
|
1910
|
-
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-ia32-msvc/-/resolver-binding-win32-ia32-msvc-1.
|
|
1911
|
-
"integrity": "sha512-
|
|
1950
|
+
"version": "1.9.0",
|
|
1951
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-ia32-msvc/-/resolver-binding-win32-ia32-msvc-1.9.0.tgz",
|
|
1952
|
+
"integrity": "sha512-Ceymm+iBl+bgAICtgiHyMLz6hjxmLJKqBim8tDzpX61wpZOx2bPK6Gjuor7I2RiUynVjvvkoRIkrPyMwzBzF3A==",
|
|
1912
1953
|
"cpu": [
|
|
1913
1954
|
"ia32"
|
|
1914
1955
|
],
|
|
@@ -1920,9 +1961,9 @@
|
|
|
1920
1961
|
]
|
|
1921
1962
|
},
|
|
1922
1963
|
"node_modules/@unrs/resolver-binding-win32-x64-msvc": {
|
|
1923
|
-
"version": "1.
|
|
1924
|
-
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-x64-msvc/-/resolver-binding-win32-x64-msvc-1.
|
|
1925
|
-
"integrity": "sha512-
|
|
1964
|
+
"version": "1.9.0",
|
|
1965
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-x64-msvc/-/resolver-binding-win32-x64-msvc-1.9.0.tgz",
|
|
1966
|
+
"integrity": "sha512-k59o9ZyeyS0hAlcaKFezYSH2agQeRFEB7KoQLXl3Nb3rgkqT1NY9Vwy+SqODiLmYnEjxWJVRE/yq2jFVqdIxZw==",
|
|
1926
1967
|
"cpu": [
|
|
1927
1968
|
"x64"
|
|
1928
1969
|
],
|
|
@@ -2024,9 +2065,9 @@
|
|
|
2024
2065
|
"license": "MIT"
|
|
2025
2066
|
},
|
|
2026
2067
|
"node_modules/brace-expansion": {
|
|
2027
|
-
"version": "2.0.
|
|
2028
|
-
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.
|
|
2029
|
-
"integrity": "sha512-
|
|
2068
|
+
"version": "2.0.2",
|
|
2069
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz",
|
|
2070
|
+
"integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==",
|
|
2030
2071
|
"dev": true,
|
|
2031
2072
|
"license": "MIT",
|
|
2032
2073
|
"dependencies": {
|
|
@@ -2278,19 +2319,19 @@
|
|
|
2278
2319
|
}
|
|
2279
2320
|
},
|
|
2280
2321
|
"node_modules/eslint": {
|
|
2281
|
-
"version": "9.
|
|
2282
|
-
"resolved": "https://registry.npmjs.org/eslint/-/eslint-9.
|
|
2283
|
-
"integrity": "sha512-
|
|
2322
|
+
"version": "9.29.0",
|
|
2323
|
+
"resolved": "https://registry.npmjs.org/eslint/-/eslint-9.29.0.tgz",
|
|
2324
|
+
"integrity": "sha512-GsGizj2Y1rCWDu6XoEekL3RLilp0voSePurjZIkxL3wlm5o5EC9VpgaP7lrCvjnkuLvzFBQWB3vWB3K5KQTveQ==",
|
|
2284
2325
|
"dev": true,
|
|
2285
2326
|
"license": "MIT",
|
|
2286
2327
|
"dependencies": {
|
|
2287
2328
|
"@eslint-community/eslint-utils": "^4.2.0",
|
|
2288
2329
|
"@eslint-community/regexpp": "^4.12.1",
|
|
2289
|
-
"@eslint/config-array": "^0.20.
|
|
2330
|
+
"@eslint/config-array": "^0.20.1",
|
|
2290
2331
|
"@eslint/config-helpers": "^0.2.1",
|
|
2291
2332
|
"@eslint/core": "^0.14.0",
|
|
2292
2333
|
"@eslint/eslintrc": "^3.3.1",
|
|
2293
|
-
"@eslint/js": "9.
|
|
2334
|
+
"@eslint/js": "9.29.0",
|
|
2294
2335
|
"@eslint/plugin-kit": "^0.3.1",
|
|
2295
2336
|
"@humanfs/node": "^0.16.6",
|
|
2296
2337
|
"@humanwhocodes/module-importer": "^1.0.1",
|
|
@@ -2302,9 +2343,9 @@
|
|
|
2302
2343
|
"cross-spawn": "^7.0.6",
|
|
2303
2344
|
"debug": "^4.3.2",
|
|
2304
2345
|
"escape-string-regexp": "^4.0.0",
|
|
2305
|
-
"eslint-scope": "^8.
|
|
2306
|
-
"eslint-visitor-keys": "^4.2.
|
|
2307
|
-
"espree": "^10.
|
|
2346
|
+
"eslint-scope": "^8.4.0",
|
|
2347
|
+
"eslint-visitor-keys": "^4.2.1",
|
|
2348
|
+
"espree": "^10.4.0",
|
|
2308
2349
|
"esquery": "^1.5.0",
|
|
2309
2350
|
"esutils": "^2.0.2",
|
|
2310
2351
|
"fast-deep-equal": "^3.1.3",
|
|
@@ -2476,9 +2517,9 @@
|
|
|
2476
2517
|
}
|
|
2477
2518
|
},
|
|
2478
2519
|
"node_modules/eslint/node_modules/brace-expansion": {
|
|
2479
|
-
"version": "1.1.
|
|
2480
|
-
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.
|
|
2481
|
-
"integrity": "sha512-
|
|
2520
|
+
"version": "1.1.12",
|
|
2521
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
|
|
2522
|
+
"integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
|
|
2482
2523
|
"dev": true,
|
|
2483
2524
|
"license": "MIT",
|
|
2484
2525
|
"dependencies": {
|
|
@@ -4106,9 +4147,9 @@
|
|
|
4106
4147
|
"license": "MIT"
|
|
4107
4148
|
},
|
|
4108
4149
|
"node_modules/unrs-resolver": {
|
|
4109
|
-
"version": "1.
|
|
4110
|
-
"resolved": "https://registry.npmjs.org/unrs-resolver/-/unrs-resolver-1.
|
|
4111
|
-
"integrity": "sha512-
|
|
4150
|
+
"version": "1.9.0",
|
|
4151
|
+
"resolved": "https://registry.npmjs.org/unrs-resolver/-/unrs-resolver-1.9.0.tgz",
|
|
4152
|
+
"integrity": "sha512-wqaRu4UnzBD2ABTC1kLfBjAqIDZ5YUTr/MLGa7By47JV1bJDSW7jq/ZSLigB7enLe7ubNaJhtnBXgrc/50cEhg==",
|
|
4112
4153
|
"dev": true,
|
|
4113
4154
|
"hasInstallScript": true,
|
|
4114
4155
|
"license": "MIT",
|
|
@@ -4119,23 +4160,25 @@
|
|
|
4119
4160
|
"url": "https://opencollective.com/unrs-resolver"
|
|
4120
4161
|
},
|
|
4121
4162
|
"optionalDependencies": {
|
|
4122
|
-
"@unrs/resolver-binding-
|
|
4123
|
-
"@unrs/resolver-binding-
|
|
4124
|
-
"@unrs/resolver-binding-
|
|
4125
|
-
"@unrs/resolver-binding-
|
|
4126
|
-
"@unrs/resolver-binding-
|
|
4127
|
-
"@unrs/resolver-binding-linux-
|
|
4128
|
-
"@unrs/resolver-binding-linux-
|
|
4129
|
-
"@unrs/resolver-binding-linux-
|
|
4130
|
-
"@unrs/resolver-binding-linux-
|
|
4131
|
-
"@unrs/resolver-binding-linux-
|
|
4132
|
-
"@unrs/resolver-binding-linux-
|
|
4133
|
-
"@unrs/resolver-binding-linux-
|
|
4134
|
-
"@unrs/resolver-binding-linux-
|
|
4135
|
-
"@unrs/resolver-binding-
|
|
4136
|
-
"@unrs/resolver-binding-
|
|
4137
|
-
"@unrs/resolver-binding-
|
|
4138
|
-
"@unrs/resolver-binding-win32-
|
|
4163
|
+
"@unrs/resolver-binding-android-arm-eabi": "1.9.0",
|
|
4164
|
+
"@unrs/resolver-binding-android-arm64": "1.9.0",
|
|
4165
|
+
"@unrs/resolver-binding-darwin-arm64": "1.9.0",
|
|
4166
|
+
"@unrs/resolver-binding-darwin-x64": "1.9.0",
|
|
4167
|
+
"@unrs/resolver-binding-freebsd-x64": "1.9.0",
|
|
4168
|
+
"@unrs/resolver-binding-linux-arm-gnueabihf": "1.9.0",
|
|
4169
|
+
"@unrs/resolver-binding-linux-arm-musleabihf": "1.9.0",
|
|
4170
|
+
"@unrs/resolver-binding-linux-arm64-gnu": "1.9.0",
|
|
4171
|
+
"@unrs/resolver-binding-linux-arm64-musl": "1.9.0",
|
|
4172
|
+
"@unrs/resolver-binding-linux-ppc64-gnu": "1.9.0",
|
|
4173
|
+
"@unrs/resolver-binding-linux-riscv64-gnu": "1.9.0",
|
|
4174
|
+
"@unrs/resolver-binding-linux-riscv64-musl": "1.9.0",
|
|
4175
|
+
"@unrs/resolver-binding-linux-s390x-gnu": "1.9.0",
|
|
4176
|
+
"@unrs/resolver-binding-linux-x64-gnu": "1.9.0",
|
|
4177
|
+
"@unrs/resolver-binding-linux-x64-musl": "1.9.0",
|
|
4178
|
+
"@unrs/resolver-binding-wasm32-wasi": "1.9.0",
|
|
4179
|
+
"@unrs/resolver-binding-win32-arm64-msvc": "1.9.0",
|
|
4180
|
+
"@unrs/resolver-binding-win32-ia32-msvc": "1.9.0",
|
|
4181
|
+
"@unrs/resolver-binding-win32-x64-msvc": "1.9.0"
|
|
4139
4182
|
}
|
|
4140
4183
|
},
|
|
4141
4184
|
"node_modules/uri-js": {
|
package/package.json
CHANGED
package/src/main.ts
CHANGED
|
@@ -356,9 +356,6 @@ import * as DocumentLineMtRoutes from './modules/supply/documentLineMT/route.sch
|
|
|
356
356
|
import * as ChatSubscriber from './modules/user/chatSubscribers/interfaces';
|
|
357
357
|
import * as ChatSubscriberRoutes from './modules/user/chatSubscribers/route.schema';
|
|
358
358
|
|
|
359
|
-
import * as Tag from './modules/stock/tag/interface';
|
|
360
|
-
import * as TagRoutes from './modules/stock/tag/route.schema';
|
|
361
|
-
|
|
362
359
|
export {
|
|
363
360
|
shared,
|
|
364
361
|
// Errors,
|
|
@@ -680,8 +677,4 @@ export {
|
|
|
680
677
|
//chat_subscriber
|
|
681
678
|
ChatSubscriber,
|
|
682
679
|
ChatSubscriberRoutes,
|
|
683
|
-
|
|
684
|
-
//tag
|
|
685
|
-
Tag,
|
|
686
|
-
TagRoutes,
|
|
687
680
|
};
|
|
@@ -115,7 +115,7 @@ export interface IEntradaDeMaterialNC {
|
|
|
115
115
|
|
|
116
116
|
export interface IGetMaterialEntranceInfoResponse {
|
|
117
117
|
clientOrders: IEntradaDeMaterialClientOrder[];
|
|
118
|
-
stock: IEntradaDeMaterialStock;
|
|
118
|
+
stock: IEntradaDeMaterialStock[];
|
|
119
119
|
not_ok: IEntradaDeMaterialNC;
|
|
120
120
|
saved_id: string | null;
|
|
121
121
|
}
|
|
@@ -217,6 +217,7 @@ export interface IUpdateRequest {
|
|
|
217
217
|
is_archived?: boolean;
|
|
218
218
|
is_void?: boolean;
|
|
219
219
|
who_handles?: string | null;
|
|
220
|
+
tags?: string | null;
|
|
220
221
|
warning?: IWarningType;
|
|
221
222
|
created_by?: string;
|
|
222
223
|
}
|
|
@@ -266,6 +267,7 @@ export interface IFindResponse {
|
|
|
266
267
|
total: number;
|
|
267
268
|
emission_date: string;
|
|
268
269
|
line_count: number;
|
|
270
|
+
tags: string;
|
|
269
271
|
is_void: boolean;
|
|
270
272
|
is_archived: boolean;
|
|
271
273
|
adjudicado: boolean;
|
|
@@ -368,6 +370,7 @@ export interface IFindRmOpenDocuments {
|
|
|
368
370
|
document_header_id: string;
|
|
369
371
|
document_number: string;
|
|
370
372
|
identifier: string;
|
|
373
|
+
tags: string | null;
|
|
371
374
|
upfront_total: number | null;
|
|
372
375
|
who_handles: string | null;
|
|
373
376
|
document_lines: {
|
|
@@ -244,6 +244,7 @@ const updateBodyKeys: IShared.IRouteRequestWithStamps<IUpdateRequest> = {
|
|
|
244
244
|
is_archived: joi.boolean().optional(),
|
|
245
245
|
is_void: joi.boolean().optional(),
|
|
246
246
|
who_handles: joi.string().allow(null).optional(),
|
|
247
|
+
tags: joi.string().allow(null, '').optional(),
|
|
247
248
|
warning: joi
|
|
248
249
|
.string()
|
|
249
250
|
.optional()
|
|
@@ -15,9 +15,7 @@ const emailSchema = joi
|
|
|
15
15
|
.string()
|
|
16
16
|
.trim(true)
|
|
17
17
|
.lowercase()
|
|
18
|
-
.email({ tlds: { allow: false } })
|
|
19
|
-
.allow(null, '');
|
|
20
|
-
|
|
18
|
+
.email({ tlds: { allow: false } });
|
|
21
19
|
// create body validation
|
|
22
20
|
const createBodyKeys: IShared.IRouteRequest<ICreateRequest> = {
|
|
23
21
|
name: joi.string().allow(null, '').optional(),
|
|
@@ -6,7 +6,6 @@ import {
|
|
|
6
6
|
import { IBatchType, IPaymentOrigin } from '../../modules/supply/payment/interface';
|
|
7
7
|
import { IProductType } from '../../modules/stock/productGoogleSheets/interface';
|
|
8
8
|
import { IImageType } from '../../modules/stock/productImage/interface';
|
|
9
|
-
import { ITagType } from '../../modules/stock/tag/interface';
|
|
10
9
|
import { IQueryParameterDatatype } from '../../modules/stock/queryParameter/interfaces';
|
|
11
10
|
import {
|
|
12
11
|
IData,
|
|
@@ -343,6 +342,7 @@ export type DocumentHeader = {
|
|
|
343
342
|
is_void: boolean;
|
|
344
343
|
origin_id: string | null;
|
|
345
344
|
who_handles: string | null;
|
|
345
|
+
tags: string | null;
|
|
346
346
|
warning: string | null;
|
|
347
347
|
created_at: Date;
|
|
348
348
|
updated_at: Date;
|
|
@@ -1304,19 +1304,3 @@ export type DocumentLineMT = {
|
|
|
1304
1304
|
created_at: Date;
|
|
1305
1305
|
updated_at: Date;
|
|
1306
1306
|
};
|
|
1307
|
-
|
|
1308
|
-
/**
|
|
1309
|
-
* Model Tag
|
|
1310
|
-
*
|
|
1311
|
-
*/
|
|
1312
|
-
export type Tag = {
|
|
1313
|
-
id: string;
|
|
1314
|
-
text: string;
|
|
1315
|
-
index: number;
|
|
1316
|
-
type: ITagType;
|
|
1317
|
-
document_header_id: string;
|
|
1318
|
-
created_by: string;
|
|
1319
|
-
updated_by: string;
|
|
1320
|
-
created_at: Date;
|
|
1321
|
-
updated_at: Date;
|
|
1322
|
-
};
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import * as IShared from '../../../shared/interface';
|
|
2
|
-
import { Tag } from '../../../shared/entities/stock';
|
|
3
|
-
export type Entity = Tag;
|
|
4
|
-
export declare const Route = "tag";
|
|
5
|
-
export declare const UpperName = "Tag";
|
|
6
|
-
export declare const LowerName: string;
|
|
7
|
-
export declare const ITagTypeEnum: {
|
|
8
|
-
private: 'private';
|
|
9
|
-
public: 'public';
|
|
10
|
-
};
|
|
11
|
-
export type ITagType = (typeof ITagTypeEnum)[keyof typeof ITagTypeEnum];
|
|
12
|
-
export declare const ITagType: string[];
|
|
13
|
-
export type ICreateRequest = Omit<Entity, 'id' | 'created_at' | 'updated_at' | 'created_by' | 'updated_by'>;
|
|
14
|
-
export type IUpdateManyRequest = Pick<Entity, 'id' | 'index' | 'type'>;
|
|
15
|
-
export type IFindResponse = Omit<Entity, 'created_at' | 'updated_at'>;
|
|
16
|
-
export interface IRepository {
|
|
17
|
-
create(data: ICreateRequest): Promise<void>;
|
|
18
|
-
findByDocumentHeaderId(selector: IShared.IFindByIdRequest): Promise<IFindResponse[]>;
|
|
19
|
-
updateMany(data: IUpdateManyRequest[]): Promise<void>;
|
|
20
|
-
delete(selector: IShared.IFindByIdRequest): Promise<void>;
|
|
21
|
-
}
|
|
22
|
-
export type IController = IShared.IEntityWithUserToken<IRepository>;
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import * as IShared from '../../../shared/interface';
|
|
2
|
-
|
|
3
|
-
import { Tag } from '../../../shared/entities/stock';
|
|
4
|
-
|
|
5
|
-
export type Entity = Tag;
|
|
6
|
-
export const Route = 'tag';
|
|
7
|
-
export const UpperName = 'Tag';
|
|
8
|
-
export const LowerName = UpperName[0].toLowerCase() + UpperName.substring(1);
|
|
9
|
-
|
|
10
|
-
export const ITagTypeEnum: {
|
|
11
|
-
private: 'private';
|
|
12
|
-
public: 'public';
|
|
13
|
-
} = {
|
|
14
|
-
private: 'private',
|
|
15
|
-
public: 'public',
|
|
16
|
-
};
|
|
17
|
-
|
|
18
|
-
export type ITagType = (typeof ITagTypeEnum)[keyof typeof ITagTypeEnum];
|
|
19
|
-
|
|
20
|
-
export const ITagType = Object.keys(ITagTypeEnum);
|
|
21
|
-
|
|
22
|
-
export type ICreateRequest = Omit<
|
|
23
|
-
Entity,
|
|
24
|
-
'id' | 'created_at' | 'updated_at' | 'created_by' | 'updated_by'
|
|
25
|
-
>;
|
|
26
|
-
export type IUpdateManyRequest = Pick<Entity, 'id' | 'index' | 'type'>;
|
|
27
|
-
export type IFindResponse = Omit<Entity, 'created_at' | 'updated_at'>;
|
|
28
|
-
|
|
29
|
-
export interface IRepository {
|
|
30
|
-
create(data: ICreateRequest): Promise<void>;
|
|
31
|
-
findByDocumentHeaderId(selector: IShared.IFindByIdRequest): Promise<IFindResponse[]>;
|
|
32
|
-
updateMany(data: IUpdateManyRequest[]): Promise<void>;
|
|
33
|
-
delete(selector: IShared.IFindByIdRequest): Promise<void>;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
export type IController = IShared.IEntityWithUserToken<IRepository>;
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import joi from 'joi';
|
|
2
|
-
import { messages } from '../../../shared/messages';
|
|
3
|
-
import * as IShared from '../../../shared/interface';
|
|
4
|
-
import { ICreateRequest, IUpdateManyRequest, ITagType } from './interface';
|
|
5
|
-
|
|
6
|
-
// create body validation
|
|
7
|
-
const createBodyKeys: IShared.IRouteRequest<ICreateRequest> = {
|
|
8
|
-
document_header_id: joi.string().uuid().required(),
|
|
9
|
-
index: joi.number().allow(0).required(),
|
|
10
|
-
text: joi.string().required(),
|
|
11
|
-
type: joi
|
|
12
|
-
.string()
|
|
13
|
-
.valid(...ITagType)
|
|
14
|
-
.required(),
|
|
15
|
-
};
|
|
16
|
-
export const createBody = joi.object().keys(createBodyKeys).messages(messages);
|
|
17
|
-
|
|
18
|
-
// update body validation
|
|
19
|
-
const updateManyBodyKeys: IShared.IRouteRequest<IUpdateManyRequest> = {
|
|
20
|
-
id: joi.string().uuid().required(),
|
|
21
|
-
index: joi.number().allow(0).optional(),
|
|
22
|
-
type: joi
|
|
23
|
-
.string()
|
|
24
|
-
.valid(...ITagType)
|
|
25
|
-
.optional(),
|
|
26
|
-
};
|
|
27
|
-
export const updateManyBody = joi
|
|
28
|
-
.array()
|
|
29
|
-
.items(joi.object().keys(updateManyBodyKeys))
|
|
30
|
-
.messages(messages);
|