@strapi/content-releases 0.0.0-experimental.e1ede8c55a0e1e22ce20137bf238fc374bd5dd51 → 0.0.0-experimental.e3e48deb89bd0a1b6cc69b698696566fa7854a95

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 (107) hide show
  1. package/dist/_chunks/App-PQlYzNfb.mjs +1337 -0
  2. package/dist/_chunks/App-PQlYzNfb.mjs.map +1 -0
  3. package/dist/_chunks/App-lzeJz92X.js +1360 -0
  4. package/dist/_chunks/App-lzeJz92X.js.map +1 -0
  5. package/dist/_chunks/PurchaseContentReleases-Clm0iACO.mjs +51 -0
  6. package/dist/_chunks/PurchaseContentReleases-Clm0iACO.mjs.map +1 -0
  7. package/dist/_chunks/PurchaseContentReleases-YhAPgpG9.js +51 -0
  8. package/dist/_chunks/PurchaseContentReleases-YhAPgpG9.js.map +1 -0
  9. package/dist/_chunks/{en-ngTk74JV.mjs → en-WuuhP6Bn.mjs} +22 -6
  10. package/dist/_chunks/en-WuuhP6Bn.mjs.map +1 -0
  11. package/dist/_chunks/{en-haKSQIo8.js → en-gcJJ5htG.js} +22 -6
  12. package/dist/_chunks/en-gcJJ5htG.js.map +1 -0
  13. package/dist/_chunks/{index-XAQOX_IB.mjs → index--4AgLDzb.mjs} +262 -83
  14. package/dist/_chunks/index--4AgLDzb.mjs.map +1 -0
  15. package/dist/_chunks/{index-EdBmRHRU.js → index-Nf1JfI-m.js} +246 -67
  16. package/dist/_chunks/index-Nf1JfI-m.js.map +1 -0
  17. package/dist/admin/index.js +2 -1
  18. package/dist/admin/index.js.map +1 -1
  19. package/dist/admin/index.mjs +3 -2
  20. package/dist/admin/index.mjs.map +1 -1
  21. package/dist/admin/src/components/CMReleasesContainer.d.ts +1 -0
  22. package/dist/admin/src/components/RelativeTime.d.ts +28 -0
  23. package/dist/admin/src/components/ReleaseActionMenu.d.ts +26 -0
  24. package/dist/admin/src/components/ReleaseActionOptions.d.ts +9 -0
  25. package/dist/admin/src/components/ReleaseModal.d.ts +16 -0
  26. package/dist/admin/src/constants.d.ts +58 -0
  27. package/dist/admin/src/index.d.ts +3 -0
  28. package/dist/admin/src/pages/App.d.ts +1 -0
  29. package/dist/admin/src/pages/PurchaseContentReleases.d.ts +2 -0
  30. package/dist/admin/src/pages/ReleaseDetailsPage.d.ts +2 -0
  31. package/dist/admin/src/pages/ReleasesPage.d.ts +8 -0
  32. package/dist/admin/src/pages/tests/mockReleaseDetailsPageData.d.ts +181 -0
  33. package/dist/admin/src/pages/tests/mockReleasesPageData.d.ts +39 -0
  34. package/dist/admin/src/pluginId.d.ts +1 -0
  35. package/dist/admin/src/services/axios.d.ts +29 -0
  36. package/dist/admin/src/services/release.d.ts +369 -0
  37. package/dist/admin/src/store/hooks.d.ts +7 -0
  38. package/dist/admin/src/utils/time.d.ts +1 -0
  39. package/dist/server/index.js +999 -309
  40. package/dist/server/index.js.map +1 -1
  41. package/dist/server/index.mjs +999 -310
  42. package/dist/server/index.mjs.map +1 -1
  43. package/dist/server/src/bootstrap.d.ts +5 -0
  44. package/dist/server/src/bootstrap.d.ts.map +1 -0
  45. package/dist/server/src/constants.d.ts +12 -0
  46. package/dist/server/src/constants.d.ts.map +1 -0
  47. package/dist/server/src/content-types/index.d.ts +99 -0
  48. package/dist/server/src/content-types/index.d.ts.map +1 -0
  49. package/dist/server/src/content-types/release/index.d.ts +48 -0
  50. package/dist/server/src/content-types/release/index.d.ts.map +1 -0
  51. package/dist/server/src/content-types/release/schema.d.ts +47 -0
  52. package/dist/server/src/content-types/release/schema.d.ts.map +1 -0
  53. package/dist/server/src/content-types/release-action/index.d.ts +50 -0
  54. package/dist/server/src/content-types/release-action/index.d.ts.map +1 -0
  55. package/dist/server/src/content-types/release-action/schema.d.ts +49 -0
  56. package/dist/server/src/content-types/release-action/schema.d.ts.map +1 -0
  57. package/dist/server/src/controllers/index.d.ts +18 -0
  58. package/dist/server/src/controllers/index.d.ts.map +1 -0
  59. package/dist/server/src/controllers/release-action.d.ts +9 -0
  60. package/dist/server/src/controllers/release-action.d.ts.map +1 -0
  61. package/dist/server/src/controllers/release.d.ts +11 -0
  62. package/dist/server/src/controllers/release.d.ts.map +1 -0
  63. package/dist/server/src/controllers/validation/release-action.d.ts +3 -0
  64. package/dist/server/src/controllers/validation/release-action.d.ts.map +1 -0
  65. package/dist/server/src/controllers/validation/release.d.ts +2 -0
  66. package/dist/server/src/controllers/validation/release.d.ts.map +1 -0
  67. package/dist/server/src/destroy.d.ts +5 -0
  68. package/dist/server/src/destroy.d.ts.map +1 -0
  69. package/dist/server/src/index.d.ts +2092 -0
  70. package/dist/server/src/index.d.ts.map +1 -0
  71. package/dist/server/src/migrations/index.d.ts +10 -0
  72. package/dist/server/src/migrations/index.d.ts.map +1 -0
  73. package/dist/server/src/register.d.ts +5 -0
  74. package/dist/server/src/register.d.ts.map +1 -0
  75. package/dist/server/src/routes/index.d.ts +35 -0
  76. package/dist/server/src/routes/index.d.ts.map +1 -0
  77. package/dist/server/src/routes/release-action.d.ts +18 -0
  78. package/dist/server/src/routes/release-action.d.ts.map +1 -0
  79. package/dist/server/src/routes/release.d.ts +18 -0
  80. package/dist/server/src/routes/release.d.ts.map +1 -0
  81. package/dist/server/src/services/index.d.ts +1826 -0
  82. package/dist/server/src/services/index.d.ts.map +1 -0
  83. package/dist/server/src/services/release.d.ts +66 -0
  84. package/dist/server/src/services/release.d.ts.map +1 -0
  85. package/dist/server/src/services/scheduling.d.ts +18 -0
  86. package/dist/server/src/services/scheduling.d.ts.map +1 -0
  87. package/dist/server/src/services/validation.d.ts +14 -0
  88. package/dist/server/src/services/validation.d.ts.map +1 -0
  89. package/dist/server/src/utils/index.d.ts +14 -0
  90. package/dist/server/src/utils/index.d.ts.map +1 -0
  91. package/dist/shared/contracts/release-actions.d.ts +105 -0
  92. package/dist/shared/contracts/release-actions.d.ts.map +1 -0
  93. package/dist/shared/contracts/releases.d.ts +166 -0
  94. package/dist/shared/contracts/releases.d.ts.map +1 -0
  95. package/dist/shared/types.d.ts +24 -0
  96. package/dist/shared/types.d.ts.map +1 -0
  97. package/dist/shared/validation-schemas.d.ts +2 -0
  98. package/dist/shared/validation-schemas.d.ts.map +1 -0
  99. package/package.json +19 -22
  100. package/dist/_chunks/App-g2P5kbSm.mjs +0 -945
  101. package/dist/_chunks/App-g2P5kbSm.mjs.map +0 -1
  102. package/dist/_chunks/App-o5_WfqR-.js +0 -967
  103. package/dist/_chunks/App-o5_WfqR-.js.map +0 -1
  104. package/dist/_chunks/en-haKSQIo8.js.map +0 -1
  105. package/dist/_chunks/en-ngTk74JV.mjs.map +0 -1
  106. package/dist/_chunks/index-EdBmRHRU.js.map +0 -1
  107. package/dist/_chunks/index-XAQOX_IB.mjs.map +0 -1
