polyv-live-api-sdk 1.0.16 → 1.0.17
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 +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/services/v4/chat.service.d.ts +1 -1
- package/dist/types/v4-chat.d.ts +2 -2
- package/dist/types/v4-chat.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -8497,8 +8497,8 @@ interface BatchCheckinItem {
|
|
|
8497
8497
|
delayTime?: number;
|
|
8498
8498
|
/** Check-in message */
|
|
8499
8499
|
message?: string;
|
|
8500
|
-
/** Whether force check-in is enabled */
|
|
8501
|
-
forceCheckInEnabled?:
|
|
8500
|
+
/** Whether force check-in is enabled (Y/N) */
|
|
8501
|
+
forceCheckInEnabled?: 'Y' | 'N';
|
|
8502
8502
|
}
|
|
8503
8503
|
/**
|
|
8504
8504
|
* Parameters for batch check-in
|
|
@@ -21673,7 +21673,7 @@ declare class V4ChatService {
|
|
|
21673
21673
|
* channelId: '123456',
|
|
21674
21674
|
* limitTime: 60,
|
|
21675
21675
|
* message: 'Please check in',
|
|
21676
|
-
* forceCheckInEnabled:
|
|
21676
|
+
* forceCheckInEnabled: 'Y',
|
|
21677
21677
|
* },
|
|
21678
21678
|
* ],
|
|
21679
21679
|
* });
|
package/dist/index.js
CHANGED
|
@@ -15513,7 +15513,7 @@ var V4ChatService = class {
|
|
|
15513
15513
|
* channelId: '123456',
|
|
15514
15514
|
* limitTime: 60,
|
|
15515
15515
|
* message: 'Please check in',
|
|
15516
|
-
* forceCheckInEnabled:
|
|
15516
|
+
* forceCheckInEnabled: 'Y',
|
|
15517
15517
|
* },
|
|
15518
15518
|
* ],
|
|
15519
15519
|
* });
|