fake-bpy-module 20250104__py3-none-any.whl → 20250109__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.
Files changed (46) hide show
  1. bgl/__init__.pyi +2 -2
  2. bl_ui/node_add_menu_shader/__init__.pyi +0 -1
  3. bl_ui/properties_data_camera/__init__.pyi +0 -2
  4. bl_ui/space_node/__init__.pyi +0 -1
  5. bpy/__init__.pyi +0 -1
  6. bpy/_typing/__init__.pyi +4 -0
  7. bpy/{typing → _typing/rna_enums}/__init__.pyi +9 -9
  8. bpy/app/__init__.pyi +3 -3
  9. bpy/ops/action/__init__.pyi +13 -13
  10. bpy/ops/boid/__init__.pyi +3 -3
  11. bpy/ops/brush/__init__.pyi +3 -3
  12. bpy/ops/clip/__init__.pyi +3 -3
  13. bpy/ops/curve/__init__.pyi +5 -5
  14. bpy/ops/curves/__init__.pyi +9 -9
  15. bpy/ops/dpaint/__init__.pyi +3 -3
  16. bpy/ops/geometry/__init__.pyi +19 -19
  17. bpy/ops/graph/__init__.pyi +17 -17
  18. bpy/ops/grease_pencil/__init__.pyi +9 -27
  19. bpy/ops/image/__init__.pyi +9 -9
  20. bpy/ops/lattice/__init__.pyi +3 -3
  21. bpy/ops/mesh/__init__.pyi +54 -43
  22. bpy/ops/nla/__init__.pyi +3 -3
  23. bpy/ops/node/__init__.pyi +3 -3
  24. bpy/ops/object/__init__.pyi +69 -69
  25. bpy/ops/outliner/__init__.pyi +5 -5
  26. bpy/ops/paint/__init__.pyi +7 -7
  27. bpy/ops/pose/__init__.pyi +13 -13
  28. bpy/ops/rigidbody/__init__.pyi +9 -9
  29. bpy/ops/scene/__init__.pyi +10 -9
  30. bpy/ops/screen/__init__.pyi +7 -7
  31. bpy/ops/sequencer/__init__.pyi +3 -3
  32. bpy/ops/sound/__init__.pyi +3 -3
  33. bpy/ops/transform/__init__.pyi +87 -73
  34. bpy/ops/uv/__init__.pyi +9 -9
  35. bpy/ops/wm/__init__.pyi +18 -15
  36. bpy/props/__init__.pyi +63 -63
  37. bpy/types/__init__.pyi +32616 -32500
  38. bpy/utils/__init__.pyi +29 -10
  39. {fake_bpy_module-20250104.dist-info → fake_bpy_module-20250109.dist-info}/METADATA +2 -2
  40. {fake_bpy_module-20250104.dist-info → fake_bpy_module-20250109.dist-info}/RECORD +46 -45
  41. {fake_bpy_module-20250104.dist-info → fake_bpy_module-20250109.dist-info}/WHEEL +1 -1
  42. freestyle/shaders/__init__.pyi +5 -1
  43. freestyle/types/__init__.pyi +5 -2
  44. freestyle/utils/__init__.pyi +1 -1
  45. gpu_extras/batch/__init__.pyi +2 -3
  46. {fake_bpy_module-20250104.dist-info → fake_bpy_module-20250109.dist-info}/top_level.txt +0 -0
@@ -1,9 +1,9 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
+ import bpy._typing.rna_enums
4
5
  import bpy.ops.transform
5
6
  import bpy.types
6
- import bpy.typing
7
7
 
8
8
  def bake_keys(execution_context: int | str | None = None, undo: bool | None = None):
9
9
  """Add keyframes on every frame between the selected keyframes
@@ -291,14 +291,14 @@ def duplicate(
291
291
  undo: bool | None = None,
292
292
  /,
293
293
  *,
294
- mode: bpy.typing.TransformModeTypeItems | None = "TRANSLATION",
294
+ mode: bpy._typing.rna_enums.TransformModeTypeItems | None = "TRANSLATION",
295
295
  ):
296
296
  """Make a copy of all selected keyframes
297
297
 
298
298
  :type execution_context: int | str | None
