Skip to content

Commit 8fa497f

Browse files
Automatically update typescript client (ref: Cosmo-Tech/cosmotech-api@940c0ee)
Co-authored-by: jreynard-code <[email protected]>
1 parent 64d13b9 commit 8fa497f

12 files changed

+28
-28
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## @cosmotech/api-ts@5.0.0-rc4
1+
## @cosmotech/api-ts@5.0.1-SNAPSHOT
22

33
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
44

@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
3636
_published:_
3737

3838
```
39-
npm install @cosmotech/[email protected].0-rc4 --save
39+
npm install @cosmotech/[email protected].1-SNAPSHOT --save
4040
```
4141

4242
_unPublished (not recommended):_

api.ts

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Cosmo Tech Platform API
55
* Cosmo Tech Platform API
66
*
7-
* The version of the OpenAPI document: 5.0.0-rc4
7+
* The version of the OpenAPI document: 5.0.1-SNAPSHOT
88
* Contact: [email protected]
99
*
1010
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -70,15 +70,15 @@ export interface ComponentRolePermissions {
7070
'roles': { [key: string]: Array<string>; };
7171
}
7272
/**
73-
* define cpus and memory needs
73+
* Define cpus and memory needs
7474
*/
7575
export interface ContainerResourceSizeInfo {
7676
/**
77-
* define cpu needs
77+
* Define cpu needs
7878
*/
7979
'cpu': string;
8080
/**
81-
* define memory needs
81+
* Define memory needs
8282
*/
8383
'memory': string;
8484
}
@@ -401,15 +401,15 @@ export interface OrganizationUpdateRequest {
401401
'name'?: string;
402402
}
403403
/**
404-
* define cpus and memory needs
404+
* Define CPUs and memory needs. Values must follow the Kubernetes resource requirements/limits syntax: See https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#resource-units-in-kubernetes
405405
*/
406406
export interface ResourceSizeInfo {
407407
/**
408-
* define cpu needs
408+
* Define cpu needs
409409
*/
410410
'cpu': string;
411411
/**
412-
* define memory needs
412+
* Define memory needs
413413
*/
414414
'memory': string;
415415
}
@@ -550,11 +550,11 @@ export interface RunEditInfo {
550550
*/
551551
export interface RunResourceRequested {
552552
/**
553-
* the cpu requested
553+
* Define cpu needs
554554
*/
555555
'cpu'?: number;
556556
/**
557-
* the memory requested
557+
* Define memory needs
558558
*/
559559
'memory'?: number;
560560
}
@@ -959,7 +959,7 @@ export interface RunTemplateParameterValue {
959959
'value': string;
960960
}
961961
/**
962-
* A description object for resource requests and limits
962+
* A description object for resource requests and limits Values must follow the Kubernetes resource requirements/limits syntax: See https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#resource-units-in-kubernetes
963963
*/
964964
export interface RunTemplateResourceSizing {
965965
'requests': ResourceSizeInfo;
@@ -1176,7 +1176,7 @@ export interface RunnerEditInfo {
11761176
'userId': string;
11771177
}
11781178
/**
1179-
* a description object for resource requests and limits (default same configuration as basic sizing)
1179+
* A description object for resource requests and limits. Values must follow the Kubernetes resource requirements/limits syntax: See https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#resource-units-in-kubernetes Default configuration is basic sizing
11801180
*/
11811181
export interface RunnerResourceSizing {
11821182
'requests': ResourceSizeInfo;

base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Cosmo Tech Platform API
55
* Cosmo Tech Platform API
66
*
7-
* The version of the OpenAPI document: 5.0.0-rc4
7+
* The version of the OpenAPI document: 5.0.1-SNAPSHOT
88
* Contact: [email protected]
99
*
1010
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Cosmo Tech Platform API
55
* Cosmo Tech Platform API
66
*
7-
* The version of the OpenAPI document: 5.0.0-rc4
7+
* The version of the OpenAPI document: 5.0.1-SNAPSHOT
88
* Contact: [email protected]
99
*
1010
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

configuration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Cosmo Tech Platform API
44
* Cosmo Tech Platform API
55
*
6-
* The version of the OpenAPI document: 5.0.0-rc4
6+
* The version of the OpenAPI document: 5.0.1-SNAPSHOT
77
* Contact: [email protected]
88
*
99
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

docs/ContainerResourceSizeInfo.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# ContainerResourceSizeInfo
22

3-
define cpus and memory needs
3+
Define cpus and memory needs
44

55
## Properties
66

77
Name | Type | Description | Notes
88
------------ | ------------- | ------------- | -------------
9-
**cpu** | **string** | define cpu needs | [default to undefined]
10-
**memory** | **string** | define memory needs | [default to undefined]
9+
**cpu** | **string** | Define cpu needs | [default to undefined]
10+
**memory** | **string** | Define memory needs | [default to undefined]
1111

1212
## Example
1313

docs/ResourceSizeInfo.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# ResourceSizeInfo
22

3-
define cpus and memory needs
3+
Define CPUs and memory needs. Values must follow the Kubernetes resource requirements/limits syntax: See https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#resource-units-in-kubernetes
44

55
## Properties
66

77
Name | Type | Description | Notes
88
------------ | ------------- | ------------- | -------------
9-
**cpu** | **string** | define cpu needs | [default to undefined]
10-
**memory** | **string** | define memory needs | [default to undefined]
9+
**cpu** | **string** | Define cpu needs | [default to undefined]
10+
**memory** | **string** | Define memory needs | [default to undefined]
1111

1212
## Example
1313

docs/RunResourceRequested.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ the memory and CPU requested by the pod
66

77
Name | Type | Description | Notes
88
------------ | ------------- | ------------- | -------------
9-
**cpu** | **number** | the cpu requested | [optional] [default to undefined]
10-
**memory** | **number** | the memory requested | [optional] [default to undefined]
9+
**cpu** | **number** | Define cpu needs | [optional] [default to undefined]
10+
**memory** | **number** | Define memory needs | [optional] [default to undefined]
1111

1212
## Example
1313

docs/RunTemplateResourceSizing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# RunTemplateResourceSizing
22

3-
A description object for resource requests and limits
3+
A description object for resource requests and limits Values must follow the Kubernetes resource requirements/limits syntax: See https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#resource-units-in-kubernetes
44

55
## Properties
66

docs/RunnerResourceSizing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# RunnerResourceSizing
22

3-
a description object for resource requests and limits (default same configuration as basic sizing)
3+
A description object for resource requests and limits. Values must follow the Kubernetes resource requirements/limits syntax: See https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#resource-units-in-kubernetes Default configuration is basic sizing
44

55
## Properties
66

0 commit comments

Comments
 (0)