@alicloud/aliding20230426 2.20.0 → 2.20.2

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.2",
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;
@@ -29947,6 +29959,7 @@ export class QueryGroupLiveInfoResponseBody extends $tea.Model {
29947
29959
  * 13414
29948
29960
  */
29949
29961
  playbackDuration?: number;
29962
+ replayUrl?: string;
29950
29963
  /**
29951
29964
  * @remarks
29952
29965
  * requestId
@@ -29955,6 +29968,7 @@ export class QueryGroupLiveInfoResponseBody extends $tea.Model {
29955
29968
  * 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
29956
29969
  */
29957
29970
  requestId?: string;
29971
+ staffId?: string;
29958
29972
  /**
29959
29973
  * @example
29960
29974
  * 1687924800000
@@ -29971,7 +29985,15 @@ export class QueryGroupLiveInfoResponseBody extends $tea.Model {
29971
29985
  * 10
29972
29986
  */
29973
29987
  uv?: number;
29988
+ /**
29989
+ * @example
29990
+ * 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
29991
+ */
29974
29992
  vendorRequestId?: string;
29993
+ /**
29994
+ * @example
29995
+ * dingtalk
29996
+ */
29975
29997
  vendorType?: string;
29976
29998
  static names(): { [key: string]: string } {
29977
29999
  return {
@@ -29983,7 +30005,9 @@ export class QueryGroupLiveInfoResponseBody extends $tea.Model {
29983
30005
  livePlayUrl: 'livePlayUrl',
29984
30006
  liveStatus: 'liveStatus',
29985
30007
  playbackDuration: 'playbackDuration',
30008
+ replayUrl: 'replayUrl',
29986
30009
  requestId: 'requestId',
30010
+ staffId: 'staffId',
29987
30011
  startTime: 'startTime',
29988
30012
  subscribeCount: 'subscribeCount',
29989
30013
  title: 'title',
@@ -30003,7 +30027,9 @@ export class QueryGroupLiveInfoResponseBody extends $tea.Model {
30003
30027
  livePlayUrl: 'string',
30004
30028
  liveStatus: 'number',
30005
30029
  playbackDuration: 'number',
30030
+ replayUrl: 'string',
30006
30031
  requestId: 'string',
30032
+ staffId: 'string',
30007
30033
  startTime: 'number',
30008
30034
  subscribeCount: 'number',
30009
30035
  title: 'string',
@@ -79980,7 +80006,7 @@ export default class Client extends OpenApi {
79980
80006
  }
79981
80007
 
79982
80008
  /**
79983
- * 查询直播信息
80009
+ * 查询群直播详情
79984
80010
  *
79985
80011
  * @param tmpReq - QueryGroupLiveInfoRequest
79986
80012
  * @param tmpHeader - QueryGroupLiveInfoHeaders
@@ -80001,16 +80027,15 @@ export default class Client extends OpenApi {
80001
80027
  request.tenantContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.tenantContext, "TenantContext", "json");
80002
80028
  }
80003
80029
 
80004
- let query : {[key: string ]: any} = { };
80030
+ let body : {[key: string ]: any} = { };
80005
80031
  if (!Util.isUnset(request.anchorUnionId)) {
80006
- query["AnchorUnionId"] = request.anchorUnionId;
80032
+ body["AnchorUnionId"] = request.anchorUnionId;
80007
80033
  }
80008
80034
 
80009
80035
  if (!Util.isUnset(request.liveUuid)) {
80010
- query["LiveUuid"] = request.liveUuid;
80036
+ body["LiveUuid"] = request.liveUuid;
80011
80037
  }
80012
80038
 
80013
- let body : {[key: string ]: any} = { };
80014
80039
  if (!Util.isUnset(request.tenantContextShrink)) {
80015
80040
  body["TenantContext"] = request.tenantContextShrink;
80016
80041
  }
@@ -80026,7 +80051,6 @@ export default class Client extends OpenApi {
80026
80051
 
80027
80052
  let req = new $OpenApi.OpenApiRequest({
80028
80053
  headers: realHeaders,
80029
- query: OpenApiUtil.query(query),
80030
80054
  body: OpenApiUtil.parseToMap(body),
80031
80055
  });
80032
80056
  let params = new $OpenApi.Params({
@@ -80034,7 +80058,7 @@ export default class Client extends OpenApi {
80034
80058
  version: "2023-04-26",
80035
80059
  protocol: "HTTPS",
80036
80060
  pathname: `/dingtalk/v1/ysp/queryGroupLiveInfo`,
80037
- method: "GET",
80061
+ method: "POST",
80038
80062
  authType: "AK",
80039
80063
  style: "ROA",
80040
80064
  reqBodyType: "formData",
@@ -80044,7 +80068,7 @@ export default class Client extends OpenApi {
80044
80068
  }
80045
80069
 
80046
80070
  /**
80047
- * 查询直播信息
80071
+ * 查询群直播详情
80048
80072
  *
80049
80073
  * @param request - QueryGroupLiveInfoRequest
80050
80074
  * @returns QueryGroupLiveInfoResponse