Skip to content

Commit bb3b4e8

Browse files
Merge remote-tracking branch 'origin/master' into release
2 parents 58ffc30 + 2da3c31 commit bb3b4e8

Some content is hidden

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

44 files changed

+11
-263
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Add this dependency to your *pubspec.yaml*:
2727

2828
```yaml
2929
dependencies:
30-
aspose_words_cloud: 23.7.0
30+
aspose_words_cloud: 23.8.0
3131
```
3232
3333
## Getting Started

lib/src/api_client.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ class ApiClient {
503503

504504
var httpRequest = http.Request(requestData.method, Uri.parse(requestData.url));
505505
httpRequest.headers['x-aspose-client'] = 'dart sdk';
506-
httpRequest.headers['x-aspose-client-version'] = '23.7';
506+
httpRequest.headers['x-aspose-client-version'] = '23.8';
507507
httpRequest.headers['Authorization'] = await _getAuthToken();
508508
httpRequest.headers.addAll(requestData.headers);
509509

lib/src/models/bmp_save_options_data.dart

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -129,12 +129,6 @@ class BmpSaveOptionsData extends ImageSaveOptionsData {
129129
updateLastSavedTimeProperty = null;
130130
}
131131

132-
if (json.containsKey('UpdateSdtContent')) {
133-
updateSdtContent = json['UpdateSdtContent'] as bool;
134-
} else {
135-
updateSdtContent = null;
136-
}
137-
138132
if (json.containsKey('ZipOutput')) {
139133
zipOutput = json['ZipOutput'] as bool;
140134
} else {

lib/src/models/doc_save_options_data.dart

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -159,12 +159,6 @@ class DocSaveOptionsData extends SaveOptionsData {
159159
updateLastSavedTimeProperty = null;
160160
}
161161

162-
if (json.containsKey('UpdateSdtContent')) {
163-
updateSdtContent = json['UpdateSdtContent'] as bool;
164-
} else {
165-
updateSdtContent = null;
166-
}
167-
168162
if (json.containsKey('ZipOutput')) {
169163
zipOutput = json['ZipOutput'] as bool;
170164
} else {

lib/src/models/docm_save_options_data.dart

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -129,12 +129,6 @@ class DocmSaveOptionsData extends OoxmlSaveOptionsData {
129129
updateLastSavedTimeProperty = null;
130130
}
131131

132-
if (json.containsKey('UpdateSdtContent')) {
133-
updateSdtContent = json['UpdateSdtContent'] as bool;
134-
} else {
135-
updateSdtContent = null;
136-
}
137-
138132
if (json.containsKey('ZipOutput')) {
139133
zipOutput = json['ZipOutput'] as bool;
140134
} else {

lib/src/models/docx_save_options_data.dart

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -129,12 +129,6 @@ class DocxSaveOptionsData extends OoxmlSaveOptionsData {
129129
updateLastSavedTimeProperty = null;
130130
}
131131

132-
if (json.containsKey('UpdateSdtContent')) {
133-
updateSdtContent = json['UpdateSdtContent'] as bool;
134-
} else {
135-
updateSdtContent = null;
136-
}
137-
138132
if (json.containsKey('ZipOutput')) {
139133
zipOutput = json['ZipOutput'] as bool;
140134
} else {

lib/src/models/dot_save_options_data.dart

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -129,12 +129,6 @@ class DotSaveOptionsData extends DocSaveOptionsData {
129129
updateLastSavedTimeProperty = null;
130130
}
131131

132-
if (json.containsKey('UpdateSdtContent')) {
133-
updateSdtContent = json['UpdateSdtContent'] as bool;
134-
} else {
135-
updateSdtContent = null;
136-
}
137-
138132
if (json.containsKey('ZipOutput')) {
139133
zipOutput = json['ZipOutput'] as bool;
140134
} else {

lib/src/models/dotm_save_options_data.dart

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -129,12 +129,6 @@ class DotmSaveOptionsData extends OoxmlSaveOptionsData {
129129
updateLastSavedTimeProperty = null;
130130
}
131131

132-
if (json.containsKey('UpdateSdtContent')) {
133-
updateSdtContent = json['UpdateSdtContent'] as bool;
134-
} else {
135-
updateSdtContent = null;
136-
}
137-
138132
if (json.containsKey('ZipOutput')) {
139133
zipOutput = json['ZipOutput'] as bool;
140134
} else {

lib/src/models/dotx_save_options_data.dart

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -129,12 +129,6 @@ class DotxSaveOptionsData extends OoxmlSaveOptionsData {
129129
updateLastSavedTimeProperty = null;
130130
}
131131

132-
if (json.containsKey('UpdateSdtContent')) {
133-
updateSdtContent = json['UpdateSdtContent'] as bool;
134-
} else {
135-
updateSdtContent = null;
136-
}
137-
138132
if (json.containsKey('ZipOutput')) {
139133
zipOutput = json['ZipOutput'] as bool;
140134
} else {

lib/src/models/emf_save_options_data.dart

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -129,12 +129,6 @@ class EmfSaveOptionsData extends ImageSaveOptionsData {
129129
updateLastSavedTimeProperty = null;
130130
}
131131

132-
if (json.containsKey('UpdateSdtContent')) {
133-
updateSdtContent = json['UpdateSdtContent'] as bool;
134-
} else {
135-
updateSdtContent = null;
136-
}
137-
138132
if (json.containsKey('ZipOutput')) {
139133
zipOutput = json['ZipOutput'] as bool;
140134
} else {

0 commit comments

Comments
 (0)