fake-bpy-module 20250602__py3-none-any.whl → 20250604__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.

Files changed (47) hide show
  1. bl_ui/properties_paint_common/__init__.pyi +1 -0
  2. bl_ui/space_dopesheet/__init__.pyi +2 -2
  3. bl_ui/space_graph/__init__.pyi +2 -4
  4. bl_ui/space_nla/__init__.pyi +2 -4
  5. bl_ui/space_node/__init__.pyi +28 -0
  6. bl_ui/space_sequencer/__init__.pyi +2 -1
  7. bl_ui/space_toolsystem_common/__init__.pyi +0 -17
  8. bl_ui/space_view3d_toolbar/__init__.pyi +41 -0
  9. bl_ui/utils/__init__.pyi +17 -0
  10. bpy/app/__init__.pyi +5 -5
  11. bpy/ops/action/__init__.pyi +14 -13
  12. bpy/ops/boid/__init__.pyi +3 -3
  13. bpy/ops/brush/__init__.pyi +4 -3
  14. bpy/ops/clip/__init__.pyi +3 -3
  15. bpy/ops/curve/__init__.pyi +5 -5
  16. bpy/ops/curves/__init__.pyi +9 -9
  17. bpy/ops/dpaint/__init__.pyi +3 -3
  18. bpy/ops/geometry/__init__.pyi +22 -19
  19. bpy/ops/graph/__init__.pyi +19 -17
  20. bpy/ops/grease_pencil/__init__.pyi +50 -9
  21. bpy/ops/image/__init__.pyi +12 -9
  22. bpy/ops/lattice/__init__.pyi +3 -3
  23. bpy/ops/mesh/__init__.pyi +45 -43
  24. bpy/ops/nla/__init__.pyi +3 -3
  25. bpy/ops/node/__init__.pyi +4 -3
  26. bpy/ops/object/__init__.pyi +76 -69
  27. bpy/ops/outliner/__init__.pyi +5 -5
  28. bpy/ops/paint/__init__.pyi +9 -7
  29. bpy/ops/pose/__init__.pyi +15 -13
  30. bpy/ops/rigidbody/__init__.pyi +9 -9
  31. bpy/ops/scene/__init__.pyi +12 -9
  32. bpy/ops/screen/__init__.pyi +7 -7
  33. bpy/ops/sequencer/__init__.pyi +3 -3
  34. bpy/ops/sound/__init__.pyi +3 -3
  35. bpy/ops/transform/__init__.pyi +89 -73
  36. bpy/ops/uv/__init__.pyi +3 -3
  37. bpy/ops/wm/__init__.pyi +33 -20
  38. bpy/props/__init__.pyi +61 -59
  39. bpy/{_typing → stub_internal}/rna_enums/__init__.pyi +2 -0
  40. bpy/types/__init__.pyi +1384 -966
  41. {fake_bpy_module-20250602.dist-info → fake_bpy_module-20250604.dist-info}/METADATA +1 -1
  42. {fake_bpy_module-20250602.dist-info → fake_bpy_module-20250604.dist-info}/RECORD +47 -47
  43. freestyle/utils/__init__.pyi +1 -1
  44. mathutils/__init__.pyi +4 -6
  45. /bpy/{_typing → stub_internal}/__init__.pyi +0 -0
  46. {fake_bpy_module-20250602.dist-info → fake_bpy_module-20250604.dist-info}/WHEEL +0 -0
  47. {fake_bpy_module-20250602.dist-info → fake_bpy_module-20250604.dist-info}/top_level.txt +0 -0
@@ -2,7 +2,7 @@ import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
4
  import numpy.typing as npt
5
- import bpy._typing.rna_enums
5
+ import bpy.stub_internal.rna_enums
6
6
 
