@laplace.live/internal 1.2.40 → 1.2.41
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/index.d.ts +16 -8
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1116,7 +1116,7 @@ export declare namespace LaplaceInternal {
|
|
|
1116
1116
|
}
|
|
1117
1117
|
|
|
1118
1118
|
/**
|
|
1119
|
-
* Request body for POST /laplace/mcn-update
|
|
1119
|
+
* Request body for POST /laplace/mcn-batch-update
|
|
1120
1120
|
* Batch updates MCN info for multiple users (max 10,000 entries)
|
|
1121
1121
|
*/
|
|
1122
1122
|
export interface McnBatchUpdateRequest {
|
|
@@ -1124,17 +1124,21 @@ export declare namespace LaplaceInternal {
|
|
|
1124
1124
|
}
|
|
1125
1125
|
|
|
1126
1126
|
/**
|
|
1127
|
-
* Response for POST /laplace/mcn-update
|
|
1127
|
+
* Response for POST /laplace/mcn-batch-update
|
|
1128
1128
|
*/
|
|
1129
1129
|
export interface McnBatchUpdateResponse {
|
|
1130
1130
|
success: true
|
|
1131
1131
|
/** Total entries received */
|
|
1132
1132
|
total: number
|
|
1133
|
-
/**
|
|
1133
|
+
/** Count of users whose mcnInfo was changed */
|
|
1134
1134
|
updated: number
|
|
1135
|
-
/**
|
|
1135
|
+
/** UIDs whose mcnInfo was changed (new MCN or MCN change) */
|
|
1136
|
+
updatedUids: number[]
|
|
1137
|
+
/** Count of users whose MCN matched the latest history entry (no-op) */
|
|
1136
1138
|
unchanged: number
|
|
1137
|
-
/** UIDs
|
|
1139
|
+
/** UIDs whose MCN matched the latest history entry (no-op) */
|
|
1140
|
+
unchangedUids: number[]
|
|
1141
|
+
/** Count of UIDs not found in bilibili_users */
|
|
1138
1142
|
skipped: number
|
|
1139
1143
|
/** List of missing UIDs */
|
|
1140
1144
|
skippedUids: number[]
|
|
@@ -1170,11 +1174,15 @@ export declare namespace LaplaceInternal {
|
|
|
1170
1174
|
success: true
|
|
1171
1175
|
/** Total entries received */
|
|
1172
1176
|
total: number
|
|
1173
|
-
/**
|
|
1177
|
+
/** Count of users whose guildInfo was changed */
|
|
1174
1178
|
updated: number
|
|
1175
|
-
/**
|
|
1179
|
+
/** UIDs whose guildInfo was changed (new guild or guild change) */
|
|
1180
|
+
updatedUids: number[]
|
|
1181
|
+
/** Count of users whose guild matched the latest history entry (no-op) */
|
|
1176
1182
|
unchanged: number
|
|
1177
|
-
/** UIDs
|
|
1183
|
+
/** UIDs whose guild matched the latest history entry (no-op) */
|
|
1184
|
+
unchangedUids: number[]
|
|
1185
|
+
/** Count of UIDs not found in bilibili_users */
|
|
1178
1186
|
skipped: number
|
|
1179
1187
|
/** List of missing UIDs */
|
|
1180
1188
|
skippedUids: number[]
|