@digital8/lighting-illusions-ts-sdk 0.0.656 → 0.0.657
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 +8 -6
- package/README.md +7 -7
- package/dist/apis/ProductApi.d.ts +1 -25
- package/dist/apis/ProductApi.js +0 -96
- package/dist/apis/ProductChildSiteDetailApi.d.ts +42 -0
- package/dist/apis/ProductChildSiteDetailApi.js +176 -0
- package/dist/apis/index.d.ts +1 -0
- package/dist/apis/index.js +1 -0
- package/dist/models/AttachDocumentsProductChildSiteDetailRequest.d.ts +33 -0
- package/dist/models/AttachDocumentsProductChildSiteDetailRequest.js +52 -0
- package/dist/models/AttachDocumentsProductChildSiteDetailRequestDocumentsInner.d.ts +38 -0
- package/dist/models/AttachDocumentsProductChildSiteDetailRequestDocumentsInner.js +53 -0
- package/dist/models/DetachDocumentsProductChildSiteDetailRequest.d.ts +32 -0
- package/dist/models/DetachDocumentsProductChildSiteDetailRequest.js +51 -0
- package/dist/models/index.d.ts +3 -3
- package/dist/models/index.js +3 -3
- package/docs/{AttachDocumentsProductChildRequest.md → AttachDocumentsProductChildSiteDetailRequest.md} +5 -5
- package/docs/{AttachDocumentsProductChildRequestDocumentsInner.md → AttachDocumentsProductChildSiteDetailRequestDocumentsInner.md} +4 -4
- package/docs/{DetachDocumentsProductChildRequest.md → DetachDocumentsProductChildSiteDetailRequest.md} +4 -4
- package/docs/ProductApi.md +0 -138
- package/docs/ProductChildSiteDetailApi.md +146 -0
- package/package.json +1 -1
- package/src/apis/ProductApi.ts +0 -96
- package/src/apis/ProductChildSiteDetailApi.ts +126 -0
- package/src/apis/index.ts +1 -0
- package/src/models/AttachDocumentsProductChildSiteDetailRequest.ts +74 -0
- package/src/models/AttachDocumentsProductChildSiteDetailRequestDocumentsInner.ts +74 -0
- package/src/models/DetachDocumentsProductChildSiteDetailRequest.ts +66 -0
- package/src/models/index.ts +3 -3
- package/dist/models/AttachDocumentsProductChildRequest.d.ts +0 -33
- package/dist/models/AttachDocumentsProductChildRequest.js +0 -52
- package/dist/models/AttachDocumentsProductChildRequestDocumentsInner.d.ts +0 -38
- package/dist/models/AttachDocumentsProductChildRequestDocumentsInner.js +0 -53
- package/dist/models/DetachDocumentsProductChildRequest.d.ts +0 -32
- package/dist/models/DetachDocumentsProductChildRequest.js +0 -51
- package/src/models/AttachDocumentsProductChildRequest.ts +0 -74
- package/src/models/AttachDocumentsProductChildRequestDocumentsInner.ts +0 -74
- package/src/models/DetachDocumentsProductChildRequest.ts +0 -66
|
@@ -1,53 +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.instanceOfAttachDocumentsProductChildRequestDocumentsInner = instanceOfAttachDocumentsProductChildRequestDocumentsInner;
|
|
17
|
-
exports.AttachDocumentsProductChildRequestDocumentsInnerFromJSON = AttachDocumentsProductChildRequestDocumentsInnerFromJSON;
|
|
18
|
-
exports.AttachDocumentsProductChildRequestDocumentsInnerFromJSONTyped = AttachDocumentsProductChildRequestDocumentsInnerFromJSONTyped;
|
|
19
|
-
exports.AttachDocumentsProductChildRequestDocumentsInnerToJSON = AttachDocumentsProductChildRequestDocumentsInnerToJSON;
|
|
20
|
-
exports.AttachDocumentsProductChildRequestDocumentsInnerToJSONTyped = AttachDocumentsProductChildRequestDocumentsInnerToJSONTyped;
|
|
21
|
-
/**
|
|
22
|
-
* Check if a given object implements the AttachDocumentsProductChildRequestDocumentsInner interface.
|
|
23
|
-
*/
|
|
24
|
-
function instanceOfAttachDocumentsProductChildRequestDocumentsInner(value) {
|
|
25
|
-
if (!('documentId' in value) || value['documentId'] === undefined)
|
|
26
|
-
return false;
|
|
27
|
-
return true;
|
|
28
|
-
}
|
|
29
|
-
function AttachDocumentsProductChildRequestDocumentsInnerFromJSON(json) {
|
|
30
|
-
return AttachDocumentsProductChildRequestDocumentsInnerFromJSONTyped(json, false);
|
|
31
|
-
}
|
|
32
|
-
function AttachDocumentsProductChildRequestDocumentsInnerFromJSONTyped(json, ignoreDiscriminator) {
|
|
33
|
-
if (json == null) {
|
|
34
|
-
return json;
|
|
35
|
-
}
|
|
36
|
-
return {
|
|
37
|
-
'documentId': json['document_id'],
|
|
38
|
-
'index': json['index'] == null ? undefined : json['index'],
|
|
39
|
-
};
|
|
40
|
-
}
|
|
41
|
-
function AttachDocumentsProductChildRequestDocumentsInnerToJSON(json) {
|
|
42
|
-
return AttachDocumentsProductChildRequestDocumentsInnerToJSONTyped(json, false);
|
|
43
|
-
}
|
|
44
|
-
function AttachDocumentsProductChildRequestDocumentsInnerToJSONTyped(value, ignoreDiscriminator) {
|
|
45
|
-
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
46
|
-
if (value == null) {
|
|
47
|
-
return value;
|
|
48
|
-
}
|
|
49
|
-
return {
|
|
50
|
-
'document_id': value['documentId'],
|
|
51
|
-
'index': value['index'],
|
|
52
|
-
};
|
|
53
|
-
}
|
|
@@ -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 DetachDocumentsProductChildRequest
|
|
16
|
-
*/
|
|
17
|
-
export interface DetachDocumentsProductChildRequest {
|
|
18
|
-
/**
|
|
19
|
-
*
|
|
20
|
-
* @type {Array<number>}
|
|
21
|
-
* @memberof DetachDocumentsProductChildRequest
|
|
22
|
-
*/
|
|
23
|
-
documents: Array<number>;
|
|
24
|
-
}
|
|
25
|
-
/**
|
|
26
|
-
* Check if a given object implements the DetachDocumentsProductChildRequest interface.
|
|
27
|
-
*/
|
|
28
|
-
export declare function instanceOfDetachDocumentsProductChildRequest(value: object): value is DetachDocumentsProductChildRequest;
|
|
29
|
-
export declare function DetachDocumentsProductChildRequestFromJSON(json: any): DetachDocumentsProductChildRequest;
|
|
30
|
-
export declare function DetachDocumentsProductChildRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): DetachDocumentsProductChildRequest;
|
|
31
|
-
export declare function DetachDocumentsProductChildRequestToJSON(json: any): DetachDocumentsProductChildRequest;
|
|
32
|
-
export declare function DetachDocumentsProductChildRequestToJSONTyped(value?: DetachDocumentsProductChildRequest | 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.instanceOfDetachDocumentsProductChildRequest = instanceOfDetachDocumentsProductChildRequest;
|
|
17
|
-
exports.DetachDocumentsProductChildRequestFromJSON = DetachDocumentsProductChildRequestFromJSON;
|
|
18
|
-
exports.DetachDocumentsProductChildRequestFromJSONTyped = DetachDocumentsProductChildRequestFromJSONTyped;
|
|
19
|
-
exports.DetachDocumentsProductChildRequestToJSON = DetachDocumentsProductChildRequestToJSON;
|
|
20
|
-
exports.DetachDocumentsProductChildRequestToJSONTyped = DetachDocumentsProductChildRequestToJSONTyped;
|
|
21
|
-
/**
|
|
22
|
-
* Check if a given object implements the DetachDocumentsProductChildRequest interface.
|
|
23
|
-
*/
|
|
24
|
-
function instanceOfDetachDocumentsProductChildRequest(value) {
|
|
25
|
-
if (!('documents' in value) || value['documents'] === undefined)
|
|
26
|
-
return false;
|
|
27
|
-
return true;
|
|
28
|
-
}
|
|
29
|
-
function DetachDocumentsProductChildRequestFromJSON(json) {
|
|
30
|
-
return DetachDocumentsProductChildRequestFromJSONTyped(json, false);
|
|
31
|
-
}
|
|
32
|
-
function DetachDocumentsProductChildRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
33
|
-
if (json == null) {
|
|
34
|
-
return json;
|
|
35
|
-
}
|
|
36
|
-
return {
|
|
37
|
-
'documents': json['documents'],
|
|
38
|
-
};
|
|
39
|
-
}
|
|
40
|
-
function DetachDocumentsProductChildRequestToJSON(json) {
|
|
41
|
-
return DetachDocumentsProductChildRequestToJSONTyped(json, false);
|
|
42
|
-
}
|
|
43
|
-
function DetachDocumentsProductChildRequestToJSONTyped(value, ignoreDiscriminator) {
|
|
44
|
-
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
45
|
-
if (value == null) {
|
|
46
|
-
return value;
|
|
47
|
-
}
|
|
48
|
-
return {
|
|
49
|
-
'documents': value['documents'],
|
|
50
|
-
};
|
|
51
|
-
}
|
|
@@ -1,74 +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
|
-
import type { AttachDocumentsProductChildRequestDocumentsInner } from './AttachDocumentsProductChildRequestDocumentsInner';
|
|
17
|
-
import {
|
|
18
|
-
AttachDocumentsProductChildRequestDocumentsInnerFromJSON,
|
|
19
|
-
AttachDocumentsProductChildRequestDocumentsInnerFromJSONTyped,
|
|
20
|
-
AttachDocumentsProductChildRequestDocumentsInnerToJSON,
|
|
21
|
-
AttachDocumentsProductChildRequestDocumentsInnerToJSONTyped,
|
|
22
|
-
} from './AttachDocumentsProductChildRequestDocumentsInner';
|
|
23
|
-
|
|
24
|
-
/**
|
|
25
|
-
*
|
|
26
|
-
* @export
|
|
27
|
-
* @interface AttachDocumentsProductChildRequest
|
|
28
|
-
*/
|
|
29
|
-
export interface AttachDocumentsProductChildRequest {
|
|
30
|
-
/**
|
|
31
|
-
*
|
|
32
|
-
* @type {Array<AttachDocumentsProductChildRequestDocumentsInner>}
|
|
33
|
-
* @memberof AttachDocumentsProductChildRequest
|
|
34
|
-
*/
|
|
35
|
-
documents: Array<AttachDocumentsProductChildRequestDocumentsInner>;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
/**
|
|
39
|
-
* Check if a given object implements the AttachDocumentsProductChildRequest interface.
|
|
40
|
-
*/
|
|
41
|
-
export function instanceOfAttachDocumentsProductChildRequest(value: object): value is AttachDocumentsProductChildRequest {
|
|
42
|
-
if (!('documents' in value) || value['documents'] === undefined) return false;
|
|
43
|
-
return true;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
export function AttachDocumentsProductChildRequestFromJSON(json: any): AttachDocumentsProductChildRequest {
|
|
47
|
-
return AttachDocumentsProductChildRequestFromJSONTyped(json, false);
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
export function AttachDocumentsProductChildRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttachDocumentsProductChildRequest {
|
|
51
|
-
if (json == null) {
|
|
52
|
-
return json;
|
|
53
|
-
}
|
|
54
|
-
return {
|
|
55
|
-
|
|
56
|
-
'documents': ((json['documents'] as Array<any>).map(AttachDocumentsProductChildRequestDocumentsInnerFromJSON)),
|
|
57
|
-
};
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
export function AttachDocumentsProductChildRequestToJSON(json: any): AttachDocumentsProductChildRequest {
|
|
61
|
-
return AttachDocumentsProductChildRequestToJSONTyped(json, false);
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
export function AttachDocumentsProductChildRequestToJSONTyped(value?: AttachDocumentsProductChildRequest | null, ignoreDiscriminator: boolean = false): any {
|
|
65
|
-
if (value == null) {
|
|
66
|
-
return value;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
return {
|
|
70
|
-
|
|
71
|
-
'documents': ((value['documents'] as Array<any>).map(AttachDocumentsProductChildRequestDocumentsInnerToJSON)),
|
|
72
|
-
};
|
|
73
|
-
}
|
|
74
|
-
|
|
@@ -1,74 +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 AttachDocumentsProductChildRequestDocumentsInner
|
|
20
|
-
*/
|
|
21
|
-
export interface AttachDocumentsProductChildRequestDocumentsInner {
|
|
22
|
-
/**
|
|
23
|
-
*
|
|
24
|
-
* @type {number}
|
|
25
|
-
* @memberof AttachDocumentsProductChildRequestDocumentsInner
|
|
26
|
-
*/
|
|
27
|
-
documentId: number;
|
|
28
|
-
/**
|
|
29
|
-
*
|
|
30
|
-
* @type {number}
|
|
31
|
-
* @memberof AttachDocumentsProductChildRequestDocumentsInner
|
|
32
|
-
*/
|
|
33
|
-
index?: number;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
/**
|
|
37
|
-
* Check if a given object implements the AttachDocumentsProductChildRequestDocumentsInner interface.
|
|
38
|
-
*/
|
|
39
|
-
export function instanceOfAttachDocumentsProductChildRequestDocumentsInner(value: object): value is AttachDocumentsProductChildRequestDocumentsInner {
|
|
40
|
-
if (!('documentId' in value) || value['documentId'] === undefined) return false;
|
|
41
|
-
return true;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
export function AttachDocumentsProductChildRequestDocumentsInnerFromJSON(json: any): AttachDocumentsProductChildRequestDocumentsInner {
|
|
45
|
-
return AttachDocumentsProductChildRequestDocumentsInnerFromJSONTyped(json, false);
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
export function AttachDocumentsProductChildRequestDocumentsInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttachDocumentsProductChildRequestDocumentsInner {
|
|
49
|
-
if (json == null) {
|
|
50
|
-
return json;
|
|
51
|
-
}
|
|
52
|
-
return {
|
|
53
|
-
|
|
54
|
-
'documentId': json['document_id'],
|
|
55
|
-
'index': json['index'] == null ? undefined : json['index'],
|
|
56
|
-
};
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
export function AttachDocumentsProductChildRequestDocumentsInnerToJSON(json: any): AttachDocumentsProductChildRequestDocumentsInner {
|
|
60
|
-
return AttachDocumentsProductChildRequestDocumentsInnerToJSONTyped(json, false);
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
export function AttachDocumentsProductChildRequestDocumentsInnerToJSONTyped(value?: AttachDocumentsProductChildRequestDocumentsInner | null, ignoreDiscriminator: boolean = false): any {
|
|
64
|
-
if (value == null) {
|
|
65
|
-
return value;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
return {
|
|
69
|
-
|
|
70
|
-
'document_id': value['documentId'],
|
|
71
|
-
'index': value['index'],
|
|
72
|
-
};
|
|
73
|
-
}
|
|
74
|
-
|
|
@@ -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 DetachDocumentsProductChildRequest
|
|
20
|
-
*/
|
|
21
|
-
export interface DetachDocumentsProductChildRequest {
|
|
22
|
-
/**
|
|
23
|
-
*
|
|
24
|
-
* @type {Array<number>}
|
|
25
|
-
* @memberof DetachDocumentsProductChildRequest
|
|
26
|
-
*/
|
|
27
|
-
documents: Array<number>;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
/**
|
|
31
|
-
* Check if a given object implements the DetachDocumentsProductChildRequest interface.
|
|
32
|
-
*/
|
|
33
|
-
export function instanceOfDetachDocumentsProductChildRequest(value: object): value is DetachDocumentsProductChildRequest {
|
|
34
|
-
if (!('documents' in value) || value['documents'] === undefined) return false;
|
|
35
|
-
return true;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
export function DetachDocumentsProductChildRequestFromJSON(json: any): DetachDocumentsProductChildRequest {
|
|
39
|
-
return DetachDocumentsProductChildRequestFromJSONTyped(json, false);
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
export function DetachDocumentsProductChildRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): DetachDocumentsProductChildRequest {
|
|
43
|
-
if (json == null) {
|
|
44
|
-
return json;
|
|
45
|
-
}
|
|
46
|
-
return {
|
|
47
|
-
|
|
48
|
-
'documents': json['documents'],
|
|
49
|
-
};
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
export function DetachDocumentsProductChildRequestToJSON(json: any): DetachDocumentsProductChildRequest {
|
|
53
|
-
return DetachDocumentsProductChildRequestToJSONTyped(json, false);
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
export function DetachDocumentsProductChildRequestToJSONTyped(value?: DetachDocumentsProductChildRequest | null, ignoreDiscriminator: boolean = false): any {
|
|
57
|
-
if (value == null) {
|
|
58
|
-
return value;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
return {
|
|
62
|
-
|
|
63
|
-
'documents': value['documents'],
|
|
64
|
-
};
|
|
65
|
-
}
|
|
66
|
-
|