@contractspec/module.notifications 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/browser/contracts/index.js +4 -4
- package/dist/browser/index.js +5 -5
- package/dist/browser/notifications.capability.js +4 -1
- package/dist/browser/notifications.feature.js +1 -1
- package/dist/channels/index.d.ts +0 -1
- package/dist/contracts/index.d.ts +7 -8
- 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/contracts/index.js +4 -4
- package/dist/node/index.js +5 -5
- package/dist/node/notifications.capability.js +4 -1
- package/dist/node/notifications.feature.js +1 -1
- package/dist/notifications.capability.d.ts +1 -2
- package/dist/notifications.capability.js +4 -1
- package/dist/notifications.feature.d.ts +1 -2
- package/dist/notifications.feature.js +1 -1
- package/dist/templates/index.d.ts +0 -1
- package/package.json +6 -6
- package/dist/channels/index.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/notifications.capability.d.ts.map +0 -1
- package/dist/notifications.feature.d.ts.map +0 -1
- package/dist/templates/index.d.ts.map +0 -1
|
@@ -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.notifications"];
|
|
9
9
|
var NotificationStatusSchemaEnum = defineEnum("NotificationStatus", [
|
|
10
10
|
"PENDING",
|
package/dist/browser/index.js
CHANGED
|
@@ -115,12 +115,12 @@ function createChannelRegistry() {
|
|
|
115
115
|
}
|
|
116
116
|
|
|
117
117
|
// src/contracts/index.ts
|
|
118
|
+
import { defineCommand, defineQuery } from "@contractspec/lib.contracts-spec";
|
|
118
119
|
import {
|
|
119
|
-
|
|
120
|
-
|
|
120
|
+
ScalarTypeEnum,
|
|
121
|
+
defineEnum,
|
|
121
122
|
defineSchemaModel
|
|
122
|
-
} from "@contractspec/lib.
|
|
123
|
-
import { ScalarTypeEnum, defineEnum } from "@contractspec/lib.schema";
|
|
123
|
+
} from "@contractspec/lib.schema";
|
|
124
124
|
var OWNERS = ["platform.notifications"];
|
|
125
125
|
var NotificationStatusSchemaEnum = defineEnum("NotificationStatus", [
|
|
126
126
|
"PENDING",
|
|
@@ -791,7 +791,7 @@ var MentionTemplate = defineTemplate({
|
|
|
791
791
|
});
|
|
792
792
|
|
|
793
793
|
// src/notifications.feature.ts
|
|
794
|
-
import { defineFeature } from "@contractspec/lib.contracts";
|
|
794
|
+
import { defineFeature } from "@contractspec/lib.contracts-spec";
|
|
795
795
|
var NotificationsFeature = defineFeature({
|
|
796
796
|
meta: {
|
|
797
797
|
key: "notifications",
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
// src/notifications.capability.ts
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
defineCapability,
|
|
4
|
+
StabilityEnum
|
|
5
|
+
} from "@contractspec/lib.contracts-spec";
|
|
3
6
|
var NotificationsCapability = defineCapability({
|
|
4
7
|
meta: {
|
|
5
8
|
key: "notifications",
|
package/dist/channels/index.d.ts
CHANGED
|
@@ -233,7 +233,7 @@ export declare const UpdatePreferencesInputModel: import("@contractspec/lib.sche
|
|
|
233
233
|
/**
|
|
234
234
|
* Send a notification.
|
|
235
235
|
*/
|
|
236
|
-
export declare const SendNotificationContract: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
236
|
+
export declare const SendNotificationContract: import("@contractspec/lib.contracts-spec").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
237
237
|
userId: {
|
|
238
238
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
239
239
|
isOptional: false;
|
|
@@ -364,7 +364,7 @@ export declare const SendNotificationContract: import("@contractspec/lib.contrac
|
|
|
364
364
|
/**
|
|
365
365
|
* List notifications for current user.
|
|
366
366
|
*/
|
|
367
|
-
export declare const ListNotificationsContract: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
367
|
+
export declare const ListNotificationsContract: import("@contractspec/lib.contracts-spec").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
368
368
|
status: {
|
|
369
369
|
type: import("@contractspec/lib.schema").EnumType<[string, string, string]>;
|
|
370
370
|
isOptional: true;
|
|
@@ -443,7 +443,7 @@ export declare const ListNotificationsContract: import("@contractspec/lib.contra
|
|
|
443
443
|
/**
|
|
444
444
|
* Mark notification as read.
|
|
445
445
|
*/
|
|
446
|
-
export declare const MarkNotificationReadContract: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
446
|
+
export declare const MarkNotificationReadContract: import("@contractspec/lib.contracts-spec").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
447
447
|
notificationId: {
|
|
448
448
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
449
449
|
isOptional: false;
|
|
@@ -494,7 +494,7 @@ export declare const MarkNotificationReadContract: import("@contractspec/lib.con
|
|
|
494
494
|
/**
|
|
495
495
|
* Mark all notifications as read.
|
|
496
496
|
*/
|
|
497
|
-
export declare const MarkAllNotificationsReadContract: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").AnySchemaModel, import("@contractspec/lib.schema").SchemaModel<{
|
|
497
|
+
export declare const MarkAllNotificationsReadContract: import("@contractspec/lib.contracts-spec").OperationSpec<import("@contractspec/lib.schema").AnySchemaModel, import("@contractspec/lib.schema").SchemaModel<{
|
|
498
498
|
markedCount: {
|
|
499
499
|
type: import("@contractspec/lib.schema").FieldType<number, number>;
|
|
500
500
|
isOptional: false;
|
|
@@ -503,7 +503,7 @@ export declare const MarkAllNotificationsReadContract: import("@contractspec/lib
|
|
|
503
503
|
/**
|
|
504
504
|
* Get notification preferences.
|
|
505
505
|
*/
|
|
506
|
-
export declare const GetNotificationPreferencesContract: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").AnySchemaModel, import("@contractspec/lib.schema").SchemaModel<{
|
|
506
|
+
export declare const GetNotificationPreferencesContract: import("@contractspec/lib.contracts-spec").OperationSpec<import("@contractspec/lib.schema").AnySchemaModel, import("@contractspec/lib.schema").SchemaModel<{
|
|
507
507
|
userId: {
|
|
508
508
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
509
509
|
isOptional: false;
|
|
@@ -544,7 +544,7 @@ export declare const GetNotificationPreferencesContract: import("@contractspec/l
|
|
|
544
544
|
/**
|
|
545
545
|
* Update notification preferences.
|
|
546
546
|
*/
|
|
547
|
-
export declare const UpdateNotificationPreferencesContract: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
547
|
+
export declare const UpdateNotificationPreferencesContract: import("@contractspec/lib.contracts-spec").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
548
548
|
globalEnabled: {
|
|
549
549
|
type: import("@contractspec/lib.schema").FieldType<boolean, boolean>;
|
|
550
550
|
isOptional: true;
|
|
@@ -618,7 +618,7 @@ export declare const UpdateNotificationPreferencesContract: import("@contractspe
|
|
|
618
618
|
/**
|
|
619
619
|
* Delete a notification.
|
|
620
620
|
*/
|
|
621
|
-
export declare const DeleteNotificationContract: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
621
|
+
export declare const DeleteNotificationContract: import("@contractspec/lib.contracts-spec").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
|
|
622
622
|
notificationId: {
|
|
623
623
|
type: import("@contractspec/lib.schema").FieldType<string, string>;
|
|
624
624
|
isOptional: false;
|
|
@@ -629,4 +629,3 @@ export declare const DeleteNotificationContract: import("@contractspec/lib.contr
|
|
|
629
629
|
isOptional: false;
|
|
630
630
|
};
|
|
631
631
|
}>, undefined>;
|
|
632
|
-
//# 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.notifications"];
|
|
10
10
|
var NotificationStatusSchemaEnum = defineEnum("NotificationStatus", [
|
|
11
11
|
"PENDING",
|
package/dist/entities/index.d.ts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -116,12 +116,12 @@ function createChannelRegistry() {
|
|
|
116
116
|
}
|
|
117
117
|
|
|
118
118
|
// src/contracts/index.ts
|
|
119
|
+
import { defineCommand, defineQuery } from "@contractspec/lib.contracts-spec";
|
|
119
120
|
import {
|
|
120
|
-
|
|
121
|
-
|
|
121
|
+
ScalarTypeEnum,
|
|
122
|
+
defineEnum,
|
|
122
123
|
defineSchemaModel
|
|
123
|
-
} from "@contractspec/lib.
|
|
124
|
-
import { ScalarTypeEnum, defineEnum } from "@contractspec/lib.schema";
|
|
124
|
+
} from "@contractspec/lib.schema";
|
|
125
125
|
var OWNERS = ["platform.notifications"];
|
|
126
126
|
var NotificationStatusSchemaEnum = defineEnum("NotificationStatus", [
|
|
127
127
|
"PENDING",
|
|
@@ -792,7 +792,7 @@ var MentionTemplate = defineTemplate({
|
|
|
792
792
|
});
|
|
793
793
|
|
|
794
794
|
// src/notifications.feature.ts
|
|
795
|
-
import { defineFeature } from "@contractspec/lib.contracts";
|
|
795
|
+
import { defineFeature } from "@contractspec/lib.contracts-spec";
|
|
796
796
|
var NotificationsFeature = defineFeature({
|
|
797
797
|
meta: {
|
|
798
798
|
key: "notifications",
|
|
@@ -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.notifications"];
|
|
9
9
|
var NotificationStatusSchemaEnum = defineEnum("NotificationStatus", [
|
|
10
10
|
"PENDING",
|
package/dist/node/index.js
CHANGED
|
@@ -115,12 +115,12 @@ function createChannelRegistry() {
|
|
|
115
115
|
}
|
|
116
116
|
|
|
117
117
|
// src/contracts/index.ts
|
|
118
|
+
import { defineCommand, defineQuery } from "@contractspec/lib.contracts-spec";
|
|
118
119
|
import {
|
|
119
|
-
|
|
120
|
-
|
|
120
|
+
ScalarTypeEnum,
|
|
121
|
+
defineEnum,
|
|
121
122
|
defineSchemaModel
|
|
122
|
-
} from "@contractspec/lib.
|
|
123
|
-
import { ScalarTypeEnum, defineEnum } from "@contractspec/lib.schema";
|
|
123
|
+
} from "@contractspec/lib.schema";
|
|
124
124
|
var OWNERS = ["platform.notifications"];
|
|
125
125
|
var NotificationStatusSchemaEnum = defineEnum("NotificationStatus", [
|
|
126
126
|
"PENDING",
|
|
@@ -791,7 +791,7 @@ var MentionTemplate = defineTemplate({
|
|
|
791
791
|
});
|
|
792
792
|
|
|
793
793
|
// src/notifications.feature.ts
|
|
794
|
-
import { defineFeature } from "@contractspec/lib.contracts";
|
|
794
|
+
import { defineFeature } from "@contractspec/lib.contracts-spec";
|
|
795
795
|
var NotificationsFeature = defineFeature({
|
|
796
796
|
meta: {
|
|
797
797
|
key: "notifications",
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
// src/notifications.capability.ts
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
defineCapability,
|
|
4
|
+
StabilityEnum
|
|
5
|
+
} from "@contractspec/lib.contracts-spec";
|
|
3
6
|
var NotificationsCapability = defineCapability({
|
|
4
7
|
meta: {
|
|
5
8
|
key: "notifications",
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export declare const NotificationsCapability: import("@contractspec/lib.contracts").CapabilitySpec;
|
|
2
|
-
//# sourceMappingURL=notifications.capability.d.ts.map
|
|
1
|
+
export declare const NotificationsCapability: import("@contractspec/lib.contracts-spec").CapabilitySpec;
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
// src/notifications.capability.ts
|
|
3
|
-
import {
|
|
3
|
+
import {
|
|
4
|
+
defineCapability,
|
|
5
|
+
StabilityEnum
|
|
6
|
+
} from "@contractspec/lib.contracts-spec";
|
|
4
7
|
var NotificationsCapability = defineCapability({
|
|
5
8
|
meta: {
|
|
6
9
|
key: "notifications",
|
|
@@ -2,5 +2,4 @@
|
|
|
2
2
|
* Notifications feature module that bundles notification sending,
|
|
3
3
|
* listing, marking as read, and preference management capabilities.
|
|
4
4
|
*/
|
|
5
|
-
export declare const NotificationsFeature: import("@contractspec/lib.contracts").FeatureModuleSpec;
|
|
6
|
-
//# sourceMappingURL=notifications.feature.d.ts.map
|
|
5
|
+
export declare const NotificationsFeature: import("@contractspec/lib.contracts-spec").FeatureModuleSpec;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/module.notifications",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "Notification center module for ContractSpec applications",
|
|
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":"index.d.ts","sourceRoot":"","sources":["../../src/channels/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/contracts/index.ts"],"names":[],"mappings":"AA6BA,eAAO,MAAM,sBAAsB,uEAIjC,CAAC;AAIH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmB5B,CAAC;AAEH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAuBtC,CAAC;AAEH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkBrC,CAAC;AAEH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;EAiBtC,CAAC;AAEH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAYvC,CAAC;AAEH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmBtC,CAAC;AAIH;;GAEG;AACH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA0CnC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAkBpC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cA0BvC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,gCAAgC;;;;;cAuB3C,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAkB7C,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,qCAAqC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAkBhD,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,0BAA0B;;;;;;;;;;cA+BrC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/entities/index.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,0BAA0B,CAAC;AAEzE;;GAEG;AACH,eAAO,MAAM,sBAAsB,kDAYjC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,uBAAuB,kDAKlC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;EAyF7B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,wBAAwB,kDAKnC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;EAyCrC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;EA6CvC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;EAoC5B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAKhC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,+BAA+B,EAAE,wBAQ7C,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,YAAY,CAAC;AAG3B,cAAc,aAAa,CAAC;AAG5B,cAAc,yBAAyB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"notifications.capability.d.ts","sourceRoot":"","sources":["../src/notifications.capability.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,uBAAuB,sDAUlC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"notifications.feature.d.ts","sourceRoot":"","sources":["../src/notifications.feature.ts"],"names":[],"mappings":"AAOA;;;GAGG;AACH,eAAO,MAAM,oBAAoB,yDAqC/B,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/templates/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC/B,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,QAAQ,GAAG,QAAQ,GAAG,SAAS,GAAG,MAAM,GAAG,KAAK,CAAC;IACvD,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC;IACpC,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED;;GAEG;AACH,MAAM,WAAW,sBAAsB;IACrC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED;;GAEG;AACH,MAAM,WAAW,8BAA8B;IAC7C,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,gBAAgB,EAAE,CAAC;IAC/B,eAAe,CAAC,EAAE,MAAM,EAAE,CAAC;IAC3B,QAAQ,EAAE;QACR,KAAK,CAAC,EAAE,sBAAsB,CAAC;QAC/B,KAAK,CAAC,EAAE,sBAAsB,CAAC;QAC/B,IAAI,CAAC,EAAE,sBAAsB,CAAC;QAC9B,OAAO,CAAC,EAAE,sBAAsB,CAAC;KAClC,CAAC;CACH;AAED;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE;QACN,OAAO,EAAE,MAAM,CAAC;QAChB,IAAI,EAAE,MAAM,CAAC;QACb,IAAI,EAAE,MAAM,CAAC;KACd,CAAC;CACH;AAED;;GAEG;AACH,wBAAgB,cAAc,CAC5B,GAAG,EAAE,8BAA8B,GAClC,8BAA8B,CAEhC;AAED;;GAEG;AACH,wBAAgB,cAAc,CAC5B,OAAO,EAAE,MAAM,EACf,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GACjC,MAAM,CAQR;AAED;;GAEG;AACH,wBAAgB,0BAA0B,CACxC,QAAQ,EAAE,8BAA8B,EACxC,OAAO,EAAE,MAAM,8BAA8B,CAAC,UAAU,CAAC,EACzD,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GACjC,oBAAoB,GAAG,IAAI,CAgC7B;AAYD;;GAEG;AACH,qBAAa,gBAAgB;IAC3B,OAAO,CAAC,SAAS,CAAqD;IAEtE,QAAQ,CAAC,QAAQ,EAAE,8BAA8B,GAAG,IAAI;IAIxD,GAAG,CAAC,UAAU,EAAE,MAAM,GAAG,8BAA8B,GAAG,SAAS;IAInE,MAAM,IAAI,8BAA8B,EAAE;IAI1C,aAAa,CAAC,QAAQ,EAAE,MAAM,GAAG,8BAA8B,EAAE;CAGlE;AAED;;GAEG;AACH,wBAAgB,sBAAsB,IAAI,gBAAgB,CAEzD;AAID;;GAEG;AACH,eAAO,MAAM,eAAe,gCA0B1B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,iBAAiB,gCA4B5B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,eAAe,gCAuB1B,CAAC"}
|