@handsondigital/idplugger-admin 2.6.2 → 2.7.1

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.
@@ -30,6 +30,19 @@ docs/AdminPermissionsShow200ResponseContent.md
30
30
  docs/AdminPromotionCacheClear200Response.md
31
31
  docs/AdminPromotionCacheClear200ResponseContent.md
32
32
  docs/AdminPromotionCacheClear500Response.md
33
+ docs/AdminPromotionConfigsIndex200Response.md
34
+ docs/AdminPromotionConfigsIndex200ResponseConfigsInner.md
35
+ docs/AdminPromotionConfigsIndex500Response.md
36
+ docs/AdminPromotionConfigsShow200Response.md
37
+ docs/AdminPromotionConfigsShow200ResponseConfig.md
38
+ docs/AdminPromotionConfigsShow404Response.md
39
+ docs/AdminPromotionConfigsStore201Response.md
40
+ docs/AdminPromotionConfigsStoreRequest.md
41
+ docs/AdminPromotionConfigsUpdate200Response.md
42
+ docs/AdminPromotionConfigsUpdateRequest.md
43
+ docs/AdminPromotionConfigsUpsert200Response.md
44
+ docs/AdminPromotionConfigsValidKeys200Response.md
45
+ docs/AdminPromotionConfigsValidKeys200ResponseValidKeysInner.md
33
46
  docs/AdminPromotionLuckyNumbersReset200Response.md
34
47
  docs/AdminPromotionLuckyNumbersReset500Response.md
35
48
  docs/AdminServiceCustomerApplications200Response.md
@@ -64,6 +77,7 @@ docs/AuthLoginRequest.md
64
77
  docs/AuthMe200Response.md
65
78
  docs/AuthMe200ResponsePromotionsInner.md
66
79
  docs/AuthRefreshTokenRequest.md
80
+ docs/ConfigsApi.md
67
81
  docs/CustomerServiceApi.md
68
82
  docs/ErrorReport.md
