@aldb2b/common 1.0.846 → 1.0.852
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/build/db/CustomModel.d.ts +0 -25
- package/build/db/MongooseBase.d.ts +0 -25
- package/build/db/aggregate/AggregateConvertor.d.ts +0 -25
- package/build/db/auditTrail/interfaces/Audit-trail-input.interface.d.ts +1 -1
- package/build/entities/interfaces/connection-dictionary.interface.d.ts +0 -25
- package/build/entities/models/common/common.provider.d.ts +5 -30
- package/build/entities/models/common/common.provider.js +5 -5
- package/build/entities/models/common/common.provider.js.map +1 -1
- package/build/entities/models/common/controllers/audit-trail.controller.js +2 -2
- package/build/entities/models/common/controllers/audit-trail.controller.js.map +1 -1
- package/build/entities/models/common/entities/audit-trail.entity.d.ts +0 -25
- package/build/entities/models/companies/companies.provider.d.ts +49 -26
- package/build/entities/models/companies/companies.provider.js +66 -1
- package/build/entities/models/companies/companies.provider.js.map +1 -1
- package/build/entities/models/companies/dto/update-company-statistics.dto.d.ts +10 -0
- package/build/{types/enddpoint.interface.js → entities/models/companies/dto/update-company-statistics.dto.js} +1 -1
- package/build/entities/models/companies/dto/update-company-statistics.dto.js.map +1 -0
- package/build/entities/models/companies/entities/companies/company-statistic-entity.enum.d.ts +5 -0
- package/build/entities/models/companies/entities/companies/company-statistic-entity.enum.js +10 -0
- package/build/entities/models/companies/entities/companies/company-statistic-entity.enum.js.map +1 -0
- package/build/entities/models/companies/entities/companies/company-statistic-type.enum.d.ts +4 -0
- package/build/entities/models/companies/entities/companies/company-statistic-type.enum.js +9 -0
- package/build/entities/models/companies/entities/companies/company-statistic-type.enum.js.map +1 -0
- package/build/entities/models/companies/entities/companies/company-statistic.entity.d.ts +44 -0
- package/build/entities/models/companies/entities/companies/company-statistic.entity.js +60 -0
- package/build/entities/models/companies/entities/companies/company-statistic.entity.js.map +1 -0
- package/build/entities/models/companies/entities/companies/company.entity.d.ts +50 -0
- package/build/entities/models/companies/entities/{company.entity.js → companies/company.entity.js} +12 -5
- package/build/entities/models/companies/entities/companies/company.entity.js.map +1 -0
- package/build/entities/models/companies/entities/companies/index.d.ts +4 -0
- package/build/entities/models/companies/entities/companies/index.js +21 -0
- package/build/entities/models/companies/entities/companies/index.js.map +1 -0
- package/build/entities/models/companies/entities/contact.entity.d.ts +1 -26
- package/build/entities/models/companies/index.d.ts +3 -1
- package/build/entities/models/companies/index.js +3 -1
- package/build/entities/models/companies/index.js.map +1 -1
- package/build/entities/models/companies/repositories/company-common.repository.d.ts +7 -0
- package/build/entities/models/companies/repositories/company-common.repository.js +12 -0
- package/build/entities/models/companies/repositories/company-common.repository.js.map +1 -0
- package/build/entities/models/companies/services/company-common.service.d.ts +19 -0
- package/build/entities/models/companies/services/company-common.service.js +96 -0
- package/build/entities/models/companies/services/company-common.service.js.map +1 -0
- package/build/entities/models/events/entities/event/event.entity.d.ts +0 -25
- package/build/entities/models/events/entities/eventProfile/company-profile-item.entity.d.ts +0 -25
- package/build/entities/models/events/entities/eventProfile/event-profile.entity.d.ts +0 -25
- package/build/entities/models/events/entities/eventType/event-type.entity.d.ts +0 -25
- package/build/entities/models/events/entities/timestamp.entity.d.ts +0 -25
- package/build/entities/models/events/events.provider.d.ts +0 -25
- package/build/entities/models/meetings/entities/meetingRequests/meeting-request.entity.d.ts +0 -25
- package/build/entities/models/meetings/entities/meetingRequests/rejected-contact.entity.d.ts +0 -25
- package/build/entities/models/meetings/entities/meetings/meeting.entity.d.ts +0 -25
- package/build/entities/models/meetings/entities/userAvailabilities/user-availability-timeslot.entity.d.ts +0 -25
- package/build/entities/models/meetings/entities/userAvailabilities/user-availability.entity.d.ts +0 -25
- package/build/entities/models/meetings/index.d.ts +2 -0
- package/build/entities/models/meetings/index.js +2 -0
- package/build/entities/models/meetings/index.js.map +1 -1
- package/build/entities/models/meetings/meetings.provider.d.ts +0 -25
- package/build/entities/models/meetings/repositories/meeting-common.repository.d.ts +9 -0
- package/build/entities/models/meetings/repositories/meeting-common.repository.js +43 -0
- package/build/entities/models/meetings/repositories/meeting-common.repository.js.map +1 -0
- package/build/entities/models/meetings/repositories/meeting-request-common.repository.d.ts +9 -0
- package/build/entities/models/meetings/repositories/meeting-request-common.repository.js +43 -0
- package/build/entities/models/meetings/repositories/meeting-request-common.repository.js.map +1 -0
- package/build/entities/models/model.providers.d.ts +47 -28
- package/build/entities/models/model.providers.js +2 -0
- package/build/entities/models/model.providers.js.map +1 -1
- package/build/entities/models/subscriptions/entities/companySubscriptions/company-subscription-status.enum.d.ts +8 -0
- package/build/entities/models/subscriptions/entities/companySubscriptions/company-subscription-status.enum.js +13 -0
- package/build/entities/models/subscriptions/entities/companySubscriptions/company-subscription-status.enum.js.map +1 -0
- package/build/entities/models/subscriptions/entities/companySubscriptions/company-subscription-user-status.enum.d.ts +4 -0
- package/build/entities/models/subscriptions/entities/companySubscriptions/company-subscription-user-status.enum.js +9 -0
- package/build/entities/models/subscriptions/entities/companySubscriptions/company-subscription-user-status.enum.js.map +1 -0
- package/build/entities/models/subscriptions/entities/companySubscriptions/company-subscription-user.entity.d.ts +41 -0
- package/build/entities/models/subscriptions/entities/companySubscriptions/company-subscription-user.entity.js +49 -0
- package/build/entities/models/subscriptions/entities/companySubscriptions/company-subscription-user.entity.js.map +1 -0
- package/build/entities/models/subscriptions/entities/companySubscriptions/company-subscription.entity.d.ts +55 -0
- package/build/entities/models/subscriptions/entities/companySubscriptions/company-subscription.entity.js +133 -0
- package/build/entities/models/subscriptions/entities/companySubscriptions/company-subscription.entity.js.map +1 -0
- package/build/entities/models/subscriptions/entities/companySubscriptions/index.d.ts +4 -0
- package/build/entities/models/subscriptions/entities/companySubscriptions/index.js +21 -0
- package/build/entities/models/subscriptions/entities/companySubscriptions/index.js.map +1 -0
- package/build/entities/models/subscriptions/entities/eventSubscriptions/event-subscription-status.enum.d.ts +6 -0
- package/build/entities/models/subscriptions/entities/eventSubscriptions/event-subscription-status.enum.js +11 -0
- package/build/entities/models/subscriptions/entities/eventSubscriptions/event-subscription-status.enum.js.map +1 -0
- package/build/entities/models/subscriptions/entities/eventSubscriptions/event-subscription.entity.d.ts +50 -0
- package/build/entities/models/subscriptions/entities/eventSubscriptions/event-subscription.entity.js +112 -0
- package/build/entities/models/subscriptions/entities/eventSubscriptions/event-subscription.entity.js.map +1 -0
- package/build/entities/models/subscriptions/entities/eventSubscriptions/index.d.ts +2 -0
- package/build/entities/models/subscriptions/entities/eventSubscriptions/index.js +19 -0
- package/build/entities/models/subscriptions/entities/eventSubscriptions/index.js.map +1 -0
- package/build/entities/models/subscriptions/entities/features/endpoint.entity.d.ts +40 -0
- package/build/entities/models/subscriptions/entities/features/endpoint.entity.js +32 -0
- package/build/entities/models/subscriptions/entities/features/endpoint.entity.js.map +1 -0
- package/build/entities/models/subscriptions/entities/features/feature.entity.d.ts +44 -0
- package/build/entities/models/subscriptions/entities/features/feature.entity.js +77 -0
- package/build/entities/models/subscriptions/entities/features/feature.entity.js.map +1 -0
- package/build/entities/models/subscriptions/entities/features/index.d.ts +2 -0
- package/build/entities/models/subscriptions/entities/features/index.js +19 -0
- package/build/entities/models/subscriptions/entities/features/index.js.map +1 -0
- package/build/entities/models/subscriptions/entities/subscriptionLogs/index.d.ts +1 -0
- package/build/entities/models/subscriptions/entities/subscriptionLogs/index.js +18 -0
- package/build/entities/models/subscriptions/entities/subscriptionLogs/index.js.map +1 -0
- package/build/entities/models/subscriptions/entities/subscriptionLogs/subscription-log.entity.d.ts +51 -0
- package/build/entities/models/subscriptions/entities/subscriptionLogs/subscription-log.entity.js +132 -0
- package/build/entities/models/subscriptions/entities/subscriptionLogs/subscription-log.entity.js.map +1 -0
- package/build/entities/models/subscriptions/index.d.ts +5 -0
- package/build/entities/models/subscriptions/index.js +22 -0
- package/build/entities/models/subscriptions/index.js.map +1 -0
- package/build/entities/models/subscriptions/repositories/company-subscription-common.repository.d.ts +7 -0
- package/build/entities/models/subscriptions/repositories/company-subscription-common.repository.js +12 -0
- package/build/entities/models/subscriptions/repositories/company-subscription-common.repository.js.map +1 -0
- package/build/entities/models/subscriptions/repositories/event-subscription-common.repository.d.ts +7 -0
- package/build/entities/models/subscriptions/repositories/event-subscription-common.repository.js +12 -0
- package/build/entities/models/subscriptions/repositories/event-subscription-common.repository.js.map +1 -0
- package/build/entities/models/subscriptions/repositories/index.d.ts +3 -0
- package/build/entities/models/subscriptions/repositories/index.js +20 -0
- package/build/entities/models/subscriptions/repositories/index.js.map +1 -0
- package/build/entities/models/subscriptions/repositories/subscription-log.repository.d.ts +7 -0
- package/build/entities/models/subscriptions/repositories/subscription-log.repository.js +12 -0
- package/build/entities/models/subscriptions/repositories/subscription-log.repository.js.map +1 -0
- package/build/entities/models/subscriptions/subscriptions.provider.d.ts +53 -0
- package/build/entities/models/subscriptions/subscriptions.provider.js +44 -0
- package/build/entities/models/subscriptions/subscriptions.provider.js.map +1 -0
- package/build/entities/models/users/entities/rolePermissions/permission.entity.d.ts +0 -25
- package/build/entities/models/users/entities/rolePermissions/role-permission.entity.d.ts +0 -25
- package/build/entities/models/users/entities/users/chat-info.entity.d.ts +0 -25
- package/build/entities/models/users/entities/users/event-info.entity.d.ts +0 -25
- package/build/entities/models/users/entities/users/location.entity.d.ts +0 -25
- package/build/entities/models/users/entities/users/user.entity.d.ts +0 -25
- package/build/entities/models/users/users.provider.d.ts +0 -25
- package/build/entities/mongoose.providers.d.ts +0 -25
- package/build/entities/mongoose.providers.js +4 -0
- package/build/entities/mongoose.providers.js.map +1 -1
- package/build/entities/services/generate-model.d.ts +0 -25
- package/build/entities/services/get-model-ref.d.ts +0 -25
- package/build/enums/database-connection.enum.d.ts +2 -1
- package/build/enums/database-connection.enum.js +1 -0
- package/build/enums/database-connection.enum.js.map +1 -1
- package/build/enums/database-model.enum.d.ts +5 -1
- package/build/enums/database-model.enum.js +4 -0
- package/build/enums/database-model.enum.js.map +1 -1
- package/build/enums/repository-provider.enum.d.ts +9 -0
- package/build/enums/repository-provider.enum.js +14 -0
- package/build/enums/repository-provider.enum.js.map +1 -0
- package/build/enums/request-method.enum.d.ts +7 -0
- package/build/enums/request-method.enum.js +12 -0
- package/build/enums/request-method.enum.js.map +1 -0
- package/build/enums/service-provider.enum.d.ts +4 -0
- package/build/enums/service-provider.enum.js +9 -0
- package/build/enums/service-provider.enum.js.map +1 -0
- package/build/index.d.ts +6 -5
- package/build/index.js +6 -5
- package/build/index.js.map +1 -1
- package/build/middlewares/inject-subscription.middleware.d.ts +15 -0
- package/build/middlewares/inject-subscription.middleware.js +219 -0
- package/build/middlewares/inject-subscription.middleware.js.map +1 -0
- package/build/middlewares/subscription-validator.middleware.js +4 -1
- package/build/middlewares/subscription-validator.middleware.js.map +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/build/utils/getEndpoint.d.ts +4 -4
- package/build/utils/getEndpoint.js.map +1 -1
- package/package.json +1 -1
- package/build/entities/models/companies/entities/company.entity.d.ts +0 -73
- package/build/entities/models/companies/entities/company.entity.js.map +0 -1
- package/build/enums/repository-provide.enum.d.ts +0 -3
- package/build/enums/repository-provide.enum.js +0 -8
- package/build/enums/repository-provide.enum.js.map +0 -1
- package/build/enums/service-provide.enum.d.ts +0 -3
- package/build/enums/service-provide.enum.js +0 -8
- package/build/enums/service-provide.enum.js.map +0 -1
- package/build/types/enddpoint.interface.d.ts +0 -10
- package/build/types/enddpoint.interface.js.map +0 -1
- package/build/types/feature.interface.d.ts +0 -10
- package/build/types/feature.interface.js +0 -3
- package/build/types/feature.interface.js.map +0 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { Feature } from '../
|
|
1
|
+
import { Endpoint, Feature } from '../entities/models/subscriptions';
|
|
2
2
|
export declare function getEndpoint(features: Feature[], method: string, path: string): {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
exceptionResp
|
|
3
|
+
feature?: Feature;
|
|
4
|
+
endpoint?: Endpoint;
|
|
5
|
+
exceptionResp?: any;
|
|
6
6
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getEndpoint.js","sourceRoot":"","sources":["../../src/utils/getEndpoint.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"getEndpoint.js","sourceRoot":"","sources":["../../src/utils/getEndpoint.ts"],"names":[],"mappings":";;;AACA,gEAA0D;AAE1D,SAAgB,WAAW,CACzB,QAAmB,EACnB,MAAc,EACd,IAAY;IAEZ,IAAI,eAAe,GAAG,SAAS,CAAA;IAC/B,IAAI,cAAc,GAAG,SAAS,CAAA;IAC9B,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE,CAAC;QAC/B,MAAM,eAAe,GAAG,iCAAc,CAAC,OAAO,CAAC,WAAW,CAAC,CAAA;QAC3D,IAAI,eAAe,IAAI,eAAe,CAAC,MAAM,EAAE,CAAC;YAC9C,MAAM,OAAO,GAAG,eAAe,CAAC,SAAS,CAAC,CAAC,OAAO,EAAE,EAAE;gBACpD,OAAO,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAA;YAC/B,CAAC,CAAC,CAAA;YACF,IAAI,OAAO,GAAG,CAAC,CAAC,EAAE,CAAC;gBACjB,cAAc,GAAG,OAAO,CAAA;gBACxB,MAAM,QAAQ,GAAG,OAAO,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,EAAE;oBACnD,OAAO,CACL,QAAQ,CAAC,MAAM,KAAK,MAAM;wBAC1B,CAAC,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC;4BAC3B,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC,CAAC,CACnD,CAAA;gBACH,CAAC,CAAC,CAAA;gBAEF,IAAI,QAAQ,EAAE,CAAC;oBACb,eAAe,GAAG,QAAQ,CAAA;oBAC1B,MAAK;gBACP,CAAC;YACH,CAAC;QACH,CAAC;IACH,CAAC;IAED,IAAI,aAAa,GAAG,SAAS,CAAA;IAC7B,IAAI,CAAC,cAAc,EAAE,CAAC;QACpB,aAAa,GAAG;YACd,IAAI,EAAE,OAAO;YACb,UAAU,EAAE,GAAG;YACf,OAAO,EAAE,mBAAmB;YAC5B,KAAK,EAAE,WAAW;YAClB,WAAW,EAAE,kCAAkC;SAChD,CAAA;IACH,CAAC;SAAM,IAAI,cAAc,CAAC,QAAQ,KAAK,KAAK,EAAE,CAAC;QAC7C,aAAa,GAAG;YACd,IAAI,EAAE,OAAO;YACb,UAAU,EAAE,GAAG;YACf,OAAO,EAAE,kBAAkB;YAC3B,KAAK,EAAE,WAAW;YAClB,WAAW,EAAE,kCAAkC;SAChD,CAAA;IACH,CAAC;IAED,OAAO;QACL,QAAQ,EAAE,eAAe;QACzB,OAAO,EAAE,cAAc;QACvB,aAAa;KACd,CAAA;AACH,CAAC;AAvDD,kCAuDC"}
|
package/package.json
CHANGED
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
/// <reference types="mongoose/types/aggregate" />
|
|
2
|
-
/// <reference types="mongoose/types/callback" />
|
|
3
|
-
/// <reference types="mongoose/types/collection" />
|
|
4
|
-
/// <reference types="mongoose/types/connection" />
|
|
5
|
-
/// <reference types="mongoose/types/cursor" />
|
|
6
|
-
/// <reference types="mongoose/types/document" />
|
|
7
|
-
/// <reference types="mongoose/types/error" />
|
|
8
|
-
/// <reference types="mongoose/types/expressions" />
|
|
9
|
-
/// <reference types="mongoose/types/helpers" />
|
|
10
|
-
/// <reference types="mongoose/types/middlewares" />
|
|
11
|
-
/// <reference types="mongoose/types/indexes" />
|
|
12
|
-
/// <reference types="mongoose/types/models" />
|
|
13
|
-
/// <reference types="mongoose/types/mongooseoptions" />
|
|
14
|
-
/// <reference types="mongoose/types/pipelinestage" />
|
|
15
|
-
/// <reference types="mongoose/types/populate" />
|
|
16
|
-
/// <reference types="mongoose/types/query" />
|
|
17
|
-
/// <reference types="mongoose/types/schemaoptions" />
|
|
18
|
-
/// <reference types="mongoose/types/schematypes" />
|
|
19
|
-
/// <reference types="mongoose/types/session" />
|
|
20
|
-
/// <reference types="mongoose/types/types" />
|
|
21
|
-
/// <reference types="mongoose/types/utility" />
|
|
22
|
-
/// <reference types="mongoose/types/validation" />
|
|
23
|
-
/// <reference types="mongoose/types/virtuals" />
|
|
24
|
-
/// <reference types="@aldb2b/common/node_modules/mongoose/types/aggregate" />
|
|
25
|
-
/// <reference types="@aldb2b/common/node_modules/mongoose/types/callback" />
|
|
26
|
-
/// <reference types="@aldb2b/common/node_modules/mongoose/types/collection" />
|
|
27
|
-
/// <reference types="@aldb2b/common/node_modules/mongoose/types/connection" />
|
|
28
|
-
/// <reference types="@aldb2b/common/node_modules/mongoose/types/cursor" />
|
|
29
|
-
/// <reference types="@aldb2b/common/node_modules/mongoose/types/document" />
|
|
30
|
-
/// <reference types="@aldb2b/common/node_modules/mongoose/types/error" />
|
|
31
|
-
/// <reference types="@aldb2b/common/node_modules/mongoose/types/expressions" />
|
|
32
|
-
/// <reference types="@aldb2b/common/node_modules/mongoose/types/helpers" />
|
|
33
|
-
/// <reference types="@aldb2b/common/node_modules/mongoose/types/middlewares" />
|
|
34
|
-
/// <reference types="@aldb2b/common/node_modules/mongoose/types/indexes" />
|
|
35
|
-
/// <reference types="@aldb2b/common/node_modules/mongoose/types/models" />
|
|
36
|
-
/// <reference types="@aldb2b/common/node_modules/mongoose/types/mongooseoptions" />
|
|
37
|
-
/// <reference types="@aldb2b/common/node_modules/mongoose/types/pipelinestage" />
|
|
38
|
-
/// <reference types="@aldb2b/common/node_modules/mongoose/types/populate" />
|
|
39
|
-
/// <reference types="@aldb2b/common/node_modules/mongoose/types/query" />
|
|
40
|
-
/// <reference types="@aldb2b/common/node_modules/mongoose/types/schemaoptions" />
|
|
41
|
-
/// <reference types="@aldb2b/common/node_modules/mongoose/types/schematypes" />
|
|
42
|
-
/// <reference types="@aldb2b/common/node_modules/mongoose/types/session" />
|
|
43
|
-
/// <reference types="@aldb2b/common/node_modules/mongoose/types/types" />
|
|
44
|
-
/// <reference types="@aldb2b/common/node_modules/mongoose/types/utility" />
|
|
45
|
-
/// <reference types="@aldb2b/common/node_modules/mongoose/types/validation" />
|
|
46
|
-
/// <reference types="@aldb2b/common/node_modules/mongoose/types/virtuals" />
|
|
47
|
-
/// <reference types="@aldb2b/common/node_modules/mongoose" />
|
|
48
|
-
/// <reference types="mongoose/types/inferschematype" />
|
|
49
|
-
/// <reference types="mongoose/types/inferrawdoctype" />
|
|
50
|
-
/// <reference types="@aldb2b/common/node_modules/mongoose/types/inferschematype" />
|
|
51
|
-
import { Contact } from './contact.entity';
|
|
52
|
-
import { Event } from '../../events';
|
|
53
|
-
import { Connection } from 'mongoose';
|
|
54
|
-
import { CustomModel } from '../../../../db/CustomModel';
|
|
55
|
-
import { CompanyOrder } from '../../../../enums/company-order.enum';
|
|
56
|
-
export type CompanyModel = CustomModel<Company>;
|
|
57
|
-
export declare class Company {
|
|
58
|
-
_id: string;
|
|
59
|
-
eventId: Event;
|
|
60
|
-
contacts: Contact[];
|
|
61
|
-
name: string;
|
|
62
|
-
website: string;
|
|
63
|
-
industry?: string;
|
|
64
|
-
ABCompanyUrl?: string;
|
|
65
|
-
tel?: string;
|
|
66
|
-
email?: string;
|
|
67
|
-
mobile?: string;
|
|
68
|
-
logo?: string;
|
|
69
|
-
userType: CompanyOrder;
|
|
70
|
-
}
|
|
71
|
-
export declare const companyFactory: (connection: Connection, eventConnection: Connection) => import("mongoose").Model<Company, {}, {}, {}, import("mongoose").Document<unknown, {}, Company> & Company & Required<{
|
|
72
|
-
_id: string;
|
|
73
|
-
}>, any>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"company.entity.js","sourceRoot":"","sources":["../../../../../src/entities/models/companies/entities/company.entity.ts"],"names":[],"mappings":";;;AAEA,uCAA6C;AAC7C,8FAA0F;AAC1F,kFAA8E;AAC9E,mEAA6D;AAC7D,iFAA4E;AAE5E,6EAAmE;AACnE,MAAM,QAAQ,GAAG,iBAAM,CAAC,KAAK,CAAC,QAAQ,CAAA;AAItC,MAAa,OAAO;CAanB;AAbD,0BAaC;AAEM,MAAM,cAAc,GAAG,CAC5B,UAAsB,EACtB,eAA2B,EAC3B,EAAE;IACF,MAAM,aAAa,GAAG,IAAI,iBAAM,CAAwB;QACtD,OAAO,EAAE;YACP,IAAI,EAAE,QAAQ;YACd,GAAG,EAAE,IAAA,2BAAW,EAAoB,OAAO,EAAE,eAAe,CAAC;SAC9D;QACD,QAAQ,EAAE;YACR;gBACE,IAAI,EAAE,QAAQ;gBACd,GAAG,EAAE,IAAA,2BAAW,EAAwB,SAAS,EAAE,UAAU,CAAC;aAC/D;SACF;QACD,IAAI,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE;QACtC,OAAO,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE;QACzC,QAAQ,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,IAAI,EAAE;QACtC,YAAY,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,IAAI,EAAE;QAC1C,GAAG,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,IAAI,EAAE;QACjC,KAAK,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,IAAI,EAAE;QACnC,MAAM,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,IAAI,EAAE;QACpC,IAAI,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,IAAI,EAAE;QAClC,QAAQ,EAAE;YACR,IAAI,EAAE,MAAM;YACZ,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC,iCAAY,CAAC;SAClC;KACF,CAAC,CAAA;IAEF,MAAM,uBAAuB,GAAG;QAC9B,KAAK;QACL,SAAS;QACT,UAAU;QACV,MAAM;QACN,SAAS;QACT,UAAU;QACV,cAAc;QACd,KAAK;QACL,OAAO;QACP,QAAQ;QACR,MAAM;QACN,UAAU;KACX,CAAA;IAED,aAAa,CAAC,OAAO,CAAC,wBAAwB,GAAG,CAAC,sBAAsB,EAAE,EAAE,CAC1E,IAAA,mDAAwB,EAAC,uBAAuB,EAAE,sBAAsB,CAAC,CAAA;IAE3E,aAAa,CAAC,OAAO,CAAC,kBAAkB,GAAG,CAAC,wBAAwB,EAAE,EAAE,CACtE,IAAA,uCAAkB,EAAC,uBAAuB,EAAE,wBAAwB,CAAC,CAAA;IAEvE,OAAO,IAAA,8BAAa,EAClB,SAAS,EACT,UAAU,EACV,aAAa,CACd,CAAA;AACH,CAAC,CAAA;AAvDY,QAAA,cAAc,kBAuD1B"}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.RepositoryProvide = void 0;
|
|
4
|
-
var RepositoryProvide;
|
|
5
|
-
(function (RepositoryProvide) {
|
|
6
|
-
RepositoryProvide["AUDIT_TRAIL_REPOSITORY"] = "AuditTrailRepository";
|
|
7
|
-
})(RepositoryProvide || (exports.RepositoryProvide = RepositoryProvide = {}));
|
|
8
|
-
//# sourceMappingURL=repository-provide.enum.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"repository-provide.enum.js","sourceRoot":"","sources":["../../src/enums/repository-provide.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,iBAEX;AAFD,WAAY,iBAAiB;IAC3B,oEAA+C,CAAA;AACjD,CAAC,EAFW,iBAAiB,iCAAjB,iBAAiB,QAE5B"}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ServiceProvide = void 0;
|
|
4
|
-
var ServiceProvide;
|
|
5
|
-
(function (ServiceProvide) {
|
|
6
|
-
ServiceProvide["AUDIT_TRAIL_SERVICE"] = "AuditTrailService";
|
|
7
|
-
})(ServiceProvide || (exports.ServiceProvide = ServiceProvide = {}));
|
|
8
|
-
//# sourceMappingURL=service-provide.enum.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"service-provide.enum.js","sourceRoot":"","sources":["../../src/enums/service-provide.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,cAEX;AAFD,WAAY,cAAc;IACxB,2DAAyC,CAAA;AAC3C,CAAC,EAFW,cAAc,8BAAd,cAAc,QAEzB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"enddpoint.interface.js","sourceRoot":"","sources":["../../src/types/enddpoint.interface.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"feature.interface.js","sourceRoot":"","sources":["../../src/types/feature.interface.ts"],"names":[],"mappings":""}
|