fake-bpy-module 20240530__py3-none-any.whl → 20240601__py3-none-any.whl

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.

Potentially problematic release.


This version of fake-bpy-module might be problematic. Click here for more details.

@@ -3782,10 +3782,10 @@ class DOPESHEET_MT_view_pie(bpy_types.Menu, bpy_types._GenericUI):
3782
3782
  """
3783
3783
  ...
3784
3784
 
3785
- def draw(self, _context):
3785
+ def draw(self, context):
3786
3786
  """
3787
3787
 
3788
- :param _context:
3788
+ :param context:
3789
3789
  """
3790
3790
  ...
3791
3791
 
@@ -4311,10 +4311,10 @@ class GRAPH_MT_view_pie(bpy_types.Menu, bpy_types._GenericUI):
4311
4311
  """
4312
4312
  ...
4313
4313
 
4314
- def draw(self, _context):
4314
+ def draw(self, context):
4315
4315
  """
4316
4316
 
4317
- :param _context:
4317
+ :param context:
4318
4318
  """
4319
4319
  ...
4320
4320
 
@@ -3503,10 +3503,10 @@ class NLA_MT_view_pie(bpy_types.Menu, bpy_types._GenericUI):
3503
3503
  """
3504
3504
  ...
3505
3505
 
3506
- def draw(self, _context):
3506
+ def draw(self, context):
3507
3507
  """
3508
3508
 
3509
- :param _context:
3509
+ :param context:
3510
3510
  """
3511
3511
  ...
3512
3512
 
@@ -9163,10 +9163,10 @@ class SEQUENCER_MT_view_pie(bpy_types.Menu, bpy_types._GenericUI):
9163
9163
  """
9164
9164
  ...
9165
9165
 
9166
- def draw(self, _context):
9166
+ def draw(self, context):
9167
9167
  """
9168
9168
 
9169
- :param _context:
9169
+ :param context:
9170
9170
  """
9171
9171
  ...
9172
9172
 
bmesh/types/__init__.pyi CHANGED
@@ -282,11 +282,11 @@ class BMEdgeSeq:
282
282
  """Ensure internal data needed for int subscription is initialized with verts/edges/faces, eg bm.verts[index].This needs to be called again after adding/removing data in this sequence."""
283
283
  ...
284
284
 
285
- def get(self, verts: collections.abc.Iterable[BMVert], fallback=None) -> BMEdge:
285
+ def get(self, verts: list[BMVert], fallback=None) -> BMEdge:
286
286
  """Return an edge which uses the verts passed.
287
287
 
288
288
  :param verts: Sequence of verts.
289
- :type verts: collections.abc.Iterable[BMVert]
289
+ :type verts: list[BMVert]
290
290
  :param fallback: Return this value if nothing is found.
291
291
  :return: The edge found or None
292
292
  :rtype: BMEdge
@@ -671,11 +671,11 @@ class BMFaceSeq:
671
671
  """Ensure internal data needed for int subscription is initialized with verts/edges/faces, eg bm.verts[index].This needs to be called again after adding/removing data in this sequence."""
672
672
  ...
673
673
 
674
- def get(self, verts: collections.abc.Iterable[BMVert], fallback=None) -> BMFace:
674
+ def get(self, verts: list[BMVert], fallback=None) -> BMFace:
675
675
  """Return a face which uses the verts passed.
676
676
 
677
677
  :param verts: Sequence of verts.
678
- :type verts: collections.abc.Iterable[BMVert]
678
+ :type verts: list[BMVert]
679
679
  :param fallback: Return this value if nothing is found.
680
680
  :return: The face found or None
681
681
  :rtype: BMFace
@@ -686,13 +686,11 @@ class BMFaceSeq:
686
686
  """Initialize the index values of this sequence.This is the equivalent of looping over all elements and assigning the index values."""
687
687
  ...
688
688
 
