@factpulse/sdk 3.0.24 → 3.0.26
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/.openapi-generator/FILES +2 -10
- package/CHANGELOG.md +3 -3
- package/README.md +19 -38
- package/api/afnorpdppadirectory-service-api.ts +127 -457
- package/dist/api/afnorpdppadirectory-service-api.d.ts +72 -192
- package/dist/api/afnorpdppadirectory-service-api.js +126 -419
- package/dist/esm/api/afnorpdppadirectory-service-api.d.ts +72 -192
- package/dist/esm/api/afnorpdppadirectory-service-api.js +127 -420
- package/dist/esm/models/{accept-language.d.ts → facture-electronique-models-invoice-type-code.d.ts} +67 -5
- package/dist/esm/models/{facture-electronique-rest-api-schemas-ereporting-invoice-type-code.js → facture-electronique-models-invoice-type-code.js} +66 -7
- package/dist/esm/models/index.d.ts +1 -5
- package/dist/esm/models/index.js +1 -5
- package/dist/esm/models/invoice-input.d.ts +2 -2
- package/dist/esm/models/invoice-type-code.d.ts +6 -65
- package/dist/esm/models/invoice-type-code.js +6 -65
- package/dist/esm/models/simplified-invoice-data.d.ts +2 -2
- package/dist/esm/src/helpers/client.js +1 -1
- package/dist/{esm/models/accept-language.js → models/facture-electronique-models-invoice-type-code.d.ts} +67 -6
- package/dist/models/{accept-language.js → facture-electronique-models-invoice-type-code.js} +67 -5
- package/dist/models/index.d.ts +1 -5
- package/dist/models/index.js +1 -5
- package/dist/models/invoice-input.d.ts +2 -2
- package/dist/models/invoice-type-code.d.ts +6 -65
- package/dist/models/invoice-type-code.js +6 -65
- package/dist/models/simplified-invoice-data.d.ts +2 -2
- package/dist/src/helpers/client.js +1 -1
- package/docs/AFNORPDPPADirectoryServiceApi.md +42 -153
- package/docs/FactureElectroniqueModelsInvoiceTypeCode.md +39 -0
- package/docs/InvoiceInput.md +1 -1
- package/docs/InvoiceTypeCode.md +6 -28
- package/docs/SimplifiedInvoiceData.md +1 -1
- package/models/{accept-language.ts → facture-electronique-models-invoice-type-code.ts} +67 -5
- package/models/index.ts +1 -5
- package/models/invoice-input.ts +2 -2
- package/models/invoice-type-code.ts +6 -65
- package/models/simplified-invoice-data.ts +2 -2
- package/package.json +1 -1
- package/src/helpers/client.ts +1 -1
- package/dist/esm/models/directory-line-include.d.ts +0 -21
- package/dist/esm/models/directory-line-include.js +0 -22
- package/dist/esm/models/facture-electronique-rest-api-schemas-ereporting-invoice-type-code.d.ts +0 -22
- package/dist/esm/models/routing-code-include.d.ts +0 -19
- package/dist/esm/models/routing-code-include.js +0 -20
- package/dist/esm/models/siret-include.d.ts +0 -18
- package/dist/esm/models/siret-include.js +0 -19
- package/dist/models/accept-language.d.ts +0 -19
- package/dist/models/directory-line-include.d.ts +0 -21
- package/dist/models/directory-line-include.js +0 -25
- package/dist/models/facture-electronique-rest-api-schemas-ereporting-invoice-type-code.d.ts +0 -22
- package/dist/models/facture-electronique-rest-api-schemas-ereporting-invoice-type-code.js +0 -26
- package/dist/models/routing-code-include.d.ts +0 -19
- package/dist/models/routing-code-include.js +0 -23
- package/dist/models/siret-include.d.ts +0 -18
- package/dist/models/siret-include.js +0 -22
- package/docs/AcceptLanguage.md +0 -11
- package/docs/DirectoryLineInclude.md +0 -15
- package/docs/FactureElectroniqueRestApiSchemasEreportingInvoiceTypeCode.md +0 -17
- package/docs/RoutingCodeInclude.md +0 -11
- package/docs/SiretInclude.md +0 -9
- package/models/directory-line-include.ts +0 -31
- package/models/facture-electronique-rest-api-schemas-ereporting-invoice-type-code.ts +0 -32
- package/models/routing-code-include.ts +0 -29
- package/models/siret-include.ts +0 -28
|
@@ -18,7 +18,7 @@ import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
|
18
18
|
import globalAxios from 'axios';
|
|
19
19
|
// Some imports not used depending on template conditions
|
|
20
20
|
// @ts-ignore
|
|
21
|
-
import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction
|
|
21
|
+
import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from '../common';
|
|
22
22
|
// @ts-ignore
|
|
23
23
|
import { BASE_PATH, COLLECTION_FORMATS, type RequestArgs, BaseAPI, RequiredError, operationServerMap } from '../base';
|
|
24
24
|
// @ts-ignore
|
|
@@ -41,14 +41,6 @@ import type { AFNORRoutingCodeSearchPost200Response } from '../models';
|
|
|
41
41
|
import type { AFNORSirenSearchPost200Response } from '../models';
|
|
42
42
|
// @ts-ignore
|
|
43
43
|
import type { AFNORSiretSearchPost200Response } from '../models';
|
|
44
|
-
// @ts-ignore
|
|
45
|
-
import type { AcceptLanguage } from '../models';
|
|
46
|
-
// @ts-ignore
|
|
47
|
-
import type { DirectoryLineInclude } from '../models';
|
|
48
|
-
// @ts-ignore
|
|
49
|
-
import type { RoutingCodeInclude } from '../models';
|
|
50
|
-
// @ts-ignore
|
|
51
|
-
import type { SiretInclude } from '../models';
|
|
52
44
|
/**
|
|
53
45
|
* AFNORPDPPADirectoryServiceApi - axios parameter creator
|
|
54
46
|
*/
|
|
@@ -57,11 +49,10 @@ export const AFNORPDPPADirectoryServiceApiAxiosParamCreator = function (configur
|
|
|
57
49
|
/**
|
|
58
50
|
* Creation of a new directory line for a SIREN, a SIRET or a ROUTING CODE.
|
|
59
51
|
* @summary Creating a directory line
|
|
60
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
61
52
|
* @param {*} [options] Override http request option.
|
|
62
53
|
* @throws {RequiredError}
|
|
63
54
|
*/
|
|
64
|
-
createDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLinePost: async (
|
|
55
|
+
createDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLinePost: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
65
56
|
const localVarPath = `/api/v1/afnor/directory/v1/directory-line`;
|
|
66
57
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
67
58
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -74,17 +65,8 @@ export const AFNORPDPPADirectoryServiceApiAxiosParamCreator = function (configur
|
|
|
74
65
|
const localVarHeaderParameter = {} as any;
|
|
75
66
|
const localVarQueryParameter = {} as any;
|
|
76
67
|
|
|
77
|
-
// authentication HTTPBearer required
|
|
78
|
-
// http bearer authentication required
|
|
79
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
80
|
-
|
|
81
68
|
localVarHeaderParameter['Accept'] = 'application/json';
|
|
82
69
|
|
|
83
|
-
if (acceptLanguage != null) {
|
|
84
|
-
localVarHeaderParameter['Accept-Language'] = typeof acceptLanguage === 'string'
|
|
85
|
-
? acceptLanguage
|
|
86
|
-
: JSON.stringify(acceptLanguage, replaceWithSerializableTypeIfNeeded);
|
|
87
|
-
}
|
|
88
70
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
89
71
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
90
72
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -97,11 +79,10 @@ export const AFNORPDPPADirectoryServiceApiAxiosParamCreator = function (configur
|
|
|
97
79
|
/**
|
|
98
80
|
* Creating a routing code.
|
|
99
81
|
* @summary Create a routing code
|
|
100
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
101
82
|
* @param {*} [options] Override http request option.
|
|
102
83
|
* @throws {RequiredError}
|
|
103
84
|
*/
|
|
104
|
-
createRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodePost: async (
|
|
85
|
+
createRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodePost: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
105
86
|
const localVarPath = `/api/v1/afnor/directory/v1/routing-code`;
|
|
106
87
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
107
88
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -114,17 +95,8 @@ export const AFNORPDPPADirectoryServiceApiAxiosParamCreator = function (configur
|
|
|
114
95
|
const localVarHeaderParameter = {} as any;
|
|
115
96
|
const localVarQueryParameter = {} as any;
|
|
116
97
|
|
|
117
|
-
// authentication HTTPBearer required
|
|
118
|
-
// http bearer authentication required
|
|
119
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
120
|
-
|
|
121
98
|
localVarHeaderParameter['Accept'] = 'application/json';
|
|
122
99
|
|
|
123
|
-
if (acceptLanguage != null) {
|
|
124
|
-
localVarHeaderParameter['Accept-Language'] = typeof acceptLanguage === 'string'
|
|
125
|
-
? acceptLanguage
|
|
126
|
-
: JSON.stringify(acceptLanguage, replaceWithSerializableTypeIfNeeded);
|
|
127
|
-
}
|
|
128
100
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
129
101
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
130
102
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -138,11 +110,10 @@ export const AFNORPDPPADirectoryServiceApiAxiosParamCreator = function (configur
|
|
|
138
110
|
* Delete a directory line.
|
|
139
111
|
* @summary Delete a directory line
|
|
140
112
|
* @param {string} idInstance AFNOR instance ID (UUID)
|
|
141
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
142
113
|
* @param {*} [options] Override http request option.
|
|
143
114
|
* @throws {RequiredError}
|
|
144
115
|
*/
|
|
145
|
-
deleteDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstanceDelete: async (idInstance: string,
|
|
116
|
+
deleteDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstanceDelete: async (idInstance: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
146
117
|
// verify required parameter 'idInstance' is not null or undefined
|
|
147
118
|
assertParamExists('deleteDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstanceDelete', 'idInstance', idInstance)
|
|
148
119
|
const localVarPath = `/api/v1/afnor/directory/v1/directory-line/id-instance:{id_instance}`
|
|
@@ -158,17 +129,8 @@ export const AFNORPDPPADirectoryServiceApiAxiosParamCreator = function (configur
|
|
|
158
129
|
const localVarHeaderParameter = {} as any;
|
|
159
130
|
const localVarQueryParameter = {} as any;
|
|
160
131
|
|
|
161
|
-
// authentication HTTPBearer required
|
|
162
|
-
// http bearer authentication required
|
|
163
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
164
|
-
|
|
165
132
|
localVarHeaderParameter['Accept'] = 'application/json';
|
|
166
133
|
|
|
167
|
-
if (acceptLanguage != null) {
|
|
168
|
-
localVarHeaderParameter['Accept-Language'] = typeof acceptLanguage === 'string'
|
|
169
|
-
? acceptLanguage
|
|
170
|
-
: JSON.stringify(acceptLanguage, replaceWithSerializableTypeIfNeeded);
|
|
171
|
-
}
|
|
172
134
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
173
135
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
174
136
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -212,13 +174,10 @@ export const AFNORPDPPADirectoryServiceApiAxiosParamCreator = function (configur
|
|
|
212
174
|
* Retrieve the data from the directory line corresponding to the identifier passed in parameters.
|
|
213
175
|
* @summary Get a directory line.
|
|
214
176
|
* @param {string} addressingIdentifier Addressing identifier (SIREN, SIRET or routing code)
|
|
215
|
-
* @param {Array<string> | null} [fields] Fields of the Directory Line resource.
|
|
216
|
-
* @param {Array<DirectoryLineInclude> | null} [include] Relations to include in the response.
|
|
217
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
218
177
|
* @param {*} [options] Override http request option.
|
|
219
178
|
* @throws {RequiredError}
|
|
220
179
|
*/
|
|
221
|
-
getDirectoryLineByCodeProxyApiV1AfnorDirectoryV1DirectoryLineCodeAddressingIdentifierGet: async (addressingIdentifier: string,
|
|
180
|
+
getDirectoryLineByCodeProxyApiV1AfnorDirectoryV1DirectoryLineCodeAddressingIdentifierGet: async (addressingIdentifier: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
222
181
|
// verify required parameter 'addressingIdentifier' is not null or undefined
|
|
223
182
|
assertParamExists('getDirectoryLineByCodeProxyApiV1AfnorDirectoryV1DirectoryLineCodeAddressingIdentifierGet', 'addressingIdentifier', addressingIdentifier)
|
|
224
183
|
const localVarPath = `/api/v1/afnor/directory/v1/directory-line/code:{addressing_identifier}`
|
|
@@ -234,25 +193,8 @@ export const AFNORPDPPADirectoryServiceApiAxiosParamCreator = function (configur
|
|
|
234
193
|
const localVarHeaderParameter = {} as any;
|
|
235
194
|
const localVarQueryParameter = {} as any;
|
|
236
195
|
|
|
237
|
-
// authentication HTTPBearer required
|
|
238
|
-
// http bearer authentication required
|
|
239
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
240
|
-
|
|
241
|
-
if (fields) {
|
|
242
|
-
localVarQueryParameter['fields'] = fields;
|
|
243
|
-
}
|
|
244
|
-
|
|
245
|
-
if (include) {
|
|
246
|
-
localVarQueryParameter['include'] = include;
|
|
247
|
-
}
|
|
248
|
-
|
|
249
196
|
localVarHeaderParameter['Accept'] = 'application/json';
|
|
250
197
|
|
|
251
|
-
if (acceptLanguage != null) {
|
|
252
|
-
localVarHeaderParameter['Accept-Language'] = typeof acceptLanguage === 'string'
|
|
253
|
-
? acceptLanguage
|
|
254
|
-
: JSON.stringify(acceptLanguage, replaceWithSerializableTypeIfNeeded);
|
|
255
|
-
}
|
|
256
198
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
257
199
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
258
200
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -266,12 +208,10 @@ export const AFNORPDPPADirectoryServiceApiAxiosParamCreator = function (configur
|
|
|
266
208
|
* Retrieve the data from the directory line corresponding to the identifier passed in parameters.
|
|
267
209
|
* @summary Get a directory line.
|
|
268
210
|
* @param {string} idInstance AFNOR instance ID (UUID)
|
|
269
|
-
* @param {Array<string> | null} [fields] Fields of the Directory Line resource.
|
|
270
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
271
211
|
* @param {*} [options] Override http request option.
|
|
272
212
|
* @throws {RequiredError}
|
|
273
213
|
*/
|
|
274
|
-
getDirectoryLineByIdInstanceProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstanceGet: async (idInstance: string,
|
|
214
|
+
getDirectoryLineByIdInstanceProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstanceGet: async (idInstance: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
275
215
|
// verify required parameter 'idInstance' is not null or undefined
|
|
276
216
|
assertParamExists('getDirectoryLineByIdInstanceProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstanceGet', 'idInstance', idInstance)
|
|
277
217
|
const localVarPath = `/api/v1/afnor/directory/v1/directory-line/id-instance:{id_instance}`
|
|
@@ -287,21 +227,8 @@ export const AFNORPDPPADirectoryServiceApiAxiosParamCreator = function (configur
|
|
|
287
227
|
const localVarHeaderParameter = {} as any;
|
|
288
228
|
const localVarQueryParameter = {} as any;
|
|
289
229
|
|
|
290
|
-
// authentication HTTPBearer required
|
|
291
|
-
// http bearer authentication required
|
|
292
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
293
|
-
|
|
294
|
-
if (fields) {
|
|
295
|
-
localVarQueryParameter['fields'] = fields;
|
|
296
|
-
}
|
|
297
|
-
|
|
298
230
|
localVarHeaderParameter['Accept'] = 'application/json';
|
|
299
231
|
|
|
300
|
-
if (acceptLanguage != null) {
|
|
301
|
-
localVarHeaderParameter['Accept-Language'] = typeof acceptLanguage === 'string'
|
|
302
|
-
? acceptLanguage
|
|
303
|
-
: JSON.stringify(acceptLanguage, replaceWithSerializableTypeIfNeeded);
|
|
304
|
-
}
|
|
305
232
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
306
233
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
307
234
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -315,12 +242,10 @@ export const AFNORPDPPADirectoryServiceApiAxiosParamCreator = function (configur
|
|
|
315
242
|
* Retrieve the Routing Code data corresponding to the Instance ID.
|
|
316
243
|
* @summary Get a routing code by instance-id.
|
|
317
244
|
* @param {string} idInstance AFNOR instance ID (UUID)
|
|
318
|
-
* @param {Array<string> | null} [fields] Fields of the Routing Code resource
|
|
319
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
320
245
|
* @param {*} [options] Override http request option.
|
|
321
246
|
* @throws {RequiredError}
|
|
322
247
|
*/
|
|
323
|
-
getRoutingCodeByIdInstanceProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstanceGet: async (idInstance: string,
|
|
248
|
+
getRoutingCodeByIdInstanceProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstanceGet: async (idInstance: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
324
249
|
// verify required parameter 'idInstance' is not null or undefined
|
|
325
250
|
assertParamExists('getRoutingCodeByIdInstanceProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstanceGet', 'idInstance', idInstance)
|
|
326
251
|
const localVarPath = `/api/v1/afnor/directory/v1/routing-code/id-instance:{id_instance}`
|
|
@@ -336,21 +261,8 @@ export const AFNORPDPPADirectoryServiceApiAxiosParamCreator = function (configur
|
|
|
336
261
|
const localVarHeaderParameter = {} as any;
|
|
337
262
|
const localVarQueryParameter = {} as any;
|
|
338
263
|
|
|
339
|
-
// authentication HTTPBearer required
|
|
340
|
-
// http bearer authentication required
|
|
341
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
342
|
-
|
|
343
|
-
if (fields) {
|
|
344
|
-
localVarQueryParameter['fields'] = fields;
|
|
345
|
-
}
|
|
346
|
-
|
|
347
264
|
localVarHeaderParameter['Accept'] = 'application/json';
|
|
348
265
|
|
|
349
|
-
if (acceptLanguage != null) {
|
|
350
|
-
localVarHeaderParameter['Accept-Language'] = typeof acceptLanguage === 'string'
|
|
351
|
-
? acceptLanguage
|
|
352
|
-
: JSON.stringify(acceptLanguage, replaceWithSerializableTypeIfNeeded);
|
|
353
|
-
}
|
|
354
266
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
355
267
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
356
268
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -365,13 +277,10 @@ export const AFNORPDPPADirectoryServiceApiAxiosParamCreator = function (configur
|
|
|
365
277
|
* @summary Get a routing code by SIRET and routing identifier
|
|
366
278
|
* @param {string} siret 14-digit SIRET number (INSEE establishment identifier)
|
|
367
279
|
* @param {string} routingIdentifier Routing code identifier
|
|
368
|
-
* @param {Array<string> | null} [fields] Fields of the Routing Code resource
|
|
369
|
-
* @param {Array<RoutingCodeInclude> | null} [include] Relations to include in the response.
|
|
370
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
371
280
|
* @param {*} [options] Override http request option.
|
|
372
281
|
* @throws {RequiredError}
|
|
373
282
|
*/
|
|
374
|
-
getRoutingCodeBySiretAndCodeProxyApiV1AfnorDirectoryV1RoutingCodeSiretSiretCodeRoutingIdentifierGet: async (siret: string, routingIdentifier: string,
|
|
283
|
+
getRoutingCodeBySiretAndCodeProxyApiV1AfnorDirectoryV1RoutingCodeSiretSiretCodeRoutingIdentifierGet: async (siret: string, routingIdentifier: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
375
284
|
// verify required parameter 'siret' is not null or undefined
|
|
376
285
|
assertParamExists('getRoutingCodeBySiretAndCodeProxyApiV1AfnorDirectoryV1RoutingCodeSiretSiretCodeRoutingIdentifierGet', 'siret', siret)
|
|
377
286
|
// verify required parameter 'routingIdentifier' is not null or undefined
|
|
@@ -390,25 +299,8 @@ export const AFNORPDPPADirectoryServiceApiAxiosParamCreator = function (configur
|
|
|
390
299
|
const localVarHeaderParameter = {} as any;
|
|
391
300
|
const localVarQueryParameter = {} as any;
|
|
392
301
|
|
|
393
|
-
// authentication HTTPBearer required
|
|
394
|
-
// http bearer authentication required
|
|
395
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
396
|
-
|
|
397
|
-
if (fields) {
|
|
398
|
-
localVarQueryParameter['fields'] = fields;
|
|
399
|
-
}
|
|
400
|
-
|
|
401
|
-
if (include) {
|
|
402
|
-
localVarQueryParameter['include'] = include;
|
|
403
|
-
}
|
|
404
|
-
|
|
405
302
|
localVarHeaderParameter['Accept'] = 'application/json';
|
|
406
303
|
|
|
407
|
-
if (acceptLanguage != null) {
|
|
408
|
-
localVarHeaderParameter['Accept-Language'] = typeof acceptLanguage === 'string'
|
|
409
|
-
? acceptLanguage
|
|
410
|
-
: JSON.stringify(acceptLanguage, replaceWithSerializableTypeIfNeeded);
|
|
411
|
-
}
|
|
412
304
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
413
305
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
414
306
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -422,12 +314,10 @@ export const AFNORPDPPADirectoryServiceApiAxiosParamCreator = function (configur
|
|
|
422
314
|
* Returns the details of a company (legal unit) identified by the SIREN number passed as a parameter.
|
|
423
315
|
* @summary Consult a siren (legal unit) by SIREN number
|
|
424
316
|
* @param {string} siren 9-digit SIREN number (INSEE company identifier)
|
|
425
|
-
* @param {Array<string> | null} [fields] Fields of the SIREN resource
|
|
426
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
427
317
|
* @param {*} [options] Override http request option.
|
|
428
318
|
* @throws {RequiredError}
|
|
429
319
|
*/
|
|
430
|
-
getSirenByCodeInseeProxyApiV1AfnorDirectoryV1SirenCodeInseeSirenGet: async (siren: string,
|
|
320
|
+
getSirenByCodeInseeProxyApiV1AfnorDirectoryV1SirenCodeInseeSirenGet: async (siren: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
431
321
|
// verify required parameter 'siren' is not null or undefined
|
|
432
322
|
assertParamExists('getSirenByCodeInseeProxyApiV1AfnorDirectoryV1SirenCodeInseeSirenGet', 'siren', siren)
|
|
433
323
|
const localVarPath = `/api/v1/afnor/directory/v1/siren/code-insee:{siren}`
|
|
@@ -443,21 +333,8 @@ export const AFNORPDPPADirectoryServiceApiAxiosParamCreator = function (configur
|
|
|
443
333
|
const localVarHeaderParameter = {} as any;
|
|
444
334
|
const localVarQueryParameter = {} as any;
|
|
445
335
|
|
|
446
|
-
// authentication HTTPBearer required
|
|
447
|
-
// http bearer authentication required
|
|
448
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
449
|
-
|
|
450
|
-
if (fields) {
|
|
451
|
-
localVarQueryParameter['fields'] = fields;
|
|
452
|
-
}
|
|
453
|
-
|
|
454
336
|
localVarHeaderParameter['Accept'] = 'application/json';
|
|
455
337
|
|
|
456
|
-
if (acceptLanguage != null) {
|
|
457
|
-
localVarHeaderParameter['Accept-Language'] = typeof acceptLanguage === 'string'
|
|
458
|
-
? acceptLanguage
|
|
459
|
-
: JSON.stringify(acceptLanguage, replaceWithSerializableTypeIfNeeded);
|
|
460
|
-
}
|
|
461
338
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
462
339
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
463
340
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -471,12 +348,10 @@ export const AFNORPDPPADirectoryServiceApiAxiosParamCreator = function (configur
|
|
|
471
348
|
* Returns the details of a company (legal unit) identified by the id-instance passed as a parameter.
|
|
472
349
|
* @summary Gets a siren (legal unit) by instance ID
|
|
473
350
|
* @param {string} idInstance AFNOR instance ID (UUID)
|
|
474
|
-
* @param {Array<string> | null} [fields] Fields of the SIREN resource
|
|
475
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
476
351
|
* @param {*} [options] Override http request option.
|
|
477
352
|
* @throws {RequiredError}
|
|
478
353
|
*/
|
|
479
|
-
getSirenByIdInstanceProxyApiV1AfnorDirectoryV1SirenIdInstanceIdInstanceGet: async (idInstance: string,
|
|
354
|
+
getSirenByIdInstanceProxyApiV1AfnorDirectoryV1SirenIdInstanceIdInstanceGet: async (idInstance: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
480
355
|
// verify required parameter 'idInstance' is not null or undefined
|
|
481
356
|
assertParamExists('getSirenByIdInstanceProxyApiV1AfnorDirectoryV1SirenIdInstanceIdInstanceGet', 'idInstance', idInstance)
|
|
482
357
|
const localVarPath = `/api/v1/afnor/directory/v1/siren/id-instance:{id_instance}`
|
|
@@ -492,21 +367,8 @@ export const AFNORPDPPADirectoryServiceApiAxiosParamCreator = function (configur
|
|
|
492
367
|
const localVarHeaderParameter = {} as any;
|
|
493
368
|
const localVarQueryParameter = {} as any;
|
|
494
369
|
|
|
495
|
-
// authentication HTTPBearer required
|
|
496
|
-
// http bearer authentication required
|
|
497
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
498
|
-
|
|
499
|
-
if (fields) {
|
|
500
|
-
localVarQueryParameter['fields'] = fields;
|
|
501
|
-
}
|
|
502
|
-
|
|
503
370
|
localVarHeaderParameter['Accept'] = 'application/json';
|
|
504
371
|
|
|
505
|
-
if (acceptLanguage != null) {
|
|
506
|
-
localVarHeaderParameter['Accept-Language'] = typeof acceptLanguage === 'string'
|
|
507
|
-
? acceptLanguage
|
|
508
|
-
: JSON.stringify(acceptLanguage, replaceWithSerializableTypeIfNeeded);
|
|
509
|
-
}
|
|
510
372
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
511
373
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
512
374
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -520,13 +382,10 @@ export const AFNORPDPPADirectoryServiceApiAxiosParamCreator = function (configur
|
|
|
520
382
|
* Returns the details of a facility associated to a SIRET.
|
|
521
383
|
* @summary Gets a siret (facility) by SIRET number
|
|
522
384
|
* @param {string} siret 14-digit SIRET number (INSEE establishment identifier)
|
|
523
|
-
* @param {Array<string> | null} [fields] Fields of a SIRET resource.
|
|
524
|
-
* @param {Array<SiretInclude> | null} [include] Relations to include in the response.
|
|
525
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
526
385
|
* @param {*} [options] Override http request option.
|
|
527
386
|
* @throws {RequiredError}
|
|
528
387
|
*/
|
|
529
|
-
getSiretByCodeInseeProxyApiV1AfnorDirectoryV1SiretCodeInseeSiretGet: async (siret: string,
|
|
388
|
+
getSiretByCodeInseeProxyApiV1AfnorDirectoryV1SiretCodeInseeSiretGet: async (siret: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
530
389
|
// verify required parameter 'siret' is not null or undefined
|
|
531
390
|
assertParamExists('getSiretByCodeInseeProxyApiV1AfnorDirectoryV1SiretCodeInseeSiretGet', 'siret', siret)
|
|
532
391
|
const localVarPath = `/api/v1/afnor/directory/v1/siret/code-insee:{siret}`
|
|
@@ -542,25 +401,8 @@ export const AFNORPDPPADirectoryServiceApiAxiosParamCreator = function (configur
|
|
|
542
401
|
const localVarHeaderParameter = {} as any;
|
|
543
402
|
const localVarQueryParameter = {} as any;
|
|
544
403
|
|
|
545
|
-
// authentication HTTPBearer required
|
|
546
|
-
// http bearer authentication required
|
|
547
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
548
|
-
|
|
549
|
-
if (fields) {
|
|
550
|
-
localVarQueryParameter['fields'] = fields;
|
|
551
|
-
}
|
|
552
|
-
|
|
553
|
-
if (include) {
|
|
554
|
-
localVarQueryParameter['include'] = include;
|
|
555
|
-
}
|
|
556
|
-
|
|
557
404
|
localVarHeaderParameter['Accept'] = 'application/json';
|
|
558
405
|
|
|
559
|
-
if (acceptLanguage != null) {
|
|
560
|
-
localVarHeaderParameter['Accept-Language'] = typeof acceptLanguage === 'string'
|
|
561
|
-
? acceptLanguage
|
|
562
|
-
: JSON.stringify(acceptLanguage, replaceWithSerializableTypeIfNeeded);
|
|
563
|
-
}
|
|
564
406
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
565
407
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
566
408
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -574,12 +416,10 @@ export const AFNORPDPPADirectoryServiceApiAxiosParamCreator = function (configur
|
|
|
574
416
|
* Returns the details of a facility according to an instance-id.
|
|
575
417
|
* @summary Gets a siret (facility) by id-instance
|
|
576
418
|
* @param {string} idInstance AFNOR instance ID (UUID)
|
|
577
|
-
* @param {Array<string> | null} [fields] Fields of a SIRET resource.
|
|
578
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
579
419
|
* @param {*} [options] Override http request option.
|
|
580
420
|
* @throws {RequiredError}
|
|
581
421
|
*/
|
|
582
|
-
getSiretByIdInstanceProxyApiV1AfnorDirectoryV1SiretIdInstanceIdInstanceGet: async (idInstance: string,
|
|
422
|
+
getSiretByIdInstanceProxyApiV1AfnorDirectoryV1SiretIdInstanceIdInstanceGet: async (idInstance: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
583
423
|
// verify required parameter 'idInstance' is not null or undefined
|
|
584
424
|
assertParamExists('getSiretByIdInstanceProxyApiV1AfnorDirectoryV1SiretIdInstanceIdInstanceGet', 'idInstance', idInstance)
|
|
585
425
|
const localVarPath = `/api/v1/afnor/directory/v1/siret/id-instance:{id_instance}`
|
|
@@ -595,21 +435,8 @@ export const AFNORPDPPADirectoryServiceApiAxiosParamCreator = function (configur
|
|
|
595
435
|
const localVarHeaderParameter = {} as any;
|
|
596
436
|
const localVarQueryParameter = {} as any;
|
|
597
437
|
|
|
598
|
-
// authentication HTTPBearer required
|
|
599
|
-
// http bearer authentication required
|
|
600
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
601
|
-
|
|
602
|
-
if (fields) {
|
|
603
|
-
localVarQueryParameter['fields'] = fields;
|
|
604
|
-
}
|
|
605
|
-
|
|
606
438
|
localVarHeaderParameter['Accept'] = 'application/json';
|
|
607
439
|
|
|
608
|
-
if (acceptLanguage != null) {
|
|
609
|
-
localVarHeaderParameter['Accept-Language'] = typeof acceptLanguage === 'string'
|
|
610
|
-
? acceptLanguage
|
|
611
|
-
: JSON.stringify(acceptLanguage, replaceWithSerializableTypeIfNeeded);
|
|
612
|
-
}
|
|
613
440
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
614
441
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
615
442
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -623,11 +450,10 @@ export const AFNORPDPPADirectoryServiceApiAxiosParamCreator = function (configur
|
|
|
623
450
|
* Partially updates a directory line.
|
|
624
451
|
* @summary Partially updates a directory line..
|
|
625
452
|
* @param {string} idInstance AFNOR instance ID (UUID)
|
|
626
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
627
453
|
* @param {*} [options] Override http request option.
|
|
628
454
|
* @throws {RequiredError}
|
|
629
455
|
*/
|
|
630
|
-
patchDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstancePatch: async (idInstance: string,
|
|
456
|
+
patchDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstancePatch: async (idInstance: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
631
457
|
// verify required parameter 'idInstance' is not null or undefined
|
|
632
458
|
assertParamExists('patchDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstancePatch', 'idInstance', idInstance)
|
|
633
459
|
const localVarPath = `/api/v1/afnor/directory/v1/directory-line/id-instance:{id_instance}`
|
|
@@ -643,17 +469,8 @@ export const AFNORPDPPADirectoryServiceApiAxiosParamCreator = function (configur
|
|
|
643
469
|
const localVarHeaderParameter = {} as any;
|
|
644
470
|
const localVarQueryParameter = {} as any;
|
|
645
471
|
|
|
646
|
-
// authentication HTTPBearer required
|
|
647
|
-
// http bearer authentication required
|
|
648
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
649
|
-
|
|
650
472
|
localVarHeaderParameter['Accept'] = 'application/json';
|
|
651
473
|
|
|
652
|
-
if (acceptLanguage != null) {
|
|
653
|
-
localVarHeaderParameter['Accept-Language'] = typeof acceptLanguage === 'string'
|
|
654
|
-
? acceptLanguage
|
|
655
|
-
: JSON.stringify(acceptLanguage, replaceWithSerializableTypeIfNeeded);
|
|
656
|
-
}
|
|
657
474
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
658
475
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
659
476
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -667,11 +484,10 @@ export const AFNORPDPPADirectoryServiceApiAxiosParamCreator = function (configur
|
|
|
667
484
|
* Partially update a private routing code.
|
|
668
485
|
* @summary Partially update a private routing code.
|
|
669
486
|
* @param {string} idInstance AFNOR instance ID (UUID)
|
|
670
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
671
487
|
* @param {*} [options] Override http request option.
|
|
672
488
|
* @throws {RequiredError}
|
|
673
489
|
*/
|
|
674
|
-
patchRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstancePatch: async (idInstance: string,
|
|
490
|
+
patchRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstancePatch: async (idInstance: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
675
491
|
// verify required parameter 'idInstance' is not null or undefined
|
|
676
492
|
assertParamExists('patchRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstancePatch', 'idInstance', idInstance)
|
|
677
493
|
const localVarPath = `/api/v1/afnor/directory/v1/routing-code/id-instance:{id_instance}`
|
|
@@ -687,17 +503,8 @@ export const AFNORPDPPADirectoryServiceApiAxiosParamCreator = function (configur
|
|
|
687
503
|
const localVarHeaderParameter = {} as any;
|
|
688
504
|
const localVarQueryParameter = {} as any;
|
|
689
505
|
|
|
690
|
-
// authentication HTTPBearer required
|
|
691
|
-
// http bearer authentication required
|
|
692
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
693
|
-
|
|
694
506
|
localVarHeaderParameter['Accept'] = 'application/json';
|
|
695
507
|
|
|
696
|
-
if (acceptLanguage != null) {
|
|
697
|
-
localVarHeaderParameter['Accept-Language'] = typeof acceptLanguage === 'string'
|
|
698
|
-
? acceptLanguage
|
|
699
|
-
: JSON.stringify(acceptLanguage, replaceWithSerializableTypeIfNeeded);
|
|
700
|
-
}
|
|
701
508
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
702
509
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
703
510
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -711,11 +518,10 @@ export const AFNORPDPPADirectoryServiceApiAxiosParamCreator = function (configur
|
|
|
711
518
|
* Completely update a private routing code.
|
|
712
519
|
* @summary Completely update a private routing code.
|
|
713
520
|
* @param {string} idInstance AFNOR instance ID (UUID)
|
|
714
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
715
521
|
* @param {*} [options] Override http request option.
|
|
716
522
|
* @throws {RequiredError}
|
|
717
523
|
*/
|
|
718
|
-
putRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstancePut: async (idInstance: string,
|
|
524
|
+
putRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstancePut: async (idInstance: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
719
525
|
// verify required parameter 'idInstance' is not null or undefined
|
|
720
526
|
assertParamExists('putRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstancePut', 'idInstance', idInstance)
|
|
721
527
|
const localVarPath = `/api/v1/afnor/directory/v1/routing-code/id-instance:{id_instance}`
|
|
@@ -731,17 +537,8 @@ export const AFNORPDPPADirectoryServiceApiAxiosParamCreator = function (configur
|
|
|
731
537
|
const localVarHeaderParameter = {} as any;
|
|
732
538
|
const localVarQueryParameter = {} as any;
|
|
733
539
|
|
|
734
|
-
// authentication HTTPBearer required
|
|
735
|
-
// http bearer authentication required
|
|
736
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
737
|
-
|
|
738
540
|
localVarHeaderParameter['Accept'] = 'application/json';
|
|
739
541
|
|
|
740
|
-
if (acceptLanguage != null) {
|
|
741
|
-
localVarHeaderParameter['Accept-Language'] = typeof acceptLanguage === 'string'
|
|
742
|
-
? acceptLanguage
|
|
743
|
-
: JSON.stringify(acceptLanguage, replaceWithSerializableTypeIfNeeded);
|
|
744
|
-
}
|
|
745
542
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
746
543
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
747
544
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -754,11 +551,10 @@ export const AFNORPDPPADirectoryServiceApiAxiosParamCreator = function (configur
|
|
|
754
551
|
/**
|
|
755
552
|
* Search for directory lines that meet all the criteria passed as parameters and return the results in the desired format.
|
|
756
553
|
* @summary Search for a directory line
|
|
757
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
758
554
|
* @param {*} [options] Override http request option.
|
|
759
555
|
* @throws {RequiredError}
|
|
760
556
|
*/
|
|
761
|
-
searchDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineSearchPost: async (
|
|
557
|
+
searchDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineSearchPost: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
762
558
|
const localVarPath = `/api/v1/afnor/directory/v1/directory-line/search`;
|
|
763
559
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
764
560
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -771,17 +567,8 @@ export const AFNORPDPPADirectoryServiceApiAxiosParamCreator = function (configur
|
|
|
771
567
|
const localVarHeaderParameter = {} as any;
|
|
772
568
|
const localVarQueryParameter = {} as any;
|
|
773
569
|
|
|
774
|
-
// authentication HTTPBearer required
|
|
775
|
-
// http bearer authentication required
|
|
776
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
777
|
-
|
|
778
570
|
localVarHeaderParameter['Accept'] = 'application/json';
|
|
779
571
|
|
|
780
|
-
if (acceptLanguage != null) {
|
|
781
|
-
localVarHeaderParameter['Accept-Language'] = typeof acceptLanguage === 'string'
|
|
782
|
-
? acceptLanguage
|
|
783
|
-
: JSON.stringify(acceptLanguage, replaceWithSerializableTypeIfNeeded);
|
|
784
|
-
}
|
|
785
572
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
786
573
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
787
574
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -794,11 +581,10 @@ export const AFNORPDPPADirectoryServiceApiAxiosParamCreator = function (configur
|
|
|
794
581
|
/**
|
|
795
582
|
* Search for routing codes that meet all the criteria passed as parameters and return the routing codes in the desired format.
|
|
796
583
|
* @summary Search for a routing code
|
|
797
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
798
584
|
* @param {*} [options] Override http request option.
|
|
799
585
|
* @throws {RequiredError}
|
|
800
586
|
*/
|
|
801
|
-
searchRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeSearchPost: async (
|
|
587
|
+
searchRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeSearchPost: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
802
588
|
const localVarPath = `/api/v1/afnor/directory/v1/routing-code/search`;
|
|
803
589
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
804
590
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -811,17 +597,8 @@ export const AFNORPDPPADirectoryServiceApiAxiosParamCreator = function (configur
|
|
|
811
597
|
const localVarHeaderParameter = {} as any;
|
|
812
598
|
const localVarQueryParameter = {} as any;
|
|
813
599
|
|
|
814
|
-
// authentication HTTPBearer required
|
|
815
|
-
// http bearer authentication required
|
|
816
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
817
|
-
|
|
818
600
|
localVarHeaderParameter['Accept'] = 'application/json';
|
|
819
601
|
|
|
820
|
-
if (acceptLanguage != null) {
|
|
821
|
-
localVarHeaderParameter['Accept-Language'] = typeof acceptLanguage === 'string'
|
|
822
|
-
? acceptLanguage
|
|
823
|
-
: JSON.stringify(acceptLanguage, replaceWithSerializableTypeIfNeeded);
|
|
824
|
-
}
|
|
825
602
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
826
603
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
827
604
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -834,11 +611,10 @@ export const AFNORPDPPADirectoryServiceApiAxiosParamCreator = function (configur
|
|
|
834
611
|
/**
|
|
835
612
|
* Multi-criteria company search.
|
|
836
613
|
* @summary SIREN search (or legal unit)
|
|
837
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
838
614
|
* @param {*} [options] Override http request option.
|
|
839
615
|
* @throws {RequiredError}
|
|
840
616
|
*/
|
|
841
|
-
searchSirenProxyApiV1AfnorDirectoryV1SirenSearchPost: async (
|
|
617
|
+
searchSirenProxyApiV1AfnorDirectoryV1SirenSearchPost: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
842
618
|
const localVarPath = `/api/v1/afnor/directory/v1/siren/search`;
|
|
843
619
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
844
620
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -851,17 +627,8 @@ export const AFNORPDPPADirectoryServiceApiAxiosParamCreator = function (configur
|
|
|
851
627
|
const localVarHeaderParameter = {} as any;
|
|
852
628
|
const localVarQueryParameter = {} as any;
|
|
853
629
|
|
|
854
|
-
// authentication HTTPBearer required
|
|
855
|
-
// http bearer authentication required
|
|
856
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
857
|
-
|
|
858
630
|
localVarHeaderParameter['Accept'] = 'application/json';
|
|
859
631
|
|
|
860
|
-
if (acceptLanguage != null) {
|
|
861
|
-
localVarHeaderParameter['Accept-Language'] = typeof acceptLanguage === 'string'
|
|
862
|
-
? acceptLanguage
|
|
863
|
-
: JSON.stringify(acceptLanguage, replaceWithSerializableTypeIfNeeded);
|
|
864
|
-
}
|
|
865
632
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
866
633
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
867
634
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -874,11 +641,10 @@ export const AFNORPDPPADirectoryServiceApiAxiosParamCreator = function (configur
|
|
|
874
641
|
/**
|
|
875
642
|
* Multi-criteria search for facilities.
|
|
876
643
|
* @summary Search for a SIRET (facility)
|
|
877
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
878
644
|
* @param {*} [options] Override http request option.
|
|
879
645
|
* @throws {RequiredError}
|
|
880
646
|
*/
|
|
881
|
-
searchSiretProxyApiV1AfnorDirectoryV1SiretSearchPost: async (
|
|
647
|
+
searchSiretProxyApiV1AfnorDirectoryV1SiretSearchPost: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
882
648
|
const localVarPath = `/api/v1/afnor/directory/v1/siret/search`;
|
|
883
649
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
884
650
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -891,17 +657,8 @@ export const AFNORPDPPADirectoryServiceApiAxiosParamCreator = function (configur
|
|
|
891
657
|
const localVarHeaderParameter = {} as any;
|
|
892
658
|
const localVarQueryParameter = {} as any;
|
|
893
659
|
|
|
894
|
-
// authentication HTTPBearer required
|
|
895
|
-
// http bearer authentication required
|
|
896
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
897
|
-
|
|
898
660
|
localVarHeaderParameter['Accept'] = 'application/json';
|
|
899
661
|
|
|
900
|
-
if (acceptLanguage != null) {
|
|
901
|
-
localVarHeaderParameter['Accept-Language'] = typeof acceptLanguage === 'string'
|
|
902
|
-
? acceptLanguage
|
|
903
|
-
: JSON.stringify(acceptLanguage, replaceWithSerializableTypeIfNeeded);
|
|
904
|
-
}
|
|
905
662
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
906
663
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
907
664
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -923,12 +680,11 @@ export const AFNORPDPPADirectoryServiceApiFp = function(configuration?: Configur
|
|
|
923
680
|
/**
|
|
924
681
|
* Creation of a new directory line for a SIREN, a SIRET or a ROUTING CODE.
|
|
925
682
|
* @summary Creating a directory line
|
|
926
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
927
683
|
* @param {*} [options] Override http request option.
|
|
928
684
|
* @throws {RequiredError}
|
|
929
685
|
*/
|
|
930
|
-
async createDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLinePost(
|
|
931
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLinePost(
|
|
686
|
+
async createDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLinePost(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>> {
|
|
687
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLinePost(options);
|
|
932
688
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
933
689
|
const localVarOperationServerBasePath = operationServerMap['AFNORPDPPADirectoryServiceApi.createDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLinePost']?.[localVarOperationServerIndex]?.url;
|
|
934
690
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -936,12 +692,11 @@ export const AFNORPDPPADirectoryServiceApiFp = function(configuration?: Configur
|
|
|
936
692
|
/**
|
|
937
693
|
* Creating a routing code.
|
|
938
694
|
* @summary Create a routing code
|
|
939
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
940
695
|
* @param {*} [options] Override http request option.
|
|
941
696
|
* @throws {RequiredError}
|
|
942
697
|
*/
|
|
943
|
-
async createRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodePost(
|
|
944
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodePost(
|
|
698
|
+
async createRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodePost(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>> {
|
|
699
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodePost(options);
|
|
945
700
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
946
701
|
const localVarOperationServerBasePath = operationServerMap['AFNORPDPPADirectoryServiceApi.createRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodePost']?.[localVarOperationServerIndex]?.url;
|
|
947
702
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -950,12 +705,11 @@ export const AFNORPDPPADirectoryServiceApiFp = function(configuration?: Configur
|
|
|
950
705
|
* Delete a directory line.
|
|
951
706
|
* @summary Delete a directory line
|
|
952
707
|
* @param {string} idInstance AFNOR instance ID (UUID)
|
|
953
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
954
708
|
* @param {*} [options] Override http request option.
|
|
955
709
|
* @throws {RequiredError}
|
|
956
710
|
*/
|
|
957
|
-
async deleteDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstanceDelete(idInstance: string,
|
|
958
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstanceDelete(idInstance,
|
|
711
|
+
async deleteDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstanceDelete(idInstance: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>> {
|
|
712
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstanceDelete(idInstance, options);
|
|
959
713
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
960
714
|
const localVarOperationServerBasePath = operationServerMap['AFNORPDPPADirectoryServiceApi.deleteDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstanceDelete']?.[localVarOperationServerIndex]?.url;
|
|
961
715
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -976,14 +730,11 @@ export const AFNORPDPPADirectoryServiceApiFp = function(configuration?: Configur
|
|
|
976
730
|
* Retrieve the data from the directory line corresponding to the identifier passed in parameters.
|
|
977
731
|
* @summary Get a directory line.
|
|
978
732
|
* @param {string} addressingIdentifier Addressing identifier (SIREN, SIRET or routing code)
|
|
979
|
-
* @param {Array<string> | null} [fields] Fields of the Directory Line resource.
|
|
980
|
-
* @param {Array<DirectoryLineInclude> | null} [include] Relations to include in the response.
|
|
981
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
982
733
|
* @param {*} [options] Override http request option.
|
|
983
734
|
* @throws {RequiredError}
|
|
984
735
|
*/
|
|
985
|
-
async getDirectoryLineByCodeProxyApiV1AfnorDirectoryV1DirectoryLineCodeAddressingIdentifierGet(addressingIdentifier: string,
|
|
986
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getDirectoryLineByCodeProxyApiV1AfnorDirectoryV1DirectoryLineCodeAddressingIdentifierGet(addressingIdentifier,
|
|
736
|
+
async getDirectoryLineByCodeProxyApiV1AfnorDirectoryV1DirectoryLineCodeAddressingIdentifierGet(addressingIdentifier: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AFNORDirectoryLinePayloadHistoryLegalUnitFacilityRoutingCode>> {
|
|
737
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getDirectoryLineByCodeProxyApiV1AfnorDirectoryV1DirectoryLineCodeAddressingIdentifierGet(addressingIdentifier, options);
|
|
987
738
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
988
739
|
const localVarOperationServerBasePath = operationServerMap['AFNORPDPPADirectoryServiceApi.getDirectoryLineByCodeProxyApiV1AfnorDirectoryV1DirectoryLineCodeAddressingIdentifierGet']?.[localVarOperationServerIndex]?.url;
|
|
989
740
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -992,13 +743,11 @@ export const AFNORPDPPADirectoryServiceApiFp = function(configuration?: Configur
|
|
|
992
743
|
* Retrieve the data from the directory line corresponding to the identifier passed in parameters.
|
|
993
744
|
* @summary Get a directory line.
|
|
994
745
|
* @param {string} idInstance AFNOR instance ID (UUID)
|
|
995
|
-
* @param {Array<string> | null} [fields] Fields of the Directory Line resource.
|
|
996
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
997
746
|
* @param {*} [options] Override http request option.
|
|
998
747
|
* @throws {RequiredError}
|
|
999
748
|
*/
|
|
1000
|
-
async getDirectoryLineByIdInstanceProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstanceGet(idInstance: string,
|
|
1001
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getDirectoryLineByIdInstanceProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstanceGet(idInstance,
|
|
749
|
+
async getDirectoryLineByIdInstanceProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstanceGet(idInstance: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AFNORDirectoryLinePayloadHistoryLegalUnitFacilityRoutingCode>> {
|
|
750
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getDirectoryLineByIdInstanceProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstanceGet(idInstance, options);
|
|
1002
751
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1003
752
|
const localVarOperationServerBasePath = operationServerMap['AFNORPDPPADirectoryServiceApi.getDirectoryLineByIdInstanceProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstanceGet']?.[localVarOperationServerIndex]?.url;
|
|
1004
753
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -1007,13 +756,11 @@ export const AFNORPDPPADirectoryServiceApiFp = function(configuration?: Configur
|
|
|
1007
756
|
* Retrieve the Routing Code data corresponding to the Instance ID.
|
|
1008
757
|
* @summary Get a routing code by instance-id.
|
|
1009
758
|
* @param {string} idInstance AFNOR instance ID (UUID)
|
|
1010
|
-
* @param {Array<string> | null} [fields] Fields of the Routing Code resource
|
|
1011
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1012
759
|
* @param {*} [options] Override http request option.
|
|
1013
760
|
* @throws {RequiredError}
|
|
1014
761
|
*/
|
|
1015
|
-
async getRoutingCodeByIdInstanceProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstanceGet(idInstance: string,
|
|
1016
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getRoutingCodeByIdInstanceProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstanceGet(idInstance,
|
|
762
|
+
async getRoutingCodeByIdInstanceProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstanceGet(idInstance: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AFNORRoutingCodePayloadHistoryLegalUnitFacility>> {
|
|
763
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getRoutingCodeByIdInstanceProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstanceGet(idInstance, options);
|
|
1017
764
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1018
765
|
const localVarOperationServerBasePath = operationServerMap['AFNORPDPPADirectoryServiceApi.getRoutingCodeByIdInstanceProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstanceGet']?.[localVarOperationServerIndex]?.url;
|
|
1019
766
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -1023,14 +770,11 @@ export const AFNORPDPPADirectoryServiceApiFp = function(configuration?: Configur
|
|
|
1023
770
|
* @summary Get a routing code by SIRET and routing identifier
|
|
1024
771
|
* @param {string} siret 14-digit SIRET number (INSEE establishment identifier)
|
|
1025
772
|
* @param {string} routingIdentifier Routing code identifier
|
|
1026
|
-
* @param {Array<string> | null} [fields] Fields of the Routing Code resource
|
|
1027
|
-
* @param {Array<RoutingCodeInclude> | null} [include] Relations to include in the response.
|
|
1028
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1029
773
|
* @param {*} [options] Override http request option.
|
|
1030
774
|
* @throws {RequiredError}
|
|
1031
775
|
*/
|
|
1032
|
-
async getRoutingCodeBySiretAndCodeProxyApiV1AfnorDirectoryV1RoutingCodeSiretSiretCodeRoutingIdentifierGet(siret: string, routingIdentifier: string,
|
|
1033
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getRoutingCodeBySiretAndCodeProxyApiV1AfnorDirectoryV1RoutingCodeSiretSiretCodeRoutingIdentifierGet(siret, routingIdentifier,
|
|
776
|
+
async getRoutingCodeBySiretAndCodeProxyApiV1AfnorDirectoryV1RoutingCodeSiretSiretCodeRoutingIdentifierGet(siret: string, routingIdentifier: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AFNORRoutingCodePayloadHistoryLegalUnitFacility>> {
|
|
777
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getRoutingCodeBySiretAndCodeProxyApiV1AfnorDirectoryV1RoutingCodeSiretSiretCodeRoutingIdentifierGet(siret, routingIdentifier, options);
|
|
1034
778
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1035
779
|
const localVarOperationServerBasePath = operationServerMap['AFNORPDPPADirectoryServiceApi.getRoutingCodeBySiretAndCodeProxyApiV1AfnorDirectoryV1RoutingCodeSiretSiretCodeRoutingIdentifierGet']?.[localVarOperationServerIndex]?.url;
|
|
1036
780
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -1039,13 +783,11 @@ export const AFNORPDPPADirectoryServiceApiFp = function(configuration?: Configur
|
|
|
1039
783
|
* Returns the details of a company (legal unit) identified by the SIREN number passed as a parameter.
|
|
1040
784
|
* @summary Consult a siren (legal unit) by SIREN number
|
|
1041
785
|
* @param {string} siren 9-digit SIREN number (INSEE company identifier)
|
|
1042
|
-
* @param {Array<string> | null} [fields] Fields of the SIREN resource
|
|
1043
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1044
786
|
* @param {*} [options] Override http request option.
|
|
1045
787
|
* @throws {RequiredError}
|
|
1046
788
|
*/
|
|
1047
|
-
async getSirenByCodeInseeProxyApiV1AfnorDirectoryV1SirenCodeInseeSirenGet(siren: string,
|
|
1048
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getSirenByCodeInseeProxyApiV1AfnorDirectoryV1SirenCodeInseeSirenGet(siren,
|
|
789
|
+
async getSirenByCodeInseeProxyApiV1AfnorDirectoryV1SirenCodeInseeSirenGet(siren: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AFNORLegalUnitPayloadHistory>> {
|
|
790
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getSirenByCodeInseeProxyApiV1AfnorDirectoryV1SirenCodeInseeSirenGet(siren, options);
|
|
1049
791
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1050
792
|
const localVarOperationServerBasePath = operationServerMap['AFNORPDPPADirectoryServiceApi.getSirenByCodeInseeProxyApiV1AfnorDirectoryV1SirenCodeInseeSirenGet']?.[localVarOperationServerIndex]?.url;
|
|
1051
793
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -1054,13 +796,11 @@ export const AFNORPDPPADirectoryServiceApiFp = function(configuration?: Configur
|
|
|
1054
796
|
* Returns the details of a company (legal unit) identified by the id-instance passed as a parameter.
|
|
1055
797
|
* @summary Gets a siren (legal unit) by instance ID
|
|
1056
798
|
* @param {string} idInstance AFNOR instance ID (UUID)
|
|
1057
|
-
* @param {Array<string> | null} [fields] Fields of the SIREN resource
|
|
1058
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1059
799
|
* @param {*} [options] Override http request option.
|
|
1060
800
|
* @throws {RequiredError}
|
|
1061
801
|
*/
|
|
1062
|
-
async getSirenByIdInstanceProxyApiV1AfnorDirectoryV1SirenIdInstanceIdInstanceGet(idInstance: string,
|
|
1063
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getSirenByIdInstanceProxyApiV1AfnorDirectoryV1SirenIdInstanceIdInstanceGet(idInstance,
|
|
802
|
+
async getSirenByIdInstanceProxyApiV1AfnorDirectoryV1SirenIdInstanceIdInstanceGet(idInstance: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AFNORLegalUnitPayloadHistory>> {
|
|
803
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getSirenByIdInstanceProxyApiV1AfnorDirectoryV1SirenIdInstanceIdInstanceGet(idInstance, options);
|
|
1064
804
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1065
805
|
const localVarOperationServerBasePath = operationServerMap['AFNORPDPPADirectoryServiceApi.getSirenByIdInstanceProxyApiV1AfnorDirectoryV1SirenIdInstanceIdInstanceGet']?.[localVarOperationServerIndex]?.url;
|
|
1066
806
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -1069,14 +809,11 @@ export const AFNORPDPPADirectoryServiceApiFp = function(configuration?: Configur
|
|
|
1069
809
|
* Returns the details of a facility associated to a SIRET.
|
|
1070
810
|
* @summary Gets a siret (facility) by SIRET number
|
|
1071
811
|
* @param {string} siret 14-digit SIRET number (INSEE establishment identifier)
|
|
1072
|
-
* @param {Array<string> | null} [fields] Fields of a SIRET resource.
|
|
1073
|
-
* @param {Array<SiretInclude> | null} [include] Relations to include in the response.
|
|
1074
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1075
812
|
* @param {*} [options] Override http request option.
|
|
1076
813
|
* @throws {RequiredError}
|
|
1077
814
|
*/
|
|
1078
|
-
async getSiretByCodeInseeProxyApiV1AfnorDirectoryV1SiretCodeInseeSiretGet(siret: string,
|
|
1079
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getSiretByCodeInseeProxyApiV1AfnorDirectoryV1SiretCodeInseeSiretGet(siret,
|
|
815
|
+
async getSiretByCodeInseeProxyApiV1AfnorDirectoryV1SiretCodeInseeSiretGet(siret: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AFNORFacilityPayloadHistory>> {
|
|
816
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getSiretByCodeInseeProxyApiV1AfnorDirectoryV1SiretCodeInseeSiretGet(siret, options);
|
|
1080
817
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1081
818
|
const localVarOperationServerBasePath = operationServerMap['AFNORPDPPADirectoryServiceApi.getSiretByCodeInseeProxyApiV1AfnorDirectoryV1SiretCodeInseeSiretGet']?.[localVarOperationServerIndex]?.url;
|
|
1082
819
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -1085,13 +822,11 @@ export const AFNORPDPPADirectoryServiceApiFp = function(configuration?: Configur
|
|
|
1085
822
|
* Returns the details of a facility according to an instance-id.
|
|
1086
823
|
* @summary Gets a siret (facility) by id-instance
|
|
1087
824
|
* @param {string} idInstance AFNOR instance ID (UUID)
|
|
1088
|
-
* @param {Array<string> | null} [fields] Fields of a SIRET resource.
|
|
1089
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1090
825
|
* @param {*} [options] Override http request option.
|
|
1091
826
|
* @throws {RequiredError}
|
|
1092
827
|
*/
|
|
1093
|
-
async getSiretByIdInstanceProxyApiV1AfnorDirectoryV1SiretIdInstanceIdInstanceGet(idInstance: string,
|
|
1094
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getSiretByIdInstanceProxyApiV1AfnorDirectoryV1SiretIdInstanceIdInstanceGet(idInstance,
|
|
828
|
+
async getSiretByIdInstanceProxyApiV1AfnorDirectoryV1SiretIdInstanceIdInstanceGet(idInstance: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AFNORFacilityPayloadHistory>> {
|
|
829
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getSiretByIdInstanceProxyApiV1AfnorDirectoryV1SiretIdInstanceIdInstanceGet(idInstance, options);
|
|
1095
830
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1096
831
|
const localVarOperationServerBasePath = operationServerMap['AFNORPDPPADirectoryServiceApi.getSiretByIdInstanceProxyApiV1AfnorDirectoryV1SiretIdInstanceIdInstanceGet']?.[localVarOperationServerIndex]?.url;
|
|
1097
832
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -1100,12 +835,11 @@ export const AFNORPDPPADirectoryServiceApiFp = function(configuration?: Configur
|
|
|
1100
835
|
* Partially updates a directory line.
|
|
1101
836
|
* @summary Partially updates a directory line..
|
|
1102
837
|
* @param {string} idInstance AFNOR instance ID (UUID)
|
|
1103
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1104
838
|
* @param {*} [options] Override http request option.
|
|
1105
839
|
* @throws {RequiredError}
|
|
1106
840
|
*/
|
|
1107
|
-
async patchDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstancePatch(idInstance: string,
|
|
1108
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.patchDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstancePatch(idInstance,
|
|
841
|
+
async patchDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstancePatch(idInstance: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AFNORDirectoryLinePost201Response>> {
|
|
842
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.patchDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstancePatch(idInstance, options);
|
|
1109
843
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1110
844
|
const localVarOperationServerBasePath = operationServerMap['AFNORPDPPADirectoryServiceApi.patchDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstancePatch']?.[localVarOperationServerIndex]?.url;
|
|
1111
845
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -1114,12 +848,11 @@ export const AFNORPDPPADirectoryServiceApiFp = function(configuration?: Configur
|
|
|
1114
848
|
* Partially update a private routing code.
|
|
1115
849
|
* @summary Partially update a private routing code.
|
|
1116
850
|
* @param {string} idInstance AFNOR instance ID (UUID)
|
|
1117
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1118
851
|
* @param {*} [options] Override http request option.
|
|
1119
852
|
* @throws {RequiredError}
|
|
1120
853
|
*/
|
|
1121
|
-
async patchRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstancePatch(idInstance: string,
|
|
1122
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.patchRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstancePatch(idInstance,
|
|
854
|
+
async patchRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstancePatch(idInstance: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AFNORRoutingCodePost201Response>> {
|
|
855
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.patchRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstancePatch(idInstance, options);
|
|
1123
856
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1124
857
|
const localVarOperationServerBasePath = operationServerMap['AFNORPDPPADirectoryServiceApi.patchRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstancePatch']?.[localVarOperationServerIndex]?.url;
|
|
1125
858
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -1128,12 +861,11 @@ export const AFNORPDPPADirectoryServiceApiFp = function(configuration?: Configur
|
|
|
1128
861
|
* Completely update a private routing code.
|
|
1129
862
|
* @summary Completely update a private routing code.
|
|
1130
863
|
* @param {string} idInstance AFNOR instance ID (UUID)
|
|
1131
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1132
864
|
* @param {*} [options] Override http request option.
|
|
1133
865
|
* @throws {RequiredError}
|
|
1134
866
|
*/
|
|
1135
|
-
async putRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstancePut(idInstance: string,
|
|
1136
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.putRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstancePut(idInstance,
|
|
867
|
+
async putRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstancePut(idInstance: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AFNORRoutingCodePost201Response>> {
|
|
868
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.putRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstancePut(idInstance, options);
|
|
1137
869
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1138
870
|
const localVarOperationServerBasePath = operationServerMap['AFNORPDPPADirectoryServiceApi.putRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstancePut']?.[localVarOperationServerIndex]?.url;
|
|
1139
871
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -1141,12 +873,11 @@ export const AFNORPDPPADirectoryServiceApiFp = function(configuration?: Configur
|
|
|
1141
873
|
/**
|
|
1142
874
|
* Search for directory lines that meet all the criteria passed as parameters and return the results in the desired format.
|
|
1143
875
|
* @summary Search for a directory line
|
|
1144
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1145
876
|
* @param {*} [options] Override http request option.
|
|
1146
877
|
* @throws {RequiredError}
|
|
1147
878
|
*/
|
|
1148
|
-
async searchDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineSearchPost(
|
|
1149
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.searchDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineSearchPost(
|
|
879
|
+
async searchDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineSearchPost(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AFNORDirectoryLineSearchPost200Response>> {
|
|
880
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.searchDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineSearchPost(options);
|
|
1150
881
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1151
882
|
const localVarOperationServerBasePath = operationServerMap['AFNORPDPPADirectoryServiceApi.searchDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineSearchPost']?.[localVarOperationServerIndex]?.url;
|
|
1152
883
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -1154,12 +885,11 @@ export const AFNORPDPPADirectoryServiceApiFp = function(configuration?: Configur
|
|
|
1154
885
|
/**
|
|
1155
886
|
* Search for routing codes that meet all the criteria passed as parameters and return the routing codes in the desired format.
|
|
1156
887
|
* @summary Search for a routing code
|
|
1157
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1158
888
|
* @param {*} [options] Override http request option.
|
|
1159
889
|
* @throws {RequiredError}
|
|
1160
890
|
*/
|
|
1161
|
-
async searchRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeSearchPost(
|
|
1162
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.searchRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeSearchPost(
|
|
891
|
+
async searchRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeSearchPost(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AFNORRoutingCodeSearchPost200Response>> {
|
|
892
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.searchRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeSearchPost(options);
|
|
1163
893
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1164
894
|
const localVarOperationServerBasePath = operationServerMap['AFNORPDPPADirectoryServiceApi.searchRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeSearchPost']?.[localVarOperationServerIndex]?.url;
|
|
1165
895
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -1167,12 +897,11 @@ export const AFNORPDPPADirectoryServiceApiFp = function(configuration?: Configur
|
|
|
1167
897
|
/**
|
|
1168
898
|
* Multi-criteria company search.
|
|
1169
899
|
* @summary SIREN search (or legal unit)
|
|
1170
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1171
900
|
* @param {*} [options] Override http request option.
|
|
1172
901
|
* @throws {RequiredError}
|
|
1173
902
|
*/
|
|
1174
|
-
async searchSirenProxyApiV1AfnorDirectoryV1SirenSearchPost(
|
|
1175
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.searchSirenProxyApiV1AfnorDirectoryV1SirenSearchPost(
|
|
903
|
+
async searchSirenProxyApiV1AfnorDirectoryV1SirenSearchPost(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AFNORSirenSearchPost200Response>> {
|
|
904
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.searchSirenProxyApiV1AfnorDirectoryV1SirenSearchPost(options);
|
|
1176
905
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1177
906
|
const localVarOperationServerBasePath = operationServerMap['AFNORPDPPADirectoryServiceApi.searchSirenProxyApiV1AfnorDirectoryV1SirenSearchPost']?.[localVarOperationServerIndex]?.url;
|
|
1178
907
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -1180,12 +909,11 @@ export const AFNORPDPPADirectoryServiceApiFp = function(configuration?: Configur
|
|
|
1180
909
|
/**
|
|
1181
910
|
* Multi-criteria search for facilities.
|
|
1182
911
|
* @summary Search for a SIRET (facility)
|
|
1183
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1184
912
|
* @param {*} [options] Override http request option.
|
|
1185
913
|
* @throws {RequiredError}
|
|
1186
914
|
*/
|
|
1187
|
-
async searchSiretProxyApiV1AfnorDirectoryV1SiretSearchPost(
|
|
1188
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.searchSiretProxyApiV1AfnorDirectoryV1SiretSearchPost(
|
|
915
|
+
async searchSiretProxyApiV1AfnorDirectoryV1SiretSearchPost(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AFNORSiretSearchPost200Response>> {
|
|
916
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.searchSiretProxyApiV1AfnorDirectoryV1SiretSearchPost(options);
|
|
1189
917
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1190
918
|
const localVarOperationServerBasePath = operationServerMap['AFNORPDPPADirectoryServiceApi.searchSiretProxyApiV1AfnorDirectoryV1SiretSearchPost']?.[localVarOperationServerIndex]?.url;
|
|
1191
919
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -1202,33 +930,30 @@ export const AFNORPDPPADirectoryServiceApiFactory = function (configuration?: Co
|
|
|
1202
930
|
/**
|
|
1203
931
|
* Creation of a new directory line for a SIREN, a SIRET or a ROUTING CODE.
|
|
1204
932
|
* @summary Creating a directory line
|
|
1205
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1206
933
|
* @param {*} [options] Override http request option.
|
|
1207
934
|
* @throws {RequiredError}
|
|
1208
935
|
*/
|
|
1209
|
-
createDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLinePost(
|
|
1210
|
-
return localVarFp.createDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLinePost(
|
|
936
|
+
createDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLinePost(options?: RawAxiosRequestConfig): AxiosPromise<any> {
|
|
937
|
+
return localVarFp.createDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLinePost(options).then((request) => request(axios, basePath));
|
|
1211
938
|
},
|
|
1212
939
|
/**
|
|
1213
940
|
* Creating a routing code.
|
|
1214
941
|
* @summary Create a routing code
|
|
1215
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1216
942
|
* @param {*} [options] Override http request option.
|
|
1217
943
|
* @throws {RequiredError}
|
|
1218
944
|
*/
|
|
1219
|
-
createRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodePost(
|
|
1220
|
-
return localVarFp.createRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodePost(
|
|
945
|
+
createRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodePost(options?: RawAxiosRequestConfig): AxiosPromise<any> {
|
|
946
|
+
return localVarFp.createRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodePost(options).then((request) => request(axios, basePath));
|
|
1221
947
|
},
|
|
1222
948
|
/**
|
|
1223
949
|
* Delete a directory line.
|
|
1224
950
|
* @summary Delete a directory line
|
|
1225
951
|
* @param {string} idInstance AFNOR instance ID (UUID)
|
|
1226
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1227
952
|
* @param {*} [options] Override http request option.
|
|
1228
953
|
* @throws {RequiredError}
|
|
1229
954
|
*/
|
|
1230
|
-
deleteDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstanceDelete(idInstance: string,
|
|
1231
|
-
return localVarFp.deleteDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstanceDelete(idInstance,
|
|
955
|
+
deleteDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstanceDelete(idInstance: string, options?: RawAxiosRequestConfig): AxiosPromise<any> {
|
|
956
|
+
return localVarFp.deleteDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstanceDelete(idInstance, options).then((request) => request(axios, basePath));
|
|
1232
957
|
},
|
|
1233
958
|
/**
|
|
1234
959
|
* Check Directory Service availability (AFNOR XP Z12-013 compliant)
|
|
@@ -1243,174 +968,148 @@ export const AFNORPDPPADirectoryServiceApiFactory = function (configuration?: Co
|
|
|
1243
968
|
* Retrieve the data from the directory line corresponding to the identifier passed in parameters.
|
|
1244
969
|
* @summary Get a directory line.
|
|
1245
970
|
* @param {string} addressingIdentifier Addressing identifier (SIREN, SIRET or routing code)
|
|
1246
|
-
* @param {Array<string> | null} [fields] Fields of the Directory Line resource.
|
|
1247
|
-
* @param {Array<DirectoryLineInclude> | null} [include] Relations to include in the response.
|
|
1248
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1249
971
|
* @param {*} [options] Override http request option.
|
|
1250
972
|
* @throws {RequiredError}
|
|
1251
973
|
*/
|
|
1252
|
-
getDirectoryLineByCodeProxyApiV1AfnorDirectoryV1DirectoryLineCodeAddressingIdentifierGet(addressingIdentifier: string,
|
|
1253
|
-
return localVarFp.getDirectoryLineByCodeProxyApiV1AfnorDirectoryV1DirectoryLineCodeAddressingIdentifierGet(addressingIdentifier,
|
|
974
|
+
getDirectoryLineByCodeProxyApiV1AfnorDirectoryV1DirectoryLineCodeAddressingIdentifierGet(addressingIdentifier: string, options?: RawAxiosRequestConfig): AxiosPromise<AFNORDirectoryLinePayloadHistoryLegalUnitFacilityRoutingCode> {
|
|
975
|
+
return localVarFp.getDirectoryLineByCodeProxyApiV1AfnorDirectoryV1DirectoryLineCodeAddressingIdentifierGet(addressingIdentifier, options).then((request) => request(axios, basePath));
|
|
1254
976
|
},
|
|
1255
977
|
/**
|
|
1256
978
|
* Retrieve the data from the directory line corresponding to the identifier passed in parameters.
|
|
1257
979
|
* @summary Get a directory line.
|
|
1258
980
|
* @param {string} idInstance AFNOR instance ID (UUID)
|
|
1259
|
-
* @param {Array<string> | null} [fields] Fields of the Directory Line resource.
|
|
1260
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1261
981
|
* @param {*} [options] Override http request option.
|
|
1262
982
|
* @throws {RequiredError}
|
|
1263
983
|
*/
|
|
1264
|
-
getDirectoryLineByIdInstanceProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstanceGet(idInstance: string,
|
|
1265
|
-
return localVarFp.getDirectoryLineByIdInstanceProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstanceGet(idInstance,
|
|
984
|
+
getDirectoryLineByIdInstanceProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstanceGet(idInstance: string, options?: RawAxiosRequestConfig): AxiosPromise<AFNORDirectoryLinePayloadHistoryLegalUnitFacilityRoutingCode> {
|
|
985
|
+
return localVarFp.getDirectoryLineByIdInstanceProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstanceGet(idInstance, options).then((request) => request(axios, basePath));
|
|
1266
986
|
},
|
|
1267
987
|
/**
|
|
1268
988
|
* Retrieve the Routing Code data corresponding to the Instance ID.
|
|
1269
989
|
* @summary Get a routing code by instance-id.
|
|
1270
990
|
* @param {string} idInstance AFNOR instance ID (UUID)
|
|
1271
|
-
* @param {Array<string> | null} [fields] Fields of the Routing Code resource
|
|
1272
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1273
991
|
* @param {*} [options] Override http request option.
|
|
1274
992
|
* @throws {RequiredError}
|
|
1275
993
|
*/
|
|
1276
|
-
getRoutingCodeByIdInstanceProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstanceGet(idInstance: string,
|
|
1277
|
-
return localVarFp.getRoutingCodeByIdInstanceProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstanceGet(idInstance,
|
|
994
|
+
getRoutingCodeByIdInstanceProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstanceGet(idInstance: string, options?: RawAxiosRequestConfig): AxiosPromise<AFNORRoutingCodePayloadHistoryLegalUnitFacility> {
|
|
995
|
+
return localVarFp.getRoutingCodeByIdInstanceProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstanceGet(idInstance, options).then((request) => request(axios, basePath));
|
|
1278
996
|
},
|
|
1279
997
|
/**
|
|
1280
998
|
* Retrieve the Routing Code data corresponding to the identifier passed in parameters.
|
|
1281
999
|
* @summary Get a routing code by SIRET and routing identifier
|
|
1282
1000
|
* @param {string} siret 14-digit SIRET number (INSEE establishment identifier)
|
|
1283
1001
|
* @param {string} routingIdentifier Routing code identifier
|
|
1284
|
-
* @param {Array<string> | null} [fields] Fields of the Routing Code resource
|
|
1285
|
-
* @param {Array<RoutingCodeInclude> | null} [include] Relations to include in the response.
|
|
1286
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1287
1002
|
* @param {*} [options] Override http request option.
|
|
1288
1003
|
* @throws {RequiredError}
|
|
1289
1004
|
*/
|
|
1290
|
-
getRoutingCodeBySiretAndCodeProxyApiV1AfnorDirectoryV1RoutingCodeSiretSiretCodeRoutingIdentifierGet(siret: string, routingIdentifier: string,
|
|
1291
|
-
return localVarFp.getRoutingCodeBySiretAndCodeProxyApiV1AfnorDirectoryV1RoutingCodeSiretSiretCodeRoutingIdentifierGet(siret, routingIdentifier,
|
|
1005
|
+
getRoutingCodeBySiretAndCodeProxyApiV1AfnorDirectoryV1RoutingCodeSiretSiretCodeRoutingIdentifierGet(siret: string, routingIdentifier: string, options?: RawAxiosRequestConfig): AxiosPromise<AFNORRoutingCodePayloadHistoryLegalUnitFacility> {
|
|
1006
|
+
return localVarFp.getRoutingCodeBySiretAndCodeProxyApiV1AfnorDirectoryV1RoutingCodeSiretSiretCodeRoutingIdentifierGet(siret, routingIdentifier, options).then((request) => request(axios, basePath));
|
|
1292
1007
|
},
|
|
1293
1008
|
/**
|
|
1294
1009
|
* Returns the details of a company (legal unit) identified by the SIREN number passed as a parameter.
|
|
1295
1010
|
* @summary Consult a siren (legal unit) by SIREN number
|
|
1296
1011
|
* @param {string} siren 9-digit SIREN number (INSEE company identifier)
|
|
1297
|
-
* @param {Array<string> | null} [fields] Fields of the SIREN resource
|
|
1298
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1299
1012
|
* @param {*} [options] Override http request option.
|
|
1300
1013
|
* @throws {RequiredError}
|
|
1301
1014
|
*/
|
|
1302
|
-
getSirenByCodeInseeProxyApiV1AfnorDirectoryV1SirenCodeInseeSirenGet(siren: string,
|
|
1303
|
-
return localVarFp.getSirenByCodeInseeProxyApiV1AfnorDirectoryV1SirenCodeInseeSirenGet(siren,
|
|
1015
|
+
getSirenByCodeInseeProxyApiV1AfnorDirectoryV1SirenCodeInseeSirenGet(siren: string, options?: RawAxiosRequestConfig): AxiosPromise<AFNORLegalUnitPayloadHistory> {
|
|
1016
|
+
return localVarFp.getSirenByCodeInseeProxyApiV1AfnorDirectoryV1SirenCodeInseeSirenGet(siren, options).then((request) => request(axios, basePath));
|
|
1304
1017
|
},
|
|
1305
1018
|
/**
|
|
1306
1019
|
* Returns the details of a company (legal unit) identified by the id-instance passed as a parameter.
|
|
1307
1020
|
* @summary Gets a siren (legal unit) by instance ID
|
|
1308
1021
|
* @param {string} idInstance AFNOR instance ID (UUID)
|
|
1309
|
-
* @param {Array<string> | null} [fields] Fields of the SIREN resource
|
|
1310
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1311
1022
|
* @param {*} [options] Override http request option.
|
|
1312
1023
|
* @throws {RequiredError}
|
|
1313
1024
|
*/
|
|
1314
|
-
getSirenByIdInstanceProxyApiV1AfnorDirectoryV1SirenIdInstanceIdInstanceGet(idInstance: string,
|
|
1315
|
-
return localVarFp.getSirenByIdInstanceProxyApiV1AfnorDirectoryV1SirenIdInstanceIdInstanceGet(idInstance,
|
|
1025
|
+
getSirenByIdInstanceProxyApiV1AfnorDirectoryV1SirenIdInstanceIdInstanceGet(idInstance: string, options?: RawAxiosRequestConfig): AxiosPromise<AFNORLegalUnitPayloadHistory> {
|
|
1026
|
+
return localVarFp.getSirenByIdInstanceProxyApiV1AfnorDirectoryV1SirenIdInstanceIdInstanceGet(idInstance, options).then((request) => request(axios, basePath));
|
|
1316
1027
|
},
|
|
1317
1028
|
/**
|
|
1318
1029
|
* Returns the details of a facility associated to a SIRET.
|
|
1319
1030
|
* @summary Gets a siret (facility) by SIRET number
|
|
1320
1031
|
* @param {string} siret 14-digit SIRET number (INSEE establishment identifier)
|
|
1321
|
-
* @param {Array<string> | null} [fields] Fields of a SIRET resource.
|
|
1322
|
-
* @param {Array<SiretInclude> | null} [include] Relations to include in the response.
|
|
1323
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1324
1032
|
* @param {*} [options] Override http request option.
|
|
1325
1033
|
* @throws {RequiredError}
|
|
1326
1034
|
*/
|
|
1327
|
-
getSiretByCodeInseeProxyApiV1AfnorDirectoryV1SiretCodeInseeSiretGet(siret: string,
|
|
1328
|
-
return localVarFp.getSiretByCodeInseeProxyApiV1AfnorDirectoryV1SiretCodeInseeSiretGet(siret,
|
|
1035
|
+
getSiretByCodeInseeProxyApiV1AfnorDirectoryV1SiretCodeInseeSiretGet(siret: string, options?: RawAxiosRequestConfig): AxiosPromise<AFNORFacilityPayloadHistory> {
|
|
1036
|
+
return localVarFp.getSiretByCodeInseeProxyApiV1AfnorDirectoryV1SiretCodeInseeSiretGet(siret, options).then((request) => request(axios, basePath));
|
|
1329
1037
|
},
|
|
1330
1038
|
/**
|
|
1331
1039
|
* Returns the details of a facility according to an instance-id.
|
|
1332
1040
|
* @summary Gets a siret (facility) by id-instance
|
|
1333
1041
|
* @param {string} idInstance AFNOR instance ID (UUID)
|
|
1334
|
-
* @param {Array<string> | null} [fields] Fields of a SIRET resource.
|
|
1335
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1336
1042
|
* @param {*} [options] Override http request option.
|
|
1337
1043
|
* @throws {RequiredError}
|
|
1338
1044
|
*/
|
|
1339
|
-
getSiretByIdInstanceProxyApiV1AfnorDirectoryV1SiretIdInstanceIdInstanceGet(idInstance: string,
|
|
1340
|
-
return localVarFp.getSiretByIdInstanceProxyApiV1AfnorDirectoryV1SiretIdInstanceIdInstanceGet(idInstance,
|
|
1045
|
+
getSiretByIdInstanceProxyApiV1AfnorDirectoryV1SiretIdInstanceIdInstanceGet(idInstance: string, options?: RawAxiosRequestConfig): AxiosPromise<AFNORFacilityPayloadHistory> {
|
|
1046
|
+
return localVarFp.getSiretByIdInstanceProxyApiV1AfnorDirectoryV1SiretIdInstanceIdInstanceGet(idInstance, options).then((request) => request(axios, basePath));
|
|
1341
1047
|
},
|
|
1342
1048
|
/**
|
|
1343
1049
|
* Partially updates a directory line.
|
|
1344
1050
|
* @summary Partially updates a directory line..
|
|
1345
1051
|
* @param {string} idInstance AFNOR instance ID (UUID)
|
|
1346
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1347
1052
|
* @param {*} [options] Override http request option.
|
|
1348
1053
|
* @throws {RequiredError}
|
|
1349
1054
|
*/
|
|
1350
|
-
patchDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstancePatch(idInstance: string,
|
|
1351
|
-
return localVarFp.patchDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstancePatch(idInstance,
|
|
1055
|
+
patchDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstancePatch(idInstance: string, options?: RawAxiosRequestConfig): AxiosPromise<AFNORDirectoryLinePost201Response> {
|
|
1056
|
+
return localVarFp.patchDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstancePatch(idInstance, options).then((request) => request(axios, basePath));
|
|
1352
1057
|
},
|
|
1353
1058
|
/**
|
|
1354
1059
|
* Partially update a private routing code.
|
|
1355
1060
|
* @summary Partially update a private routing code.
|
|
1356
1061
|
* @param {string} idInstance AFNOR instance ID (UUID)
|
|
1357
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1358
1062
|
* @param {*} [options] Override http request option.
|
|
1359
1063
|
* @throws {RequiredError}
|
|
1360
1064
|
*/
|
|
1361
|
-
patchRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstancePatch(idInstance: string,
|
|
1362
|
-
return localVarFp.patchRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstancePatch(idInstance,
|
|
1065
|
+
patchRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstancePatch(idInstance: string, options?: RawAxiosRequestConfig): AxiosPromise<AFNORRoutingCodePost201Response> {
|
|
1066
|
+
return localVarFp.patchRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstancePatch(idInstance, options).then((request) => request(axios, basePath));
|
|
1363
1067
|
},
|
|
1364
1068
|
/**
|
|
1365
1069
|
* Completely update a private routing code.
|
|
1366
1070
|
* @summary Completely update a private routing code.
|
|
1367
1071
|
* @param {string} idInstance AFNOR instance ID (UUID)
|
|
1368
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1369
1072
|
* @param {*} [options] Override http request option.
|
|
1370
1073
|
* @throws {RequiredError}
|
|
1371
1074
|
*/
|
|
1372
|
-
putRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstancePut(idInstance: string,
|
|
1373
|
-
return localVarFp.putRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstancePut(idInstance,
|
|
1075
|
+
putRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstancePut(idInstance: string, options?: RawAxiosRequestConfig): AxiosPromise<AFNORRoutingCodePost201Response> {
|
|
1076
|
+
return localVarFp.putRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstancePut(idInstance, options).then((request) => request(axios, basePath));
|
|
1374
1077
|
},
|
|
1375
1078
|
/**
|
|
1376
1079
|
* Search for directory lines that meet all the criteria passed as parameters and return the results in the desired format.
|
|
1377
1080
|
* @summary Search for a directory line
|
|
1378
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1379
1081
|
* @param {*} [options] Override http request option.
|
|
1380
1082
|
* @throws {RequiredError}
|
|
1381
1083
|
*/
|
|
1382
|
-
searchDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineSearchPost(
|
|
1383
|
-
return localVarFp.searchDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineSearchPost(
|
|
1084
|
+
searchDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineSearchPost(options?: RawAxiosRequestConfig): AxiosPromise<AFNORDirectoryLineSearchPost200Response> {
|
|
1085
|
+
return localVarFp.searchDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineSearchPost(options).then((request) => request(axios, basePath));
|
|
1384
1086
|
},
|
|
1385
1087
|
/**
|
|
1386
1088
|
* Search for routing codes that meet all the criteria passed as parameters and return the routing codes in the desired format.
|
|
1387
1089
|
* @summary Search for a routing code
|
|
1388
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1389
1090
|
* @param {*} [options] Override http request option.
|
|
1390
1091
|
* @throws {RequiredError}
|
|
1391
1092
|
*/
|
|
1392
|
-
searchRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeSearchPost(
|
|
1393
|
-
return localVarFp.searchRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeSearchPost(
|
|
1093
|
+
searchRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeSearchPost(options?: RawAxiosRequestConfig): AxiosPromise<AFNORRoutingCodeSearchPost200Response> {
|
|
1094
|
+
return localVarFp.searchRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeSearchPost(options).then((request) => request(axios, basePath));
|
|
1394
1095
|
},
|
|
1395
1096
|
/**
|
|
1396
1097
|
* Multi-criteria company search.
|
|
1397
1098
|
* @summary SIREN search (or legal unit)
|
|
1398
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1399
1099
|
* @param {*} [options] Override http request option.
|
|
1400
1100
|
* @throws {RequiredError}
|
|
1401
1101
|
*/
|
|
1402
|
-
searchSirenProxyApiV1AfnorDirectoryV1SirenSearchPost(
|
|
1403
|
-
return localVarFp.searchSirenProxyApiV1AfnorDirectoryV1SirenSearchPost(
|
|
1102
|
+
searchSirenProxyApiV1AfnorDirectoryV1SirenSearchPost(options?: RawAxiosRequestConfig): AxiosPromise<AFNORSirenSearchPost200Response> {
|
|
1103
|
+
return localVarFp.searchSirenProxyApiV1AfnorDirectoryV1SirenSearchPost(options).then((request) => request(axios, basePath));
|
|
1404
1104
|
},
|
|
1405
1105
|
/**
|
|
1406
1106
|
* Multi-criteria search for facilities.
|
|
1407
1107
|
* @summary Search for a SIRET (facility)
|
|
1408
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1409
1108
|
* @param {*} [options] Override http request option.
|
|
1410
1109
|
* @throws {RequiredError}
|
|
1411
1110
|
*/
|
|
1412
|
-
searchSiretProxyApiV1AfnorDirectoryV1SiretSearchPost(
|
|
1413
|
-
return localVarFp.searchSiretProxyApiV1AfnorDirectoryV1SiretSearchPost(
|
|
1111
|
+
searchSiretProxyApiV1AfnorDirectoryV1SiretSearchPost(options?: RawAxiosRequestConfig): AxiosPromise<AFNORSiretSearchPost200Response> {
|
|
1112
|
+
return localVarFp.searchSiretProxyApiV1AfnorDirectoryV1SiretSearchPost(options).then((request) => request(axios, basePath));
|
|
1414
1113
|
},
|
|
1415
1114
|
};
|
|
1416
1115
|
};
|
|
@@ -1422,35 +1121,32 @@ export class AFNORPDPPADirectoryServiceApi extends BaseAPI {
|
|
|
1422
1121
|
/**
|
|
1423
1122
|
* Creation of a new directory line for a SIREN, a SIRET or a ROUTING CODE.
|
|
1424
1123
|
* @summary Creating a directory line
|
|
1425
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1426
1124
|
* @param {*} [options] Override http request option.
|
|
1427
1125
|
* @throws {RequiredError}
|
|
1428
1126
|
*/
|
|
1429
|
-
public createDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLinePost(
|
|
1430
|
-
return AFNORPDPPADirectoryServiceApiFp(this.configuration).createDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLinePost(
|
|
1127
|
+
public createDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLinePost(options?: RawAxiosRequestConfig) {
|
|
1128
|
+
return AFNORPDPPADirectoryServiceApiFp(this.configuration).createDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLinePost(options).then((request) => request(this.axios, this.basePath));
|
|
1431
1129
|
}
|
|
1432
1130
|
|
|
1433
1131
|
/**
|
|
1434
1132
|
* Creating a routing code.
|
|
1435
1133
|
* @summary Create a routing code
|
|
1436
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1437
1134
|
* @param {*} [options] Override http request option.
|
|
1438
1135
|
* @throws {RequiredError}
|
|
1439
1136
|
*/
|
|
1440
|
-
public createRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodePost(
|
|
1441
|
-
return AFNORPDPPADirectoryServiceApiFp(this.configuration).createRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodePost(
|
|
1137
|
+
public createRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodePost(options?: RawAxiosRequestConfig) {
|
|
1138
|
+
return AFNORPDPPADirectoryServiceApiFp(this.configuration).createRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodePost(options).then((request) => request(this.axios, this.basePath));
|
|
1442
1139
|
}
|
|
1443
1140
|
|
|
1444
1141
|
/**
|
|
1445
1142
|
* Delete a directory line.
|
|
1446
1143
|
* @summary Delete a directory line
|
|
1447
1144
|
* @param {string} idInstance AFNOR instance ID (UUID)
|
|
1448
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1449
1145
|
* @param {*} [options] Override http request option.
|
|
1450
1146
|
* @throws {RequiredError}
|
|
1451
1147
|
*/
|
|
1452
|
-
public deleteDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstanceDelete(idInstance: string,
|
|
1453
|
-
return AFNORPDPPADirectoryServiceApiFp(this.configuration).deleteDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstanceDelete(idInstance,
|
|
1148
|
+
public deleteDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstanceDelete(idInstance: string, options?: RawAxiosRequestConfig) {
|
|
1149
|
+
return AFNORPDPPADirectoryServiceApiFp(this.configuration).deleteDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstanceDelete(idInstance, options).then((request) => request(this.axios, this.basePath));
|
|
1454
1150
|
}
|
|
1455
1151
|
|
|
1456
1152
|
/**
|
|
@@ -1467,40 +1163,33 @@ export class AFNORPDPPADirectoryServiceApi extends BaseAPI {
|
|
|
1467
1163
|
* Retrieve the data from the directory line corresponding to the identifier passed in parameters.
|
|
1468
1164
|
* @summary Get a directory line.
|
|
1469
1165
|
* @param {string} addressingIdentifier Addressing identifier (SIREN, SIRET or routing code)
|
|
1470
|
-
* @param {Array<string> | null} [fields] Fields of the Directory Line resource.
|
|
1471
|
-
* @param {Array<DirectoryLineInclude> | null} [include] Relations to include in the response.
|
|
1472
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1473
1166
|
* @param {*} [options] Override http request option.
|
|
1474
1167
|
* @throws {RequiredError}
|
|
1475
1168
|
*/
|
|
1476
|
-
public getDirectoryLineByCodeProxyApiV1AfnorDirectoryV1DirectoryLineCodeAddressingIdentifierGet(addressingIdentifier: string,
|
|
1477
|
-
return AFNORPDPPADirectoryServiceApiFp(this.configuration).getDirectoryLineByCodeProxyApiV1AfnorDirectoryV1DirectoryLineCodeAddressingIdentifierGet(addressingIdentifier,
|
|
1169
|
+
public getDirectoryLineByCodeProxyApiV1AfnorDirectoryV1DirectoryLineCodeAddressingIdentifierGet(addressingIdentifier: string, options?: RawAxiosRequestConfig) {
|
|
1170
|
+
return AFNORPDPPADirectoryServiceApiFp(this.configuration).getDirectoryLineByCodeProxyApiV1AfnorDirectoryV1DirectoryLineCodeAddressingIdentifierGet(addressingIdentifier, options).then((request) => request(this.axios, this.basePath));
|
|
1478
1171
|
}
|
|
1479
1172
|
|
|
1480
1173
|
/**
|
|
1481
1174
|
* Retrieve the data from the directory line corresponding to the identifier passed in parameters.
|
|
1482
1175
|
* @summary Get a directory line.
|
|
1483
1176
|
* @param {string} idInstance AFNOR instance ID (UUID)
|
|
1484
|
-
* @param {Array<string> | null} [fields] Fields of the Directory Line resource.
|
|
1485
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1486
1177
|
* @param {*} [options] Override http request option.
|
|
1487
1178
|
* @throws {RequiredError}
|
|
1488
1179
|
*/
|
|
1489
|
-
public getDirectoryLineByIdInstanceProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstanceGet(idInstance: string,
|
|
1490
|
-
return AFNORPDPPADirectoryServiceApiFp(this.configuration).getDirectoryLineByIdInstanceProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstanceGet(idInstance,
|
|
1180
|
+
public getDirectoryLineByIdInstanceProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstanceGet(idInstance: string, options?: RawAxiosRequestConfig) {
|
|
1181
|
+
return AFNORPDPPADirectoryServiceApiFp(this.configuration).getDirectoryLineByIdInstanceProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstanceGet(idInstance, options).then((request) => request(this.axios, this.basePath));
|
|
1491
1182
|
}
|
|
1492
1183
|
|
|
1493
1184
|
/**
|
|
1494
1185
|
* Retrieve the Routing Code data corresponding to the Instance ID.
|
|
1495
1186
|
* @summary Get a routing code by instance-id.
|
|
1496
1187
|
* @param {string} idInstance AFNOR instance ID (UUID)
|
|
1497
|
-
* @param {Array<string> | null} [fields] Fields of the Routing Code resource
|
|
1498
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1499
1188
|
* @param {*} [options] Override http request option.
|
|
1500
1189
|
* @throws {RequiredError}
|
|
1501
1190
|
*/
|
|
1502
|
-
public getRoutingCodeByIdInstanceProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstanceGet(idInstance: string,
|
|
1503
|
-
return AFNORPDPPADirectoryServiceApiFp(this.configuration).getRoutingCodeByIdInstanceProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstanceGet(idInstance,
|
|
1191
|
+
public getRoutingCodeByIdInstanceProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstanceGet(idInstance: string, options?: RawAxiosRequestConfig) {
|
|
1192
|
+
return AFNORPDPPADirectoryServiceApiFp(this.configuration).getRoutingCodeByIdInstanceProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstanceGet(idInstance, options).then((request) => request(this.axios, this.basePath));
|
|
1504
1193
|
}
|
|
1505
1194
|
|
|
1506
1195
|
/**
|
|
@@ -1508,147 +1197,128 @@ export class AFNORPDPPADirectoryServiceApi extends BaseAPI {
|
|
|
1508
1197
|
* @summary Get a routing code by SIRET and routing identifier
|
|
1509
1198
|
* @param {string} siret 14-digit SIRET number (INSEE establishment identifier)
|
|
1510
1199
|
* @param {string} routingIdentifier Routing code identifier
|
|
1511
|
-
* @param {Array<string> | null} [fields] Fields of the Routing Code resource
|
|
1512
|
-
* @param {Array<RoutingCodeInclude> | null} [include] Relations to include in the response.
|
|
1513
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1514
1200
|
* @param {*} [options] Override http request option.
|
|
1515
1201
|
* @throws {RequiredError}
|
|
1516
1202
|
*/
|
|
1517
|
-
public getRoutingCodeBySiretAndCodeProxyApiV1AfnorDirectoryV1RoutingCodeSiretSiretCodeRoutingIdentifierGet(siret: string, routingIdentifier: string,
|
|
1518
|
-
return AFNORPDPPADirectoryServiceApiFp(this.configuration).getRoutingCodeBySiretAndCodeProxyApiV1AfnorDirectoryV1RoutingCodeSiretSiretCodeRoutingIdentifierGet(siret, routingIdentifier,
|
|
1203
|
+
public getRoutingCodeBySiretAndCodeProxyApiV1AfnorDirectoryV1RoutingCodeSiretSiretCodeRoutingIdentifierGet(siret: string, routingIdentifier: string, options?: RawAxiosRequestConfig) {
|
|
1204
|
+
return AFNORPDPPADirectoryServiceApiFp(this.configuration).getRoutingCodeBySiretAndCodeProxyApiV1AfnorDirectoryV1RoutingCodeSiretSiretCodeRoutingIdentifierGet(siret, routingIdentifier, options).then((request) => request(this.axios, this.basePath));
|
|
1519
1205
|
}
|
|
1520
1206
|
|
|
1521
1207
|
/**
|
|
1522
1208
|
* Returns the details of a company (legal unit) identified by the SIREN number passed as a parameter.
|
|
1523
1209
|
* @summary Consult a siren (legal unit) by SIREN number
|
|
1524
1210
|
* @param {string} siren 9-digit SIREN number (INSEE company identifier)
|
|
1525
|
-
* @param {Array<string> | null} [fields] Fields of the SIREN resource
|
|
1526
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1527
1211
|
* @param {*} [options] Override http request option.
|
|
1528
1212
|
* @throws {RequiredError}
|
|
1529
1213
|
*/
|
|
1530
|
-
public getSirenByCodeInseeProxyApiV1AfnorDirectoryV1SirenCodeInseeSirenGet(siren: string,
|
|
1531
|
-
return AFNORPDPPADirectoryServiceApiFp(this.configuration).getSirenByCodeInseeProxyApiV1AfnorDirectoryV1SirenCodeInseeSirenGet(siren,
|
|
1214
|
+
public getSirenByCodeInseeProxyApiV1AfnorDirectoryV1SirenCodeInseeSirenGet(siren: string, options?: RawAxiosRequestConfig) {
|
|
1215
|
+
return AFNORPDPPADirectoryServiceApiFp(this.configuration).getSirenByCodeInseeProxyApiV1AfnorDirectoryV1SirenCodeInseeSirenGet(siren, options).then((request) => request(this.axios, this.basePath));
|
|
1532
1216
|
}
|
|
1533
1217
|
|
|
1534
1218
|
/**
|
|
1535
1219
|
* Returns the details of a company (legal unit) identified by the id-instance passed as a parameter.
|
|
1536
1220
|
* @summary Gets a siren (legal unit) by instance ID
|
|
1537
1221
|
* @param {string} idInstance AFNOR instance ID (UUID)
|
|
1538
|
-
* @param {Array<string> | null} [fields] Fields of the SIREN resource
|
|
1539
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1540
1222
|
* @param {*} [options] Override http request option.
|
|
1541
1223
|
* @throws {RequiredError}
|
|
1542
1224
|
*/
|
|
1543
|
-
public getSirenByIdInstanceProxyApiV1AfnorDirectoryV1SirenIdInstanceIdInstanceGet(idInstance: string,
|
|
1544
|
-
return AFNORPDPPADirectoryServiceApiFp(this.configuration).getSirenByIdInstanceProxyApiV1AfnorDirectoryV1SirenIdInstanceIdInstanceGet(idInstance,
|
|
1225
|
+
public getSirenByIdInstanceProxyApiV1AfnorDirectoryV1SirenIdInstanceIdInstanceGet(idInstance: string, options?: RawAxiosRequestConfig) {
|
|
1226
|
+
return AFNORPDPPADirectoryServiceApiFp(this.configuration).getSirenByIdInstanceProxyApiV1AfnorDirectoryV1SirenIdInstanceIdInstanceGet(idInstance, options).then((request) => request(this.axios, this.basePath));
|
|
1545
1227
|
}
|
|
1546
1228
|
|
|
1547
1229
|
/**
|
|
1548
1230
|
* Returns the details of a facility associated to a SIRET.
|
|
1549
1231
|
* @summary Gets a siret (facility) by SIRET number
|
|
1550
1232
|
* @param {string} siret 14-digit SIRET number (INSEE establishment identifier)
|
|
1551
|
-
* @param {Array<string> | null} [fields] Fields of a SIRET resource.
|
|
1552
|
-
* @param {Array<SiretInclude> | null} [include] Relations to include in the response.
|
|
1553
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1554
1233
|
* @param {*} [options] Override http request option.
|
|
1555
1234
|
* @throws {RequiredError}
|
|
1556
1235
|
*/
|
|
1557
|
-
public getSiretByCodeInseeProxyApiV1AfnorDirectoryV1SiretCodeInseeSiretGet(siret: string,
|
|
1558
|
-
return AFNORPDPPADirectoryServiceApiFp(this.configuration).getSiretByCodeInseeProxyApiV1AfnorDirectoryV1SiretCodeInseeSiretGet(siret,
|
|
1236
|
+
public getSiretByCodeInseeProxyApiV1AfnorDirectoryV1SiretCodeInseeSiretGet(siret: string, options?: RawAxiosRequestConfig) {
|
|
1237
|
+
return AFNORPDPPADirectoryServiceApiFp(this.configuration).getSiretByCodeInseeProxyApiV1AfnorDirectoryV1SiretCodeInseeSiretGet(siret, options).then((request) => request(this.axios, this.basePath));
|
|
1559
1238
|
}
|
|
1560
1239
|
|
|
1561
1240
|
/**
|
|
1562
1241
|
* Returns the details of a facility according to an instance-id.
|
|
1563
1242
|
* @summary Gets a siret (facility) by id-instance
|
|
1564
1243
|
* @param {string} idInstance AFNOR instance ID (UUID)
|
|
1565
|
-
* @param {Array<string> | null} [fields] Fields of a SIRET resource.
|
|
1566
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1567
1244
|
* @param {*} [options] Override http request option.
|
|
1568
1245
|
* @throws {RequiredError}
|
|
1569
1246
|
*/
|
|
1570
|
-
public getSiretByIdInstanceProxyApiV1AfnorDirectoryV1SiretIdInstanceIdInstanceGet(idInstance: string,
|
|
1571
|
-
return AFNORPDPPADirectoryServiceApiFp(this.configuration).getSiretByIdInstanceProxyApiV1AfnorDirectoryV1SiretIdInstanceIdInstanceGet(idInstance,
|
|
1247
|
+
public getSiretByIdInstanceProxyApiV1AfnorDirectoryV1SiretIdInstanceIdInstanceGet(idInstance: string, options?: RawAxiosRequestConfig) {
|
|
1248
|
+
return AFNORPDPPADirectoryServiceApiFp(this.configuration).getSiretByIdInstanceProxyApiV1AfnorDirectoryV1SiretIdInstanceIdInstanceGet(idInstance, options).then((request) => request(this.axios, this.basePath));
|
|
1572
1249
|
}
|
|
1573
1250
|
|
|
1574
1251
|
/**
|
|
1575
1252
|
* Partially updates a directory line.
|
|
1576
1253
|
* @summary Partially updates a directory line..
|
|
1577
1254
|
* @param {string} idInstance AFNOR instance ID (UUID)
|
|
1578
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1579
1255
|
* @param {*} [options] Override http request option.
|
|
1580
1256
|
* @throws {RequiredError}
|
|
1581
1257
|
*/
|
|
1582
|
-
public patchDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstancePatch(idInstance: string,
|
|
1583
|
-
return AFNORPDPPADirectoryServiceApiFp(this.configuration).patchDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstancePatch(idInstance,
|
|
1258
|
+
public patchDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstancePatch(idInstance: string, options?: RawAxiosRequestConfig) {
|
|
1259
|
+
return AFNORPDPPADirectoryServiceApiFp(this.configuration).patchDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineIdInstanceIdInstancePatch(idInstance, options).then((request) => request(this.axios, this.basePath));
|
|
1584
1260
|
}
|
|
1585
1261
|
|
|
1586
1262
|
/**
|
|
1587
1263
|
* Partially update a private routing code.
|
|
1588
1264
|
* @summary Partially update a private routing code.
|
|
1589
1265
|
* @param {string} idInstance AFNOR instance ID (UUID)
|
|
1590
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1591
1266
|
* @param {*} [options] Override http request option.
|
|
1592
1267
|
* @throws {RequiredError}
|
|
1593
1268
|
*/
|
|
1594
|
-
public patchRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstancePatch(idInstance: string,
|
|
1595
|
-
return AFNORPDPPADirectoryServiceApiFp(this.configuration).patchRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstancePatch(idInstance,
|
|
1269
|
+
public patchRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstancePatch(idInstance: string, options?: RawAxiosRequestConfig) {
|
|
1270
|
+
return AFNORPDPPADirectoryServiceApiFp(this.configuration).patchRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstancePatch(idInstance, options).then((request) => request(this.axios, this.basePath));
|
|
1596
1271
|
}
|
|
1597
1272
|
|
|
1598
1273
|
/**
|
|
1599
1274
|
* Completely update a private routing code.
|
|
1600
1275
|
* @summary Completely update a private routing code.
|
|
1601
1276
|
* @param {string} idInstance AFNOR instance ID (UUID)
|
|
1602
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1603
1277
|
* @param {*} [options] Override http request option.
|
|
1604
1278
|
* @throws {RequiredError}
|
|
1605
1279
|
*/
|
|
1606
|
-
public putRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstancePut(idInstance: string,
|
|
1607
|
-
return AFNORPDPPADirectoryServiceApiFp(this.configuration).putRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstancePut(idInstance,
|
|
1280
|
+
public putRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstancePut(idInstance: string, options?: RawAxiosRequestConfig) {
|
|
1281
|
+
return AFNORPDPPADirectoryServiceApiFp(this.configuration).putRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeIdInstanceIdInstancePut(idInstance, options).then((request) => request(this.axios, this.basePath));
|
|
1608
1282
|
}
|
|
1609
1283
|
|
|
1610
1284
|
/**
|
|
1611
1285
|
* Search for directory lines that meet all the criteria passed as parameters and return the results in the desired format.
|
|
1612
1286
|
* @summary Search for a directory line
|
|
1613
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1614
1287
|
* @param {*} [options] Override http request option.
|
|
1615
1288
|
* @throws {RequiredError}
|
|
1616
1289
|
*/
|
|
1617
|
-
public searchDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineSearchPost(
|
|
1618
|
-
return AFNORPDPPADirectoryServiceApiFp(this.configuration).searchDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineSearchPost(
|
|
1290
|
+
public searchDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineSearchPost(options?: RawAxiosRequestConfig) {
|
|
1291
|
+
return AFNORPDPPADirectoryServiceApiFp(this.configuration).searchDirectoryLineProxyApiV1AfnorDirectoryV1DirectoryLineSearchPost(options).then((request) => request(this.axios, this.basePath));
|
|
1619
1292
|
}
|
|
1620
1293
|
|
|
1621
1294
|
/**
|
|
1622
1295
|
* Search for routing codes that meet all the criteria passed as parameters and return the routing codes in the desired format.
|
|
1623
1296
|
* @summary Search for a routing code
|
|
1624
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1625
1297
|
* @param {*} [options] Override http request option.
|
|
1626
1298
|
* @throws {RequiredError}
|
|
1627
1299
|
*/
|
|
1628
|
-
public searchRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeSearchPost(
|
|
1629
|
-
return AFNORPDPPADirectoryServiceApiFp(this.configuration).searchRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeSearchPost(
|
|
1300
|
+
public searchRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeSearchPost(options?: RawAxiosRequestConfig) {
|
|
1301
|
+
return AFNORPDPPADirectoryServiceApiFp(this.configuration).searchRoutingCodeProxyApiV1AfnorDirectoryV1RoutingCodeSearchPost(options).then((request) => request(this.axios, this.basePath));
|
|
1630
1302
|
}
|
|
1631
1303
|
|
|
1632
1304
|
/**
|
|
1633
1305
|
* Multi-criteria company search.
|
|
1634
1306
|
* @summary SIREN search (or legal unit)
|
|
1635
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1636
1307
|
* @param {*} [options] Override http request option.
|
|
1637
1308
|
* @throws {RequiredError}
|
|
1638
1309
|
*/
|
|
1639
|
-
public searchSirenProxyApiV1AfnorDirectoryV1SirenSearchPost(
|
|
1640
|
-
return AFNORPDPPADirectoryServiceApiFp(this.configuration).searchSirenProxyApiV1AfnorDirectoryV1SirenSearchPost(
|
|
1310
|
+
public searchSirenProxyApiV1AfnorDirectoryV1SirenSearchPost(options?: RawAxiosRequestConfig) {
|
|
1311
|
+
return AFNORPDPPADirectoryServiceApiFp(this.configuration).searchSirenProxyApiV1AfnorDirectoryV1SirenSearchPost(options).then((request) => request(this.axios, this.basePath));
|
|
1641
1312
|
}
|
|
1642
1313
|
|
|
1643
1314
|
/**
|
|
1644
1315
|
* Multi-criteria search for facilities.
|
|
1645
1316
|
* @summary Search for a SIRET (facility)
|
|
1646
|
-
* @param {AcceptLanguage} [acceptLanguage] Specifies the language in which the resource is requested.
|
|
1647
1317
|
* @param {*} [options] Override http request option.
|
|
1648
1318
|
* @throws {RequiredError}
|
|
1649
1319
|
*/
|
|
1650
|
-
public searchSiretProxyApiV1AfnorDirectoryV1SiretSearchPost(
|
|
1651
|
-
return AFNORPDPPADirectoryServiceApiFp(this.configuration).searchSiretProxyApiV1AfnorDirectoryV1SiretSearchPost(
|
|
1320
|
+
public searchSiretProxyApiV1AfnorDirectoryV1SiretSearchPost(options?: RawAxiosRequestConfig) {
|
|
1321
|
+
return AFNORPDPPADirectoryServiceApiFp(this.configuration).searchSiretProxyApiV1AfnorDirectoryV1SiretSearchPost(options).then((request) => request(this.axios, this.basePath));
|
|
1652
1322
|
}
|
|
1653
1323
|
}
|
|
1654
1324
|
|