@handsondigital/idplugger-admin 2.7.2 → 2.7.4

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.
@@ -31,6 +31,7 @@ docs/AdminPromotionCacheClear200Response.md
31
31
  docs/AdminPromotionCacheClear200ResponseContent.md
32
32
  docs/AdminPromotionCacheClear500Response.md
33
33
  docs/AdminPromotionConfigsIndex200Response.md
34
+ docs/AdminPromotionConfigsIndex200ResponseCategoriesInnerValue.md
34
35
  docs/AdminPromotionConfigsIndex200ResponseConfigsValue.md
35
36
  docs/AdminPromotionConfigsIndex200ResponseConfigsValueMetadata.md
36
37
  docs/AdminPromotionConfigsIndex500Response.md
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @handsondigital/idplugger-admin@2.7.2
1
+ ## @handsondigital/idplugger-admin@2.7.4
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.7.2 --save
39
+ npm install @handsondigital/idplugger-admin@2.7.4 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -133,6 +133,7 @@ Class | Method | HTTP request | Description
133
133
  - [AdminPromotionCacheClear200ResponseContent](docs/AdminPromotionCacheClear200ResponseContent.md)
134
134
  - [AdminPromotionCacheClear500Response](docs/AdminPromotionCacheClear500Response.md)
135
135
  - [AdminPromotionConfigsIndex200Response](docs/AdminPromotionConfigsIndex200Response.md)
136
+ - [AdminPromotionConfigsIndex200ResponseCategoriesInnerValue](docs/AdminPromotionConfigsIndex200ResponseCategoriesInnerValue.md)
136
137
  - [AdminPromotionConfigsIndex200ResponseConfigsValue](docs/AdminPromotionConfigsIndex200ResponseConfigsValue.md)
137
138
  - [AdminPromotionConfigsIndex200ResponseConfigsValueMetadata](docs/AdminPromotionConfigsIndex200ResponseConfigsValueMetadata.md)
138
139
  - [AdminPromotionConfigsIndex500Response](docs/AdminPromotionConfigsIndex500Response.md)
package/api.ts CHANGED
@@ -816,6 +816,12 @@ export interface AdminPromotionConfigsIndex200Response {
816
816
  * @memberof AdminPromotionConfigsIndex200Response
817
817
  */
818
818
  'configs'?: { [key: string]: AdminPromotionConfigsIndex200ResponseConfigsValue; };
819
+ /**
820
+ *
821
+ * @type {Array<{ [key: string]: AdminPromotionConfigsIndex200ResponseCategoriesInnerValue; }>}
822
+ * @memberof AdminPromotionConfigsIndex200Response
823
+ */
824
+ 'categories'?: Array<{ [key: string]: AdminPromotionConfigsIndex200ResponseCategoriesInnerValue; }>;
819
825
  /**
820
826
  *
821
827
  * @type {object}
@@ -823,6 +829,19 @@ export interface AdminPromotionConfigsIndex200Response {
823
829
  */
824
830
  'pagination'?: object;
825
831
  }
832
+ /**
833
+ *
834
+ * @export
835
+ * @interface AdminPromotionConfigsIndex200ResponseCategoriesInnerValue
836
+ */
837
+ export interface AdminPromotionConfigsIndex200ResponseCategoriesInnerValue {
838
+ /**
839
+ *
840
+ * @type {string}
841
+ * @memberof AdminPromotionConfigsIndex200ResponseCategoriesInnerValue
842
+ */
843
+ 'title'?: string;
844
+ }
826
845
  /**
827
846
  *
828
847
  * @export
@@ -871,6 +890,12 @@ export interface AdminPromotionConfigsIndex200ResponseConfigsValue {
871
890
  * @memberof AdminPromotionConfigsIndex200ResponseConfigsValue
872
891
  */
873
892
  'dto'?: object | null;
893
+ /**
894
+ * Labels dos campos do DTO (se disponível)
895
+ * @type {object}
896
+ * @memberof AdminPromotionConfigsIndex200ResponseConfigsValue
897
+ */
898
+ 'labels'?: object | null;
874
899
  }
875
900
 
876
901
  export const AdminPromotionConfigsIndex200ResponseConfigsValueTypeEnum = {
@@ -1024,6 +1049,12 @@ export interface AdminPromotionConfigsShow200ResponseConfig {
1024
1049
  * @memberof AdminPromotionConfigsShow200ResponseConfig
1025
1050
  */
1026
1051
  'dto'?: object | null;
1052
+ /**
1053
+ * Labels dos campos do DTO (se disponível)
1054
+ * @type {object}
1055
+ * @memberof AdminPromotionConfigsShow200ResponseConfig
1056
+ */
1057
+ 'labels'?: object | null;
1027
1058
  }
1028
1059
  /**
1029
1060
  *
package/dist/api.d.ts CHANGED
@@ -810,6 +810,14 @@ export interface AdminPromotionConfigsIndex200Response {
810
810
  'configs'?: {
811
811
  [key: string]: AdminPromotionConfigsIndex200ResponseConfigsValue;
812
812
  };
813
+ /**
814
+ *
815
+ * @type {Array<{ [key: string]: AdminPromotionConfigsIndex200ResponseCategoriesInnerValue; }>}
816
+ * @memberof AdminPromotionConfigsIndex200Response
817
+ */
818
+ 'categories'?: Array<{
819
+ [key: string]: AdminPromotionConfigsIndex200ResponseCategoriesInnerValue;
820
+ }>;
813
821
  /**
814
822
  *
815
823
  * @type {object}
@@ -817,6 +825,19 @@ export interface AdminPromotionConfigsIndex200Response {
817
825
  */
818
826
  'pagination'?: object;
819
827
  }
