Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/autorest.python/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
},
"homepage": "https://github.com/Azure/autorest.python/blob/main/README.md",
"dependencies": {
"@typespec/http-client-python": "~0.6.9",
"@typespec/http-client-python": "https://artprodcus3.artifacts.visualstudio.com/A0fb41ef4-5012-48a9-bf39-4ee3de03ee35/29ec6040-b234-4e31-b139-33dc4287b756/_apis/artifact/cGlwZWxpbmVhcnRpZmFjdDovL2F6dXJlLXNkay9wcm9qZWN0SWQvMjllYzYwNDAtYjIzNC00ZTMxLWIxMzktMzNkYzQyODdiNzU2L2J1aWxkSWQvNDUzNDc0Ni9hcnRpZmFjdE5hbWUvYnVpbGRfYXJ0aWZhY3RzX3B5dGhvbg2/content?format=file&subPath=%2Fpackages%2Ftypespec-http-client-python-0.7.0.tgz",
"@autorest/system-requirements": "~1.0.2",
"fs-extra": "~11.2.0",
"tsx": "~4.19.1"
Expand Down
2 changes: 1 addition & 1 deletion packages/typespec-python/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"js-yaml": "~4.1.0",
"semver": "~7.6.2",
"tsx": "~4.19.1",
"@typespec/http-client-python": "~0.6.9",
"@typespec/http-client-python": "https://artprodcus3.artifacts.visualstudio.com/A0fb41ef4-5012-48a9-bf39-4ee3de03ee35/29ec6040-b234-4e31-b139-33dc4287b756/_apis/artifact/cGlwZWxpbmVhcnRpZmFjdDovL2F6dXJlLXNkay9wcm9qZWN0SWQvMjllYzYwNDAtYjIzNC00ZTMxLWIxMzktMzNkYzQyODdiNzU2L2J1aWxkSWQvNDUzNDc0Ni9hcnRpZmFjdE5hbWUvYnVpbGRfYXJ0aWZhY3RzX3B5dGhvbg2/content?format=file&subPath=%2Fpackages%2Ftypespec-http-client-python-0.7.0.tgz",
"fs-extra": "~11.2.0"
},
"devDependencies": {
Expand Down
3 changes: 2 additions & 1 deletion packages/typespec-python/scripts/eng/regenerate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ const EMITTER_OPTIONS: Record<string, Record<string, string> | Record<string, st
},
"authentication/http/custom": {
"package-name": "authentication-http-custom",
"package-pprint-name": "Authentication Http Custom Service",
},
"authentication/union": {
"package-name": "authentication-union",
Expand Down Expand Up @@ -259,7 +260,7 @@ function addOptions(spec: string, generatedFolder: string, flags: RegenerateFlag
}
options["examples-dir"] = toPosix(join(dirname(spec), "examples"));
const configs = Object.entries(options).flatMap(([k, v]) => {
return `--option @azure-tools/typespec-python.${k}=${v}`;
return `--option @azure-tools/typespec-python.${k}=${typeof v === "string" && v.indexOf(" ") > -1 ? `"${v}"` : v}`;
});
emitterConfigs.push({
optionsStr: configs.join(" "),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


# Authentication Http Custom client library for Python
# Authentication Http Custom Service client library for Python
<!-- write necessary description of service -->

## Getting started
Expand All @@ -15,7 +15,7 @@ python -m pip install authentication-http-custom

- Python 3.8 or later is required to use this package.
- You need an [Azure subscription][azure_sub] to use this package.
- An existing Authentication Http Custom instance.
- An existing Authentication Http Custom Service instance.

## Contributing

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@


PACKAGE_NAME = "authentication-http-custom"
PACKAGE_PPRINT_NAME = "Authentication Http Custom"
PACKAGE_PPRINT_NAME = "Authentication Http Custom Service"

# a-b-c => a/b/c
package_folder_path = PACKAGE_NAME.replace("-", "/")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@


PACKAGE_NAME = "authentication-http-custom"
PACKAGE_PPRINT_NAME = "Authentication Http Custom"
PACKAGE_PPRINT_NAME = "Authentication Http Custom Service"

# a-b-c => a/b/c
package_folder_path = PACKAGE_NAME.replace("-", "/")
Expand Down
15 changes: 8 additions & 7 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading