@sonatype/nexus-repo-api-client 3.81.9 → 3.81.10
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/dist/esm/models/SimpleApiGroupDeployRepository.d.ts +18 -0
- package/dist/esm/models/SimpleApiGroupDeployRepository.js +6 -0
- package/dist/models/SimpleApiGroupDeployRepository.d.ts +18 -0
- package/dist/models/SimpleApiGroupDeployRepository.js +6 -0
- package/package.json +1 -1
- package/src/models/SimpleApiGroupDeployRepository.ts +24 -0
|
@@ -17,6 +17,12 @@ import type { StorageAttributes } from './StorageAttributes';
|
|
|
17
17
|
* @interface SimpleApiGroupDeployRepository
|
|
18
18
|
*/
|
|
19
19
|
export interface SimpleApiGroupDeployRepository {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {string}
|
|
23
|
+
* @memberof SimpleApiGroupDeployRepository
|
|
24
|
+
*/
|
|
25
|
+
format?: string;
|
|
20
26
|
/**
|
|
21
27
|
*
|
|
22
28
|
* @type {GroupDeployAttributes}
|
|
@@ -41,6 +47,18 @@ export interface SimpleApiGroupDeployRepository {
|
|
|
41
47
|
* @memberof SimpleApiGroupDeployRepository
|
|
42
48
|
*/
|
|
43
49
|
storage: StorageAttributes;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof SimpleApiGroupDeployRepository
|
|
54
|
+
*/
|
|
55
|
+
type?: string;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof SimpleApiGroupDeployRepository
|
|
60
|
+
*/
|
|
61
|
+
url?: string;
|
|
44
62
|
}
|
|
45
63
|
/**
|
|
46
64
|
* Check if a given object implements the SimpleApiGroupDeployRepository interface.
|
|
@@ -33,10 +33,13 @@ export function SimpleApiGroupDeployRepositoryFromJSONTyped(json, ignoreDiscrimi
|
|
|
33
33
|
return json;
|
|
34
34
|
}
|
|
35
35
|
return {
|
|
36
|
+
'format': json['format'] == null ? undefined : json['format'],
|
|
36
37
|
'group': GroupDeployAttributesFromJSON(json['group']),
|
|
37
38
|
'name': json['name'] == null ? undefined : json['name'],
|
|
38
39
|
'online': json['online'],
|
|
39
40
|
'storage': StorageAttributesFromJSON(json['storage']),
|
|
41
|
+
'type': json['type'] == null ? undefined : json['type'],
|
|
42
|
+
'url': json['url'] == null ? undefined : json['url'],
|
|
40
43
|
};
|
|
41
44
|
}
|
|
42
45
|
export function SimpleApiGroupDeployRepositoryToJSON(json) {
|
|
@@ -47,7 +50,10 @@ export function SimpleApiGroupDeployRepositoryToJSONTyped(value, ignoreDiscrimin
|
|
|
47
50
|
return value;
|
|
48
51
|
}
|
|
49
52
|
return {
|
|
53
|
+
'format': value['format'],
|
|
50
54
|
'group': GroupDeployAttributesToJSON(value['group']),
|
|
51
55
|
'storage': StorageAttributesToJSON(value['storage']),
|
|
56
|
+
'type': value['type'],
|
|
57
|
+
'url': value['url'],
|
|
52
58
|
};
|
|
53
59
|
}
|
|
@@ -17,6 +17,12 @@ import type { StorageAttributes } from './StorageAttributes';
|
|
|
17
17
|
* @interface SimpleApiGroupDeployRepository
|
|
18
18
|
*/
|
|
19
19
|
export interface SimpleApiGroupDeployRepository {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {string}
|
|
23
|
+
* @memberof SimpleApiGroupDeployRepository
|
|
24
|
+
*/
|
|
25
|
+
format?: string;
|
|
20
26
|
/**
|
|
21
27
|
*
|
|
22
28
|
* @type {GroupDeployAttributes}
|
|
@@ -41,6 +47,18 @@ export interface SimpleApiGroupDeployRepository {
|
|
|
41
47
|
* @memberof SimpleApiGroupDeployRepository
|
|
42
48
|
*/
|
|
43
49
|
storage: StorageAttributes;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof SimpleApiGroupDeployRepository
|
|
54
|
+
*/
|
|
55
|
+
type?: string;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof SimpleApiGroupDeployRepository
|
|
60
|
+
*/
|
|
61
|
+
url?: string;
|
|
44
62
|
}
|
|
45
63
|
/**
|
|
46
64
|
* Check if a given object implements the SimpleApiGroupDeployRepository interface.
|
|
@@ -40,10 +40,13 @@ function SimpleApiGroupDeployRepositoryFromJSONTyped(json, ignoreDiscriminator)
|
|
|
40
40
|
return json;
|
|
41
41
|
}
|
|
42
42
|
return {
|
|
43
|
+
'format': json['format'] == null ? undefined : json['format'],
|
|
43
44
|
'group': (0, GroupDeployAttributes_1.GroupDeployAttributesFromJSON)(json['group']),
|
|
44
45
|
'name': json['name'] == null ? undefined : json['name'],
|
|
45
46
|
'online': json['online'],
|
|
46
47
|
'storage': (0, StorageAttributes_1.StorageAttributesFromJSON)(json['storage']),
|
|
48
|
+
'type': json['type'] == null ? undefined : json['type'],
|
|
49
|
+
'url': json['url'] == null ? undefined : json['url'],
|
|
47
50
|
};
|
|
48
51
|
}
|
|
49
52
|
function SimpleApiGroupDeployRepositoryToJSON(json) {
|
|
@@ -54,7 +57,10 @@ function SimpleApiGroupDeployRepositoryToJSONTyped(value, ignoreDiscriminator =
|
|
|
54
57
|
return value;
|
|
55
58
|
}
|
|
56
59
|
return {
|
|
60
|
+
'format': value['format'],
|
|
57
61
|
'group': (0, GroupDeployAttributes_1.GroupDeployAttributesToJSON)(value['group']),
|
|
58
62
|
'storage': (0, StorageAttributes_1.StorageAttributesToJSON)(value['storage']),
|
|
63
|
+
'type': value['type'],
|
|
64
|
+
'url': value['url'],
|
|
59
65
|
};
|
|
60
66
|
}
|
package/package.json
CHANGED
|
@@ -34,6 +34,12 @@ import {
|
|
|
34
34
|
* @interface SimpleApiGroupDeployRepository
|
|
35
35
|
*/
|
|
36
36
|
export interface SimpleApiGroupDeployRepository {
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof SimpleApiGroupDeployRepository
|
|
41
|
+
*/
|
|
42
|
+
format?: string;
|
|
37
43
|
/**
|
|
38
44
|
*
|
|
39
45
|
* @type {GroupDeployAttributes}
|
|
@@ -58,6 +64,18 @@ export interface SimpleApiGroupDeployRepository {
|
|
|
58
64
|
* @memberof SimpleApiGroupDeployRepository
|
|
59
65
|
*/
|
|
60
66
|
storage: StorageAttributes;
|
|
67
|
+
/**
|
|
68
|
+
*
|
|
69
|
+
* @type {string}
|
|
70
|
+
* @memberof SimpleApiGroupDeployRepository
|
|
71
|
+
*/
|
|
72
|
+
type?: string;
|
|
73
|
+
/**
|
|
74
|
+
*
|
|
75
|
+
* @type {string}
|
|
76
|
+
* @memberof SimpleApiGroupDeployRepository
|
|
77
|
+
*/
|
|
78
|
+
url?: string;
|
|
61
79
|
}
|
|
62
80
|
|
|
63
81
|
/**
|
|
@@ -80,10 +98,13 @@ export function SimpleApiGroupDeployRepositoryFromJSONTyped(json: any, ignoreDis
|
|
|
80
98
|
}
|
|
81
99
|
return {
|
|
82
100
|
|
|
101
|
+
'format': json['format'] == null ? undefined : json['format'],
|
|
83
102
|
'group': GroupDeployAttributesFromJSON(json['group']),
|
|
84
103
|
'name': json['name'] == null ? undefined : json['name'],
|
|
85
104
|
'online': json['online'],
|
|
86
105
|
'storage': StorageAttributesFromJSON(json['storage']),
|
|
106
|
+
'type': json['type'] == null ? undefined : json['type'],
|
|
107
|
+
'url': json['url'] == null ? undefined : json['url'],
|
|
87
108
|
};
|
|
88
109
|
}
|
|
89
110
|
|
|
@@ -98,8 +119,11 @@ export function SimpleApiGroupDeployRepositoryToJSONTyped(value?: Omit<SimpleApi
|
|
|
98
119
|
|
|
99
120
|
return {
|
|
100
121
|
|
|
122
|
+
'format': value['format'],
|
|
101
123
|
'group': GroupDeployAttributesToJSON(value['group']),
|
|
102
124
|
'storage': StorageAttributesToJSON(value['storage']),
|
|
125
|
+
'type': value['type'],
|
|
126
|
+
'url': value['url'],
|
|
103
127
|
};
|
|
104
128
|
}
|
|
105
129
|
|