Skip to content

Commit d1db79b

Browse files
SDK regenerated by CI server [ci skip]
1 parent f85e14f commit d1db79b

File tree

320 files changed

+2553
-319
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

320 files changed

+2553
-319
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
## [24.7.0] - Aspose Words Cloud for Dart 24.7 Release Notes
66

77
- Added support for azw3 (Amazon Kindle Format) documents.
8+
- Added the support of OpenType standard. It is usefull for languages required advanced typography.
89

910

1011
## [24.6.0] - Aspose Words Cloud for Dart 24.6 Release Notes

lib/src/requests/accept_all_revisions_online_request.dart

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ class AcceptAllRevisionsOnlineRequest implements RequestBase {
4747
/// Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
4848
final String? encryptedPassword;
4949

50+
/// The value indicates whether OpenType support is on.
51+
final bool? openTypeSupport;
52+
5053
/// Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
5154
final String? destFileName;
5255

@@ -56,7 +59,7 @@ class AcceptAllRevisionsOnlineRequest implements RequestBase {
5659
/// Response receive data progress callback
5760
final ReceiveDataProgressCallback? receiveDataProgressCallback;
5861

59-
AcceptAllRevisionsOnlineRequest(this.document, {this.loadEncoding, this.password, this.encryptedPassword, this.destFileName, this.sendDataProgressCallback, this.receiveDataProgressCallback});
62+
AcceptAllRevisionsOnlineRequest(this.document, {this.loadEncoding, this.password, this.encryptedPassword, this.openTypeSupport, this.destFileName, this.sendDataProgressCallback, this.receiveDataProgressCallback});
6063

6164
@override
6265
Future<ApiRequestData> createRequestData(final ApiClient _apiClient) async {
@@ -77,6 +80,10 @@ class AcceptAllRevisionsOnlineRequest implements RequestBase {
7780
_queryParams['encryptedPassword'] = _apiClient.serializeToString(encryptedPassword) ?? "";
7881
}
7982

83+
if (openTypeSupport != null) {
84+
_queryParams['openTypeSupport'] = _apiClient.serializeToString(openTypeSupport) ?? "";
85+
}
86+
8087
if (destFileName != null) {
8188
_queryParams['destFileName'] = _apiClient.serializeToString(destFileName) ?? "";
8289
}

lib/src/requests/accept_all_revisions_request.dart

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@ class AcceptAllRevisionsRequest implements RequestBase {
5454
/// Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
5555
final String? encryptedPassword;
5656

57+
/// The value indicates whether OpenType support is on.
58+
final bool? openTypeSupport;
59+
5760
/// Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
5861
final String? destFileName;
5962

@@ -63,7 +66,7 @@ class AcceptAllRevisionsRequest implements RequestBase {
6366
/// Response receive data progress callback
6467
final ReceiveDataProgressCallback? receiveDataProgressCallback;
6568

66-
AcceptAllRevisionsRequest(this.name, {this.folder, this.storage, this.loadEncoding, this.password, this.encryptedPassword, this.destFileName, this.sendDataProgressCallback, this.receiveDataProgressCallback});
69+
AcceptAllRevisionsRequest(this.name, {this.folder, this.storage, this.loadEncoding, this.password, this.encryptedPassword, this.openTypeSupport, this.destFileName, this.sendDataProgressCallback, this.receiveDataProgressCallback});
6770

6871
@override
6972
Future<ApiRequestData> createRequestData(final ApiClient _apiClient) async {
@@ -96,6 +99,10 @@ class AcceptAllRevisionsRequest implements RequestBase {
9699
_queryParams['encryptedPassword'] = _apiClient.serializeToString(encryptedPassword) ?? "";
97100
}
98101

102+
if (openTypeSupport != null) {
103+
_queryParams['openTypeSupport'] = _apiClient.serializeToString(openTypeSupport) ?? "";
104+
}
105+
99106
if (destFileName != null) {
100107
_queryParams['destFileName'] = _apiClient.serializeToString(destFileName) ?? "";
101108
}

lib/src/requests/append_document_online_request.dart

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,9 @@ class AppendDocumentOnlineRequest implements RequestBase {
5050
/// Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
5151
final String? encryptedPassword;
5252

53+
/// The value indicates whether OpenType support is on.
54+
final bool? openTypeSupport;
55+
5356
/// Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
5457
final String? destFileName;
5558

@@ -65,7 +68,7 @@ class AppendDocumentOnlineRequest implements RequestBase {
6568
/// Response receive data progress callback
6669
final ReceiveDataProgressCallback? receiveDataProgressCallback;
6770

68-
AppendDocumentOnlineRequest(this.document, this.documentList, {this.loadEncoding, this.password, this.encryptedPassword, this.destFileName, this.revisionAuthor, this.revisionDateTime, this.sendDataProgressCallback, this.receiveDataProgressCallback});
71+
AppendDocumentOnlineRequest(this.document, this.documentList, {this.loadEncoding, this.password, this.encryptedPassword, this.openTypeSupport, this.destFileName, this.revisionAuthor, this.revisionDateTime, this.sendDataProgressCallback, this.receiveDataProgressCallback});
6972

7073
@override
7174
Future<ApiRequestData> createRequestData(final ApiClient _apiClient) async {
@@ -86,6 +89,10 @@ class AppendDocumentOnlineRequest implements RequestBase {
8689
_queryParams['encryptedPassword'] = _apiClient.serializeToString(encryptedPassword) ?? "";
8790
}
8891

92+
if (openTypeSupport != null) {
93+
_queryParams['openTypeSupport'] = _apiClient.serializeToString(openTypeSupport) ?? "";
94+
}
95+
8996
if (destFileName != null) {
9097
_queryParams['destFileName'] = _apiClient.serializeToString(destFileName) ?? "";
9198
}

lib/src/requests/append_document_request.dart

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,9 @@ class AppendDocumentRequest implements RequestBase {
5757
/// Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
5858
final String? encryptedPassword;
5959

60+
/// The value indicates whether OpenType support is on.
61+
final bool? openTypeSupport;
62+
6063
/// Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
6164
final String? destFileName;
6265

@@ -72,7 +75,7 @@ class AppendDocumentRequest implements RequestBase {
7275
/// Response receive data progress callback
7376
final ReceiveDataProgressCallback? receiveDataProgressCallback;
7477

75-
AppendDocumentRequest(this.name, this.documentList, {this.folder, this.storage, this.loadEncoding, this.password, this.encryptedPassword, this.destFileName, this.revisionAuthor, this.revisionDateTime, this.sendDataProgressCallback, this.receiveDataProgressCallback});
78+
AppendDocumentRequest(this.name, this.documentList, {this.folder, this.storage, this.loadEncoding, this.password, this.encryptedPassword, this.openTypeSupport, this.destFileName, this.revisionAuthor, this.revisionDateTime, this.sendDataProgressCallback, this.receiveDataProgressCallback});
7679

7780
@override
7881
Future<ApiRequestData> createRequestData(final ApiClient _apiClient) async {
@@ -105,6 +108,10 @@ class AppendDocumentRequest implements RequestBase {
105108
_queryParams['encryptedPassword'] = _apiClient.serializeToString(encryptedPassword) ?? "";
106109
}
107110

111+
if (openTypeSupport != null) {
112+
_queryParams['openTypeSupport'] = _apiClient.serializeToString(openTypeSupport) ?? "";
113+
}
114+
108115
if (destFileName != null) {
109116
_queryParams['destFileName'] = _apiClient.serializeToString(destFileName) ?? "";
110117
}

lib/src/requests/apply_style_to_document_element_online_request.dart

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ class ApplyStyleToDocumentElementOnlineRequest implements RequestBase {
5353
/// Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
5454
final String? encryptedPassword;
5555

56+
/// The value indicates whether OpenType support is on.
57+
final bool? openTypeSupport;
58+
5659
/// Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
5760
final String? destFileName;
5861

@@ -68,7 +71,7 @@ class ApplyStyleToDocumentElementOnlineRequest implements RequestBase {
6871
/// Response receive data progress callback
6972
final ReceiveDataProgressCallback? receiveDataProgressCallback;
7073

71-
ApplyStyleToDocumentElementOnlineRequest(this.document, this.styledNodePath, this.styleApply, {this.loadEncoding, this.password, this.encryptedPassword, this.destFileName, this.revisionAuthor, this.revisionDateTime, this.sendDataProgressCallback, this.receiveDataProgressCallback});
74+
ApplyStyleToDocumentElementOnlineRequest(this.document, this.styledNodePath, this.styleApply, {this.loadEncoding, this.password, this.encryptedPassword, this.openTypeSupport, this.destFileName, this.revisionAuthor, this.revisionDateTime, this.sendDataProgressCallback, this.receiveDataProgressCallback});
7275

7376
@override
7477
Future<ApiRequestData> createRequestData(final ApiClient _apiClient) async {
@@ -93,6 +96,10 @@ class ApplyStyleToDocumentElementOnlineRequest implements RequestBase {
9396
_queryParams['encryptedPassword'] = _apiClient.serializeToString(encryptedPassword) ?? "";
9497
}
9598

99+
if (openTypeSupport != null) {
100+
_queryParams['openTypeSupport'] = _apiClient.serializeToString(openTypeSupport) ?? "";
101+
}
102+
96103
if (destFileName != null) {
97104
_queryParams['destFileName'] = _apiClient.serializeToString(destFileName) ?? "";
98105
}

lib/src/requests/apply_style_to_document_element_request.dart

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@ class ApplyStyleToDocumentElementRequest implements RequestBase {
6060
/// Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
6161
final String? encryptedPassword;
6262

63+
/// The value indicates whether OpenType support is on.
64+
final bool? openTypeSupport;
65+
6366
/// Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
6467
final String? destFileName;
6568

@@ -75,7 +78,7 @@ class ApplyStyleToDocumentElementRequest implements RequestBase {
7578
/// Response receive data progress callback
7679
final ReceiveDataProgressCallback? receiveDataProgressCallback;
7780

78-
ApplyStyleToDocumentElementRequest(this.name, this.styledNodePath, this.styleApply, {this.folder, this.storage, this.loadEncoding, this.password, this.encryptedPassword, this.destFileName, this.revisionAuthor, this.revisionDateTime, this.sendDataProgressCallback, this.receiveDataProgressCallback});
81+
ApplyStyleToDocumentElementRequest(this.name, this.styledNodePath, this.styleApply, {this.folder, this.storage, this.loadEncoding, this.password, this.encryptedPassword, this.openTypeSupport, this.destFileName, this.revisionAuthor, this.revisionDateTime, this.sendDataProgressCallback, this.receiveDataProgressCallback});
7982

8083
@override
8184
Future<ApiRequestData> createRequestData(final ApiClient _apiClient) async {
@@ -113,6 +116,10 @@ class ApplyStyleToDocumentElementRequest implements RequestBase {
113116
_queryParams['encryptedPassword'] = _apiClient.serializeToString(encryptedPassword) ?? "";
114117
}
115118

119+
if (openTypeSupport != null) {
120+
_queryParams['openTypeSupport'] = _apiClient.serializeToString(openTypeSupport) ?? "";
121+
}
122+
116123
if (destFileName != null) {
117124
_queryParams['destFileName'] = _apiClient.serializeToString(destFileName) ?? "";
118125
}

lib/src/requests/build_report_request.dart

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@ class BuildReportRequest implements RequestBase {
6060
/// Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
6161
final String? encryptedPassword;
6262

63+
/// The value indicates whether OpenType support is on.
64+
final bool? openTypeSupport;
65+
6366
/// The filename of the output document. If this parameter is omitted, the result will be saved with autogenerated name.
6467
final String? destFileName;
6568

@@ -69,7 +72,7 @@ class BuildReportRequest implements RequestBase {
6972
/// Response receive data progress callback
7073
final ReceiveDataProgressCallback? receiveDataProgressCallback;
7174

72-
BuildReportRequest(this.name, this.data, this.reportEngineSettings, {this.folder, this.storage, this.loadEncoding, this.password, this.encryptedPassword, this.destFileName, this.sendDataProgressCallback, this.receiveDataProgressCallback});
75+
BuildReportRequest(this.name, this.data, this.reportEngineSettings, {this.folder, this.storage, this.loadEncoding, this.password, this.encryptedPassword, this.openTypeSupport, this.destFileName, this.sendDataProgressCallback, this.receiveDataProgressCallback});
7376

7477
@override
7578
Future<ApiRequestData> createRequestData(final ApiClient _apiClient) async {
@@ -102,6 +105,10 @@ class BuildReportRequest implements RequestBase {
102105
_queryParams['encryptedPassword'] = _apiClient.serializeToString(encryptedPassword) ?? "";
103106
}
104107

108+
if (openTypeSupport != null) {
109+
_queryParams['openTypeSupport'] = _apiClient.serializeToString(openTypeSupport) ?? "";
110+
}
111+
105112
if (destFileName != null) {
106113
_queryParams['destFileName'] = _apiClient.serializeToString(destFileName) ?? "";
107114
}

lib/src/requests/classify_document_online_request.dart

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ class ClassifyDocumentOnlineRequest implements RequestBase {
4848
/// Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
4949
final String? encryptedPassword;
5050

51+
/// The value indicates whether OpenType support is on.
52+
final bool? openTypeSupport;
53+
5154
/// The number of the best classes to return.
5255
final String? bestClassesCount;
5356

@@ -60,7 +63,7 @@ class ClassifyDocumentOnlineRequest implements RequestBase {
6063
/// Response receive data progress callback
6164
final ReceiveDataProgressCallback? receiveDataProgressCallback;
6265

63-
ClassifyDocumentOnlineRequest(this.document, {this.loadEncoding, this.password, this.encryptedPassword, this.bestClassesCount, this.taxonomy, this.sendDataProgressCallback, this.receiveDataProgressCallback});
66+
ClassifyDocumentOnlineRequest(this.document, {this.loadEncoding, this.password, this.encryptedPassword, this.openTypeSupport, this.bestClassesCount, this.taxonomy, this.sendDataProgressCallback, this.receiveDataProgressCallback});
6467

6568
@override
6669
Future<ApiRequestData> createRequestData(final ApiClient _apiClient) async {
@@ -81,6 +84,10 @@ class ClassifyDocumentOnlineRequest implements RequestBase {
8184
_queryParams['encryptedPassword'] = _apiClient.serializeToString(encryptedPassword) ?? "";
8285
}
8386

87+
if (openTypeSupport != null) {
88+
_queryParams['openTypeSupport'] = _apiClient.serializeToString(openTypeSupport) ?? "";
89+
}
90+
8491
if (bestClassesCount != null) {
8592
_queryParams['bestClassesCount'] = _apiClient.serializeToString(bestClassesCount) ?? "";
8693
}

lib/src/requests/classify_document_request.dart

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@ class ClassifyDocumentRequest implements RequestBase {
5454
/// Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
5555
final String? encryptedPassword;
5656

57+
/// The value indicates whether OpenType support is on.
58+
final bool? openTypeSupport;
59+
5760
/// The number of the best classes to return.
5861
final String? bestClassesCount;
5962

@@ -66,7 +69,7 @@ class ClassifyDocumentRequest implements RequestBase {
6669
/// Response receive data progress callback
6770
final ReceiveDataProgressCallback? receiveDataProgressCallback;
6871

69-
ClassifyDocumentRequest(this.name, {this.folder, this.storage, this.loadEncoding, this.password, this.encryptedPassword, this.bestClassesCount, this.taxonomy, this.sendDataProgressCallback, this.receiveDataProgressCallback});
72+
ClassifyDocumentRequest(this.name, {this.folder, this.storage, this.loadEncoding, this.password, this.encryptedPassword, this.openTypeSupport, this.bestClassesCount, this.taxonomy, this.sendDataProgressCallback, this.receiveDataProgressCallback});
7073

7174
@override
7275
Future<ApiRequestData> createRequestData(final ApiClient _apiClient) async {
@@ -99,6 +102,10 @@ class ClassifyDocumentRequest implements RequestBase {
99102
_queryParams['encryptedPassword'] = _apiClient.serializeToString(encryptedPassword) ?? "";
100103
}
101104

105+
if (openTypeSupport != null) {
106+
_queryParams['openTypeSupport'] = _apiClient.serializeToString(openTypeSupport) ?? "";
107+
}
108+
102109
if (bestClassesCount != null) {
103110
_queryParams['bestClassesCount'] = _apiClient.serializeToString(bestClassesCount) ?? "";
104111
}

0 commit comments

Comments
 (0)