689
- def new(
690
- self, verts: collections.abc.Iterable[BMVert], example: BMFace | None = None
691
- ) -> BMFace:
689
+ def new(self, verts: list[BMVert], example: BMFace | None = None) -> BMFace:
692
690
  """Create a new face from a given set of verts.
693
691
 
694
692
  :param verts: Sequence of 3 or more verts.
695
- :type verts: collections.abc.Iterable[BMVert]
693
+ :type verts: list[BMVert]
696
694
  :param example: Existing face to initialize settings (optional argument).
697
695
  :type example: BMFace | None
698
696
  :return: The newly created face.
bpy/ops/__init__.pyi CHANGED
@@ -155,7 +155,6 @@ from . import action
155
155
  from . import anim
156
156
  from . import armature
157
157
  from . import asset
158
- from . import bl_pkg
159
158
  from . import boid
160
159
  from . import brush
161
160
  from . import buttons
@@ -173,6 +172,7 @@ from . import dpaint
173
172
  from . import ed
174
173
  from . import export_anim
175
174
  from . import export_scene
175
+ from . import extensions
176
176
  from . import file
177
177
  from . import fluid
178
178
  from . import font
bpy/ops/anim/__init__.pyi CHANGED
@@ -935,6 +935,20 @@ def previewrange_set(
935
935
 
936
936
  ...
937
937
 
938
+ def scene_range_frame(
939
+ override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
940
+ execution_context: str | int | None = None,
941
+ undo: bool | None = None,
942
+ ):
943
+ """Reset the horizontal view to the current scene frame range, taking the preview range into account if it is active
944
+
945
+ :type override_context: dict[str, typing.Any] | bpy.types.Context | None
946
+ :type execution_context: str | int | None
947
+ :type undo: bool | None
948
+ """
949
+
950
+ ...
951
+
938
952
  def start_frame_set(
939
953
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
940
954
  execution_context: str | int | None = None,
@@ -321,7 +321,7 @@ def gltf(
321
321
  export_optimize_animation_size: bool | typing.Any | None = True,
322
322
  export_optimize_animation_keep_anim_armature: bool | typing.Any | None = True,
323
323
  export_optimize_animation_keep_anim_object: bool | typing.Any | None = False,
324
- export_optimize_armature_disable_viewport: bool | typing.Any | None = False,
324
+ export_optimize_disable_viewport: bool | typing.Any | None = False,
325
325
  export_negative_frame: str | None = "SLIDE",
326
326
  export_anim_slide_to_zero: bool | typing.Any | None = False,
327
327
  export_bake_animation: bool | typing.Any | None = False,
@@ -577,8 +577,8 @@ def gltf(
577
577
  :type export_optimize_animation_keep_anim_armature: bool | typing.Any | None
578
578
  :param export_optimize_animation_keep_anim_object: Force keeping channel for objects, If all keyframes are identical for object transformations, force keeping the minimal animation
579
579
  :type export_optimize_animation_keep_anim_object: bool | typing.Any | None
580
- :param export_optimize_armature_disable_viewport: Disable viewport if possible, When exporting armature, disable viewport for other objects, for performance. Drivers on shape keys for skined meshes prevent this optimization for now
581
- :type export_optimize_armature_disable_viewport: bool | typing.Any | None
580
+ :param export_optimize_disable_viewport: Disable viewport for other objects, When exporting animations, disable viewport for other objects, for performance
581
+ :type export_optimize_disable_viewport: bool | typing.Any | None
582
582
  :param export_negative_frame: Negative Frames, Negative Frames are slid or cropped
583
583
 
584
584
  SLIDE
@@ -19,7 +19,7 @@ def dummy_progress(
19
19
 
20
20
  ...
21
21
 
22
- def extension_disable(
22
+ def package_disable(
23
23
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
24
24
  execution_context: str | int | None = None,
25
25
  undo: bool | None = None,
@@ -33,49 +33,7 @@ def extension_disable(
33
33
 
34
34
  ...
35
35
 
36
- def extension_theme_disable(
37
- override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
38
- execution_context: str | int | None = None,
39
- undo: bool | None = None,
40
- *,
41
- pkg_id: str | typing.Any = "",
42
- repo_index: typing.Any | None = -1,
43
- ):
44
- """Turn off this theme
45
-
46
- :type override_context: dict[str, typing.Any] | bpy.types.Context | None
47
- :type execution_context: str | int | None
48
- :type undo: bool | None
49
- :param pkg_id: Package ID
50
- :type pkg_id: str | typing.Any
51
- :param repo_index: Repo Index
52
- :type repo_index: typing.Any | None
53
- """
54
-
55
- ...
56
-
57
- def extension_theme_enable(
58
- override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
59
- execution_context: str | int | None = None,
60
- undo: bool | None = None,
61
- *,
62
- pkg_id: str | typing.Any = "",
63
- repo_index: typing.Any | None = -1,
64
- ):
65
- """Turn off this theme
66
-
67
- :type override_context: dict[str, typing.Any] | bpy.types.Context | None
68
- :type execution_context: str | int | None
69
- :type undo: bool | None
70
- :param pkg_id: Package ID
71
- :type pkg_id: str | typing.Any
72
- :param repo_index: Repo Index
73
- :type repo_index: typing.Any | None
74
- """
75
-
76
- ...
77
-
78
- def extensions_enable_not_installed(
36
+ def package_enable_not_installed(
79
37
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
80
38
  execution_context: str | int | None = None,
81
39
  undo: bool | None = None,
@@ -89,63 +47,7 @@ def extensions_enable_not_installed(
89
47
 
90
48
  ...
91
49
 
92
- def extensions_show_for_update(
93
- override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
94
- execution_context: str | int | None = None,
95
- undo: bool | None = None,
96
- ):
97
- """Open extensions preferences
98
-
99
- :type override_context: dict[str, typing.Any] | bpy.types.Context | None
100
- :type execution_context: str | int | None
101
- :type undo: bool | None
102
- """
103
-
104
- ...
105
-
106
- def extensions_show_online_prefs(
107
- override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
108
- execution_context: str | int | None = None,
109
- undo: bool | None = None,
110
- ):
111
- """Show system preferences "Network" panel to allow online access
112
-
113
- :type override_context: dict[str, typing.Any] | bpy.types.Context | None
114
- :type execution_context: str | int | None
115
- :type undo: bool | None
116
- """
117
-
118
- ...
119
-
120
- def obsolete_marked(
121
- override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
122
- execution_context: str | int | None = None,
123
- undo: bool | None = None,
124
- ):
125
- """Zeroes package versions, useful for development - to test upgrading
126
-
127
- :type override_context: dict[str, typing.Any] | bpy.types.Context | None
128
- :type execution_context: str | int | None
129
- :type undo: bool | None
130
- """
131
-
132
- ...
133
-
134
- def pkg_display_errors_clear(
135
- override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
136
- execution_context: str | int | None = None,
137
- undo: bool | None = None,
138
- ):
139
- """Undocumented, consider contributing.
140
-
141
- :type override_context: dict[str, typing.Any] | bpy.types.Context | None
142
- :type execution_context: str | int | None
143
- :type undo: bool | None
144
- """
145
-
146
- ...
147
-
148
- def pkg_install(
50
+ def package_install(
149
51
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
150
52
  execution_context: str | int | None = None,
151
53
  undo: bool | None = None,
@@ -175,18 +77,20 @@ def pkg_install(
175
77
 
176
78
  ...
177
79
 
178
- def pkg_install_files(
80
+ def package_install_files(
179
81
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
180
82
  execution_context: str | int | None = None,
181
83
  undo: bool | None = None,
182
84
  *,
183
- filter_glob: str | typing.Any = "*.zip",
85
+ filter_glob: str | typing.Any = "*.zip;*.py",
184
86
  directory: str | typing.Any = "",
185
87
  files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
186
88
  | None = None,
187
89
  filepath: str | typing.Any = "",
188
90
  repo: str | None = "",
189
91
  enable_on_install: bool | typing.Any | None = True,
92
+ target: str | None = "",
93
+ overwrite: bool | typing.Any | None = True,
190
94
  url: str | typing.Any = "",
191
95
  ):
192
96
  """Install an extension from a file into a locally managed repository
