@kubb/studio 5.3.7 → 5.3.8
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/dist/index.cjs +4 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +14 -0
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/protocol.cjs.map +1 -1
- package/dist/protocol.d.ts +10 -0
- package/dist/protocol.js.map +1 -1
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -706,7 +706,7 @@ async function createAgent({ studioUrl, token, name, machineToken }) {
|
|
|
706
706
|
}
|
|
707
707
|
//#endregion
|
|
708
708
|
//#region package.json
|
|
709
|
-
var version = "5.3.
|
|
709
|
+
var version = "5.3.8";
|
|
710
710
|
//#endregion
|
|
711
711
|
//#region src/hooks.ts
|
|
712
712
|
/**
|
|
@@ -2252,7 +2252,9 @@ var StudioSession = class {
|
|
|
2252
2252
|
studio: this.#studioVersion,
|
|
2253
2253
|
kubb: version,
|
|
2254
2254
|
agent: this.#options.version
|
|
2255
|
-
}
|
|
2255
|
+
},
|
|
2256
|
+
agentSlug: session.agentSlug,
|
|
2257
|
+
organizationSlug: session.organizationSlug
|
|
2256
2258
|
});
|
|
2257
2259
|
await this.#connectAck.promise;
|
|
2258
2260
|
await this.#hooks.callHook("studio:ready", {});
|