@intuned/runtime-dev 1.1.2-auth-helper.3 → 1.1.2-auth-helper.5

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.
@@ -29,7 +29,8 @@ const startRunApiSchema = _zod.default.object({
29
29
  jobId: _zod.default.string().optional(),
30
30
  jobRunId: _zod.default.string().optional(),
31
31
  runId: _zod.default.string().optional(),
32
- queueId: _zod.default.string().optional()
32
+ queueId: _zod.default.string().optional(),
33
+ authSessionId: _zod.default.string().optional()
33
34
  }).optional()
34
35
  })
35
36
  });
@@ -201,3 +201,18 @@ export declare function requestMultipleChoice(
201
201
  * ```
202
202
  */
203
203
  export declare function requestOTP(message: string): unknown;
204
+
205
+ /**
206
+ * Retrieves the parameters for the authentication session currently being used.
207
+ *
208
+ * @returns {AuthSessionParameters} An object containing the parameters for the current authentication session.
209
+ *
210
+ * @example
211
+ * ```typescript getAuthSessionParameters
212
+ * import { getAuthSessionParameters } from "@intuned/sdk/runtime"
213
+ *
214
+ * const authSessionParams = getAuthSessionParameters();
215
+ * console.log(authSessionParams);
216
+ * ```
217
+ */
218
+ export declare function getAuthSessionParameters(): Promise<any>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intuned/runtime-dev",
3
- "version": "1.1.2-auth-helper.3",
3
+ "version": "1.1.2-auth-helper.5",
4
4
  "description": "Intuned runtime",
5
5
  "exports": {
6
6
  ".": "./dist/index.js",