@digital8/lighting-illusions-ts-sdk 0.0.867 → 0.0.869
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
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @digital8/lighting-illusions-ts-sdk@0.0.
|
|
1
|
+
# @digital8/lighting-illusions-ts-sdk@0.0.869
|
|
2
2
|
|
|
3
3
|
A TypeScript SDK client for the localhost API.
|
|
4
4
|
|
|
@@ -463,7 +463,7 @@ and is automatically generated by the
|
|
|
463
463
|
[OpenAPI Generator](https://openapi-generator.tech) project:
|
|
464
464
|
|
|
465
465
|
- API version: `1.0.0`
|
|
466
|
-
- Package version: `0.0.
|
|
466
|
+
- Package version: `0.0.869`
|
|
467
467
|
- Generator version: `7.19.0`
|
|
468
468
|
- Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
|
|
469
469
|
|
|
@@ -127,6 +127,7 @@ export type IndexProductCategoryRequestSortDirectionEnum = typeof IndexProductCa
|
|
|
127
127
|
*/
|
|
128
128
|
export declare const IndexProductCategoryRequestRelatedTypeEnum: {
|
|
129
129
|
readonly Product: "product";
|
|
130
|
+
readonly ProductChildSiteDetail: "productChildSiteDetail";
|
|
130
131
|
};
|
|
131
132
|
export type IndexProductCategoryRequestRelatedTypeEnum = typeof IndexProductCategoryRequestRelatedTypeEnum[keyof typeof IndexProductCategoryRequestRelatedTypeEnum];
|
|
132
133
|
/**
|
|
@@ -43,7 +43,8 @@ exports.IndexProductCategoryRequestSortDirectionEnum = {
|
|
|
43
43
|
* @export
|
|
44
44
|
*/
|
|
45
45
|
exports.IndexProductCategoryRequestRelatedTypeEnum = {
|
|
46
|
-
Product: 'product'
|
|
46
|
+
Product: 'product',
|
|
47
|
+
ProductChildSiteDetail: 'productChildSiteDetail'
|
|
47
48
|
};
|
|
48
49
|
/**
|
|
49
50
|
* Check if a given object implements the IndexProductCategoryRequest interface.
|
package/package.json
CHANGED
|
@@ -134,7 +134,8 @@ export type IndexProductCategoryRequestSortDirectionEnum = typeof IndexProductCa
|
|
|
134
134
|
* @export
|
|
135
135
|
*/
|
|
136
136
|
export const IndexProductCategoryRequestRelatedTypeEnum = {
|
|
137
|
-
Product: 'product'
|
|
137
|
+
Product: 'product',
|
|
138
|
+
ProductChildSiteDetail: 'productChildSiteDetail'
|
|
138
139
|
} as const;
|
|
139
140
|
export type IndexProductCategoryRequestRelatedTypeEnum = typeof IndexProductCategoryRequestRelatedTypeEnum[keyof typeof IndexProductCategoryRequestRelatedTypeEnum];
|
|
140
141
|
|