299
299
  :type undo: bool | None
300
300
  :param mode: Mode
301
- :type mode: bpy.typing.TransformModeTypeItems | None
301
+ :type mode: bpy._typing.rna_enums.TransformModeTypeItems | None
302
302
  """
303
303
 
304
304
  def duplicate_move(
@@ -342,14 +342,14 @@ def easing_type(
342
342
  undo: bool | None = None,
343
343
  /,
344
344
  *,
345
- type: bpy.typing.BeztripleInterpolationEasingItems | None = "AUTO",
345
+ type: bpy._typing.rna_enums.BeztripleInterpolationEasingItems | None = "AUTO",
346
346
  ):
347
347
  """Set easing type for the F-Curve segments starting from the selected keyframes
348
348
 
349
349
  :type execution_context: int | str | None
350
350
  :type undo: bool | None
351
351
  :param type: Type
352
- :type type: bpy.typing.BeztripleInterpolationEasingItems | None
352
+ :type type: bpy._typing.rna_enums.BeztripleInterpolationEasingItems | None
353
353
  """
354
354
 
355
355
  def equalize_handles(
@@ -422,7 +422,7 @@ def fmodifier_add(
422
422
  undo: bool | None = None,
423
423
  /,
424
424
  *,
425
- type: bpy.typing.FmodifierTypeItems | None = "NULL",
425
+ type: bpy._typing.rna_enums.FmodifierTypeItems | None = "NULL",
426
426
  only_active: bool | None = False,
427
427
  ):
428
428
  """Add F-Modifier to the active/selected F-Curves
