@contractspec/example.team-hub 1.57.0 → 1.58.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.
Files changed (138) hide show
  1. package/dist/announcement/announcement.operations.d.ts +50 -56
  2. package/dist/announcement/announcement.operations.d.ts.map +1 -1
  3. package/dist/announcement/announcement.operations.js +70 -51
  4. package/dist/announcement/announcement.schema.d.ts +50 -55
  5. package/dist/announcement/announcement.schema.d.ts.map +1 -1
  6. package/dist/announcement/announcement.schema.js +29 -71
  7. package/dist/announcement/index.d.ts +6 -3
  8. package/dist/announcement/index.d.ts.map +1 -0
  9. package/dist/announcement/index.js +73 -3
  10. package/dist/browser/announcement/announcement.operations.js +71 -0
  11. package/dist/browser/announcement/announcement.schema.js +30 -0
  12. package/dist/browser/announcement/index.js +73 -0
  13. package/dist/browser/docs/index.js +94 -0
  14. package/dist/browser/docs/team-hub.docblock.js +94 -0
  15. package/dist/browser/entities/index.js +231 -0
  16. package/dist/browser/events.js +134 -0
  17. package/dist/browser/example.js +42 -0
  18. package/dist/browser/handlers/index.js +5 -0
  19. package/dist/browser/index.js +642 -0
  20. package/dist/browser/presentations/index.js +131 -0
  21. package/dist/browser/presentations/team-hub.presentation.js +131 -0
  22. package/dist/browser/presentations.js +148 -0
  23. package/dist/browser/ritual/index.js +124 -0
  24. package/dist/browser/ritual/ritual.operations.js +121 -0
  25. package/dist/browser/ritual/ritual.schema.js +41 -0
  26. package/dist/browser/space/index.js +66 -0
  27. package/dist/browser/space/space.operations.js +64 -0
  28. package/dist/browser/space/space.schema.js +27 -0
  29. package/dist/browser/task/index.js +171 -0
  30. package/dist/browser/task/task.operations.js +168 -0
  31. package/dist/browser/task/task.schema.js +40 -0
  32. package/dist/browser/team-hub.capability.js +40 -0
  33. package/dist/browser/team-hub.feature.js +69 -0
  34. package/dist/docs/index.d.ts +2 -1
  35. package/dist/docs/index.d.ts.map +1 -0
  36. package/dist/docs/index.js +95 -1
  37. package/dist/docs/team-hub.docblock.d.ts +2 -1
  38. package/dist/docs/team-hub.docblock.d.ts.map +1 -0
  39. package/dist/docs/team-hub.docblock.js +45 -56
  40. package/dist/entities/index.d.ts +138 -143
  41. package/dist/entities/index.d.ts.map +1 -1
  42. package/dist/entities/index.js +221 -252
  43. package/dist/events.d.ts +217 -223
  44. package/dist/events.d.ts.map +1 -1
  45. package/dist/events.js +122 -201
  46. package/dist/example.d.ts +2 -6
  47. package/dist/example.d.ts.map +1 -1
  48. package/dist/example.js +41 -55
  49. package/dist/handlers/index.d.ts +1 -4
  50. package/dist/handlers/index.d.ts.map +1 -1
  51. package/dist/handlers/index.js +5 -8
  52. package/dist/index.d.ts +12 -15
  53. package/dist/index.d.ts.map +1 -0
  54. package/dist/index.js +642 -15
  55. package/dist/node/announcement/announcement.operations.js +71 -0
  56. package/dist/node/announcement/announcement.schema.js +30 -0
  57. package/dist/node/announcement/index.js +73 -0
  58. package/dist/node/docs/index.js +94 -0
  59. package/dist/node/docs/team-hub.docblock.js +94 -0
  60. package/dist/node/entities/index.js +231 -0
  61. package/dist/node/events.js +134 -0
  62. package/dist/node/example.js +42 -0
  63. package/dist/node/handlers/index.js +5 -0
  64. package/dist/node/index.js +642 -0
  65. package/dist/node/presentations/index.js +131 -0
  66. package/dist/node/presentations/team-hub.presentation.js +131 -0
  67. package/dist/node/presentations.js +148 -0
  68. package/dist/node/ritual/index.js +124 -0
  69. package/dist/node/ritual/ritual.operations.js +121 -0
  70. package/dist/node/ritual/ritual.schema.js +41 -0
  71. package/dist/node/space/index.js +66 -0
  72. package/dist/node/space/space.operations.js +64 -0
  73. package/dist/node/space/space.schema.js +27 -0
  74. package/dist/node/task/index.js +171 -0
  75. package/dist/node/task/task.operations.js +168 -0
  76. package/dist/node/task/task.schema.js +40 -0
  77. package/dist/node/team-hub.capability.js +40 -0
  78. package/dist/node/team-hub.feature.js +69 -0
  79. package/dist/presentations/index.d.ts +2 -2
  80. package/dist/presentations/index.d.ts.map +1 -0
  81. package/dist/presentations/index.js +132 -3
  82. package/dist/presentations/team-hub.presentation.d.ts +6 -11
  83. package/dist/presentations/team-hub.presentation.d.ts.map +1 -1
  84. package/dist/presentations/team-hub.presentation.js +126 -125
  85. package/dist/presentations.d.ts +7 -11
  86. package/dist/presentations.d.ts.map +1 -1
  87. package/dist/presentations.js +142 -147
  88. package/dist/ritual/index.d.ts +6 -3
  89. package/dist/ritual/index.d.ts.map +1 -0
  90. package/dist/ritual/index.js +124 -3
  91. package/dist/ritual/ritual.operations.d.ts +92 -98
  92. package/dist/ritual/ritual.operations.d.ts.map +1 -1
  93. package/dist/ritual/ritual.operations.js +119 -95
  94. package/dist/ritual/ritual.schema.d.ts +67 -72
  95. package/dist/ritual/ritual.schema.d.ts.map +1 -1
  96. package/dist/ritual/ritual.schema.js +39 -95
  97. package/dist/space/index.d.ts +6 -3
  98. package/dist/space/index.d.ts.map +1 -0
  99. package/dist/space/index.js +66 -3
  100. package/dist/space/space.operations.d.ts +38 -44
  101. package/dist/space/space.operations.d.ts.map +1 -1
  102. package/dist/space/space.operations.js +63 -50
  103. package/dist/space/space.schema.d.ts +38 -43
  104. package/dist/space/space.schema.d.ts.map +1 -1
  105. package/dist/space/space.schema.js +26 -59
  106. package/dist/task/index.d.ts +6 -3
  107. package/dist/task/index.d.ts.map +1 -0
  108. package/dist/task/index.js +171 -3
  109. package/dist/task/task.operations.d.ts +212 -218
  110. package/dist/task/task.operations.d.ts.map +1 -1
  111. package/dist/task/task.operations.js +163 -174
  112. package/dist/task/task.schema.d.ts +63 -68
  113. package/dist/task/task.schema.d.ts.map +1 -1
  114. package/dist/task/task.schema.js +38 -91
  115. package/dist/team-hub.capability.d.ts +3 -8
  116. package/dist/team-hub.capability.d.ts.map +1 -1
  117. package/dist/team-hub.capability.js +41 -38
  118. package/dist/team-hub.feature.d.ts +1 -6
  119. package/dist/team-hub.feature.d.ts.map +1 -1
  120. package/dist/team-hub.feature.js +68 -159
  121. package/package.json +261 -57
  122. package/dist/announcement/announcement.operations.js.map +0 -1
  123. package/dist/announcement/announcement.schema.js.map +0 -1
  124. package/dist/docs/team-hub.docblock.js.map +0 -1
  125. package/dist/entities/index.js.map +0 -1
  126. package/dist/events.js.map +0 -1
  127. package/dist/example.js.map +0 -1
  128. package/dist/handlers/index.js.map +0 -1
  129. package/dist/presentations/team-hub.presentation.js.map +0 -1
  130. package/dist/presentations.js.map +0 -1
  131. package/dist/ritual/ritual.operations.js.map +0 -1
  132. package/dist/ritual/ritual.schema.js.map +0 -1
  133. package/dist/space/space.operations.js.map +0 -1
  134. package/dist/space/space.schema.js.map +0 -1
  135. package/dist/task/task.operations.js.map +0 -1
  136. package/dist/task/task.schema.js.map +0 -1
  137. package/dist/team-hub.capability.js.map +0 -1
  138. package/dist/team-hub.feature.js.map +0 -1
