@alicloud/aliding20230426 2.20.0 → 2.20.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alicloud/aliding20230426",
3
- "version": "2.20.0",
3
+ "version": "2.20.1",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
package/src/client.ts CHANGED
@@ -29850,13 +29850,19 @@ export class QueryGroupLiveInfoShrinkHeaders extends $tea.Model {
29850
29850
 
29851
29851
  export class QueryGroupLiveInfoRequest extends $tea.Model {
29852
29852
  /**
29853
+ * @remarks
29854
+ * This parameter is required.
29855
+ *
29853
29856
  * @example
29854
- * Eijxxx
29857
+ * 333d
29855
29858
  */
29856
29859
  anchorUnionId?: string;
29857
29860
  /**
29861
+ * @remarks
29862
+ * This parameter is required.
29863
+ *
29858
29864
  * @example
29859
- * 123456
29865
+ * 4d38xxxxx
29860
29866
  */
29861
29867
  liveUuid?: string;
29862
29868
  tenantContext?: QueryGroupLiveInfoRequestTenantContext;
@@ -29883,13 +29889,19 @@ export class QueryGroupLiveInfoRequest extends $tea.Model {
29883
29889
 
29884
29890
  export class QueryGroupLiveInfoShrinkRequest extends $tea.Model {
29885
29891
  /**
29892
+ * @remarks
29893
+ * This parameter is required.
29894
+ *
29886
29895
  * @example
29887
- * Eijxxx
29896
+ * 333d
29888
29897
  */
29889
29898
  anchorUnionId?: string;
29890
29899
  /**
29900
+ * @remarks
29901
+ * This parameter is required.
29902
+ *
29891
29903
  * @example
29892
- * 123456
29904
+ * 4d38xxxxx
29893
29905
  */
29894
29906
  liveUuid?: string;
29895
29907
  tenantContextShrink?: string;
@@ -29955,6 +29967,7 @@ export class QueryGroupLiveInfoResponseBody extends $tea.Model {
29955
29967
  * 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
29956
29968
  */
29957
29969
  requestId?: string;
29970
+ staffId?: string;
29958
29971
  /**
29959
29972
  * @example
29960
29973
  * 1687924800000
@@ -29971,7 +29984,15 @@ export class QueryGroupLiveInfoResponseBody extends $tea.Model {
29971
29984
  * 10
29972
29985
  */
29973
29986
  uv?: number;
29987
+ /**
29988
+ * @example
29989
+ * 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
29990
+ */
29974
29991
  vendorRequestId?: string;
29992
+ /**
29993
+ * @example
29994
+ * dingtalk
29995
+ */
29975
29996
  vendorType?: string;
29976
29997
  static names(): { [key: string]: string } {
29977
29998
  return {
@@ -29984,6 +30005,7 @@ export class QueryGroupLiveInfoResponseBody extends $tea.Model {
29984
30005
  liveStatus: 'liveStatus',
29985
30006
  playbackDuration: 'playbackDuration',
29986
30007
  requestId: 'requestId',
30008
+ staffId: 'staffId',
29987
30009
  startTime: 'startTime',
29988
30010
  subscribeCount: 'subscribeCount',
29989
30011
  title: 'title',
@@ -30004,6 +30026,7 @@ export class QueryGroupLiveInfoResponseBody extends $tea.Model {
30004
30026
  liveStatus: 'number',
30005
30027
  playbackDuration: 'number',
30006
30028
  requestId: 'string',
30029
+ staffId: 'string',
30007
30030
  startTime: 'number',
30008
30031
  subscribeCount: 'number',
30009
30032
  title: 'string',
@@ -79980,7 +80003,7 @@ export default class Client extends OpenApi {
79980
80003
  }
79981
80004
 
79982
80005
  /**
79983
- * 查询直播信息
80006
+ * 查询群直播详情
79984
80007
  *
79985
80008
  * @param tmpReq - QueryGroupLiveInfoRequest
79986
80009
  * @param tmpHeader - QueryGroupLiveInfoHeaders
@@ -80001,16 +80024,15 @@ export default class Client extends OpenApi {
80001
80024
  request.tenantContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.tenantContext, "TenantContext", "json");
80002
80025
  }
80003
80026
 
80004
- let query : {[key: string ]: any} = { };
80027
+ let body : {[key: string ]: any} = { };
80005
80028
  if (!Util.isUnset(request.anchorUnionId)) {
80006
- query["AnchorUnionId"] = request.anchorUnionId;
80029
+ body["AnchorUnionId"] = request.anchorUnionId;
80007
80030
  }
80008
80031
 
80009
80032
  if (!Util.isUnset(request.liveUuid)) {
80010
- query["LiveUuid"] = request.liveUuid;
80033
+ body["LiveUuid"] = request.liveUuid;
80011
80034
  }
80012
80035
 
80013
- let body : {[key: string ]: any} = { };
80014
80036
  if (!Util.isUnset(request.tenantContextShrink)) {
80015
80037
  body["TenantContext"] = request.tenantContextShrink;
80016
80038
  }
@@ -80026,7 +80048,6 @@ export default class Client extends OpenApi {
80026
80048
 
80027
80049
  let req = new $OpenApi.OpenApiRequest({
80028
80050
  headers: realHeaders,
80029
- query: OpenApiUtil.query(query),
80030
80051
  body: OpenApiUtil.parseToMap(body),
80031
80052
  });
80032
80053
  let params = new $OpenApi.Params({
@@ -80034,7 +80055,7 @@ export default class Client extends OpenApi {
80034
80055
  version: "2023-04-26",
80035
80056
  protocol: "HTTPS",
80036
80057
  pathname: `/dingtalk/v1/ysp/queryGroupLiveInfo`,
80037
- method: "GET",
80058
+ method: "POST",
80038
80059
  authType: "AK",
80039
80060
  style: "ROA",
80040
80061
  reqBodyType: "formData",
@@ -80044,7 +80065,7 @@ export default class Client extends OpenApi {
80044
80065
  }
80045
80066
 
80046
80067
  /**
80047
- * 查询直播信息
80068
+ * 查询群直播详情
80048
80069
  *
80049
80070
  * @param request - QueryGroupLiveInfoRequest
80050
80071
  * @returns QueryGroupLiveInfoResponse