@autorest/python 6.26.2 → 6.26.3

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.
@@ -87,7 +87,7 @@ class OperationBase( # pylint: disable=too-many-public-methods,too-many-instanc
87
87
  self.is_lro_initial_operation: bool = self.yaml_data.get("isLroInitialOperation", False)
88
88
  self.include_documentation: bool = not self.is_lro_initial_operation
89
89
  self.internal: bool = self.yaml_data.get("internal", False)
90
- if self.internal:
90
+ if self.internal and not self.name.startswith("_"):
91
91
  self.name = "_" + self.name
92
92
  self.has_etag: bool = self.yaml_data.get("hasEtag", False)
93
93
  self.cross_language_definition_id: Optional[str] = self.yaml_data.get("crossLanguageDefinitionId")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autorest/python",
3
- "version": "6.26.2",
3
+ "version": "6.26.3",
4
4
  "description": "The Python extension for generators in AutoRest.",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -19,10 +19,10 @@
19
19
  },
20
20
  "homepage": "https://github.com/Azure/autorest.python/blob/main/README.md",
21
21
  "dependencies": {
22
- "@typespec/http-client-python": "~0.3.6",
22
+ "@typespec/http-client-python": "~0.3.8",
23
23
  "@autorest/system-requirements": "~1.0.2",
24
24
  "fs-extra": "~11.2.0",
25
- "tsx": "4.17.0"
25
+ "tsx": "~4.19.1"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@microsoft.azure/autorest.testserver": "^3.3.50",