@paymanai/payman-ask-sdk 4.0.26 → 4.0.27
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.d.mts +8 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +984 -63
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +985 -64
- package/dist/index.mjs.map +1 -1
- package/dist/index.native.js +40 -2
- package/dist/index.native.js.map +1 -1
- package/dist/styles.css +101 -0
- package/dist/styles.css.map +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -350,6 +350,14 @@ type MessageListV2Props = {
|
|
|
350
350
|
retryDisabled?: boolean;
|
|
351
351
|
/** Active user-action prompts to render inline (rendered as a stack). */
|
|
352
352
|
userActionPrompts?: ActiveUserAction[];
|
|
353
|
+
/**
|
|
354
|
+
* `userActionId` of the prompt currently docked in the composer (see
|
|
355
|
+
* `UserActionDock`). Excluded from the inline stack so it isn't
|
|
356
|
+
* rendered twice; everything else (secondary parallel prompts,
|
|
357
|
+
* notification-kind prompts, already-expired prompts) still renders
|
|
358
|
+
* inline as before.
|
|
359
|
+
*/
|
|
360
|
+
dockedUserActionId?: string;
|
|
353
361
|
/** One-way notifications to render inline. */
|
|
354
362
|
notifications?: UserNotification[];
|
|
355
363
|
/** Submit a prompt's schema-typed form payload. */
|
package/dist/index.d.ts
CHANGED
|
@@ -350,6 +350,14 @@ type MessageListV2Props = {
|
|
|
350
350
|
retryDisabled?: boolean;
|
|
351
351
|
/** Active user-action prompts to render inline (rendered as a stack). */
|
|
352
352
|
userActionPrompts?: ActiveUserAction[];
|
|
353
|
+
/**
|
|
354
|
+
* `userActionId` of the prompt currently docked in the composer (see
|
|
355
|
+
* `UserActionDock`). Excluded from the inline stack so it isn't
|
|
356
|
+
* rendered twice; everything else (secondary parallel prompts,
|
|
357
|
+
* notification-kind prompts, already-expired prompts) still renders
|
|
358
|
+
* inline as before.
|
|
359
|
+
*/
|
|
360
|
+
dockedUserActionId?: string;
|
|
353
361
|
/** One-way notifications to render inline. */
|
|
354
362
|
notifications?: UserNotification[];
|
|
355
363
|
/** Submit a prompt's schema-typed form payload. */
|