7
7
  def bake_to_keyframes(
8
8
  execution_context: int | str | None = None,
@@ -101,14 +101,14 @@ def constraint_add(
101
101
  undo: bool | None = None,
102
102
  /,
103
103
  *,
104
- type: bpy._typing.rna_enums.RigidbodyConstraintTypeItems | None = "FIXED",
104
+ type: bpy.stub_internal.rna_enums.RigidbodyConstraintTypeItems | None = "FIXED",
105
105
  ):
106
106
  """Add Rigid Body Constraint to active object
107
107
 
108
108
  :type execution_context: int | str | None
109
109
  :type undo: bool | None
110
110
  :param type: Rigid Body Constraint Type
111
- :type type: bpy._typing.rna_enums.RigidbodyConstraintTypeItems | None
111
+ :type type: bpy.stub_internal.rna_enums.RigidbodyConstraintTypeItems | None
112
112
  """
113
113
 
114
114
  def constraint_remove(
@@ -143,14 +143,14 @@ def object_add(
143
143
  undo: bool | None = None,
144
144
  /,
145
145
  *,
146
- type: bpy._typing.rna_enums.RigidbodyObjectTypeItems | None = "ACTIVE",
146
+ type: bpy.stub_internal.rna_enums.RigidbodyObjectTypeItems | None = "ACTIVE",
147
147
  ):
148
148
  """Add active object as Rigid Body
149
149
 
150
150
  :type execution_context: int | str | None
151
151
  :type undo: bool | None
152
152
  :param type: Rigid Body Type
153
- :type type: bpy._typing.rna_enums.RigidbodyObjectTypeItems | None
153
+ :type type: bpy.stub_internal.rna_enums.RigidbodyObjectTypeItems | None
154
154
  """
155
155
 
156
156
  def object_remove(execution_context: int | str | None = None, undo: bool | None = None):
@@ -174,14 +174,14 @@ def objects_add(
174
174
  undo: bool | None = None,
175
175
  /,
176
176
  *,
177
- type: bpy._typing.rna_enums.RigidbodyObjectTypeItems | None = "ACTIVE",
177
+ type: bpy.stub_internal.rna_enums.RigidbodyObjectTypeItems | None = "ACTIVE",
178
178
  ):
179
179
  """Add selected objects as Rigid Bodies
180
180
 
181
181
  :type execution_context: int | str | None
182
182
  :type undo: bool | None
183
183
  :param type: Rigid Body Type
184
- :type type: bpy._typing.rna_enums.RigidbodyObjectTypeItems | None
184
+ :type type: bpy.stub_internal.rna_enums.RigidbodyObjectTypeItems | None
185
185
  """
186
186
 
187
187
  def objects_remove(
@@ -198,14 +198,14 @@ def shape_change(
198
198
  undo: bool | None = None,
199
199
  /,
200
200
  *,
201
- type: bpy._typing.rna_enums.RigidbodyObjectShapeItems | None = "MESH",
201
+ type: bpy.stub_internal.rna_enums.RigidbodyObjectShapeItems | None = "MESH",
202
202
  ):
203
203
  """Change collision shapes for selected Rigid Body Objects
204
204
 
205
205
  :type execution_context: int | str | None
206
206
  :type undo: bool | None
207
207
  :param type: Rigid Body Shape
208
- :type type: bpy._typing.rna_enums.RigidbodyObjectShapeItems | None
208
+ :type type: bpy.stub_internal.rna_enums.RigidbodyObjectShapeItems | None
209
209
  """
210
210
 
211
211
  def world_add(execution_context: int | str | None = None, undo: bool | None = None):
@@ -2,7 +2,7 @@ import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
4
  import numpy.typing as npt
5
- import bpy._typing.rna_enums
5
+ import bpy.stub_internal.rna_enums
6
6
 
7
7
  def delete(execution_context: int | str | None = None, undo: bool | None = None):
8
8
  """Delete active scene
@@ -34,14 +34,15 @@ def freestyle_alpha_modifier_add(
34
34
  undo: bool | None = None,
35
35
  /,
36
36
  *,
37
- type: bpy._typing.rna_enums.LinestyleAlphaModifierTypeItems | None = "ALONG_STROKE",
37
+ type: bpy.stub_internal.rna_enums.LinestyleAlphaModifierTypeItems
38
+ | None = "ALONG_STROKE",
38
39
  ):
39
40
  """Add an alpha transparency modifier to the line style associated with the active lineset
40
41
 
41
42
  :type execution_context: int | str | None
42
43
  :type undo: bool | None
43
44
  :param type: Type
44
- :type type: bpy._typing.rna_enums.LinestyleAlphaModifierTypeItems | None
45
+ :type type: bpy.stub_internal.rna_enums.LinestyleAlphaModifierTypeItems | None
45
46
  """
46
47
 
47
48
  def freestyle_color_modifier_add(
@@ -49,14 +50,15 @@ def freestyle_color_modifier_add(
49
50
  undo: bool | None = None,
50
51
  /,
51
52
  *,
52
- type: bpy._typing.rna_enums.LinestyleColorModifierTypeItems | None = "ALONG_STROKE",
53
+ type: bpy.stub_internal.rna_enums.LinestyleColorModifierTypeItems
54
+ | None = "ALONG_STROKE",
53
55
  ):
54
56
  """Add a line color modifier to the line style associated with the active lineset
55
57
 
56
58
  :type execution_context: int | str | None
57
59
  :type undo: bool | None
58
60
  :param type: Type
59
- :type type: bpy._typing.rna_enums.LinestyleColorModifierTypeItems | None
61
+ :type type: bpy.stub_internal.rna_enums.LinestyleColorModifierTypeItems | None
60
62
  """
61
63
 
62
64
  def freestyle_fill_range_by_selection(
@@ -91,14 +93,15 @@ def freestyle_geometry_modifier_add(
91
93
  undo: bool | None = None,
92
94
  /,
93
95
  *,
94
- type: bpy._typing.rna_enums.LinestyleGeometryModifierTypeItems | None = "2D_OFFSET",
96
+ type: bpy.stub_internal.rna_enums.LinestyleGeometryModifierTypeItems
97
+ | None = "2D_OFFSET",
95
98
  ):
96
99
  """Add a stroke geometry modifier to the line style associated with the active lineset
97
100
 
98
101
  :type execution_context: int | str | None
99
102
  :type undo: bool | None
100
103
  :param type: Type
101
- :type type: bpy._typing.rna_enums.LinestyleGeometryModifierTypeItems | None
104
+ :type type: bpy.stub_internal.rna_enums.LinestyleGeometryModifierTypeItems | None
102
105
  """
103
106
 
104
107
  def freestyle_lineset_add(
@@ -259,7 +262,7 @@ def freestyle_thickness_modifier_add(
259
262
  undo: bool | None = None,
260
263
  /,
261
264
  *,
262
- type: bpy._typing.rna_enums.LinestyleThicknessModifierTypeItems
265
+ type: bpy.stub_internal.rna_enums.LinestyleThicknessModifierTypeItems
263
266
  | None = "ALONG_STROKE",
264
267
  ):
265
268
  """Add a line thickness modifier to the line style associated with the active lineset
@@ -267,7 +270,7 @@ def freestyle_thickness_modifier_add(
267
270
  :type execution_context: int | str | None
268
271
  :type undo: bool | None
269
272
  :param type: Type
270
- :type type: bpy._typing.rna_enums.LinestyleThicknessModifierTypeItems | None
273
+ :type type: bpy.stub_internal.rna_enums.LinestyleThicknessModifierTypeItems | None
271
274
  """
272
275
 
273
276
  def gltf2_action_filter_refresh(
@@ -2,7 +2,7 @@ import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
4
  import numpy.typing as npt
5
- import bpy._typing.rna_enums
5
+ import bpy.stub_internal.rna_enums
6
6
 
7
7
  def actionzone(
8
8
  execution_context: int | str | None = None,
@@ -316,14 +316,14 @@ def region_toggle(
316
316
  undo: bool | None = None,
317
317
  /,
318
318
  *,
319
- region_type: bpy._typing.rna_enums.RegionTypeItems | None = "WINDOW",
319
+ region_type: bpy.stub_internal.rna_enums.RegionTypeItems | None = "WINDOW",
320
320
  ):
321
321
  """Hide or unhide the region
322
322
 
323
323
  :type execution_context: int | str | None
324
324
  :type undo: bool | None
325
325
  :param region_type: Region Type, Type of the region to toggle
326
- :type region_type: bpy._typing.rna_enums.RegionTypeItems | None
326
+ :type region_type: bpy.stub_internal.rna_enums.RegionTypeItems | None
327
327
  """
328
328
 
329
329
  def repeat_history(
@@ -602,14 +602,14 @@ def space_type_set_or_cycle(
602
602
  undo: bool | None = None,
603
603
  /,
604
604
  *,
605
- space_type: bpy._typing.rna_enums.SpaceTypeItems | None = "EMPTY",
605
+ space_type: bpy.stub_internal.rna_enums.SpaceTypeItems | None = "EMPTY",
606
606
  ):
607
607
  """Set the space type or cycle subtype
608
608
 
609
609
  :type execution_context: int | str | None
610
610
  :type undo: bool | None
611
611
  :param space_type: Type
612
- :type space_type: bpy._typing.rna_enums.SpaceTypeItems | None
612
+ :type space_type: bpy.stub_internal.rna_enums.SpaceTypeItems | None
613
613
  """
614
614
 
615
615
  def spacedata_cleanup(
@@ -626,14 +626,14 @@ def userpref_show(
626
626
  undo: bool | None = None,
627
627
  /,
628
628
  *,
629
- section: bpy._typing.rna_enums.PreferenceSectionItems | None = "INTERFACE",
629
+ section: bpy.stub_internal.rna_enums.PreferenceSectionItems | None = "INTERFACE",
630
630
  ):
631
631
  """Edit user preferences and system settings
632
632
 
633
633
  :type execution_context: int | str | None
634
634
  :type undo: bool | None
635
635
  :param section: Section to activate in the Preferences
636
- :type section: bpy._typing.rna_enums.PreferenceSectionItems | None
636
+ :type section: bpy.stub_internal.rna_enums.PreferenceSectionItems | None
637
637
  """
638
638
 
639
639
  def workspace_cycle(
@@ -2,8 +2,8 @@ import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
4
  import numpy.typing as npt
5
- import bpy._typing.rna_enums
6
5
  import bpy.ops.transform
6
+ import bpy.stub_internal.rna_enums
7
7
  import bpy.types
8
8
  import mathutils
9
9
 
@@ -1962,14 +1962,14 @@ def strip_color_tag_set(
1962
1962
  undo: bool | None = None,
1963
1963
  /,
1964
1964
  *,
1965
- color: bpy._typing.rna_enums.StripColorItems | None = "NONE",
1965
+ color: bpy.stub_internal.rna_enums.StripColorItems | None = "NONE",
1966
1966
  ):
1967
1967
  """Set a color tag for the selected strips
1968
1968
 
1969
1969
  :type execution_context: int | str | None
1970
1970
  :type undo: bool | None
1971
1971
  :param color: Color Tag
1972
- :type color: bpy._typing.rna_enums.StripColorItems | None
1972
+ :type color: bpy.stub_internal.rna_enums.StripColorItems | None
1973
1973
  """
1974
1974
 
1975
1975
  def strip_jump(
@@ -2,7 +2,7 @@ import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
4
  import numpy.typing as npt
5
- import bpy._typing.rna_enums
5
+ import bpy.stub_internal.rna_enums
6
6
 
7
7
  def bake_animation(
8
8
  execution_context: int | str | None = None, undo: bool | None = None
@@ -468,7 +468,7 @@ def unpack(
468
468
  undo: bool | None = None,
469
469
  /,
470
470
  *,
471
- method: bpy._typing.rna_enums.UnpackMethodItems | None = "USE_LOCAL",
471
+ method: bpy.stub_internal.rna_enums.UnpackMethodItems | None = "USE_LOCAL",
472
472
  id: str = "",
473
473
  ):
474
474
  """Unpack the sound to the samples filename
@@ -476,7 +476,7 @@ def unpack(
476
476
  :type execution_context: int | str | None
477
477
  :type undo: bool | None
478
478
  :param method: Method, How to unpack
479
- :type method: bpy._typing.rna_enums.UnpackMethodItems | None
479
+ :type method: bpy.stub_internal.rna_enums.UnpackMethodItems | None
480
480
  :param id: Sound Name, Sound data-block name to unpack
481
481
  :type id: str
482
482
  """