ch-admin-api-client-typescript 5.74.9 → 5.75.0

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.
Files changed (43) hide show
  1. package/lib/api/articles-api.d.ts +139 -0
  2. package/lib/api/articles-api.d.ts.map +1 -1
  3. package/lib/api/articles-api.js +209 -0
  4. package/lib/api/survey-forms-api.d.ts +21 -3
  5. package/lib/api/survey-forms-api.d.ts.map +1 -1
  6. package/lib/api/survey-forms-api.js +21 -9
  7. package/lib/models/article-translation-histories-model.d.ts +33 -0
  8. package/lib/models/article-translation-histories-model.d.ts.map +1 -0
  9. package/lib/models/article-translation-histories-model.js +15 -0
  10. package/lib/models/article-translation-history-model.d.ts +69 -0
  11. package/lib/models/article-translation-history-model.d.ts.map +1 -0
  12. package/lib/models/article-translation-history-model.js +15 -0
  13. package/lib/models/eeat-evaluation-factor.d.ts +37 -0
  14. package/lib/models/eeat-evaluation-factor.d.ts.map +1 -0
  15. package/lib/models/eeat-evaluation-factor.js +15 -0
  16. package/lib/models/eeat-evaluation.d.ts +44 -0
  17. package/lib/models/eeat-evaluation.d.ts.map +1 -0
  18. package/lib/models/eeat-evaluation.js +15 -0
  19. package/lib/models/index.d.ts +11 -0
  20. package/lib/models/index.d.ts.map +1 -1
  21. package/lib/models/index.js +11 -0
  22. package/lib/models/quality-level.d.ts +24 -0
  23. package/lib/models/quality-level.d.ts.map +1 -0
  24. package/lib/models/quality-level.js +27 -0
  25. package/lib/models/rewrite-article-command.d.ts +43 -0
  26. package/lib/models/rewrite-article-command.d.ts.map +1 -0
  27. package/lib/models/rewrite-article-command.js +15 -0
  28. package/lib/models/risk-level.d.ts +23 -0
  29. package/lib/models/risk-level.d.ts.map +1 -0
  30. package/lib/models/risk-level.js +26 -0
  31. package/lib/models/seo-analysis.d.ts +83 -0
  32. package/lib/models/seo-analysis.d.ts.map +1 -0
  33. package/lib/models/seo-analysis.js +15 -0
  34. package/lib/models/seo-meta-data.d.ts +37 -0
  35. package/lib/models/seo-meta-data.d.ts.map +1 -0
  36. package/lib/models/seo-meta-data.js +15 -0
  37. package/lib/models/technical-seo.d.ts +56 -0
  38. package/lib/models/technical-seo.d.ts.map +1 -0
  39. package/lib/models/technical-seo.js +15 -0
  40. package/lib/models/token-usage.d.ts +31 -0
  41. package/lib/models/token-usage.d.ts.map +1 -0
  42. package/lib/models/token-usage.js +15 -0
  43. package/package.json +1 -1
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * CloudHospital Admin Api
6
+ * CloudHospital application with Swagger, Swashbuckle, and API versioning.
7
+ *
8
+ * The version of the OpenAPI document: 1
9
+ * Contact: developer@icloudhospital.com
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,23 @@
1
+ /**
2
+ * CloudHospital Admin Api
3
+ * CloudHospital application with Swagger, Swashbuckle, and API versioning.
4
+ *
5
+ * The version of the OpenAPI document: 1
6
+ * Contact: developer@icloudhospital.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @enum {string}
16
+ */
17
+ export declare const RiskLevel: {
18
+ readonly Low: "Low";
19
+ readonly Medium: "Medium";
20
+ readonly High: "High";
21
+ };
22
+ export type RiskLevel = typeof RiskLevel[keyof typeof RiskLevel];
23
+ //# sourceMappingURL=risk-level.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"risk-level.d.ts","sourceRoot":"","sources":["../../src/models/risk-level.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AAEH,eAAO,MAAM,SAAS;;;;CAIZ,CAAC;AAEX,MAAM,MAAM,SAAS,GAAG,OAAO,SAAS,CAAC,MAAM,OAAO,SAAS,CAAC,CAAC"}
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * CloudHospital Admin Api
6
+ * CloudHospital application with Swagger, Swashbuckle, and API versioning.
7
+ *
8
+ * The version of the OpenAPI document: 1
9
+ * Contact: developer@icloudhospital.com
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.RiskLevel = void 0;
17
+ /**
18
+ *
19
+ * @export
20
+ * @enum {string}
21
+ */
22
+ exports.RiskLevel = {
23
+ Low: 'Low',
24
+ Medium: 'Medium',
25
+ High: 'High'
26
+ };
@@ -0,0 +1,83 @@
1
+ /**
2
+ * CloudHospital Admin Api
3
+ * CloudHospital application with Swagger, Swashbuckle, and API versioning.
4
+ *
5
+ * The version of the OpenAPI document: 1
6
+ * Contact: developer@icloudhospital.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { EeatEvaluation } from './eeat-evaluation';
13
+ import { RiskLevel } from './risk-level';
14
+ import { SeoMetaData } from './seo-meta-data';
15
+ import { TechnicalSeo } from './technical-seo';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface SeoAnalysis
20
+ */
21
+ export interface SeoAnalysis {
22
+ /**
23
+ *
24
+ * @type {number}
25
+ * @memberof SeoAnalysis
26
+ */
27
+ 'overallScore'?: number;
28
+ /**
29
+ *
30
+ * @type {string}
31
+ * @memberof SeoAnalysis
32
+ */
33
+ 'summary'?: string | null;
34
+ /**
35
+ *
36
+ * @type {RiskLevel}
37
+ * @memberof SeoAnalysis
38
+ */
39
+ 'aiDetectionRisk'?: RiskLevel;
40
+ /**
41
+ *
42
+ * @type {RiskLevel}
43
+ * @memberof SeoAnalysis
44
+ */
45
+ 'similarityRisk'?: RiskLevel;
46
+ /**
47
+ *
48
+ * @type {RiskLevel}
49
+ * @memberof SeoAnalysis
50
+ */
51
+ 'serpUniquenessRisk'?: RiskLevel;
52
+ /**
53
+ *
54
+ * @type {SeoMetaData}
55
+ * @memberof SeoAnalysis
56
+ */
57
+ 'seoMetaData'?: SeoMetaData;
58
+ /**
59
+ *
60
+ * @type {TechnicalSeo}
61
+ * @memberof SeoAnalysis
62
+ */
63
+ 'technicalSeo'?: TechnicalSeo;
64
+ /**
65
+ *
66
+ * @type {EeatEvaluation}
67
+ * @memberof SeoAnalysis
68
+ */
69
+ 'eeatEvaluation'?: EeatEvaluation;
70
+ /**
71
+ *
72
+ * @type {Array<string>}
73
+ * @memberof SeoAnalysis
74
+ */
75
+ 'boilerplatePatterns'?: Array<string> | null;
76
+ /**
77
+ *
78
+ * @type {Array<string>}
79
+ * @memberof SeoAnalysis
80
+ */
81
+ 'rewriteRecommendations'?: Array<string> | null;
82
+ }
83
+ //# sourceMappingURL=seo-analysis.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"seo-analysis.d.ts","sourceRoot":"","sources":["../../src/models/seo-analysis.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAGnD,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAGzC,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAG9C,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAE/C;;;;GAIG;AACH,MAAM,WAAW,WAAW;IACxB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,SAAS,CAAC;IAC9B;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,SAAS,CAAC;IAC7B;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,SAAS,CAAC;IACjC;;;;OAIG;IACH,aAAa,CAAC,EAAE,WAAW,CAAC;IAC5B;;;;OAIG;IACH,cAAc,CAAC,EAAE,YAAY,CAAC;IAC9B;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,cAAc,CAAC;IAClC;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IAC7C;;;;OAIG;IACH,wBAAwB,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;CACnD"}
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * CloudHospital Admin Api
6
+ * CloudHospital application with Swagger, Swashbuckle, and API versioning.
7
+ *
8
+ * The version of the OpenAPI document: 1
9
+ * Contact: developer@icloudhospital.com
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,37 @@
1
+ /**
2
+ * CloudHospital Admin Api
3
+ * CloudHospital application with Swagger, Swashbuckle, and API versioning.
4
+ *
5
+ * The version of the OpenAPI document: 1
6
+ * Contact: developer@icloudhospital.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface SeoMetaData
16
+ */
17
+ export interface SeoMetaData {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof SeoMetaData
22
+ */
23
+ 'metaTitle'?: string | null;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof SeoMetaData
28
+ */
29
+ 'metaDescription'?: string | null;
30
+ /**
31
+ *
32
+ * @type {Array<string>}
33
+ * @memberof SeoMetaData
34
+ */
35
+ 'targetKeywords'?: Array<string> | null;
36
+ }
37
+ //# sourceMappingURL=seo-meta-data.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"seo-meta-data.d.ts","sourceRoot":"","sources":["../../src/models/seo-meta-data.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,WAAW;IACxB;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;CAC3C"}
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * CloudHospital Admin Api
6
+ * CloudHospital application with Swagger, Swashbuckle, and API versioning.
7
+ *
8
+ * The version of the OpenAPI document: 1
9
+ * Contact: developer@icloudhospital.com
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,56 @@
1
+ /**
2
+ * CloudHospital Admin Api
3
+ * CloudHospital application with Swagger, Swashbuckle, and API versioning.
4
+ *
5
+ * The version of the OpenAPI document: 1
6
+ * Contact: developer@icloudhospital.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { QualityLevel } from './quality-level';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface TechnicalSeo
17
+ */
18
+ export interface TechnicalSeo {
19
+ /**
20
+ *
21
+ * @type {number}
22
+ * @memberof TechnicalSeo
23
+ */
24
+ 'wordCount'?: number;
25
+ /**
26
+ *
27
+ * @type {number}
28
+ * @memberof TechnicalSeo
29
+ */
30
+ 'readabilityScore'?: number;
31
+ /**
32
+ *
33
+ * @type {number}
34
+ * @memberof TechnicalSeo
35
+ */
36
+ 'keywordDensity'?: number;
37
+ /**
38
+ *
39
+ * @type {QualityLevel}
40
+ * @memberof TechnicalSeo
41
+ */
42
+ 'headingStructure'?: QualityLevel;
43
+ /**
44
+ *
45
+ * @type {QualityLevel}
46
+ * @memberof TechnicalSeo
47
+ */
48
+ 'metaDescription'?: QualityLevel;
49
+ /**
50
+ *
51
+ * @type {number}
52
+ * @memberof TechnicalSeo
53
+ */
54
+ 'internalLinks'?: number;
55
+ }
56
+ //# sourceMappingURL=technical-seo.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"technical-seo.d.ts","sourceRoot":"","sources":["../../src/models/technical-seo.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAE/C;;;;GAIG;AACH,MAAM,WAAW,YAAY;IACzB;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,YAAY,CAAC;IAClC;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,YAAY,CAAC;IACjC;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;CAC5B"}
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * CloudHospital Admin Api
6
+ * CloudHospital application with Swagger, Swashbuckle, and API versioning.
7
+ *
8
+ * The version of the OpenAPI document: 1
9
+ * Contact: developer@icloudhospital.com
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,31 @@
1
+ /**
2
+ * CloudHospital Admin Api
3
+ * CloudHospital application with Swagger, Swashbuckle, and API versioning.
4
+ *
5
+ * The version of the OpenAPI document: 1
6
+ * Contact: developer@icloudhospital.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface TokenUsage
16
+ */
17
+ export interface TokenUsage {
18
+ /**
19
+ *
20
+ * @type {number}
21
+ * @memberof TokenUsage
22
+ */
23
+ 'inputToken'?: number;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof TokenUsage
28
+ */
29
+ 'outputToken'?: number;
30
+ }
31
+ //# sourceMappingURL=token-usage.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"token-usage.d.ts","sourceRoot":"","sources":["../../src/models/token-usage.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,UAAU;IACvB;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;CAC1B"}
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * CloudHospital Admin Api
6
+ * CloudHospital application with Swagger, Swashbuckle, and API versioning.
7
+ *
8
+ * The version of the OpenAPI document: 1
9
+ * Contact: developer@icloudhospital.com
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ch-admin-api-client-typescript",
3
- "version": "5.74.9",
3
+ "version": "5.75.0",
4
4
  "description": "Openapi generated typescript-axios client for CloudHospital admin",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",