@@ -430,7 +430,7 @@ def fmodifier_add(
430
430
  :type execution_context: int | str | None
431
431
  :type undo: bool | None
432
432
  :param type: Type
433
- :type type: bpy.typing.FmodifierTypeItems | None
433
+ :type type: bpy._typing.rna_enums.FmodifierTypeItems | None
434
434
  :param only_active: Only Active, Only add F-Modifier to active F-Curve
435
435
  :type only_active: bool | None
436
436
  """
@@ -513,14 +513,14 @@ def handle_type(
513
513
  undo: bool | None = None,
514
514
  /,
515
515
  *,
516
- type: bpy.typing.KeyframeHandleTypeItems | None = "FREE",
516
+ type: bpy._typing.rna_enums.KeyframeHandleTypeItems | None = "FREE",
517
517
  ):
518
518
  """Set type of handle for selected keyframes
519
519
 
520
520
  :type execution_context: int | str | None
521
521
  :type undo: bool | None
522
522
  :param type: Type
523
- :type type: bpy.typing.KeyframeHandleTypeItems | None
523
+ :type type: bpy._typing.rna_enums.KeyframeHandleTypeItems | None
524
524
  """
525
525
 
526
526
  def hide(
@@ -543,14 +543,14 @@ def interpolation_type(
543
543
  undo: bool | None = None,
544
544
  /,
545
545
  *,
546
- type: bpy.typing.BeztripleInterpolationModeItems | None = "CONSTANT",
546
+ type: bpy._typing.rna_enums.BeztripleInterpolationModeItems | None = "CONSTANT",
547
547
  ):
548
548
  """Set interpolation mode for the F-Curve segments starting from the selected keyframes
549
549
 
550
550
  :type execution_context: int | str | None
551
551
  :type undo: bool | None
552
552
  :param type: Type
553
- :type type: bpy.typing.BeztripleInterpolationModeItems | None
553
+ :type type: bpy._typing.rna_enums.BeztripleInterpolationModeItems | None
554
554
  """
555
555
 
556
556
  def keyframe_insert(
@@ -658,9 +658,9 @@ def paste(
658
658
  undo: bool | None = None,
659
659
  /,
660
660
  *,
661
- offset: bpy.typing.KeyframePasteOffsetItems | None = "START",
662
- value_offset: bpy.typing.KeyframePasteOffsetValueItems | None = "NONE",
663
- merge: bpy.typing.KeyframePasteMergeItems | None = "MIX",
661
+ offset: bpy._typing.rna_enums.KeyframePasteOffsetItems | None = "START",
662
+ value_offset: bpy._typing.rna_enums.KeyframePasteOffsetValueItems | None = "NONE",
663
+ merge: bpy._typing.rna_enums.KeyframePasteMergeItems | None = "MIX",
664
664
  flipped: bool | None = False,
665
665
  ):
666
666
  """Paste keyframes from the internal clipboard for the selected channels, starting on the current frame
@@ -668,11 +668,11 @@ def paste(
668
668
  :type execution_context: int | str | None
669
669
  :type undo: bool | None
670
670
  :param offset: Frame Offset, Paste time offset of keys
671
- :type offset: bpy.typing.KeyframePasteOffsetItems | None
671
+ :type offset: bpy._typing.rna_enums.KeyframePasteOffsetItems | None
672
672
  :param value_offset: Value Offset, Paste keys with a value offset
673
- :type value_offset: bpy.typing.KeyframePasteOffsetValueItems | None
673
+ :type value_offset: bpy._typing.rna_enums.KeyframePasteOffsetValueItems | None
674
674
  :param merge: Type, Method of merging pasted keys and existing
675
- :type merge: bpy.typing.KeyframePasteMergeItems | None
675
+ :type merge: bpy._typing.rna_enums.KeyframePasteMergeItems | None
676
676
  :param flipped: Flipped, Paste keyframes from mirrored bones if they exist
677
677
  :type flipped: bool | None
678
678
  """
@@ -1,9 +1,9 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
+ import bpy._typing.rna_enums
4
5
  import bpy.ops.transform
5
6
  import bpy.types
6
- import bpy.typing
7
7
 
8
8
  def active_frame_delete(
9
9
  execution_context: int | str | None = None,
@@ -445,7 +445,7 @@ def interpolate_sequence(
445
445
  "ELASTIC",
446
446
  ]
447
447
  | None = "LINEAR",
448
- easing: bpy.typing.BeztripleInterpolationEasingItems | None = "EASE_IN",
448
+ easing: bpy._typing.rna_enums.BeztripleInterpolationEasingItems | None = "EASE_IN",
449
449
  back: float | None = 1.702,
450
450
  amplitude: float | None = 0.15,
451
451
  period: float | None = 0.15,
@@ -505,7 +505,7 @@ def interpolate_sequence(
505
505
  Elastic -- Exponentially decaying sine wave, like an elastic band.
506
506
  :type type: typing.Literal['LINEAR','CUSTOM','SINE','QUAD','CUBIC','QUART','QUINT','EXPO','CIRC','BACK','BOUNCE','ELASTIC'] | None
507
507
  :param easing: Easing, Which ends of the segment between the preceding and following Grease Pencil frames easing interpolation is applied to
508
- :type easing: bpy.typing.BeztripleInterpolationEasingItems | None
508
+ :type easing: bpy._typing.rna_enums.BeztripleInterpolationEasingItems | None
509
509
  :param back: Back, Amount of overshoot for 'back' easing
510
510
  :type back: float | None
511
511
  :param amplitude: Amplitude, Amount to boost elastic bounces for 'elastic' easing
@@ -784,24 +784,6 @@ def layer_remove(execution_context: int | str | None = None, undo: bool | None =
784
784
  :type undo: bool | None
785
785
  """
786
786
 
787
- def layer_reorder(
788
- execution_context: int | str | None = None,
789
- undo: bool | None = None,
790
- /,
791
- *,
792
- target_layer_name: str = "Layer",
793
- location: typing.Literal["ABOVE", "BELOW"] | None = "ABOVE",
794
- ):
795
- """Reorder the active Grease Pencil layer
796
-
797
- :type execution_context: int | str | None
798
- :type undo: bool | None
799
- :param target_layer_name: Target Name, Name of the target layer
800
- :type target_layer_name: str
801
- :param location: Location
802
- :type location: typing.Literal['ABOVE','BELOW'] | None
803
- """
804
-
805
787
  def layer_reveal(execution_context: int | str | None = None, undo: bool | None = None):
806
788
  """Show all Grease Pencil layers
807
789
 
@@ -1370,7 +1352,7 @@ def set_curve_type(
1370
1352
  undo: bool | None = None,
1371
1353
  /,
1372
1354
  *,
1373
- type: bpy.typing.CurvesTypeItems | None = "POLY",
1355
+ type: bpy._typing.rna_enums.CurvesTypeItems | None = "POLY",
1374
1356
  use_handles: bool | None = False,
1375
1357
  ):
1376
1358
  """Set type of selected curves
@@ -1378,7 +1360,7 @@ def set_curve_type(
1378
1360
  :type execution_context: int | str | None
1379
1361
  :type undo: bool | None
1380
1362
  :param type: Type, Curve type
1381
- :type type: bpy.typing.CurvesTypeItems | None
1363
+ :type type: bpy._typing.rna_enums.CurvesTypeItems | None
1382
1364
  :param use_handles: Handles, Take handle information into account in the conversion
1383
1365
  :type use_handles: bool | None
1384
1366
  """
@@ -1388,14 +1370,14 @@ def set_handle_type(
1388
1370
  undo: bool | None = None,
1389
1371
  /,
1390
1372
  *,
1391
- type: bpy.typing.CurvesHandleTypeItems | None = "AUTO",
1373
+ type: bpy._typing.rna_enums.CurvesHandleTypeItems | None = "AUTO",
1392
1374
  ):
1393
1375
  """Set the handle type for bezier curves
1394
1376
 
1395
1377
  :type execution_context: int | str | None
1396
1378
  :type undo: bool | None
1397
1379
  :param type: Type
1398
- :type type: bpy.typing.CurvesHandleTypeItems | None
1380
+ :type type: bpy._typing.rna_enums.CurvesHandleTypeItems | None
1399
1381
  """
1400
1382
 
1401
1383
  def set_material(
@@ -1418,14 +1400,14 @@ def set_selection_mode(
1418
1400
  undo: bool | None = None,
1419
1401
  /,
1420
1402
  *,
1421
- mode: bpy.typing.GreasePencilSelectmodeItems | None = "POINT",
1403
+ mode: bpy._typing.rna_enums.GreasePencilSelectmodeItems | None = "POINT",
1422
1404
  ):
1423
1405
  """Change the selection mode for Grease Pencil strokes
1424
1406
 
1425
1407
  :type execution_context: int | str | None
1426
1408
  :type undo: bool | None
1427
1409
  :param mode: Mode
1428
- :type mode: bpy.typing.GreasePencilSelectmodeItems | None
1410
+ :type mode: bpy._typing.rna_enums.GreasePencilSelectmodeItems | None
1429
1411
  """
1430
1412
 
1431
1413
  def set_start_point(
@@ -1,8 +1,8 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
+ import bpy._typing.rna_enums
4
5
  import bpy.types
5
- import bpy.typing
6
6
  import mathutils
7
7
 
8
8
  def add_render_slot(
@@ -659,7 +659,7 @@ def new(
659
659
  height: int | None = 1024,
660
660
  color: collections.abc.Iterable[float] | None = (0.0, 0.0, 0.0, 1.0),
661
661
  alpha: bool | None = True,
662
- generated_type: bpy.typing.ImageGeneratedTypeItems | None = "BLANK",
662
+ generated_type: bpy._typing.rna_enums.ImageGeneratedTypeItems | None = "BLANK",
663
663
  float: bool | None = False,
664
664
  use_stereo_3d: bool | None = False,
665
665
  tiled: bool | None = False,
@@ -679,7 +679,7 @@ def new(
679
679
  :param alpha: Alpha, Create an image with an alpha channel
680
680
  :type alpha: bool | None
681
681
  :param generated_type: Generated Type, Fill the image with a grid for UV map testing
682
- :type generated_type: bpy.typing.ImageGeneratedTypeItems | None
682
+ :type generated_type: bpy._typing.rna_enums.ImageGeneratedTypeItems | None
683
683
  :param float: 32-bit Float, Create image with 32-bit floating-point bit depth
684
684
  :type float: bool | None
685
685
  :param use_stereo_3d: Stereo 3D, Create an image with left and right views
@@ -1243,7 +1243,7 @@ def tile_add(
1243
1243
  label: str = "",
1244
1244
  fill: bool | None = True,
1245
1245
  color: collections.abc.Iterable[float] | None = (0.0, 0.0, 0.0, 1.0),
1246
- generated_type: bpy.typing.ImageGeneratedTypeItems | None = "BLANK",
1246
+ generated_type: bpy._typing.rna_enums.ImageGeneratedTypeItems | None = "BLANK",
1247
1247
  width: int | None = 1024,
1248
1248
  height: int | None = 1024,
1249
1249
  float: bool | None = False,
@@ -1264,7 +1264,7 @@ def tile_add(
1264
1264
  :param color: Color, Default fill color
1265
1265
  :type color: collections.abc.Iterable[float] | None
1266
1266
  :param generated_type: Generated Type, Fill the image with a grid for UV map testing
1267
- :type generated_type: bpy.typing.ImageGeneratedTypeItems | None
1267
+ :type generated_type: bpy._typing.rna_enums.ImageGeneratedTypeItems | None
1268
1268
  :param width: Width, Image width
1269
1269
  :type width: int | None
1270
1270
  :param height: Height, Image height
@@ -1281,7 +1281,7 @@ def tile_fill(
1281
1281
  /,
1282
1282
  *,
1283
1283
  color: collections.abc.Iterable[float] | None = (0.0, 0.0, 0.0, 1.0),
1284
- generated_type: bpy.typing.ImageGeneratedTypeItems | None = "BLANK",
1284
+ generated_type: bpy._typing.rna_enums.ImageGeneratedTypeItems | None = "BLANK",
1285
1285
  width: int | None = 1024,
1286
1286
  height: int | None = 1024,
1287
1287
  float: bool | None = False,
@@ -1294,7 +1294,7 @@ def tile_fill(
1294
1294
  :param color: Color, Default fill color
1295
1295
  :type color: collections.abc.Iterable[float] | None
1296
1296
  :param generated_type: Generated Type, Fill the image with a grid for UV map testing
1297
- :type generated_type: bpy.typing.ImageGeneratedTypeItems | None
1297
+ :type generated_type: bpy._typing.rna_enums.ImageGeneratedTypeItems | None
1298
1298
  :param width: Width, Image width
1299
1299
  :type width: int | None
1300
1300
  :param height: Height, Image height
@@ -1317,7 +1317,7 @@ def unpack(
1317
1317
  undo: bool | None = None,
1318
1318
  /,
1319
1319
  *,
1320
- method: bpy.typing.UnpackMethodItems | None = "USE_LOCAL",
1320
+ method: bpy._typing.rna_enums.UnpackMethodItems | None = "USE_LOCAL",
1321
1321
  id: str = "",
1322
1322
  ):
1323
1323
  """Save an image packed in the .blend file to disk
@@ -1325,7 +1325,7 @@ def unpack(
1325
1325
  :type execution_context: int | str | None
1326
1326
  :type undo: bool | None
1327
1327
  :param method: Method, How to unpack
1328
- :type method: bpy.typing.UnpackMethodItems | None
1328
+ :type method: bpy._typing.rna_enums.UnpackMethodItems | None
1329
1329
  :param id: Image Name, Image data-block name to unpack
1330
1330
  :type id: str
1331
1331
  """
@@ -1,7 +1,7 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
- import bpy.typing
4
+ import bpy._typing.rna_enums
5
5
 
6
6
  def flip(
7
7
  execution_context: int | str | None = None,
@@ -64,7 +64,7 @@ def select_mirror(
64
64
  undo: bool | None = None,
65
65
  /,
66
66
  *,
67
- axis: set[bpy.typing.AxisFlagXyzItems] | None = {"X"},
67
+ axis: set[bpy._typing.rna_enums.AxisFlagXyzItems] | None = {"X"},
68
68
  extend: bool | None = False,
69
69
  ):
70
70
  """Select mirrored lattice points
@@ -72,7 +72,7 @@ def select_mirror(
72
72
  :type execution_context: int | str | None
73
73
  :type undo: bool | None
74
74
  :param axis: Axis
75
- :type axis: set[bpy.typing.AxisFlagXyzItems] | None
75
+ :type axis: set[bpy._typing.rna_enums.AxisFlagXyzItems] | None
76
76
  :param extend: Extend, Extend the selection
77
77
  :type extend: bool | None
78
78
  """