@sonatype/nexus-repo-api-client 3.81.27 → 3.81.28

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.
@@ -9,8 +9,8 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import type { GroupDeployAttributes } from './GroupDeployAttributes';
12
13
  import type { StorageAttributes } from './StorageAttributes';
13
- import type { GroupAttributes } from './GroupAttributes';
14
14
  /**
15
15
  *
16
16
  * @export
@@ -19,10 +19,10 @@ import type { GroupAttributes } from './GroupAttributes';
19
19
  export interface PypiGroupRepositoryApiRequest {
20
20
  /**
21
21
  *
22
- * @type {GroupAttributes}
22
+ * @type {GroupDeployAttributes}
23
23
  * @memberof PypiGroupRepositoryApiRequest
24
24
  */
25
- group: GroupAttributes;
25
+ group: GroupDeployAttributes;
26
26
  /**
27
27
  * A unique identifier for this repository
28
28
  * @type {string}
@@ -11,8 +11,8 @@
11
11
  * https://openapi-generator.tech
12
12
  * Do not edit the class manually.
13
13
  */
14
+ import { GroupDeployAttributesFromJSON, GroupDeployAttributesToJSON, } from './GroupDeployAttributes';
14
15
  import { StorageAttributesFromJSON, StorageAttributesToJSON, } from './StorageAttributes';
15
- import { GroupAttributesFromJSON, GroupAttributesToJSON, } from './GroupAttributes';
16
16
  /**
17
17
  * Check if a given object implements the PypiGroupRepositoryApiRequest interface.
18
18
  */
@@ -35,7 +35,7 @@ export function PypiGroupRepositoryApiRequestFromJSONTyped(json, ignoreDiscrimin
35
35
  return json;
36
36
  }
