fake-bpy-module 20240802__py3-none-any.whl → 20240804__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 (73) hide show
  1. aud/__init__.pyi +77 -77
  2. bmesh/ops/__init__.pyi +54 -36
  3. bmesh/types/__init__.pyi +24 -24
  4. bpy/ops/action/__init__.pyi +55 -32
  5. bpy/ops/anim/__init__.pyi +22 -22
  6. bpy/ops/armature/__init__.pyi +47 -20
  7. bpy/ops/asset/__init__.pyi +5 -2
  8. bpy/ops/boid/__init__.pyi +12 -2
  9. bpy/ops/brush/__init__.pyi +18 -12
  10. bpy/ops/buttons/__init__.pyi +10 -4
  11. bpy/ops/cachefile/__init__.pyi +12 -6
  12. bpy/ops/clip/__init__.pyi +54 -38
  13. bpy/ops/console/__init__.pyi +17 -6
  14. bpy/ops/constraint/__init__.pyi +28 -28
  15. bpy/ops/curve/__init__.pyi +72 -34
  16. bpy/ops/curves/__init__.pyi +16 -16
  17. bpy/ops/dpaint/__init__.pyi +4 -4
  18. bpy/ops/ed/__init__.pyi +5 -2
  19. bpy/ops/export_anim/__init__.pyi +3 -2
  20. bpy/ops/export_scene/__init__.pyi +55 -45
  21. bpy/ops/file/__init__.pyi +40 -16
  22. bpy/ops/font/__init__.pyi +59 -16
  23. bpy/ops/geometry/__init__.pyi +55 -20
  24. bpy/ops/gpencil/__init__.pyi +155 -122
  25. bpy/ops/graph/__init__.pyi +131 -52
  26. bpy/ops/grease_pencil/__init__.pyi +96 -58
  27. bpy/ops/image/__init__.pyi +77 -54
  28. bpy/ops/import_anim/__init__.pyi +11 -8
  29. bpy/ops/import_scene/__init__.pyi +20 -18
  30. bpy/ops/info/__init__.pyi +4 -4
  31. bpy/ops/lattice/__init__.pyi +8 -8
  32. bpy/ops/marker/__init__.pyi +6 -6
  33. bpy/ops/mask/__init__.pyi +13 -12
  34. bpy/ops/mball/__init__.pyi +6 -6
  35. bpy/ops/mesh/__init__.pyi +290 -150
  36. bpy/ops/nla/__init__.pyi +28 -20
  37. bpy/ops/node/__init__.pyi +43 -32
  38. bpy/ops/object/__init__.pyi +651 -210
  39. bpy/ops/outliner/__init__.pyi +113 -32
  40. bpy/ops/paint/__init__.pyi +65 -56
  41. bpy/ops/palette/__init__.pyi +4 -4
  42. bpy/ops/particle/__init__.pyi +14 -14
  43. bpy/ops/pose/__init__.pyi +121 -44
  44. bpy/ops/preferences/__init__.pyi +9 -6
  45. bpy/ops/render/__init__.pyi +3 -2
  46. bpy/ops/rigidbody/__init__.pyi +45 -14
  47. bpy/ops/scene/__init__.pyi +69 -22
  48. bpy/ops/screen/__init__.pyi +78 -16
  49. bpy/ops/sculpt/__init__.pyi +131 -74
  50. bpy/ops/sculpt_curves/__init__.pyi +2 -2
  51. bpy/ops/sequencer/__init__.pyi +156 -60
  52. bpy/ops/sound/__init__.pyi +40 -16
  53. bpy/ops/surface/__init__.pyi +12 -12
  54. bpy/ops/text/__init__.pyi +65 -20
  55. bpy/ops/texture/__init__.pyi +2 -2
  56. bpy/ops/transform/__init__.pyi +344 -72
  57. bpy/ops/ui/__init__.pyi +9 -6
  58. bpy/ops/uilist/__init__.pyi +2 -2
  59. bpy/ops/uv/__init__.pyi +90 -66
  60. bpy/ops/view3d/__init__.pyi +36 -30
  61. bpy/ops/wm/__init__.pyi +443 -156
  62. bpy/types/__init__.pyi +56103 -30890
  63. {fake_bpy_module-20240802.dist-info → fake_bpy_module-20240804.dist-info}/METADATA +1 -1
  64. {fake_bpy_module-20240802.dist-info → fake_bpy_module-20240804.dist-info}/RECORD +73 -73
  65. freestyle/chainingiterators/__init__.pyi +4 -4
  66. freestyle/types/__init__.pyi +76 -63
  67. freestyle/utils/__init__.pyi +1 -1
  68. idprop/types/__init__.pyi +2 -2
  69. imbuf/types/__init__.pyi +2 -2
  70. mathutils/__init__.pyi +1004 -970
  71. mathutils/bvhtree/__init__.pyi +2 -2
  72. {fake_bpy_module-20240802.dist-info → fake_bpy_module-20240804.dist-info}/WHEEL +0 -0
  73. {fake_bpy_module-20240802.dist-info → fake_bpy_module-20240804.dist-info}/top_level.txt +0 -0