69
83
  docs/ErrorReportPaginated.md
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @handsondigital/idplugger-admin@2.6.2
1
+ ## @handsondigital/idplugger-admin@2.7.1
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 @handsondigital/idplugger-admin@2.6.2 --save
39
+ npm install @handsondigital/idplugger-admin@2.7.1 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -58,6 +58,12 @@ Class | Method | HTTP request | Description
58
58
  *AuthApi* | [**authLoginByToken**](docs/AuthApi.md#authloginbytoken) | **POST** /admin/auth/login | Login na API via e-mail e token
59
59
  *AuthApi* | [**authMe**](docs/AuthApi.md#authme) | **GET** /v3/me | Dados na API
60
60
  *AuthApi* | [**authRefreshToken**](docs/AuthApi.md#authrefreshtoken) | **POST** /admin/auth/refresh | Renova o do token de autenticação
61
+ *ConfigsApi* | [**adminPromotionConfigsIndex**](docs/ConfigsApi.md#adminpromotionconfigsindex) | **GET** /v3/admin/promotion/{promotion_id}/configs | Listar configurações de uma promoção
62
+ *ConfigsApi* | [**adminPromotionConfigsShow**](docs/ConfigsApi.md#adminpromotionconfigsshow) | **GET** /v3/admin/promotion/{promotion_id}/configs/{key} | Buscar configuração por chave
63
+ *ConfigsApi* | [**adminPromotionConfigsStore**](docs/ConfigsApi.md#adminpromotionconfigsstore) | **POST** /v3/admin/promotion/{promotion_id}/configs | Criar nova configuração
64
+ *ConfigsApi* | [**adminPromotionConfigsUpdate**](docs/ConfigsApi.md#adminpromotionconfigsupdate) | **PUT** /v3/admin/promotion/{promotion_id}/configs/{key} | Atualizar configuração por chave
65
+ *ConfigsApi* | [**adminPromotionConfigsUpsert**](docs/ConfigsApi.md#adminpromotionconfigsupsert) | **POST** /v3/admin/promotion/{promotion_id}/configs/upsert | Criar ou atualizar configuração por chave (upsert)
66
+ *ConfigsApi* | [**adminPromotionConfigsValidKeys**](docs/ConfigsApi.md#adminpromotionconfigsvalidkeys) | **GET** /v3/admin/promotion/{promotion_id}/configs/valid-keys | Listar chaves válidas do ConfigKeyEnum
61
67
  *CustomerServiceApi* | [**adminServiceCustomerApplications**](docs/CustomerServiceApi.md#adminservicecustomerapplications) | **GET** /admin/service/customer/applications/{client_id} | Listar aplicações de um cliente no serviço de atendimento ao cliente
62
68
  *CustomerServiceApi* | [**adminServiceCustomerBrands**](docs/CustomerServiceApi.md#adminservicecustomerbrands) | **GET** /admin/service/customer/brands/{client_id} | Listar marcas de um cliente do serviço de atendimento ao cliente
63
69
  *CustomerServiceApi* | [**adminServiceCustomerCampaigns**](docs/CustomerServiceApi.md#adminservicecustomercampaigns) | **GET** /admin/service/customer/campaigns/{client_id} | Listar campanhas de um cliente no serviço de atendimento ao cliente
@@ -126,6 +132,19 @@ Class | Method | HTTP request | Description
126
132
  - [AdminPromotionCacheClear200Response](docs/AdminPromotionCacheClear200Response.md)
127
133
  - [AdminPromotionCacheClear200ResponseContent](docs/AdminPromotionCacheClear200ResponseContent.md)
128
134
  - [AdminPromotionCacheClear500Response](docs/AdminPromotionCacheClear500Response.md)
135
+ - [AdminPromotionConfigsIndex200Response](docs/AdminPromotionConfigsIndex200Response.md)
136
+ - [AdminPromotionConfigsIndex200ResponseConfigsInner](docs/AdminPromotionConfigsIndex200ResponseConfigsInner.md)
137
+ - [AdminPromotionConfigsIndex500Response](docs/AdminPromotionConfigsIndex500Response.md)
138
+ - [AdminPromotionConfigsShow200Response](docs/AdminPromotionConfigsShow200Response.md)
139
+ - [AdminPromotionConfigsShow200ResponseConfig](docs/AdminPromotionConfigsShow200ResponseConfig.md)
140
+ - [AdminPromotionConfigsShow404Response](docs/AdminPromotionConfigsShow404Response.md)
141
+ - [AdminPromotionConfigsStore201Response](docs/AdminPromotionConfigsStore201Response.md)
142
+ - [AdminPromotionConfigsStoreRequest](docs/AdminPromotionConfigsStoreRequest.md)
143
+ - [AdminPromotionConfigsUpdate200Response](docs/AdminPromotionConfigsUpdate200Response.md)
144
+ - [AdminPromotionConfigsUpdateRequest](docs/AdminPromotionConfigsUpdateRequest.md)
145
+ - [AdminPromotionConfigsUpsert200Response](docs/AdminPromotionConfigsUpsert200Response.md)
146
+ - [AdminPromotionConfigsValidKeys200Response](docs/AdminPromotionConfigsValidKeys200Response.md)
147
+ - [AdminPromotionConfigsValidKeys200ResponseValidKeysInner](docs/AdminPromotionConfigsValidKeys200ResponseValidKeysInner.md)
129
148
  - [AdminPromotionLuckyNumbersReset200Response](docs/AdminPromotionLuckyNumbersReset200Response.md)
130
149
  - [AdminPromotionLuckyNumbersReset500Response](docs/AdminPromotionLuckyNumbersReset500Response.md)
131
150
  - [AdminServiceCustomerApplications200Response](docs/AdminServiceCustomerApplications200Response.md)