@seekora-ai/admin-api 1.0.98 → 1.0.99

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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @seekora-ai/admin-api@1.0.98
1
+ ## @seekora-ai/admin-api@1.0.99
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install @seekora-ai/admin-api@1.0.98 --save
39
+ npm install @seekora-ai/admin-api@1.0.99 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -119,13 +119,16 @@ Class | Method | HTTP request | Description
119
119
  *BillingDashboardApi* | [**adminBillingCreditPurchasesGet**](docs/BillingDashboardApi.md#adminbillingcreditpurchasesget) | **GET** /admin/billing/credit-purchases | Get credit purchases
120
120
  *BillingDashboardApi* | [**adminBillingCreditTransactionsGet**](docs/BillingDashboardApi.md#adminbillingcredittransactionsget) | **GET** /admin/billing/credit-transactions | Get credit transactions
121
121
  *BillingDashboardApi* | [**adminBillingInvoicesAutoGeneratePost**](docs/BillingDashboardApi.md#adminbillinginvoicesautogeneratepost) | **POST** /admin/billing/invoices/auto-generate | Auto-generate invoices
122
+ *BillingDashboardApi* | [**adminBillingInvoicesGenerateForOrderOrderIdPost**](docs/BillingDashboardApi.md#adminbillinginvoicesgeneratefororderorderidpost) | **POST** /admin/billing/invoices/generate-for-order/{orderId} | Generate invoices for an order
122
123
  *BillingDashboardApi* | [**adminBillingInvoicesGeneratePaymentIdPost**](docs/BillingDashboardApi.md#adminbillinginvoicesgeneratepaymentidpost) | **POST** /admin/billing/invoices/generate/{paymentId} | Generate invoice from payment
123
124
  *BillingDashboardApi* | [**adminBillingInvoicesGet**](docs/BillingDashboardApi.md#adminbillinginvoicesget) | **GET** /admin/billing/invoices | Get invoices
124
125
  *BillingDashboardApi* | [**adminBillingInvoicesIdDelete**](docs/BillingDashboardApi.md#adminbillinginvoicesiddelete) | **DELETE** /admin/billing/invoices/{id} | Delete invoice
125
126
  *BillingDashboardApi* | [**adminBillingInvoicesIdDownloadGet**](docs/BillingDashboardApi.md#adminbillinginvoicesiddownloadget) | **GET** /admin/billing/invoices/{id}/download | Download invoice
126
127
  *BillingDashboardApi* | [**adminBillingInvoicesIdGet**](docs/BillingDashboardApi.md#adminbillinginvoicesidget) | **GET** /admin/billing/invoices/{id} | Get invoice
127
128
  *BillingDashboardApi* | [**adminBillingInvoicesIdPut**](docs/BillingDashboardApi.md#adminbillinginvoicesidput) | **PUT** /admin/billing/invoices/{id} | Update invoice
129
+ *BillingDashboardApi* | [**adminBillingInvoicesInvoiceIdPayPost**](docs/BillingDashboardApi.md#adminbillinginvoicesinvoiceidpaypost) | **POST** /admin/billing/invoices/{invoice_id}/pay | Pay a pending invoice
128
130
  *BillingDashboardApi* | [**adminBillingOrdersGet**](docs/BillingDashboardApi.md#adminbillingordersget) | **GET** /admin/billing/orders | Get orders
131
+ *BillingDashboardApi* | [**adminBillingOrdersIdGet**](docs/BillingDashboardApi.md#adminbillingordersidget) | **GET** /admin/billing/orders/{id} | Get single order with transactions and invoices
129
132
  *BillingDashboardApi* | [**adminBillingOrgOverviewGet**](docs/BillingDashboardApi.md#adminbillingorgoverviewget) | **GET** /admin/billing/org-overview | Get org admin billing overview
130
133
  *BillingDashboardApi* | [**adminBillingOrganizationsGet**](docs/BillingDashboardApi.md#adminbillingorganizationsget) | **GET** /admin/billing/organizations | Get organization billing summary
131
134
  *BillingDashboardApi* | [**adminBillingOverviewGet**](docs/BillingDashboardApi.md#adminbillingoverviewget) | **GET** /admin/billing/overview | Get billing overview
@@ -544,6 +547,7 @@ Class | Method | HTTP request | Description
544
547
  - [DataTypesApprovalStepDto](docs/DataTypesApprovalStepDto.md)
545
548
  - [DataTypesAutocompleteSuggestion](docs/DataTypesAutocompleteSuggestion.md)
546
549
  - [DataTypesBillingAlertRequest](docs/DataTypesBillingAlertRequest.md)
550
+ - [DataTypesBillingOrderDetailsResponse](docs/DataTypesBillingOrderDetailsResponse.md)
547
551
  - [DataTypesBulkDocumentRequest](docs/DataTypesBulkDocumentRequest.md)
548
552
  - [DataTypesBulkDocumentResponse](docs/DataTypesBulkDocumentResponse.md)
549
553
  - [DataTypesBulkDocumentResponseWrapper](docs/DataTypesBulkDocumentResponseWrapper.md)
@@ -577,11 +581,13 @@ Class | Method | HTTP request | Description
577
581
  - [DataTypesCreateUserResponseWrapper](docs/DataTypesCreateUserResponseWrapper.md)
578
582
  - [DataTypesCreditAdjustmentDto](docs/DataTypesCreditAdjustmentDto.md)
579
583
  - [DataTypesCreditPlan](docs/DataTypesCreditPlan.md)
584
+ - [DataTypesCreditPlanDetails](docs/DataTypesCreditPlanDetails.md)
580
585
  - [DataTypesCustomWordListResponseWrapper](docs/DataTypesCustomWordListResponseWrapper.md)
581
586
  - [DataTypesCustomWordListWithWords](docs/DataTypesCustomWordListWithWords.md)
582
587
  - [DataTypesCustomWordListsResponse](docs/DataTypesCustomWordListsResponse.md)
583
588
  - [DataTypesCustomWordListsResponseWrapper](docs/DataTypesCustomWordListsResponseWrapper.md)
584
589
  - [DataTypesCustomWordWithStatus](docs/DataTypesCustomWordWithStatus.md)
590
+ - [DataTypesCustomerInfo](docs/DataTypesCustomerInfo.md)
585
591
  - [DataTypesCustomerInfoDto](docs/DataTypesCustomerInfoDto.md)
586
592
  - [DataTypesDefaultDeclension](docs/DataTypesDefaultDeclension.md)
587
593
  - [DataTypesDefaultDeclensionsResponse](docs/DataTypesDefaultDeclensionsResponse.md)
@@ -608,6 +614,9 @@ Class | Method | HTTP request | Description
608
614
  - [DataTypesFulfillmentInfoSubscription](docs/DataTypesFulfillmentInfoSubscription.md)
609
615
  - [DataTypesGatewayInfo](docs/DataTypesGatewayInfo.md)
610
616
  - [DataTypesGatewayListResponse](docs/DataTypesGatewayListResponse.md)
617
+ - [DataTypesGenericResponseArrayDataTypesInvoice](docs/DataTypesGenericResponseArrayDataTypesInvoice.md)
618
+ - [DataTypesGenericResponseDataTypesBillingOrderDetailsResponse](docs/DataTypesGenericResponseDataTypesBillingOrderDetailsResponse.md)
619
+ - [DataTypesGenericResponseDataTypesPayInvoiceResponse](docs/DataTypesGenericResponseDataTypesPayInvoiceResponse.md)
611
620
  - [DataTypesGenericStringArrayResponse](docs/DataTypesGenericStringArrayResponse.md)
612
621
  - [DataTypesGetStoreResult](docs/DataTypesGetStoreResult.md)
613
622
  - [DataTypesIndexConfig](docs/DataTypesIndexConfig.md)
@@ -665,6 +674,8 @@ Class | Method | HTTP request | Description
665
674
  - [DataTypesParentMenu](docs/DataTypesParentMenu.md)
666
675
  - [DataTypesParentMenuResponse](docs/DataTypesParentMenuResponse.md)
667
676
  - [DataTypesParentMenusListResponse](docs/DataTypesParentMenusListResponse.md)
677
+ - [DataTypesPayInvoiceRequest](docs/DataTypesPayInvoiceRequest.md)
678
+ - [DataTypesPayInvoiceResponse](docs/DataTypesPayInvoiceResponse.md)
668
679
  - [DataTypesPayment](docs/DataTypesPayment.md)
669
680
  - [DataTypesPaymentRequestDto](docs/DataTypesPaymentRequestDto.md)
670
681
  - [DataTypesPaymentResponse](docs/DataTypesPaymentResponse.md)