@@ -206,13 +110,17 @@ def pkg_install_files(
206
110
  :type repo: str | None
207
111
  :param enable_on_install: Enable on Install, Enable after installing
208
112
  :type enable_on_install: bool | typing.Any | None
113
+ :param target: Legacy Target Path, Path to install legacy add-on packages to
114
+ :type target: str | None
115
+ :param overwrite: Legacy Overwrite, Remove existing add-ons with the same ID
116
+ :type overwrite: bool | typing.Any | None
209
117
  :param url: URL
210
118
  :type url: str | typing.Any
211
119
  """
212
120
 
213
121
  ...
214
122
 
215
- def pkg_install_marked(
123
+ def package_install_marked(
216
124
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
217
125
  execution_context: str | int | None = None,
218
126
  undo: bool | None = None,
@@ -230,7 +138,7 @@ def pkg_install_marked(
230
138
 
231
139
  ...
232
140
 
233
- def pkg_mark_clear(
141
+ def package_mark_clear(
234
142
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
235
143
  execution_context: str | int | None = None,
236
144
  undo: bool | None = None,
@@ -251,7 +159,7 @@ def pkg_mark_clear(
251
159
 
252
160
  ...
253
161
 
254
- def pkg_mark_set(
162
+ def package_mark_set(
255
163
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
256
164
  execution_context: str | int | None = None,
257
165
  undo: bool | None = None,
@@ -272,7 +180,21 @@ def pkg_mark_set(
272
180
 
273
181
  ...
274
182
 
275
- def pkg_show_clear(
183
+ def package_obsolete_marked(
184
+ override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
185
+ execution_context: str | int | None = None,
186
+ undo: bool | None = None,
187
+ ):
188
+ """Zeroes package versions, useful for development - to test upgrading
189
+
190
+ :type override_context: dict[str, typing.Any] | bpy.types.Context | None
191
+ :type execution_context: str | int | None
192
+ :type undo: bool | None
193
+ """
194
+
195
+ ...
196
+
197
+ def package_show_clear(
276
198
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
277
199
  execution_context: str | int | None = None,
278
200
  undo: bool | None = None,
@@ -293,7 +215,7 @@ def pkg_show_clear(
293
215
 
294
216
  ...
295
217
 
296
- def pkg_show_set(
218
+ def package_show_set(
297
219
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
298
220
  execution_context: str | int | None = None,
299
221
  undo: bool | None = None,
@@ -314,7 +236,7 @@ def pkg_show_set(
314
236
 
315
237
  ...
316
238
 
317
- def pkg_show_settings(
239
+ def package_show_settings(
318
240
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
319
241
  execution_context: str | int | None = None,
320
242
  undo: bool | None = None,
@@ -335,21 +257,49 @@ def pkg_show_settings(
335
257
 
336
258
  ...
337
259
 
338
- def pkg_status_clear(
260
+ def package_theme_disable(
339
261
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
340
262
  execution_context: str | int | None = None,
341
263
  undo: bool | None = None,
264
+ *,
265
+ pkg_id: str | typing.Any = "",
266
+ repo_index: typing.Any | None = -1,
342
267
  ):
343
- """Undocumented, consider contributing.
268
+ """Turn off this theme
269
+
270
+ :type override_context: dict[str, typing.Any] | bpy.types.Context | None
271
+ :type execution_context: str | int | None
272
+ :type undo: bool | None
273
+ :param pkg_id: Package ID
274
+ :type pkg_id: str | typing.Any
275
+ :param repo_index: Repo Index
276
+ :type repo_index: typing.Any | None
277
+ """
278
+
279
+ ...
280
+
281
+ def package_theme_enable(
282
+ override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
283
+ execution_context: str | int | None = None,
284
+ undo: bool | None = None,
285
+ *,
286
+ pkg_id: str | typing.Any = "",
287
+ repo_index: typing.Any | None = -1,
288
+ ):
289
+ """Turn off this theme
344
290
 
345
291
  :type override_context: dict[str, typing.Any] | bpy.types.Context | None
346
292
  :type execution_context: str | int | None
347
293
  :type undo: bool | None
294
+ :param pkg_id: Package ID
295
+ :type pkg_id: str | typing.Any
296
+ :param repo_index: Repo Index
297
+ :type repo_index: typing.Any | None
348
298
  """
349
299
 
350
300
  ...
351
301
 
352
- def pkg_uninstall(
302
+ def package_uninstall(
353
303
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
354
304
  execution_context: str | int | None = None,
355
305
  undo: bool | None = None,
@@ -373,7 +323,7 @@ def pkg_uninstall(
373
323
 
374
324
  ...
375
325
 
376
- def pkg_uninstall_marked(
326
+ def package_uninstall_marked(
377
327
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
378
328
  execution_context: str | int | None = None,
379
329
  undo: bool | None = None,
@@ -387,7 +337,7 @@ def pkg_uninstall_marked(
387
337
 
388
338
  ...
389
339
 
390
- def pkg_upgrade_all(
340
+ def package_upgrade_all(
391
341
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
392
342
  execution_context: str | int | None = None,
393
343
  undo: bool | None = None,
@@ -471,3 +421,73 @@ def repo_unlock(
471
421
  """
472
422
 
473
423
  ...
424
+
425
+ def status_clear(
426
+ override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
427
+ execution_context: str | int | None = None,
428
+ undo: bool | None = None,
429
+ ):
430
+ """Undocumented, consider contributing.
431
+
432
+ :type override_context: dict[str, typing.Any] | bpy.types.Context | None
433
+ :type execution_context: str | int | None
434
+ :type undo: bool | None
435
+ """
436
+
437
+ ...
438
+
439
+ def status_clear_errors(
440
+ override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
441
+ execution_context: str | int | None = None,
442
+ undo: bool | None = None,
443
+ ):
444
+ """Undocumented, consider contributing.
445
+
446
+ :type override_context: dict[str, typing.Any] | bpy.types.Context | None
447
+ :type execution_context: str | int | None
448
+ :type undo: bool | None
449
+ """
450
+
451
+ ...
452
+
453
+ def userpref_show_for_update(
454
+ override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
455
+ execution_context: str | int | None = None,
456
+ undo: bool | None = None,
457
+ ):
458
+ """Open extensions preferences
459
+
460
+ :type override_context: dict[str, typing.Any] | bpy.types.Context | None
461
+ :type execution_context: str | int | None
462
+ :type undo: bool | None
463
+ """
464
+
465
+ ...
466
+
467
+ def userpref_show_online(
468
+ override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
469
+ execution_context: str | int | None = None,
470
+ undo: bool | None = None,
471
+ ):
472
+ """Show system preferences "Network" panel to allow online access
473
+
474
+ :type override_context: dict[str, typing.Any] | bpy.types.Context | None
475
+ :type execution_context: str | int | None
476
+ :type undo: bool | None
477
+ """
478
+
479
+ ...
480
+
481
+ def userpref_show_online_popup(
482
+ override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
483
+ execution_context: str | int | None = None,
484
+ undo: bool | None = None,
485
+ ):
486
+ """Show system preferences "Network" panel to allow online access
487
+
488
+ :type override_context: dict[str, typing.Any] | bpy.types.Context | None
489
+ :type execution_context: str | int | None
490
+ :type undo: bool | None
491
+ """
492
+
493
+ ...
bpy/ops/node/__init__.pyi CHANGED
@@ -488,6 +488,52 @@ def bake_node_item_remove(
488
488
 
489
489
  ...
490
490
 
491
+ def capture_attribute_item_add(
492
+ override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
493
+ execution_context: str | int | None = None,
494
+ undo: bool | None = None,
495
+ ):
496
+ """Add capture attribute item
497
+
498
+ :type override_context: dict[str, typing.Any] | bpy.types.Context | None
499
+ :type execution_context: str | int | None
500
+ :type undo: bool | None
501
+ """
502
+
503
+ ...
504
+
505
+ def capture_attribute_item_move(
506
+ override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
507
+ execution_context: str | int | None = None,
508
+ undo: bool | None = None,
509
+ *,
510
+ direction: str | None = "UP",
511
+ ):
512
+ """Move active capture attribute item
513
+
514
+ :type override_context: dict[str, typing.Any] | bpy.types.Context | None
515
+ :type execution_context: str | int | None
516
+ :type undo: bool | None
517
+ :param direction: Direction, Move direction
518
+ :type direction: str | None
519
+ """
520
+
521
+ ...
522
+
523
+ def capture_attribute_item_remove(
524
+ override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
525
+ execution_context: str | int | None = None,
526
+ undo: bool | None = None,
527
+ ):
528
+ """Remove active capture attribute item
529
+
530
+ :type override_context: dict[str, typing.Any] | bpy.types.Context | None
531
+ :type execution_context: str | int | None
532
+ :type undo: bool | None
533
+ """
534
+
535
+ ...
536
+
491
537
  def clear_viewer_border(
492
538
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
493
539
  execution_context: str | int | None = None,
@@ -1848,20 +1894,6 @@ def simulation_zone_item_remove(
1848
1894
 
1849
1895
  ...
1850
1896
 
1851
- def switch_view_update(
1852
- override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1853
- execution_context: str | int | None = None,
1854
- undo: bool | None = None,
1855
- ):
1856
- """Update views of selected node
1857
-
1858
- :type override_context: dict[str, typing.Any] | bpy.types.Context | None
1859
- :type execution_context: str | int | None
1860
- :type undo: bool | None
1861
- """
1862
-
1863
- ...
1864
-
1865
1897
  def translate_attach(
1866
1898
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1867
1899
  execution_context: str | int | None = None,
@@ -2446,7 +2446,6 @@ def lightprobe_cache_bake(
2446
2446
  execution_context: str | int | None = None,
2447
2447
  undo: bool | None = None,
2448
2448
  *,
2449
- delay: typing.Any | None = 0,
2450
2449
  subset: str | None = "ALL",
2451
2450
  ):
2452
2451
  """Bake irradiance volume light cache
@@ -2454,8 +2453,6 @@ def lightprobe_cache_bake(
2454
2453
  :type override_context: dict[str, typing.Any] | bpy.types.Context | None
2455
2454
  :type execution_context: str | int | None
2456
2455
  :type undo: bool | None
2457
- :param delay: Delay, Delay in millisecond before baking starts
2458
- :type delay: typing.Any | None
2459
2456
  :param subset: Subset, Subset of probes to update
2460
2457
 
2461
2458
  ALL
@@ -65,6 +65,7 @@ def addon_install(
65
65
  undo: bool | None = None,
66
66
  *,
67
67
  overwrite: bool | typing.Any | None = True,
68
+ enable_on_install: bool | typing.Any | None = False,
68
69
  target: str | None = "",
69
70
  filepath: str | typing.Any = "",
70
71
  filter_folder: bool | typing.Any | None = True,
@@ -78,6 +79,8 @@ def addon_install(
78
79
  :type undo: bool | None
79
80
  :param overwrite: Overwrite, Remove existing add-ons with the same ID
80
81
  :type overwrite: bool | typing.Any | None
82
+ :param enable_on_install: Enable on Install, Enable after installing
83
+ :type enable_on_install: bool | typing.Any | None
81
84
  :param target: Target Path
82
85
  :type target: str | None
83
86
  :param filepath: filepath