dataforseo-client 2.0.17 → 2.0.18
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/README.md +1 -1
- package/dist/cjs/api/AiOptimizationApi.js +36 -36
- package/dist/cjs/api/AppDataApi.js +42 -42
- package/dist/cjs/api/AppendixApi.js +4 -4
- package/dist/cjs/api/BacklinksApi.js +24 -24
- package/dist/cjs/api/BusinessDataApi.js +56 -56
- package/dist/cjs/api/ContentAnalysisApi.js +11 -11
- package/dist/cjs/api/ContentGenerationApi.js +10 -10
- package/dist/cjs/api/DataforseoLabsApi.js +59 -59
- package/dist/cjs/api/DomainAnalyticsApi.js +14 -14
- package/dist/cjs/api/KeywordsDataApi.js +70 -70
- package/dist/cjs/api/MerchantApi.js +36 -36
- package/dist/cjs/api/OnPageApi.js +30 -30
- package/dist/cjs/api/SerpApi.js +183 -183
- package/dist/cjs/models/BusinessDataGoogleHotelSearchesLiveRequestInfo.d.ts +16 -0
- package/dist/cjs/models/BusinessDataGoogleHotelSearchesLiveRequestInfo.js +2 -0
- package/dist/cjs/models/BusinessDataGoogleHotelSearchesLiveRequestInfo.js.map +1 -1
- package/dist/cjs/models/BusinessDataGoogleHotelSearchesTaskPostRequestInfo.d.ts +16 -0
- package/dist/cjs/models/BusinessDataGoogleHotelSearchesTaskPostRequestInfo.js +2 -0
- package/dist/cjs/models/BusinessDataGoogleHotelSearchesTaskPostRequestInfo.js.map +1 -1
- package/dist/esm/api/AiOptimizationApi.js +36 -36
- package/dist/esm/api/AppDataApi.js +42 -42
- package/dist/esm/api/AppendixApi.js +4 -4
- package/dist/esm/api/BacklinksApi.js +24 -24
- package/dist/esm/api/BusinessDataApi.js +56 -56
- package/dist/esm/api/ContentAnalysisApi.js +11 -11
- package/dist/esm/api/ContentGenerationApi.js +10 -10
- package/dist/esm/api/DataforseoLabsApi.js +59 -59
- package/dist/esm/api/DomainAnalyticsApi.js +14 -14
- package/dist/esm/api/KeywordsDataApi.js +70 -70
- package/dist/esm/api/MerchantApi.js +36 -36
- package/dist/esm/api/OnPageApi.js +30 -30
- package/dist/esm/api/SerpApi.js +183 -183
- package/dist/esm/models/BusinessDataGoogleHotelSearchesLiveRequestInfo.d.ts +16 -0
- package/dist/esm/models/BusinessDataGoogleHotelSearchesLiveRequestInfo.js +2 -0
- package/dist/esm/models/BusinessDataGoogleHotelSearchesLiveRequestInfo.js.map +1 -1
- package/dist/esm/models/BusinessDataGoogleHotelSearchesTaskPostRequestInfo.d.ts +16 -0
- package/dist/esm/models/BusinessDataGoogleHotelSearchesTaskPostRequestInfo.js +2 -0
- package/dist/esm/models/BusinessDataGoogleHotelSearchesTaskPostRequestInfo.js.map +1 -1
- package/package.json +1 -1
|
@@ -33,6 +33,14 @@ Note: if the coordinates are used to set a location, the search will occur in th
|
|
|
33
33
|
example:
|
|
34
34
|
53.476225,-2.243572 */
|
|
35
35
|
location_coordinate?: string | undefined;
|
|
36
|
+
/** show hotels from the displayed area
|
|
37
|
+
optional field
|
|
38
|
+
can take the values: true, false
|
|
39
|
+
default value: true
|
|
40
|
+
if set to false the search_this_area mode will be turned off
|
|
41
|
+
Note: if the search_this_area mode is turned off, the location_name won’t be appended to the keyword during search
|
|
42
|
+
learn more about this parameter on our Help Center */
|
|
43
|
+
search_this_area?: boolean | undefined;
|
|
36
44
|
/** full name of search engine language
|
|
37
45
|
required field if you don’t specify language_code
|
|
38
46
|
if you use this field, you don’t need to specify language_code
|
|
@@ -211,6 +219,14 @@ Note: if the coordinates are used to set a location, the search will occur in th
|
|
|
211
219
|
example:
|
|
212
220
|
53.476225,-2.243572 */
|
|
213
221
|
location_coordinate?: string | undefined;
|
|
222
|
+
/** show hotels from the displayed area
|
|
223
|
+
optional field
|
|
224
|
+
can take the values: true, false
|
|
225
|
+
default value: true
|
|
226
|
+
if set to false the search_this_area mode will be turned off
|
|
227
|
+
Note: if the search_this_area mode is turned off, the location_name won’t be appended to the keyword during search
|
|
228
|
+
learn more about this parameter on our Help Center */
|
|
229
|
+
search_this_area?: boolean | undefined;
|
|
214
230
|
/** full name of search engine language
|
|
215
231
|
required field if you don’t specify language_code
|
|
216
232
|
if you use this field, you don’t need to specify language_code
|
|
@@ -20,6 +20,7 @@ class BusinessDataGoogleHotelSearchesLiveRequestInfo {
|
|
|
20
20
|
this.location_name = data["location_name"];
|
|
21
21
|
this.location_code = data["location_code"];
|
|
22
22
|
this.location_coordinate = data["location_coordinate"];
|
|
23
|
+
this.search_this_area = data["search_this_area"];
|
|
23
24
|
this.language_name = data["language_name"];
|
|
24
25
|
this.language_code = data["language_code"];
|
|
25
26
|
this.depth = data["depth"];
|
|
@@ -51,6 +52,7 @@ class BusinessDataGoogleHotelSearchesLiveRequestInfo {
|
|
|
51
52
|
data["location_name"] = this.location_name;
|
|
52
53
|
data["location_code"] = this.location_code;
|
|
53
54
|
data["location_coordinate"] = this.location_coordinate;
|
|
55
|
+
data["search_this_area"] = this.search_this_area;
|
|
54
56
|
data["language_name"] = this.language_name;
|
|
55
57
|
data["language_code"] = this.language_code;
|
|
56
58
|
data["depth"] = this.depth;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BusinessDataGoogleHotelSearchesLiveRequestInfo.js","sourceRoot":"","sources":["../../../src/models/BusinessDataGoogleHotelSearchesLiveRequestInfo.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"BusinessDataGoogleHotelSearchesLiveRequestInfo.js","sourceRoot":"","sources":["../../../src/models/BusinessDataGoogleHotelSearchesLiveRequestInfo.ts"],"names":[],"mappings":"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"}
|
|
@@ -41,6 +41,14 @@ Note: if the coordinates are used to set a location, the search will occur in th
|
|
|
41
41
|
example:
|
|
42
42
|
53.476225,-2.243572 */
|
|
43
43
|
location_coordinate?: string | undefined;
|
|
44
|
+
/** show hotels from the displayed area
|
|
45
|
+
optional field
|
|
46
|
+
can take the values: true, false
|
|
47
|
+
default value: true
|
|
48
|
+
if set to false the search_this_area mode will be turned off
|
|
49
|
+
Note: if the search_this_area mode is turned off, the location_name won’t be appended to the keyword during search
|
|
50
|
+
learn more about this parameter on our Help Center */
|
|
51
|
+
search_this_area?: boolean | undefined;
|
|
44
52
|
/** full name of search engine language
|
|
45
53
|
required field if you don’t specify language_code
|
|
46
54
|
if you use this field, you don’t need to specify language_code
|
|
@@ -249,6 +257,14 @@ Note: if the coordinates are used to set a location, the search will occur in th
|
|
|
249
257
|
example:
|
|
250
258
|
53.476225,-2.243572 */
|
|
251
259
|
location_coordinate?: string | undefined;
|
|
260
|
+
/** show hotels from the displayed area
|
|
261
|
+
optional field
|
|
262
|
+
can take the values: true, false
|
|
263
|
+
default value: true
|
|
264
|
+
if set to false the search_this_area mode will be turned off
|
|
265
|
+
Note: if the search_this_area mode is turned off, the location_name won’t be appended to the keyword during search
|
|
266
|
+
learn more about this parameter on our Help Center */
|
|
267
|
+
search_this_area?: boolean | undefined;
|
|
252
268
|
/** full name of search engine language
|
|
253
269
|
required field if you don’t specify language_code
|
|
254
270
|
if you use this field, you don’t need to specify language_code
|
|
@@ -21,6 +21,7 @@ class BusinessDataGoogleHotelSearchesTaskPostRequestInfo {
|
|
|
21
21
|
this.location_name = data["location_name"];
|
|
22
22
|
this.location_code = data["location_code"];
|
|
23
23
|
this.location_coordinate = data["location_coordinate"];
|
|
24
|
+
this.search_this_area = data["search_this_area"];
|
|
24
25
|
this.language_name = data["language_name"];
|
|
25
26
|
this.language_code = data["language_code"];
|
|
26
27
|
this.depth = data["depth"];
|
|
@@ -55,6 +56,7 @@ class BusinessDataGoogleHotelSearchesTaskPostRequestInfo {
|
|
|
55
56
|
data["location_name"] = this.location_name;
|
|
56
57
|
data["location_code"] = this.location_code;
|
|
57
58
|
data["location_coordinate"] = this.location_coordinate;
|
|
59
|
+
data["search_this_area"] = this.search_this_area;
|
|
58
60
|
data["language_name"] = this.language_name;
|
|
59
61
|
data["language_code"] = this.language_code;
|
|
60
62
|
data["depth"] = this.depth;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BusinessDataGoogleHotelSearchesTaskPostRequestInfo.js","sourceRoot":"","sources":["../../../src/models/BusinessDataGoogleHotelSearchesTaskPostRequestInfo.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"BusinessDataGoogleHotelSearchesTaskPostRequestInfo.js","sourceRoot":"","sources":["../../../src/models/BusinessDataGoogleHotelSearchesTaskPostRequestInfo.ts"],"names":[],"mappings":"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"}
|
|
@@ -48,7 +48,7 @@ export class AiOptimizationApi {
|
|
|
48
48
|
method: "GET",
|
|
49
49
|
headers: {
|
|
50
50
|
"Accept": "application/json",
|
|
51
|
-
"User-Agent": "typescript-client/2.0.
|
|
51
|
+
"User-Agent": "typescript-client/2.0.18",
|
|
52
52
|
}
|
|
53
53
|
};
|
|
54
54
|
return this.http.fetch(url_, options_).then((_response) => {
|
|
@@ -85,7 +85,7 @@ export class AiOptimizationApi {
|
|
|
85
85
|
method: "GET",
|
|
86
86
|
headers: {
|
|
87
87
|
"Accept": "application/json",
|
|
88
|
-
"User-Agent": "typescript-client/2.0.
|
|
88
|
+
"User-Agent": "typescript-client/2.0.18",
|
|
89
89
|
}
|
|
90
90
|
};
|
|
91
91
|
return this.http.fetch(url_, options_).then((_response) => {
|
|
@@ -121,7 +121,7 @@ export class AiOptimizationApi {
|
|
|
121
121
|
method: "GET",
|
|
122
122
|
headers: {
|
|
123
123
|
"Accept": "application/json",
|
|
124
|
-
"User-Agent": "typescript-client/2.0.
|
|
124
|
+
"User-Agent": "typescript-client/2.0.18",
|
|
125
125
|
}
|
|
126
126
|
};
|
|
127
127
|
return this.http.fetch(url_, options_).then((_response) => {
|
|
@@ -160,7 +160,7 @@ export class AiOptimizationApi {
|
|
|
160
160
|
headers: {
|
|
161
161
|
"Content-Type": "application/json",
|
|
162
162
|
"Accept": "application/json",
|
|
163
|
-
"User-Agent": "typescript-client/2.0.
|
|
163
|
+
"User-Agent": "typescript-client/2.0.18",
|
|
164
164
|
}
|
|
165
165
|
};
|
|
166
166
|
return this.http.fetch(url_, options_).then((_response) => {
|
|
@@ -196,7 +196,7 @@ export class AiOptimizationApi {
|
|
|
196
196
|
method: "GET",
|
|
197
197
|
headers: {
|
|
198
198
|
"Accept": "application/json",
|
|
199
|
-
"User-Agent": "typescript-client/2.0.
|
|
199
|
+
"User-Agent": "typescript-client/2.0.18",
|
|
200
200
|
}
|
|
201
201
|
};
|
|
202
202
|
return this.http.fetch(url_, options_).then((_response) => {
|
|
@@ -233,7 +233,7 @@ export class AiOptimizationApi {
|
|
|
233
233
|
method: "GET",
|
|
234
234
|
headers: {
|
|
235
235
|
"Accept": "application/json",
|
|
236
|
-
"User-Agent": "typescript-client/2.0.
|
|
236
|
+
"User-Agent": "typescript-client/2.0.18",
|
|
237
237
|
}
|
|
238
238
|
};
|
|
239
239
|
return this.http.fetch(url_, options_).then((_response) => {
|
|
@@ -270,7 +270,7 @@ export class AiOptimizationApi {
|
|
|
270
270
|
method: "GET",
|
|
271
271
|
headers: {
|
|
272
272
|
"Accept": "application/json",
|
|
273
|
-
"User-Agent": "typescript-client/2.0.
|
|
273
|
+
"User-Agent": "typescript-client/2.0.18",
|
|
274
274
|
}
|
|
275
275
|
};
|
|
276
276
|
return this.http.fetch(url_, options_).then((_response) => {
|
|
@@ -309,7 +309,7 @@ export class AiOptimizationApi {
|
|
|
309
309
|
headers: {
|
|
310
310
|
"Content-Type": "application/json",
|
|
311
311
|
"Accept": "application/json",
|
|
312
|
-
"User-Agent": "typescript-client/2.0.
|
|
312
|
+
"User-Agent": "typescript-client/2.0.18",
|
|
313
313
|
}
|
|
314
314
|
};
|
|
315
315
|
return this.http.fetch(url_, options_).then((_response) => {
|
|
@@ -348,7 +348,7 @@ export class AiOptimizationApi {
|
|
|
348
348
|
headers: {
|
|
349
349
|
"Content-Type": "application/json",
|
|
350
350
|
"Accept": "application/json",
|
|
351
|
-
"User-Agent": "typescript-client/2.0.
|
|
351
|
+
"User-Agent": "typescript-client/2.0.18",
|
|
352
352
|
}
|
|
353
353
|
};
|
|
354
354
|
return this.http.fetch(url_, options_).then((_response) => {
|
|
@@ -384,7 +384,7 @@ export class AiOptimizationApi {
|
|
|
384
384
|
method: "GET",
|
|
385
385
|
headers: {
|
|
386
386
|
"Accept": "application/json",
|
|
387
|
-
"User-Agent": "typescript-client/2.0.
|
|
387
|
+
"User-Agent": "typescript-client/2.0.18",
|
|
388
388
|
}
|
|
389
389
|
};
|
|
390
390
|
return this.http.fetch(url_, options_).then((_response) => {
|
|
@@ -420,7 +420,7 @@ export class AiOptimizationApi {
|
|
|
420
420
|
method: "GET",
|
|
421
421
|
headers: {
|
|
422
422
|
"Accept": "application/json",
|
|
423
|
-
"User-Agent": "typescript-client/2.0.
|
|
423
|
+
"User-Agent": "typescript-client/2.0.18",
|
|
424
424
|
}
|
|
425
425
|
};
|
|
426
426
|
return this.http.fetch(url_, options_).then((_response) => {
|
|
@@ -459,7 +459,7 @@ export class AiOptimizationApi {
|
|
|
459
459
|
headers: {
|
|
460
460
|
"Content-Type": "application/json",
|
|
461
461
|
"Accept": "application/json",
|
|
462
|
-
"User-Agent": "typescript-client/2.0.
|
|
462
|
+
"User-Agent": "typescript-client/2.0.18",
|
|
463
463
|
}
|
|
464
464
|
};
|
|
465
465
|
return this.http.fetch(url_, options_).then((_response) => {
|
|
@@ -498,7 +498,7 @@ export class AiOptimizationApi {
|
|
|
498
498
|
headers: {
|
|
499
499
|
"Content-Type": "application/json",
|
|
500
500
|
"Accept": "application/json",
|
|
501
|
-
"User-Agent": "typescript-client/2.0.
|
|
501
|
+
"User-Agent": "typescript-client/2.0.18",
|
|
502
502
|
}
|
|
503
503
|
};
|
|
504
504
|
return this.http.fetch(url_, options_).then((_response) => {
|
|
@@ -537,7 +537,7 @@ export class AiOptimizationApi {
|
|
|
537
537
|
headers: {
|
|
538
538
|
"Content-Type": "application/json",
|
|
539
539
|
"Accept": "application/json",
|
|
540
|
-
"User-Agent": "typescript-client/2.0.
|
|
540
|
+
"User-Agent": "typescript-client/2.0.18",
|
|
541
541
|
}
|
|
542
542
|
};
|
|
543
543
|
return this.http.fetch(url_, options_).then((_response) => {
|
|
@@ -576,7 +576,7 @@ export class AiOptimizationApi {
|
|
|
576
576
|
headers: {
|
|
577
577
|
"Content-Type": "application/json",
|
|
578
578
|
"Accept": "application/json",
|
|
579
|
-
"User-Agent": "typescript-client/2.0.
|
|
579
|
+
"User-Agent": "typescript-client/2.0.18",
|
|
580
580
|
}
|
|
581
581
|
};
|
|
582
582
|
return this.http.fetch(url_, options_).then((_response) => {
|
|
@@ -615,7 +615,7 @@ export class AiOptimizationApi {
|
|
|
615
615
|
headers: {
|
|
616
616
|
"Content-Type": "application/json",
|
|
617
617
|
"Accept": "application/json",
|
|
618
|
-
"User-Agent": "typescript-client/2.0.
|
|
618
|
+
"User-Agent": "typescript-client/2.0.18",
|
|
619
619
|
}
|
|
620
620
|
};
|
|
621
621
|
return this.http.fetch(url_, options_).then((_response) => {
|
|
@@ -651,7 +651,7 @@ export class AiOptimizationApi {
|
|
|
651
651
|
method: "GET",
|
|
652
652
|
headers: {
|
|
653
653
|
"Accept": "application/json",
|
|
654
|
-
"User-Agent": "typescript-client/2.0.
|
|
654
|
+
"User-Agent": "typescript-client/2.0.18",
|
|
655
655
|
}
|
|
656
656
|
};
|
|
657
657
|
return this.http.fetch(url_, options_).then((_response) => {
|
|
@@ -690,7 +690,7 @@ export class AiOptimizationApi {
|
|
|
690
690
|
headers: {
|
|
691
691
|
"Content-Type": "application/json",
|
|
692
692
|
"Accept": "application/json",
|
|
693
|
-
"User-Agent": "typescript-client/2.0.
|
|
693
|
+
"User-Agent": "typescript-client/2.0.18",
|
|
694
694
|
}
|
|
695
695
|
};
|
|
696
696
|
return this.http.fetch(url_, options_).then((_response) => {
|
|
@@ -729,7 +729,7 @@ export class AiOptimizationApi {
|
|
|
729
729
|
headers: {
|
|
730
730
|
"Content-Type": "application/json",
|
|
731
731
|
"Accept": "application/json",
|
|
732
|
-
"User-Agent": "typescript-client/2.0.
|
|
732
|
+
"User-Agent": "typescript-client/2.0.18",
|
|
733
733
|
}
|
|
734
734
|
};
|
|
735
735
|
return this.http.fetch(url_, options_).then((_response) => {
|
|
@@ -765,7 +765,7 @@ export class AiOptimizationApi {
|
|
|
765
765
|
method: "GET",
|
|
766
766
|
headers: {
|
|
767
767
|
"Accept": "application/json",
|
|
768
|
-
"User-Agent": "typescript-client/2.0.
|
|
768
|
+
"User-Agent": "typescript-client/2.0.18",
|
|
769
769
|
}
|
|
770
770
|
};
|
|
771
771
|
return this.http.fetch(url_, options_).then((_response) => {
|
|
@@ -802,7 +802,7 @@ export class AiOptimizationApi {
|
|
|
802
802
|
method: "GET",
|
|
803
803
|
headers: {
|
|
804
804
|
"Accept": "application/json",
|
|
805
|
-
"User-Agent": "typescript-client/2.0.
|
|
805
|
+
"User-Agent": "typescript-client/2.0.18",
|
|
806
806
|
}
|
|
807
807
|
};
|
|
808
808
|
return this.http.fetch(url_, options_).then((_response) => {
|
|
@@ -838,7 +838,7 @@ export class AiOptimizationApi {
|
|
|
838
838
|
method: "GET",
|
|
839
839
|
headers: {
|
|
840
840
|
"Accept": "application/json",
|
|
841
|
-
"User-Agent": "typescript-client/2.0.
|
|
841
|
+
"User-Agent": "typescript-client/2.0.18",
|
|
842
842
|
}
|
|
843
843
|
};
|
|
844
844
|
return this.http.fetch(url_, options_).then((_response) => {
|
|
@@ -877,7 +877,7 @@ export class AiOptimizationApi {
|
|
|
877
877
|
headers: {
|
|
878
878
|
"Content-Type": "application/json",
|
|
879
879
|
"Accept": "application/json",
|
|
880
|
-
"User-Agent": "typescript-client/2.0.
|
|
880
|
+
"User-Agent": "typescript-client/2.0.18",
|
|
881
881
|
}
|
|
882
882
|
};
|
|
883
883
|
return this.http.fetch(url_, options_).then((_response) => {
|
|
@@ -916,7 +916,7 @@ export class AiOptimizationApi {
|
|
|
916
916
|
headers: {
|
|
917
917
|
"Content-Type": "application/json",
|
|
918
918
|
"Accept": "application/json",
|
|
919
|
-
"User-Agent": "typescript-client/2.0.
|
|
919
|
+
"User-Agent": "typescript-client/2.0.18",
|
|
920
920
|
}
|
|
921
921
|
};
|
|
922
922
|
return this.http.fetch(url_, options_).then((_response) => {
|
|
@@ -952,7 +952,7 @@ export class AiOptimizationApi {
|
|
|
952
952
|
method: "GET",
|
|
953
953
|
headers: {
|
|
954
954
|
"Accept": "application/json",
|
|
955
|
-
"User-Agent": "typescript-client/2.0.
|
|
955
|
+
"User-Agent": "typescript-client/2.0.18",
|
|
956
956
|
}
|
|
957
957
|
};
|
|
958
958
|
return this.http.fetch(url_, options_).then((_response) => {
|
|
@@ -989,7 +989,7 @@ export class AiOptimizationApi {
|
|
|
989
989
|
method: "GET",
|
|
990
990
|
headers: {
|
|
991
991
|
"Accept": "application/json",
|
|
992
|
-
"User-Agent": "typescript-client/2.0.
|
|
992
|
+
"User-Agent": "typescript-client/2.0.18",
|
|
993
993
|
}
|
|
994
994
|
};
|
|
995
995
|
return this.http.fetch(url_, options_).then((_response) => {
|
|
@@ -1025,7 +1025,7 @@ export class AiOptimizationApi {
|
|
|
1025
1025
|
method: "GET",
|
|
1026
1026
|
headers: {
|
|
1027
1027
|
"Accept": "application/json",
|
|
1028
|
-
"User-Agent": "typescript-client/2.0.
|
|
1028
|
+
"User-Agent": "typescript-client/2.0.18",
|
|
1029
1029
|
}
|
|
1030
1030
|
};
|
|
1031
1031
|
return this.http.fetch(url_, options_).then((_response) => {
|
|
@@ -1064,7 +1064,7 @@ export class AiOptimizationApi {
|
|
|
1064
1064
|
headers: {
|
|
1065
1065
|
"Content-Type": "application/json",
|
|
1066
1066
|
"Accept": "application/json",
|
|
1067
|
-
"User-Agent": "typescript-client/2.0.
|
|
1067
|
+
"User-Agent": "typescript-client/2.0.18",
|
|
1068
1068
|
}
|
|
1069
1069
|
};
|
|
1070
1070
|
return this.http.fetch(url_, options_).then((_response) => {
|
|
@@ -1100,7 +1100,7 @@ export class AiOptimizationApi {
|
|
|
1100
1100
|
method: "GET",
|
|
1101
1101
|
headers: {
|
|
1102
1102
|
"Accept": "application/json",
|
|
1103
|
-
"User-Agent": "typescript-client/2.0.
|
|
1103
|
+
"User-Agent": "typescript-client/2.0.18",
|
|
1104
1104
|
}
|
|
1105
1105
|
};
|
|
1106
1106
|
return this.http.fetch(url_, options_).then((_response) => {
|
|
@@ -1137,7 +1137,7 @@ export class AiOptimizationApi {
|
|
|
1137
1137
|
method: "GET",
|
|
1138
1138
|
headers: {
|
|
1139
1139
|
"Accept": "application/json",
|
|
1140
|
-
"User-Agent": "typescript-client/2.0.
|
|
1140
|
+
"User-Agent": "typescript-client/2.0.18",
|
|
1141
1141
|
}
|
|
1142
1142
|
};
|
|
1143
1143
|
return this.http.fetch(url_, options_).then((_response) => {
|
|
@@ -1176,7 +1176,7 @@ export class AiOptimizationApi {
|
|
|
1176
1176
|
headers: {
|
|
1177
1177
|
"Content-Type": "application/json",
|
|
1178
1178
|
"Accept": "application/json",
|
|
1179
|
-
"User-Agent": "typescript-client/2.0.
|
|
1179
|
+
"User-Agent": "typescript-client/2.0.18",
|
|
1180
1180
|
}
|
|
1181
1181
|
};
|
|
1182
1182
|
return this.http.fetch(url_, options_).then((_response) => {
|
|
@@ -1212,7 +1212,7 @@ export class AiOptimizationApi {
|
|
|
1212
1212
|
method: "GET",
|
|
1213
1213
|
headers: {
|
|
1214
1214
|
"Accept": "application/json",
|
|
1215
|
-
"User-Agent": "typescript-client/2.0.
|
|
1215
|
+
"User-Agent": "typescript-client/2.0.18",
|
|
1216
1216
|
}
|
|
1217
1217
|
};
|
|
1218
1218
|
return this.http.fetch(url_, options_).then((_response) => {
|
|
@@ -1251,7 +1251,7 @@ export class AiOptimizationApi {
|
|
|
1251
1251
|
headers: {
|
|
1252
1252
|
"Content-Type": "application/json",
|
|
1253
1253
|
"Accept": "application/json",
|
|
1254
|
-
"User-Agent": "typescript-client/2.0.
|
|
1254
|
+
"User-Agent": "typescript-client/2.0.18",
|
|
1255
1255
|
}
|
|
1256
1256
|
};
|
|
1257
1257
|
return this.http.fetch(url_, options_).then((_response) => {
|
|
@@ -1287,7 +1287,7 @@ export class AiOptimizationApi {
|
|
|
1287
1287
|
method: "GET",
|
|
1288
1288
|
headers: {
|
|
1289
1289
|
"Accept": "application/json",
|
|
1290
|
-
"User-Agent": "typescript-client/2.0.
|
|
1290
|
+
"User-Agent": "typescript-client/2.0.18",
|
|
1291
1291
|
}
|
|
1292
1292
|
};
|
|
1293
1293
|
return this.http.fetch(url_, options_).then((_response) => {
|
|
@@ -1323,7 +1323,7 @@ export class AiOptimizationApi {
|
|
|
1323
1323
|
method: "GET",
|
|
1324
1324
|
headers: {
|
|
1325
1325
|
"Accept": "application/json",
|
|
1326
|
-
"User-Agent": "typescript-client/2.0.
|
|
1326
|
+
"User-Agent": "typescript-client/2.0.18",
|
|
1327
1327
|
}
|
|
1328
1328
|
};
|
|
1329
1329
|
return this.http.fetch(url_, options_).then((_response) => {
|
|
@@ -1362,7 +1362,7 @@ export class AiOptimizationApi {
|
|
|
1362
1362
|
headers: {
|
|
1363
1363
|
"Content-Type": "application/json",
|
|
1364
1364
|
"Accept": "application/json",
|
|
1365
|
-
"User-Agent": "typescript-client/2.0.
|
|
1365
|
+
"User-Agent": "typescript-client/2.0.18",
|
|
1366
1366
|
}
|
|
1367
1367
|
};
|
|
1368
1368
|
return this.http.fetch(url_, options_).then((_response) => {
|