@@ -11,7 +11,7 @@ def flip(
11
11
  execution_context: int | str | None = None,
12
12
  undo: bool | None = None,
13
13
  *,
14
- axis: str | None = "U",
14
+ axis: typing.Literal["U", "V", "W"] | None = "U",
15
15
  ):
16
16
  """Mirror all control points without inverting the lattice deform
17
17
 
@@ -19,7 +19,7 @@ def flip(
19
19
  :type execution_context: int | str | None
20
20
  :type undo: bool | None
21
21
  :param axis: Flip Axis, Coordinates along this axis get flipped
22
- :type axis: str | None
22
+ :type axis: typing.Literal['U','V','W'] | None
23
23
  """
24
24
 
25
25
  ...
@@ -43,7 +43,7 @@ def select_all(
43
43
  execution_context: int | str | None = None,
44
44
  undo: bool | None = None,
45
45
  *,
46
- action: str | None = "TOGGLE",
46
+ action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "TOGGLE",
47
47
  ):
48
48
  """Change selection of all UVW control points
49
49
 
@@ -63,7 +63,7 @@ def select_all(
63
63
 
64
64
  INVERT
65
65
  Invert -- Invert selection of all elements.
66
- :type action: str | None
66
+ :type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
67
67
  """
68
68
 
69
69
  ...
@@ -87,7 +87,7 @@ def select_mirror(
87
87
  execution_context: int | str | None = None,
88
88
  undo: bool | None = None,
89
89
  *,
90
- axis: set[str] | None = {"X"},
90
+ axis: set[typing.Literal["X", "Y", "Z"]] | None = {"X"},
91
91
  extend: bool | None = False,
92
92
  ):
93
93
  """Select mirrored lattice points
@@ -96,7 +96,7 @@ def select_mirror(
96
96
  :type execution_context: int | str | None
97
97
  :type undo: bool | None
98
98
  :param axis: Axis
99
- :type axis: set[str] | None
99
+ :type axis: set[typing.Literal['X', 'Y', 'Z']] | None
100
100
  :param extend: Extend, Extend the selection
101
101
  :type extend: bool | None
102
102
  """
@@ -124,7 +124,7 @@ def select_random(
124
124
  *,
125
125
  ratio: float | None = 0.5,
126
126
  seed: int | None = 0,
127
- action: str | None = "SELECT",
127
+ action: typing.Literal["SELECT", "DESELECT"] | None = "SELECT",
128
128
  ):
129
129
  """Randomly select UVW control points
130
130
 
@@ -142,7 +142,7 @@ def select_random(
142
142
 
143
143
  DESELECT
144
144
  Deselect -- Deselect all elements.
145
- :type action: str | None
145
+ :type action: typing.Literal['SELECT','DESELECT'] | None
146
146
  """
147
147
 
148
148
  ...
@@ -162,7 +162,7 @@ def select_all(
162
162
  execution_context: int | str | None = None,
163
163
  undo: bool | None = None,
164
164
  *,
165
- action: str | None = "TOGGLE",
165
+ action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "TOGGLE",
166
166
  ):
