fake-bpy-module 20240620__py3-none-any.whl → 20240621__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 (77) hide show
  1. bl_ui/space_userpref/__init__.pyi +225 -0
  2. bpy/ops/action/__init__.pyi +50 -50
  3. bpy/ops/anim/__init__.pyi +94 -94
  4. bpy/ops/armature/__init__.pyi +54 -54
  5. bpy/ops/asset/__init__.pyi +50 -50
  6. bpy/ops/brush/__init__.pyi +10 -10
  7. bpy/ops/buttons/__init__.pyi +88 -88
  8. bpy/ops/cachefile/__init__.pyi +88 -88
  9. bpy/ops/camera/__init__.pyi +14 -14
  10. bpy/ops/clip/__init__.pyi +175 -174
  11. bpy/ops/cloth/__init__.pyi +6 -6
  12. bpy/ops/collection/__init__.pyi +8 -8
  13. bpy/ops/console/__init__.pyi +26 -26
  14. bpy/ops/constraint/__init__.pyi +42 -42
  15. bpy/ops/curve/__init__.pyi +167 -122
  16. bpy/ops/curves/__init__.pyi +75 -58
  17. bpy/ops/cycles/__init__.pyi +10 -10
  18. bpy/ops/ed/__init__.pyi +50 -50
  19. bpy/ops/export_anim/__init__.pyi +14 -14
  20. bpy/ops/export_scene/__init__.pyi +250 -250
  21. bpy/ops/extensions/__init__.pyi +73 -73
  22. bpy/ops/file/__init__.pyi +94 -94
  23. bpy/ops/fluid/__init__.pyi +6 -6
  24. bpy/ops/font/__init__.pyi +100 -100
  25. bpy/ops/geometry/__init__.pyi +20 -20
  26. bpy/ops/gizmogroup/__init__.pyi +10 -10
  27. bpy/ops/gpencil/__init__.pyi +411 -410
  28. bpy/ops/graph/__init__.pyi +194 -194
  29. bpy/ops/grease_pencil/__init__.pyi +100 -100
  30. bpy/ops/image/__init__.pyi +399 -390
  31. bpy/ops/import_anim/__init__.pyi +16 -16
  32. bpy/ops/import_curve/__init__.pyi +4 -4
  33. bpy/ops/import_scene/__init__.pyi +56 -56
  34. bpy/ops/info/__init__.pyi +14 -14
  35. bpy/ops/lattice/__init__.pyi +8 -8
  36. bpy/ops/marker/__init__.pyi +34 -34
  37. bpy/ops/mask/__init__.pyi +63 -62
  38. bpy/ops/mball/__init__.pyi +12 -12
  39. bpy/ops/mesh/__init__.pyi +893 -790
  40. bpy/ops/nla/__init__.pyi +70 -70
  41. bpy/ops/node/__init__.pyi +192 -192
  42. bpy/ops/object/__init__.pyi +1013 -840
  43. bpy/ops/outliner/__init__.pyi +44 -44
  44. bpy/ops/paint/__init__.pyi +169 -168
  45. bpy/ops/paintcurve/__init__.pyi +12 -12
  46. bpy/ops/palette/__init__.pyi +4 -4
  47. bpy/ops/particle/__init__.pyi +34 -34
  48. bpy/ops/pose/__init__.pyi +60 -60
  49. bpy/ops/poselib/__init__.pyi +18 -18
  50. bpy/ops/preferences/__init__.pyi +150 -150
  51. bpy/ops/ptcache/__init__.pyi +4 -4
  52. bpy/ops/render/__init__.pyi +56 -56
  53. bpy/ops/rigidbody/__init__.pyi +8 -8
  54. bpy/ops/scene/__init__.pyi +20 -20
  55. bpy/ops/screen/__init__.pyi +128 -128
  56. bpy/ops/script/__init__.pyi +6 -6
  57. bpy/ops/sculpt/__init__.pyi +207 -202
  58. bpy/ops/sculpt_curves/__init__.pyi +12 -12
  59. bpy/ops/sequencer/__init__.pyi +465 -464
  60. bpy/ops/sound/__init__.pyi +154 -154
  61. bpy/ops/spreadsheet/__init__.pyi +6 -6
  62. bpy/ops/surface/__init__.pyi +109 -60
  63. bpy/ops/text/__init__.pyi +110 -110
  64. bpy/ops/text_editor/__init__.pyi +6 -6
  65. bpy/ops/transform/__init__.pyi +628 -566
  66. bpy/ops/ui/__init__.pyi +25 -24
  67. bpy/ops/uilist/__init__.pyi +12 -12
  68. bpy/ops/uv/__init__.pyi +235 -234
  69. bpy/ops/view2d/__init__.pyi +72 -72
  70. bpy/ops/view3d/__init__.pyi +144 -144
  71. bpy/ops/wm/__init__.pyi +1813 -1806
  72. bpy/ops/workspace/__init__.pyi +4 -4
  73. bpy/types/__init__.pyi +1611 -1802
  74. {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/METADATA +1 -1
  75. {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/RECORD +77 -77
  76. {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/WHEEL +0 -0
  77. {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/top_level.txt +0 -0
bpy/ops/node/__init__.pyi CHANGED
@@ -12,8 +12,8 @@ def add_collection(
12
12
  execution_context: int | str | None = None,
13
13
  undo: bool | None = None,
14
14
  *,
15
- name: str | typing.Any = "",
16
- session_uid: typing.Any | None = 0,
15
+ name: str = "",
16
+ session_uid: int | None = 0,
17
17
  ):
18
18
  """Add a collection info node to the current node editor
19
19
 
@@ -21,9 +21,9 @@ def add_collection(
21
21
  :type execution_context: int | str | None
22
22
  :type undo: bool | None
23
23
  :param name: Name, Name of the data-block to use by the operator
24
- :type name: str | typing.Any
24
+ :type name: str
25
25
  :param session_uid: Session UID, Session UID of the data-block to use by the operator
26
- :type session_uid: typing.Any | None
26
+ :type session_uid: int | None
27
27
  """
28
28
 
29
29
  ...
@@ -33,37 +33,37 @@ def add_file(
33
33
  execution_context: int | str | None = None,
34
34
  undo: bool | None = None,
35
35
  *,
36
- filepath: str | typing.Any = "",
37
- directory: str | typing.Any = "",
36
+ filepath: str = "",
37
+ directory: str = "",
38
38
  files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
39
39
  | None = None,
40
- hide_props_region: bool | typing.Any | None = True,
41
- check_existing: bool | typing.Any | None = False,
42
- filter_blender: bool | typing.Any | None = False,
43
- filter_backup: bool | typing.Any | None = False,
44
- filter_image: bool | typing.Any | None = True,
45
- filter_movie: bool | typing.Any | None = True,
46
- filter_python: bool | typing.Any | None = False,
47
- filter_font: bool | typing.Any | None = False,
48
- filter_sound: bool | typing.Any | None = False,
49
- filter_text: bool | typing.Any | None = False,
50
- filter_archive: bool | typing.Any | None = False,
51
- filter_btx: bool | typing.Any | None = False,
52
- filter_collada: bool | typing.Any | None = False,
53
- filter_alembic: bool | typing.Any | None = False,
54
- filter_usd: bool | typing.Any | None = False,
55
- filter_obj: bool | typing.Any | None = False,
56
- filter_volume: bool | typing.Any | None = False,
57
- filter_folder: bool | typing.Any | None = True,
58
- filter_blenlib: bool | typing.Any | None = False,
59
- filemode: typing.Any | None = 9,
60
- relative_path: bool | typing.Any | None = True,
61
- show_multiview: bool | typing.Any | None = False,
62
- use_multiview: bool | typing.Any | None = False,
40
+ hide_props_region: bool | None = True,
41
+ check_existing: bool | None = False,
42
+ filter_blender: bool | None = False,
43
+ filter_backup: bool | None = False,
44
+ filter_image: bool | None = True,
45
+ filter_movie: bool | None = True,
46
+ filter_python: bool | None = False,
47
+ filter_font: bool | None = False,
48
+ filter_sound: bool | None = False,
49
+ filter_text: bool | None = False,
50
+ filter_archive: bool | None = False,
51
+ filter_btx: bool | None = False,
52
+ filter_collada: bool | None = False,
53
+ filter_alembic: bool | None = False,
54
+ filter_usd: bool | None = False,
55
+ filter_obj: bool | None = False,
56
+ filter_volume: bool | None = False,
57
+ filter_folder: bool | None = True,
58
+ filter_blenlib: bool | None = False,
59
+ filemode: int | None = 9,
60
+ relative_path: bool | None = True,
61
+ show_multiview: bool | None = False,
62
+ use_multiview: bool | None = False,
63
63
  display_type: str | None = "DEFAULT",
64
64
  sort_method: str | None = "",
65
- name: str | typing.Any = "",
66
- session_uid: typing.Any | None = 0,
65
+ name: str = "",
66
+ session_uid: int | None = 0,
67
67
  ):
68
68
  """Add a file node to the current node editor
69
69
 
@@ -71,57 +71,57 @@ def add_file(
71
71
  :type execution_context: int | str | None
72
72
  :type undo: bool | None
73
73
  :param filepath: File Path, Path to file
74
- :type filepath: str | typing.Any
74
+ :type filepath: str
75
75
  :param directory: Directory, Directory of the file
76
- :type directory: str | typing.Any
76
+ :type directory: str
77
77
  :param files: Files
78
78
  :type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] | None
79
79
  :param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
80
- :type hide_props_region: bool | typing.Any | None
80
+ :type hide_props_region: bool | None
81
81
  :param check_existing: Check Existing, Check and warn on overwriting existing files
82
- :type check_existing: bool | typing.Any | None
82
+ :type check_existing: bool | None
83
83
  :param filter_blender: Filter .blend files
84
- :type filter_blender: bool | typing.Any | None
84
+ :type filter_blender: bool | None
85
85
  :param filter_backup: Filter .blend files
86
- :type filter_backup: bool | typing.Any | None
86
+ :type filter_backup: bool | None
87
87
  :param filter_image: Filter image files
88
- :type filter_image: bool | typing.Any | None
88
+ :type filter_image: bool | None
89
89
  :param filter_movie: Filter movie files
90
- :type filter_movie: bool | typing.Any | None
90
+ :type filter_movie: bool | None
91
91
  :param filter_python: Filter Python files
92
- :type filter_python: bool | typing.Any | None
92
+ :type filter_python: bool | None
93
93
  :param filter_font: Filter font files
94
- :type filter_font: bool | typing.Any | None
94
+ :type filter_font: bool | None
95
95
  :param filter_sound: Filter sound files
96
- :type filter_sound: bool | typing.Any | None
96
+ :type filter_sound: bool | None
97
97
  :param filter_text: Filter text files
98
- :type filter_text: bool | typing.Any | None
98
+ :type filter_text: bool | None
99
99
  :param filter_archive: Filter archive files
100
- :type filter_archive: bool | typing.Any | None
100
+ :type filter_archive: bool | None
101
101
  :param filter_btx: Filter btx files
102
- :type filter_btx: bool | typing.Any | None
102
+ :type filter_btx: bool | None
103
103
  :param filter_collada: Filter COLLADA files
104
- :type filter_collada: bool | typing.Any | None
104
+ :type filter_collada: bool | None
105
105
  :param filter_alembic: Filter Alembic files
106
- :type filter_alembic: bool | typing.Any | None
106
+ :type filter_alembic: bool | None
107
107
  :param filter_usd: Filter USD files
108
- :type filter_usd: bool | typing.Any | None
108
+ :type filter_usd: bool | None
109
109
  :param filter_obj: Filter OBJ files
110
- :type filter_obj: bool | typing.Any | None
110
+ :type filter_obj: bool | None
111
111
  :param filter_volume: Filter OpenVDB volume files
112
- :type filter_volume: bool | typing.Any | None
112
+ :type filter_volume: bool | None
113
113
  :param filter_folder: Filter folders
114
- :type filter_folder: bool | typing.Any | None
114
+ :type filter_folder: bool | None
115
115
  :param filter_blenlib: Filter Blender IDs
116
- :type filter_blenlib: bool | typing.Any | None
116
+ :type filter_blenlib: bool | None
117
117
  :param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
118
- :type filemode: typing.Any | None
118
+ :type filemode: int | None
119
119
  :param relative_path: Relative Path, Select the file relative to the blend file
120
- :type relative_path: bool | typing.Any | None
120
+ :type relative_path: bool | None
121
121
  :param show_multiview: Enable Multi-View
122
- :type show_multiview: bool | typing.Any | None
122
+ :type show_multiview: bool | None
123
123
  :param use_multiview: Use Multi-View
124
- :type use_multiview: bool | typing.Any | None
124
+ :type use_multiview: bool | None
125
125
  :param display_type: Display Type
126
126
 
127
127
  DEFAULT
@@ -154,9 +154,9 @@ def add_file(
154
154
  Size -- Sort files by size.
155
155
  :type sort_method: str | None
156
156
  :param name: Name, Name of the data-block to use by the operator
157
- :type name: str | typing.Any
157
+ :type name: str
158
158
  :param session_uid: Session UID, Session UID of the data-block to use by the operator
159
- :type session_uid: typing.Any | None
159
+ :type session_uid: int | None
160
160
  """
161
161
 
162
162
  ...
@@ -166,9 +166,9 @@ def add_group(
166
166
  execution_context: int | str | None = None,
167
167
  undo: bool | None = None,
168
168
  *,
169
- name: str | typing.Any = "",
170
- session_uid: typing.Any | None = 0,
171
- show_datablock_in_node: bool | typing.Any | None = True,
169
+ name: str = "",
170
+ session_uid: int | None = 0,
171
+ show_datablock_in_node: bool | None = True,
172
172
  ):
173
173
  """Add an existing node group to the current node editor
174
174
 
@@ -176,11 +176,11 @@ def add_group(
176
176
  :type execution_context: int | str | None
177
177
  :type undo: bool | None
178
178
  :param name: Name, Name of the data-block to use by the operator
179
- :type name: str | typing.Any
179
+ :type name: str
180
180
  :param session_uid: Session UID, Session UID of the data-block to use by the operator
181
- :type session_uid: typing.Any | None
181
+ :type session_uid: int | None
182
182
  :param show_datablock_in_node: Show the datablock selector in the node
183
- :type show_datablock_in_node: bool | typing.Any | None
183
+ :type show_datablock_in_node: bool | None
184
184
  """
185
185
 
186
186
  ...
@@ -191,8 +191,8 @@ def add_group_asset(
191
191
  undo: bool | None = None,
192
192
  *,
193
193
  asset_library_type: str | None = "LOCAL",
194
- asset_library_identifier: str | typing.Any = "",
195
- relative_asset_identifier: str | typing.Any = "",
194
+ asset_library_identifier: str = "",
195
+ relative_asset_identifier: str = "",
196
196
  ):
197
197
  """Add a node group asset to the active node tree
198
198
 
@@ -202,9 +202,9 @@ def add_group_asset(
202
202
  :param asset_library_type: Asset Library Type
203
203
  :type asset_library_type: str | None
204
204
  :param asset_library_identifier: Asset Library Identifier
205
- :type asset_library_identifier: str | typing.Any
205
+ :type asset_library_identifier: str
206
206
  :param relative_asset_identifier: Relative Asset Identifier
207
- :type relative_asset_identifier: str | typing.Any
207
+ :type relative_asset_identifier: str
208
208
  """
209
209
 
210
210
  ...
@@ -214,8 +214,8 @@ def add_mask(
214
214
  execution_context: int | str | None = None,
215
215
  undo: bool | None = None,
216
216
  *,
217
- name: str | typing.Any = "",
218
- session_uid: typing.Any | None = 0,
217
+ name: str = "",
218
+ session_uid: int | None = 0,
219
219
  ):
220
220
  """Add a mask node to the current node editor
221
221
 
@@ -223,9 +223,9 @@ def add_mask(
223
223
  :type execution_context: int | str | None
224
224
  :type undo: bool | None
225
225
  :param name: Name, Name of the data-block to use by the operator
226
- :type name: str | typing.Any
226
+ :type name: str
227
227
  :param session_uid: Session UID, Session UID of the data-block to use by the operator
228
- :type session_uid: typing.Any | None
228
+ :type session_uid: int | None
229
229
  """
230
230
 
231
231
  ...
@@ -235,8 +235,8 @@ def add_material(
235
235
  execution_context: int | str | None = None,
236
236
  undo: bool | None = None,
237
237
  *,
238
- name: str | typing.Any = "",
239
- session_uid: typing.Any | None = 0,
238
+ name: str = "",
239
+ session_uid: int | None = 0,
240
240
  ):
241
241
  """Add a material node to the current node editor
242
242
 
@@ -244,9 +244,9 @@ def add_material(
244
244
  :type execution_context: int | str | None
245
245
  :type undo: bool | None
246
246
  :param name: Name, Name of the data-block to use by the operator
247
- :type name: str | typing.Any
247
+ :type name: str
248
248
  :param session_uid: Session UID, Session UID of the data-block to use by the operator
249
- :type session_uid: typing.Any | None
249
+ :type session_uid: int | None
250
250
  """
251
251
 
252
252
  ...
@@ -256,10 +256,10 @@ def add_node(
256
256
  execution_context: int | str | None = None,
257
257
  undo: bool | None = None,
258
258
  *,
259
- use_transform: bool | typing.Any | None = False,
259
+ use_transform: bool | None = False,
260
260
  settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
261
261
  | None = None,
262
- type: str | typing.Any = "",
262
+ type: str = "",
263
263
  ):
264
264
  """Add a node to the active tree
265
265
 
@@ -267,11 +267,11 @@ def add_node(
267
267
  :type execution_context: int | str | None
268
268
  :type undo: bool | None
269
269
  :param use_transform: Use Transform, Start transform operator after inserting the node
270
- :type use_transform: bool | typing.Any | None
270
+ :type use_transform: bool | None
271
271
  :param settings: Settings, Settings to be applied on the newly created node
272
272
  :type settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting] | None
273
273
  :param type: Node Type, Node type
274
- :type type: str | typing.Any
274
+ :type type: str
275
275
  """
276
276
 
277
277
  ...
@@ -281,8 +281,8 @@ def add_object(
281
281
  execution_context: int | str | None = None,
282
282
  undo: bool | None = None,
283
283
  *,
284
- name: str | typing.Any = "",
285
- session_uid: typing.Any | None = 0,
284
+ name: str = "",
285
+ session_uid: int | None = 0,
286
286
  ):
287
287
  """Add an object info node to the current node editor
288
288
 
@@ -290,9 +290,9 @@ def add_object(
290
290
  :type execution_context: int | str | None
291
291
  :type undo: bool | None
292
292
  :param name: Name, Name of the data-block to use by the operator
293
- :type name: str | typing.Any
293
+ :type name: str
294
294
  :param session_uid: Session UID, Session UID of the data-block to use by the operator
295
- :type session_uid: typing.Any | None
295
+ :type session_uid: int | None
296
296
  """
297
297
 
298
298
  ...
@@ -302,10 +302,10 @@ def add_repeat_zone(
302
302
  execution_context: int | str | None = None,
303
303
  undo: bool | None = None,
304
304
  *,
305
- use_transform: bool | typing.Any | None = False,
305
+ use_transform: bool | None = False,
306
306
  settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
307
307
  | None = None,
308
- offset: typing.Any | None = (150.0, 0.0),
308
+ offset: collections.abc.Iterable[float] | None = (150.0, 0.0),
309
309
  ):
310
310
  """Add a repeat zone that allows executing nodes a dynamic number of times
311
311
 
@@ -313,11 +313,11 @@ def add_repeat_zone(
313
313
  :type execution_context: int | str | None
314
314
  :type undo: bool | None
315
315
  :param use_transform: Use Transform, Start transform operator after inserting the node
316
- :type use_transform: bool | typing.Any | None
316
+ :type use_transform: bool | None
317
317
  :param settings: Settings, Settings to be applied on the newly created node
318
318
  :type settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting] | None
319
319
  :param offset: Offset, Offset of nodes from the cursor when added
320
- :type offset: typing.Any | None
320
+ :type offset: collections.abc.Iterable[float] | None
321
321
  """
322
322
 
323
323
  ...
@@ -328,7 +328,7 @@ def add_reroute(
328
328
  undo: bool | None = None,
329
329
  *,
330
330
  path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
331
- cursor: typing.Any | None = 8,
331
+ cursor: int | None = 8,
332
332
  ):
333
333
  """Add a reroute node
334
334
 
@@ -338,7 +338,7 @@ def add_reroute(
338
338
  :param path: Path
339
339
  :type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
340
340
  :param cursor: Cursor
341
- :type cursor: typing.Any | None
341
+ :type cursor: int | None
342
342
  """
343
343
 
344
344
  ...
@@ -348,10 +348,10 @@ def add_simulation_zone(
348
348
  execution_context: int | str | None = None,
349
349
  undo: bool | None = None,
350
350
  *,
351
- use_transform: bool | typing.Any | None = False,
351
+ use_transform: bool | None = False,
352
352
  settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
353
353
  | None = None,
354
- offset: typing.Any | None = (150.0, 0.0),
354
+ offset: collections.abc.Iterable[float] | None = (150.0, 0.0),
355
355
  ):
356
356
  """Add simulation zone input and output nodes to the active tree
357
357
 
@@ -359,11 +359,11 @@ def add_simulation_zone(
359
359
  :type execution_context: int | str | None
360
360
  :type undo: bool | None
361
361
  :param use_transform: Use Transform, Start transform operator after inserting the node
362
- :type use_transform: bool | typing.Any | None
362
+ :type use_transform: bool | None
363
363
  :param settings: Settings, Settings to be applied on the newly created node
364
364
  :type settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting] | None
365
365
  :param offset: Offset, Offset of nodes from the cursor when added
366
- :type offset: typing.Any | None
366
+ :type offset: collections.abc.Iterable[float] | None
367
367
  """
368
368
 
369
369
  ...
@@ -429,7 +429,7 @@ def backimage_zoom(
429
429
  execution_context: int | str | None = None,
430
430
  undo: bool | None = None,
431
431
  *,
432
- factor: typing.Any | None = 1.2,
432
+ factor: float | None = 1.2,
433
433
  ):
434
434
  """Zoom in/out the background image
435
435
 
@@ -437,7 +437,7 @@ def backimage_zoom(
437
437
  :type execution_context: int | str | None
438
438
  :type undo: bool | None
439
439
  :param factor: Factor
440
- :type factor: typing.Any | None
440
+ :type factor: float | None
441
441
  """
442
442
 
443
443
  ...
@@ -567,7 +567,7 @@ def clipboard_paste(
567
567
  execution_context: int | str | None = None,
568
568
  undo: bool | None = None,
569
569
  *,
570
- offset: typing.Any | None = (0.0, 0.0),
570
+ offset: collections.abc.Iterable[float] | None = (0.0, 0.0),
571
571
  ):
572
572
  """Paste nodes from the internal clipboard to the active node tree
573
573
 
@@ -575,7 +575,7 @@ def clipboard_paste(
575
575
  :type execution_context: int | str | None
576
576
  :type undo: bool | None
577
577
  :param offset: Location, The 2D view location for the center of the new nodes, or unchanged if not set
578
- :type offset: typing.Any | None
578
+ :type offset: collections.abc.Iterable[float] | None
579
579
  """
580
580
 
581
581
  ...
@@ -599,7 +599,7 @@ def connect_to_output(
599
599
  execution_context: int | str | None = None,
600
600
  undo: bool | None = None,
601
601
  *,
602
- run_in_geometry_nodes: bool | typing.Any | None = True,
602
+ run_in_geometry_nodes: bool | None = True,
603
603
  ):
604
604
  """Connect active node to the active output node of the node tree
605
605
 
@@ -607,7 +607,7 @@ def connect_to_output(
607
607
  :type execution_context: int | str | None
608
608
  :type undo: bool | None
609
609
  :param run_in_geometry_nodes: Run in Geometry Nodes Editor
610
- :type run_in_geometry_nodes: bool | typing.Any | None
610
+ :type run_in_geometry_nodes: bool | None
611
611
  """
612
612
 
613
613
  ...
@@ -725,8 +725,8 @@ def duplicate(
725
725
  execution_context: int | str | None = None,
726
726
  undo: bool | None = None,
727
727
  *,
728
- keep_inputs: bool | typing.Any | None = False,
729
- linked: bool | typing.Any | None = True,
728
+ keep_inputs: bool | None = False,
729
+ linked: bool | None = True,
730
730
  ):
731
731
  """Duplicate selected nodes
732
732
 
@@ -734,9 +734,9 @@ def duplicate(
734
734
  :type execution_context: int | str | None
735
735
  :type undo: bool | None
736
736
  :param keep_inputs: Keep Inputs, Keep the input links to duplicated nodes
737
- :type keep_inputs: bool | typing.Any | None
737
+ :type keep_inputs: bool | None
738
738
  :param linked: Linked, Duplicate node but not node trees, linking to the original data
739
- :type linked: bool | typing.Any | None
739
+ :type linked: bool | None
740
740
  """
741
741
 
742
742
  ...
@@ -883,7 +883,7 @@ def group_edit(
883
883
  execution_context: int | str | None = None,
884
884
  undo: bool | None = None,
885
885
  *,
886
- exit: bool | typing.Any | None = False,
886
+ exit: bool | None = False,
887
887
  ):
888
888
  """Edit node group
889
889
 
@@ -891,7 +891,7 @@ def group_edit(
891
891
  :type execution_context: int | str | None
892
892
  :type undo: bool | None
893
893
  :param exit: Exit
894
- :type exit: bool | typing.Any | None
894
+ :type exit: bool | None
895
895
  """
896
896
 
897
897
  ...
@@ -1009,7 +1009,7 @@ def index_switch_item_remove(
1009
1009
  execution_context: int | str | None = None,
1010
1010
  undo: bool | None = None,
1011
1011
  *,
1012
- index: typing.Any | None = 0,
1012
+ index: int | None = 0,
1013
1013
  ):
1014
1014
  """Remove an item from the index switch
1015
1015
 
@@ -1017,7 +1017,7 @@ def index_switch_item_remove(
1017
1017
  :type execution_context: int | str | None
1018
1018
  :type undo: bool | None
1019
1019
  :param index: Index, Index to remove
1020
- :type index: typing.Any | None
1020
+ :type index: int | None
1021
1021
  """
1022
1022
 
1023
1023
  ...
@@ -1101,14 +1101,14 @@ def link(
1101
1101
  execution_context: int | str | None = None,
1102
1102
  undo: bool | None = None,
1103
1103
  *,
1104
- detach: bool | typing.Any | None = False,
1105
- drag_start: typing.Any | None = (0.0, 0.0),
1106
- inside_padding: typing.Any | None = 2.0,
1107
- outside_padding: typing.Any | None = 0.0,
1108
- speed_ramp: typing.Any | None = 1.0,
1109
- max_speed: typing.Any | None = 26.0,
1110
- delay: typing.Any | None = 0.5,
1111
- zoom_influence: typing.Any | None = 0.5,
1104
+ detach: bool | None = False,
1105
+ drag_start: collections.abc.Iterable[float] | None = (0.0, 0.0),
1106
+ inside_padding: float | None = 2.0,
1107
+ outside_padding: float | None = 0.0,
1108
+ speed_ramp: float | None = 1.0,
1109
+ max_speed: float | None = 26.0,
1110
+ delay: float | None = 0.5,
1111
+ zoom_influence: float | None = 0.5,
1112
1112
  ):
1113
1113
  """Use the mouse to create a link between two nodes
1114
1114
 
@@ -1116,21 +1116,21 @@ def link(
1116
1116
  :type execution_context: int | str | None
1117
1117
  :type undo: bool | None
1118
1118
  :param detach: Detach, Detach and redirect existing links
1119
- :type detach: bool | typing.Any | None
1119
+ :type detach: bool | None
1120
1120
  :param drag_start: Drag Start, The position of the mouse cursor at the start of the operation
1121
- :type drag_start: typing.Any | None
1121
+ :type drag_start: collections.abc.Iterable[float] | None
1122
1122
  :param inside_padding: Inside Padding, Inside distance in UI units from the edge of the region within which to start panning
1123
- :type inside_padding: typing.Any | None
1123
+ :type inside_padding: float | None
1124
1124
  :param outside_padding: Outside Padding, Outside distance in UI units from the edge of the region at which to stop panning
1125
- :type outside_padding: typing.Any | None
1125
+ :type outside_padding: float | None
1126
1126
  :param speed_ramp: Speed Ramp, Width of the zone in UI units where speed increases with distance from the edge
1127
- :type speed_ramp: typing.Any | None
1127
+ :type speed_ramp: float | None
1128
1128
  :param max_speed: Max Speed, Maximum speed in UI units per second
1129
- :type max_speed: typing.Any | None
1129
+ :type max_speed: float | None
1130
1130
  :param delay: Delay, Delay in seconds before maximum speed is reached
1131
- :type delay: typing.Any | None
1131
+ :type delay: float | None
1132
1132
  :param zoom_influence: Zoom Influence, Influence of the zoom factor on scroll speed
1133
- :type zoom_influence: typing.Any | None
1133
+ :type zoom_influence: float | None
1134
1134
  """
1135
1135
 
1136
1136
  ...
@@ -1140,7 +1140,7 @@ def link_make(
1140
1140
  execution_context: int | str | None = None,
1141
1141
  undo: bool | None = None,
1142
1142
  *,
1143
- replace: bool | typing.Any | None = False,
1143
+ replace: bool | None = False,
1144
1144
  ):
1145
1145
  """Make a link between selected output and input sockets
1146
1146
 
@@ -1148,7 +1148,7 @@ def link_make(
1148
1148
  :type execution_context: int | str | None
1149
1149
  :type undo: bool | None
1150
1150
  :param replace: Replace, Replace socket connections with the new links
1151
- :type replace: bool | typing.Any | None
1151
+ :type replace: bool | None
1152
1152
  """
1153
1153
 
1154
1154
  ...
@@ -1173,7 +1173,7 @@ def links_cut(
1173
1173
  undo: bool | None = None,
1174
1174
  *,
1175
1175
  path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
1176
- cursor: typing.Any | None = 12,
1176
+ cursor: int | None = 12,
1177
1177
  ):
1178
1178
  """Use the mouse to cut (remove) some links
1179
1179
 
@@ -1183,7 +1183,7 @@ def links_cut(
1183
1183
  :param path: Path
1184
1184
  :type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
1185
1185
  :param cursor: Cursor
1186
- :type cursor: typing.Any | None
1186
+ :type cursor: int | None
1187
1187
  """
1188
1188
 
1189
1189
  ...
@@ -1208,7 +1208,7 @@ def links_mute(
1208
1208
  undo: bool | None = None,
1209
1209
  *,
1210
1210
  path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
1211
- cursor: typing.Any | None = 35,
1211
+ cursor: int | None = 35,
1212
1212
  ):
1213
1213
  """Use the mouse to mute links
1214
1214
 
@@ -1218,7 +1218,7 @@ def links_mute(
1218
1218
  :param path: Path
1219
1219
  :type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
1220
1220
  :param cursor: Cursor
1221
- :type cursor: typing.Any | None
1221
+ :type cursor: int | None
1222
1222
  """
1223
1223
 
1224
1224
  ...
@@ -1327,7 +1327,7 @@ def new_node_tree(
1327
1327
  undo: bool | None = None,
1328
1328
  *,
1329
1329
  type: str | None = "",
1330
- name: str | typing.Any = "NodeTree",
1330
+ name: str = "NodeTree",
1331
1331
  ):
1332
1332
  """Create a new node tree
1333
1333
 
@@ -1337,7 +1337,7 @@ def new_node_tree(
1337
1337
  :param type: Tree Type
1338
1338
  :type type: str | None
1339
1339
  :param name: Name
1340
- :type name: str | typing.Any
1340
+ :type name: str
1341
1341
  """
1342
1342
 
1343
1343
  ...
@@ -1347,9 +1347,9 @@ def node_color_preset_add(
1347
1347
  execution_context: int | str | None = None,
1348
1348
  undo: bool | None = None,
1349
1349
  *,
1350
- name: str | typing.Any = "",
1351
- remove_name: bool | typing.Any | None = False,
1352
- remove_active: bool | typing.Any | None = False,
1350
+ name: str = "",
1351
+ remove_name: bool | None = False,
1352
+ remove_active: bool | None = False,
1353
1353
  ):
1354
1354
  """Add or remove a Node Color Preset
1355
1355
 
@@ -1357,11 +1357,11 @@ def node_color_preset_add(
1357
1357
  :type execution_context: int | str | None
1358
1358
  :type undo: bool | None
1359
1359
  :param name: Name, Name of the preset, used to make the path name
1360
- :type name: str | typing.Any
1360
+ :type name: str
1361
1361
  :param remove_name: remove_name
1362
- :type remove_name: bool | typing.Any | None
1362
+ :type remove_name: bool | None
1363
1363
  :param remove_active: remove_active
1364
- :type remove_active: bool | typing.Any | None
1364
+ :type remove_active: bool | None
1365
1365
  """
1366
1366
 
1367
1367
  ...
@@ -1399,7 +1399,7 @@ def output_file_add_socket(
1399
1399
  execution_context: int | str | None = None,
1400
1400
  undo: bool | None = None,
1401
1401
  *,
1402
- file_path: str | typing.Any = "Image",
1402
+ file_path: str = "Image",
1403
1403
  ):
1404
1404
  """Add a new input to a file output node
1405
1405
 
@@ -1407,7 +1407,7 @@ def output_file_add_socket(
1407
1407
  :type execution_context: int | str | None
1408
1408
  :type undo: bool | None
1409
1409
  :param file_path: File Path, Subpath of the output file
1410
- :type file_path: str | typing.Any
1410
+ :type file_path: str
1411
1411
  """
1412
1412
 
1413
1413
  ...
@@ -1565,14 +1565,14 @@ def select(
1565
1565
  execution_context: int | str | None = None,
1566
1566
  undo: bool | None = None,
1567
1567
  *,
1568
- extend: bool | typing.Any | None = False,
1569
- deselect: bool | typing.Any | None = False,
1570
- toggle: bool | typing.Any | None = False,
1571
- deselect_all: bool | typing.Any | None = False,
1572
- select_passthrough: bool | typing.Any | None = False,
1573
- location: typing.Any | None = (0, 0),
1574
- socket_select: bool | typing.Any | None = False,
1575
- clear_viewer: bool | typing.Any | None = False,
1568
+ extend: bool | None = False,
1569
+ deselect: bool | None = False,
1570
+ toggle: bool | None = False,
1571
+ deselect_all: bool | None = False,
1572
+ select_passthrough: bool | None = False,
1573
+ location: collections.abc.Iterable[int] | None = (0, 0),
1574
+ socket_select: bool | None = False,
1575
+ clear_viewer: bool | None = False,
1576
1576
  ):
1577
1577
  """Select the node under the cursor
1578
1578
 
@@ -1580,21 +1580,21 @@ def select(
1580
1580
  :type execution_context: int | str | None
1581
1581
  :type undo: bool | None
1582
1582
  :param extend: Extend, Extend selection instead of deselecting everything first
1583
- :type extend: bool | typing.Any | None
1583
+ :type extend: bool | None
1584
1584
  :param deselect: Deselect, Remove from selection
1585
- :type deselect: bool | typing.Any | None
1585
+ :type deselect: bool | None
1586
1586
  :param toggle: Toggle Selection, Toggle the selection
1587
- :type toggle: bool | typing.Any | None
1587
+ :type toggle: bool | None
1588
1588
  :param deselect_all: Deselect On Nothing, Deselect all when nothing under the cursor
1589
- :type deselect_all: bool | typing.Any | None
1589
+ :type deselect_all: bool | None
1590
1590
  :param select_passthrough: Only Select Unselected, Ignore the select action when the element is already selected
1591
- :type select_passthrough: bool | typing.Any | None
1591
+ :type select_passthrough: bool | None
1592
1592
  :param location: Location, Mouse location
1593
- :type location: typing.Any | None
1593
+ :type location: collections.abc.Iterable[int] | None
1594
1594
  :param socket_select: Socket Select
1595
- :type socket_select: bool | typing.Any | None
1595
+ :type socket_select: bool | None
1596
1596
  :param clear_viewer: Clear Viewer, Deactivate geometry nodes viewer when clicking in empty space
1597
- :type clear_viewer: bool | typing.Any | None
1597
+ :type clear_viewer: bool | None
1598
1598
  """
1599
1599
 
1600
1600
  ...
@@ -1634,12 +1634,12 @@ def select_box(
1634
1634
  execution_context: int | str | None = None,
1635
1635
  undo: bool | None = None,
1636
1636
  *,
1637
- tweak: bool | typing.Any | None = False,
1638
- xmin: typing.Any | None = 0,
1639
- xmax: typing.Any | None = 0,
1640
- ymin: typing.Any | None = 0,
1641
- ymax: typing.Any | None = 0,
1642
- wait_for_input: bool | typing.Any | None = True,
1637
+ tweak: bool | None = False,
1638
+ xmin: int | None = 0,
1639
+ xmax: int | None = 0,
1640
+ ymin: int | None = 0,
1641
+ ymax: int | None = 0,
1642
+ wait_for_input: bool | None = True,
1643
1643
  mode: str | None = "SET",
1644
1644
  ):
1645
1645
  """Use box selection to select nodes
@@ -1648,17 +1648,17 @@ def select_box(
1648
1648
  :type execution_context: int | str | None
1649
1649
  :type undo: bool | None
1650
1650
  :param tweak: Tweak, Only activate when mouse is not over a node (useful for tweak gesture)
1651
- :type tweak: bool | typing.Any | None
1651
+ :type tweak: bool | None
1652
1652
  :param xmin: X Min
1653
- :type xmin: typing.Any | None
1653
+ :type xmin: int | None
1654
1654
  :param xmax: X Max
1655
- :type xmax: typing.Any | None
1655
+ :type xmax: int | None
1656
1656
  :param ymin: Y Min
1657
- :type ymin: typing.Any | None
1657
+ :type ymin: int | None
1658
1658
  :param ymax: Y Max
1659
- :type ymax: typing.Any | None
1659
+ :type ymax: int | None
1660
1660
  :param wait_for_input: Wait for Input
1661
- :type wait_for_input: bool | typing.Any | None
1661
+ :type wait_for_input: bool | None
1662
1662
  :param mode: Mode
1663
1663
 
1664
1664
  SET
@@ -1679,10 +1679,10 @@ def select_circle(
1679
1679
  execution_context: int | str | None = None,
1680
1680
  undo: bool | None = None,
1681
1681
  *,
1682
- x: typing.Any | None = 0,
1683
- y: typing.Any | None = 0,
1684
- radius: typing.Any | None = 25,
1685
- wait_for_input: bool | typing.Any | None = True,
1682
+ x: int | None = 0,
1683
+ y: int | None = 0,
1684
+ radius: int | None = 25,
1685
+ wait_for_input: bool | None = True,
1686
1686
  mode: str | None = "SET",
1687
1687
  ):
1688
1688
  """Use circle selection to select nodes
@@ -1691,13 +1691,13 @@ def select_circle(
1691
1691
  :type execution_context: int | str | None
1692
1692
  :type undo: bool | None
1693
1693
  :param x: X
1694
- :type x: typing.Any | None
1694
+ :type x: int | None
1695
1695
  :param y: Y
1696
- :type y: typing.Any | None
1696
+ :type y: int | None
1697
1697
  :param radius: Radius
1698
- :type radius: typing.Any | None
1698
+ :type radius: int | None
1699
1699
  :param wait_for_input: Wait for Input
1700
- :type wait_for_input: bool | typing.Any | None
1700
+ :type wait_for_input: bool | None
1701
1701
  :param mode: Mode
1702
1702
 
1703
1703
  SET
@@ -1718,7 +1718,7 @@ def select_grouped(
1718
1718
  execution_context: int | str | None = None,
1719
1719
  undo: bool | None = None,
1720
1720
  *,
1721
- extend: bool | typing.Any | None = False,
1721
+ extend: bool | None = False,
1722
1722
  type: str | None = "TYPE",
1723
1723
  ):
1724
1724
  """Select nodes with similar properties
@@ -1727,7 +1727,7 @@ def select_grouped(
1727
1727
  :type execution_context: int | str | None
1728
1728
  :type undo: bool | None
1729
1729
  :param extend: Extend, Extend selection instead of deselecting everything first
1730
- :type extend: bool | typing.Any | None
1730
+ :type extend: bool | None
1731
1731
  :param type: Type
1732
1732
  :type type: str | None
1733
1733
  """
@@ -1739,7 +1739,7 @@ def select_lasso(
1739
1739
  execution_context: int | str | None = None,
1740
1740
  undo: bool | None = None,
1741
1741
  *,
1742
- tweak: bool | typing.Any | None = False,
1742
+ tweak: bool | None = False,
1743
1743
  path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
1744
1744
  mode: str | None = "SET",
1745
1745
  ):
@@ -1749,7 +1749,7 @@ def select_lasso(
1749
1749
  :type execution_context: int | str | None
1750
1750
  :type undo: bool | None
1751
1751
  :param tweak: Tweak, Only activate when mouse is not over a node (useful for tweak gesture)
1752
- :type tweak: bool | typing.Any | None
1752
+ :type tweak: bool | None
1753
1753
  :param path: Path
1754
1754
  :type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
1755
1755
  :param mode: Mode
@@ -1821,7 +1821,7 @@ def select_same_type_step(
1821
1821
  execution_context: int | str | None = None,
1822
1822
  undo: bool | None = None,
1823
1823
  *,
1824
- prev: bool | typing.Any | None = False,
1824
+ prev: bool | None = False,
1825
1825
  ):
1826
1826
  """Activate and view same node type, step by step
1827
1827
 
@@ -1829,7 +1829,7 @@ def select_same_type_step(
1829
1829
  :type execution_context: int | str | None
1830
1830
  :type undo: bool | None
1831
1831
  :param prev: Previous
1832
- :type prev: bool | typing.Any | None
1832
+ :type prev: bool | None
1833
1833
  """
1834
1834
 
1835
1835
  ...
@@ -1983,11 +1983,11 @@ def viewer_border(
1983
1983
  execution_context: int | str | None = None,
1984
1984
  undo: bool | None = None,
1985
1985
  *,
1986
- xmin: typing.Any | None = 0,
1987
- xmax: typing.Any | None = 0,
1988
- ymin: typing.Any | None = 0,
1989
- ymax: typing.Any | None = 0,
1990
- wait_for_input: bool | typing.Any | None = True,
1986
+ xmin: int | None = 0,
1987
+ xmax: int | None = 0,
1988
+ ymin: int | None = 0,
1989
+ ymax: int | None = 0,
1990
+ wait_for_input: bool | None = True,
1991
1991
  ):
1992
1992
  """Set the boundaries for viewer operations
1993
1993
 
@@ -1995,15 +1995,15 @@ def viewer_border(
1995
1995
  :type execution_context: int | str | None
1996
1996
  :type undo: bool | None
1997
1997
  :param xmin: X Min
1998
- :type xmin: typing.Any | None
1998
+ :type xmin: int | None
1999
1999
  :param xmax: X Max
2000
- :type xmax: typing.Any | None
2000
+ :type xmax: int | None
2001
2001
  :param ymin: Y Min
2002
- :type ymin: typing.Any | None
2002
+ :type ymin: int | None
2003
2003
  :param ymax: Y Max
2004
- :type ymax: typing.Any | None
2004
+ :type ymax: int | None
2005
2005
  :param wait_for_input: Wait for Input
2006
- :type wait_for_input: bool | typing.Any | None
2006
+ :type wait_for_input: bool | None
2007
2007
  """
2008
2008
 
2009
2009
  ...