yellowgrid-api-ts 3.0.83-dev.0 → 3.0.83
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 +190 -208
- package/README.md +7 -34
- package/api.ts +251 -1780
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/config.json +3 -3
- package/configuration.ts +1 -1
- package/dist/api.d.ts +163 -1308
- package/dist/api.js +201 -1065
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/AccountsApi.md +0 -103
- package/docs/Class3CXApi.md +55 -0
- package/docs/ClientDetailsModel.md +2 -0
- package/docs/{ShippingServicesModel.md → GetGetPasswordHash200Response.md} +5 -5
- package/docs/ItemDTO.md +4 -10
- package/docs/OrderSummaryDTO.md +0 -8
- package/docs/OrderTotalModel.md +0 -2
- package/docs/OrdersApi.md +4 -301
- package/docs/ProductSearchResultsModel.md +1 -1
- package/docs/{ProductSummaryDTO.md → ProductSummaryModel.md} +3 -5
- package/docs/ProductsApi.md +34 -159
- package/docs/ProvisioningApi.md +4 -4
- package/docs/{ProvisioningModel.md → ProvisioningEntity.md} +3 -3
- package/docs/ShipmentEntity.md +2 -2
- package/docs/StockManagementApi.md +2 -2
- package/docs/TcxBackupModel.md +2 -0
- package/docs/TcxSbcModel.md +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
- package/docs/AbstractOrderRequestDTO.md +0 -33
- package/docs/AccountDetailedSummaryDTO.md +0 -35
- package/docs/AdminItemRequestDTO.md +0 -37
- package/docs/AdminOrderRequestDTO.md +0 -41
- package/docs/AdminUserModel.md +0 -31
- package/docs/BasicItemDTO.md +0 -23
- package/docs/BasicProductDTO.md +0 -23
- package/docs/CourierPriceEntity.md +0 -39
- package/docs/CustomerItemRequestDTO.md +0 -33
- package/docs/CustomerOrderRequestDTO.md +0 -33
- package/docs/LinkedOrderEntity.md +0 -23
- package/docs/NavigationItemModel.md +0 -27
- package/docs/ShippingApi.md +0 -63
- package/docs/ShippingConsignmentModel.md +0 -26
- package/docs/ShippingInformationDTO.md +0 -25
- package/docs/ShippingServiceDTO.md +0 -23
- package/docs/ShippingServiceModel.md +0 -31
- package/docs/SubNavigationItemModel.md +0 -25
- package/docs/TcxSbcDTO.md +0 -31
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
# ShippingServiceModel
|
|
2
|
-
|
|
3
|
-
Shipping Service
|
|
4
|
-
|
|
5
|
-
## Properties
|
|
6
|
-
|
|
7
|
-
Name | Type | Description | Notes
|
|
8
|
-
------------ | ------------- | ------------- | -------------
|
|
9
|
-
**courier** | **string** | Courier | [optional] [default to undefined]
|
|
10
|
-
**code** | **string** | Code | [optional] [default to undefined]
|
|
11
|
-
**name** | **string** | Name | [optional] [default to undefined]
|
|
12
|
-
**description** | **string** | Description | [optional] [default to undefined]
|
|
13
|
-
**label** | **string** | Label | [optional] [default to undefined]
|
|
14
|
-
**price** | **number** | Price | [optional] [default to undefined]
|
|
15
|
-
|
|
16
|
-
## Example
|
|
17
|
-
|
|
18
|
-
```typescript
|
|
19
|
-
import { ShippingServiceModel } from 'yellowgrid-api-ts';
|
|
20
|
-
|
|
21
|
-
const instance: ShippingServiceModel = {
|
|
22
|
-
courier,
|
|
23
|
-
code,
|
|
24
|
-
name,
|
|
25
|
-
description,
|
|
26
|
-
label,
|
|
27
|
-
price,
|
|
28
|
-
};
|
|
29
|
-
```
|
|
30
|
-
|
|
31
|
-
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
# SubNavigationItemModel
|
|
2
|
-
|
|
3
|
-
POPS Sub Navigation Item
|
|
4
|
-
|
|
5
|
-
## Properties
|
|
6
|
-
|
|
7
|
-
Name | Type | Description | Notes
|
|
8
|
-
------------ | ------------- | ------------- | -------------
|
|
9
|
-
**title** | **string** | Title | [optional] [default to undefined]
|
|
10
|
-
**url** | **string** | URL | [optional] [default to undefined]
|
|
11
|
-
**icon** | **string** | Icon (Font Awesome) | [optional] [default to undefined]
|
|
12
|
-
|
|
13
|
-
## Example
|
|
14
|
-
|
|
15
|
-
```typescript
|
|
16
|
-
import { SubNavigationItemModel } from 'yellowgrid-api-ts';
|
|
17
|
-
|
|
18
|
-
const instance: SubNavigationItemModel = {
|
|
19
|
-
title,
|
|
20
|
-
url,
|
|
21
|
-
icon,
|
|
22
|
-
};
|
|
23
|
-
```
|
|
24
|
-
|
|
25
|
-
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
package/docs/TcxSbcDTO.md
DELETED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
# TcxSbcDTO
|
|
2
|
-
|
|
3
|
-
SBC Data
|
|
4
|
-
|
|
5
|
-
## Properties
|
|
6
|
-
|
|
7
|
-
Name | Type | Description | Notes
|
|
8
|
-
------------ | ------------- | ------------- | -------------
|
|
9
|
-
**ipAddress** | **string** | LAN IP Address | [optional] [default to undefined]
|
|
10
|
-
**defaultGateway** | **string** | LAN Default Gateway | [optional] [default to undefined]
|
|
11
|
-
**netmask** | **string** | LAN Subnet Mask | [optional] [default to undefined]
|
|
12
|
-
**dns** | **string** | DNS | [optional] [default to undefined]
|
|
13
|
-
**tcxUrl** | **string** | 3CX URL | [optional] [default to undefined]
|
|
14
|
-
**tcxKey** | **string** | 3CX SBC Key | [optional] [default to undefined]
|
|
15
|
-
|
|
16
|
-
## Example
|
|
17
|
-
|
|
18
|
-
```typescript
|
|
19
|
-
import { TcxSbcDTO } from 'yellowgrid-api-ts';
|
|
20
|
-
|
|
21
|
-
const instance: TcxSbcDTO = {
|
|
22
|
-
ipAddress,
|
|
23
|
-
defaultGateway,
|
|
24
|
-
netmask,
|
|
25
|
-
dns,
|
|
26
|
-
tcxUrl,
|
|
27
|
-
tcxKey,
|
|
28
|
-
};
|
|
29
|
-
```
|
|
30
|
-
|
|
31
|
-
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|