167
167
  """Change selection of all time markers
168
168
 
@@ -182,7 +182,7 @@ def select_all(
182
182
 
183
183
  INVERT
184
184
  Invert -- Invert selection of all elements.
185
- :type action: str | None
185
+ :type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
186
186
  """
187
187
 
188
188
  ...
@@ -197,7 +197,7 @@ def select_box(
197
197
  ymin: int | None = 0,
198
198
  ymax: int | None = 0,
199
199
  wait_for_input: bool | None = True,
200
- mode: str | None = "SET",
200
+ mode: typing.Literal["SET", "ADD", "SUB"] | None = "SET",
201
201
  tweak: bool | None = False,
202
202
  ):
203
203
  """Select all time markers using box selection
@@ -225,7 +225,7 @@ def select_box(
225
225
 
226
226
  SUB
227
227
  Subtract -- Subtract existing selection.
228
- :type mode: str | None
228
+ :type mode: typing.Literal['SET','ADD','SUB'] | None
229
229
  :param tweak: Tweak, Operator has been activated using a click-drag event
230
230
  :type tweak: bool | None
231
231
  """
@@ -237,7 +237,7 @@ def select_leftright(
237
237
  execution_context: int | str | None = None,
238
238
  undo: bool | None = None,
239
239
  *,
240
- mode: str | None = "LEFT",
240
+ mode: typing.Literal["LEFT", "RIGHT"] | None = "LEFT",
241
241
  extend: bool | None = False,
242
242
  ):
243
243
  """Select markers on and left/right of the current frame
@@ -246,7 +246,7 @@ def select_leftright(
246
246
  :type execution_context: int | str | None
247
247
  :type undo: bool | None
248
248
  :param mode: Mode
249
- :type mode: str | None
249
+ :type mode: typing.Literal['LEFT','RIGHT'] | None
250
250
  :param extend: Extend Select
251
251
  :type extend: bool | None
252
252
  """
bpy/ops/mask/__init__.pyi CHANGED
@@ -186,7 +186,8 @@ def handle_type_set(
186
186
  execution_context: int | str | None = None,
187
187
  undo: bool | None = None,
188
188
  *,
189
- type: str | None = "AUTO",
189
+ type: typing.Literal["AUTO", "VECTOR", "ALIGNED", "ALIGNED_DOUBLESIDE", "FREE"]
190
+ | None = "AUTO",
190
191
  ):
191
192
  """Set type of handles for selected control points
192
193
 
@@ -194,7 +195,7 @@ def handle_type_set(
194
195
  :type execution_context: int | str | None
195
196
  :type undo: bool | None
196
197
  :param type: Type, Spline type
197
- :type type: str | None
198
+ :type type: typing.Literal['AUTO','VECTOR','ALIGNED','ALIGNED_DOUBLESIDE','FREE'] | None
198
199
  """
199
200
 
200
201
  ...
@@ -240,7 +241,7 @@ def layer_move(
240
241
  execution_context: int | str | None = None,
241
242
  undo: bool | None = None,
242
243
  *,
243
- direction: str | None = "UP",
244
+ direction: typing.Literal["UP", "DOWN"] | None = "UP",
244
245
  ):
245
246
  """Move the active layer up/down in the list
246
247
 
@@ -248,7 +249,7 @@ def layer_move(
248
249
  :type execution_context: int | str | None
249
250
  :type undo: bool | None
250
251
  :param direction: Direction, Direction to move the active layer
251
- :type direction: str | None
252
+ :type direction: typing.Literal['UP','DOWN'] | None
252
253
  """
253
254
 
254
255
  ...
@@ -439,7 +440,7 @@ def select_all(
439
440
  execution_context: int | str | None = None,
440
441
  undo: bool | None = None,
441
442
  *,
442
- action: str | None = "TOGGLE",
443
+ action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "TOGGLE",
443
444
  ):
444
445
  """Change selection of all curve points
445
446
 
@@ -459,7 +460,7 @@ def select_all(
459
460
 
460
461
  INVERT
461
462
  Invert -- Invert selection of all elements.
462
- :type action: str | None
463
+ :type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
463
464
  """
464
465
 
465
466
  ...
