@digital8/lighting-illusions-ts-sdk 0.0.442 → 0.0.444
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 +4 -0
- package/README.md +6 -4
- package/dist/apis/ProductApi.d.ts +11 -0
- package/dist/apis/ProductApi.js +46 -1
- package/dist/apis/TagApi.d.ts +0 -11
- package/dist/apis/TagApi.js +0 -46
- package/dist/models/AssetLiteResource.d.ts +44 -0
- package/dist/models/AssetLiteResource.js +59 -0
- package/dist/models/AssetLiteResourceArrayResponse.d.ts +33 -0
- package/dist/models/AssetLiteResourceArrayResponse.js +50 -0
- package/dist/models/ExternalApiLogResource.d.ts +1 -1
- package/dist/models/ExternalApiLogResource.js +3 -1
- package/dist/models/GetAllAttributeRequest.d.ts +9 -18
- package/dist/models/GetAllAttributeRequest.js +5 -13
- package/dist/models/GetAllOverlayTemplateRequest.d.ts +6 -13
- package/dist/models/GetAllOverlayTemplateRequest.js +3 -9
- package/dist/models/GetAllProductRequest.d.ts +31 -9
- package/dist/models/GetAllProductRequest.js +11 -8
- package/dist/models/GetAllProductTypeRequest.d.ts +1 -9
- package/dist/models/GetAllProductTypeRequest.js +1 -8
- package/dist/models/GetAllSupplierRequest.d.ts +1 -8
- package/dist/models/GetAllSupplierRequest.js +1 -7
- package/dist/models/IndexExternalApiLogRequest.d.ts +12 -12
- package/dist/models/IndexExternalApiLogRequest.js +4 -4
- package/dist/models/IndexProductChildRequest.d.ts +21 -0
- package/dist/models/IndexProductChildRequest.js +13 -1
- package/dist/models/ProductChildLiteResource.d.ts +3 -3
- package/dist/models/ProductChildLiteResource.js +3 -3
- package/dist/models/TagLiteResource.d.ts +7 -0
- package/dist/models/TagLiteResource.js +5 -0
- package/dist/models/index.d.ts +2 -0
- package/dist/models/index.js +2 -0
- package/docs/AssetLiteResource.md +38 -0
- package/docs/AssetLiteResourceArrayResponse.md +34 -0
- package/docs/GetAllAttributeRequest.md +4 -4
- package/docs/GetAllOverlayTemplateRequest.md +2 -2
- package/docs/GetAllProductRequest.md +10 -0
- package/docs/IndexExternalApiLogRequest.md +4 -4
- package/docs/IndexProductChildRequest.md +4 -0
- package/docs/ProductApi.md +67 -1
- package/docs/ProductChildLiteResource.md +1 -1
- package/docs/TagApi.md +0 -66
- package/docs/TagLiteResource.md +2 -0
- package/package.json +1 -1
- package/src/apis/ProductApi.ts +37 -1
- package/src/apis/TagApi.ts +0 -41
- package/src/models/AssetLiteResource.ts +84 -0
- package/src/models/AssetLiteResourceArrayResponse.ts +73 -0
- package/src/models/ExternalApiLogResource.ts +3 -2
- package/src/models/GetAllAttributeRequest.ts +13 -23
- package/src/models/GetAllOverlayTemplateRequest.ts +8 -16
- package/src/models/GetAllProductRequest.ts +41 -10
- package/src/models/GetAllProductTypeRequest.ts +1 -10
- package/src/models/GetAllSupplierRequest.ts +1 -9
- package/src/models/IndexExternalApiLogRequest.ts +16 -16
- package/src/models/IndexProductChildRequest.ts +26 -0
- package/src/models/ProductChildLiteResource.ts +10 -10
- package/src/models/TagLiteResource.ts +17 -0
- package/src/models/index.ts +2 -0
|
@@ -48,7 +48,37 @@ export interface GetAllProductRequest {
|
|
|
48
48
|
* @type {string}
|
|
49
49
|
* @memberof GetAllProductRequest
|
|
50
50
|
*/
|
|
51
|
-
relatedType?:
|
|
51
|
+
relatedType?: string;
|
|
52
|
+
/**
|
|
53
|
+
*
|
|
54
|
+
* @type {Array<string>}
|
|
55
|
+
* @memberof GetAllProductRequest
|
|
56
|
+
*/
|
|
57
|
+
productTypeId?: Array<string>;
|
|
58
|
+
/**
|
|
59
|
+
*
|
|
60
|
+
* @type {Array<string>}
|
|
61
|
+
* @memberof GetAllProductRequest
|
|
62
|
+
*/
|
|
63
|
+
supplierId?: Array<string>;
|
|
64
|
+
/**
|
|
65
|
+
*
|
|
66
|
+
* @type {Array<string>}
|
|
67
|
+
* @memberof GetAllProductRequest
|
|
68
|
+
*/
|
|
69
|
+
isDisabled?: Array<string>;
|
|
70
|
+
/**
|
|
71
|
+
*
|
|
72
|
+
* @type {Array<string>}
|
|
73
|
+
* @memberof GetAllProductRequest
|
|
74
|
+
*/
|
|
75
|
+
isAccessory?: Array<string>;
|
|
76
|
+
/**
|
|
77
|
+
*
|
|
78
|
+
* @type {Array<string>}
|
|
79
|
+
* @memberof GetAllProductRequest
|
|
80
|
+
*/
|
|
81
|
+
categoriesId?: Array<string>;
|
|
52
82
|
}
|
|
53
83
|
|
|
54
84
|
|
|
@@ -73,15 +103,6 @@ export const GetAllProductRequestSortDirectionEnum = {
|
|
|
73
103
|
} as const;
|
|
74
104
|
export type GetAllProductRequestSortDirectionEnum = typeof GetAllProductRequestSortDirectionEnum[keyof typeof GetAllProductRequestSortDirectionEnum];
|
|
75
105
|
|
|
76
|
-
/**
|
|
77
|
-
* @export
|
|
78
|
-
*/
|
|
79
|
-
export const GetAllProductRequestRelatedTypeEnum = {
|
|
80
|
-
Supplier: 'supplier',
|
|
81
|
-
ProductType: 'productType'
|
|
82
|
-
} as const;
|
|
83
|
-
export type GetAllProductRequestRelatedTypeEnum = typeof GetAllProductRequestRelatedTypeEnum[keyof typeof GetAllProductRequestRelatedTypeEnum];
|
|
84
|
-
|
|
85
106
|
|
|
86
107
|
/**
|
|
87
108
|
* Check if a given object implements the GetAllProductRequest interface.
|
|
@@ -105,6 +126,11 @@ export function GetAllProductRequestFromJSONTyped(json: any, ignoreDiscriminator
|
|
|
105
126
|
'sortDirection': json['sortDirection'] == null ? undefined : json['sortDirection'],
|
|
106
127
|
'relatedId': json['related_id'] == null ? undefined : json['related_id'],
|
|
107
128
|
'relatedType': json['related_type'] == null ? undefined : json['related_type'],
|
|
129
|
+
'productTypeId': json['product_type_id'] == null ? undefined : json['product_type_id'],
|
|
130
|
+
'supplierId': json['supplier_id'] == null ? undefined : json['supplier_id'],
|
|
131
|
+
'isDisabled': json['is_disabled'] == null ? undefined : json['is_disabled'],
|
|
132
|
+
'isAccessory': json['is_accessory'] == null ? undefined : json['is_accessory'],
|
|
133
|
+
'categoriesId': json['categories-id'] == null ? undefined : json['categories-id'],
|
|
108
134
|
};
|
|
109
135
|
}
|
|
110
136
|
|
|
@@ -124,6 +150,11 @@ export function GetAllProductRequestToJSONTyped(value?: GetAllProductRequest | n
|
|
|
124
150
|
'sortDirection': value['sortDirection'],
|
|
125
151
|
'related_id': value['relatedId'],
|
|
126
152
|
'related_type': value['relatedType'],
|
|
153
|
+
'product_type_id': value['productTypeId'],
|
|
154
|
+
'supplier_id': value['supplierId'],
|
|
155
|
+
'is_disabled': value['isDisabled'],
|
|
156
|
+
'is_accessory': value['isAccessory'],
|
|
157
|
+
'categories-id': value['categoriesId'],
|
|
127
158
|
};
|
|
128
159
|
}
|
|
129
160
|
|
|
@@ -48,7 +48,7 @@ export interface GetAllProductTypeRequest {
|
|
|
48
48
|
* @type {string}
|
|
49
49
|
* @memberof GetAllProductTypeRequest
|
|
50
50
|
*/
|
|
51
|
-
relatedType?:
|
|
51
|
+
relatedType?: string;
|
|
52
52
|
}
|
|
53
53
|
|
|
54
54
|
|
|
@@ -72,15 +72,6 @@ export const GetAllProductTypeRequestSortDirectionEnum = {
|
|
|
72
72
|
} as const;
|
|
73
73
|
export type GetAllProductTypeRequestSortDirectionEnum = typeof GetAllProductTypeRequestSortDirectionEnum[keyof typeof GetAllProductTypeRequestSortDirectionEnum];
|
|
74
74
|
|
|
75
|
-
/**
|
|
76
|
-
* @export
|
|
77
|
-
*/
|
|
78
|
-
export const GetAllProductTypeRequestRelatedTypeEnum = {
|
|
79
|
-
Attribute: 'attribute',
|
|
80
|
-
Product: 'product'
|
|
81
|
-
} as const;
|
|
82
|
-
export type GetAllProductTypeRequestRelatedTypeEnum = typeof GetAllProductTypeRequestRelatedTypeEnum[keyof typeof GetAllProductTypeRequestRelatedTypeEnum];
|
|
83
|
-
|
|
84
75
|
|
|
85
76
|
/**
|
|
86
77
|
* Check if a given object implements the GetAllProductTypeRequest interface.
|
|
@@ -48,7 +48,7 @@ export interface GetAllSupplierRequest {
|
|
|
48
48
|
* @type {string}
|
|
49
49
|
* @memberof GetAllSupplierRequest
|
|
50
50
|
*/
|
|
51
|
-
relatedType?:
|
|
51
|
+
relatedType?: string;
|
|
52
52
|
}
|
|
53
53
|
|
|
54
54
|
|
|
@@ -74,14 +74,6 @@ export const GetAllSupplierRequestSortDirectionEnum = {
|
|
|
74
74
|
} as const;
|
|
75
75
|
export type GetAllSupplierRequestSortDirectionEnum = typeof GetAllSupplierRequestSortDirectionEnum[keyof typeof GetAllSupplierRequestSortDirectionEnum];
|
|
76
76
|
|
|
77
|
-
/**
|
|
78
|
-
* @export
|
|
79
|
-
*/
|
|
80
|
-
export const GetAllSupplierRequestRelatedTypeEnum = {
|
|
81
|
-
Product: 'product'
|
|
82
|
-
} as const;
|
|
83
|
-
export type GetAllSupplierRequestRelatedTypeEnum = typeof GetAllSupplierRequestRelatedTypeEnum[keyof typeof GetAllSupplierRequestRelatedTypeEnum];
|
|
84
|
-
|
|
85
77
|
|
|
86
78
|
/**
|
|
87
79
|
* Check if a given object implements the GetAllSupplierRequest interface.
|
|
@@ -39,52 +39,52 @@ export interface IndexExternalApiLogRequest {
|
|
|
39
39
|
sortDirection?: IndexExternalApiLogRequestSortDirectionEnum;
|
|
40
40
|
/**
|
|
41
41
|
*
|
|
42
|
-
* @type {
|
|
42
|
+
* @type {number}
|
|
43
43
|
* @memberof IndexExternalApiLogRequest
|
|
44
44
|
*/
|
|
45
|
-
|
|
45
|
+
perPage?: number;
|
|
46
46
|
/**
|
|
47
47
|
*
|
|
48
|
-
* @type {
|
|
48
|
+
* @type {number}
|
|
49
49
|
* @memberof IndexExternalApiLogRequest
|
|
50
50
|
*/
|
|
51
|
-
|
|
51
|
+
page?: number;
|
|
52
52
|
/**
|
|
53
53
|
*
|
|
54
54
|
* @type {Array<string>}
|
|
55
55
|
* @memberof IndexExternalApiLogRequest
|
|
56
56
|
*/
|
|
57
|
-
|
|
57
|
+
provider?: Array<string>;
|
|
58
58
|
/**
|
|
59
59
|
*
|
|
60
60
|
* @type {Array<string>}
|
|
61
61
|
* @memberof IndexExternalApiLogRequest
|
|
62
62
|
*/
|
|
63
|
-
|
|
63
|
+
responseCode?: Array<string>;
|
|
64
64
|
/**
|
|
65
65
|
*
|
|
66
66
|
* @type {Array<string>}
|
|
67
67
|
* @memberof IndexExternalApiLogRequest
|
|
68
68
|
*/
|
|
69
|
-
|
|
69
|
+
httpMethod?: Array<string>;
|
|
70
70
|
/**
|
|
71
71
|
*
|
|
72
72
|
* @type {Array<string>}
|
|
73
73
|
* @memberof IndexExternalApiLogRequest
|
|
74
74
|
*/
|
|
75
|
-
|
|
75
|
+
externalApiLoggableType?: Array<string>;
|
|
76
76
|
/**
|
|
77
77
|
*
|
|
78
|
-
* @type {
|
|
78
|
+
* @type {Array<string>}
|
|
79
79
|
* @memberof IndexExternalApiLogRequest
|
|
80
80
|
*/
|
|
81
|
-
|
|
81
|
+
externalApiLoggableId?: Array<string>;
|
|
82
82
|
/**
|
|
83
83
|
*
|
|
84
|
-
* @type {
|
|
84
|
+
* @type {Array<string>}
|
|
85
85
|
* @memberof IndexExternalApiLogRequest
|
|
86
86
|
*/
|
|
87
|
-
|
|
87
|
+
siteId?: Array<string>;
|
|
88
88
|
}
|
|
89
89
|
|
|
90
90
|
|
|
@@ -132,14 +132,14 @@ export function IndexExternalApiLogRequestFromJSONTyped(json: any, ignoreDiscrim
|
|
|
132
132
|
'search': json['search'] == null ? undefined : json['search'],
|
|
133
133
|
'sortBy': json['sortBy'] == null ? undefined : json['sortBy'],
|
|
134
134
|
'sortDirection': json['sortDirection'] == null ? undefined : json['sortDirection'],
|
|
135
|
+
'perPage': json['per_page'] == null ? undefined : json['per_page'],
|
|
136
|
+
'page': json['page'] == null ? undefined : json['page'],
|
|
135
137
|
'provider': json['provider'] == null ? undefined : json['provider'],
|
|
136
138
|
'responseCode': json['response_code'] == null ? undefined : json['response_code'],
|
|
137
139
|
'httpMethod': json['http_method'] == null ? undefined : json['http_method'],
|
|
138
140
|
'externalApiLoggableType': json['external_api_loggable_type'] == null ? undefined : json['external_api_loggable_type'],
|
|
139
141
|
'externalApiLoggableId': json['external_api_loggable_id'] == null ? undefined : json['external_api_loggable_id'],
|
|
140
142
|
'siteId': json['site_id'] == null ? undefined : json['site_id'],
|
|
141
|
-
'perPage': json['per_page'] == null ? undefined : json['per_page'],
|
|
142
|
-
'page': json['page'] == null ? undefined : json['page'],
|
|
143
143
|
};
|
|
144
144
|
}
|
|
145
145
|
|
|
@@ -157,14 +157,14 @@ export function IndexExternalApiLogRequestToJSONTyped(value?: IndexExternalApiLo
|
|
|
157
157
|
'search': value['search'],
|
|
158
158
|
'sortBy': value['sortBy'],
|
|
159
159
|
'sortDirection': value['sortDirection'],
|
|
160
|
+
'per_page': value['perPage'],
|
|
161
|
+
'page': value['page'],
|
|
160
162
|
'provider': value['provider'],
|
|
161
163
|
'response_code': value['responseCode'],
|
|
162
164
|
'http_method': value['httpMethod'],
|
|
163
165
|
'external_api_loggable_type': value['externalApiLoggableType'],
|
|
164
166
|
'external_api_loggable_id': value['externalApiLoggableId'],
|
|
165
167
|
'site_id': value['siteId'],
|
|
166
|
-
'per_page': value['perPage'],
|
|
167
|
-
'page': value['page'],
|
|
168
168
|
};
|
|
169
169
|
}
|
|
170
170
|
|
|
@@ -79,6 +79,18 @@ export interface IndexProductChildRequest {
|
|
|
79
79
|
* @memberof IndexProductChildRequest
|
|
80
80
|
*/
|
|
81
81
|
hasNetsuiteId?: Array<string>;
|
|
82
|
+
/**
|
|
83
|
+
*
|
|
84
|
+
* @type {string}
|
|
85
|
+
* @memberof IndexProductChildRequest
|
|
86
|
+
*/
|
|
87
|
+
relatedType?: IndexProductChildRequestRelatedTypeEnum;
|
|
88
|
+
/**
|
|
89
|
+
*
|
|
90
|
+
* @type {number}
|
|
91
|
+
* @memberof IndexProductChildRequest
|
|
92
|
+
*/
|
|
93
|
+
relatedId?: number;
|
|
82
94
|
}
|
|
83
95
|
|
|
84
96
|
|
|
@@ -111,6 +123,16 @@ export const IndexProductChildRequestSortDirectionEnum = {
|
|
|
111
123
|
} as const;
|
|
112
124
|
export type IndexProductChildRequestSortDirectionEnum = typeof IndexProductChildRequestSortDirectionEnum[keyof typeof IndexProductChildRequestSortDirectionEnum];
|
|
113
125
|
|
|
126
|
+
/**
|
|
127
|
+
* @export
|
|
128
|
+
*/
|
|
129
|
+
export const IndexProductChildRequestRelatedTypeEnum = {
|
|
130
|
+
OverlayTemplate: 'overlayTemplate',
|
|
131
|
+
Supplier: 'supplier',
|
|
132
|
+
Tag: 'tag'
|
|
133
|
+
} as const;
|
|
134
|
+
export type IndexProductChildRequestRelatedTypeEnum = typeof IndexProductChildRequestRelatedTypeEnum[keyof typeof IndexProductChildRequestRelatedTypeEnum];
|
|
135
|
+
|
|
114
136
|
|
|
115
137
|
/**
|
|
116
138
|
* Check if a given object implements the IndexProductChildRequest interface.
|
|
@@ -139,6 +161,8 @@ export function IndexProductChildRequestFromJSONTyped(json: any, ignoreDiscrimin
|
|
|
139
161
|
'siteDetailsSiteId': json['siteDetails-site_id'] == null ? undefined : json['siteDetails-site_id'],
|
|
140
162
|
'isDisabled': json['is_disabled'] == null ? undefined : json['is_disabled'],
|
|
141
163
|
'hasNetsuiteId': json['has_netsuite_id'] == null ? undefined : json['has_netsuite_id'],
|
|
164
|
+
'relatedType': json['related_type'] == null ? undefined : json['related_type'],
|
|
165
|
+
'relatedId': json['related_id'] == null ? undefined : json['related_id'],
|
|
142
166
|
};
|
|
143
167
|
}
|
|
144
168
|
|
|
@@ -163,6 +187,8 @@ export function IndexProductChildRequestToJSONTyped(value?: IndexProductChildReq
|
|
|
163
187
|
'siteDetails-site_id': value['siteDetailsSiteId'],
|
|
164
188
|
'is_disabled': value['isDisabled'],
|
|
165
189
|
'has_netsuite_id': value['hasNetsuiteId'],
|
|
190
|
+
'related_type': value['relatedType'],
|
|
191
|
+
'related_id': value['relatedId'],
|
|
166
192
|
};
|
|
167
193
|
}
|
|
168
194
|
|
|
@@ -13,13 +13,13 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
import { mapValues } from '../runtime';
|
|
16
|
-
import type {
|
|
16
|
+
import type { AssetLiteResource } from './AssetLiteResource';
|
|
17
17
|
import {
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
} from './
|
|
18
|
+
AssetLiteResourceFromJSON,
|
|
19
|
+
AssetLiteResourceFromJSONTyped,
|
|
20
|
+
AssetLiteResourceToJSON,
|
|
21
|
+
AssetLiteResourceToJSONTyped,
|
|
22
|
+
} from './AssetLiteResource';
|
|
23
23
|
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
@@ -71,10 +71,10 @@ export interface ProductChildLiteResource {
|
|
|
71
71
|
netsuiteId: number;
|
|
72
72
|
/**
|
|
73
73
|
*
|
|
74
|
-
* @type {
|
|
74
|
+
* @type {AssetLiteResource}
|
|
75
75
|
* @memberof ProductChildLiteResource
|
|
76
76
|
*/
|
|
77
|
-
thumbnail:
|
|
77
|
+
thumbnail: AssetLiteResource | null;
|
|
78
78
|
}
|
|
79
79
|
|
|
80
80
|
/**
|
|
@@ -109,7 +109,7 @@ export function ProductChildLiteResourceFromJSONTyped(json: any, ignoreDiscrimin
|
|
|
109
109
|
'sku': json['sku'],
|
|
110
110
|
'stock': json['stock'],
|
|
111
111
|
'netsuiteId': json['netsuiteId'],
|
|
112
|
-
'thumbnail':
|
|
112
|
+
'thumbnail': AssetLiteResourceFromJSON(json['thumbnail']),
|
|
113
113
|
};
|
|
114
114
|
}
|
|
115
115
|
|
|
@@ -131,7 +131,7 @@ export function ProductChildLiteResourceToJSONTyped(value?: ProductChildLiteReso
|
|
|
131
131
|
'sku': value['sku'],
|
|
132
132
|
'stock': value['stock'],
|
|
133
133
|
'netsuiteId': value['netsuiteId'],
|
|
134
|
-
'thumbnail':
|
|
134
|
+
'thumbnail': AssetLiteResourceToJSON(value['thumbnail']),
|
|
135
135
|
};
|
|
136
136
|
}
|
|
137
137
|
|
|
@@ -13,6 +13,14 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
import { mapValues } from '../runtime';
|
|
16
|
+
import type { SiteLiteResource } from './SiteLiteResource';
|
|
17
|
+
import {
|
|
18
|
+
SiteLiteResourceFromJSON,
|
|
19
|
+
SiteLiteResourceFromJSONTyped,
|
|
20
|
+
SiteLiteResourceToJSON,
|
|
21
|
+
SiteLiteResourceToJSONTyped,
|
|
22
|
+
} from './SiteLiteResource';
|
|
23
|
+
|
|
16
24
|
/**
|
|
17
25
|
*
|
|
18
26
|
* @export
|
|
@@ -31,6 +39,12 @@ export interface TagLiteResource {
|
|
|
31
39
|
* @memberof TagLiteResource
|
|
32
40
|
*/
|
|
33
41
|
name: string;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {SiteLiteResource}
|
|
45
|
+
* @memberof TagLiteResource
|
|
46
|
+
*/
|
|
47
|
+
site: SiteLiteResource | null;
|
|
34
48
|
}
|
|
35
49
|
|
|
36
50
|
/**
|
|
@@ -39,6 +53,7 @@ export interface TagLiteResource {
|
|
|
39
53
|
export function instanceOfTagLiteResource(value: object): value is TagLiteResource {
|
|
40
54
|
if (!('id' in value) || value['id'] === undefined) return false;
|
|
41
55
|
if (!('name' in value) || value['name'] === undefined) return false;
|
|
56
|
+
if (!('site' in value) || value['site'] === undefined) return false;
|
|
42
57
|
return true;
|
|
43
58
|
}
|
|
44
59
|
|
|
@@ -54,6 +69,7 @@ export function TagLiteResourceFromJSONTyped(json: any, ignoreDiscriminator: boo
|
|
|
54
69
|
|
|
55
70
|
'id': json['id'],
|
|
56
71
|
'name': json['name'],
|
|
72
|
+
'site': SiteLiteResourceFromJSON(json['site']),
|
|
57
73
|
};
|
|
58
74
|
}
|
|
59
75
|
|
|
@@ -70,6 +86,7 @@ export function TagLiteResourceToJSONTyped(value?: TagLiteResource | null, ignor
|
|
|
70
86
|
|
|
71
87
|
'id': value['id'],
|
|
72
88
|
'name': value['name'],
|
|
89
|
+
'site': SiteLiteResourceToJSON(value['site']),
|
|
73
90
|
};
|
|
74
91
|
}
|
|
75
92
|
|
package/src/models/index.ts
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
export * from './AssetFileForUploadResource';
|
|
4
4
|
export * from './AssetFileForUploadResourceArrayResponse';
|
|
5
|
+
export * from './AssetLiteResource';
|
|
6
|
+
export * from './AssetLiteResourceArrayResponse';
|
|
5
7
|
export * from './AssetResource';
|
|
6
8
|
export * from './AssetResourceArrayResponse';
|
|
7
9
|
export * from './AttributeFieldType';
|