@handsondigital/idplugger-admin 2.7.2 → 2.7.3
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
CHANGED
|
@@ -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.
|
|
1
|
+
## @handsondigital/idplugger-admin@2.7.3
|
|
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.
|
|
39
|
+
npm install @handsondigital/idplugger-admin@2.7.3 --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
|
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
|
|
@@ -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<{ [key: string]: AdminPromotionConfigsIndex200ResponseCategoriesInnerValue; }>** | | [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)
|