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

@@ -7,7 +7,7 @@ GenericType1 = typing.TypeVar("GenericType1")
7
7
  GenericType2 = typing.TypeVar("GenericType2")
8
8
 
9
9
  class WORLD_OT_convert_volume_to_mesh(bpy_types.Operator):
10
- """Convert the volume of a world to a mesh.The world's volume used to be rendered by EEVEE Legacy. Conversion is needed for it to render properly"""
10
+ """Convert the volume of a world to a mesh. The world's volume used to be rendered by EEVEE Legacy. Conversion is needed for it to render properly"""
11
11
 
12
12
  bl_idname: typing.Any
13
13
  bl_label: typing.Any
@@ -724,7 +724,7 @@ class UILIST_OT_entry_remove(GenericUIListOperator, bpy_types.Operator):
724
724
 
725
725
  def draw_ui_list(
726
726
  layout: bpy.types.UILayout,
727
- context: bpy.types.Context,
727
+ context: bpy_types.Context,
728
728
  class_name: str = "UI_UL_list",
729
729
  unique_id: str = None,
730
730
  list_path: str = None,
@@ -739,7 +739,7 @@ def draw_ui_list(
739
739
  :param layout: UILayout to draw the list in.
740
740
  :type layout: bpy.types.UILayout
741
741
  :param context: Blender context to get the list data from.
742
- :type context: bpy.types.Context
742
+ :type context: bpy_types.Context
743
743
  :param class_name: Name of the UIList class to draw. The default is the UIList class that ships with Blender.
744
744
  :type class_name: str
745
745
  :param unique_id: Unique identifier to differentiate this from other UI lists.
@@ -869,8 +869,10 @@ class _defs_sequencer_generic:
869
869
  translate: typing.Any
870
870
 
871
871
  class _defs_sequencer_select:
872
- box: typing.Any
873
- select: typing.Any
872
+ box_preview: typing.Any
873
+ box_timeline: typing.Any
874
+ select_preview: typing.Any
875
+ select_timeline: typing.Any
874
876
 
875
877
  class _defs_texture_paint:
876
878
  def generate_from_brushes(self, context):
@@ -339,6 +339,8 @@ def extension_repo_add(
339
339
  undo: bool | None = None,
340
340
  name: str | typing.Any = "",
341
341
  remote_url: str | typing.Any = "",
342
+ use_access_token: bool | typing.Any | None = False,
343
+ access_token: str | typing.Any = "",
342
344
  use_sync_on_startup: bool | typing.Any | None = False,
343
345
  use_custom_directory: bool | typing.Any | None = False,
344
346
  custom_directory: str | typing.Any = "",
@@ -353,6 +355,10 @@ def extension_repo_add(
353
355
  :type name: str | typing.Any
354
356
  :param remote_url: URL, Remote URL to the extension repository, the file-system may be referenced using the file URI scheme: "file://"
355
357
  :type remote_url: str | typing.Any
358
+ :param use_access_token: Requires Access Token, Repository requires an access token
359
+ :type use_access_token: bool | typing.Any | None
360
+ :param access_token: Secret, Personal access token, may be required by some repositories
361
+ :type access_token: str | typing.Any
356
362
  :param use_sync_on_startup: Check for Updates on Startup, Allow Blender to check for updates upon launch
357
363
  :type use_sync_on_startup: bool | typing.Any | None
358
364
  :param use_custom_directory: Custom Directory, Manually set the path for extensions to be stored. When disabled a user's extensions directory is created
@@ -10,7 +10,7 @@ def convert_volume_to_mesh(
10
10
  execution_context: str | int | None = None,
11
11
  undo: bool | None = None,
12
12
  ):
13
- """Convert the volume of a world to a mesh.
13
+ """Convert the volume of a world to a mesh. The world's volume used to be rendered by EEVEE Legacy. Conversion is needed for it to render properly
14
14
 
15
15
  :type override_context: dict[str, typing.Any] | bpy.types.Context | None
16
16
  :type execution_context: str | int | None
bpy/types/__init__.pyi CHANGED
@@ -150132,6 +150132,12 @@ class UserAssetLibrary(bpy_struct):
150132
150132
  class UserExtensionRepo(bpy_struct):
150133
150133
  """Settings to define an extension repository"""
150134
150134
 
150135
+ access_token: str
150136
+ """ Personal access token, may be required by some repositories
150137
+
150138
+ :type: str
150139
+ """
150140
+
150135
150141
  custom_directory: str
150136
150142
  """ The local directory containing extensions
150137
150143
 
@@ -150168,6 +150174,12 @@ class UserExtensionRepo(bpy_struct):
150168
150174
  :type: str
150169
150175
  """
150170
150176
 
150177
+ use_access_token: bool
150178
+ """ Repository requires an access token
150179
+
150180
+ :type: bool
150181
+ """
150182
+
150171
150183
  use_cache: bool
150172
150184
  """ Downloaded package files are deleted after installation
150173
150185
 
bpy_types/__init__.pyi CHANGED
@@ -590,7 +590,6 @@ class BoneCollection:
590
590
  ...
591
591
 
592
592
  class Node:
593
- bl_rna: typing.Any
594
593
  id_data: typing.Any
595
594
 
596
595
  def as_pointer(self) -> int:
@@ -693,13 +692,6 @@ class Node:
693
692
  """
694
693
  ...
695
694
 
696
- def is_registered_node_type(self):
697
- """Node.is_registered_node_type()
698
- True if a registered node type
699
-
700
- """
701
- ...
702
-
703
695
  def items(self):
704
696
  """Returns the items of this objects custom properties (matches Python's
705
697
  dictionary function of the same name).
@@ -2721,7 +2713,6 @@ class MeshPolygon:
2721
2713
  ...
2722
2714
 
2723
2715
  class NodeSocket:
2724
- bl_rna: typing.Any
2725
2716
  id_data: typing.Any
2726
2717
  links: typing.Any
2727
2718
 
@@ -4337,7 +4328,6 @@ class PoseBone(_GenericBone):
4337
4328
  ...
4338
4329
 
4339
4330
  class NodeInternal(Node):
4340
- bl_rna: typing.Any
4341
4331
  id_data: typing.Any
4342
4332
 
4343
4333
  def as_pointer(self) -> int:
@@ -4440,13 +4430,6 @@ class NodeInternal(Node):
4440
4430
  """
4441
4431
  ...
4442
4432
 
4443
- def is_registered_node_type(self):
4444
- """Node.is_registered_node_type()
4445
- True if a registered node type
4446
-
4447
- """
4448
- ...
4449
-
4450
4433
  def items(self):
4451
4434
  """Returns the items of this objects custom properties (matches Python's
4452
4435
  dictionary function of the same name).
@@ -5835,7 +5818,6 @@ class RNAMetaPropGroup(RNAMeta):
5835
5818
  ...
5836
5819
 
5837
5820
  class CompositorNode(NodeInternal, Node):
5838
- bl_rna: typing.Any
5839
5821
  id_data: typing.Any
5840
5822
 
5841
5823
  def as_pointer(self) -> int:
@@ -5938,13 +5920,6 @@ class CompositorNode(NodeInternal, Node):
5938
5920
  """
5939
5921
  ...
5940
5922
 
5941
- def is_registered_node_type(self):
5942
- """Node.is_registered_node_type()
5943
- True if a registered node type
5944
-
5945
- """
5946
- ...
5947
-
5948
5923
  def items(self):
5949
5924
  """Returns the items of this objects custom properties (matches Python's
5950
5925
  dictionary function of the same name).
@@ -6034,7 +6009,6 @@ class CompositorNode(NodeInternal, Node):
6034
6009
  ...
6035
6010
 
6036
6011
  class GeometryNode(NodeInternal, Node):
6037
- bl_rna: typing.Any
6038
6012
  id_data: typing.Any
6039
6013
 
6040
6014
  def as_pointer(self) -> int:
@@ -6137,13 +6111,6 @@ class GeometryNode(NodeInternal, Node):
6137
6111
  """
6138
6112
  ...
6139
6113
 
6140
- def is_registered_node_type(self):
6141
- """Node.is_registered_node_type()
6142
- True if a registered node type
6143
-
6144
- """
6145
- ...
6146
-
6147
6114
  def items(self):
6148
6115
  """Returns the items of this objects custom properties (matches Python's
6149
6116
  dictionary function of the same name).
@@ -6232,7 +6199,6 @@ class GeometryNode(NodeInternal, Node):
6232
6199
  ...
6233
6200
 
6234
6201
  class ShaderNode(NodeInternal, Node):
6235
- bl_rna: typing.Any
6236
6202
  id_data: typing.Any
6237
6203
 
6238
6204
  def as_pointer(self) -> int:
@@ -6335,13 +6301,6 @@ class ShaderNode(NodeInternal, Node):
6335
6301
  """
6336
6302
  ...
6337
6303
 
6338
- def is_registered_node_type(self):
6339
- """Node.is_registered_node_type()
6340
- True if a registered node type
6341
-
6342
- """
6343
- ...
6344
-
6345
6304
  def items(self):
6346
6305
  """Returns the items of this objects custom properties (matches Python's
6347
6306
  dictionary function of the same name).
@@ -6430,7 +6389,6 @@ class ShaderNode(NodeInternal, Node):
6430
6389
  ...
6431
6390
 
6432
6391
  class TextureNode(NodeInternal, Node):
6433
- bl_rna: typing.Any
6434
6392
  id_data: typing.Any
6435
6393
 
6436
6394
  def as_pointer(self) -> int:
@@ -6533,13 +6491,6 @@ class TextureNode(NodeInternal, Node):
6533
6491
  """
6534
6492
  ...
6535
6493
 
6536
- def is_registered_node_type(self):
6537
- """Node.is_registered_node_type()
6538
- True if a registered node type
6539
-
6540
- """
6541
- ...
6542
-
6543
6494
  def items(self):
6544
6495
  """Returns the items of this objects custom properties (matches Python's
6545
6496
  dictionary function of the same name).
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20240522
3
+ Version: 20240523
4
4
  Summary: Collection of the fake Blender Python API module for the code completion.
5
5
  Author: nutti
6
6
  Author-email: nutti.metro@gmail.com
@@ -71,7 +71,7 @@ bl_operators/uvcalc_transform/__init__.pyi,sha256=CbwgnUkyq48X8OGU6qsrzAWAw9Il0q
71
71
  bl_operators/vertexpaint_dirt/__init__.pyi,sha256=E0sI_J6oIOG7jWfLApMwVsqr7Tu3QW84-7cjVCV2ib8,5852
72
72
  bl_operators/view3d/__init__.pyi,sha256=ss9TSl6KFw-BCQbJgL-4X37XkRGFpK0o3eTBypkNkDo,38849
73
73
  bl_operators/wm/__init__.pyi,sha256=MgvypA6vX6TRgZxmdKFByX-HKkw8Tzti57vZEV7DJq0,256882
74
- bl_operators/world/__init__.pyi,sha256=J_TBaR5ai6uYt3evQ99SRHDmTTzWw8RV1VoT778m4Ts,5808
74
+ bl_operators/world/__init__.pyi,sha256=ja4FkQmlqUj7blB1eB3vDaa1a5d2dwCEQhhT0fVAWVE,5809
75
75
  bl_previews_utils/__init__.pyi,sha256=QCEV9HiZ_Nv-soA5ReC2_W1ogkROXmlTPuek5nQli4U,163
76
76
  bl_previews_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
77
77
  bl_previews_utils/bl_previews_render/__init__.pyi,sha256=aOVogQALl_H3Y1lJDVDKeEArDhR1JqtYIPLVX24Xim8,489
@@ -85,7 +85,7 @@ bl_ui/__init__.pyi,sha256=N3pzoct8D3cGDvatLnpVixZlbZGI-vSC5tmTQ_NsXBw,20136
85
85
  bl_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
86
86
  bl_ui/anim/__init__.pyi,sha256=Q3Bo73WhK6fLXhWspPQ6IrlX3z6vxvBsUUH2ME0I4vo,7590
87
87
  bl_ui/asset_shelf/__init__.pyi,sha256=HztdIjmsqLm_jhZhChKREICK86WnEKPMW0HAd3gfb-A,5887
88
- bl_ui/generic_ui_list/__init__.pyi,sha256=EUU1e9QwH_ucdvgMuKWj6khISfKiRabgZOS_NtiYovw,19691
88
+ bl_ui/generic_ui_list/__init__.pyi,sha256=wiHVG8tUGH08FXberdkon893hE-KQOC-wcQdPhQRIds,19691
89
89
  bl_ui/node_add_menu/__init__.pyi,sha256=_1Dpb7cpJospC3e8yqCW71ZSafv5hLG3CsvzBb5hTGc,8092
90
90
  bl_ui/node_add_menu_compositor/__init__.pyi,sha256=EeOd9zPegDOKOTPFA31q92ZZvdcMBUfDUEpx7YdiHuw,134520
91
91
  bl_ui/node_add_menu_geometry/__init__.pyi,sha256=93G3_29MLoy3VJYOeB1Nx6IWk80LMbRDDuB_2C5KxDA,358371
@@ -153,7 +153,7 @@ bl_ui/space_statusbar/__init__.pyi,sha256=q80IyLA7Sp54zgndJQJXwTCcEybOS3fHe8Zg1U
153
153
  bl_ui/space_text/__init__.pyi,sha256=fexTGNRvDYSx-MZ8pfeGRdnFtzuEDe-08a_FGMJpmfU,111768
154
154
  bl_ui/space_time/__init__.pyi,sha256=RzNnGNgCJBFcntdS6B_N8mRA1zRY68-DSh3F01uC63c,47810
155
155
  bl_ui/space_toolsystem_common/__init__.pyi,sha256=4_lkUFwBtoZqh7hLHCnB3TTrNuUs0eNqG-P-5T1I1sY,5534
156
- bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=Y6an82iogIKbYOyuARJwNxCQs60b9hnLbwRTNylOcXs,20666
156
+ bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=58Utj_NKIxdKfz2QueidBGEHqgAZymkf54EauxEwjvw,20743
157
157
  bl_ui/space_topbar/__init__.pyi,sha256=LvwzF5fH-bVgpQRFBmkJe-OnjTb5lYkB_igJsf6RMNM,181978
158
158
  bl_ui/space_userpref/__init__.pyi,sha256=yj72LaENIF1xe7qCJ46hF7tiW1MnB4sCYaqxOLMICrw,526366
159
159
  bl_ui/space_view3d/__init__.pyi,sha256=kYIXHZUsO3A5uuSlhnGy6Y8ZMbGHdXTpwaAM93FruxM,1866328
@@ -234,7 +234,7 @@ bpy/ops/palette/__init__.pyi,sha256=33nIFwCQ2a0tVRWAybYt1P7K7X6OQcTEkahk1E5TymY,
234
234
  bpy/ops/particle/__init__.pyi,sha256=ySmOACKcJJphes_uzCbtswmnUF4qvn7b8zrZtTsLO0U,19192
235
235
  bpy/ops/pose/__init__.pyi,sha256=EVWb4wyt8vdmhy_V5zEKQvh5pP7dYERrmzW8h74aoUo,28319
236
236
  bpy/ops/poselib/__init__.pyi,sha256=p-mS6TH8gZgmGyUFCkEykezOPkl81-hgMjPD_RQj5G0,5573
237
- bpy/ops/preferences/__init__.pyi,sha256=CEFbfeJexC_0l_BMYAFHm0L-ZpQFqnO_nGl_SXqhnbU,27376
237
+ bpy/ops/preferences/__init__.pyi,sha256=AsXCOL8b65RSw-N-XNXtsF8mvQ4t4vSzojZeoH8fFhw,27764
238
238
  bpy/ops/ptcache/__init__.pyi,sha256=kT2prhPjep6y1pCiMYorGaZSLznhcAsv1x2Z5P6vAcI,2980
239
239
  bpy/ops/render/__init__.pyi,sha256=rBznOKTZ68ToZPhqtVbwH13s4-kN2yeeSm8jatNV340,9390
240
240
  bpy/ops/rigidbody/__init__.pyi,sha256=WSqYlpmNjkp-ddZU3gvp65zhyFDg9wIEl7FLvlK64YI,8102
@@ -258,10 +258,10 @@ bpy/ops/view2d/__init__.pyi,sha256=3NVUfevgxAFQYypk2OH-e0-2ml5YGBHcPIoXzNuVA2M,9
258
258
  bpy/ops/view3d/__init__.pyi,sha256=IBjnCtN958jw1L2LS5tb9KsiWK8u7t4i7yv3ZHI3B8U,41213
259
259
  bpy/ops/wm/__init__.pyi,sha256=-9sdjhR6_6-X48lDCKrq4ykFYGptbFxDdCJsIgimHAk,231808
260
260
  bpy/ops/workspace/__init__.pyi,sha256=seuXXtfGeQcdkEuF2ndx8y-Zhs4wJ99Ac0JTlYKTbcA,3309
261
- bpy/ops/world/__init__.pyi,sha256=gyxTIXas0kIe5J-6S7kl4iPrJkt-NTvhAze_f6a_Q8s,929
261
+ bpy/ops/world/__init__.pyi,sha256=oQBSfyuRh5kGomRoZELd3XHeYFnn1Q4yPobT9GfsefY,1032
262
262
  bpy/path/__init__.pyi,sha256=hDzEsFeXHfkrzJFWxyxpnxiWbm1b64KJWru0jcOgRq8,11497
263
263
  bpy/props/__init__.pyi,sha256=O4aVP7WK6sI-ugD5XeDDLpNfBHulqJh20Kw7jRb2BDc,28779
264
- bpy/types/__init__.pyi,sha256=ZS9AiM5xs-IkMAPf3Pk7OUYTo8auA5sm3BE59wRtcFQ,5232595
264
+ bpy/types/__init__.pyi,sha256=JTMu0vqP0Lf31cU-gH532yeKIL0xAPZf5nvLH0s3Tac,5232807
265
265
  bpy/utils/__init__.pyi,sha256=u9JvsmBzSJyg4CTJr7_0n9CQO_B3ldwQKh25cW_6pZs,17916
266
266
  bpy/utils/previews/__init__.pyi,sha256=odPazdv-bjKEVpeX-KfaDGZe5rKlMT11zL_q1SgPK3U,4255
267
267
  bpy/utils/units/__init__.pyi,sha256=Mf5e9M8OwkE2zC-rs5CVV7NfobaI7LQkU0v7u-z9xwI,2655
@@ -285,7 +285,7 @@ bpy_extras/wm_utils/__init__.pyi,sha256=VjSQe0yOFAlAFGjt5HhvfGBLvSr9tcSpQBiGPRng
285
285
  bpy_extras/wm_utils/progress_report/__init__.pyi,sha256=070Ss6tSU9TOgVBKpGsxtwLhp5Lstj4MV5zieg-p5n8,1872
286
286
  bpy_restrict_state/__init__.pyi,sha256=KAQcdXls9YQGe8u3VyrnC7YNoXgg9kidzvZnYG7bpEA,307
287
287
  bpy_restrict_state/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
288
- bpy_types/__init__.pyi,sha256=RiihWkjehw1cssAR6XAuBDnKMADgOHI4gli8zvI1WCE,173279
288
+ bpy_types/__init__.pyi,sha256=p45VHWkeZLgdKO56U8XEi3x3muEp16e9ooQw3EVbI4A,172242
289
289
  bpy_types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
290
290
  console_python/__init__.pyi,sha256=fTcyMA-p95t-3BaMgwXypW6wer1X_Lb-Q3oW5Dfq3cU,704
291
291
  console_python/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -347,7 +347,7 @@ rna_xml/__init__.pyi,sha256=H-iSwO57zZ_piTZymDIp-ryuojWhwRoX_CT10iAI3rk,602
347
347
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
348
348
  sys_info/__init__.pyi,sha256=9MR_HOycufd8IKZQf-QDqUqE8Aj1D8n_Pfvi9wEKtvo,164
349
349
  sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
350
- fake_bpy_module-20240522.dist-info/METADATA,sha256=xQCimuhl4-vTSzJ-d5WAwuR04NRlTR2qwWy_h5RNfQo,7109
351
- fake_bpy_module-20240522.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
352
- fake_bpy_module-20240522.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
353
- fake_bpy_module-20240522.dist-info/RECORD,,
350
+ fake_bpy_module-20240523.dist-info/METADATA,sha256=E96FNBgMjaNtpn7PjWpwTt3lEpsr6FS1EgSBPFQF3wM,7109
351
+ fake_bpy_module-20240523.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
352
+ fake_bpy_module-20240523.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
353
+ fake_bpy_module-20240523.dist-info/RECORD,,