@digital8/lighting-illusions-ts-sdk 0.0.464 → 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.
Files changed (40) hide show
  1. package/.openapi-generator/FILES +2 -2
  2. package/README.md +10 -4
  3. package/dist/apis/ProductApi.d.ts +73 -1
  4. package/dist/apis/ProductApi.js +292 -0
  5. package/dist/apis/TagApi.d.ts +5 -5
  6. package/dist/apis/TagApi.js +1 -1
  7. package/dist/models/AssetLiteResource.d.ts +6 -0
  8. package/dist/models/AssetLiteResource.js +4 -0
  9. package/dist/models/AttachAccessoriesProductChildRequest.d.ts +32 -0
  10. package/dist/models/AttachAccessoriesProductChildRequest.js +51 -0
  11. package/dist/models/ExternalApiLogResource.d.ts +1 -1
  12. package/dist/models/ExternalApiLogResource.js +3 -1
  13. package/dist/models/OverlayTemplateListResource.d.ts +7 -0
  14. package/dist/models/OverlayTemplateListResource.js +5 -0
  15. package/dist/models/ProductChildListResource.d.ts +12 -0
  16. package/dist/models/ProductChildListResource.js +8 -0
  17. package/dist/models/SiteNotificationListResource.d.ts +7 -0
  18. package/dist/models/SiteNotificationListResource.js +5 -0
  19. package/dist/models/index.d.ts +1 -1
  20. package/dist/models/index.js +1 -1
  21. package/docs/AssetLiteResource.md +2 -0
  22. package/docs/{LinkProductChildrenTagRequest.md → AttachAccessoriesProductChildRequest.md} +4 -4
  23. package/docs/OverlayTemplateListResource.md +2 -0
  24. package/docs/ProductApi.md +414 -0
  25. package/docs/ProductChildListResource.md +4 -0
  26. package/docs/SiteNotificationListResource.md +2 -0
  27. package/docs/TagApi.md +7 -7
  28. package/package.json +1 -1
  29. package/src/apis/ProductApi.ts +283 -0
  30. package/src/apis/TagApi.ts +8 -8
  31. package/src/models/AssetLiteResource.ts +9 -0
  32. package/src/models/AttachAccessoriesProductChildRequest.ts +66 -0
  33. package/src/models/ExternalApiLogResource.ts +3 -2
  34. package/src/models/OverlayTemplateListResource.ts +17 -0
  35. package/src/models/ProductChildListResource.ts +18 -0
  36. package/src/models/SiteNotificationListResource.ts +17 -0
  37. package/src/models/index.ts +1 -1
  38. package/dist/models/LinkProductChildrenTagRequest.d.ts +0 -32
  39. package/dist/models/LinkProductChildrenTagRequest.js +0 -51
  40. package/src/models/LinkProductChildrenTagRequest.ts +0 -66
@@ -6,6 +6,7 @@ export * from './AssetLiteResource';
6
6
  export * from './AssetLiteResourceArrayResponse';
7
7
  export * from './AssetResource';
8
8
  export * from './AssetResourceArrayResponse';
9
+ export * from './AttachAccessoriesProductChildRequest';
9
10
  export * from './AttributeFieldType';
10
11
  export * from './AttributeListResource';
11
12
  export * from './AttributeListResourceArrayResponse';
@@ -45,7 +46,6 @@ export * from './IndexSupplierRequest';
45
46
  export * from './IndexTagRequest';
46
47
  export * from './LinkAssetsOverlayTemplateRequest';
47
48
  export * from './LinkAttributeProductTypeRequest';
48
- export * from './LinkProductChildrenTagRequest';
49
49
  export * from './LinkProductTypeAttributeRequest';
50
50
  export * from './ModelAttributeResource';
51
51
  export * from './ModelAttributeResourceArrayResponse';
