@alicloud/aliding20230426 2.29.0 → 2.29.1
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/client.d.ts +134 -0
- package/dist/client.js +270 -42
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +287 -0
package/dist/client.d.ts
CHANGED
|
@@ -3579,6 +3579,119 @@ export declare class CreateRunResponseBodyContent extends $dara.Model {
|
|
|
3579
3579
|
[key: string]: any;
|
|
3580
3580
|
});
|
|
3581
3581
|
}
|
|
3582
|
+
export declare class CreateRunResponseBodyDataContentCardCallback extends $dara.Model {
|
|
3583
|
+
content?: string;
|
|
3584
|
+
templateId?: string;
|
|
3585
|
+
userId?: string;
|
|
3586
|
+
static names(): {
|
|
3587
|
+
[key: string]: string;
|
|
3588
|
+
};
|
|
3589
|
+
static types(): {
|
|
3590
|
+
[key: string]: any;
|
|
3591
|
+
};
|
|
3592
|
+
validate(): void;
|
|
3593
|
+
constructor(map?: {
|
|
3594
|
+
[key: string]: any;
|
|
3595
|
+
});
|
|
3596
|
+
}
|
|
3597
|
+
export declare class CreateRunResponseBodyDataContentDingCard extends $dara.Model {
|
|
3598
|
+
cardDesc?: string;
|
|
3599
|
+
content?: string;
|
|
3600
|
+
contentType?: string;
|
|
3601
|
+
finished?: boolean;
|
|
3602
|
+
templateId?: string;
|
|
3603
|
+
static names(): {
|
|
3604
|
+
[key: string]: string;
|
|
3605
|
+
};
|
|
3606
|
+
static types(): {
|
|
3607
|
+
[key: string]: any;
|
|
3608
|
+
};
|
|
3609
|
+
validate(): void;
|
|
3610
|
+
constructor(map?: {
|
|
3611
|
+
[key: string]: any;
|
|
3612
|
+
});
|
|
3613
|
+
}
|
|
3614
|
+
export declare class CreateRunResponseBodyDataContentImageUrl extends $dara.Model {
|
|
3615
|
+
detail?: string;
|
|
3616
|
+
imageDesc?: string;
|
|
3617
|
+
url?: string;
|
|
3618
|
+
static names(): {
|
|
3619
|
+
[key: string]: string;
|
|
3620
|
+
};
|
|
3621
|
+
static types(): {
|
|
3622
|
+
[key: string]: any;
|
|
3623
|
+
};
|
|
3624
|
+
validate(): void;
|
|
3625
|
+
constructor(map?: {
|
|
3626
|
+
[key: string]: any;
|
|
3627
|
+
});
|
|
3628
|
+
}
|
|
3629
|
+
export declare class CreateRunResponseBodyDataContentMarkdown extends $dara.Model {
|
|
3630
|
+
value?: string;
|
|
3631
|
+
static names(): {
|
|
3632
|
+
[key: string]: string;
|
|
3633
|
+
};
|
|
3634
|
+
static types(): {
|
|
3635
|
+
[key: string]: any;
|
|
3636
|
+
};
|
|
3637
|
+
validate(): void;
|
|
3638
|
+
constructor(map?: {
|
|
3639
|
+
[key: string]: any;
|
|
3640
|
+
});
|
|
3641
|
+
}
|
|
3642
|
+
export declare class CreateRunResponseBodyDataContentText extends $dara.Model {
|
|
3643
|
+
value?: string;
|
|
3644
|
+
static names(): {
|
|
3645
|
+
[key: string]: string;
|
|
3646
|
+
};
|
|
3647
|
+
static types(): {
|
|
3648
|
+
[key: string]: any;
|
|
3649
|
+
};
|
|
3650
|
+
validate(): void;
|
|
3651
|
+
constructor(map?: {
|
|
3652
|
+
[key: string]: any;
|
|
3653
|
+
});
|
|
3654
|
+
}
|
|
3655
|
+
export declare class CreateRunResponseBodyDataContent extends $dara.Model {
|
|
3656
|
+
cardCallback?: CreateRunResponseBodyDataContentCardCallback;
|
|
3657
|
+
dingCard?: CreateRunResponseBodyDataContentDingCard;
|
|
3658
|
+
imageUrl?: CreateRunResponseBodyDataContentImageUrl;
|
|
3659
|
+
markdown?: CreateRunResponseBodyDataContentMarkdown;
|
|
3660
|
+
text?: CreateRunResponseBodyDataContentText;
|
|
3661
|
+
type?: string;
|
|
3662
|
+
static names(): {
|
|
3663
|
+
[key: string]: string;
|
|
3664
|
+
};
|
|
3665
|
+
static types(): {
|
|
3666
|
+
[key: string]: any;
|
|
3667
|
+
};
|
|
3668
|
+
validate(): void;
|
|
3669
|
+
constructor(map?: {
|
|
3670
|
+
[key: string]: any;
|
|
3671
|
+
});
|
|
3672
|
+
}
|
|
3673
|
+
export declare class CreateRunResponseBodyData extends $dara.Model {
|
|
3674
|
+
content?: CreateRunResponseBodyDataContent[];
|
|
3675
|
+
createAt?: number;
|
|
3676
|
+
id?: string;
|
|
3677
|
+
metadata?: {
|
|
3678
|
+
[key: string]: any;
|
|
3679
|
+
};
|
|
3680
|
+
object?: string;
|
|
3681
|
+
role?: string;
|
|
3682
|
+
runId?: string;
|
|
3683
|
+
threadId?: string;
|
|
3684
|
+
static names(): {
|
|
3685
|
+
[key: string]: string;
|
|
3686
|
+
};
|
|
3687
|
+
static types(): {
|
|
3688
|
+
[key: string]: any;
|
|
3689
|
+
};
|
|
3690
|
+
validate(): void;
|
|
3691
|
+
constructor(map?: {
|
|
3692
|
+
[key: string]: any;
|
|
3693
|
+
});
|
|
3694
|
+
}
|
|
3582
3695
|
export declare class CreateRunResponseBodyDeltaContentCardCallback extends $dara.Model {
|
|
3583
3696
|
/**
|
|
3584
3697
|
* @example
|
|
@@ -9889,6 +10002,21 @@ export declare class GetRangeResponseBodyBackgroundColors extends $dara.Model {
|
|
|
9889
10002
|
[key: string]: any;
|
|
9890
10003
|
});
|
|
9891
10004
|
}
|
|
10005
|
+
export declare class GetRangeResponseBodyHyperlinks extends $dara.Model {
|
|
10006
|
+
type?: string;
|
|
10007
|
+
link?: string;
|
|
10008
|
+
text?: string;
|
|
10009
|
+
static names(): {
|
|
10010
|
+
[key: string]: string;
|
|
10011
|
+
};
|
|
10012
|
+
static types(): {
|
|
10013
|
+
[key: string]: any;
|
|
10014
|
+
};
|
|
10015
|
+
validate(): void;
|
|
10016
|
+
constructor(map?: {
|
|
10017
|
+
[key: string]: any;
|
|
10018
|
+
});
|
|
10019
|
+
}
|
|
9892
10020
|
export declare class GetRelatedWorkspacesHeadersAccountContext extends $dara.Model {
|
|
9893
10021
|
/**
|
|
9894
10022
|
* @remarks
|
|
@@ -27064,6 +27192,7 @@ export declare class CreateRunResponseBody extends $dara.Model {
|
|
|
27064
27192
|
* 1642448000000
|
|
27065
27193
|
*/
|
|
27066
27194
|
createAt?: number;
|
|
27195
|
+
data?: CreateRunResponseBodyData;
|
|
27067
27196
|
/**
|
|
27068
27197
|
* @example
|
|
27069
27198
|
* {}
|
|
@@ -37813,6 +37942,11 @@ export declare class GetRangeResponseBody extends $dara.Model {
|
|
|
37813
37942
|
* []
|
|
37814
37943
|
*/
|
|
37815
37944
|
formulas?: string[][];
|
|
37945
|
+
/**
|
|
37946
|
+
* @example
|
|
37947
|
+
* []
|
|
37948
|
+
*/
|
|
37949
|
+
hyperlinks?: GetRangeResponseBodyHyperlinks[][];
|
|
37816
37950
|
/**
|
|
37817
37951
|
* @remarks
|
|
37818
37952
|
* requestId
|