@@ -474,7 +475,7 @@ def select_box(
474
475
  ymin: int | None = 0,
475
476
  ymax: int | None = 0,
476
477
  wait_for_input: bool | None = True,
477
- mode: str | None = "SET",
478
+ mode: typing.Literal["SET", "ADD", "SUB"] | None = "SET",
478
479
  ):
479
480
  """Select curve points using box selection
480
481
 
@@ -501,7 +502,7 @@ def select_box(
501
502
 
502
503
  SUB
503
504
  Subtract -- Subtract existing selection.
504
- :type mode: str | None
505
+ :type mode: typing.Literal['SET','ADD','SUB'] | None
505
506
  """
506
507
 
507
508
  ...
@@ -515,7 +516,7 @@ def select_circle(
515
516
  y: int | None = 0,
516
517
  radius: int | None = 25,
517
518
  wait_for_input: bool | None = True,
518
- mode: str | None = "SET",
519
+ mode: typing.Literal["SET", "ADD", "SUB"] | None = "SET",
519
520
  ):
520
521
  """Select curve points using circle selection
521
522
 
@@ -540,7 +541,7 @@ def select_circle(
540
541
 
541
542
  SUB
542
543
  Subtract -- Subtract existing selection.
543
- :type mode: str | None
544
+ :type mode: typing.Literal['SET','ADD','SUB'] | None
544
545
  """
545
546
 
546
547
  ...
@@ -554,7 +555,7 @@ def select_lasso(
554
555
  use_smooth_stroke: bool | None = False,
555
556
  smooth_stroke_factor: float | None = 0.75,
556
557
  smooth_stroke_radius: int | None = 35,
557
- mode: str | None = "SET",
558
+ mode: typing.Literal["SET", "ADD", "SUB"] | None = "SET",
558
559
  ):
559
560
  """Select curve points using lasso selection
560
561
 
@@ -579,7 +580,7 @@ def select_lasso(
579
580
 
580
581
  SUB
581
582
  Subtract -- Subtract existing selection.
582
- :type mode: str | None
583
+ :type mode: typing.Literal['SET','ADD','SUB'] | None
583
584
  """
584
585
 
585
586
  ...
@@ -101,7 +101,7 @@ def select_all(
101
101
  execution_context: int | str | None = None,
102
102
  undo: bool | None = None,
103
103
  *,
104
- action: str | None = "TOGGLE",
104
+ action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "TOGGLE",
105
105
  ):
106
106
  """Change selection of all metaball elements
107
107
 
@@ -121,7 +121,7 @@ def select_all(
121
121
 
122
122
  INVERT
123
123
  Invert -- Invert selection of all elements.
124
- :type action: str | None
124
+ :type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
125
125
  """
126
126
 
127
127
  ...
@@ -133,7 +133,7 @@ def select_random_metaelems(
133
133
  *,
134
134
  ratio: float | None = 0.5,
135
135
  seed: int | None = 0,
136
- action: str | None = "SELECT",
136
+ action: typing.Literal["SELECT", "DESELECT"] | None = "SELECT",
137
137
  ):
138
138
  """Randomly select metaball elements
139
139
 
@@ -151,7 +151,7 @@ def select_random_metaelems(
151
151
 
152
152
  DESELECT
153
153
  Deselect -- Deselect all elements.
154
- :type action: str | None
154
+ :type action: typing.Literal['SELECT','DESELECT'] | None
155
155
  """
156
156
 
157
157
  ...
@@ -161,7 +161,7 @@ def select_similar(
161
161
  execution_context: int | str | None = None,
162
162
  undo: bool | None = None,
163
163
  *,
164
- type: str | None = "TYPE",
164
+ type: typing.Literal["TYPE", "RADIUS", "STIFFNESS", "ROTATION"] | None = "TYPE",
165
165
  threshold: float | None = 0.1,
166
166
  ):
167
167
  """Select similar metaballs by property types
@@ -170,7 +170,7 @@ def select_similar(
170
170
  :type execution_context: int | str | None
171
171
  :type undo: bool | None
172
172
  :param type: Type
173
- :type type: str | None
173
+ :type type: typing.Literal['TYPE','RADIUS','STIFFNESS','ROTATION'] | None
174
174
  :param threshold: Threshold
175
175
  :type threshold: float | None
176
176
  """