@@ -1,32 +0,0 @@
1
- /**
2
- * My API
3
- * API documentation for my Laravel app
4
- *
5
- * The version of the OpenAPI document: 1.0.0
6
- *
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- /**
13
- *
14
- * @export
15
- * @interface LinkProductChildrenTagRequest
16
- */
17
- export interface LinkProductChildrenTagRequest {
18
- /**
19
- *
20
- * @type {Array<number>}
21
- * @memberof LinkProductChildrenTagRequest
22
- */
23
- productChildIds: Array<number>;
24
- }
25
- /**
26
- * Check if a given object implements the LinkProductChildrenTagRequest interface.
27
- */
28
- export declare function instanceOfLinkProductChildrenTagRequest(value: object): value is LinkProductChildrenTagRequest;
29
- export declare function LinkProductChildrenTagRequestFromJSON(json: any): LinkProductChildrenTagRequest;
30
- export declare function LinkProductChildrenTagRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): LinkProductChildrenTagRequest;
31
- export declare function LinkProductChildrenTagRequestToJSON(json: any): LinkProductChildrenTagRequest;
32
- export declare function LinkProductChildrenTagRequestToJSONTyped(value?: LinkProductChildrenTagRequest | null, ignoreDiscriminator?: boolean): any;
@@ -1,51 +0,0 @@
1
- "use strict";
2
- /* tslint:disable */
3
- /* eslint-disable */
4
- /**
5
- * My API
6
- * API documentation for my Laravel app
7
- *
8
- * The version of the OpenAPI document: 1.0.0
9
- *
10
- *
11
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
- * https://openapi-generator.tech
13
- * Do not edit the class manually.
14
- */
15
- Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.instanceOfLinkProductChildrenTagRequest = instanceOfLinkProductChildrenTagRequest;
17
- exports.LinkProductChildrenTagRequestFromJSON = LinkProductChildrenTagRequestFromJSON;
18
- exports.LinkProductChildrenTagRequestFromJSONTyped = LinkProductChildrenTagRequestFromJSONTyped;
19
- exports.LinkProductChildrenTagRequestToJSON = LinkProductChildrenTagRequestToJSON;
20
- exports.LinkProductChildrenTagRequestToJSONTyped = LinkProductChildrenTagRequestToJSONTyped;
21
- /**
22
- * Check if a given object implements the LinkProductChildrenTagRequest interface.
23
- */
24
- function instanceOfLinkProductChildrenTagRequest(value) {
25
- if (!('productChildIds' in value) || value['productChildIds'] === undefined)
26
- return false;
27
- return true;
28
- }
29
- function LinkProductChildrenTagRequestFromJSON(json) {
30
- return LinkProductChildrenTagRequestFromJSONTyped(json, false);
31
- }
32
- function LinkProductChildrenTagRequestFromJSONTyped(json, ignoreDiscriminator) {
33
- if (json == null) {
34
- return json;
35
- }
36
- return {
37
- 'productChildIds': json['product_child_ids'],
38
- };
39
- }
40
- function LinkProductChildrenTagRequestToJSON(json) {
41
- return LinkProductChildrenTagRequestToJSONTyped(json, false);
42
- }
43
- function LinkProductChildrenTagRequestToJSONTyped(value, ignoreDiscriminator) {
44
- if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
45
- if (value == null) {
46
- return value;
47
- }
48
- return {
49
- 'product_child_ids': value['productChildIds'],
50
- };
51
- }
@@ -1,66 +0,0 @@
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
- /**
17
- *
18
- * @export
19
- * @interface LinkProductChildrenTagRequest
20
- */
21
- export interface LinkProductChildrenTagRequest {
22
- /**
23
- *
24
- * @type {Array<number>}
25
- * @memberof LinkProductChildrenTagRequest
26
- */
27
- productChildIds: Array<number>;
28
- }
29
-
30
- /**
31
- * Check if a given object implements the LinkProductChildrenTagRequest interface.
32
- */
33
- export function instanceOfLinkProductChildrenTagRequest(value: object): value is LinkProductChildrenTagRequest {
34
- if (!('productChildIds' in value) || value['productChildIds'] === undefined) return false;
35
- return true;
36
- }
37
-
38
- export function LinkProductChildrenTagRequestFromJSON(json: any): LinkProductChildrenTagRequest {
39
- return LinkProductChildrenTagRequestFromJSONTyped(json, false);
40
- }
41
-
42
- export function LinkProductChildrenTagRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): LinkProductChildrenTagRequest {
43
- if (json == null) {
44
- return json;
45
- }
46
- return {
47
-
48
- 'productChildIds': json['product_child_ids'],
49
- };
50
- }
51
-
52
- export function LinkProductChildrenTagRequestToJSON(json: any): LinkProductChildrenTagRequest {
53
- return LinkProductChildrenTagRequestToJSONTyped(json, false);
54
- }
55
-
56
- export function LinkProductChildrenTagRequestToJSONTyped(value?: LinkProductChildrenTagRequest | null, ignoreDiscriminator: boolean = false): any {
57
- if (value == null) {
58
- return value;
59
- }
60
-
61
- return {
62
-
63
- 'product_child_ids': value['productChildIds'],
64
- };
65
- }
66
-