37
37
  return {
38
- 'group': GroupAttributesFromJSON(json['group']),
38
+ 'group': GroupDeployAttributesFromJSON(json['group']),
39
39
  'name': json['name'],
40
40
  'online': json['online'],
41
41
  'storage': StorageAttributesFromJSON(json['storage']),
@@ -49,7 +49,7 @@ export function PypiGroupRepositoryApiRequestToJSONTyped(value, ignoreDiscrimina
49
49
  return value;
50
50
  }
51
51
  return {
52
- 'group': GroupAttributesToJSON(value['group']),
52
+ 'group': GroupDeployAttributesToJSON(value['group']),
53
53
  'name': value['name'],
54
54
  'online': value['online'],
55
55
  'storage': StorageAttributesToJSON(value['storage']),
@@ -9,8 +9,8 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import type { GroupDeployAttributes } from './GroupDeployAttributes';
12
13
  import type { StorageAttributes } from './StorageAttributes';
13
- import type { GroupAttributes } from './GroupAttributes';
14
14
  /**
15
15
  *
16
16
  * @export
@@ -19,10 +19,10 @@ import type { GroupAttributes } from './GroupAttributes';
19
19
  export interface PypiGroupRepositoryApiRequest {
20
20
  /**
21
21
  *
22
- * @type {GroupAttributes}
22
+ * @type {GroupDeployAttributes}
23
23
  * @memberof PypiGroupRepositoryApiRequest
24
24
  */
25
- group: GroupAttributes;
25
+ group: GroupDeployAttributes;
26
26
  /**
27
27
  * A unique identifier for this repository
28
28
  * @type {string}
@@ -18,8 +18,8 @@ exports.PypiGroupRepositoryApiRequestFromJSON = PypiGroupRepositoryApiRequestFro
18
18
  exports.PypiGroupRepositoryApiRequestFromJSONTyped = PypiGroupRepositoryApiRequestFromJSONTyped;
19
19
  exports.PypiGroupRepositoryApiRequestToJSON = PypiGroupRepositoryApiRequestToJSON;
20
20
  exports.PypiGroupRepositoryApiRequestToJSONTyped = PypiGroupRepositoryApiRequestToJSONTyped;
21
+ const GroupDeployAttributes_1 = require("./GroupDeployAttributes");
21
22
  const StorageAttributes_1 = require("./StorageAttributes");
22
- const GroupAttributes_1 = require("./GroupAttributes");
23
23
  /**
24
24
  * Check if a given object implements the PypiGroupRepositoryApiRequest interface.
25
25
  */
@@ -42,7 +42,7 @@ function PypiGroupRepositoryApiRequestFromJSONTyped(json, ignoreDiscriminator) {
42
42
  return json;
43
43
  }
44
44
  return {
45
- 'group': (0, GroupAttributes_1.GroupAttributesFromJSON)(json['group']),
45
+ 'group': (0, GroupDeployAttributes_1.GroupDeployAttributesFromJSON)(json['group']),
46
46
  'name': json['name'],
47
47
  'online': json['online'],
48
48
  'storage': (0, StorageAttributes_1.StorageAttributesFromJSON)(json['storage']),
@@ -56,7 +56,7 @@ function PypiGroupRepositoryApiRequestToJSONTyped(value, ignoreDiscriminator = f
56
56
  return value;
57
57
  }
58
58
  return {
59
- 'group': (0, GroupAttributes_1.GroupAttributesToJSON)(value['group']),
59
+ 'group': (0, GroupDeployAttributes_1.GroupDeployAttributesToJSON)(value['group']),
60
60
  'name': value['name'],
61
61
  'online': value['online'],
62
62
  'storage': (0, StorageAttributes_1.StorageAttributesToJSON)(value['storage']),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sonatype/nexus-repo-api-client",
3
- "version": "3.81.27",
3
+ "version": "3.81.28",
4
4
  "description": "OpenAPI client for @sonatype/nexus-repo-api-client",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -13,6 +13,13 @@
13
13
  */
14
14
 
15
15
  import { mapValues } from '../runtime';
16
+ import type { GroupDeployAttributes } from './GroupDeployAttributes';
17
+ import {
18
+ GroupDeployAttributesFromJSON,
19
+ GroupDeployAttributesFromJSONTyped,
20
+ GroupDeployAttributesToJSON,
21
+ GroupDeployAttributesToJSONTyped,
22
+ } from './GroupDeployAttributes';
16
23
  import type { StorageAttributes } from './StorageAttributes';
17
24
  import {
18
25
  StorageAttributesFromJSON,
@@ -20,13 +27,6 @@ import {
20
27
  StorageAttributesToJSON,
21
28
  StorageAttributesToJSONTyped,
22
29
  } from './StorageAttributes';
23
- import type { GroupAttributes } from './GroupAttributes';
24
- import {
25
- GroupAttributesFromJSON,
26
- GroupAttributesFromJSONTyped,
27
- GroupAttributesToJSON,
28
- GroupAttributesToJSONTyped,
29
- } from './GroupAttributes';
30
30
 
31
31
  /**
32
32
  *
@@ -36,10 +36,10 @@ import {
36
36
  export interface PypiGroupRepositoryApiRequest {
37
37
  /**
38
38
  *
39
- * @type {GroupAttributes}
39
+ * @type {GroupDeployAttributes}
40
40
  * @memberof PypiGroupRepositoryApiRequest
41
41
  */
42
- group: GroupAttributes;
42
+ group: GroupDeployAttributes;
43
43
  /**
44
44
  * A unique identifier for this repository
45
45
  * @type {string}
@@ -81,7 +81,7 @@ export function PypiGroupRepositoryApiRequestFromJSONTyped(json: any, ignoreDisc
81
81
  }
82
82
  return {
83
83
 
84
- 'group': GroupAttributesFromJSON(json['group']),
84
+ 'group': GroupDeployAttributesFromJSON(json['group']),
85
85
  'name': json['name'],
86
86
  'online': json['online'],
87
87
  'storage': StorageAttributesFromJSON(json['storage']),
@@ -99,7 +99,7 @@ export function PypiGroupRepositoryApiRequestToJSONTyped(value?: PypiGroupReposi
99
99
 
100
100
  return {
101
101
 
102
- 'group': GroupAttributesToJSON(value['group']),
102
+ 'group': GroupDeployAttributesToJSON(value['group']),
103
103
  'name': value['name'],
104
104
  'online': value['online'],
105
105
  'storage': StorageAttributesToJSON(value['storage']),