yellowgrid-api-ts 3.2.249-dev.0 → 3.2.250-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 +5 -0
- package/README.md +13 -0
- package/api.ts +792 -0
- package/dist/api.d.ts +460 -0
- package/dist/api.js +709 -5
- package/dist/models/RmaStatusEnum.d.ts +5 -0
- package/dist/models/RmaStatusEnum.js +5 -0
- package/docs/BrandedVideoSummaryDTO.md +47 -0
- package/docs/BrandedVideosApi.md +424 -0
- package/docs/BrandedVideosSummariesModel.md +27 -0
- package/docs/OAuth20Api.md +3 -3
- package/docs/ThumbnailDTO.md +25 -0
- package/docs/VideoRequestEntity.md +51 -0
- package/models/RmaStatusEnum.ts +5 -0
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -42,6 +42,9 @@ docs/BasicProductDTO.md
|
|
|
42
42
|
docs/BatchDTO.md
|
|
43
43
|
docs/BatchEntity.md
|
|
44
44
|
docs/BillingApi.md
|
|
45
|
+
docs/BrandedVideoSummaryDTO.md
|
|
46
|
+
docs/BrandedVideosApi.md
|
|
47
|
+
docs/BrandedVideosSummariesModel.md
|
|
45
48
|
docs/Bundle.md
|
|
46
49
|
docs/BundleCustomer.md
|
|
47
50
|
docs/CRMApi.md
|
|
@@ -385,6 +388,7 @@ docs/TcxUsersEntity.md
|
|
|
385
388
|
docs/TcxWizardConfigModel.md
|
|
386
389
|
docs/TcxWizardModel.md
|
|
387
390
|
docs/TechSupportCompanySummaryDTO.md
|
|
391
|
+
docs/ThumbnailDTO.md
|
|
388
392
|
docs/TicketSummaryModel.md
|
|
389
393
|
docs/TicketTimeDTO.md
|
|
390
394
|
docs/TicketsApi.md
|
|
@@ -393,6 +397,7 @@ docs/UnconnectedSdr.md
|
|
|
393
397
|
docs/UpgradeOrderResponseModel.md
|
|
394
398
|
docs/UpgradeRequestModel.md
|
|
395
399
|
docs/UserEntity.md
|
|
400
|
+
docs/VideoRequestEntity.md
|
|
396
401
|
docs/WebhooksApi.md
|
|
397
402
|
docs/XeroLogEntity.md
|
|
398
403
|
git_push.sh
|
package/README.md
CHANGED
|
@@ -167,6 +167,13 @@ Class | Method | HTTP request | Description
|
|
|
167
167
|
*BillingApi* | [**putGetCallTariffPlan**](docs/BillingApi.md#putgetcalltariffplan) | **PUT** /billing/admin/callTariffPlan |
|
|
168
168
|
*BillingApi* | [**putGetConnections**](docs/BillingApi.md#putgetconnections) | **PUT** /billing/customer/connections |
|
|
169
169
|
*BillingApi* | [**putGetPriceGroups**](docs/BillingApi.md#putgetpricegroups) | **PUT** /billing/admin/priceGroups |
|
|
170
|
+
*BrandedVideosApi* | [**deleteDeleteVideoRequest**](docs/BrandedVideosApi.md#deletedeletevideorequest) | **DELETE** /marketing/videos/{id} |
|
|
171
|
+
*BrandedVideosApi* | [**getDownloadLogo**](docs/BrandedVideosApi.md#getdownloadlogo) | **GET** /marketing/videos/logo |
|
|
172
|
+
*BrandedVideosApi* | [**getGetBrandedVideos**](docs/BrandedVideosApi.md#getgetbrandedvideos) | **GET** /marketing/videos |
|
|
173
|
+
*BrandedVideosApi* | [**getGetThumbnails**](docs/BrandedVideosApi.md#getgetthumbnails) | **GET** /marketing/videos/thumbnails |
|
|
174
|
+
*BrandedVideosApi* | [**postDownloadLogo**](docs/BrandedVideosApi.md#postdownloadlogo) | **POST** /marketing/videos/logo |
|
|
175
|
+
*BrandedVideosApi* | [**postSendBrandedVideoEmail**](docs/BrandedVideosApi.md#postsendbrandedvideoemail) | **POST** /marketing/videos/{id}/send |
|
|
176
|
+
*BrandedVideosApi* | [**postUploadVideo**](docs/BrandedVideosApi.md#postuploadvideo) | **POST** /marketing/videos/{id}/upload |
|
|
170
177
|
*CRMApi* | [**getGetCrmActivities**](docs/CRMApi.md#getgetcrmactivities) | **GET** /admin/crm/{id}/activities |
|
|
171
178
|
*CRMApi* | [**getSearchByPhone**](docs/CRMApi.md#getsearchbyphone) | **GET** /crm/contact/search |
|
|
172
179
|
*CRMApi* | [**postCreateCrmNote**](docs/CRMApi.md#postcreatecrmnote) | **POST** /admin/crm/{id}/activities/note |
|
|
@@ -469,6 +476,8 @@ Class | Method | HTTP request | Description
|
|
|
469
476
|
- [BasicProductDTO](docs/BasicProductDTO.md)
|
|
470
477
|
- [BatchDTO](docs/BatchDTO.md)
|
|
471
478
|
- [BatchEntity](docs/BatchEntity.md)
|
|
479
|
+
- [BrandedVideoSummaryDTO](docs/BrandedVideoSummaryDTO.md)
|
|
480
|
+
- [BrandedVideosSummariesModel](docs/BrandedVideosSummariesModel.md)
|
|
472
481
|
- [Bundle](docs/Bundle.md)
|
|
473
482
|
- [BundleCustomer](docs/BundleCustomer.md)
|
|
474
483
|
- [CallBarringModel](docs/CallBarringModel.md)
|
|
@@ -787,6 +796,7 @@ Class | Method | HTTP request | Description
|
|
|
787
796
|
- [TcxWizardConfigModel](docs/TcxWizardConfigModel.md)
|
|
788
797
|
- [TcxWizardModel](docs/TcxWizardModel.md)
|
|
789
798
|
- [TechSupportCompanySummaryDTO](docs/TechSupportCompanySummaryDTO.md)
|
|
799
|
+
- [ThumbnailDTO](docs/ThumbnailDTO.md)
|
|
790
800
|
- [TicketSummaryModel](docs/TicketSummaryModel.md)
|
|
791
801
|
- [TicketTimeDTO](docs/TicketTimeDTO.md)
|
|
792
802
|
- [TokenResponseModel](docs/TokenResponseModel.md)
|
|
@@ -794,6 +804,7 @@ Class | Method | HTTP request | Description
|
|
|
794
804
|
- [UpgradeOrderResponseModel](docs/UpgradeOrderResponseModel.md)
|
|
795
805
|
- [UpgradeRequestModel](docs/UpgradeRequestModel.md)
|
|
796
806
|
- [UserEntity](docs/UserEntity.md)
|
|
807
|
+
- [VideoRequestEntity](docs/VideoRequestEntity.md)
|
|
797
808
|
- [XeroLogEntity](docs/XeroLogEntity.md)
|
|
798
809
|
|
|
799
810
|
|
|
@@ -816,6 +827,8 @@ Authentication schemes defined for the API:
|
|
|
816
827
|
- **tcx_wizard**: 3CX Installation Wizard
|
|
817
828
|
- **accounts.read**: Accounts (Read)
|
|
818
829
|
- **accounts.write**: Accounts (Write)
|
|
830
|
+
- **branded_videosread**: Branded Videosread (Read)
|
|
831
|
+
- **branded_videoswrite**: Branded Videoswrite (Read)
|
|
819
832
|
- **number_porting.read**: Number Porting (Read)
|
|
820
833
|
- **number_porting.write**: Number Porting (Write)
|
|
821
834
|
- **pricing.read**: Pricing (Read)
|