attlaz-client 1.40.0 → 1.40.2
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.
|
@@ -4,6 +4,8 @@ export class Adapter extends MetaDataWithIconAware {
|
|
|
4
4
|
vendor;
|
|
5
5
|
logo;
|
|
6
6
|
type;
|
|
7
|
+
longDescription;
|
|
8
|
+
capabilities;
|
|
7
9
|
categoryIds;
|
|
8
10
|
docs;
|
|
9
11
|
website;
|
|
@@ -13,6 +15,8 @@ export class Adapter extends MetaDataWithIconAware {
|
|
|
13
15
|
// adapter.name = rawAdapter.name as string;
|
|
14
16
|
// adapter.description = rawAdapter.description as string;
|
|
15
17
|
adapter.vendor = rawAdapter.vendor;
|
|
18
|
+
adapter.longDescription = rawAdapter.long_description;
|
|
19
|
+
adapter.capabilities = rawAdapter.capabilities;
|
|
16
20
|
// adapter.icon = rawAdapter.icon as string;
|
|
17
21
|
adapter.logo = rawAdapter.logo;
|
|
18
22
|
adapter.type = rawAdapter.type;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { State } from '../State.js';
|
|
3
|
-
import { MetaDataAware } from '../../Core/MetaDataAware.js';
|
|
1
|
+
import { MetaDataWithIconAware } from '../../Core/MetaDataWithIconAware.js';
|
|
4
2
|
import { ApiRecord } from '../ApiRecord.js';
|
|
5
|
-
|
|
3
|
+
import { State } from '../State.js';
|
|
4
|
+
import { StateAware } from '../StateAware.js';
|
|
5
|
+
export declare class CodeSource extends MetaDataWithIconAware implements StateAware {
|
|
6
6
|
id: string;
|
|
7
7
|
codeSourceAccountId: string;
|
|
8
8
|
repository: {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import { MetaDataWithIconAware } from '../../Core/MetaDataWithIconAware.js';
|
|
1
2
|
import { State } from '../State.js';
|
|
2
|
-
|
|
3
|
-
export class CodeSource extends MetaDataAware {
|
|
3
|
+
export class CodeSource extends MetaDataWithIconAware {
|
|
4
4
|
id;
|
|
5
5
|
codeSourceAccountId;
|
|
6
6
|
repository;
|
|
@@ -12,7 +12,7 @@ export class CodeSource extends MetaDataAware {
|
|
|
12
12
|
usage = null;
|
|
13
13
|
deployCount = null;
|
|
14
14
|
static parse(rawCodeSource) {
|
|
15
|
-
const codeSource =
|
|
15
|
+
const codeSource = MetaDataWithIconAware.parseMetaData(new CodeSource(), rawCodeSource);
|
|
16
16
|
codeSource.id = rawCodeSource.id;
|
|
17
17
|
codeSource.codeSourceAccountId = rawCodeSource.code_source_account;
|
|
18
18
|
codeSource.repository = rawCodeSource.repository;
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "1.
|
|
1
|
+
export declare const VERSION = "1.40.1";
|
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = "1.
|
|
1
|
+
export const VERSION = "1.40.1";
|