@digital8/lighting-illusions-ts-sdk 0.0.463 → 0.0.465
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 +64 -2
- package/README.md +42 -6
- package/dist/apis/AttributeApi.d.ts +3 -3
- package/dist/apis/AttributeApi.js +1 -1
- package/dist/apis/OverlayTemplateApi.d.ts +3 -3
- package/dist/apis/OverlayTemplateApi.js +1 -1
- package/dist/apis/ProductApi.d.ts +78 -17
- package/dist/apis/ProductApi.js +271 -24
- package/dist/apis/ProductTypeApi.d.ts +3 -3
- package/dist/apis/ProductTypeApi.js +1 -1
- package/dist/apis/SiteApi.d.ts +5 -5
- package/dist/apis/SiteApi.js +2 -2
- package/dist/apis/SupplierApi.d.ts +3 -3
- package/dist/apis/SupplierApi.js +1 -1
- package/dist/apis/TagApi.d.ts +7 -7
- package/dist/apis/TagApi.js +2 -2
- package/dist/models/AssetLiteResource.d.ts +6 -0
- package/dist/models/AssetLiteResource.js +4 -0
- package/dist/models/AttachAccessoriesProductChildRequest.d.ts +32 -0
- package/dist/models/AttachAccessoriesProductChildRequest.js +51 -0
- package/dist/models/AttributeListResource.d.ts +56 -0
- package/dist/models/AttributeListResource.js +67 -0
- package/dist/models/AttributeListResourceArrayResponse.d.ts +33 -0
- package/dist/models/AttributeListResourceArrayResponse.js +50 -0
- package/dist/models/ExternalApiLogListResource.d.ts +56 -0
- package/dist/models/ExternalApiLogListResource.js +63 -0
- package/dist/models/ExternalApiLogListResourceArrayResponse.d.ts +33 -0
- package/dist/models/ExternalApiLogListResourceArrayResponse.js +50 -0
- package/dist/models/ExternalApiLogResource.d.ts +1 -1
- package/dist/models/ExternalApiLogResource.js +3 -1
- package/dist/models/GetAllAttributeRequest.d.ts +15 -9
- package/dist/models/GetAllAttributeRequest.js +6 -4
- package/dist/models/GetAllOverlayTemplateRequest.d.ts +12 -6
- package/dist/models/GetAllOverlayTemplateRequest.js +4 -2
- package/dist/models/GetAllProductChildRequest.d.ts +6 -0
- package/dist/models/GetAllProductChildRequest.js +2 -0
- package/dist/models/GetAllProductRequest.d.ts +36 -0
- package/dist/models/GetAllProductRequest.js +12 -0
- package/dist/models/GetAllProductTypeRequest.d.ts +6 -0
- package/dist/models/GetAllProductTypeRequest.js +2 -0
- package/dist/models/GetAllSupplierRequest.d.ts +6 -0
- package/dist/models/GetAllSupplierRequest.js +2 -0
- package/dist/models/IndexAttributeRequest.d.ts +25 -0
- package/dist/models/IndexAttributeRequest.js +13 -1
- package/dist/models/IndexExternalApiLogRequest.d.ts +21 -3
- package/dist/models/IndexExternalApiLogRequest.js +10 -4
- package/dist/models/IndexOverlayTemplateRequest.d.ts +25 -0
- package/dist/models/IndexOverlayTemplateRequest.js +13 -1
- package/dist/models/IndexProductChildRequest.d.ts +6 -0
- package/dist/models/IndexProductChildRequest.js +2 -0
- package/dist/models/IndexProductRequest.d.ts +130 -0
- package/dist/models/IndexProductRequest.js +97 -0
- package/dist/models/IndexProductTypeRequest.d.ts +25 -0
- package/dist/models/IndexProductTypeRequest.js +13 -1
- package/dist/models/IndexSiteNotificationRequest.d.ts +18 -0
- package/dist/models/IndexSiteNotificationRequest.js +6 -0
- package/dist/models/IndexSiteRequest.d.ts +18 -0
- package/dist/models/IndexSiteRequest.js +6 -0
- package/dist/models/IndexSupplierRequest.d.ts +25 -0
- package/dist/models/IndexSupplierRequest.js +13 -1
- package/dist/models/IndexTagRequest.d.ts +25 -0
- package/dist/models/IndexTagRequest.js +13 -1
- package/dist/models/OverlayTemplateListResource.d.ts +45 -0
- package/dist/models/OverlayTemplateListResource.js +60 -0
- package/dist/models/OverlayTemplateListResourceArrayResponse.d.ts +33 -0
- package/dist/models/OverlayTemplateListResourceArrayResponse.js +50 -0
- package/dist/models/PaginatedAttributeListResourceResponse.d.ts +40 -0
- package/dist/models/PaginatedAttributeListResourceResponse.js +57 -0
- package/dist/models/PaginatedExternalApiLogListResourceResponse.d.ts +40 -0
- package/dist/models/PaginatedExternalApiLogListResourceResponse.js +57 -0
- package/dist/models/PaginatedOverlayTemplateListResourceResponse.d.ts +40 -0
- package/dist/models/PaginatedOverlayTemplateListResourceResponse.js +57 -0
- package/dist/models/PaginatedProductChildListResourceResponse.d.ts +40 -0
- package/dist/models/PaginatedProductChildListResourceResponse.js +57 -0
- package/dist/models/PaginatedProductListResourceResponse.d.ts +40 -0
- package/dist/models/PaginatedProductListResourceResponse.js +57 -0
- package/dist/models/PaginatedProductTypeListResourceResponse.d.ts +40 -0
- package/dist/models/PaginatedProductTypeListResourceResponse.js +57 -0
- package/dist/models/PaginatedSiteListResourceResponse.d.ts +40 -0
- package/dist/models/PaginatedSiteListResourceResponse.js +57 -0
- package/dist/models/PaginatedSiteNotificationListResourceResponse.d.ts +40 -0
- package/dist/models/PaginatedSiteNotificationListResourceResponse.js +57 -0
- package/dist/models/PaginatedSupplierListResourceResponse.d.ts +40 -0
- package/dist/models/PaginatedSupplierListResourceResponse.js +57 -0
- package/dist/models/PaginatedTagListResourceResponse.d.ts +40 -0
- package/dist/models/PaginatedTagListResourceResponse.js +57 -0
- package/dist/models/ProductChildListResource.d.ts +63 -0
- package/dist/models/ProductChildListResource.js +72 -0
- package/dist/models/ProductChildListResourceArrayResponse.d.ts +33 -0
- package/dist/models/ProductChildListResourceArrayResponse.js +50 -0
- package/dist/models/ProductListResource.d.ts +38 -0
- package/dist/models/ProductListResource.js +55 -0
- package/dist/models/ProductListResourceArrayResponse.d.ts +33 -0
- package/dist/models/ProductListResourceArrayResponse.js +50 -0
- package/dist/models/ProductTypeListResource.d.ts +38 -0
- package/dist/models/ProductTypeListResource.js +55 -0
- package/dist/models/ProductTypeListResourceArrayResponse.d.ts +33 -0
- package/dist/models/ProductTypeListResourceArrayResponse.js +50 -0
- package/dist/models/SiteListResource.d.ts +50 -0
- package/dist/models/SiteListResource.js +63 -0
- package/dist/models/SiteListResourceArrayResponse.d.ts +33 -0
- package/dist/models/SiteListResourceArrayResponse.js +50 -0
- package/dist/models/SiteNotificationListResource.d.ts +57 -0
- package/dist/models/SiteNotificationListResource.js +64 -0
- package/dist/models/SiteNotificationListResourceArrayResponse.d.ts +33 -0
- package/dist/models/SiteNotificationListResourceArrayResponse.js +50 -0
- package/dist/models/SupplierListResource.d.ts +57 -0
- package/dist/models/SupplierListResource.js +68 -0
- package/dist/models/SupplierListResourceArrayResponse.d.ts +33 -0
- package/dist/models/SupplierListResourceArrayResponse.js +50 -0
- package/dist/models/TagListResource.d.ts +57 -0
- package/dist/models/TagListResource.js +68 -0
- package/dist/models/TagListResourceArrayResponse.d.ts +33 -0
- package/dist/models/TagListResourceArrayResponse.js +50 -0
- package/dist/models/UnlinkAssetableOverlayTemplateRequest.d.ts +6 -0
- package/dist/models/UnlinkAssetableOverlayTemplateRequest.js +2 -0
- package/dist/models/index.d.ts +32 -1
- package/dist/models/index.js +32 -1
- package/docs/AssetLiteResource.md +2 -0
- package/docs/{LinkProductChildrenTagRequest.md → AttachAccessoriesProductChildRequest.md} +4 -4
- package/docs/AttributeApi.md +3 -3
- package/docs/AttributeListResource.md +42 -0
- package/docs/AttributeListResourceArrayResponse.md +34 -0
- package/docs/ExternalApiLogListResource.md +42 -0
- package/docs/ExternalApiLogListResourceArrayResponse.md +34 -0
- package/docs/GetAllAttributeRequest.md +6 -4
- package/docs/GetAllOverlayTemplateRequest.md +4 -2
- package/docs/GetAllProductChildRequest.md +2 -0
- package/docs/GetAllProductRequest.md +12 -0
- package/docs/GetAllProductTypeRequest.md +2 -0
- package/docs/GetAllSupplierRequest.md +2 -0
- package/docs/IndexAttributeRequest.md +6 -0
- package/docs/IndexExternalApiLogRequest.md +10 -4
- package/docs/IndexOverlayTemplateRequest.md +6 -0
- package/docs/IndexProductChildRequest.md +2 -0
- package/docs/IndexProductRequest.md +58 -0
- package/docs/IndexProductTypeRequest.md +6 -0
- package/docs/IndexSiteNotificationRequest.md +6 -0
- package/docs/IndexSiteRequest.md +6 -0
- package/docs/IndexSupplierRequest.md +6 -0
- package/docs/IndexTagRequest.md +6 -0
- package/docs/OverlayTemplateApi.md +3 -3
- package/docs/OverlayTemplateListResource.md +38 -0
- package/docs/OverlayTemplateListResourceArrayResponse.md +34 -0
- package/docs/PaginatedAttributeListResourceResponse.md +36 -0
- package/docs/PaginatedExternalApiLogListResourceResponse.md +36 -0
- package/docs/PaginatedOverlayTemplateListResourceResponse.md +36 -0
- package/docs/PaginatedProductChildListResourceResponse.md +36 -0
- package/docs/PaginatedProductListResourceResponse.md +36 -0
- package/docs/PaginatedProductTypeListResourceResponse.md +36 -0
- package/docs/PaginatedSiteListResourceResponse.md +36 -0
- package/docs/PaginatedSiteNotificationListResourceResponse.md +36 -0
- package/docs/PaginatedSupplierListResourceResponse.md +36 -0
- package/docs/PaginatedTagListResourceResponse.md +36 -0
- package/docs/ProductApi.md +377 -29
- package/docs/ProductChildListResource.md +44 -0
- package/docs/ProductChildListResourceArrayResponse.md +34 -0
- package/docs/ProductListResource.md +36 -0
- package/docs/ProductListResourceArrayResponse.md +34 -0
- package/docs/ProductTypeApi.md +3 -3
- package/docs/ProductTypeListResource.md +36 -0
- package/docs/ProductTypeListResourceArrayResponse.md +34 -0
- package/docs/SiteApi.md +6 -6
- package/docs/SiteListResource.md +40 -0
- package/docs/SiteListResourceArrayResponse.md +34 -0
- package/docs/SiteNotificationListResource.md +42 -0
- package/docs/SiteNotificationListResourceArrayResponse.md +34 -0
- package/docs/SupplierApi.md +3 -3
- package/docs/SupplierListResource.md +42 -0
- package/docs/SupplierListResourceArrayResponse.md +34 -0
- package/docs/TagApi.md +10 -10
- package/docs/TagListResource.md +42 -0
- package/docs/TagListResourceArrayResponse.md +34 -0
- package/docs/UnlinkAssetableOverlayTemplateRequest.md +2 -0
- package/package.json +1 -1
- package/src/apis/AttributeApi.ts +6 -6
- package/src/apis/OverlayTemplateApi.ts +6 -6
- package/src/apis/ProductApi.ts +282 -32
- package/src/apis/ProductTypeApi.ts +6 -6
- package/src/apis/SiteApi.ts +12 -12
- package/src/apis/SupplierApi.ts +6 -6
- package/src/apis/TagApi.ts +14 -14
- package/src/models/AssetLiteResource.ts +9 -0
- package/src/models/AttachAccessoriesProductChildRequest.ts +66 -0
- package/src/models/AttributeListResource.ts +102 -0
- package/src/models/AttributeListResourceArrayResponse.ts +73 -0
- package/src/models/ExternalApiLogListResource.ts +100 -0
- package/src/models/ExternalApiLogListResourceArrayResponse.ts +73 -0
- package/src/models/ExternalApiLogResource.ts +3 -2
- package/src/models/GetAllAttributeRequest.ts +21 -13
- package/src/models/GetAllOverlayTemplateRequest.ts +16 -8
- package/src/models/GetAllProductChildRequest.ts +8 -0
- package/src/models/GetAllProductRequest.ts +48 -0
- package/src/models/GetAllProductTypeRequest.ts +8 -0
- package/src/models/GetAllSupplierRequest.ts +8 -0
- package/src/models/IndexAttributeRequest.ts +32 -0
- package/src/models/IndexExternalApiLogRequest.ts +31 -7
- package/src/models/IndexOverlayTemplateRequest.ts +32 -0
- package/src/models/IndexProductChildRequest.ts +8 -0
- package/src/models/IndexProductRequest.ts +192 -0
- package/src/models/IndexProductTypeRequest.ts +32 -0
- package/src/models/IndexSiteNotificationRequest.ts +24 -0
- package/src/models/IndexSiteRequest.ts +24 -0
- package/src/models/IndexSupplierRequest.ts +32 -0
- package/src/models/IndexTagRequest.ts +32 -0
- package/src/models/OverlayTemplateListResource.ts +92 -0
- package/src/models/OverlayTemplateListResourceArrayResponse.ts +73 -0
- package/src/models/PaginatedAttributeListResourceResponse.ts +90 -0
- package/src/models/PaginatedExternalApiLogListResourceResponse.ts +90 -0
- package/src/models/PaginatedOverlayTemplateListResourceResponse.ts +90 -0
- package/src/models/PaginatedProductChildListResourceResponse.ts +90 -0
- package/src/models/PaginatedProductListResourceResponse.ts +90 -0
- package/src/models/PaginatedProductTypeListResourceResponse.ts +90 -0
- package/src/models/PaginatedSiteListResourceResponse.ts +90 -0
- package/src/models/PaginatedSiteNotificationListResourceResponse.ts +90 -0
- package/src/models/PaginatedSupplierListResourceResponse.ts +90 -0
- package/src/models/PaginatedTagListResourceResponse.ts +90 -0
- package/src/models/ProductChildListResource.ts +119 -0
- package/src/models/ProductChildListResourceArrayResponse.ts +73 -0
- package/src/models/ProductListResource.ts +75 -0
- package/src/models/ProductListResourceArrayResponse.ts +73 -0
- package/src/models/ProductTypeListResource.ts +75 -0
- package/src/models/ProductTypeListResourceArrayResponse.ts +73 -0
- package/src/models/SiteListResource.ts +93 -0
- package/src/models/SiteListResourceArrayResponse.ts +73 -0
- package/src/models/SiteNotificationListResource.ts +108 -0
- package/src/models/SiteNotificationListResourceArrayResponse.ts +73 -0
- package/src/models/SupplierListResource.ts +110 -0
- package/src/models/SupplierListResourceArrayResponse.ts +73 -0
- package/src/models/TagListResource.ts +110 -0
- package/src/models/TagListResourceArrayResponse.ts +73 -0
- package/src/models/UnlinkAssetableOverlayTemplateRequest.ts +8 -0
- package/src/models/index.ts +32 -1
- package/dist/models/LinkProductChildrenTagRequest.d.ts +0 -32
- package/dist/models/LinkProductChildrenTagRequest.js +0 -51
- package/src/models/LinkProductChildrenTagRequest.ts +0 -66
|
@@ -49,6 +49,24 @@ export interface IndexProductTypeRequest {
|
|
|
49
49
|
* @memberof IndexProductTypeRequest
|
|
50
50
|
*/
|
|
51
51
|
page?: number;
|
|
52
|
+
/**
|
|
53
|
+
*
|
|
54
|
+
* @type {number}
|
|
55
|
+
* @memberof IndexProductTypeRequest
|
|
56
|
+
*/
|
|
57
|
+
relatedId?: number;
|
|
58
|
+
/**
|
|
59
|
+
*
|
|
60
|
+
* @type {string}
|
|
61
|
+
* @memberof IndexProductTypeRequest
|
|
62
|
+
*/
|
|
63
|
+
relatedType?: IndexProductTypeRequestRelatedTypeEnum;
|
|
64
|
+
/**
|
|
65
|
+
*
|
|
66
|
+
* @type {boolean}
|
|
67
|
+
* @memberof IndexProductTypeRequest
|
|
68
|
+
*/
|
|
69
|
+
includesRelations?: boolean;
|
|
52
70
|
}
|
|
53
71
|
|
|
54
72
|
|
|
@@ -72,6 +90,14 @@ export const IndexProductTypeRequestSortDirectionEnum = {
|
|
|
72
90
|
} as const;
|
|
73
91
|
export type IndexProductTypeRequestSortDirectionEnum = typeof IndexProductTypeRequestSortDirectionEnum[keyof typeof IndexProductTypeRequestSortDirectionEnum];
|
|
74
92
|
|
|
93
|
+
/**
|
|
94
|
+
* @export
|
|
95
|
+
*/
|
|
96
|
+
export const IndexProductTypeRequestRelatedTypeEnum = {
|
|
97
|
+
Attribute: 'attribute'
|
|
98
|
+
} as const;
|
|
99
|
+
export type IndexProductTypeRequestRelatedTypeEnum = typeof IndexProductTypeRequestRelatedTypeEnum[keyof typeof IndexProductTypeRequestRelatedTypeEnum];
|
|
100
|
+
|
|
75
101
|
|
|
76
102
|
/**
|
|
77
103
|
* Check if a given object implements the IndexProductTypeRequest interface.
|
|
@@ -95,6 +121,9 @@ export function IndexProductTypeRequestFromJSONTyped(json: any, ignoreDiscrimina
|
|
|
95
121
|
'sortDirection': json['sortDirection'] == null ? undefined : json['sortDirection'],
|
|
96
122
|
'perPage': json['per_page'] == null ? undefined : json['per_page'],
|
|
97
123
|
'page': json['page'] == null ? undefined : json['page'],
|
|
124
|
+
'relatedId': json['related_id'] == null ? undefined : json['related_id'],
|
|
125
|
+
'relatedType': json['related_type'] == null ? undefined : json['related_type'],
|
|
126
|
+
'includesRelations': json['includes_relations'] == null ? undefined : json['includes_relations'],
|
|
98
127
|
};
|
|
99
128
|
}
|
|
100
129
|
|
|
@@ -114,6 +143,9 @@ export function IndexProductTypeRequestToJSONTyped(value?: IndexProductTypeReque
|
|
|
114
143
|
'sortDirection': value['sortDirection'],
|
|
115
144
|
'per_page': value['perPage'],
|
|
116
145
|
'page': value['page'],
|
|
146
|
+
'related_id': value['relatedId'],
|
|
147
|
+
'related_type': value['relatedType'],
|
|
148
|
+
'includes_relations': value['includesRelations'],
|
|
117
149
|
};
|
|
118
150
|
}
|
|
119
151
|
|
|
@@ -55,6 +55,24 @@ export interface IndexSiteNotificationRequest {
|
|
|
55
55
|
* @memberof IndexSiteNotificationRequest
|
|
56
56
|
*/
|
|
57
57
|
siteId?: Array<string>;
|
|
58
|
+
/**
|
|
59
|
+
*
|
|
60
|
+
* @type {number}
|
|
61
|
+
* @memberof IndexSiteNotificationRequest
|
|
62
|
+
*/
|
|
63
|
+
relatedId?: number;
|
|
64
|
+
/**
|
|
65
|
+
*
|
|
66
|
+
* @type {string}
|
|
67
|
+
* @memberof IndexSiteNotificationRequest
|
|
68
|
+
*/
|
|
69
|
+
relatedType?: string;
|
|
70
|
+
/**
|
|
71
|
+
*
|
|
72
|
+
* @type {boolean}
|
|
73
|
+
* @memberof IndexSiteNotificationRequest
|
|
74
|
+
*/
|
|
75
|
+
includesRelations?: boolean;
|
|
58
76
|
}
|
|
59
77
|
|
|
60
78
|
|
|
@@ -103,6 +121,9 @@ export function IndexSiteNotificationRequestFromJSONTyped(json: any, ignoreDiscr
|
|
|
103
121
|
'perPage': json['per_page'] == null ? undefined : json['per_page'],
|
|
104
122
|
'page': json['page'] == null ? undefined : json['page'],
|
|
105
123
|
'siteId': json['site_id'] == null ? undefined : json['site_id'],
|
|
124
|
+
'relatedId': json['related_id'] == null ? undefined : json['related_id'],
|
|
125
|
+
'relatedType': json['related_type'] == null ? undefined : json['related_type'],
|
|
126
|
+
'includesRelations': json['includes_relations'] == null ? undefined : json['includes_relations'],
|
|
106
127
|
};
|
|
107
128
|
}
|
|
108
129
|
|
|
@@ -123,6 +144,9 @@ export function IndexSiteNotificationRequestToJSONTyped(value?: IndexSiteNotific
|
|
|
123
144
|
'per_page': value['perPage'],
|
|
124
145
|
'page': value['page'],
|
|
125
146
|
'site_id': value['siteId'],
|
|
147
|
+
'related_id': value['relatedId'],
|
|
148
|
+
'related_type': value['relatedType'],
|
|
149
|
+
'includes_relations': value['includesRelations'],
|
|
126
150
|
};
|
|
127
151
|
}
|
|
128
152
|
|
|
@@ -49,6 +49,24 @@ export interface IndexSiteRequest {
|
|
|
49
49
|
* @memberof IndexSiteRequest
|
|
50
50
|
*/
|
|
51
51
|
page?: number;
|
|
52
|
+
/**
|
|
53
|
+
*
|
|
54
|
+
* @type {number}
|
|
55
|
+
* @memberof IndexSiteRequest
|
|
56
|
+
*/
|
|
57
|
+
relatedId?: number;
|
|
58
|
+
/**
|
|
59
|
+
*
|
|
60
|
+
* @type {string}
|
|
61
|
+
* @memberof IndexSiteRequest
|
|
62
|
+
*/
|
|
63
|
+
relatedType?: string;
|
|
64
|
+
/**
|
|
65
|
+
*
|
|
66
|
+
* @type {boolean}
|
|
67
|
+
* @memberof IndexSiteRequest
|
|
68
|
+
*/
|
|
69
|
+
includesRelations?: boolean;
|
|
52
70
|
}
|
|
53
71
|
|
|
54
72
|
|
|
@@ -96,6 +114,9 @@ export function IndexSiteRequestFromJSONTyped(json: any, ignoreDiscriminator: bo
|
|
|
96
114
|
'sortDirection': json['sortDirection'] == null ? undefined : json['sortDirection'],
|
|
97
115
|
'perPage': json['per_page'] == null ? undefined : json['per_page'],
|
|
98
116
|
'page': json['page'] == null ? undefined : json['page'],
|
|
117
|
+
'relatedId': json['related_id'] == null ? undefined : json['related_id'],
|
|
118
|
+
'relatedType': json['related_type'] == null ? undefined : json['related_type'],
|
|
119
|
+
'includesRelations': json['includes_relations'] == null ? undefined : json['includes_relations'],
|
|
99
120
|
};
|
|
100
121
|
}
|
|
101
122
|
|
|
@@ -115,6 +136,9 @@ export function IndexSiteRequestToJSONTyped(value?: IndexSiteRequest | null, ign
|
|
|
115
136
|
'sortDirection': value['sortDirection'],
|
|
116
137
|
'per_page': value['perPage'],
|
|
117
138
|
'page': value['page'],
|
|
139
|
+
'related_id': value['relatedId'],
|
|
140
|
+
'related_type': value['relatedType'],
|
|
141
|
+
'includes_relations': value['includesRelations'],
|
|
118
142
|
};
|
|
119
143
|
}
|
|
120
144
|
|
|
@@ -49,6 +49,24 @@ export interface IndexSupplierRequest {
|
|
|
49
49
|
* @memberof IndexSupplierRequest
|
|
50
50
|
*/
|
|
51
51
|
page?: number;
|
|
52
|
+
/**
|
|
53
|
+
*
|
|
54
|
+
* @type {number}
|
|
55
|
+
* @memberof IndexSupplierRequest
|
|
56
|
+
*/
|
|
57
|
+
relatedId?: number;
|
|
58
|
+
/**
|
|
59
|
+
*
|
|
60
|
+
* @type {string}
|
|
61
|
+
* @memberof IndexSupplierRequest
|
|
62
|
+
*/
|
|
63
|
+
relatedType?: IndexSupplierRequestRelatedTypeEnum;
|
|
64
|
+
/**
|
|
65
|
+
*
|
|
66
|
+
* @type {boolean}
|
|
67
|
+
* @memberof IndexSupplierRequest
|
|
68
|
+
*/
|
|
69
|
+
includesRelations?: boolean;
|
|
52
70
|
}
|
|
53
71
|
|
|
54
72
|
|
|
@@ -74,6 +92,14 @@ export const IndexSupplierRequestSortDirectionEnum = {
|
|
|
74
92
|
} as const;
|
|
75
93
|
export type IndexSupplierRequestSortDirectionEnum = typeof IndexSupplierRequestSortDirectionEnum[keyof typeof IndexSupplierRequestSortDirectionEnum];
|
|
76
94
|
|
|
95
|
+
/**
|
|
96
|
+
* @export
|
|
97
|
+
*/
|
|
98
|
+
export const IndexSupplierRequestRelatedTypeEnum = {
|
|
99
|
+
ProductChild: 'productChild'
|
|
100
|
+
} as const;
|
|
101
|
+
export type IndexSupplierRequestRelatedTypeEnum = typeof IndexSupplierRequestRelatedTypeEnum[keyof typeof IndexSupplierRequestRelatedTypeEnum];
|
|
102
|
+
|
|
77
103
|
|
|
78
104
|
/**
|
|
79
105
|
* Check if a given object implements the IndexSupplierRequest interface.
|
|
@@ -97,6 +123,9 @@ export function IndexSupplierRequestFromJSONTyped(json: any, ignoreDiscriminator
|
|
|
97
123
|
'sortDirection': json['sortDirection'] == null ? undefined : json['sortDirection'],
|
|
98
124
|
'perPage': json['per_page'] == null ? undefined : json['per_page'],
|
|
99
125
|
'page': json['page'] == null ? undefined : json['page'],
|
|
126
|
+
'relatedId': json['related_id'] == null ? undefined : json['related_id'],
|
|
127
|
+
'relatedType': json['related_type'] == null ? undefined : json['related_type'],
|
|
128
|
+
'includesRelations': json['includes_relations'] == null ? undefined : json['includes_relations'],
|
|
100
129
|
};
|
|
101
130
|
}
|
|
102
131
|
|
|
@@ -116,6 +145,9 @@ export function IndexSupplierRequestToJSONTyped(value?: IndexSupplierRequest | n
|
|
|
116
145
|
'sortDirection': value['sortDirection'],
|
|
117
146
|
'per_page': value['perPage'],
|
|
118
147
|
'page': value['page'],
|
|
148
|
+
'related_id': value['relatedId'],
|
|
149
|
+
'related_type': value['relatedType'],
|
|
150
|
+
'includes_relations': value['includesRelations'],
|
|
119
151
|
};
|
|
120
152
|
}
|
|
121
153
|
|
|
@@ -61,6 +61,24 @@ export interface IndexTagRequest {
|
|
|
61
61
|
* @memberof IndexTagRequest
|
|
62
62
|
*/
|
|
63
63
|
type?: Array<string>;
|
|
64
|
+
/**
|
|
65
|
+
*
|
|
66
|
+
* @type {number}
|
|
67
|
+
* @memberof IndexTagRequest
|
|
68
|
+
*/
|
|
69
|
+
relatedId?: number;
|
|
70
|
+
/**
|
|
71
|
+
*
|
|
72
|
+
* @type {string}
|
|
73
|
+
* @memberof IndexTagRequest
|
|
74
|
+
*/
|
|
75
|
+
relatedType?: IndexTagRequestRelatedTypeEnum;
|
|
76
|
+
/**
|
|
77
|
+
*
|
|
78
|
+
* @type {boolean}
|
|
79
|
+
* @memberof IndexTagRequest
|
|
80
|
+
*/
|
|
81
|
+
includesRelations?: boolean;
|
|
64
82
|
}
|
|
65
83
|
|
|
66
84
|
|
|
@@ -85,6 +103,14 @@ export const IndexTagRequestSortDirectionEnum = {
|
|
|
85
103
|
} as const;
|
|
86
104
|
export type IndexTagRequestSortDirectionEnum = typeof IndexTagRequestSortDirectionEnum[keyof typeof IndexTagRequestSortDirectionEnum];
|
|
87
105
|
|
|
106
|
+
/**
|
|
107
|
+
* @export
|
|
108
|
+
*/
|
|
109
|
+
export const IndexTagRequestRelatedTypeEnum = {
|
|
110
|
+
ProductChild: 'productChild'
|
|
111
|
+
} as const;
|
|
112
|
+
export type IndexTagRequestRelatedTypeEnum = typeof IndexTagRequestRelatedTypeEnum[keyof typeof IndexTagRequestRelatedTypeEnum];
|
|
113
|
+
|
|
88
114
|
|
|
89
115
|
/**
|
|
90
116
|
* Check if a given object implements the IndexTagRequest interface.
|
|
@@ -110,6 +136,9 @@ export function IndexTagRequestFromJSONTyped(json: any, ignoreDiscriminator: boo
|
|
|
110
136
|
'page': json['page'] == null ? undefined : json['page'],
|
|
111
137
|
'siteId': json['site_id'] == null ? undefined : json['site_id'],
|
|
112
138
|
'type': json['type'] == null ? undefined : json['type'],
|
|
139
|
+
'relatedId': json['related_id'] == null ? undefined : json['related_id'],
|
|
140
|
+
'relatedType': json['related_type'] == null ? undefined : json['related_type'],
|
|
141
|
+
'includesRelations': json['includes_relations'] == null ? undefined : json['includes_relations'],
|
|
113
142
|
};
|
|
114
143
|
}
|
|
115
144
|
|
|
@@ -131,6 +160,9 @@ export function IndexTagRequestToJSONTyped(value?: IndexTagRequest | null, ignor
|
|
|
131
160
|
'page': value['page'],
|
|
132
161
|
'site_id': value['siteId'],
|
|
133
162
|
'type': value['type'],
|
|
163
|
+
'related_id': value['relatedId'],
|
|
164
|
+
'related_type': value['relatedType'],
|
|
165
|
+
'includes_relations': value['includesRelations'],
|
|
134
166
|
};
|
|
135
167
|
}
|
|
136
168
|
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* My API
|
|
5
|
+
* API documentation for my Laravel app
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
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
|
+
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @export
|
|
27
|
+
* @interface OverlayTemplateListResource
|
|
28
|
+
*/
|
|
29
|
+
export interface OverlayTemplateListResource {
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof OverlayTemplateListResource
|
|
34
|
+
*/
|
|
35
|
+
id: number;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof OverlayTemplateListResource
|
|
40
|
+
*/
|
|
41
|
+
name: string;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {Array<SiteLiteResource>}
|
|
45
|
+
* @memberof OverlayTemplateListResource
|
|
46
|
+
*/
|
|
47
|
+
sites: Array<SiteLiteResource> | null;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* Check if a given object implements the OverlayTemplateListResource interface.
|
|
52
|
+
*/
|
|
53
|
+
export function instanceOfOverlayTemplateListResource(value: object): value is OverlayTemplateListResource {
|
|
54
|
+
if (!('id' in value) || value['id'] === undefined) return false;
|
|
55
|
+
if (!('name' in value) || value['name'] === undefined) return false;
|
|
56
|
+
if (!('sites' in value) || value['sites'] === undefined) return false;
|
|
57
|
+
return true;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export function OverlayTemplateListResourceFromJSON(json: any): OverlayTemplateListResource {
|
|
61
|
+
return OverlayTemplateListResourceFromJSONTyped(json, false);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
export function OverlayTemplateListResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): OverlayTemplateListResource {
|
|
65
|
+
if (json == null) {
|
|
66
|
+
return json;
|
|
67
|
+
}
|
|
68
|
+
return {
|
|
69
|
+
|
|
70
|
+
'id': json['id'],
|
|
71
|
+
'name': json['name'],
|
|
72
|
+
'sites': (json['sites'] == null ? null : (json['sites'] as Array<any>).map(SiteLiteResourceFromJSON)),
|
|
73
|
+
};
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
export function OverlayTemplateListResourceToJSON(json: any): OverlayTemplateListResource {
|
|
77
|
+
return OverlayTemplateListResourceToJSONTyped(json, false);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
export function OverlayTemplateListResourceToJSONTyped(value?: OverlayTemplateListResource | null, ignoreDiscriminator: boolean = false): any {
|
|
81
|
+
if (value == null) {
|
|
82
|
+
return value;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
return {
|
|
86
|
+
|
|
87
|
+
'id': value['id'],
|
|
88
|
+
'name': value['name'],
|
|
89
|
+
'sites': (value['sites'] == null ? null : (value['sites'] as Array<any>).map(SiteLiteResourceToJSON)),
|
|
90
|
+
};
|
|
91
|
+
}
|
|
92
|
+
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* My API
|
|
5
|
+
* API documentation for my Laravel app
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import { mapValues } from '../runtime';
|
|
16
|
+
import type { OverlayTemplateListResource } from './OverlayTemplateListResource';
|
|
17
|
+
import {
|
|
18
|
+
OverlayTemplateListResourceFromJSON,
|
|
19
|
+
OverlayTemplateListResourceFromJSONTyped,
|
|
20
|
+
OverlayTemplateListResourceToJSON,
|
|
21
|
+
OverlayTemplateListResourceToJSONTyped,
|
|
22
|
+
} from './OverlayTemplateListResource';
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @export
|
|
27
|
+
* @interface OverlayTemplateListResourceArrayResponse
|
|
28
|
+
*/
|
|
29
|
+
export interface OverlayTemplateListResourceArrayResponse {
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {Array<OverlayTemplateListResource>}
|
|
33
|
+
* @memberof OverlayTemplateListResourceArrayResponse
|
|
34
|
+
*/
|
|
35
|
+
data?: Array<OverlayTemplateListResource>;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* Check if a given object implements the OverlayTemplateListResourceArrayResponse interface.
|
|
40
|
+
*/
|
|
41
|
+
export function instanceOfOverlayTemplateListResourceArrayResponse(value: object): value is OverlayTemplateListResourceArrayResponse {
|
|
42
|
+
return true;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
export function OverlayTemplateListResourceArrayResponseFromJSON(json: any): OverlayTemplateListResourceArrayResponse {
|
|
46
|
+
return OverlayTemplateListResourceArrayResponseFromJSONTyped(json, false);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export function OverlayTemplateListResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): OverlayTemplateListResourceArrayResponse {
|
|
50
|
+
if (json == null) {
|
|
51
|
+
return json;
|
|
52
|
+
}
|
|
53
|
+
return {
|
|
54
|
+
|
|
55
|
+
'data': json['data'] == null ? undefined : ((json['data'] as Array<any>).map(OverlayTemplateListResourceFromJSON)),
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
export function OverlayTemplateListResourceArrayResponseToJSON(json: any): OverlayTemplateListResourceArrayResponse {
|
|
60
|
+
return OverlayTemplateListResourceArrayResponseToJSONTyped(json, false);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
export function OverlayTemplateListResourceArrayResponseToJSONTyped(value?: OverlayTemplateListResourceArrayResponse | null, ignoreDiscriminator: boolean = false): any {
|
|
64
|
+
if (value == null) {
|
|
65
|
+
return value;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
return {
|
|
69
|
+
|
|
70
|
+
'data': value['data'] == null ? undefined : ((value['data'] as Array<any>).map(OverlayTemplateListResourceToJSON)),
|
|
71
|
+
};
|
|
72
|
+
}
|
|
73
|
+
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* My API
|
|
5
|
+
* API documentation for my Laravel app
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import { mapValues } from '../runtime';
|
|
16
|
+
import type { PagingMetadata } from './PagingMetadata';
|
|
17
|
+
import {
|
|
18
|
+
PagingMetadataFromJSON,
|
|
19
|
+
PagingMetadataFromJSONTyped,
|
|
20
|
+
PagingMetadataToJSON,
|
|
21
|
+
PagingMetadataToJSONTyped,
|
|
22
|
+
} from './PagingMetadata';
|
|
23
|
+
import type { AttributeListResource } from './AttributeListResource';
|
|
24
|
+
import {
|
|
25
|
+
AttributeListResourceFromJSON,
|
|
26
|
+
AttributeListResourceFromJSONTyped,
|
|
27
|
+
AttributeListResourceToJSON,
|
|
28
|
+
AttributeListResourceToJSONTyped,
|
|
29
|
+
} from './AttributeListResource';
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @export
|
|
34
|
+
* @interface PaginatedAttributeListResourceResponse
|
|
35
|
+
*/
|
|
36
|
+
export interface PaginatedAttributeListResourceResponse {
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {Array<AttributeListResource>}
|
|
40
|
+
* @memberof PaginatedAttributeListResourceResponse
|
|
41
|
+
*/
|
|
42
|
+
data: Array<AttributeListResource>;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {PagingMetadata}
|
|
46
|
+
* @memberof PaginatedAttributeListResourceResponse
|
|
47
|
+
*/
|
|
48
|
+
meta: PagingMetadata;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* Check if a given object implements the PaginatedAttributeListResourceResponse interface.
|
|
53
|
+
*/
|
|
54
|
+
export function instanceOfPaginatedAttributeListResourceResponse(value: object): value is PaginatedAttributeListResourceResponse {
|
|
55
|
+
if (!('data' in value) || value['data'] === undefined) return false;
|
|
56
|
+
if (!('meta' in value) || value['meta'] === undefined) return false;
|
|
57
|
+
return true;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export function PaginatedAttributeListResourceResponseFromJSON(json: any): PaginatedAttributeListResourceResponse {
|
|
61
|
+
return PaginatedAttributeListResourceResponseFromJSONTyped(json, false);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
export function PaginatedAttributeListResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedAttributeListResourceResponse {
|
|
65
|
+
if (json == null) {
|
|
66
|
+
return json;
|
|
67
|
+
}
|
|
68
|
+
return {
|
|
69
|
+
|
|
70
|
+
'data': ((json['data'] as Array<any>).map(AttributeListResourceFromJSON)),
|
|
71
|
+
'meta': PagingMetadataFromJSON(json['meta']),
|
|
72
|
+
};
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export function PaginatedAttributeListResourceResponseToJSON(json: any): PaginatedAttributeListResourceResponse {
|
|
76
|
+
return PaginatedAttributeListResourceResponseToJSONTyped(json, false);
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
export function PaginatedAttributeListResourceResponseToJSONTyped(value?: PaginatedAttributeListResourceResponse | null, ignoreDiscriminator: boolean = false): any {
|
|
80
|
+
if (value == null) {
|
|
81
|
+
return value;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
return {
|
|
85
|
+
|
|
86
|
+
'data': ((value['data'] as Array<any>).map(AttributeListResourceToJSON)),
|
|
87
|
+
'meta': PagingMetadataToJSON(value['meta']),
|
|
88
|
+
};
|
|
89
|
+
}
|
|
90
|
+
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* My API
|
|
5
|
+
* API documentation for my Laravel app
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import { mapValues } from '../runtime';
|
|
16
|
+
import type { PagingMetadata } from './PagingMetadata';
|
|
17
|
+
import {
|
|
18
|
+
PagingMetadataFromJSON,
|
|
19
|
+
PagingMetadataFromJSONTyped,
|
|
20
|
+
PagingMetadataToJSON,
|
|
21
|
+
PagingMetadataToJSONTyped,
|
|
22
|
+
} from './PagingMetadata';
|
|
23
|
+
import type { ExternalApiLogListResource } from './ExternalApiLogListResource';
|
|
24
|
+
import {
|
|
25
|
+
ExternalApiLogListResourceFromJSON,
|
|
26
|
+
ExternalApiLogListResourceFromJSONTyped,
|
|
27
|
+
ExternalApiLogListResourceToJSON,
|
|
28
|
+
ExternalApiLogListResourceToJSONTyped,
|
|
29
|
+
} from './ExternalApiLogListResource';
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @export
|
|
34
|
+
* @interface PaginatedExternalApiLogListResourceResponse
|
|
35
|
+
*/
|
|
36
|
+
export interface PaginatedExternalApiLogListResourceResponse {
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {Array<ExternalApiLogListResource>}
|
|
40
|
+
* @memberof PaginatedExternalApiLogListResourceResponse
|
|
41
|
+
*/
|
|
42
|
+
data: Array<ExternalApiLogListResource>;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {PagingMetadata}
|
|
46
|
+
* @memberof PaginatedExternalApiLogListResourceResponse
|
|
47
|
+
*/
|
|
48
|
+
meta: PagingMetadata;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* Check if a given object implements the PaginatedExternalApiLogListResourceResponse interface.
|
|
53
|
+
*/
|
|
54
|
+
export function instanceOfPaginatedExternalApiLogListResourceResponse(value: object): value is PaginatedExternalApiLogListResourceResponse {
|
|
55
|
+
if (!('data' in value) || value['data'] === undefined) return false;
|
|
56
|
+
if (!('meta' in value) || value['meta'] === undefined) return false;
|
|
57
|
+
return true;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export function PaginatedExternalApiLogListResourceResponseFromJSON(json: any): PaginatedExternalApiLogListResourceResponse {
|
|
61
|
+
return PaginatedExternalApiLogListResourceResponseFromJSONTyped(json, false);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
export function PaginatedExternalApiLogListResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedExternalApiLogListResourceResponse {
|
|
65
|
+
if (json == null) {
|
|
66
|
+
return json;
|
|
67
|
+
}
|
|
68
|
+
return {
|
|
69
|
+
|
|
70
|
+
'data': ((json['data'] as Array<any>).map(ExternalApiLogListResourceFromJSON)),
|
|
71
|
+
'meta': PagingMetadataFromJSON(json['meta']),
|
|
72
|
+
};
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export function PaginatedExternalApiLogListResourceResponseToJSON(json: any): PaginatedExternalApiLogListResourceResponse {
|
|
76
|
+
return PaginatedExternalApiLogListResourceResponseToJSONTyped(json, false);
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
export function PaginatedExternalApiLogListResourceResponseToJSONTyped(value?: PaginatedExternalApiLogListResourceResponse | null, ignoreDiscriminator: boolean = false): any {
|
|
80
|
+
if (value == null) {
|
|
81
|
+
return value;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
return {
|
|
85
|
+
|
|
86
|
+
'data': ((value['data'] as Array<any>).map(ExternalApiLogListResourceToJSON)),
|
|
87
|
+
'meta': PagingMetadataToJSON(value['meta']),
|
|
88
|
+
};
|
|
89
|
+
}
|
|
90
|
+
|