@alicloud/sas20181203 2.23.2 → 2.23.4

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 CHANGED
@@ -15595,6 +15595,7 @@ export declare class ExecStrategyResponse extends $tea.Model {
15595
15595
  });
15596
15596
  }
15597
15597
  export declare class ExportRecordRequest extends $tea.Model {
15598
+ exportFileType?: string;
15598
15599
  exportType?: string;
15599
15600
  lang?: string;
15600
15601
  params?: string;
@@ -16637,6 +16638,7 @@ export declare class GetCheckSaleResponse extends $tea.Model {
16637
16638
  });
16638
16639
  }
16639
16640
  export declare class GetCheckSummaryRequest extends $tea.Model {
16641
+ isItemStatistic?: boolean;
16640
16642
  lang?: string;
16641
16643
  resourceDirectoryAccountId?: string;
16642
16644
  vendors?: string[];
@@ -16651,6 +16653,7 @@ export declare class GetCheckSummaryRequest extends $tea.Model {
16651
16653
  });
16652
16654
  }
16653
16655
  export declare class GetCheckSummaryResponseBody extends $tea.Model {
16656
+ overallItemStatistic?: GetCheckSummaryResponseBodyOverallItemStatistic;
16654
16657
  overallStatistic?: GetCheckSummaryResponseBodyOverallStatistic;
16655
16658
  requestId?: string;
16656
16659
  summarys?: GetCheckSummaryResponseBodySummarys[];
@@ -37379,6 +37382,19 @@ export declare class GetCheckSaleResponseBodyCheckSale extends $tea.Model {
37379
37382
  [key: string]: any;
37380
37383
  });
37381
37384
  }
37385
+ export declare class GetCheckSummaryResponseBodyOverallItemStatistic extends $tea.Model {
37386
+ releaseCount?: number;
37387
+ resultCount?: number;
37388
+ static names(): {
37389
+ [key: string]: string;
37390
+ };
37391
+ static types(): {
37392
+ [key: string]: any;
37393
+ };
37394
+ constructor(map?: {
37395
+ [key: string]: any;
37396
+ });
37397
+ }
37382
37398
  export declare class GetCheckSummaryResponseBodyOverallStatistic extends $tea.Model {
37383
37399
  notCheckCount?: number;
37384
37400
  notCheckHighCount?: number;
package/dist/client.js CHANGED
@@ -21661,6 +21661,7 @@ class ExportRecordRequest extends $tea.Model {
21661
21661
  }
21662
21662
  static names() {
21663
21663
  return {
21664
+ exportFileType: 'ExportFileType',
21664
21665
  exportType: 'ExportType',
21665
21666
  lang: 'Lang',
21666
21667
  params: 'Params',
@@ -21668,6 +21669,7 @@ class ExportRecordRequest extends $tea.Model {
21668
21669
  }
21669
21670
  static types() {
21670
21671
  return {
21672
+ exportFileType: 'string',
21671
21673
  exportType: 'string',
21672
21674
  lang: 'string',
21673
21675
  params: 'string',
@@ -23125,6 +23127,7 @@ class GetCheckSummaryRequest extends $tea.Model {
23125
23127
  }
23126
23128
  static names() {
23127
23129
  return {
23130
+ isItemStatistic: 'IsItemStatistic',
23128
23131
  lang: 'Lang',
23129
23132
  resourceDirectoryAccountId: 'ResourceDirectoryAccountId',
23130
23133
  vendors: 'Vendors',
@@ -23132,6 +23135,7 @@ class GetCheckSummaryRequest extends $tea.Model {
23132
23135
  }
23133
23136
  static types() {
23134
23137
  return {
23138
+ isItemStatistic: 'boolean',
23135
23139
  lang: 'string',
23136
23140
  resourceDirectoryAccountId: 'string',
23137
23141
  vendors: { 'type': 'array', 'itemType': 'string' },
@@ -23145,6 +23149,7 @@ class GetCheckSummaryResponseBody extends $tea.Model {
23145
23149
  }
23146
23150
  static names() {
23147
23151
  return {
23152
+ overallItemStatistic: 'OverallItemStatistic',
23148
23153
  overallStatistic: 'OverallStatistic',
23149
23154
  requestId: 'RequestId',
23150
23155
  summarys: 'Summarys',
@@ -23152,6 +23157,7 @@ class GetCheckSummaryResponseBody extends $tea.Model {
23152
23157
  }
23153
23158
  static types() {
23154
23159
  return {
23160
+ overallItemStatistic: GetCheckSummaryResponseBodyOverallItemStatistic,
23155
23161
  overallStatistic: GetCheckSummaryResponseBodyOverallStatistic,
23156
23162
  requestId: 'string',
23157
23163
  summarys: { 'type': 'array', 'itemType': GetCheckSummaryResponseBodySummarys },
@@ -52817,6 +52823,24 @@ class GetCheckSaleResponseBodyCheckSale extends $tea.Model {
52817
52823
  }
52818
52824
  }
52819
52825
  exports.GetCheckSaleResponseBodyCheckSale = GetCheckSaleResponseBodyCheckSale;
52826
+ class GetCheckSummaryResponseBodyOverallItemStatistic extends $tea.Model {
52827
+ constructor(map) {
52828
+ super(map);
52829
+ }
52830
+ static names() {
52831
+ return {
52832
+ releaseCount: 'ReleaseCount',
52833
+ resultCount: 'ResultCount',
52834
+ };
52835
+ }
52836
+ static types() {
52837
+ return {
52838
+ releaseCount: 'number',
52839
+ resultCount: 'number',
52840
+ };
52841
+ }
52842
+ }
52843
+ exports.GetCheckSummaryResponseBodyOverallItemStatistic = GetCheckSummaryResponseBodyOverallItemStatistic;
52820
52844
  class GetCheckSummaryResponseBodyOverallStatistic extends $tea.Model {
52821
52845
  constructor(map) {
52822
52846
  super(map);
@@ -74109,6 +74133,9 @@ class Client extends openapi_client_1.default {
74109
74133
  async exportRecordWithOptions(request, runtime) {
74110
74134
  tea_util_1.default.validateModel(request);
74111
74135
  let query = {};
74136
+ if (!tea_util_1.default.isUnset(request.exportFileType)) {
74137
+ query["ExportFileType"] = request.exportFileType;
74138
+ }
74112
74139
  if (!tea_util_1.default.isUnset(request.exportType)) {
74113
74140
  query["ExportType"] = request.exportType;
74114
74141
  }
@@ -75001,6 +75028,9 @@ class Client extends openapi_client_1.default {
75001
75028
  async getCheckSummaryWithOptions(request, runtime) {
75002
75029
  tea_util_1.default.validateModel(request);
75003
75030
  let query = {};
75031
+ if (!tea_util_1.default.isUnset(request.isItemStatistic)) {
75032
+ query["IsItemStatistic"] = request.isItemStatistic;
75033
+ }
75004
75034
  if (!tea_util_1.default.isUnset(request.lang)) {
75005
75035
  query["Lang"] = request.lang;
75006
75036
  }