@@ -0,0 +1,2092 @@
1
+ /// <reference types="lodash" />
2
+ /// <reference types="koa" />
3
+ declare const _default: {
4
+ register: ({ strapi }: {
5
+ strapi: Required<import("@strapi/types").Strapi>;
6
+ }) => Promise<void>;
7
+ bootstrap: ({ strapi }: {
8
+ strapi: Required<import("@strapi/types").Strapi>;
9
+ }) => Promise<void>;
10
+ destroy: ({ strapi }: {
11
+ strapi: Required<import("@strapi/types").Strapi>;
12
+ }) => Promise<void>;
13
+ contentTypes: {
14
+ release: {
15
+ schema: {
16
+ collectionName: string;
17
+ info: {
18
+ singularName: string;
19
+ pluralName: string;
20
+ displayName: string;
21
+ };
22
+ options: {
23
+ draftAndPublish: boolean;
24
+ };
25
+ pluginOptions: {
26
+ 'content-manager': {
27
+ visible: boolean;
28
+ };
29
+ 'content-type-builder': {
30
+ visible: boolean;
31
+ };
32
+ };
33
+ attributes: {
34
+ name: {
35
+ type: string;
36
+ required: boolean;
37
+ };
38
+ releasedAt: {
39
+ type: string;
40
+ };
41
+ scheduledAt: {
42
+ type: string;
43
+ };
44
+ timezone: {
45
+ type: string;
46
+ };
47
+ status: {
48
+ type: string;
49
+ enum: string[];
50
+ required: boolean;
51
+ };
52
+ actions: {
53
+ type: string;
54
+ relation: string;
55
+ target: string;
56
+ mappedBy: string;
57
+ };
58
+ };
59
+ };
60
+ };
61
+ 'release-action': {
62
+ schema: {
63
+ collectionName: string;
64
+ info: {
65
+ singularName: string;
66
+ pluralName: string;
67
+ displayName: string;
68
+ };
69
+ options: {
70
+ draftAndPublish: boolean;
71
+ };
72
+ pluginOptions: {
73
+ 'content-manager': {
74
+ visible: boolean;
75
+ };
76
+ 'content-type-builder': {
77
+ visible: boolean;
78
+ };
79
+ };
80
+ attributes: {
81
+ type: {
82
+ type: string;
83
+ enum: string[];
84
+ required: boolean;
85
+ };
86
+ entry: {
87
+ type: string;
88
+ relation: string;
89
+ configurable: boolean;
90
+ };
91
+ contentType: {
92
+ type: string;
93
+ required: boolean;
94
+ };
95
+ locale: {
96
+ type: string;
97
+ };
98
+ release: {
99
+ type: string;
100
+ relation: string;
101
+ target: string;
102
+ inversedBy: string;
103
+ };
104
+ isEntryValid: {
105
+ type: string;
106
+ };
107
+ };
108
+ };
109
+ };
110
+ };
111
+ services: {
112
+ scheduling?: (({ strapi }: {
113
+ strapi: Required<import("@strapi/types").Strapi>;
114
+ }) => {
115
+ set(releaseId: import("@strapi/types/dist/types/core/entity").ID, scheduleDate: Date): Promise<Map<import("@strapi/types/dist/types/core/entity").ID, import("node-schedule").Job>>;
116
+ cancel(releaseId: import("@strapi/types/dist/types/core/entity").ID): Map<import("@strapi/types/dist/types/core/entity").ID, import("node-schedule").Job>;
117
+ getAll(): Map<import("@strapi/types/dist/types/core/entity").ID, import("node-schedule").Job>;
118
+ syncFromDatabase(): Promise<Map<import("@strapi/types/dist/types/core/entity").ID, import("node-schedule").Job>>;
119
+ }) | undefined;
120
+ release: ({ strapi }: {
121
+ strapi: Required<import("@strapi/types").Strapi>;
122
+ }) => {
123
+ create(releaseData: {
124
+ name: string;
125
+ scheduledAt: Date | null;
126
+ timezone: string | null;
127
+ }, { user }: {
128
+ user: import("../../shared/types").UserInfo;
129
+ }): Promise<any>;
130
+ findOne(id: import("@strapi/types/dist/types/core/entity").ID, query?: {}): Promise<any>;
131
+ findPage(query?: Partial<Pick<import("../../shared/contracts/releases").Pagination, "page" | "pageSize">> | undefined): Promise<{
132
+ results: any[];
133
+ pagination: {
134
+ page: number;
135
+ pageSize: number;
136
+ pageCount: number;
137
+ total: number;
138
+ };
139
+ }>;
140
+ findManyWithContentTypeEntryAttached(contentTypeUid: import("@strapi/types/dist/types/core/common/uid").ContentType, entryId: number): Promise<any[]>;
141
+ findManyWithoutContentTypeEntryAttached(contentTypeUid: import("@strapi/types/dist/types/core/common/uid").ContentType, entryId: number): Promise<any[]>;
142
+ update(id: number, releaseData: {
143
+ name: string;
144
+ scheduledAt?: Date | null | undefined;
145
+ timezone?: string | null | undefined;
146
+ }, { user }: {
147
+ user: import("../../shared/types").UserInfo;
148
+ }): Promise<any>;
149
+ createAction(releaseId: import("@strapi/types/dist/types/core/entity").ID, action: Pick<{
150
+ type: "publish" | "unpublish";
151
+ entry: {
152
+ id: number;
153
+ locale?: string | undefined;
154
+ contentType: import("@strapi/types/dist/types/core/common/uid").ContentType;
155
+ };
156
+ }, "type" | "entry">): Promise<any>;
157
+ findActions(releaseId: import("@strapi/types/dist/types/core/entity").ID, query?: (Partial<Pick<import("../../shared/contracts/releases").Pagination, "page" | "pageSize">> & {
158
+ groupBy?: import("../../shared/contracts/release-actions").ReleaseActionGroupBy | undefined;
159
+ }) | undefined): Promise<{
160
+ results: any[];
161
+ pagination: {
162
+ page: number;
163
+ pageSize: number;
164
+ pageCount: number;
165
+ total: number;
166
+ };
167
+ }>;
168
+ countActions(query: {
169
+ filters?: ({
170
+ $and?: (any & {
171
+ $not?: (any & any & {
172
+ id?: import("@strapi/types/dist/types/core/entity").ID | ({
173
+ $null?: boolean | undefined;
174
+ $notNull?: boolean | undefined;
175
+ } & {
176
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
177
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
178
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
179
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
180
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
181
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
182
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
183
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
184
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
185
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
186
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
187
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
188
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
189
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
190
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
191
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
192
+ } & {
193
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
194
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
195
+ } & {
196
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
197
+ } & {
198
+ $not?: import("@strapi/types/dist/types/core/entity").ID | ({
199
+ $null?: boolean | undefined;
200
+ $notNull?: boolean | undefined;
201
+ } & {
202
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
203
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
204
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
205
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
206
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
207
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
208
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
209
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
210
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
211
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
212
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
213
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
214
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
215
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
216
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
217
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
218
+ } & {
219
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
220
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
221
+ } & {
222
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
223
+ } & any & {
224
+ $and?: (import("@strapi/types/dist/types/core/entity").ID | ({
225
+ $null?: boolean | undefined;
226
+ $notNull?: boolean | undefined;
227
+ } & {
228
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
229
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
230
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
231
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
232
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
233
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
234
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
235
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
236
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
237
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
238
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
239
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
240
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
241
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
242
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
243
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
244
+ } & {
245
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
246
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
247
+ } & {
248
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
249
+ } & any & any))[] | undefined;
250
+ $or?: (import("@strapi/types/dist/types/core/entity").ID | ({
251
+ $null?: boolean | undefined;
252
+ $notNull?: boolean | undefined;
253
+ } & {
254
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
255
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
256
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
257
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
258
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
259
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
260
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
261
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
262
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
263
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
264
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
265
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
266
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
267
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
268
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
269
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
270
+ } & {
271
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
272
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
273
+ } & {
274
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
275
+ } & any & any))[] | undefined;
276
+ }) | undefined;
277
+ } & {
278
+ $and?: (import("@strapi/types/dist/types/core/entity").ID | ({
279
+ $null?: boolean | undefined;
280
+ $notNull?: boolean | undefined;
281
+ } & {
282
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
283
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
284
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
285
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
286
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
287
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
288
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
289
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
290
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
291
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
292
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
293
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
294
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
295
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
296
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
297
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
298
+ } & {
299
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
300
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
301
+ } & {
302
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
303
+ } & {
304
+ $not?: import("@strapi/types/dist/types/core/entity").ID | ({
305
+ $null?: boolean | undefined;
306
+ $notNull?: boolean | undefined;
307
+ } & {
308
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
309
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
310
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
311
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
312
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
313
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
314
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
315
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
316
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
317
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
318
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
319
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
320
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
321
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
322
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
323
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
324
+ } & {
325
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
326
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
327
+ } & {
328
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
329
+ } & any & any) | undefined;
330
+ } & any))[] | undefined;
331
+ $or?: (import("@strapi/types/dist/types/core/entity").ID | ({
332
+ $null?: boolean | undefined;
333
+ $notNull?: boolean | undefined;
334
+ } & {
335
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
336
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
337
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
338
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
339
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
340
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
341
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
342
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
343
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
344
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
345
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
346
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
347
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
348
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
349
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
350
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
351
+ } & {
352
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
353
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
354
+ } & {
355
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
356
+ } & {
357
+ $not?: import("@strapi/types/dist/types/core/entity").ID | ({
358
+ $null?: boolean | undefined;
359
+ $notNull?: boolean | undefined;
360
+ } & {
361
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
362
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
363
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
364
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
365
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
366
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
367
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
368
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
369
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
370
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
371
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
372
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
373
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
374
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
375
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
376
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
377
+ } & {
378
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
379
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
380
+ } & {
381
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
382
+ } & any & any) | undefined;
383
+ } & any))[] | undefined;
384
+ }) | undefined;
385
+ } & import("@strapi/types/dist/modules/entity-service/params/filters").AbstractAttributesFiltering<"plugin::content-releases.release-action">) | undefined;
386
+ } & {
387
+ id?: import("@strapi/types/dist/types/core/entity").ID | ({
388
+ $null?: boolean | undefined;
389
+ $notNull?: boolean | undefined;
390
+ } & {
391
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
392
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
393
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
394
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
395
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
396
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
397
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
398
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
399
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
400
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
401
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
402
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
403
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
404
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
405
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
406
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
407
+ } & {
408
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
409
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
410
+ } & {
411
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
412
+ } & {
413
+ $not?: import("@strapi/types/dist/types/core/entity").ID | ({
414
+ $null?: boolean | undefined;
415
+ $notNull?: boolean | undefined;
416
+ } & {
417
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
418
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
419
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
420
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
421
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
422
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
423
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
424
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
425
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
426
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
427
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
428
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
429
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
430
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
431
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
432
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
433
+ } & {
434
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
435
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
436
+ } & {
437
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
438
+ } & any & {
439
+ $and?: (import("@strapi/types/dist/types/core/entity").ID | ({
440
+ $null?: boolean | undefined;
441
+ $notNull?: boolean | undefined;
442
+ } & {
443
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
444
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
445
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
446
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
447
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
448
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
449
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
450
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
451
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
452
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
453
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
454
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
455
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
456
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
457
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
458
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
459
+ } & {
460
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
461
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
462
+ } & {
463
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
464
+ } & any & any))[] | undefined;
465
+ $or?: (import("@strapi/types/dist/types/core/entity").ID | ({
466
+ $null?: boolean | undefined;
467
+ $notNull?: boolean | undefined;
468
+ } & {
469
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
470
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
471
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
472
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
473
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
474
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
475
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
476
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
477
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
478
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
479
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
480
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
481
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
482
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
483
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
484
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
485
+ } & {
486
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
487
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
488
+ } & {
489
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
490
+ } & any & any))[] | undefined;
491
+ }) | undefined;
492
+ } & {
493
+ $and?: (import("@strapi/types/dist/types/core/entity").ID | ({
494
+ $null?: boolean | undefined;
495
+ $notNull?: boolean | undefined;
496
+ } & {
497
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
498
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
499
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
500
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
501
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
502
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
503
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
504
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
505
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
506
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
507
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
508
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
509
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
510
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
511
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
512
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
513
+ } & {
514
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
515
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
516
+ } & {
517
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
518
+ } & {
519
+ $not?: import("@strapi/types/dist/types/core/entity").ID | ({
520
+ $null?: boolean | undefined;
521
+ $notNull?: boolean | undefined;
522
+ } & {
523
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
524
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
525
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
526
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
527
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
528
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
529
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
530
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
531
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
532
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
533
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
534
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
535
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
536
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
537
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
538
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
539
+ } & {
540
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
541
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
542
+ } & {
543
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
544
+ } & any & any) | undefined;
545
+ } & any))[] | undefined;
546
+ $or?: (import("@strapi/types/dist/types/core/entity").ID | ({
547
+ $null?: boolean | undefined;
548
+ $notNull?: boolean | undefined;
549
+ } & {
550
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
551
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
552
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
553
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
554
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
555
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
556
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
557
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
558
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
559
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
560
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
561
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
562
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
563
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
564
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
565
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
566
+ } & {
567
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
568
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
569
+ } & {
570
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
571
+ } & {
572
+ $not?: import("@strapi/types/dist/types/core/entity").ID | ({
573
+ $null?: boolean | undefined;
574
+ $notNull?: boolean | undefined;
575
+ } & {
576
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
577
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
578
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
579
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
580
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
581
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
582
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
583
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
584
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
585
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
586
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
587
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
588
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
589
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
590
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
591
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
592
+ } & {
593
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
594
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
595
+ } & {
596
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
597
+ } & any & any) | undefined;
598
+ } & any))[] | undefined;
599
+ }) | undefined;
600
+ } & import("@strapi/types/dist/modules/entity-service/params/filters").AbstractAttributesFiltering<"plugin::content-releases.release-action">)[] | undefined;
601
+ $or?: (any & {
602
+ $not?: (any & any & {
603
+ id?: import("@strapi/types/dist/types/core/entity").ID | ({
604
+ $null?: boolean | undefined;
605
+ $notNull?: boolean | undefined;
606
+ } & {
607
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
608
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
609
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
610
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
611
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
612
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
613
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
614
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
615
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
616
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
617
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
618
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
619
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
620
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
621
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
622
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
623
+ } & {
624
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
625
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
626
+ } & {
627
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
628
+ } & {
629
+ $not?: import("@strapi/types/dist/types/core/entity").ID | ({
630
+ $null?: boolean | undefined;
631
+ $notNull?: boolean | undefined;
632
+ } & {
633
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
634
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
635
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
636
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
637
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
638
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
639
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
640
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
641
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
642
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
643
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
644
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
645
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
646
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
647
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
648
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
649
+ } & {
650
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
651
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
652
+ } & {
653
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
654
+ } & any & {
655
+ $and?: (import("@strapi/types/dist/types/core/entity").ID | ({
656
+ $null?: boolean | undefined;
657
+ $notNull?: boolean | undefined;
658
+ } & {
659
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
660
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
661
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
662
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
663
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
664
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
665
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
666
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
667
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
668
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
669
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
670
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
671
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
672
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
673
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
674
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
675
+ } & {
676
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
677
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
678
+ } & {
679
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
680
+ } & any & any))[] | undefined;
681
+ $or?: (import("@strapi/types/dist/types/core/entity").ID | ({
682
+ $null?: boolean | undefined;
683
+ $notNull?: boolean | undefined;
684
+ } & {
685
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
686
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
687
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
688
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
689
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
690
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
691
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
692
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
693
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
694
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
695
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
696
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
697
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
698
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
699
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
700
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
701
+ } & {
702
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
703
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
704
+ } & {
705
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
706
+ } & any & any))[] | undefined;
707
+ }) | undefined;
708
+ } & {
709
+ $and?: (import("@strapi/types/dist/types/core/entity").ID | ({
710
+ $null?: boolean | undefined;
711
+ $notNull?: boolean | undefined;
712
+ } & {
713
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
714
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
715
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
716
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
717
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
718
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
719
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
720
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
721
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
722
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
723
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
724
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
725
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
726
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
727
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
728
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
729
+ } & {
730
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
731
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
732
+ } & {
733
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
734
+ } & {
735
+ $not?: import("@strapi/types/dist/types/core/entity").ID | ({
736
+ $null?: boolean | undefined;
737
+ $notNull?: boolean | undefined;
738
+ } & {
739
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
740
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
741
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
742
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
743
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
744
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
745
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
746
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
747
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
748
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
749
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
750
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
751
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
752
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
753
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
754
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
755
+ } & {
756
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
757
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
758
+ } & {
759
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
760
+ } & any & any) | undefined;
761
+ } & any))[] | undefined;
762
+ $or?: (import("@strapi/types/dist/types/core/entity").ID | ({
763
+ $null?: boolean | undefined;
764
+ $notNull?: boolean | undefined;
765
+ } & {
766
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
767
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
768
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
769
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
770
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
771
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
772
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
773
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
774
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
775
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
776
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
777
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
778
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
779
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
780
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
781
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
782
+ } & {
783
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
784
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
785
+ } & {
786
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
787
+ } & {
788
+ $not?: import("@strapi/types/dist/types/core/entity").ID | ({
789
+ $null?: boolean | undefined;
790
+ $notNull?: boolean | undefined;
791
+ } & {
792
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
793
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
794
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
795
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
796
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
797
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
798
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
799
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
800
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
801
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
802
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
803
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
804
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
805
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
806
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
807
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
808
+ } & {
809
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
810
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
811
+ } & {
812
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
813
+ } & any & any) | undefined;
814
+ } & any))[] | undefined;
815
+ }) | undefined;
816
+ } & import("@strapi/types/dist/modules/entity-service/params/filters").AbstractAttributesFiltering<"plugin::content-releases.release-action">) | undefined;
817
+ } & {
818
+ id?: import("@strapi/types/dist/types/core/entity").ID | ({
819
+ $null?: boolean | undefined;
820
+ $notNull?: boolean | undefined;
821
+ } & {
822
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
823
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
824
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
825
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
826
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
827
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
828
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
829
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
830
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
831
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
832
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
833
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
834
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
835
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
836
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
837
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
838
+ } & {
839
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
840
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
841
+ } & {
842
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
843
+ } & {
844
+ $not?: import("@strapi/types/dist/types/core/entity").ID | ({
845
+ $null?: boolean | undefined;
846
+ $notNull?: boolean | undefined;
847
+ } & {
848
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
849
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
850
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
851
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
852
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
853
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
854
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
855
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
856
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
857
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
858
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
859
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
860
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
861
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
862
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
863
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
864
+ } & {
865
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
866
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
867
+ } & {
868
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
869
+ } & any & {
870
+ $and?: (import("@strapi/types/dist/types/core/entity").ID | ({
871
+ $null?: boolean | undefined;
872
+ $notNull?: boolean | undefined;
873
+ } & {
874
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
875
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
876
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
877
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
878
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
879
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
880
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
881
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
882
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
883
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
884
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
885
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
886
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
887
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
888
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
889
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
890
+ } & {
891
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
892
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
893
+ } & {
894
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
895
+ } & any & any))[] | undefined;
896
+ $or?: (import("@strapi/types/dist/types/core/entity").ID | ({
897
+ $null?: boolean | undefined;
898
+ $notNull?: boolean | undefined;
899
+ } & {
900
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
901
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
902
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
903
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
904
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
905
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
906
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
907
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
908
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
909
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
910
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
911
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
912
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
913
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
914
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
915
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
916
+ } & {
917
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
918
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
919
+ } & {
920
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
921
+ } & any & any))[] | undefined;
922
+ }) | undefined;
923
+ } & {
924
+ $and?: (import("@strapi/types/dist/types/core/entity").ID | ({
925
+ $null?: boolean | undefined;
926
+ $notNull?: boolean | undefined;
927
+ } & {
928
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
929
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
930
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
931
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
932
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
933
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
934
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
935
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
936
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
937
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
938
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
939
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
940
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
941
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
942
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
943
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
944
+ } & {
945
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
946
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
947
+ } & {
948
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
949
+ } & {
950
+ $not?: import("@strapi/types/dist/types/core/entity").ID | ({
951
+ $null?: boolean | undefined;
952
+ $notNull?: boolean | undefined;
953
+ } & {
954
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
955
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
956
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
957
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
958
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
959
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
960
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
961
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
962
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
963
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
964
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
965
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
966
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
967
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
968
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
969
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
970
+ } & {
971
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
972
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
973
+ } & {
974
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
975
+ } & any & any) | undefined;
976
+ } & any))[] | undefined;
977
+ $or?: (import("@strapi/types/dist/types/core/entity").ID | ({
978
+ $null?: boolean | undefined;
979
+ $notNull?: boolean | undefined;
980
+ } & {
981
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
982
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
983
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
984
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
985
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
986
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
987
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
988
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
989
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
990
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
991
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
992
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
993
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
994
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
995
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
996
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
997
+ } & {
998
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
999
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1000
+ } & {
1001
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
1002
+ } & {
1003
+ $not?: import("@strapi/types/dist/types/core/entity").ID | ({
1004
+ $null?: boolean | undefined;
1005
+ $notNull?: boolean | undefined;
1006
+ } & {
1007
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1008
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1009
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1010
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1011
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1012
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1013
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1014
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1015
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1016
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1017
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1018
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1019
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1020
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1021
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1022
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1023
+ } & {
1024
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1025
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1026
+ } & {
1027
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
1028
+ } & any & any) | undefined;
1029
+ } & any))[] | undefined;
1030
+ }) | undefined;
1031
+ } & import("@strapi/types/dist/modules/entity-service/params/filters").AbstractAttributesFiltering<"plugin::content-releases.release-action">)[] | undefined;
1032
+ } & {
1033
+ $not?: ({
1034
+ $and?: (any & any & {
1035
+ id?: import("@strapi/types/dist/types/core/entity").ID | ({
1036
+ $null?: boolean | undefined;
1037
+ $notNull?: boolean | undefined;
1038
+ } & {
1039
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1040
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1041
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1042
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1043
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1044
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1045
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1046
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1047
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1048
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1049
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1050
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1051
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1052
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1053
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1054
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1055
+ } & {
1056
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1057
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1058
+ } & {
1059
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
1060
+ } & {
1061
+ $not?: import("@strapi/types/dist/types/core/entity").ID | ({
1062
+ $null?: boolean | undefined;
1063
+ $notNull?: boolean | undefined;
1064
+ } & {
1065
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1066
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1067
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1068
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1069
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1070
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1071
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1072
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1073
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1074
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1075
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1076
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1077
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1078
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1079
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1080
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1081
+ } & {
1082
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1083
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1084
+ } & {
1085
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
1086
+ } & any & {
1087
+ $and?: (import("@strapi/types/dist/types/core/entity").ID | ({
1088
+ $null?: boolean | undefined;
1089
+ $notNull?: boolean | undefined;
1090
+ } & {
1091
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1092
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1093
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1094
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1095
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1096
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1097
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1098
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1099
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1100
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1101
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1102
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1103
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1104
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1105
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1106
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1107
+ } & {
1108
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1109
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1110
+ } & {
1111
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
1112
+ } & any & any))[] | undefined;
1113
+ $or?: (import("@strapi/types/dist/types/core/entity").ID | ({
1114
+ $null?: boolean | undefined;
1115
+ $notNull?: boolean | undefined;
1116
+ } & {
1117
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1118
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1119
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1120
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1121
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1122
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1123
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1124
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1125
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1126
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1127
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1128
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1129
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1130
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1131
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1132
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1133
+ } & {
1134
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1135
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1136
+ } & {
1137
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
1138
+ } & any & any))[] | undefined;
1139
+ }) | undefined;
1140
+ } & {
1141
+ $and?: (import("@strapi/types/dist/types/core/entity").ID | ({
1142
+ $null?: boolean | undefined;
1143
+ $notNull?: boolean | undefined;
1144
+ } & {
1145
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1146
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1147
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1148
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1149
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1150
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1151
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1152
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1153
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1154
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1155
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1156
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1157
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1158
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1159
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1160
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1161
+ } & {
1162
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1163
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1164
+ } & {
1165
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
1166
+ } & {
1167
+ $not?: import("@strapi/types/dist/types/core/entity").ID | ({
1168
+ $null?: boolean | undefined;
1169
+ $notNull?: boolean | undefined;
1170
+ } & {
1171
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1172
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1173
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1174
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1175
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1176
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1177
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1178
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1179
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1180
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1181
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1182
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1183
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1184
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1185
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1186
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1187
+ } & {
1188
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1189
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1190
+ } & {
1191
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
1192
+ } & any & any) | undefined;
1193
+ } & any))[] | undefined;
1194
+ $or?: (import("@strapi/types/dist/types/core/entity").ID | ({
1195
+ $null?: boolean | undefined;
1196
+ $notNull?: boolean | undefined;
1197
+ } & {
1198
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1199
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1200
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1201
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1202
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1203
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1204
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1205
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1206
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1207
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1208
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1209
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1210
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1211
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1212
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1213
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1214
+ } & {
1215
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1216
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1217
+ } & {
1218
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
1219
+ } & {
1220
+ $not?: import("@strapi/types/dist/types/core/entity").ID | ({
1221
+ $null?: boolean | undefined;
1222
+ $notNull?: boolean | undefined;
1223
+ } & {
1224
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1225
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1226
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1227
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1228
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1229
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1230
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1231
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1232
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1233
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1234
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1235
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1236
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1237
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1238
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1239
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1240
+ } & {
1241
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1242
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1243
+ } & {
1244
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
1245
+ } & any & any) | undefined;
1246
+ } & any))[] | undefined;
1247
+ }) | undefined;
1248
+ } & import("@strapi/types/dist/modules/entity-service/params/filters").AbstractAttributesFiltering<"plugin::content-releases.release-action">)[] | undefined;
1249
+ $or?: (any & any & {
1250
+ id?: import("@strapi/types/dist/types/core/entity").ID | ({
1251
+ $null?: boolean | undefined;
1252
+ $notNull?: boolean | undefined;
1253
+ } & {
1254
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1255
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1256
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1257
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1258
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1259
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1260
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1261
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1262
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1263
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1264
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1265
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1266
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1267
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1268
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1269
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1270
+ } & {
1271
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1272
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1273
+ } & {
1274
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
1275
+ } & {
1276
+ $not?: import("@strapi/types/dist/types/core/entity").ID | ({
1277
+ $null?: boolean | undefined;
1278
+ $notNull?: boolean | undefined;
1279
+ } & {
1280
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1281
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1282
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1283
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1284
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1285
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1286
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1287
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1288
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1289
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1290
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1291
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1292
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1293
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1294
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1295
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1296
+ } & {
1297
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1298
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1299
+ } & {
1300
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
1301
+ } & any & {
1302
+ $and?: (import("@strapi/types/dist/types/core/entity").ID | ({
1303
+ $null?: boolean | undefined;
1304
+ $notNull?: boolean | undefined;
1305
+ } & {
1306
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1307
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1308
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1309
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1310
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1311
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1312
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1313
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1314
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1315
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1316
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1317
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1318
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1319
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1320
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1321
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1322
+ } & {
1323
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1324
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1325
+ } & {
1326
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
1327
+ } & any & any))[] | undefined;
1328
+ $or?: (import("@strapi/types/dist/types/core/entity").ID | ({
1329
+ $null?: boolean | undefined;
1330
+ $notNull?: boolean | undefined;
1331
+ } & {
1332
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1333
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1334
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1335
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1336
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1337
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1338
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1339
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1340
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1341
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1342
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1343
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1344
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1345
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1346
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1347
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1348
+ } & {
1349
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1350
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1351
+ } & {
1352
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
1353
+ } & any & any))[] | undefined;
1354
+ }) | undefined;
1355
+ } & {
1356
+ $and?: (import("@strapi/types/dist/types/core/entity").ID | ({
1357
+ $null?: boolean | undefined;
1358
+ $notNull?: boolean | undefined;
1359
+ } & {
1360
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1361
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1362
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1363
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1364
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1365
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1366
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1367
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1368
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1369
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1370
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1371
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1372
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1373
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1374
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1375
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1376
+ } & {
1377
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1378
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1379
+ } & {
1380
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
1381
+ } & {
1382
+ $not?: import("@strapi/types/dist/types/core/entity").ID | ({
1383
+ $null?: boolean | undefined;
1384
+ $notNull?: boolean | undefined;
1385
+ } & {
1386
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1387
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1388
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1389
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1390
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1391
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1392
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1393
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1394
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1395
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1396
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1397
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1398
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1399
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1400
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1401
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1402
+ } & {
1403
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1404
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1405
+ } & {
1406
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
1407
+ } & any & any) | undefined;
1408
+ } & any))[] | undefined;
1409
+ $or?: (import("@strapi/types/dist/types/core/entity").ID | ({
1410
+ $null?: boolean | undefined;
1411
+ $notNull?: boolean | undefined;
1412
+ } & {
1413
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1414
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1415
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1416
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1417
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1418
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1419
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1420
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1421
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1422
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1423
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1424
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1425
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1426
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1427
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1428
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1429
+ } & {
1430
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1431
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1432
+ } & {
1433
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
1434
+ } & {
1435
+ $not?: import("@strapi/types/dist/types/core/entity").ID | ({
1436
+ $null?: boolean | undefined;
1437
+ $notNull?: boolean | undefined;
1438
+ } & {
1439
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1440
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1441
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1442
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1443
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1444
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1445
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1446
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1447
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1448
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1449
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1450
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1451
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1452
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1453
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1454
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1455
+ } & {
1456
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1457
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1458
+ } & {
1459
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
1460
+ } & any & any) | undefined;
1461
+ } & any))[] | undefined;
1462
+ }) | undefined;
1463
+ } & import("@strapi/types/dist/modules/entity-service/params/filters").AbstractAttributesFiltering<"plugin::content-releases.release-action">)[] | undefined;
1464
+ } & any & {
1465
+ id?: import("@strapi/types/dist/types/core/entity").ID | ({
1466
+ $null?: boolean | undefined;
1467
+ $notNull?: boolean | undefined;
1468
+ } & {
1469
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1470
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1471
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1472
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1473
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1474
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1475
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1476
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1477
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1478
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1479
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1480
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1481
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1482
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1483
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1484
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1485
+ } & {
1486
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1487
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1488
+ } & {
1489
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
1490
+ } & {
1491
+ $not?: import("@strapi/types/dist/types/core/entity").ID | ({
1492
+ $null?: boolean | undefined;
1493
+ $notNull?: boolean | undefined;
1494
+ } & {
1495
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1496
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1497
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1498
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1499
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1500
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1501
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1502
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1503
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1504
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1505
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1506
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1507
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1508
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1509
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1510
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1511
+ } & {
1512
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1513
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1514
+ } & {
1515
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
1516
+ } & any & {
1517
+ $and?: (import("@strapi/types/dist/types/core/entity").ID | ({
1518
+ $null?: boolean | undefined;
1519
+ $notNull?: boolean | undefined;
1520
+ } & {
1521
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1522
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1523
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1524
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1525
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1526
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1527
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1528
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1529
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1530
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1531
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1532
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1533
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1534
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1535
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1536
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1537
+ } & {
1538
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1539
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1540
+ } & {
1541
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
1542
+ } & any & any))[] | undefined;
1543
+ $or?: (import("@strapi/types/dist/types/core/entity").ID | ({
1544
+ $null?: boolean | undefined;
1545
+ $notNull?: boolean | undefined;
1546
+ } & {
1547
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1548
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1549
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1550
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1551
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1552
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1553
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1554
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1555
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1556
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1557
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1558
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1559
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1560
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1561
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1562
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1563
+ } & {
1564
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1565
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1566
+ } & {
1567
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
1568
+ } & any & any))[] | undefined;
1569
+ }) | undefined;
1570
+ } & {
1571
+ $and?: (import("@strapi/types/dist/types/core/entity").ID | ({
1572
+ $null?: boolean | undefined;
1573
+ $notNull?: boolean | undefined;
1574
+ } & {
1575
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1576
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1577
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1578
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1579
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1580
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1581
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1582
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1583
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1584
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1585
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1586
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1587
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1588
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1589
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1590
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1591
+ } & {
1592
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1593
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1594
+ } & {
1595
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
1596
+ } & {
1597
+ $not?: import("@strapi/types/dist/types/core/entity").ID | ({
1598
+ $null?: boolean | undefined;
1599
+ $notNull?: boolean | undefined;
1600
+ } & {
1601
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1602
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1603
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1604
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1605
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1606
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1607
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1608
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1609
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1610
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1611
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1612
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1613
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1614
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1615
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1616
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1617
+ } & {
1618
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1619
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1620
+ } & {
1621
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
1622
+ } & any & any) | undefined;
1623
+ } & any))[] | undefined;
1624
+ $or?: (import("@strapi/types/dist/types/core/entity").ID | ({
1625
+ $null?: boolean | undefined;
1626
+ $notNull?: boolean | undefined;
1627
+ } & {
1628
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1629
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1630
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1631
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1632
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1633
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1634
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1635
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1636
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1637
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1638
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1639
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1640
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1641
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1642
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1643
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1644
+ } & {
1645
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1646
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1647
+ } & {
1648
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
1649
+ } & {
1650
+ $not?: import("@strapi/types/dist/types/core/entity").ID | ({
1651
+ $null?: boolean | undefined;
1652
+ $notNull?: boolean | undefined;
1653
+ } & {
1654
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1655
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1656
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1657
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1658
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1659
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1660
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1661
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1662
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1663
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1664
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1665
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1666
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1667
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1668
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1669
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1670
+ } & {
1671
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1672
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1673
+ } & {
1674
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
1675
+ } & any & any) | undefined;
1676
+ } & any))[] | undefined;
1677
+ }) | undefined;
1678
+ } & import("@strapi/types/dist/modules/entity-service/params/filters").AbstractAttributesFiltering<"plugin::content-releases.release-action">) | undefined;
1679
+ } & {
1680
+ id?: import("@strapi/types/dist/types/core/entity").ID | ({
1681
+ $null?: boolean | undefined;
1682
+ $notNull?: boolean | undefined;
1683
+ } & {
1684
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1685
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1686
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1687
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1688
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1689
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1690
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1691
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1692
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1693
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1694
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1695
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1696
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1697
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1698
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1699
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1700
+ } & {
1701
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1702
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1703
+ } & {
1704
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
1705
+ } & {
1706
+ $not?: import("@strapi/types/dist/types/core/entity").ID | ({
1707
+ $null?: boolean | undefined;
1708
+ $notNull?: boolean | undefined;
1709
+ } & {
1710
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1711
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1712
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1713
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1714
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1715
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1716
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1717
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1718
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1719
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1720
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1721
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1722
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1723
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1724
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1725
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1726
+ } & {
1727
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1728
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1729
+ } & {
1730
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
1731
+ } & any & {
1732
+ $and?: (import("@strapi/types/dist/types/core/entity").ID | ({
1733
+ $null?: boolean | undefined;
1734
+ $notNull?: boolean | undefined;
1735
+ } & {
1736
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1737
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1738
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1739
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1740
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1741
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1742
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1743
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1744
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1745
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1746
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1747
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1748
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1749
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1750
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1751
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1752
+ } & {
1753
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1754
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1755
+ } & {
1756
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
1757
+ } & any & any))[] | undefined;
1758
+ $or?: (import("@strapi/types/dist/types/core/entity").ID | ({
1759
+ $null?: boolean | undefined;
1760
+ $notNull?: boolean | undefined;
1761
+ } & {
1762
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1763
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1764
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1765
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1766
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1767
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1768
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1769
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1770
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1771
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1772
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1773
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1774
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1775
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1776
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1777
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1778
+ } & {
1779
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1780
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1781
+ } & {
1782
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
1783
+ } & any & any))[] | undefined;
1784
+ }) | undefined;
1785
+ } & {
1786
+ $and?: (import("@strapi/types/dist/types/core/entity").ID | ({
1787
+ $null?: boolean | undefined;
1788
+ $notNull?: boolean | undefined;
1789
+ } & {
1790
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1791
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1792
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1793
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1794
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1795
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1796
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1797
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1798
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1799
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1800
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1801
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1802
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1803
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1804
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1805
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1806
+ } & {
1807
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1808
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1809
+ } & {
1810
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
1811
+ } & {
1812
+ $not?: import("@strapi/types/dist/types/core/entity").ID | ({
1813
+ $null?: boolean | undefined;
1814
+ $notNull?: boolean | undefined;
1815
+ } & {
1816
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1817
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1818
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1819
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1820
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1821
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1822
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1823
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1824
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1825
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1826
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1827
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1828
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1829
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1830
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1831
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1832
+ } & {
1833
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1834
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1835
+ } & {
1836
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
1837
+ } & any & any) | undefined;
1838
+ } & any))[] | undefined;
1839
+ $or?: (import("@strapi/types/dist/types/core/entity").ID | ({
1840
+ $null?: boolean | undefined;
1841
+ $notNull?: boolean | undefined;
1842
+ } & {
1843
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1844
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1845
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1846
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1847
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1848
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1849
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1850
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1851
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1852
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1853
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1854
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1855
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1856
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1857
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1858
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1859
+ } & {
1860
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1861
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1862
+ } & {
1863
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
1864
+ } & {
1865
+ $not?: import("@strapi/types/dist/types/core/entity").ID | ({
1866
+ $null?: boolean | undefined;
1867
+ $notNull?: boolean | undefined;
1868
+ } & {
1869
+ $eq?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1870
+ $eqi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1871
+ $ne?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1872
+ $nei?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1873
+ $gt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1874
+ $gte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1875
+ $lt?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1876
+ $lte?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1877
+ $startsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1878
+ $endsWith?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1879
+ $startsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1880
+ $endsWithi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1881
+ $contains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1882
+ $notContains?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1883
+ $containsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1884
+ $notContainsi?: import("@strapi/types/dist/types/core/entity").ID | undefined;
1885
+ } & {
1886
+ $in?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1887
+ $notIn?: import("@strapi/types/dist/types/core/entity").ID[] | undefined;
1888
+ } & {
1889
+ $between?: [import("@strapi/types/dist/types/core/entity").ID, import("@strapi/types/dist/types/core/entity").ID] | undefined;
1890
+ } & any & any) | undefined;
1891
+ } & any))[] | undefined;
1892
+ }) | undefined;
1893
+ } & import("@strapi/types/dist/modules/entity-service/params/filters").AbstractAttributesFiltering<"plugin::content-releases.release-action">) | undefined;
1894
+ }): Promise<number>;
1895
+ groupActions(actions: import("../../shared/contracts/release-actions").ReleaseAction[], groupBy: import("../../shared/contracts/release-actions").ReleaseActionGroupBy): Promise<import("lodash").Dictionary<(null | undefined)[]>>;
1896
+ getLocalesDataForActions(): Promise<{
1897
+ [key: string]: Pick<import("./services/release").Locale, "name" | "code">;
1898
+ }>;
1899
+ getContentTypesDataForActions(contentTypesUids: import("@strapi/types/dist/types/core/common/uid").ContentType[]): Promise<Record<`admin::${string}` | `strapi::${string}` | `api::${string}.${string}` | `plugin::${string}.${string}`, {
1900
+ mainField: string;
1901
+ displayName: string;
1902
+ }>>;
1903
+ getContentTypeModelsFromActions(actions: import("../../shared/contracts/release-actions").ReleaseAction[]): {
1904
+ [key: `admin::${string}`]: import("@strapi/types/dist/types/core/schemas").ContentType;
1905
+ [key: `strapi::${string}`]: import("@strapi/types/dist/types/core/schemas").ContentType;
1906
+ [key: `api::${string}.${string}`]: import("@strapi/types/dist/types/core/schemas").ContentType;
1907
+ [key: `plugin::${string}.${string}`]: import("@strapi/types/dist/types/core/schemas").ContentType;
1908
+ };
1909
+ getAllComponents(): Promise<any>;
1910
+ delete(releaseId: import("@strapi/types/dist/types/core/entity").ID): Promise<import("../../shared/contracts/releases").Release>;
1911
+ publish(releaseId: import("@strapi/types/dist/types/core/entity").ID): Promise<import("../../shared/contracts/releases").Release>;
1912
+ updateAction(actionId: import("@strapi/types/dist/types/core/entity").ID, releaseId: import("@strapi/types/dist/types/core/entity").ID, update: {
1913
+ type: "publish" | "unpublish";
1914
+ }): Promise<any>;
1915
+ deleteAction(actionId: import("@strapi/types/dist/types/core/entity").ID, releaseId: import("@strapi/types/dist/types/core/entity").ID): Promise<any>;
1916
+ updateReleaseStatus(releaseId: import("@strapi/types/dist/types/core/entity").ID): Promise<any>;
1917
+ };
1918
+ 'release-validation': ({ strapi }: {
1919
+ strapi: Required<import("@strapi/types").Strapi>;
1920
+ }) => {
1921
+ validateUniqueEntry(releaseId: import("@strapi/types/dist/types/core/entity").ID, releaseActionArgs: {
1922
+ type: "publish" | "unpublish";
1923
+ entry: {
1924
+ id: number;
1925
+ locale?: string | undefined;
1926
+ contentType: import("@strapi/types/dist/types/core/common/uid").ContentType;
1927
+ };
1928
+ }): Promise<void>;
1929
+ validateEntryContentType(contentTypeUid: import("@strapi/types/dist/types/core/common/uid").ContentType): void;
1930
+ validatePendingReleasesLimit(): Promise<void>;
1931
+ validateUniqueNameForPendingRelease(name: string, id?: import("@strapi/types/dist/types/core/entity").ID | undefined): Promise<void>;
1932
+ validateScheduledAtIsLaterThanNow(scheduledAt: Date | null): Promise<void>;
1933
+ };
1934
+ };
1935
+ controllers: {
1936
+ release: {
1937
+ findMany(ctx: import("koa").Context): Promise<void>;
1938
+ findOne(ctx: import("koa").Context): Promise<void>;
1939
+ create(ctx: import("koa").Context): Promise<void>;
1940
+ update(ctx: import("koa").Context): Promise<void>;
1941
+ delete(ctx: import("koa").Context): Promise<void>;
1942
+ publish(ctx: import("koa").Context): Promise<void>;
1943
+ };
1944
+ 'release-action': {
1945
+ create(ctx: import("koa").Context): Promise<void>;
1946
+ findMany(ctx: import("koa").Context): Promise<void>;
1947
+ update(ctx: import("koa").Context): Promise<void>;
1948
+ delete(ctx: import("koa").Context): Promise<void>;
1949
+ };
1950
+ };
1951
+ routes: {
1952
+ release: {
1953
+ type: string;
1954
+ routes: {
1955
+ method: string;
1956
+ path: string;
1957
+ handler: string;
1958
+ config: {
1959
+ policies: (string | {
1960
+ name: string;
1961
+ config: {
1962
+ actions: string[];
1963
+ };
1964
+ })[];
1965
+ };
1966
+ }[];
1967
+ };
1968
+ 'release-action': {
1969
+ type: string;
1970
+ routes: {
1971
+ method: string;
1972
+ path: string;
1973
+ handler: string;
1974
+ config: {
1975
+ policies: (string | {
1976
+ name: string;
1977
+ config: {
1978
+ actions: string[];
1979
+ };
1980
+ })[];
1981
+ };
1982
+ }[];
1983
+ };
1984
+ };
1985
+ } | {
1986
+ contentTypes: {
1987
+ release: {
1988
+ schema: {
1989
+ collectionName: string;
1990
+ info: {
1991
+ singularName: string;
1992
+ pluralName: string;
1993
+ displayName: string;
1994
+ };
1995
+ options: {
1996
+ draftAndPublish: boolean;
1997
+ };
1998
+ pluginOptions: {
1999
+ 'content-manager': {
2000
+ visible: boolean;
2001
+ };
2002
+ 'content-type-builder': {
2003
+ visible: boolean;
2004
+ };
2005
+ };
2006
+ attributes: {
2007
+ name: {
2008
+ type: string;
2009
+ required: boolean;
2010
+ };
2011
+ releasedAt: {
2012
+ type: string;
2013
+ };
2014
+ scheduledAt: {
2015
+ type: string;
2016
+ };
2017
+ timezone: {
2018
+ type: string;
2019
+ };
2020
+ status: {
2021
+ type: string;
2022
+ enum: string[];
2023
+ required: boolean;
2024
+ };
2025
+ actions: {
2026
+ type: string;
2027
+ relation: string;
2028
+ target: string;
2029
+ mappedBy: string;
2030
+ };
2031
+ };
2032
+ };
2033
+ };
2034
+ 'release-action': {
2035
+ schema: {
2036
+ collectionName: string;
2037
+ info: {
2038
+ singularName: string;
2039
+ pluralName: string;
2040
+ displayName: string;
2041
+ };
2042
+ options: {
2043
+ draftAndPublish: boolean;
2044
+ };
2045
+ pluginOptions: {
2046
+ 'content-manager': {
2047
+ visible: boolean;
2048
+ };
2049
+ 'content-type-builder': {
2050
+ visible: boolean;
2051
+ };
2052
+ };
2053
+ attributes: {
2054
+ type: {
2055
+ type: string;
2056
+ enum: string[];
2057
+ required: boolean;
2058
+ };
2059
+ entry: {
2060
+ type: string;
2061
+ relation: string;
2062
+ configurable: boolean;
2063
+ };
2064
+ contentType: {
2065
+ type: string;
2066
+ required: boolean;
2067
+ };
2068
+ locale: {
2069
+ type: string;
2070
+ };
2071
+ release: {
2072
+ type: string;
2073
+ relation: string;
2074
+ target: string;
2075
+ inversedBy: string;
2076
+ };
2077
+ isEntryValid: {
2078
+ type: string;
2079
+ };
2080
+ };
2081
+ };
2082
+ };
2083
+ };
2084
+ register?: undefined;
2085
+ bootstrap?: undefined;
2086
+ destroy?: undefined;
2087
+ services?: undefined;
2088
+ controllers?: undefined;
2089
+ routes?: undefined;
2090
+ };
2091
+ export default _default;
2092
+ //# sourceMappingURL=index.d.ts.map