@@ -1,230 +1,224 @@
1
- import * as _contractspec_lib_schema0 from "@contractspec/lib.schema";
2
- import * as _contractspec_lib_contracts0 from "@contractspec/lib.contracts";
3
-
4
- //#region src/task/task.operations.d.ts
5
- declare const ListTasksInputModel: _contractspec_lib_schema0.SchemaModel<{
6
- spaceId: {
7
- type: _contractspec_lib_schema0.FieldType<string, string>;
8
- isOptional: true;
9
- };
10
- status: {
11
- type: _contractspec_lib_schema0.FieldType<string, string>;
12
- isOptional: true;
13
- };
14
- assigneeId: {
15
- type: _contractspec_lib_schema0.FieldType<string, string>;
16
- isOptional: true;
17
- };
18
- limit: {
19
- type: _contractspec_lib_schema0.FieldType<number, number>;
20
- isOptional: true;
21
- };
22
- offset: {
23
- type: _contractspec_lib_schema0.FieldType<number, number>;
24
- isOptional: true;
25
- };
1
+ export declare const ListTasksInputModel: import("@contractspec/lib.schema").SchemaModel<{
2
+ spaceId: {
3
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
4
+ isOptional: true;
5
+ };
6
+ status: {
7
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
8
+ isOptional: true;
9
+ };
10
+ assigneeId: {
11
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
12
+ isOptional: true;
13
+ };
14
+ limit: {
15
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
16
+ isOptional: true;
17
+ };
18
+ offset: {
19
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
20
+ isOptional: true;
21
+ };
26
22
  }>;
27
- declare const ListTasksOutputModel: _contractspec_lib_schema0.SchemaModel<{
28
- tasks: {
29
- type: _contractspec_lib_schema0.SchemaModel<{
30
- id: {
31
- type: _contractspec_lib_schema0.FieldType<string, string>;
32
- isOptional: false;
33
- };
34
- spaceId: {
35
- type: _contractspec_lib_schema0.FieldType<string, string>;
36
- isOptional: false;
37
- };
38
- title: {
39
- type: _contractspec_lib_schema0.FieldType<string, string>;
40
- isOptional: false;
41
- };
42
- status: {
43
- type: _contractspec_lib_schema0.FieldType<string, string>;
44
- isOptional: false;
45
- };
46
- priority: {
47
- type: _contractspec_lib_schema0.FieldType<string, string>;
48
- isOptional: false;
49
- };
50
- assigneeId: {
51
- type: _contractspec_lib_schema0.FieldType<string, string>;
52
- isOptional: true;
53
- };
54
- dueDate: {
55
- type: _contractspec_lib_schema0.FieldType<Date, string>;
56
- isOptional: true;
57
- };
58
- }>;
59
- isOptional: false;
60
- isList: boolean;
61
- };
62
- total: {
63
- type: _contractspec_lib_schema0.FieldType<number, number>;
64
- isOptional: false;
65
- };
23
+ export declare const ListTasksOutputModel: import("@contractspec/lib.schema").SchemaModel<{
24
+ tasks: {
25
+ type: import("@contractspec/lib.schema").SchemaModel<{
26
+ id: {
27
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
28
+ isOptional: false;
29
+ };
30
+ spaceId: {
31
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
32
+ isOptional: false;
33
+ };
34
+ title: {
35
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
36
+ isOptional: false;
37
+ };
38
+ status: {
39
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
40
+ isOptional: false;
41
+ };
42
+ priority: {
43
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
44
+ isOptional: false;
45
+ };
46
+ assigneeId: {
47
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
48
+ isOptional: true;
49
+ };
50
+ dueDate: {
51
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
52
+ isOptional: true;
53
+ };
54
+ }>;
55
+ isOptional: false;
56
+ isList: boolean;
57
+ };
58
+ total: {
59
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
60
+ isOptional: false;
61
+ };
66
62
  }>;
67
- declare const ListTasksOperation: _contractspec_lib_contracts0.OperationSpec<_contractspec_lib_schema0.SchemaModel<{
68
- spaceId: {
69
- type: _contractspec_lib_schema0.FieldType<string, string>;
70
- isOptional: true;
71
- };
72
- status: {
73
- type: _contractspec_lib_schema0.FieldType<string, string>;
74
- isOptional: true;
75
- };
76
- assigneeId: {
77
- type: _contractspec_lib_schema0.FieldType<string, string>;
78
- isOptional: true;
79
- };
80
- limit: {
81
- type: _contractspec_lib_schema0.FieldType<number, number>;
82
- isOptional: true;
83
- };
84
- offset: {
85
- type: _contractspec_lib_schema0.FieldType<number, number>;
86
- isOptional: true;
87
- };
88
- }>, _contractspec_lib_schema0.SchemaModel<{
89
- tasks: {
90
- type: _contractspec_lib_schema0.SchemaModel<{
91
- id: {
92
- type: _contractspec_lib_schema0.FieldType<string, string>;
93
- isOptional: false;
94
- };
95
- spaceId: {
96
- type: _contractspec_lib_schema0.FieldType<string, string>;
97
- isOptional: false;
98
- };
99
- title: {
100
- type: _contractspec_lib_schema0.FieldType<string, string>;
101
- isOptional: false;
102
- };
103
- status: {
104
- type: _contractspec_lib_schema0.FieldType<string, string>;
105
- isOptional: false;
106
- };
107
- priority: {
108
- type: _contractspec_lib_schema0.FieldType<string, string>;
109
- isOptional: false;
110
- };
111
- assigneeId: {
112
- type: _contractspec_lib_schema0.FieldType<string, string>;
113
- isOptional: true;
114
- };
115
- dueDate: {
116
- type: _contractspec_lib_schema0.FieldType<Date, string>;
117
- isOptional: true;
118
- };
119
- }>;
120
- isOptional: false;
121
- isList: boolean;
122
- };
123
- total: {
124
- type: _contractspec_lib_schema0.FieldType<number, number>;
125
- isOptional: false;
126
- };
63
+ export declare const ListTasksOperation: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
64
+ spaceId: {
65
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
66
+ isOptional: true;
67
+ };
68
+ status: {
69
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
70
+ isOptional: true;
71
+ };
72
+ assigneeId: {
73
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
74
+ isOptional: true;
75
+ };
76
+ limit: {
77
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
78
+ isOptional: true;
79
+ };
80
+ offset: {
81
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
82
+ isOptional: true;
83
+ };
84
+ }>, import("@contractspec/lib.schema").SchemaModel<{
85
+ tasks: {
86
+ type: import("@contractspec/lib.schema").SchemaModel<{
87
+ id: {
88
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
89
+ isOptional: false;
90
+ };
91
+ spaceId: {
92
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
93
+ isOptional: false;
94
+ };
95
+ title: {
96
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
97
+ isOptional: false;
98
+ };
99
+ status: {
100
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
101
+ isOptional: false;
102
+ };
103
+ priority: {
104
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
105
+ isOptional: false;
106
+ };
107
+ assigneeId: {
108
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
109
+ isOptional: true;
110
+ };
111
+ dueDate: {
112
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
113
+ isOptional: true;
114
+ };
115
+ }>;
116
+ isOptional: false;
117
+ isList: boolean;
118
+ };
119
+ total: {
120
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
121
+ isOptional: false;
122
+ };
127
123
  }>, undefined>;
128
124
  /**
129
125
  * Create a task.
130
126
  */
131
- declare const CreateTaskContract: _contractspec_lib_contracts0.OperationSpec<_contractspec_lib_schema0.SchemaModel<{
132
- spaceId: {
133
- type: _contractspec_lib_schema0.FieldType<string, string>;
134
- isOptional: false;
135
- };
136
- title: {
137
- type: _contractspec_lib_schema0.FieldType<string, string>;
138
- isOptional: false;
139
- };
140
- description: {
141
- type: _contractspec_lib_schema0.FieldType<string, string>;
142
- isOptional: true;
143
- };
144
- priority: {
145
- type: _contractspec_lib_schema0.FieldType<string, string>;
146
- isOptional: true;
147
- };
148
- assigneeId: {
149
- type: _contractspec_lib_schema0.FieldType<string, string>;
150
- isOptional: true;
151
- };
152
- dueDate: {
153
- type: _contractspec_lib_schema0.FieldType<Date, string>;
154
- isOptional: true;
155
- };
156
- }>, _contractspec_lib_schema0.SchemaModel<{
157
- id: {
158
- type: _contractspec_lib_schema0.FieldType<string, string>;
159
- isOptional: false;
160
- };
161
- spaceId: {
162
- type: _contractspec_lib_schema0.FieldType<string, string>;
163
- isOptional: false;
164
- };
165
- title: {
166
- type: _contractspec_lib_schema0.FieldType<string, string>;
167
- isOptional: false;
168
- };
169
- status: {
170
- type: _contractspec_lib_schema0.FieldType<string, string>;
171
- isOptional: false;
172
- };
173
- priority: {
174
- type: _contractspec_lib_schema0.FieldType<string, string>;
175
- isOptional: false;
176
- };
177
- assigneeId: {
178
- type: _contractspec_lib_schema0.FieldType<string, string>;
179
- isOptional: true;
180
- };
181
- dueDate: {
182
- type: _contractspec_lib_schema0.FieldType<Date, string>;
183
- isOptional: true;
184
- };
127
+ export declare const CreateTaskContract: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
128
+ spaceId: {
129
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
130
+ isOptional: false;
131
+ };
132
+ title: {
133
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
134
+ isOptional: false;
135
+ };
136
+ description: {
137
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
138
+ isOptional: true;
139
+ };
140
+ priority: {
141
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
142
+ isOptional: true;
143
+ };
144
+ assigneeId: {
145
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
146
+ isOptional: true;
147
+ };
148
+ dueDate: {
149
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
150
+ isOptional: true;
151
+ };
152
+ }>, import("@contractspec/lib.schema").SchemaModel<{
153
+ id: {
154
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
155
+ isOptional: false;
156
+ };
157
+ spaceId: {
158
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
159
+ isOptional: false;
160
+ };
161
+ title: {
162
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
163
+ isOptional: false;
164
+ };
165
+ status: {
166
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
167
+ isOptional: false;
168
+ };
169
+ priority: {
170
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
171
+ isOptional: false;
172
+ };
173
+ assigneeId: {
174
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
175
+ isOptional: true;
176
+ };
177
+ dueDate: {
178
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
179
+ isOptional: true;
180
+ };
185
181
  }>, undefined>;
186
182
  /**
187
183
  * Update task status.
188
184
  */
189
- declare const UpdateTaskStatusContract: _contractspec_lib_contracts0.OperationSpec<_contractspec_lib_schema0.SchemaModel<{
190
- taskId: {
191
- type: _contractspec_lib_schema0.FieldType<string, string>;
192
- isOptional: false;
193
- };
194
- status: {
195
- type: _contractspec_lib_schema0.FieldType<string, string>;
196
- isOptional: false;
197
- };
198
- }>, _contractspec_lib_schema0.SchemaModel<{
199
- id: {
200
- type: _contractspec_lib_schema0.FieldType<string, string>;
201
- isOptional: false;
202
- };
203
- spaceId: {
204
- type: _contractspec_lib_schema0.FieldType<string, string>;
205
- isOptional: false;
206
- };
207
- title: {
208
- type: _contractspec_lib_schema0.FieldType<string, string>;
209
- isOptional: false;
210
- };
211
- status: {
212
- type: _contractspec_lib_schema0.FieldType<string, string>;
213
- isOptional: false;
214
- };
215
- priority: {
216
- type: _contractspec_lib_schema0.FieldType<string, string>;
217
- isOptional: false;
218
- };
219
- assigneeId: {
220
- type: _contractspec_lib_schema0.FieldType<string, string>;
221
- isOptional: true;
222
- };
223
- dueDate: {
224
- type: _contractspec_lib_schema0.FieldType<Date, string>;
225
- isOptional: true;
226
- };
185
+ export declare const UpdateTaskStatusContract: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
186
+ taskId: {
187
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
188
+ isOptional: false;
189
+ };
190
+ status: {
191
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
192
+ isOptional: false;
193
+ };
194
+ }>, import("@contractspec/lib.schema").SchemaModel<{
195
+ id: {
196
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
197
+ isOptional: false;
198
+ };
199
+ spaceId: {
200
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
201
+ isOptional: false;
202
+ };
203
+ title: {
204
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
205
+ isOptional: false;
206
+ };
207
+ status: {
208
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
209
+ isOptional: false;
210
+ };
211
+ priority: {
212
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
213
+ isOptional: false;
214
+ };
215
+ assigneeId: {
216
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
217
+ isOptional: true;
218
+ };
219
+ dueDate: {
220
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
221
+ isOptional: true;
222
+ };
227
223
  }>, undefined>;
228
- //#endregion
229
- export { CreateTaskContract, ListTasksInputModel, ListTasksOperation, ListTasksOutputModel, UpdateTaskStatusContract };
230
224
  //# sourceMappingURL=task.operations.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"task.operations.d.ts","names":[],"sources":["../../src/task/task.operations.ts"],"mappings":";;;;cAYa,mBAAA,4BAAmB,WAAA;;UAU9B,yBAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;cAEW,oBAAA,4BAAoB,WAAA;;;;cAO/B,yBAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAEW,kBAAA,+BAAkB,aAAA,2BAAA,WAAA;;UAiC7B,yBAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;cAjC6B,yBAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAwClB,kBAAA,+BAAkB,aAAA,2BAAA,WAAA;;UAiC7B,yBAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;UAjC6B,yBAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAA/B;;;AAAA,cAsCa,wBAAA,+BAAwB,aAAA,2BAAA,WAAA;;UAiCnC,yBAAA,CAAA,SAAA;;;;;;;;;UAjCmC,yBAAA,CAAA,SAAA"}
1
+ {"version":3,"file":"task.operations.d.ts","sourceRoot":"","sources":["../../src/task/task.operations.ts"],"names":[],"mappings":"AAYA,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;EAU9B,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAO/B,CAAC;AAEH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAiC7B,CAAC;AAIH;;GAEG;AACH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAiC7B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAiCnC,CAAC"}