yellowgrid-api-ts 3.2.177-dev.0 → 3.2.178-dev.0

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.
@@ -521,17 +521,25 @@ Create a MAC address in FDPS
521
521
  ```typescript
522
522
  import {
523
523
  ProvisioningApi,
524
- Configuration
524
+ Configuration,
525
+ MacAddressDTO
525
526
  } from 'yellowgrid-api-ts';
526
527
 
527
528
  const configuration = new Configuration();
528
529
  const apiInstance = new ProvisioningApi(configuration);
529
530
 
530
- const { status, data } = await apiInstance.postCreateMac();
531
+ let macAddressDTO: MacAddressDTO; //Mac Address (optional)
532
+
533
+ const { status, data } = await apiInstance.postCreateMac(
534
+ macAddressDTO
535
+ );
531
536
  ```
532
537
 
533
538
  ### Parameters
534
- This endpoint does not have any parameters.
539
+
540
+ |Name | Type | Description | Notes|
541
+ |------------- | ------------- | ------------- | -------------|
542
+ | **macAddressDTO** | **MacAddressDTO**| Mac Address | |
535
543
 
536
544
 
537
545
  ### Return type
@@ -544,7 +552,7 @@ No authorization required
544
552
 
545
553
  ### HTTP request headers
546
554
 
547
- - **Content-Type**: Not defined
555
+ - **Content-Type**: application/json
548
556
  - **Accept**: application/json
549
557
 
550
558
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yellowgrid-api-ts",
3
- "version": "3.2.177-dev.0",
3
+ "version": "3.2.178-dev.0",
4
4
  "description": "OpenAPI client for yellowgrid-api-ts",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {