esisl_genoa_client 0.1.5 → 0.1.6
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/README.md +4 -2
- package/dist/apis/AllianceApi.d.ts +8 -0
- package/dist/apis/AllianceApi.js +29 -0
- package/dist/apis/AssetsApi.d.ts +12 -0
- package/dist/apis/AssetsApi.js +43 -0
- package/dist/apis/CalendarApi.d.ts +8 -0
- package/dist/apis/CalendarApi.js +29 -0
- package/dist/apis/CharacterApi.d.ts +28 -0
- package/dist/apis/CharacterApi.js +99 -0
- package/dist/apis/ClonesApi.d.ts +4 -0
- package/dist/apis/ClonesApi.js +15 -0
- package/dist/apis/ContactsApi.d.ts +18 -0
- package/dist/apis/ContactsApi.js +64 -0
- package/dist/apis/ContractsApi.d.ts +18 -0
- package/dist/apis/ContractsApi.js +64 -0
- package/dist/apis/CorporationApi.d.ts +44 -0
- package/dist/apis/CorporationApi.js +155 -0
- package/dist/apis/CorporationProjectsApi.d.ts +8 -4
- package/dist/apis/CorporationProjectsApi.js +29 -6
- package/dist/apis/DogmaApi.d.ts +10 -0
- package/dist/apis/DogmaApi.js +36 -0
- package/dist/apis/FactionWarfareApi.d.ts +16 -0
- package/dist/apis/FactionWarfareApi.js +57 -0
- package/dist/apis/FittingsApi.d.ts +6 -0
- package/dist/apis/FittingsApi.js +22 -0
- package/dist/apis/FleetsApi.d.ts +28 -0
- package/dist/apis/FleetsApi.js +99 -0
- package/dist/apis/FreelanceJobsApi.d.ts +12 -2
- package/dist/apis/FreelanceJobsApi.js +43 -3
- package/dist/apis/IncursionsApi.d.ts +2 -0
- package/dist/apis/IncursionsApi.js +8 -0
- package/dist/apis/IndustryApi.d.ts +16 -0
- package/dist/apis/IndustryApi.js +57 -0
- package/dist/apis/InsuranceApi.d.ts +2 -0
- package/dist/apis/InsuranceApi.js +8 -0
- package/dist/apis/KillmailsApi.d.ts +6 -0
- package/dist/apis/KillmailsApi.js +22 -0
- package/dist/apis/LocationApi.d.ts +6 -0
- package/dist/apis/LocationApi.js +22 -0
- package/dist/apis/LoyaltyApi.d.ts +4 -0
- package/dist/apis/LoyaltyApi.js +15 -0
- package/dist/apis/MailApi.d.ts +18 -0
- package/dist/apis/MailApi.js +64 -0
- package/dist/apis/MarketApi.d.ts +22 -0
- package/dist/apis/MarketApi.js +78 -0
- package/dist/apis/MetaApi.d.ts +6 -0
- package/dist/apis/MetaApi.js +22 -0
- package/dist/apis/PlanetaryInteractionApi.d.ts +8 -0
- package/dist/apis/PlanetaryInteractionApi.js +29 -0
- package/dist/apis/RoutesApi.d.ts +2 -0
- package/dist/apis/RoutesApi.js +8 -0
- package/dist/apis/SearchApi.d.ts +2 -0
- package/dist/apis/SearchApi.js +8 -0
- package/dist/apis/SkillsApi.d.ts +6 -0
- package/dist/apis/SkillsApi.js +22 -0
- package/dist/apis/SovereigntyApi.d.ts +6 -0
- package/dist/apis/SovereigntyApi.js +22 -0
- package/dist/apis/StatusApi.d.ts +2 -0
- package/dist/apis/StatusApi.js +8 -0
- package/dist/apis/UniverseApi.d.ts +60 -0
- package/dist/apis/UniverseApi.js +211 -0
- package/dist/apis/UserInterfaceApi.d.ts +10 -0
- package/dist/apis/UserInterfaceApi.js +36 -0
- package/dist/apis/WalletApi.d.ts +12 -0
- package/dist/apis/WalletApi.js +43 -0
- package/dist/apis/WarsApi.d.ts +6 -0
- package/dist/apis/WarsApi.js +22 -0
- package/dist/constants.d.ts +8 -0
- package/dist/constants.js +13 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +5 -0
- package/docs/AllianceApi.md +16 -4
- package/docs/AssetsApi.md +24 -6
- package/docs/CalendarApi.md +16 -4
- package/docs/CharacterApi.md +56 -14
- package/docs/ClonesApi.md +8 -2
- package/docs/ContactsApi.md +36 -9
- package/docs/ContractsApi.md +36 -9
- package/docs/CorporationApi.md +88 -22
- package/docs/CorporationProjectsApi.md +20 -14
- package/docs/DogmaApi.md +20 -5
- package/docs/FactionWarfareApi.md +32 -8
- package/docs/FittingsApi.md +12 -3
- package/docs/FleetsApi.md +56 -14
- package/docs/FreelanceJobsApi.md +30 -15
- package/docs/IncursionsApi.md +4 -1
- package/docs/IndustryApi.md +32 -8
- package/docs/InsuranceApi.md +4 -1
- package/docs/KillmailsApi.md +12 -3
- package/docs/LocationApi.md +12 -3
- package/docs/LoyaltyApi.md +8 -2
- package/docs/MailApi.md +36 -9
- package/docs/MarketApi.md +44 -11
- package/docs/MetaApi.md +15 -6
- package/docs/PlanetaryInteractionApi.md +16 -4
- package/docs/RoutesApi.md +5 -2
- package/docs/SearchApi.md +4 -1
- package/docs/SkillsApi.md +12 -3
- package/docs/SovereigntyApi.md +12 -3
- package/docs/StatusApi.md +4 -1
- package/docs/UniverseApi.md +120 -30
- package/docs/UserInterfaceApi.md +20 -5
- package/docs/WalletApi.md +24 -6
- package/docs/WarsApi.md +12 -3
- package/esisl_genoa_client-0.1.6.tgz +0 -0
- package/package.json +1 -1
- package/src/apis/AllianceApi.ts +45 -0
- package/src/apis/AssetsApi.ts +67 -0
- package/src/apis/CalendarApi.ts +45 -0
- package/src/apis/CharacterApi.ts +155 -0
- package/src/apis/ClonesApi.ts +23 -0
- package/src/apis/ContactsApi.ts +100 -0
- package/src/apis/ContractsApi.ts +100 -0
- package/src/apis/CorporationApi.ts +243 -0
- package/src/apis/CorporationProjectsApi.ts +45 -12
- package/src/apis/DogmaApi.ts +56 -0
- package/src/apis/FactionWarfareApi.ts +89 -0
- package/src/apis/FittingsApi.ts +34 -0
- package/src/apis/FleetsApi.ts +155 -0
- package/src/apis/FreelanceJobsApi.ts +67 -6
- package/src/apis/IncursionsApi.ts +12 -0
- package/src/apis/IndustryApi.ts +89 -0
- package/src/apis/InsuranceApi.ts +12 -0
- package/src/apis/KillmailsApi.ts +34 -0
- package/src/apis/LocationApi.ts +34 -0
- package/src/apis/LoyaltyApi.ts +23 -0
- package/src/apis/MailApi.ts +100 -0
- package/src/apis/MarketApi.ts +122 -0
- package/src/apis/MetaApi.ts +34 -0
- package/src/apis/PlanetaryInteractionApi.ts +45 -0
- package/src/apis/RoutesApi.ts +12 -0
- package/src/apis/SearchApi.ts +12 -0
- package/src/apis/SkillsApi.ts +34 -0
- package/src/apis/SovereigntyApi.ts +34 -0
- package/src/apis/StatusApi.ts +12 -0
- package/src/apis/UniverseApi.ts +331 -0
- package/src/apis/UserInterfaceApi.ts +56 -0
- package/src/apis/WalletApi.ts +67 -0
- package/src/apis/WarsApi.ts +34 -0
- package/src/constants.ts +10 -0
- package/src/index.ts +1 -0
- package/esisl_genoa_client-0.1.4.tgz +0 -0
- package/esisl_genoa_client-0.1.5.tgz +0 -0
|
@@ -17,6 +17,7 @@ export interface GetCorporationsCorporationIdRequest {
|
|
|
17
17
|
acceptLanguage?: GetCorporationsCorporationIdAcceptLanguageEnum;
|
|
18
18
|
ifNoneMatch?: string;
|
|
19
19
|
xTenant?: string;
|
|
20
|
+
ifModifiedSince?: string;
|
|
20
21
|
}
|
|
21
22
|
export interface GetCorporationsCorporationIdAlliancehistoryRequest {
|
|
22
23
|
corporationId: number;
|
|
@@ -24,6 +25,7 @@ export interface GetCorporationsCorporationIdAlliancehistoryRequest {
|
|
|
24
25
|
acceptLanguage?: GetCorporationsCorporationIdAlliancehistoryAcceptLanguageEnum;
|
|
25
26
|
ifNoneMatch?: string;
|
|
26
27
|
xTenant?: string;
|
|
28
|
+
ifModifiedSince?: string;
|
|
27
29
|
}
|
|
28
30
|
export interface GetCorporationsCorporationIdBlueprintsRequest {
|
|
29
31
|
corporationId: number;
|
|
@@ -32,6 +34,7 @@ export interface GetCorporationsCorporationIdBlueprintsRequest {
|
|
|
32
34
|
acceptLanguage?: GetCorporationsCorporationIdBlueprintsAcceptLanguageEnum;
|
|
33
35
|
ifNoneMatch?: string;
|
|
34
36
|
xTenant?: string;
|
|
37
|
+
ifModifiedSince?: string;
|
|
35
38
|
}
|
|
36
39
|
export interface GetCorporationsCorporationIdContainersLogsRequest {
|
|
37
40
|
corporationId: number;
|
|
@@ -40,6 +43,7 @@ export interface GetCorporationsCorporationIdContainersLogsRequest {
|
|
|
40
43
|
acceptLanguage?: GetCorporationsCorporationIdContainersLogsAcceptLanguageEnum;
|
|
41
44
|
ifNoneMatch?: string;
|
|
42
45
|
xTenant?: string;
|
|
46
|
+
ifModifiedSince?: string;
|
|
43
47
|
}
|
|
44
48
|
export interface GetCorporationsCorporationIdDivisionsRequest {
|
|
45
49
|
corporationId: number;
|
|
@@ -47,6 +51,7 @@ export interface GetCorporationsCorporationIdDivisionsRequest {
|
|
|
47
51
|
acceptLanguage?: GetCorporationsCorporationIdDivisionsAcceptLanguageEnum;
|
|
48
52
|
ifNoneMatch?: string;
|
|
49
53
|
xTenant?: string;
|
|
54
|
+
ifModifiedSince?: string;
|
|
50
55
|
}
|
|
51
56
|
export interface GetCorporationsCorporationIdFacilitiesRequest {
|
|
52
57
|
corporationId: number;
|
|
@@ -54,6 +59,7 @@ export interface GetCorporationsCorporationIdFacilitiesRequest {
|
|
|
54
59
|
acceptLanguage?: GetCorporationsCorporationIdFacilitiesAcceptLanguageEnum;
|
|
55
60
|
ifNoneMatch?: string;
|
|
56
61
|
xTenant?: string;
|
|
62
|
+
ifModifiedSince?: string;
|
|
57
63
|
}
|
|
58
64
|
export interface GetCorporationsCorporationIdIconsRequest {
|
|
59
65
|
corporationId: number;
|
|
@@ -61,6 +67,7 @@ export interface GetCorporationsCorporationIdIconsRequest {
|
|
|
61
67
|
acceptLanguage?: GetCorporationsCorporationIdIconsAcceptLanguageEnum;
|
|
62
68
|
ifNoneMatch?: string;
|
|
63
69
|
xTenant?: string;
|
|
70
|
+
ifModifiedSince?: string;
|
|
64
71
|
}
|
|
65
72
|
export interface GetCorporationsCorporationIdMedalsRequest {
|
|
66
73
|
corporationId: number;
|
|
@@ -69,6 +76,7 @@ export interface GetCorporationsCorporationIdMedalsRequest {
|
|
|
69
76
|
acceptLanguage?: GetCorporationsCorporationIdMedalsAcceptLanguageEnum;
|
|
70
77
|
ifNoneMatch?: string;
|
|
71
78
|
xTenant?: string;
|
|
79
|
+
ifModifiedSince?: string;
|
|
72
80
|
}
|
|
73
81
|
export interface GetCorporationsCorporationIdMedalsIssuedRequest {
|
|
74
82
|
corporationId: number;
|
|
@@ -77,6 +85,7 @@ export interface GetCorporationsCorporationIdMedalsIssuedRequest {
|
|
|
77
85
|
acceptLanguage?: GetCorporationsCorporationIdMedalsIssuedAcceptLanguageEnum;
|
|
78
86
|
ifNoneMatch?: string;
|
|
79
87
|
xTenant?: string;
|
|
88
|
+
ifModifiedSince?: string;
|
|
80
89
|
}
|
|
81
90
|
export interface GetCorporationsCorporationIdMembersRequest {
|
|
82
91
|
corporationId: number;
|
|
@@ -84,6 +93,7 @@ export interface GetCorporationsCorporationIdMembersRequest {
|
|
|
84
93
|
acceptLanguage?: GetCorporationsCorporationIdMembersAcceptLanguageEnum;
|
|
85
94
|
ifNoneMatch?: string;
|
|
86
95
|
xTenant?: string;
|
|
96
|
+
ifModifiedSince?: string;
|
|
87
97
|
}
|
|
88
98
|
export interface GetCorporationsCorporationIdMembersLimitRequest {
|
|
89
99
|
corporationId: number;
|
|
@@ -91,6 +101,7 @@ export interface GetCorporationsCorporationIdMembersLimitRequest {
|
|
|
91
101
|
acceptLanguage?: GetCorporationsCorporationIdMembersLimitAcceptLanguageEnum;
|
|
92
102
|
ifNoneMatch?: string;
|
|
93
103
|
xTenant?: string;
|
|
104
|
+
ifModifiedSince?: string;
|
|
94
105
|
}
|
|
95
106
|
export interface GetCorporationsCorporationIdMembersTitlesRequest {
|
|
96
107
|
corporationId: number;
|
|
@@ -98,6 +109,7 @@ export interface GetCorporationsCorporationIdMembersTitlesRequest {
|
|
|
98
109
|
acceptLanguage?: GetCorporationsCorporationIdMembersTitlesAcceptLanguageEnum;
|
|
99
110
|
ifNoneMatch?: string;
|
|
100
111
|
xTenant?: string;
|
|
112
|
+
ifModifiedSince?: string;
|
|
101
113
|
}
|
|
102
114
|
export interface GetCorporationsCorporationIdMembertrackingRequest {
|
|
103
115
|
corporationId: number;
|
|
@@ -105,6 +117,7 @@ export interface GetCorporationsCorporationIdMembertrackingRequest {
|
|
|
105
117
|
acceptLanguage?: GetCorporationsCorporationIdMembertrackingAcceptLanguageEnum;
|
|
106
118
|
ifNoneMatch?: string;
|
|
107
119
|
xTenant?: string;
|
|
120
|
+
ifModifiedSince?: string;
|
|
108
121
|
}
|
|
109
122
|
export interface GetCorporationsCorporationIdRolesRequest {
|
|
110
123
|
corporationId: number;
|
|
@@ -112,6 +125,7 @@ export interface GetCorporationsCorporationIdRolesRequest {
|
|
|
112
125
|
acceptLanguage?: GetCorporationsCorporationIdRolesAcceptLanguageEnum;
|
|
113
126
|
ifNoneMatch?: string;
|
|
114
127
|
xTenant?: string;
|
|
128
|
+
ifModifiedSince?: string;
|
|
115
129
|
}
|
|
116
130
|
export interface GetCorporationsCorporationIdRolesHistoryRequest {
|
|
117
131
|
corporationId: number;
|
|
@@ -120,6 +134,7 @@ export interface GetCorporationsCorporationIdRolesHistoryRequest {
|
|
|
120
134
|
acceptLanguage?: GetCorporationsCorporationIdRolesHistoryAcceptLanguageEnum;
|
|
121
135
|
ifNoneMatch?: string;
|
|
122
136
|
xTenant?: string;
|
|
137
|
+
ifModifiedSince?: string;
|
|
123
138
|
}
|
|
124
139
|
export interface GetCorporationsCorporationIdShareholdersRequest {
|
|
125
140
|
corporationId: number;
|
|
@@ -128,6 +143,7 @@ export interface GetCorporationsCorporationIdShareholdersRequest {
|
|
|
128
143
|
acceptLanguage?: GetCorporationsCorporationIdShareholdersAcceptLanguageEnum;
|
|
129
144
|
ifNoneMatch?: string;
|
|
130
145
|
xTenant?: string;
|
|
146
|
+
ifModifiedSince?: string;
|
|
131
147
|
}
|
|
132
148
|
export interface GetCorporationsCorporationIdStandingsRequest {
|
|
133
149
|
corporationId: number;
|
|
@@ -136,6 +152,7 @@ export interface GetCorporationsCorporationIdStandingsRequest {
|
|
|
136
152
|
acceptLanguage?: GetCorporationsCorporationIdStandingsAcceptLanguageEnum;
|
|
137
153
|
ifNoneMatch?: string;
|
|
138
154
|
xTenant?: string;
|
|
155
|
+
ifModifiedSince?: string;
|
|
139
156
|
}
|
|
140
157
|
export interface GetCorporationsCorporationIdStarbasesRequest {
|
|
141
158
|
corporationId: number;
|
|
@@ -144,6 +161,7 @@ export interface GetCorporationsCorporationIdStarbasesRequest {
|
|
|
144
161
|
acceptLanguage?: GetCorporationsCorporationIdStarbasesAcceptLanguageEnum;
|
|
145
162
|
ifNoneMatch?: string;
|
|
146
163
|
xTenant?: string;
|
|
164
|
+
ifModifiedSince?: string;
|
|
147
165
|
}
|
|
148
166
|
export interface GetCorporationsCorporationIdStarbasesStarbaseIdRequest {
|
|
149
167
|
corporationId: number;
|
|
@@ -153,6 +171,7 @@ export interface GetCorporationsCorporationIdStarbasesStarbaseIdRequest {
|
|
|
153
171
|
acceptLanguage?: GetCorporationsCorporationIdStarbasesStarbaseIdAcceptLanguageEnum;
|
|
154
172
|
ifNoneMatch?: string;
|
|
155
173
|
xTenant?: string;
|
|
174
|
+
ifModifiedSince?: string;
|
|
156
175
|
}
|
|
157
176
|
export interface GetCorporationsCorporationIdStructuresRequest {
|
|
158
177
|
corporationId: number;
|
|
@@ -161,6 +180,7 @@ export interface GetCorporationsCorporationIdStructuresRequest {
|
|
|
161
180
|
acceptLanguage?: GetCorporationsCorporationIdStructuresAcceptLanguageEnum;
|
|
162
181
|
ifNoneMatch?: string;
|
|
163
182
|
xTenant?: string;
|
|
183
|
+
ifModifiedSince?: string;
|
|
164
184
|
}
|
|
165
185
|
export interface GetCorporationsCorporationIdTitlesRequest {
|
|
166
186
|
corporationId: number;
|
|
@@ -168,12 +188,14 @@ export interface GetCorporationsCorporationIdTitlesRequest {
|
|
|
168
188
|
acceptLanguage?: GetCorporationsCorporationIdTitlesAcceptLanguageEnum;
|
|
169
189
|
ifNoneMatch?: string;
|
|
170
190
|
xTenant?: string;
|
|
191
|
+
ifModifiedSince?: string;
|
|
171
192
|
}
|
|
172
193
|
export interface GetCorporationsNpccorpsRequest {
|
|
173
194
|
xCompatibilityDate: GetCorporationsNpccorpsXCompatibilityDateEnum;
|
|
174
195
|
acceptLanguage?: GetCorporationsNpccorpsAcceptLanguageEnum;
|
|
175
196
|
ifNoneMatch?: string;
|
|
176
197
|
xTenant?: string;
|
|
198
|
+
ifModifiedSince?: string;
|
|
177
199
|
}
|
|
178
200
|
/**
|
|
179
201
|
* CorporationApi - interface
|
|
@@ -190,6 +212,7 @@ export interface CorporationApiInterface {
|
|
|
190
212
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
191
213
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
192
214
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
215
|
+
* @param {string} [ifModifiedSince] The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date.
|
|
193
216
|
* @param {*} [options] Override http request option.
|
|
194
217
|
* @throws {RequiredError}
|
|
195
218
|
* @memberof CorporationApiInterface
|
|
@@ -208,6 +231,7 @@ export interface CorporationApiInterface {
|
|
|
208
231
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
209
232
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
210
233
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
234
|
+
* @param {string} [ifModifiedSince] The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date.
|
|
211
235
|
* @param {*} [options] Override http request option.
|
|
212
236
|
* @throws {RequiredError}
|
|
213
237
|
* @memberof CorporationApiInterface
|
|
@@ -227,6 +251,7 @@ export interface CorporationApiInterface {
|
|
|
227
251
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
228
252
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
229
253
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
254
|
+
* @param {string} [ifModifiedSince] The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date.
|
|
230
255
|
* @param {*} [options] Override http request option.
|
|
231
256
|
* @throws {RequiredError}
|
|
232
257
|
* @memberof CorporationApiInterface
|
|
@@ -246,6 +271,7 @@ export interface CorporationApiInterface {
|
|
|
246
271
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
247
272
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
248
273
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
274
|
+
* @param {string} [ifModifiedSince] The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date.
|
|
249
275
|
* @param {*} [options] Override http request option.
|
|
250
276
|
* @throws {RequiredError}
|
|
251
277
|
* @memberof CorporationApiInterface
|
|
@@ -264,6 +290,7 @@ export interface CorporationApiInterface {
|
|
|
264
290
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
265
291
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
266
292
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
293
|
+
* @param {string} [ifModifiedSince] The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date.
|
|
267
294
|
* @param {*} [options] Override http request option.
|
|
268
295
|
* @throws {RequiredError}
|
|
269
296
|
* @memberof CorporationApiInterface
|
|
@@ -282,6 +309,7 @@ export interface CorporationApiInterface {
|
|
|
282
309
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
283
310
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
284
311
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
312
|
+
* @param {string} [ifModifiedSince] The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date.
|
|
285
313
|
* @param {*} [options] Override http request option.
|
|
286
314
|
* @throws {RequiredError}
|
|
287
315
|
* @memberof CorporationApiInterface
|
|
@@ -300,6 +328,7 @@ export interface CorporationApiInterface {
|
|
|
300
328
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
301
329
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
302
330
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
331
|
+
* @param {string} [ifModifiedSince] The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date.
|
|
303
332
|
* @param {*} [options] Override http request option.
|
|
304
333
|
* @throws {RequiredError}
|
|
305
334
|
* @memberof CorporationApiInterface
|
|
@@ -319,6 +348,7 @@ export interface CorporationApiInterface {
|
|
|
319
348
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
320
349
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
321
350
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
351
|
+
* @param {string} [ifModifiedSince] The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date.
|
|
322
352
|
* @param {*} [options] Override http request option.
|
|
323
353
|
* @throws {RequiredError}
|
|
324
354
|
* @memberof CorporationApiInterface
|
|
@@ -338,6 +368,7 @@ export interface CorporationApiInterface {
|
|
|
338
368
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
339
369
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
340
370
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
371
|
+
* @param {string} [ifModifiedSince] The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date.
|
|
341
372
|
* @param {*} [options] Override http request option.
|
|
342
373
|
* @throws {RequiredError}
|
|
343
374
|
* @memberof CorporationApiInterface
|
|
@@ -356,6 +387,7 @@ export interface CorporationApiInterface {
|
|
|
356
387
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
357
388
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
358
389
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
390
|
+
* @param {string} [ifModifiedSince] The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date.
|
|
359
391
|
* @param {*} [options] Override http request option.
|
|
360
392
|
* @throws {RequiredError}
|
|
361
393
|
* @memberof CorporationApiInterface
|
|
@@ -374,6 +406,7 @@ export interface CorporationApiInterface {
|
|
|
374
406
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
375
407
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
376
408
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
409
|
+
* @param {string} [ifModifiedSince] The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date.
|
|
377
410
|
* @param {*} [options] Override http request option.
|
|
378
411
|
* @throws {RequiredError}
|
|
379
412
|
* @memberof CorporationApiInterface
|
|
@@ -392,6 +425,7 @@ export interface CorporationApiInterface {
|
|
|
392
425
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
393
426
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
394
427
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
428
|
+
* @param {string} [ifModifiedSince] The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date.
|
|
395
429
|
* @param {*} [options] Override http request option.
|
|
396
430
|
* @throws {RequiredError}
|
|
397
431
|
* @memberof CorporationApiInterface
|
|
@@ -410,6 +444,7 @@ export interface CorporationApiInterface {
|
|
|
410
444
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
411
445
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
412
446
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
447
|
+
* @param {string} [ifModifiedSince] The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date.
|
|
413
448
|
* @param {*} [options] Override http request option.
|
|
414
449
|
* @throws {RequiredError}
|
|
415
450
|
* @memberof CorporationApiInterface
|
|
@@ -428,6 +463,7 @@ export interface CorporationApiInterface {
|
|
|
428
463
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
429
464
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
430
465
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
466
|
+
* @param {string} [ifModifiedSince] The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date.
|
|
431
467
|
* @param {*} [options] Override http request option.
|
|
432
468
|
* @throws {RequiredError}
|
|
433
469
|
* @memberof CorporationApiInterface
|
|
@@ -447,6 +483,7 @@ export interface CorporationApiInterface {
|
|
|
447
483
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
448
484
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
449
485
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
486
|
+
* @param {string} [ifModifiedSince] The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date.
|
|
450
487
|
* @param {*} [options] Override http request option.
|
|
451
488
|
* @throws {RequiredError}
|
|
452
489
|
* @memberof CorporationApiInterface
|
|
@@ -466,6 +503,7 @@ export interface CorporationApiInterface {
|
|
|
466
503
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
467
504
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
468
505
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
506
|
+
* @param {string} [ifModifiedSince] The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date.
|
|
469
507
|
* @param {*} [options] Override http request option.
|
|
470
508
|
* @throws {RequiredError}
|
|
471
509
|
* @memberof CorporationApiInterface
|
|
@@ -485,6 +523,7 @@ export interface CorporationApiInterface {
|
|
|
485
523
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
486
524
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
487
525
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
526
|
+
* @param {string} [ifModifiedSince] The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date.
|
|
488
527
|
* @param {*} [options] Override http request option.
|
|
489
528
|
* @throws {RequiredError}
|
|
490
529
|
* @memberof CorporationApiInterface
|
|
@@ -504,6 +543,7 @@ export interface CorporationApiInterface {
|
|
|
504
543
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
505
544
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
506
545
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
546
|
+
* @param {string} [ifModifiedSince] The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date.
|
|
507
547
|
* @param {*} [options] Override http request option.
|
|
508
548
|
* @throws {RequiredError}
|
|
509
549
|
* @memberof CorporationApiInterface
|
|
@@ -524,6 +564,7 @@ export interface CorporationApiInterface {
|
|
|
524
564
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
525
565
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
526
566
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
567
|
+
* @param {string} [ifModifiedSince] The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date.
|
|
527
568
|
* @param {*} [options] Override http request option.
|
|
528
569
|
* @throws {RequiredError}
|
|
529
570
|
* @memberof CorporationApiInterface
|
|
@@ -543,6 +584,7 @@ export interface CorporationApiInterface {
|
|
|
543
584
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
544
585
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
545
586
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
587
|
+
* @param {string} [ifModifiedSince] The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date.
|
|
546
588
|
* @param {*} [options] Override http request option.
|
|
547
589
|
* @throws {RequiredError}
|
|
548
590
|
* @memberof CorporationApiInterface
|
|
@@ -561,6 +603,7 @@ export interface CorporationApiInterface {
|
|
|
561
603
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
562
604
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
563
605
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
606
|
+
* @param {string} [ifModifiedSince] The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date.
|
|
564
607
|
* @param {*} [options] Override http request option.
|
|
565
608
|
* @throws {RequiredError}
|
|
566
609
|
* @memberof CorporationApiInterface
|
|
@@ -578,6 +621,7 @@ export interface CorporationApiInterface {
|
|
|
578
621
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
579
622
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
580
623
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
624
|
+
* @param {string} [ifModifiedSince] The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date.
|
|
581
625
|
* @param {*} [options] Override http request option.
|
|
582
626
|
* @throws {RequiredError}
|
|
583
627
|
* @memberof CorporationApiInterface
|