828
+ /**
829
+ *
830
+ * @export
831
+ * @interface AdminPromotionConfigsIndex200ResponseCategoriesInnerValue
832
+ */
833
+ export interface AdminPromotionConfigsIndex200ResponseCategoriesInnerValue {
834
+ /**
835
+ *
836
+ * @type {string}
837
+ * @memberof AdminPromotionConfigsIndex200ResponseCategoriesInnerValue
838
+ */
839
+ 'title'?: string;
840
+ }
820
841
  /**
821
842
  *
822
843
  * @export
@@ -865,6 +886,12 @@ export interface AdminPromotionConfigsIndex200ResponseConfigsValue {
865
886
  * @memberof AdminPromotionConfigsIndex200ResponseConfigsValue
866
887
  */
867
888
  'dto'?: object | null;
889
+ /**
890
+ * Labels dos campos do DTO (se disponível)
891
+ * @type {object}
892
+ * @memberof AdminPromotionConfigsIndex200ResponseConfigsValue
893
+ */
894
+ 'labels'?: object | null;
868
895
  }
869
896
  export declare const AdminPromotionConfigsIndex200ResponseConfigsValueTypeEnum: {
870
897
  readonly Text: "text";
@@ -1015,6 +1042,12 @@ export interface AdminPromotionConfigsShow200ResponseConfig {
1015
1042
  * @memberof AdminPromotionConfigsShow200ResponseConfig
1016
1043
  */
1017
1044
  'dto'?: object | null;
1045
+ /**
1046
+ * Labels dos campos do DTO (se disponível)
1047
+ * @type {object}
1048
+ * @memberof AdminPromotionConfigsShow200ResponseConfig
1049
+ */
1050
+ 'labels'?: object | null;
1018
1051
  }
1019
1052
  /**
1020
1053
  *
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
8
8
  **action** | **string** | | [optional] [default to undefined]
9
9
  **result** | **string** | | [optional] [default to undefined]
10
10
  **configs** | [**{ [key: string]: AdminPromotionConfigsIndex200ResponseConfigsValue; }**](AdminPromotionConfigsIndex200ResponseConfigsValue.md) | | [optional] [default to undefined]
11
+ **categories** | **Array&lt;{ [key: string]: AdminPromotionConfigsIndex200ResponseCategoriesInnerValue; }&gt;** | | [optional] [default to undefined]
11
12
  **pagination** | **object** | | [optional] [default to undefined]
12
13
 
13
14
  ## Example
@@ -19,6 +20,7 @@ const instance: AdminPromotionConfigsIndex200Response = {
19
20
  action,
20
21
  result,
21
22
  configs,
23
+ categories,
22
24
  pagination,
23
25
  };
24
26
  ```
@@ -0,0 +1,20 @@
1
+ # AdminPromotionConfigsIndex200ResponseCategoriesInnerValue
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **title** | **string** | | [optional] [default to undefined]
9
+
10
+ ## Example
11
+
12
+ ```typescript
13
+ import { AdminPromotionConfigsIndex200ResponseCategoriesInnerValue } from '@handsondigital/idplugger-admin';
14
+
15
+ const instance: AdminPromotionConfigsIndex200ResponseCategoriesInnerValue = {
16
+ title,
17
+ };
18
+ ```
19
+
20
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -12,6 +12,7 @@ Name | Type | Description | Notes
12
12
  **grupo** | **string** | | [optional] [default to undefined]
13
13
  **metadata** | [**AdminPromotionConfigsIndex200ResponseConfigsValueMetadata**](AdminPromotionConfigsIndex200ResponseConfigsValueMetadata.md) | | [optional] [default to undefined]
14
14
  **dto** | **object** | Estrutura DTO tipada da configuração (se disponível) | [optional] [default to undefined]
15
+ **labels** | **object** | Labels dos campos do DTO (se disponível) | [optional] [default to undefined]
15
16
 
16
17
  ## Example
17
18
 
@@ -26,6 +27,7 @@ const instance: AdminPromotionConfigsIndex200ResponseConfigsValue = {
26
27
  grupo,
27
28
  metadata,
28
29
  dto,
30
+ labels,
29
31
  };
30
32
  ```
31
33
 
@@ -12,6 +12,7 @@ Name | Type | Description | Notes
12
12
  **grupo** | **string** | | [optional] [default to undefined]
13
13
  **metadata** | [**AdminPromotionConfigsIndex200ResponseConfigsValueMetadata**](AdminPromotionConfigsIndex200ResponseConfigsValueMetadata.md) | | [optional] [default to undefined]
14
14
  **dto** | **object** | Estrutura DTO tipada da configuração (se disponível) | [optional] [default to undefined]
15
+ **labels** | **object** | Labels dos campos do DTO (se disponível) | [optional] [default to undefined]
15
16
 
16
17
  ## Example
17
18
 
@@ -26,6 +27,7 @@ const instance: AdminPromotionConfigsShow200ResponseConfig = {
26
27
  grupo,
27
28
  metadata,
28
29
  dto,
30
+ labels,
29
31
  };
30
32
  ```
31
33
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@handsondigital/idplugger-admin",
3
- "version": "2.7.2",
3
+ "version": "2.7.4",
4
4
  "description": "OpenAPI client for @handsondigital/idplugger-admin",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {