@alfresco/js-api 9.4.0-22299298295 → 9.4.0-22307577423

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alfresco/js-api",
3
- "version": "9.4.0-22299298295",
3
+ "version": "9.4.0-22307577423",
4
4
  "license": "Apache-2.0",
5
5
  "description": "JavaScript client library for the Alfresco REST API",
6
6
  "author": "Hyland Software, Inc. and its affiliates",
@@ -1 +1 @@
1
- {"version":3,"file":"about.api.js","sourceRoot":"","sources":["about.api.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,YAAY,CAAC;AAKrC,MAAM,OAAO,QAAS,SAAQ,OAAO;IAMjC,aAAa;QACT,OAAO,IAAI,CAAC,GAAG,CAAC;YACZ,IAAI,EAAE,6BAA6B;SACtC,CAAC,CAAC;IACP,CAAC;CACJ","sourcesContent":["/*!\n * @license\n * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { BaseApi } from './base.api';\n\n/**\n * About service.\n */\nexport class AboutApi extends BaseApi {\n /**\n * Get server type and version\n * Provides information about the running Alfresco Process Services Suite. The response payload object has the properties type, majorVersion, minorVersion, revisionVersion and edition.\n * @return Promise<{ [key: string]: string; }>\n */\n getAppVersion(): Promise<{ [key: string]: string }> {\n return this.get({\n path: '/api/enterprise/app-version'\n });\n }\n}\n"]}
1
+ {"version":3,"file":"about.api.js","sourceRoot":"","sources":["about.api.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,YAAY,CAAC;AAgBrC,MAAM,OAAO,QAAS,SAAQ,OAAO;IAMjC,aAAa;QACT,OAAO,IAAI,CAAC,GAAG,CAAC;YACZ,IAAI,EAAE,6BAA6B;SACtC,CAAC,CAAC;IACP,CAAC;CACJ","sourcesContent":["/*!\n * @license\n * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { BaseApi } from './base.api';\n\n/**\n * Product version model for Process Services.\n */\nexport interface BpmProductVersionModel {\n edition: string;\n majorVersion: string;\n revisionVersion: string;\n minorVersion: string;\n type: string;\n}\n\n/**\n * About service.\n */\nexport class AboutApi extends BaseApi {\n /**\n * Get server type and version\n * Provides information about the running Alfresco Process Services Suite. The response payload object has the properties type, majorVersion, minorVersion, revisionVersion and edition.\n * @return Promise<{ [key: string]: string; }>\n */\n getAppVersion(): Promise<BpmProductVersionModel> {\n return this.get({\n path: '/api/enterprise/app-version'\n });\n }\n}\n"]}
package/esm5/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alfresco/js-api",
3
- "version": "9.4.0-22299298295",
3
+ "version": "9.4.0-22307577423",
4
4
  "license": "Apache-2.0",
5
5
  "description": "JavaScript client library for the Alfresco REST API",
6
6
  "author": "Hyland Software, Inc. and its affiliates",
@@ -1 +1 @@
1
- {"version":3,"file":"about.api.js","sourceRoot":"","sources":["about.api.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,YAAY,CAAC;AAKrC,MAAM,OAAO,QAAS,SAAQ,OAAO;IAMjC,aAAa;QACT,OAAO,IAAI,CAAC,GAAG,CAAC;YACZ,IAAI,EAAE,6BAA6B;SACtC,CAAC,CAAC;IACP,CAAC;CACJ","sourcesContent":["/*!\n * @license\n * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { BaseApi } from './base.api';\n\n/**\n * About service.\n */\nexport class AboutApi extends BaseApi {\n /**\n * Get server type and version\n * Provides information about the running Alfresco Process Services Suite. The response payload object has the properties type, majorVersion, minorVersion, revisionVersion and edition.\n * @return Promise<{ [key: string]: string; }>\n */\n getAppVersion(): Promise<{ [key: string]: string }> {\n return this.get({\n path: '/api/enterprise/app-version'\n });\n }\n}\n"]}
1
+ {"version":3,"file":"about.api.js","sourceRoot":"","sources":["about.api.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,YAAY,CAAC;AAgBrC,MAAM,OAAO,QAAS,SAAQ,OAAO;IAMjC,aAAa;QACT,OAAO,IAAI,CAAC,GAAG,CAAC;YACZ,IAAI,EAAE,6BAA6B;SACtC,CAAC,CAAC;IACP,CAAC;CACJ","sourcesContent":["/*!\n * @license\n * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { BaseApi } from './base.api';\n\n/**\n * Product version model for Process Services.\n */\nexport interface BpmProductVersionModel {\n edition: string;\n majorVersion: string;\n revisionVersion: string;\n minorVersion: string;\n type: string;\n}\n\n/**\n * About service.\n */\nexport class AboutApi extends BaseApi {\n /**\n * Get server type and version\n * Provides information about the running Alfresco Process Services Suite. The response payload object has the properties type, majorVersion, minorVersion, revisionVersion and edition.\n * @return Promise<{ [key: string]: string; }>\n */\n getAppVersion(): Promise<BpmProductVersionModel> {\n return this.get({\n path: '/api/enterprise/app-version'\n });\n }\n}\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alfresco/js-api",
3
- "version": "9.4.0-22299298295",
3
+ "version": "9.4.0-22307577423",
4
4
  "license": "Apache-2.0",
5
5
  "description": "JavaScript client library for the Alfresco REST API",
6
6
  "author": "Hyland Software, Inc. and its affiliates",
@@ -1 +1 @@
1
- {"version":3,"file":"about.api.js","sourceRoot":"","sources":["about.api.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;GAeG;;;AAEH,yCAAqC;AAKrC,MAAa,QAAS,SAAQ,kBAAO;IAMjC,aAAa;QACT,OAAO,IAAI,CAAC,GAAG,CAAC;YACZ,IAAI,EAAE,6BAA6B;SACtC,CAAC,CAAC;IACP,CAAC;CACJ;AAXD,4BAWC","sourcesContent":["/*!\n * @license\n * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { BaseApi } from './base.api';\n\n/**\n * About service.\n */\nexport class AboutApi extends BaseApi {\n /**\n * Get server type and version\n * Provides information about the running Alfresco Process Services Suite. The response payload object has the properties type, majorVersion, minorVersion, revisionVersion and edition.\n * @return Promise<{ [key: string]: string; }>\n */\n getAppVersion(): Promise<{ [key: string]: string }> {\n return this.get({\n path: '/api/enterprise/app-version'\n });\n }\n}\n"]}
1
+ {"version":3,"file":"about.api.js","sourceRoot":"","sources":["about.api.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;GAeG;;;AAEH,yCAAqC;AAgBrC,MAAa,QAAS,SAAQ,kBAAO;IAMjC,aAAa;QACT,OAAO,IAAI,CAAC,GAAG,CAAC;YACZ,IAAI,EAAE,6BAA6B;SACtC,CAAC,CAAC;IACP,CAAC;CACJ;AAXD,4BAWC","sourcesContent":["/*!\n * @license\n * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { BaseApi } from './base.api';\n\n/**\n * Product version model for Process Services.\n */\nexport interface BpmProductVersionModel {\n edition: string;\n majorVersion: string;\n revisionVersion: string;\n minorVersion: string;\n type: string;\n}\n\n/**\n * About service.\n */\nexport class AboutApi extends BaseApi {\n /**\n * Get server type and version\n * Provides information about the running Alfresco Process Services Suite. The response payload object has the properties type, majorVersion, minorVersion, revisionVersion and edition.\n * @return Promise<{ [key: string]: string; }>\n */\n getAppVersion(): Promise<BpmProductVersionModel> {\n return this.get({\n path: '/api/enterprise/app-version'\n });\n }\n}\n"]}
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alfresco/js-api",
3
- "version": "9.4.0-22299298295",
3
+ "version": "9.4.0-22307577423",
4
4
  "license": "Apache-2.0",
5
5
  "description": "JavaScript client library for the Alfresco REST API",
6
6
  "author": "Hyland Software, Inc. and its affiliates",
@@ -15,6 +15,16 @@
15
15
  * limitations under the License.
16
16
  */
17
17
  import { BaseApi } from './base.api';
18
+ /**
19
+ * Product version model for Process Services.
20
+ */
21
+ export interface BpmProductVersionModel {
22
+ edition: string;
23
+ majorVersion: string;
24
+ revisionVersion: string;
25
+ minorVersion: string;
26
+ type: string;
27
+ }
18
28
  /**
19
29
  * About service.
20
30
  */
@@ -24,7 +34,5 @@ export declare class AboutApi extends BaseApi {
24
34
  * Provides information about the running Alfresco Process Services Suite. The response payload object has the properties type, majorVersion, minorVersion, revisionVersion and edition.
25
35
  * @return Promise<{ [key: string]: string; }>
26
36
  */
27
- getAppVersion(): Promise<{
28
- [key: string]: string;
29
- }>;
37
+ getAppVersion(): Promise<BpmProductVersionModel>;
30
38
  }