@alicloud/aliding20230426 2.39.1 → 2.39.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.
Files changed (36) hide show
  1. package/dist/client.js +38 -3
  2. package/dist/client.js.map +1 -1
  3. package/dist/models/CreateThreadRequest.d.ts +1 -0
  4. package/dist/models/CreateThreadRequest.js +2 -0
  5. package/dist/models/CreateThreadRequest.js.map +1 -1
  6. package/dist/models/InvokeAssistantRequest.d.ts +1 -0
  7. package/dist/models/InvokeAssistantRequest.js +2 -0
  8. package/dist/models/InvokeAssistantRequest.js.map +1 -1
  9. package/dist/models/PatchEventRequest.d.ts +59 -0
  10. package/dist/models/PatchEventRequest.js +103 -1
  11. package/dist/models/PatchEventRequest.js.map +1 -1
  12. package/dist/models/PatchEventResponseBody.d.ts +76 -0
  13. package/dist/models/PatchEventResponseBody.js +133 -1
  14. package/dist/models/PatchEventResponseBody.js.map +1 -1
  15. package/dist/models/PatchEventShrinkRequest.d.ts +5 -0
  16. package/dist/models/PatchEventShrinkRequest.js +10 -0
  17. package/dist/models/PatchEventShrinkRequest.js.map +1 -1
  18. package/dist/models/QueryDentriesInfoRequest.d.ts +0 -8
  19. package/dist/models/QueryDentriesInfoRequest.js +0 -2
  20. package/dist/models/QueryDentriesInfoRequest.js.map +1 -1
  21. package/dist/models/QueryDentriesInfoShrinkRequest.d.ts +0 -8
  22. package/dist/models/QueryDentriesInfoShrinkRequest.js +0 -2
  23. package/dist/models/QueryDentriesInfoShrinkRequest.js.map +1 -1
  24. package/dist/models/model.d.ts +9 -0
  25. package/dist/models/model.js +67 -48
  26. package/dist/models/model.js.map +1 -1
  27. package/package.json +1 -1
  28. package/src/client.ts +50 -4
  29. package/src/models/CreateThreadRequest.ts +3 -0
  30. package/src/models/InvokeAssistantRequest.ts +3 -0
  31. package/src/models/PatchEventRequest.ts +125 -0
  32. package/src/models/PatchEventResponseBody.ts +163 -0
  33. package/src/models/PatchEventShrinkRequest.ts +15 -0
  34. package/src/models/QueryDentriesInfoRequest.ts +0 -10
  35. package/src/models/QueryDentriesInfoShrinkRequest.ts +0 -10
  36. package/src/models/model.ts +9 -0
package/dist/client.js CHANGED
@@ -3908,6 +3908,9 @@ class Client extends openapi_core_1.default {
3908
3908
  if (!$dara.isNull(request.assistantId)) {
3909
3909
  body["assistantId"] = request.assistantId;
3910
3910
  }
3911
+ if (!$dara.isNull(request.clientEnum)) {
3912
+ body["clientEnum"] = request.clientEnum;
3913
+ }
3911
3914
  if (!$dara.isNull(request.extLoginUser)) {
3912
3915
  body["extLoginUser"] = request.extLoginUser;
3913
3916
  }
@@ -11180,6 +11183,9 @@ class Client extends openapi_core_1.default {
11180
11183
  if (!$dara.isNull(request.assistantId)) {
11181
11184
  body["assistantId"] = request.assistantId;
11182
11185
  }
11186
+ if (!$dara.isNull(request.clientEnum)) {
11187
+ body["clientEnum"] = request.clientEnum;
11188
+ }
11183
11189
  if (!$dara.isNull(request.extLoginUser)) {
11184
11190
  body["extLoginUser"] = request.extLoginUser;
11185
11191
  }
@@ -11260,6 +11266,9 @@ class Client extends openapi_core_1.default {
11260
11266
  if (!$dara.isNull(request.assistantId)) {
11261
11267
  body["assistantId"] = request.assistantId;
11262
11268
  }
11269
+ if (!$dara.isNull(request.clientEnum)) {
11270
+ body["clientEnum"] = request.clientEnum;
11271
+ }
11263
11272
  if (!$dara.isNull(request.extLoginUser)) {
11264
11273
  body["extLoginUser"] = request.extLoginUser;
11265
11274
  }
@@ -12829,6 +12838,34 @@ class Client extends openapi_core_1.default {
12829
12838
  if (!$dara.isNull(tmpReq.start)) {
12830
12839
  request.startShrink = openapi_core_2.OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.start, "Start", "json");
12831
12840
  }
12841
+ if (!$dara.isNull(tmpReq.categories)) {
12842
+ request.categoriesShrink = openapi_core_2.OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.categories, "categories", "json");
12843
+ }
12844
+ if (!$dara.isNull(tmpReq.onlineMeetingInfo)) {
12845
+ request.onlineMeetingInfoShrink = openapi_core_2.OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.onlineMeetingInfo, "onlineMeetingInfo", "json");
12846
+ }
12847
+ if (!$dara.isNull(tmpReq.richTextDescription)) {
12848
+ request.richTextDescriptionShrink = openapi_core_2.OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.richTextDescription, "richTextDescription", "json");
12849
+ }
12850
+ if (!$dara.isNull(tmpReq.uiConfigs)) {
12851
+ request.uiConfigsShrink = openapi_core_2.OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.uiConfigs, "uiConfigs", "json");
12852
+ }
12853
+ let query = {};
12854
+ if (!$dara.isNull(request.categoriesShrink)) {
12855
+ query["categories"] = request.categoriesShrink;
12856
+ }
12857
+ if (!$dara.isNull(request.freeBusyStatus)) {
12858
+ query["freeBusyStatus"] = request.freeBusyStatus;
12859
+ }
12860
+ if (!$dara.isNull(request.onlineMeetingInfoShrink)) {
12861
+ query["onlineMeetingInfo"] = request.onlineMeetingInfoShrink;
12862
+ }
12863
+ if (!$dara.isNull(request.richTextDescriptionShrink)) {
12864
+ query["richTextDescription"] = request.richTextDescriptionShrink;
12865
+ }
12866
+ if (!$dara.isNull(request.uiConfigsShrink)) {
12867
+ query["uiConfigs"] = request.uiConfigsShrink;
12868
+ }
12832
12869
  let body = {};
12833
12870
  if (!$dara.isNull(request.attendeesShrink)) {
12834
12871
  body["Attendees"] = request.attendeesShrink;
@@ -12878,6 +12915,7 @@ class Client extends openapi_core_1.default {
12878
12915
  }
12879
12916
  let req = new openapi_core_2.$OpenApiUtil.OpenApiRequest({
12880
12917
  headers: realHeaders,
12918
+ query: openapi_core_2.OpenApiUtil.query(query),
12881
12919
  body: openapi_core_2.OpenApiUtil.parseToMap(body),
12882
12920
  });
12883
12921
  let params = new openapi_core_2.$OpenApiUtil.Params({
@@ -13334,9 +13372,6 @@ class Client extends openapi_core_1.default {
13334
13372
  if (!$dara.isNull(request.tenantContextShrink)) {
13335
13373
  body["TenantContext"] = request.tenantContextShrink;
13336
13374
  }
13337
- if (!$dara.isNull(request.unionId)) {
13338
- body["UnionId"] = request.unionId;
13339
- }
13340
13375
  if (!$dara.isNull(request.withThumbnail)) {
13341
13376
  body["WithThumbnail"] = request.withThumbnail;
13342
13377
  }