@contractspec/module.audit-trail 1.62.0 → 2.0.0
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/audit-trail.capability.d.ts +1 -2
- package/dist/audit-trail.capability.js +4 -1
- package/dist/audit-trail.feature.d.ts +1 -2
- package/dist/audit-trail.feature.js +1 -1
- package/dist/browser/audit-trail.capability.js +4 -1
- package/dist/browser/audit-trail.feature.js +1 -1
- package/dist/browser/contracts/index.js +4 -4
- package/dist/browser/index.js +5 -5
- package/dist/contracts/index.d.ts +5 -6
- package/dist/contracts/index.js +4 -4
- package/dist/entities/index.d.ts +0 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +5 -5
- package/dist/node/audit-trail.capability.js +4 -1
- package/dist/node/audit-trail.feature.js +1 -1
- package/dist/node/contracts/index.js +4 -4
- package/dist/node/index.js +5 -5
- package/dist/storage/index.d.ts +0 -1
- package/package.json +6 -6
- package/dist/audit-trail.capability.d.ts.map +0 -1
- package/dist/audit-trail.feature.d.ts.map +0 -1
- package/dist/contracts/index.d.ts.map +0 -1
- package/dist/entities/index.d.ts.map +0 -1
- package/dist/index.d.ts.map +0 -1
- package/dist/storage/index.d.ts.map +0 -1
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export declare const AuditTrailCapability: import("@contractspec/lib.contracts").CapabilitySpec;
|
|
2
|
-
//# sourceMappingURL=audit-trail.capability.d.ts.map
|
|
1
|
+
export declare const AuditTrailCapability: import("@contractspec/lib.contracts-spec").CapabilitySpec;
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
// src/audit-trail.capability.ts
|
|
3
|
-
import {
|
|
3
|
+
import {
|
|
4
|
+
defineCapability,
|
|
5
|
+
StabilityEnum
|
|
6
|
+
} from "@contractspec/lib.contracts-spec";
|
|
4
7
|
var AuditTrailCapability = defineCapability({
|
|
5
8
|
meta: {
|
|
6
9
|
key: "audit-trail",
|
|
@@ -2,5 +2,4 @@
|
|
|
2
2
|
* Audit Trail feature module that bundles audit log querying,
|
|
3
3
|
* export, and statistics capabilities.
|
|
4
4
|
*/
|
|
5
|
-
export declare const AuditTrailFeature: import("@contractspec/lib.contracts").FeatureModuleSpec;
|
|
6
|
-
//# sourceMappingURL=audit-trail.feature.d.ts.map
|
|
5
|
+
export declare const AuditTrailFeature: import("@contractspec/lib.contracts-spec").FeatureModuleSpec;
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
// src/audit-trail.capability.ts
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
defineCapability,
|
|
4
|
+
StabilityEnum
|
|
5
|
+
} from "@contractspec/lib.contracts-spec";
|
|
3
6
|
var AuditTrailCapability = defineCapability({
|
|
4
7
|
meta: {
|
|
5
8
|
key: "audit-trail",
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
// src/contracts/index.ts
|
|
2
|
+
import { defineCommand, defineQuery } from "@contractspec/lib.contracts-spec";
|
|
2
3
|
import {
|
|
3
|
-
|
|
4
|
-
|
|
4
|
+
ScalarTypeEnum,
|
|
5
|
+
defineEnum,
|
|
5
6
|
defineSchemaModel
|
|
6
|
-
} from "@contractspec/lib.
|
|
7
|
-
import { ScalarTypeEnum, defineEnum } from "@contractspec/lib.schema";
|
|
7
|
+
} from "@contractspec/lib.schema";
|
|
8
8
|
var OWNERS = ["platform.audit-trail"];
|
|
9
9
|
var AuditLogModel = defineSchemaModel({
|
|
10
10
|
name: "AuditLog",
|
package/dist/browser/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// src/audit-trail.feature.ts
|
|
2
|
-
import { defineFeature } from "@contractspec/lib.contracts";
|
|
2
|
+
import { defineFeature } from "@contractspec/lib.contracts-spec";
|
|
3
3
|
var AuditTrailFeature = defineFeature({
|
|
4
4
|
meta: {
|
|
5
5
|
key: "audit-trail",
|
|
@@ -29,12 +29,12 @@ var AuditTrailFeature = defineFeature({
|
|
|
29
29
|
});
|
|
30
30
|
|
|
31
31
|
// src/contracts/index.ts
|
|
32
|
+
import { defineCommand, defineQuery } from "@contractspec/lib.contracts-spec";
|
|
32
33
|
import {
|
|
33
|
-
|
|
34
|
-
|
|
34
|
+
ScalarTypeEnum,
|
|
35
|
+
defineEnum,
|
|
35
36
|
defineSchemaModel
|
|
36
|
-
} from "@contractspec/lib.
|
|
37
|
-
import { ScalarTypeEnum, defineEnum } from "@contractspec/lib.schema";
|
|
37
|
+
} from "@contractspec/lib.schema";
|
|
38
38
|
var OWNERS = ["platform.audit-trail"];
|
|
39
39
|
var AuditLogModel = defineSchemaModel({
|
|
40
40
|
name: "AuditLog",
|
|
@@ -247,7 +247,7 @@ export declare const AuditStatsOutputModel: import("@contractspec/lib.schema").S
|
|
|
247
247
|
/**
|
|
248
248
|
* Query audit logs.
|
|
249
249
|
*/
|
|
250
|
-
export declare const QueryAuditLogsContract: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
250
|
+
export declare const QueryAuditLogsContract: import("@contractspec/lib.contracts-spec").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
251
251
|
eventName: {
|
|
252
252
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
253
253
|
isOptional: true;
|
|
@@ -365,7 +365,7 @@ export declare const QueryAuditLogsContract: import("@contractspec/lib.contracts
|
|
|
365
365
|
/**
|
|
366
366
|
* Get audit log by ID.
|
|
367
367
|
*/
|
|
368
|
-
export declare const GetAuditLogContract: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
368
|
+
export declare const GetAuditLogContract: import("@contractspec/lib.contracts-spec").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
369
369
|
logId: {
|
|
370
370
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
371
371
|
isOptional: false;
|
|
@@ -431,7 +431,7 @@ export declare const GetAuditLogContract: import("@contractspec/lib.contracts").
|
|
|
431
431
|
/**
|
|
432
432
|
* Get audit logs by trace ID.
|
|
433
433
|
*/
|
|
434
|
-
export declare const GetAuditTraceContract: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
434
|
+
export declare const GetAuditTraceContract: import("@contractspec/lib.contracts-spec").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
435
435
|
traceId: {
|
|
436
436
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
437
437
|
isOptional: false;
|
|
@@ -503,7 +503,7 @@ export declare const GetAuditTraceContract: import("@contractspec/lib.contracts"
|
|
|
503
503
|
/**
|
|
504
504
|
* Export audit logs.
|
|
505
505
|
*/
|
|
506
|
-
export declare const ExportAuditLogsContract: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
506
|
+
export declare const ExportAuditLogsContract: import("@contractspec/lib.contracts-spec").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
507
507
|
orgId: {
|
|
508
508
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
509
509
|
isOptional: false;
|
|
@@ -543,7 +543,7 @@ export declare const ExportAuditLogsContract: import("@contractspec/lib.contract
|
|
|
543
543
|
/**
|
|
544
544
|
* Get audit statistics.
|
|
545
545
|
*/
|
|
546
|
-
export declare const GetAuditStatsContract: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
546
|
+
export declare const GetAuditStatsContract: import("@contractspec/lib.contracts-spec").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
547
547
|
orgId: {
|
|
548
548
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
549
549
|
isOptional: true;
|
|
@@ -574,4 +574,3 @@ export declare const GetAuditStatsContract: import("@contractspec/lib.contracts"
|
|
|
574
574
|
isOptional: false;
|
|
575
575
|
};
|
|
576
576
|
}>, undefined>;
|
|
577
|
-
//# sourceMappingURL=index.d.ts.map
|
package/dist/contracts/index.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
// src/contracts/index.ts
|
|
3
|
+
import { defineCommand, defineQuery } from "@contractspec/lib.contracts-spec";
|
|
3
4
|
import {
|
|
4
|
-
|
|
5
|
-
|
|
5
|
+
ScalarTypeEnum,
|
|
6
|
+
defineEnum,
|
|
6
7
|
defineSchemaModel
|
|
7
|
-
} from "@contractspec/lib.
|
|
8
|
-
import { ScalarTypeEnum, defineEnum } from "@contractspec/lib.schema";
|
|
8
|
+
} from "@contractspec/lib.schema";
|
|
9
9
|
var OWNERS = ["platform.audit-trail"];
|
|
10
10
|
var AuditLogModel = defineSchemaModel({
|
|
11
11
|
name: "AuditLog",
|
package/dist/entities/index.d.ts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
// src/audit-trail.feature.ts
|
|
3
|
-
import { defineFeature } from "@contractspec/lib.contracts";
|
|
3
|
+
import { defineFeature } from "@contractspec/lib.contracts-spec";
|
|
4
4
|
var AuditTrailFeature = defineFeature({
|
|
5
5
|
meta: {
|
|
6
6
|
key: "audit-trail",
|
|
@@ -30,12 +30,12 @@ var AuditTrailFeature = defineFeature({
|
|
|
30
30
|
});
|
|
31
31
|
|
|
32
32
|
// src/contracts/index.ts
|
|
33
|
+
import { defineCommand, defineQuery } from "@contractspec/lib.contracts-spec";
|
|
33
34
|
import {
|
|
34
|
-
|
|
35
|
-
|
|
35
|
+
ScalarTypeEnum,
|
|
36
|
+
defineEnum,
|
|
36
37
|
defineSchemaModel
|
|
37
|
-
} from "@contractspec/lib.
|
|
38
|
-
import { ScalarTypeEnum, defineEnum } from "@contractspec/lib.schema";
|
|
38
|
+
} from "@contractspec/lib.schema";
|
|
39
39
|
var OWNERS = ["platform.audit-trail"];
|
|
40
40
|
var AuditLogModel = defineSchemaModel({
|
|
41
41
|
name: "AuditLog",
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
// src/audit-trail.capability.ts
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
defineCapability,
|
|
4
|
+
StabilityEnum
|
|
5
|
+
} from "@contractspec/lib.contracts-spec";
|
|
3
6
|
var AuditTrailCapability = defineCapability({
|
|
4
7
|
meta: {
|
|
5
8
|
key: "audit-trail",
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
// src/contracts/index.ts
|
|
2
|
+
import { defineCommand, defineQuery } from "@contractspec/lib.contracts-spec";
|
|
2
3
|
import {
|
|
3
|
-
|
|
4
|
-
|
|
4
|
+
ScalarTypeEnum,
|
|
5
|
+
defineEnum,
|
|
5
6
|
defineSchemaModel
|
|
6
|
-
} from "@contractspec/lib.
|
|
7
|
-
import { ScalarTypeEnum, defineEnum } from "@contractspec/lib.schema";
|
|
7
|
+
} from "@contractspec/lib.schema";
|
|
8
8
|
var OWNERS = ["platform.audit-trail"];
|
|
9
9
|
var AuditLogModel = defineSchemaModel({
|
|
10
10
|
name: "AuditLog",
|
package/dist/node/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// src/audit-trail.feature.ts
|
|
2
|
-
import { defineFeature } from "@contractspec/lib.contracts";
|
|
2
|
+
import { defineFeature } from "@contractspec/lib.contracts-spec";
|
|
3
3
|
var AuditTrailFeature = defineFeature({
|
|
4
4
|
meta: {
|
|
5
5
|
key: "audit-trail",
|
|
@@ -29,12 +29,12 @@ var AuditTrailFeature = defineFeature({
|
|
|
29
29
|
});
|
|
30
30
|
|
|
31
31
|
// src/contracts/index.ts
|
|
32
|
+
import { defineCommand, defineQuery } from "@contractspec/lib.contracts-spec";
|
|
32
33
|
import {
|
|
33
|
-
|
|
34
|
-
|
|
34
|
+
ScalarTypeEnum,
|
|
35
|
+
defineEnum,
|
|
35
36
|
defineSchemaModel
|
|
36
|
-
} from "@contractspec/lib.
|
|
37
|
-
import { ScalarTypeEnum, defineEnum } from "@contractspec/lib.schema";
|
|
37
|
+
} from "@contractspec/lib.schema";
|
|
38
38
|
var OWNERS = ["platform.audit-trail"];
|
|
39
39
|
var AuditLogModel = defineSchemaModel({
|
|
40
40
|
name: "AuditLog",
|
package/dist/storage/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/module.audit-trail",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "Audit trail module for tracking and querying system events",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"contractspec",
|
|
@@ -27,15 +27,15 @@
|
|
|
27
27
|
"typecheck": "tsc --noEmit"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@contractspec/lib.schema": "
|
|
31
|
-
"@contractspec/lib.contracts": "
|
|
32
|
-
"@contractspec/lib.bus": "
|
|
30
|
+
"@contractspec/lib.schema": "2.0.0",
|
|
31
|
+
"@contractspec/lib.contracts-spec": "2.0.0",
|
|
32
|
+
"@contractspec/lib.bus": "2.0.0",
|
|
33
33
|
"zod": "^4.3.5"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@contractspec/tool.typescript": "
|
|
36
|
+
"@contractspec/tool.typescript": "2.0.0",
|
|
37
37
|
"typescript": "^5.9.3",
|
|
38
|
-
"@contractspec/tool.bun": "
|
|
38
|
+
"@contractspec/tool.bun": "2.0.0"
|
|
39
39
|
},
|
|
40
40
|
"exports": {
|
|
41
41
|
".": {
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"audit-trail.capability.d.ts","sourceRoot":"","sources":["../src/audit-trail.capability.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,oBAAoB,sDAU/B,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"audit-trail.feature.d.ts","sourceRoot":"","sources":["../src/audit-trail.feature.ts"],"names":[],"mappings":"AAOA;;;GAGG;AACH,eAAO,MAAM,iBAAiB,yDAkC5B,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/contracts/index.ts"],"names":[],"mappings":"AAWA,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmBxB,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAuB/B,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQhC,CAAC;AAEH,eAAO,MAAM,gBAAgB,uEAI3B,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;EAchC,CAAC;AAEH,eAAO,MAAM,gBAAgB,+EAK3B,CAAC;AAEH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;EAQjC,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;EAQ/B,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;EAShC,CAAC;AAIH;;GAEG;AACH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAkBjC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAuB9B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cA4BhC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAkBlC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAkBhC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/entities/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,0BAA0B,CAAC;AAEzE;;GAEG;AACH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;EAqFzB,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;EA+BhC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAA0C,CAAC;AAE1E;;GAEG;AACH,eAAO,MAAM,4BAA4B,EAAE,wBAG1C,CAAC"}
|
package/dist/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,cAAc,YAAY,CAAC;AAG3B,cAAc,aAAa,CAAC;AAG5B,cAAc,WAAW,CAAC;AAG1B,cAAc,uBAAuB,CAAC;AAGtC,YAAY,EACV,WAAW,EACX,YAAY,EACZ,iBAAiB,GAClB,MAAM,uBAAuB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/storage/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,WAAW,EACX,iBAAiB,EACjB,YAAY,EACb,MAAM,uBAAuB,CAAC;AAE/B;;GAEG;AACH,MAAM,WAAW,yBAA0B,SAAQ,iBAAiB;IAClE,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,YAAY,GAAG,YAAY,CAAC;IACtC,QAAQ,CAAC,EAAE,KAAK,GAAG,MAAM,CAAC;CAC3B;AAED;;GAEG;AACH,MAAM,WAAW,mBAAoB,SAAQ,YAAY;IACvD,gDAAgD;IAChD,KAAK,CAAC,OAAO,EAAE,yBAAyB,GAAG,OAAO,CAAC,WAAW,EAAE,CAAC,CAAC;IAClE,6BAA6B;IAC7B,KAAK,CACH,OAAO,EAAE,IAAI,CAAC,yBAAyB,EAAE,OAAO,GAAG,QAAQ,CAAC,GAC3D,OAAO,CAAC,MAAM,CAAC,CAAC;IACnB,gCAAgC;IAChC,OAAO,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,WAAW,GAAG,IAAI,CAAC,CAAC;IACjD,kCAAkC;IAClC,YAAY,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,WAAW,EAAE,CAAC,CAAC;IACtD,yCAAyC;IACzC,eAAe,CAAC,IAAI,EAAE,IAAI,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;CAC9C;AAED;;GAEG;AACH,qBAAa,oBAAqB,YAAW,mBAAmB;IAC9D,OAAO,CAAC,OAAO,CAAqB;IAE9B,KAAK,CAAC,MAAM,EAAE,WAAW,GAAG,OAAO,CAAC,IAAI,CAAC;IAIzC,KAAK,CAAC,OAAO,EAAE,yBAAyB,GAAG,OAAO,CAAC,WAAW,EAAE,CAAC;IAiEjE,KAAK,CACT,OAAO,EAAE,IAAI,CAAC,yBAAyB,EAAE,OAAO,GAAG,QAAQ,CAAC,GAC3D,OAAO,CAAC,MAAM,CAAC;IAKZ,OAAO,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,WAAW,GAAG,IAAI,CAAC;IAIhD,YAAY,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,WAAW,EAAE,CAAC;IAIrD,eAAe,CAAC,IAAI,EAAE,IAAI,GAAG,OAAO,CAAC,MAAM,CAAC;IAMlD;;OAEG;IACH,MAAM,IAAI,WAAW,EAAE;IAIvB;;OAEG;IACH,KAAK,IAAI,IAAI;CAGd;AAED;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC,iCAAiC;IACjC,gBAAgB,EAAE,MAAM,CAAC;IACzB,kDAAkD;IAClD,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,2CAA2C;IAC3C,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B;AAED;;GAEG;AACH,qBAAa,eAAe;IACd,OAAO,CAAC,QAAQ,CAAC,MAAM;gBAAN,MAAM,EAAE,qBAAqB;IAE1D;;OAEG;IACH,YAAY,IAAI,IAAI;IAMpB;;OAEG;IACH,gBAAgB,IAAI,IAAI,GAAG,IAAI;IAO/B;;OAEG;IACG,KAAK,CAAC,OAAO,EAAE,mBAAmB,GAAG,OAAO,CAAC;QACjD,YAAY,EAAE,MAAM,CAAC;KACtB,CAAC;CAKH;AAED;;GAEG;AACH,wBAAgB,0BAA0B,IAAI,oBAAoB,CAEjE"}
|