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.
- package/.openapi-generator/FILES +2 -1
- package/README.md +4 -1
- package/api.ts +170 -30
- package/dist/api.d.ts +110 -19
- package/dist/api.js +144 -40
- package/docs/Class3CXApi.md +50 -2
- package/docs/ExpiringKeyDTO.md +29 -0
- package/docs/OpayoRedirectDTO.md +29 -0
- package/docs/OrdersApi.md +4 -1
- package/docs/ProductsApi.md +8 -2
- package/docs/ProvisioningApi.md +12 -4
- package/package.json +1 -1
package/docs/ProvisioningApi.md
CHANGED
|
@@ -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
|
-
|
|
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
|
-
|
|
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**:
|
|
555
|
+
- **Content-Type**: application/json
|
|
548
556
|
- **Accept**: application/json
|
|
549
557
|
|
|
550
558
|
|