-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfix_generated_models.patch
164 lines (156 loc) · 5.44 KB
/
fix_generated_models.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
diff --git a/generated/models/EPD_Base.ts b/generated/models/EPD_Base.ts
index 68dd95a..acc66be 100644
--- a/generated/models/EPD_Base.ts
+++ b/generated/models/EPD_Base.ts
@@ -972,7 +972,6 @@ export namespace EPD_Base {
COAST_SITKA_SPRUCE = 'Coast Sitka Spruce',
COTTONWOOD = 'Cottonwood',
DOUGLAS_FIR = 'Douglas Fir',
- DOUGLAS_FIR_SOUTH = 'Douglas Fir South',
DOUGLAS_FIR_SOUTH = 'Douglas Fir-South',
EASTERN_COTTONWOOD = 'Eastern Cottonwood',
EASTERN_HEMLOCK = 'Eastern Hemlock',
diff --git a/generated/services/StandardsService.ts b/generated/services/StandardsService.ts
index b146847..eb55a51 100644
--- a/generated/services/StandardsService.ts
+++ b/generated/services/StandardsService.ts
@@ -3,7 +3,6 @@
/* tslint:disable */
/* eslint-disable */
import type { ClientError } from '../models/ClientError';
-import type { Standard_Base_properties_short_name } from '../models/Standard_Base_properties_short_name';
import type { Standard_Edit } from '../models/Standard_Edit';
import type { Standard_Full } from '../models/Standard_Full';
import type { Standard_Ref } from '../models/Standard_Ref';
@@ -75,7 +74,7 @@ export class StandardsService {
* @throws ApiError
*/
public getStandardsId(
- shortName: Standard_Base_properties_short_name,
+ shortName: string,
): CancelablePromise<Standard_Full | ClientError> {
return this.httpRequest.request({
method: 'GET',
@@ -99,7 +98,7 @@ export class StandardsService {
* @throws ApiError
*/
public putStandardsId(
- shortName: Standard_Base_properties_short_name,
+ shortName: string,
requestBody?: Standard_Edit,
): CancelablePromise<Standard_Ref | ClientError> {
return this.httpRequest.request({
diff --git a/generated/models/EPD_Ref.ts b/generated/models/EPD_Ref.ts
index 7ab5da5..e6a0146 100644
--- a/generated/models/EPD_Ref.ts
+++ b/generated/models/EPD_Ref.ts
@@ -3,11 +3,7 @@
/* tslint:disable */
/* eslint-disable */
-import type { EPD_Base_properties_id } from './EPD_Base_properties_id';
-import type { EPD_Base_properties_ref } from './EPD_Base_properties_ref';
-
export type EPD_Ref = {
- id: EPD_Base_properties_id;
- ref?: EPD_Base_properties_ref;
-};
-
+ id: string;
+ ref?: string;
+}
diff --git a/generated/models/Org_Base.ts b/generated/models/Org_Base.ts
index 7a6ede1..ad8d25b 100644
--- a/generated/models/Org_Base.ts
+++ b/generated/models/Org_Base.ts
@@ -3,8 +3,6 @@
/* tslint:disable */
/* eslint-disable */
-import type { Org_Base_properties_name } from './Org_Base_properties_name';
-
export type Org_Base = {
/**
* A web [domain name](https://en.wikipedia.org/wiki/Domain_name) owned by organization.
@@ -19,7 +17,7 @@ export type Org_Base = {
/**
* List of other names for organization
*/
- alt_names?: Array<Org_Base_properties_name>;
+ alt_names?: Array<string>;
/**
* Reference to this Org's JSON object
*/
diff --git a/generated/models/Org_Ref.ts b/generated/models/Org_Ref.ts
index 6eaa1da..df7c7e3 100644
--- a/generated/models/Org_Ref.ts
+++ b/generated/models/Org_Ref.ts
@@ -3,13 +3,9 @@
/* tslint:disable */
/* eslint-disable */
-import type { Org_Base_properties_name } from './Org_Base_properties_name';
-import type { Org_Base_properties_ref } from './Org_Base_properties_ref';
-import type { Org_Base_properties_web_domain } from './Org_Base_properties_web_domain';
-
export type Org_Ref = {
- web_domain: Org_Base_properties_web_domain;
- readonly name?: Org_Base_properties_name;
- ref?: Org_Base_properties_ref;
+ web_domain: string;
+ readonly name?: string;
+ ref?: string;
};
diff --git a/generated/models/PCR_Ref.ts b/generated/models/PCR_Ref.ts
index 4885732..5ec57d1 100644
--- a/generated/models/PCR_Ref.ts
+++ b/generated/models/PCR_Ref.ts
@@ -3,13 +3,8 @@
/* tslint:disable */
/* eslint-disable */
-import type { PCR_Base_properties_id } from './PCR_Base_properties_id';
-import type { PCR_Base_properties_name } from './PCR_Base_properties_name';
-import type { PCR_Base_properties_ref } from './PCR_Base_properties_ref';
-
export type PCR_Ref = {
- id: PCR_Base_properties_id;
- name?: PCR_Base_properties_name;
- ref?: PCR_Base_properties_ref;
-};
-
+ id: string;
+ name?: string;
+ ref?: string;
+}
diff --git a/generated/models/Plant_Ref.ts b/generated/models/Plant_Ref.ts
index 2911374..6a8a39c 100644
--- a/generated/models/Plant_Ref.ts
+++ b/generated/models/Plant_Ref.ts
@@ -3,13 +3,9 @@
/* tslint:disable */
/* eslint-disable */
-import type { Plant_Base_properties_id } from './Plant_Base_properties_id';
-import type { Plant_Base_properties_name } from './Plant_Base_properties_name';
-import type { Plant_Base_properties_ref } from './Plant_Base_properties_ref';
-
export type Plant_Ref = {
- id: Plant_Base_properties_id;
- readonly name?: Plant_Base_properties_name;
- ref?: Plant_Base_properties_ref;
+ id: string;
+ readonly name?: string;
+ ref?: string;
};
diff --git a/generated/models/Standard_Ref.ts b/generated/models/Standard_Ref.ts
index dd2c9c2..c0fc834 100644
--- a/generated/models/Standard_Ref.ts
+++ b/generated/models/Standard_Ref.ts
@@ -3,11 +3,8 @@
/* tslint:disable */
/* eslint-disable */
-import type { Standard_Base_properties_ref } from './Standard_Base_properties_ref';
-import type { Standard_Base_properties_short_name } from './Standard_Base_properties_short_name';
-
export type Standard_Ref = {
- short_name: Standard_Base_properties_short_name;
- ref?: Standard_Base_properties_ref;
+ short_name: string;
+ ref?: string;
};