@workos/oagen-emitters 0.7.0 → 0.7.1
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.
- package/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +7 -0
- package/dist/index.mjs +1 -1
- package/dist/{plugin-Bp46oZIh.mjs → plugin-h8Onp2Ma.mjs} +4 -4
- package/dist/plugin-h8Onp2Ma.mjs.map +1 -0
- package/dist/plugin.mjs +1 -1
- package/package.json +1 -1
- package/src/python/client.ts +6 -1
- package/test/python/client.test.ts +4 -2
- package/dist/plugin-Bp46oZIh.mjs.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.7.1](https://github.com/workos/oagen-emitters/compare/v0.7.0...v0.7.1) (2026-05-01)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **python:** use explicit re-export form in service __init__.py ([#70](https://github.com/workos/oagen-emitters/issues/70)) ([5fcbb83](https://github.com/workos/oagen-emitters/commit/5fcbb83cc2c87278df2b6f055ccdcaa6efb97ad4))
|
|
9
|
+
|
|
3
10
|
## [0.7.0](https://github.com/workos/oagen-emitters/compare/v0.6.8...v0.7.0) (2026-04-30)
|
|
4
11
|
|
|
5
12
|
|
package/dist/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { _ as nodeEmitter, a as rustExtractor, c as pythonExtractor, d as rubyEmitter, f as kotlinEmitter, g as pythonEmitter, h as phpEmitter, i as kotlinExtractor, l as rubyExtractor, m as goEmitter, n as elixirExtractor, o as goExtractor, p as dotnetEmitter, r as dotnetExtractor, s as phpExtractor, t as workosEmittersPlugin, u as nodeExtractor } from "./plugin-
|
|
1
|
+
import { _ as nodeEmitter, a as rustExtractor, c as pythonExtractor, d as rubyEmitter, f as kotlinEmitter, g as pythonEmitter, h as phpEmitter, i as kotlinExtractor, l as rubyExtractor, m as goEmitter, n as elixirExtractor, o as goExtractor, p as dotnetEmitter, r as dotnetExtractor, s as phpExtractor, t as workosEmittersPlugin, u as nodeExtractor } from "./plugin-h8Onp2Ma.mjs";
|
|
2
2
|
export { dotnetEmitter, dotnetExtractor, elixirExtractor, goEmitter, goExtractor, kotlinEmitter, kotlinExtractor, nodeEmitter, nodeExtractor, phpEmitter, phpExtractor, pythonEmitter, pythonExtractor, rubyEmitter, rubyExtractor, rustExtractor, workosEmittersPlugin };
|
|
@@ -8939,12 +8939,12 @@ function generateServiceInits(spec, ctx) {
|
|
|
8939
8939
|
const lines = [];
|
|
8940
8940
|
const mountTarget = getMountTarget(service, ctx);
|
|
8941
8941
|
const groupClassNames = collectParameterGroupClassNames(mountGroups.get(mountTarget)?.operations ?? service.operations);
|
|
8942
|
-
const
|
|
8942
|
+
const aliasedImports = [
|
|
8943
8943
|
resolvedName,
|
|
8944
8944
|
`Async${resolvedName}`,
|
|
8945
8945
|
...groupClassNames
|
|
8946
|
-
];
|
|
8947
|
-
lines.push(`from ._resource import ${
|
|
8946
|
+
].map((n) => `${n} as ${n}`);
|
|
8947
|
+
lines.push(`from ._resource import ${aliasedImports.join(", ")}`);
|
|
8948
8948
|
lines.push("from .models import *");
|
|
8949
8949
|
files.push({
|
|
8950
8950
|
path: `src/${ctx.namespace}/${dirName}/__init__.py`,
|
|
@@ -21975,4 +21975,4 @@ const workosEmittersPlugin = {
|
|
|
21975
21975
|
//#endregion
|
|
21976
21976
|
export { nodeEmitter as _, rustExtractor as a, pythonExtractor as c, rubyEmitter as d, kotlinEmitter as f, pythonEmitter as g, phpEmitter as h, kotlinExtractor as i, rubyExtractor as l, goEmitter as m, elixirExtractor as n, goExtractor as o, dotnetEmitter as p, dotnetExtractor as r, phpExtractor as s, workosEmittersPlugin as t, nodeExtractor as u };
|
|
21977
21977
|
|
|
21978
|
-
//# sourceMappingURL=plugin-
|
|
21978
|
+
//# sourceMappingURL=plugin-h8Onp2Ma.mjs.map
|