We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0d4a2c commit cc6b1e5Copy full SHA for cc6b1e5
packages/flat-server-api/src/login.ts
@@ -437,7 +437,7 @@ export interface RemoveBindingResult {
437
}
438
439
export interface SetCollectionAgreementReq {
440
- is_agree_collect_data: boolean;
+ isAgree: boolean;
441
442
export interface SetCollectionAgreementResult {
443
userUUID: string;
@@ -453,7 +453,7 @@ export async function setCollectionAgreement(
453
): Promise<SetCollectionAgreementResult> {
454
return await post<SetCollectionAgreementReq, SetCollectionAgreementResult>(
455
"user/agreement/set",
456
- { is_agree_collect_data: isAgree },
+ { isAgree },
457
);
458
459
0 commit comments