@@ -5291,7 +5291,7 @@ public interface ICellsApi : IApiAccessor
52915291 /// <param name="storageName">storage name. (optional)</param>
52925292 /// <param name="outStorageName">output storage name. (optional)</param>
52935293 /// <returns>SaveResponse</returns>
5294- SaveResponse CellsSaveAsPostDocumentSaveAs(string name, SaveOptions saveOptions = null, string newfilename = null, bool? isAutoFitRows = null, bool? isAutoFitColumns = null, string folder = null, string storageName = null, string outStorageName = null, IDictionary<string, string> extendedQueryParameters = null);
5294+ SaveResponse CellsSaveAsPostDocumentSaveAs(string name, SaveOptions saveOptions = null, string newfilename = null, bool? isAutoFitRows = null, bool? isAutoFitColumns = null, string folder = null, string storageName = null, string outStorageName = null, IDictionary<string, string> extendedQueryParameters = null, bool checkExcelRestriction = true );
52955295
52965296 /// <summary>
52975297 /// Convert document and save result to storage.
@@ -5309,7 +5309,7 @@ public interface ICellsApi : IApiAccessor
53095309 /// <param name="storageName">storage name. (optional)</param>
53105310 /// <param name="outStorageName">output storage name. (optional)</param>
53115311 /// <returns>ApiResponse of SaveResponse</returns>
5312- ApiResponse<SaveResponse> CellsSaveAsPostDocumentSaveAsWithHttpInfo(string name, SaveOptions saveOptions = null, string newfilename = null, bool? isAutoFitRows = null, bool? isAutoFitColumns = null, string folder = null, string storageName = null, string outStorageName = null, IDictionary<string, string> extendedQueryParameters = null);
5312+ ApiResponse<SaveResponse> CellsSaveAsPostDocumentSaveAsWithHttpInfo(string name, SaveOptions saveOptions = null, string newfilename = null, bool? isAutoFitRows = null, bool? isAutoFitColumns = null, string folder = null, string storageName = null, string outStorageName = null, IDictionary<string, string> extendedQueryParameters = null, bool checkExcelRestriction = true );
53135313 /// <summary>
53145314 /// Delete a shape in worksheet
53155315 /// </summary>
@@ -13522,7 +13522,7 @@ public interface ICellsApi : IApiAccessor
1352213522 /// <param name="storageName">storage name.(optional)</param>
1352313523 /// <param name="outStorageName">output storage name.(optional)</param>
1352413524 /// <returns>Task of SaveResponse</returns>
13525- System.Threading.Tasks.Task<SaveResponse> CellsSaveAsPostDocumentSaveAsAsync (string name, SaveOptions saveOptions = null, string newfilename = null, bool? isAutoFitRows = null, bool? isAutoFitColumns = null, string folder = null, string storageName = null, string outStorageName = null, IDictionary<string, string> extendedQueryParameters = null);
13525+ System.Threading.Tasks.Task<SaveResponse> CellsSaveAsPostDocumentSaveAsAsync (string name, SaveOptions saveOptions = null, string newfilename = null, bool? isAutoFitRows = null, bool? isAutoFitColumns = null, string folder = null, string storageName = null, string outStorageName = null, IDictionary<string, string> extendedQueryParameters = null, bool checkExcelRestriction = true );
1352613526
1352713527 /// <summary>
1352813528 /// Convert document and save result to storage.
@@ -13540,7 +13540,7 @@ public interface ICellsApi : IApiAccessor
1354013540 /// <param name="storageName">storage name.(optional)</param>
1354113541 /// <param name="outStorageName">output storage name.(optional)</param>
1354213542 /// <returns>Task of ApiResponse (SaveResponse)</returns>
13543- System.Threading.Tasks.Task<ApiResponse<SaveResponse>> CellsSaveAsPostDocumentSaveAsAsyncWithHttpInfo (string name, SaveOptions saveOptions = null, string newfilename = null, bool? isAutoFitRows = null, bool? isAutoFitColumns = null, string folder = null, string storageName = null, string outStorageName = null, IDictionary<string, string> extendedQueryParameters = null);
13543+ System.Threading.Tasks.Task<ApiResponse<SaveResponse>> CellsSaveAsPostDocumentSaveAsAsyncWithHttpInfo (string name, SaveOptions saveOptions = null, string newfilename = null, bool? isAutoFitRows = null, bool? isAutoFitColumns = null, string folder = null, string storageName = null, string outStorageName = null, IDictionary<string, string> extendedQueryParameters = null, bool checkExcelRestriction = true );
1354413544 /// <summary>
1354513545 /// Delete a shape in worksheet
1354613546 /// </summary>
@@ -47366,10 +47366,10 @@ public async System.Threading.Tasks.Task<ApiResponse<CellsCloudResponse>> CellsR
4736647366 /// <param name="storageName">storage name. (optional)</param>
4736747367 /// <param name="outStorageName">output storage name. (optional)</param>
4736847368 /// <returns>SaveResponse</returns>
47369- public SaveResponse CellsSaveAsPostDocumentSaveAs(string name, SaveOptions saveOptions = null, string newfilename = null, bool? isAutoFitRows = null, bool? isAutoFitColumns = null, string folder = null, string storageName = null, string outStorageName = null, IDictionary<string, string> extendedQueryParameters = null)
47369+ public SaveResponse CellsSaveAsPostDocumentSaveAs(string name, SaveOptions saveOptions = null, string newfilename = null, bool? isAutoFitRows = null, bool? isAutoFitColumns = null, string folder = null, string storageName = null, string outStorageName = null, IDictionary<string, string> extendedQueryParameters = null, bool checkExcelRestriction = true )
4737047370 {
4737147371 checkAccessToken();
47372- ApiResponse<SaveResponse> localVarResponse = CellsSaveAsPostDocumentSaveAsWithHttpInfo(name, saveOptions, newfilename, isAutoFitRows, isAutoFitColumns, folder, storageName, outStorageName,extendedQueryParameters);
47372+ ApiResponse<SaveResponse> localVarResponse = CellsSaveAsPostDocumentSaveAsWithHttpInfo(name, saveOptions, newfilename, isAutoFitRows, isAutoFitColumns, folder, storageName, outStorageName,extendedQueryParameters,checkExcelRestriction );
4737347373 return localVarResponse.Data;
4737447374 }
4737547375
@@ -47386,7 +47386,7 @@ public SaveResponse CellsSaveAsPostDocumentSaveAs(string name, SaveOptions saveO
4738647386 /// <param name="storageName">storage name. (optional)</param>
4738747387 /// <param name="outStorageName">output storage name. (optional)</param>
4738847388 /// <returns>ApiResponse of SaveResponse</returns>
47389- public ApiResponse< SaveResponse > CellsSaveAsPostDocumentSaveAsWithHttpInfo(string name, SaveOptions saveOptions = null, string newfilename = null, bool? isAutoFitRows = null, bool? isAutoFitColumns = null, string folder = null, string storageName = null, string outStorageName = null, IDictionary<string, string> extendedQueryParameters = null)
47389+ public ApiResponse< SaveResponse > CellsSaveAsPostDocumentSaveAsWithHttpInfo(string name, SaveOptions saveOptions = null, string newfilename = null, bool? isAutoFitRows = null, bool? isAutoFitColumns = null, string folder = null, string storageName = null, string outStorageName = null, IDictionary<string, string> extendedQueryParameters = null, bool checkExcelRestriction = true )
4739047390 {
4739147391 // verify the required parameter 'name' is set
4739247392 if (name == null)
@@ -47421,6 +47421,8 @@ public ApiResponse< SaveResponse > CellsSaveAsPostDocumentSaveAsWithHttpInfo(str
4742147421 if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter
4742247422 if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter
4742347423 if (outStorageName != null) localVarQueryParams.Add("outStorageName", Configuration.ApiClient.ParameterToString(outStorageName)); // query parameter
47424+ if (!checkExcelRestriction) localVarQueryParams.Add("checkExcelRestriction", Configuration.ApiClient.ParameterToString(checkExcelRestriction)); // query parameter
47425+
4742447426 if (extendedQueryParameters != null)
4742547427 {
4742647428 foreach (KeyValuePair<string, string> keyValuePair in extendedQueryParameters)
@@ -47469,9 +47471,9 @@ public ApiResponse< SaveResponse > CellsSaveAsPostDocumentSaveAsWithHttpInfo(str
4746947471 /// <param name="storageName">storage name. (optional)</param>
4747047472 /// <param name="outStorageName">output storage name. (optional)</param>
4747147473 /// <returns>Task of SaveResponse</returns>
47472- public async System.Threading.Tasks.Task<SaveResponse> CellsSaveAsPostDocumentSaveAsAsync (string name, SaveOptions saveOptions = null, string newfilename = null, bool? isAutoFitRows = null, bool? isAutoFitColumns = null, string folder = null, string storageName = null, string outStorageName = null, IDictionary<string, string> extendedQueryParameters = null)
47474+ public async System.Threading.Tasks.Task<SaveResponse> CellsSaveAsPostDocumentSaveAsAsync (string name, SaveOptions saveOptions = null, string newfilename = null, bool? isAutoFitRows = null, bool? isAutoFitColumns = null, string folder = null, string storageName = null, string outStorageName = null, IDictionary<string, string> extendedQueryParameters = null, bool checkExcelRestriction = true )
4747347475 {
47474- ApiResponse<SaveResponse> localVarResponse = await CellsSaveAsPostDocumentSaveAsAsyncWithHttpInfo(name, saveOptions, newfilename, isAutoFitRows, isAutoFitColumns, folder, storageName, outStorageName,extendedQueryParameters);
47476+ ApiResponse<SaveResponse> localVarResponse = await CellsSaveAsPostDocumentSaveAsAsyncWithHttpInfo(name, saveOptions, newfilename, isAutoFitRows, isAutoFitColumns, folder, storageName, outStorageName,extendedQueryParameters ,checkExcelRestriction );
4747547477 return localVarResponse.Data;
4747647478
4747747479 }
@@ -47489,7 +47491,7 @@ public async System.Threading.Tasks.Task<SaveResponse> CellsSaveAsPostDocumentSa
4748947491 /// <param name="storageName">storage name. (optional)</param>
4749047492 /// <param name="outStorageName">output storage name. (optional)</param>
4749147493 /// <returns>Task of ApiResponse (SaveResponse)</returns>
47492- public async System.Threading.Tasks.Task<ApiResponse<SaveResponse>> CellsSaveAsPostDocumentSaveAsAsyncWithHttpInfo (string name, SaveOptions saveOptions = null, string newfilename = null, bool? isAutoFitRows = null, bool? isAutoFitColumns = null, string folder = null, string storageName = null, string outStorageName = null, IDictionary<string, string> extendedQueryParameters = null)
47494+ public async System.Threading.Tasks.Task<ApiResponse<SaveResponse>> CellsSaveAsPostDocumentSaveAsAsyncWithHttpInfo (string name, SaveOptions saveOptions = null, string newfilename = null, bool? isAutoFitRows = null, bool? isAutoFitColumns = null, string folder = null, string storageName = null, string outStorageName = null, IDictionary<string, string> extendedQueryParameters = null, bool checkExcelRestriction = true )
4749347495 {
4749447496 // verify the required parameter 'name' is set
4749547497 if (name == null)
@@ -47524,6 +47526,7 @@ public async System.Threading.Tasks.Task<ApiResponse<SaveResponse>> CellsSaveAsP
4752447526 if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter
4752547527 if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter
4752647528 if (outStorageName != null) localVarQueryParams.Add("outStorageName", Configuration.ApiClient.ParameterToString(outStorageName)); // query parameter
47529+ if (!checkExcelRestriction) localVarQueryParams.Add("checkExcelRestriction", Configuration.ApiClient.ParameterToString(checkExcelRestriction)); // query parameter
4752747530 if (extendedQueryParameters != null)
4752847531 {
4752947532 foreach (KeyValuePair<string, string> keyValuePair in extendedQueryParameters)
0 commit comments