@digital8/lighting-illusions-ts-sdk 0.0.398 → 0.0.399
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/README.md +2 -2
- package/dist/models/GetAllProductChildRequest.d.ts +18 -0
- package/dist/models/GetAllProductChildRequest.js +6 -0
- package/dist/models/IndexProductChildRequest.d.ts +18 -0
- package/dist/models/IndexProductChildRequest.js +6 -0
- package/dist/models/SearchSiteDetailsProductChildRequest.d.ts +18 -0
- package/dist/models/SearchSiteDetailsProductChildRequest.js +6 -0
- package/docs/GetAllProductChildRequest.md +6 -0
- package/docs/IndexProductChildRequest.md +6 -0
- package/docs/SearchSiteDetailsProductChildRequest.md +6 -0
- package/package.json +1 -1
- package/src/models/GetAllProductChildRequest.ts +24 -0
- package/src/models/IndexProductChildRequest.ts +24 -0
- package/src/models/SearchSiteDetailsProductChildRequest.ts +24 -0
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @digital8/lighting-illusions-ts-sdk@0.0.
|
|
1
|
+
# @digital8/lighting-illusions-ts-sdk@0.0.399
|
|
2
2
|
|
|
3
3
|
A TypeScript SDK client for the localhost API.
|
|
4
4
|
|
|
@@ -282,7 +282,7 @@ and is automatically generated by the
|
|
|
282
282
|
[OpenAPI Generator](https://openapi-generator.tech) project:
|
|
283
283
|
|
|
284
284
|
- API version: `1.0.0`
|
|
285
|
-
- Package version: `0.0.
|
|
285
|
+
- Package version: `0.0.399`
|
|
286
286
|
- Generator version: `7.17.0`
|
|
287
287
|
- Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
|
|
288
288
|
|
|
@@ -45,6 +45,24 @@ export interface GetAllProductChildRequest {
|
|
|
45
45
|
* @memberof GetAllProductChildRequest
|
|
46
46
|
*/
|
|
47
47
|
relatedType?: string;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {Array<string>}
|
|
51
|
+
* @memberof GetAllProductChildRequest
|
|
52
|
+
*/
|
|
53
|
+
parentProductTypeId?: Array<string>;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {Array<string>}
|
|
57
|
+
* @memberof GetAllProductChildRequest
|
|
58
|
+
*/
|
|
59
|
+
parentSupplierId?: Array<string>;
|
|
60
|
+
/**
|
|
61
|
+
*
|
|
62
|
+
* @type {Array<string>}
|
|
63
|
+
* @memberof GetAllProductChildRequest
|
|
64
|
+
*/
|
|
65
|
+
siteDetailsSiteId?: Array<string>;
|
|
48
66
|
/**
|
|
49
67
|
*
|
|
50
68
|
* @type {Array<string>}
|
|
@@ -63,6 +63,9 @@ function GetAllProductChildRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
63
63
|
'sortDirection': json['sortDirection'] == null ? undefined : json['sortDirection'],
|
|
64
64
|
'relatedId': json['related_id'] == null ? undefined : json['related_id'],
|
|
65
65
|
'relatedType': json['related_type'] == null ? undefined : json['related_type'],
|
|
66
|
+
'parentProductTypeId': json['parent.product_type_id'] == null ? undefined : json['parent.product_type_id'],
|
|
67
|
+
'parentSupplierId': json['parent.supplier_id'] == null ? undefined : json['parent.supplier_id'],
|
|
68
|
+
'siteDetailsSiteId': json['siteDetails.site_id'] == null ? undefined : json['siteDetails.site_id'],
|
|
66
69
|
'isDisabled': json['is_disabled'] == null ? undefined : json['is_disabled'],
|
|
67
70
|
'hasNetsuiteId': json['has_netsuite_id'] == null ? undefined : json['has_netsuite_id'],
|
|
68
71
|
};
|
|
@@ -81,6 +84,9 @@ function GetAllProductChildRequestToJSONTyped(value, ignoreDiscriminator) {
|
|
|
81
84
|
'sortDirection': value['sortDirection'],
|
|
82
85
|
'related_id': value['relatedId'],
|
|
83
86
|
'related_type': value['relatedType'],
|
|
87
|
+
'parent.product_type_id': value['parentProductTypeId'],
|
|
88
|
+
'parent.supplier_id': value['parentSupplierId'],
|
|
89
|
+
'siteDetails.site_id': value['siteDetailsSiteId'],
|
|
84
90
|
'is_disabled': value['isDisabled'],
|
|
85
91
|
'has_netsuite_id': value['hasNetsuiteId'],
|
|
86
92
|
};
|
|
@@ -45,6 +45,24 @@ export interface IndexProductChildRequest {
|
|
|
45
45
|
* @memberof IndexProductChildRequest
|
|
46
46
|
*/
|
|
47
47
|
page?: number;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {Array<string>}
|
|
51
|
+
* @memberof IndexProductChildRequest
|
|
52
|
+
*/
|
|
53
|
+
parentProductTypeId?: Array<string>;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {Array<string>}
|
|
57
|
+
* @memberof IndexProductChildRequest
|
|
58
|
+
*/
|
|
59
|
+
parentSupplierId?: Array<string>;
|
|
60
|
+
/**
|
|
61
|
+
*
|
|
62
|
+
* @type {Array<string>}
|
|
63
|
+
* @memberof IndexProductChildRequest
|
|
64
|
+
*/
|
|
65
|
+
siteDetailsSiteId?: Array<string>;
|
|
48
66
|
/**
|
|
49
67
|
*
|
|
50
68
|
* @type {Array<string>}
|
|
@@ -63,6 +63,9 @@ function IndexProductChildRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
63
63
|
'sortDirection': json['sortDirection'] == null ? undefined : json['sortDirection'],
|
|
64
64
|
'perPage': json['per_page'] == null ? undefined : json['per_page'],
|
|
65
65
|
'page': json['page'] == null ? undefined : json['page'],
|
|
66
|
+
'parentProductTypeId': json['parent.product_type_id'] == null ? undefined : json['parent.product_type_id'],
|
|
67
|
+
'parentSupplierId': json['parent.supplier_id'] == null ? undefined : json['parent.supplier_id'],
|
|
68
|
+
'siteDetailsSiteId': json['siteDetails.site_id'] == null ? undefined : json['siteDetails.site_id'],
|
|
66
69
|
'isDisabled': json['is_disabled'] == null ? undefined : json['is_disabled'],
|
|
67
70
|
'hasNetsuiteId': json['has_netsuite_id'] == null ? undefined : json['has_netsuite_id'],
|
|
68
71
|
};
|
|
@@ -81,6 +84,9 @@ function IndexProductChildRequestToJSONTyped(value, ignoreDiscriminator) {
|
|
|
81
84
|
'sortDirection': value['sortDirection'],
|
|
82
85
|
'per_page': value['perPage'],
|
|
83
86
|
'page': value['page'],
|
|
87
|
+
'parent.product_type_id': value['parentProductTypeId'],
|
|
88
|
+
'parent.supplier_id': value['parentSupplierId'],
|
|
89
|
+
'siteDetails.site_id': value['siteDetailsSiteId'],
|
|
84
90
|
'is_disabled': value['isDisabled'],
|
|
85
91
|
'has_netsuite_id': value['hasNetsuiteId'],
|
|
86
92
|
};
|
|
@@ -45,6 +45,18 @@ export interface SearchSiteDetailsProductChildRequest {
|
|
|
45
45
|
* @memberof SearchSiteDetailsProductChildRequest
|
|
46
46
|
*/
|
|
47
47
|
relatedType?: string;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {Array<string>}
|
|
51
|
+
* @memberof SearchSiteDetailsProductChildRequest
|
|
52
|
+
*/
|
|
53
|
+
parentProductTypeId?: Array<string>;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {Array<string>}
|
|
57
|
+
* @memberof SearchSiteDetailsProductChildRequest
|
|
58
|
+
*/
|
|
59
|
+
parentSupplierId?: Array<string>;
|
|
48
60
|
/**
|
|
49
61
|
*
|
|
50
62
|
* @type {Array<string>}
|
|
@@ -57,6 +69,12 @@ export interface SearchSiteDetailsProductChildRequest {
|
|
|
57
69
|
* @memberof SearchSiteDetailsProductChildRequest
|
|
58
70
|
*/
|
|
59
71
|
isDisabled?: Array<string>;
|
|
72
|
+
/**
|
|
73
|
+
*
|
|
74
|
+
* @type {Array<string>}
|
|
75
|
+
* @memberof SearchSiteDetailsProductChildRequest
|
|
76
|
+
*/
|
|
77
|
+
productChildHasNetsuiteId?: Array<string>;
|
|
60
78
|
/**
|
|
61
79
|
*
|
|
62
80
|
* @type {number}
|
|
@@ -59,8 +59,11 @@ function SearchSiteDetailsProductChildRequestFromJSONTyped(json, ignoreDiscrimin
|
|
|
59
59
|
'sortDirection': json['sortDirection'] == null ? undefined : json['sortDirection'],
|
|
60
60
|
'relatedId': json['related_id'] == null ? undefined : json['related_id'],
|
|
61
61
|
'relatedType': json['related_type'] == null ? undefined : json['related_type'],
|
|
62
|
+
'parentProductTypeId': json['parent.product_type_id'] == null ? undefined : json['parent.product_type_id'],
|
|
63
|
+
'parentSupplierId': json['parent.supplier_id'] == null ? undefined : json['parent.supplier_id'],
|
|
62
64
|
'siteId': json['site_id'] == null ? undefined : json['site_id'],
|
|
63
65
|
'isDisabled': json['is_disabled'] == null ? undefined : json['is_disabled'],
|
|
66
|
+
'productChildHasNetsuiteId': json['productChild.has_netsuite_id'] == null ? undefined : json['productChild.has_netsuite_id'],
|
|
64
67
|
'perPage': json['per_page'] == null ? undefined : json['per_page'],
|
|
65
68
|
'page': json['page'] == null ? undefined : json['page'],
|
|
66
69
|
};
|
|
@@ -79,8 +82,11 @@ function SearchSiteDetailsProductChildRequestToJSONTyped(value, ignoreDiscrimina
|
|
|
79
82
|
'sortDirection': value['sortDirection'],
|
|
80
83
|
'related_id': value['relatedId'],
|
|
81
84
|
'related_type': value['relatedType'],
|
|
85
|
+
'parent.product_type_id': value['parentProductTypeId'],
|
|
86
|
+
'parent.supplier_id': value['parentSupplierId'],
|
|
82
87
|
'site_id': value['siteId'],
|
|
83
88
|
'is_disabled': value['isDisabled'],
|
|
89
|
+
'productChild.has_netsuite_id': value['productChildHasNetsuiteId'],
|
|
84
90
|
'per_page': value['perPage'],
|
|
85
91
|
'page': value['page'],
|
|
86
92
|
};
|
|
@@ -11,6 +11,9 @@ Name | Type
|
|
|
11
11
|
`sortDirection` | string
|
|
12
12
|
`relatedId` | number
|
|
13
13
|
`relatedType` | string
|
|
14
|
+
`parentProductTypeId` | Array<string>
|
|
15
|
+
`parentSupplierId` | Array<string>
|
|
16
|
+
`siteDetailsSiteId` | Array<string>
|
|
14
17
|
`isDisabled` | Array<string>
|
|
15
18
|
`hasNetsuiteId` | Array<string>
|
|
16
19
|
|
|
@@ -26,6 +29,9 @@ const example = {
|
|
|
26
29
|
"sortDirection": null,
|
|
27
30
|
"relatedId": null,
|
|
28
31
|
"relatedType": null,
|
|
32
|
+
"parentProductTypeId": null,
|
|
33
|
+
"parentSupplierId": null,
|
|
34
|
+
"siteDetailsSiteId": null,
|
|
29
35
|
"isDisabled": null,
|
|
30
36
|
"hasNetsuiteId": null,
|
|
31
37
|
} satisfies GetAllProductChildRequest
|
|
@@ -11,6 +11,9 @@ Name | Type
|
|
|
11
11
|
`sortDirection` | string
|
|
12
12
|
`perPage` | number
|
|
13
13
|
`page` | number
|
|
14
|
+
`parentProductTypeId` | Array<string>
|
|
15
|
+
`parentSupplierId` | Array<string>
|
|
16
|
+
`siteDetailsSiteId` | Array<string>
|
|
14
17
|
`isDisabled` | Array<string>
|
|
15
18
|
`hasNetsuiteId` | Array<string>
|
|
16
19
|
|
|
@@ -26,6 +29,9 @@ const example = {
|
|
|
26
29
|
"sortDirection": null,
|
|
27
30
|
"perPage": null,
|
|
28
31
|
"page": null,
|
|
32
|
+
"parentProductTypeId": null,
|
|
33
|
+
"parentSupplierId": null,
|
|
34
|
+
"siteDetailsSiteId": null,
|
|
29
35
|
"isDisabled": null,
|
|
30
36
|
"hasNetsuiteId": null,
|
|
31
37
|
} satisfies IndexProductChildRequest
|
|
@@ -11,8 +11,11 @@ Name | Type
|
|
|
11
11
|
`sortDirection` | string
|
|
12
12
|
`relatedId` | number
|
|
13
13
|
`relatedType` | string
|
|
14
|
+
`parentProductTypeId` | Array<string>
|
|
15
|
+
`parentSupplierId` | Array<string>
|
|
14
16
|
`siteId` | Array<string>
|
|
15
17
|
`isDisabled` | Array<string>
|
|
18
|
+
`productChildHasNetsuiteId` | Array<string>
|
|
16
19
|
`perPage` | number
|
|
17
20
|
`page` | number
|
|
18
21
|
|
|
@@ -28,8 +31,11 @@ const example = {
|
|
|
28
31
|
"sortDirection": null,
|
|
29
32
|
"relatedId": null,
|
|
30
33
|
"relatedType": null,
|
|
34
|
+
"parentProductTypeId": null,
|
|
35
|
+
"parentSupplierId": null,
|
|
31
36
|
"siteId": null,
|
|
32
37
|
"isDisabled": null,
|
|
38
|
+
"productChildHasNetsuiteId": null,
|
|
33
39
|
"perPage": null,
|
|
34
40
|
"page": null,
|
|
35
41
|
} satisfies SearchSiteDetailsProductChildRequest
|
package/package.json
CHANGED
|
@@ -49,6 +49,24 @@ export interface GetAllProductChildRequest {
|
|
|
49
49
|
* @memberof GetAllProductChildRequest
|
|
50
50
|
*/
|
|
51
51
|
relatedType?: string;
|
|
52
|
+
/**
|
|
53
|
+
*
|
|
54
|
+
* @type {Array<string>}
|
|
55
|
+
* @memberof GetAllProductChildRequest
|
|
56
|
+
*/
|
|
57
|
+
parentProductTypeId?: Array<string>;
|
|
58
|
+
/**
|
|
59
|
+
*
|
|
60
|
+
* @type {Array<string>}
|
|
61
|
+
* @memberof GetAllProductChildRequest
|
|
62
|
+
*/
|
|
63
|
+
parentSupplierId?: Array<string>;
|
|
64
|
+
/**
|
|
65
|
+
*
|
|
66
|
+
* @type {Array<string>}
|
|
67
|
+
* @memberof GetAllProductChildRequest
|
|
68
|
+
*/
|
|
69
|
+
siteDetailsSiteId?: Array<string>;
|
|
52
70
|
/**
|
|
53
71
|
*
|
|
54
72
|
* @type {Array<string>}
|
|
@@ -116,6 +134,9 @@ export function GetAllProductChildRequestFromJSONTyped(json: any, ignoreDiscrimi
|
|
|
116
134
|
'sortDirection': json['sortDirection'] == null ? undefined : json['sortDirection'],
|
|
117
135
|
'relatedId': json['related_id'] == null ? undefined : json['related_id'],
|
|
118
136
|
'relatedType': json['related_type'] == null ? undefined : json['related_type'],
|
|
137
|
+
'parentProductTypeId': json['parent.product_type_id'] == null ? undefined : json['parent.product_type_id'],
|
|
138
|
+
'parentSupplierId': json['parent.supplier_id'] == null ? undefined : json['parent.supplier_id'],
|
|
139
|
+
'siteDetailsSiteId': json['siteDetails.site_id'] == null ? undefined : json['siteDetails.site_id'],
|
|
119
140
|
'isDisabled': json['is_disabled'] == null ? undefined : json['is_disabled'],
|
|
120
141
|
'hasNetsuiteId': json['has_netsuite_id'] == null ? undefined : json['has_netsuite_id'],
|
|
121
142
|
};
|
|
@@ -137,6 +158,9 @@ export function GetAllProductChildRequestToJSONTyped(value?: GetAllProductChildR
|
|
|
137
158
|
'sortDirection': value['sortDirection'],
|
|
138
159
|
'related_id': value['relatedId'],
|
|
139
160
|
'related_type': value['relatedType'],
|
|
161
|
+
'parent.product_type_id': value['parentProductTypeId'],
|
|
162
|
+
'parent.supplier_id': value['parentSupplierId'],
|
|
163
|
+
'siteDetails.site_id': value['siteDetailsSiteId'],
|
|
140
164
|
'is_disabled': value['isDisabled'],
|
|
141
165
|
'has_netsuite_id': value['hasNetsuiteId'],
|
|
142
166
|
};
|
|
@@ -49,6 +49,24 @@ export interface IndexProductChildRequest {
|
|
|
49
49
|
* @memberof IndexProductChildRequest
|
|
50
50
|
*/
|
|
51
51
|
page?: number;
|
|
52
|
+
/**
|
|
53
|
+
*
|
|
54
|
+
* @type {Array<string>}
|
|
55
|
+
* @memberof IndexProductChildRequest
|
|
56
|
+
*/
|
|
57
|
+
parentProductTypeId?: Array<string>;
|
|
58
|
+
/**
|
|
59
|
+
*
|
|
60
|
+
* @type {Array<string>}
|
|
61
|
+
* @memberof IndexProductChildRequest
|
|
62
|
+
*/
|
|
63
|
+
parentSupplierId?: Array<string>;
|
|
64
|
+
/**
|
|
65
|
+
*
|
|
66
|
+
* @type {Array<string>}
|
|
67
|
+
* @memberof IndexProductChildRequest
|
|
68
|
+
*/
|
|
69
|
+
siteDetailsSiteId?: Array<string>;
|
|
52
70
|
/**
|
|
53
71
|
*
|
|
54
72
|
* @type {Array<string>}
|
|
@@ -116,6 +134,9 @@ export function IndexProductChildRequestFromJSONTyped(json: any, ignoreDiscrimin
|
|
|
116
134
|
'sortDirection': json['sortDirection'] == null ? undefined : json['sortDirection'],
|
|
117
135
|
'perPage': json['per_page'] == null ? undefined : json['per_page'],
|
|
118
136
|
'page': json['page'] == null ? undefined : json['page'],
|
|
137
|
+
'parentProductTypeId': json['parent.product_type_id'] == null ? undefined : json['parent.product_type_id'],
|
|
138
|
+
'parentSupplierId': json['parent.supplier_id'] == null ? undefined : json['parent.supplier_id'],
|
|
139
|
+
'siteDetailsSiteId': json['siteDetails.site_id'] == null ? undefined : json['siteDetails.site_id'],
|
|
119
140
|
'isDisabled': json['is_disabled'] == null ? undefined : json['is_disabled'],
|
|
120
141
|
'hasNetsuiteId': json['has_netsuite_id'] == null ? undefined : json['has_netsuite_id'],
|
|
121
142
|
};
|
|
@@ -137,6 +158,9 @@ export function IndexProductChildRequestToJSONTyped(value?: IndexProductChildReq
|
|
|
137
158
|
'sortDirection': value['sortDirection'],
|
|
138
159
|
'per_page': value['perPage'],
|
|
139
160
|
'page': value['page'],
|
|
161
|
+
'parent.product_type_id': value['parentProductTypeId'],
|
|
162
|
+
'parent.supplier_id': value['parentSupplierId'],
|
|
163
|
+
'siteDetails.site_id': value['siteDetailsSiteId'],
|
|
140
164
|
'is_disabled': value['isDisabled'],
|
|
141
165
|
'has_netsuite_id': value['hasNetsuiteId'],
|
|
142
166
|
};
|
|
@@ -49,6 +49,18 @@ export interface SearchSiteDetailsProductChildRequest {
|
|
|
49
49
|
* @memberof SearchSiteDetailsProductChildRequest
|
|
50
50
|
*/
|
|
51
51
|
relatedType?: string;
|
|
52
|
+
/**
|
|
53
|
+
*
|
|
54
|
+
* @type {Array<string>}
|
|
55
|
+
* @memberof SearchSiteDetailsProductChildRequest
|
|
56
|
+
*/
|
|
57
|
+
parentProductTypeId?: Array<string>;
|
|
58
|
+
/**
|
|
59
|
+
*
|
|
60
|
+
* @type {Array<string>}
|
|
61
|
+
* @memberof SearchSiteDetailsProductChildRequest
|
|
62
|
+
*/
|
|
63
|
+
parentSupplierId?: Array<string>;
|
|
52
64
|
/**
|
|
53
65
|
*
|
|
54
66
|
* @type {Array<string>}
|
|
@@ -61,6 +73,12 @@ export interface SearchSiteDetailsProductChildRequest {
|
|
|
61
73
|
* @memberof SearchSiteDetailsProductChildRequest
|
|
62
74
|
*/
|
|
63
75
|
isDisabled?: Array<string>;
|
|
76
|
+
/**
|
|
77
|
+
*
|
|
78
|
+
* @type {Array<string>}
|
|
79
|
+
* @memberof SearchSiteDetailsProductChildRequest
|
|
80
|
+
*/
|
|
81
|
+
productChildHasNetsuiteId?: Array<string>;
|
|
64
82
|
/**
|
|
65
83
|
*
|
|
66
84
|
* @type {number}
|
|
@@ -124,8 +142,11 @@ export function SearchSiteDetailsProductChildRequestFromJSONTyped(json: any, ign
|
|
|
124
142
|
'sortDirection': json['sortDirection'] == null ? undefined : json['sortDirection'],
|
|
125
143
|
'relatedId': json['related_id'] == null ? undefined : json['related_id'],
|
|
126
144
|
'relatedType': json['related_type'] == null ? undefined : json['related_type'],
|
|
145
|
+
'parentProductTypeId': json['parent.product_type_id'] == null ? undefined : json['parent.product_type_id'],
|
|
146
|
+
'parentSupplierId': json['parent.supplier_id'] == null ? undefined : json['parent.supplier_id'],
|
|
127
147
|
'siteId': json['site_id'] == null ? undefined : json['site_id'],
|
|
128
148
|
'isDisabled': json['is_disabled'] == null ? undefined : json['is_disabled'],
|
|
149
|
+
'productChildHasNetsuiteId': json['productChild.has_netsuite_id'] == null ? undefined : json['productChild.has_netsuite_id'],
|
|
129
150
|
'perPage': json['per_page'] == null ? undefined : json['per_page'],
|
|
130
151
|
'page': json['page'] == null ? undefined : json['page'],
|
|
131
152
|
};
|
|
@@ -147,8 +168,11 @@ export function SearchSiteDetailsProductChildRequestToJSONTyped(value?: SearchSi
|
|
|
147
168
|
'sortDirection': value['sortDirection'],
|
|
148
169
|
'related_id': value['relatedId'],
|
|
149
170
|
'related_type': value['relatedType'],
|
|
171
|
+
'parent.product_type_id': value['parentProductTypeId'],
|
|
172
|
+
'parent.supplier_id': value['parentSupplierId'],
|
|
150
173
|
'site_id': value['siteId'],
|
|
151
174
|
'is_disabled': value['isDisabled'],
|
|
175
|
+
'productChild.has_netsuite_id': value['productChildHasNetsuiteId'],
|
|
152
176
|
'per_page': value['perPage'],
|
|
153
177
|
'page': value['page'],
|
|
154
178
|
};
|