@digital8/lighting-illusions-ts-sdk 0.0.446 → 0.0.448

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 (76) hide show
  1. package/.openapi-generator/FILES +24 -0
  2. package/README.md +18 -2
  3. package/dist/apis/AttributeApi.d.ts +14 -3
  4. package/dist/apis/AttributeApi.js +46 -1
  5. package/dist/apis/ProductTypeApi.d.ts +14 -3
  6. package/dist/apis/ProductTypeApi.js +46 -1
  7. package/dist/apis/SiteApi.d.ts +14 -3
  8. package/dist/apis/SiteApi.js +46 -1
  9. package/dist/apis/SupplierApi.d.ts +14 -3
  10. package/dist/apis/SupplierApi.js +46 -1
  11. package/dist/models/AttributeListResource.d.ts +56 -0
  12. package/dist/models/AttributeListResource.js +67 -0
  13. package/dist/models/AttributeListResourceArrayResponse.d.ts +33 -0
  14. package/dist/models/AttributeListResourceArrayResponse.js +50 -0
  15. package/dist/models/IndexAttributeRequest.d.ts +8 -1
  16. package/dist/models/IndexAttributeRequest.js +7 -1
  17. package/dist/models/IndexSupplierRequest.d.ts +8 -1
  18. package/dist/models/IndexSupplierRequest.js +7 -1
  19. package/dist/models/PaginatedAttributeListResourceResponse.d.ts +40 -0
  20. package/dist/models/PaginatedAttributeListResourceResponse.js +57 -0
  21. package/dist/models/PaginatedProductTypeListResourceResponse.d.ts +40 -0
  22. package/dist/models/PaginatedProductTypeListResourceResponse.js +57 -0
  23. package/dist/models/PaginatedSiteListResourceResponse.d.ts +40 -0
  24. package/dist/models/PaginatedSiteListResourceResponse.js +57 -0
  25. package/dist/models/PaginatedSupplierListResourceResponse.d.ts +40 -0
  26. package/dist/models/PaginatedSupplierListResourceResponse.js +57 -0
  27. package/dist/models/ProductTypeListResource.d.ts +38 -0
  28. package/dist/models/ProductTypeListResource.js +55 -0
  29. package/dist/models/ProductTypeListResourceArrayResponse.d.ts +33 -0
  30. package/dist/models/ProductTypeListResourceArrayResponse.js +50 -0
  31. package/dist/models/SiteListResource.d.ts +50 -0
  32. package/dist/models/SiteListResource.js +63 -0
  33. package/dist/models/SiteListResourceArrayResponse.d.ts +33 -0
  34. package/dist/models/SiteListResourceArrayResponse.js +50 -0
  35. package/dist/models/SupplierListResource.d.ts +57 -0
  36. package/dist/models/SupplierListResource.js +68 -0
  37. package/dist/models/SupplierListResourceArrayResponse.d.ts +33 -0
  38. package/dist/models/SupplierListResourceArrayResponse.js +50 -0
  39. package/dist/models/index.d.ts +12 -0
  40. package/dist/models/index.js +12 -0
  41. package/docs/AttributeApi.md +69 -3
  42. package/docs/AttributeListResource.md +42 -0
  43. package/docs/AttributeListResourceArrayResponse.md +34 -0
  44. package/docs/PaginatedAttributeListResourceResponse.md +36 -0
  45. package/docs/PaginatedProductTypeListResourceResponse.md +36 -0
  46. package/docs/PaginatedSiteListResourceResponse.md +36 -0
  47. package/docs/PaginatedSupplierListResourceResponse.md +36 -0
  48. package/docs/ProductTypeApi.md +69 -3
  49. package/docs/ProductTypeListResource.md +36 -0
  50. package/docs/ProductTypeListResourceArrayResponse.md +34 -0
  51. package/docs/SiteApi.md +69 -3
  52. package/docs/SiteListResource.md +40 -0
  53. package/docs/SiteListResourceArrayResponse.md +34 -0
  54. package/docs/SupplierApi.md +69 -3
  55. package/docs/SupplierListResource.md +42 -0
  56. package/docs/SupplierListResourceArrayResponse.md +34 -0
  57. package/package.json +1 -1
  58. package/src/apis/AttributeApi.ts +42 -6
  59. package/src/apis/ProductTypeApi.ts +42 -6
  60. package/src/apis/SiteApi.ts +42 -6
  61. package/src/apis/SupplierApi.ts +42 -6
  62. package/src/models/AttributeListResource.ts +102 -0
  63. package/src/models/AttributeListResourceArrayResponse.ts +73 -0
  64. package/src/models/IndexAttributeRequest.ts +9 -1
  65. package/src/models/IndexSupplierRequest.ts +9 -1
  66. package/src/models/PaginatedAttributeListResourceResponse.ts +90 -0
  67. package/src/models/PaginatedProductTypeListResourceResponse.ts +90 -0
  68. package/src/models/PaginatedSiteListResourceResponse.ts +90 -0
  69. package/src/models/PaginatedSupplierListResourceResponse.ts +90 -0
  70. package/src/models/ProductTypeListResource.ts +75 -0
  71. package/src/models/ProductTypeListResourceArrayResponse.ts +73 -0
  72. package/src/models/SiteListResource.ts +93 -0
  73. package/src/models/SiteListResourceArrayResponse.ts +73 -0
  74. package/src/models/SupplierListResource.ts +110 -0
  75. package/src/models/SupplierListResourceArrayResponse.ts +73 -0
  76. package/src/models/index.ts +12 -0
@@ -0,0 +1,75 @@
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 ProductTypeListResource
20
+ */
21
+ export interface ProductTypeListResource {
22
+ /**
23
+ *
24
+ * @type {number}
25
+ * @memberof ProductTypeListResource
26
+ */
27
+ id: number;
28
+ /**
29
+ *
30
+ * @type {string}
31
+ * @memberof ProductTypeListResource
32
+ */
33
+ name: string;
34
+ }
35
+
36
+ /**
37
+ * Check if a given object implements the ProductTypeListResource interface.
38
+ */
39
+ export function instanceOfProductTypeListResource(value: object): value is ProductTypeListResource {
40
+ if (!('id' in value) || value['id'] === undefined) return false;
41
+ if (!('name' in value) || value['name'] === undefined) return false;
42
+ return true;
43
+ }
44
+
45
+ export function ProductTypeListResourceFromJSON(json: any): ProductTypeListResource {
46
+ return ProductTypeListResourceFromJSONTyped(json, false);
47
+ }
48
+
49
+ export function ProductTypeListResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductTypeListResource {
50
+ if (json == null) {
51
+ return json;
52
+ }
53
+ return {
54
+
55
+ 'id': json['id'],
56
+ 'name': json['name'],
57
+ };
58
+ }
59
+
60
+ export function ProductTypeListResourceToJSON(json: any): ProductTypeListResource {
61
+ return ProductTypeListResourceToJSONTyped(json, false);
62
+ }
63
+
64
+ export function ProductTypeListResourceToJSONTyped(value?: ProductTypeListResource | null, ignoreDiscriminator: boolean = false): any {
65
+ if (value == null) {
66
+ return value;
67
+ }
68
+
69
+ return {
70
+
71
+ 'id': value['id'],
72
+ 'name': value['name'],
73
+ };
74
+ }
75
+
@@ -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 { ProductTypeListResource } from './ProductTypeListResource';
17
+ import {
18
+ ProductTypeListResourceFromJSON,
19
+ ProductTypeListResourceFromJSONTyped,
20
+ ProductTypeListResourceToJSON,
21
+ ProductTypeListResourceToJSONTyped,
22
+ } from './ProductTypeListResource';
23
+
24
+ /**
25
+ *
26
+ * @export
27
+ * @interface ProductTypeListResourceArrayResponse
28
+ */
29
+ export interface ProductTypeListResourceArrayResponse {
30
+ /**
31
+ *
32
+ * @type {Array<ProductTypeListResource>}
33
+ * @memberof ProductTypeListResourceArrayResponse
34
+ */
35
+ data?: Array<ProductTypeListResource>;
36
+ }
37
+
38
+ /**
39
+ * Check if a given object implements the ProductTypeListResourceArrayResponse interface.
40
+ */
41
+ export function instanceOfProductTypeListResourceArrayResponse(value: object): value is ProductTypeListResourceArrayResponse {
42
+ return true;
43
+ }
44
+
45
+ export function ProductTypeListResourceArrayResponseFromJSON(json: any): ProductTypeListResourceArrayResponse {
46
+ return ProductTypeListResourceArrayResponseFromJSONTyped(json, false);
47
+ }
48
+
49
+ export function ProductTypeListResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductTypeListResourceArrayResponse {
50
+ if (json == null) {
51
+ return json;
52
+ }
53
+ return {
54
+
55
+ 'data': json['data'] == null ? undefined : ((json['data'] as Array<any>).map(ProductTypeListResourceFromJSON)),
56
+ };
57
+ }
58
+
59
+ export function ProductTypeListResourceArrayResponseToJSON(json: any): ProductTypeListResourceArrayResponse {
60
+ return ProductTypeListResourceArrayResponseToJSONTyped(json, false);
61
+ }
62
+
63
+ export function ProductTypeListResourceArrayResponseToJSONTyped(value?: ProductTypeListResourceArrayResponse | 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(ProductTypeListResourceToJSON)),
71
+ };
72
+ }
73
+
@@ -0,0 +1,93 @@
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 SiteListResource
20
+ */
21
+ export interface SiteListResource {
22
+ /**
23
+ *
24
+ * @type {number}
25
+ * @memberof SiteListResource
26
+ */
27
+ id: number;
28
+ /**
29
+ *
30
+ * @type {string}
31
+ * @memberof SiteListResource
32
+ */
33
+ name: string;
34
+ /**
35
+ *
36
+ * @type {string}
37
+ * @memberof SiteListResource
38
+ */
39
+ abbreviation: string;
40
+ /**
41
+ *
42
+ * @type {string}
43
+ * @memberof SiteListResource
44
+ */
45
+ domain: string;
46
+ }
47
+
48
+ /**
49
+ * Check if a given object implements the SiteListResource interface.
50
+ */
51
+ export function instanceOfSiteListResource(value: object): value is SiteListResource {
52
+ if (!('id' in value) || value['id'] === undefined) return false;
53
+ if (!('name' in value) || value['name'] === undefined) return false;
54
+ if (!('abbreviation' in value) || value['abbreviation'] === undefined) return false;
55
+ if (!('domain' in value) || value['domain'] === undefined) return false;
56
+ return true;
57
+ }
58
+
59
+ export function SiteListResourceFromJSON(json: any): SiteListResource {
60
+ return SiteListResourceFromJSONTyped(json, false);
61
+ }
62
+
63
+ export function SiteListResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): SiteListResource {
64
+ if (json == null) {
65
+ return json;
66
+ }
67
+ return {
68
+
69
+ 'id': json['id'],
70
+ 'name': json['name'],
71
+ 'abbreviation': json['abbreviation'],
72
+ 'domain': json['domain'],
73
+ };
74
+ }
75
+
76
+ export function SiteListResourceToJSON(json: any): SiteListResource {
77
+ return SiteListResourceToJSONTyped(json, false);
78
+ }
79
+
80
+ export function SiteListResourceToJSONTyped(value?: SiteListResource | 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
+ 'abbreviation': value['abbreviation'],
90
+ 'domain': value['domain'],
91
+ };
92
+ }
93
+
@@ -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 { SiteListResource } from './SiteListResource';
17
+ import {
18
+ SiteListResourceFromJSON,
19
+ SiteListResourceFromJSONTyped,
20
+ SiteListResourceToJSON,
21
+ SiteListResourceToJSONTyped,
22
+ } from './SiteListResource';
23
+
24
+ /**
25
+ *
26
+ * @export
27
+ * @interface SiteListResourceArrayResponse
28
+ */
29
+ export interface SiteListResourceArrayResponse {
30
+ /**
31
+ *
32
+ * @type {Array<SiteListResource>}
33
+ * @memberof SiteListResourceArrayResponse
34
+ */
35
+ data?: Array<SiteListResource>;
36
+ }
37
+
38
+ /**
39
+ * Check if a given object implements the SiteListResourceArrayResponse interface.
40
+ */
41
+ export function instanceOfSiteListResourceArrayResponse(value: object): value is SiteListResourceArrayResponse {
42
+ return true;
43
+ }
44
+
45
+ export function SiteListResourceArrayResponseFromJSON(json: any): SiteListResourceArrayResponse {
46
+ return SiteListResourceArrayResponseFromJSONTyped(json, false);
47
+ }
48
+
49
+ export function SiteListResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SiteListResourceArrayResponse {
50
+ if (json == null) {
51
+ return json;
52
+ }
53
+ return {
54
+
55
+ 'data': json['data'] == null ? undefined : ((json['data'] as Array<any>).map(SiteListResourceFromJSON)),
56
+ };
57
+ }
58
+
59
+ export function SiteListResourceArrayResponseToJSON(json: any): SiteListResourceArrayResponse {
60
+ return SiteListResourceArrayResponseToJSONTyped(json, false);
61
+ }
62
+
63
+ export function SiteListResourceArrayResponseToJSONTyped(value?: SiteListResourceArrayResponse | 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(SiteListResourceToJSON)),
71
+ };
72
+ }
73
+
@@ -0,0 +1,110 @@
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 { AssetLiteResource } from './AssetLiteResource';
17
+ import {
18
+ AssetLiteResourceFromJSON,
19
+ AssetLiteResourceFromJSONTyped,
20
+ AssetLiteResourceToJSON,
21
+ AssetLiteResourceToJSONTyped,
22
+ } from './AssetLiteResource';
23
+
24
+ /**
25
+ *
26
+ * @export
27
+ * @interface SupplierListResource
28
+ */
29
+ export interface SupplierListResource {
30
+ /**
31
+ *
32
+ * @type {number}
33
+ * @memberof SupplierListResource
34
+ */
35
+ id: number;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof SupplierListResource
40
+ */
41
+ name: string;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof SupplierListResource
46
+ */
47
+ slug: string;
48
+ /**
49
+ *
50
+ * @type {AssetLiteResource}
51
+ * @memberof SupplierListResource
52
+ */
53
+ thumbnail: AssetLiteResource | null;
54
+ /**
55
+ *
56
+ * @type {number}
57
+ * @memberof SupplierListResource
58
+ */
59
+ supplierEta: number;
60
+ }
61
+
62
+ /**
63
+ * Check if a given object implements the SupplierListResource interface.
64
+ */
65
+ export function instanceOfSupplierListResource(value: object): value is SupplierListResource {
66
+ if (!('id' in value) || value['id'] === undefined) return false;
67
+ if (!('name' in value) || value['name'] === undefined) return false;
68
+ if (!('slug' in value) || value['slug'] === undefined) return false;
69
+ if (!('thumbnail' in value) || value['thumbnail'] === undefined) return false;
70
+ if (!('supplierEta' in value) || value['supplierEta'] === undefined) return false;
71
+ return true;
72
+ }
73
+
74
+ export function SupplierListResourceFromJSON(json: any): SupplierListResource {
75
+ return SupplierListResourceFromJSONTyped(json, false);
76
+ }
77
+
78
+ export function SupplierListResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): SupplierListResource {
79
+ if (json == null) {
80
+ return json;
81
+ }
82
+ return {
83
+
84
+ 'id': json['id'],
85
+ 'name': json['name'],
86
+ 'slug': json['slug'],
87
+ 'thumbnail': AssetLiteResourceFromJSON(json['thumbnail']),
88
+ 'supplierEta': json['supplierEta'],
89
+ };
90
+ }
91
+
92
+ export function SupplierListResourceToJSON(json: any): SupplierListResource {
93
+ return SupplierListResourceToJSONTyped(json, false);
94
+ }
95
+
96
+ export function SupplierListResourceToJSONTyped(value?: SupplierListResource | null, ignoreDiscriminator: boolean = false): any {
97
+ if (value == null) {
98
+ return value;
99
+ }
100
+
101
+ return {
102
+
103
+ 'id': value['id'],
104
+ 'name': value['name'],
105
+ 'slug': value['slug'],
106
+ 'thumbnail': AssetLiteResourceToJSON(value['thumbnail']),
107
+ 'supplierEta': value['supplierEta'],
108
+ };
109
+ }
110
+
@@ -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 { SupplierListResource } from './SupplierListResource';
17
+ import {
18
+ SupplierListResourceFromJSON,
19
+ SupplierListResourceFromJSONTyped,
20
+ SupplierListResourceToJSON,
21
+ SupplierListResourceToJSONTyped,
22
+ } from './SupplierListResource';
23
+
24
+ /**
25
+ *
26
+ * @export
27
+ * @interface SupplierListResourceArrayResponse
28
+ */
29
+ export interface SupplierListResourceArrayResponse {
30
+ /**
31
+ *
32
+ * @type {Array<SupplierListResource>}
33
+ * @memberof SupplierListResourceArrayResponse
34
+ */
35
+ data?: Array<SupplierListResource>;
36
+ }
37
+
38
+ /**
39
+ * Check if a given object implements the SupplierListResourceArrayResponse interface.
40
+ */
41
+ export function instanceOfSupplierListResourceArrayResponse(value: object): value is SupplierListResourceArrayResponse {
42
+ return true;
43
+ }
44
+
45
+ export function SupplierListResourceArrayResponseFromJSON(json: any): SupplierListResourceArrayResponse {
46
+ return SupplierListResourceArrayResponseFromJSONTyped(json, false);
47
+ }
48
+
49
+ export function SupplierListResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SupplierListResourceArrayResponse {
50
+ if (json == null) {
51
+ return json;
52
+ }
53
+ return {
54
+
55
+ 'data': json['data'] == null ? undefined : ((json['data'] as Array<any>).map(SupplierListResourceFromJSON)),
56
+ };
57
+ }
58
+
59
+ export function SupplierListResourceArrayResponseToJSON(json: any): SupplierListResourceArrayResponse {
60
+ return SupplierListResourceArrayResponseToJSONTyped(json, false);
61
+ }
62
+
63
+ export function SupplierListResourceArrayResponseToJSONTyped(value?: SupplierListResourceArrayResponse | 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(SupplierListResourceToJSON)),
71
+ };
72
+ }
73
+
@@ -7,6 +7,8 @@ export * from './AssetLiteResourceArrayResponse';
7
7
  export * from './AssetResource';
8
8
  export * from './AssetResourceArrayResponse';
9
9
  export * from './AttributeFieldType';
10
+ export * from './AttributeListResource';
11
+ export * from './AttributeListResourceArrayResponse';
10
12
  export * from './AttributeLiteResource';
11
13
  export * from './AttributeLiteResourceArrayResponse';
12
14
  export * from './AttributeProductTypeRelationResource';
@@ -51,6 +53,7 @@ export * from './OverlayTemplateLiteResource';
51
53
  export * from './OverlayTemplateLiteResourceArrayResponse';
52
54
  export * from './OverlayTemplateResource';
53
55
  export * from './OverlayTemplateResourceArrayResponse';
56
+ export * from './PaginatedAttributeListResourceResponse';
54
57
  export * from './PaginatedAttributeLiteResourceResponse';
55
58
  export * from './PaginatedAttributeProductTypeRelationResourceResponse';
56
59
  export * from './PaginatedAttributeResourceResponse';
@@ -63,12 +66,15 @@ export * from './PaginatedProductChildRelationResourceResponse';
63
66
  export * from './PaginatedProductChildResourceResponse';
64
67
  export * from './PaginatedProductLiteResourceResponse';
65
68
  export * from './PaginatedProductResourceResponse';
69
+ export * from './PaginatedProductTypeListResourceResponse';
66
70
  export * from './PaginatedProductTypeLiteResourceResponse';
67
71
  export * from './PaginatedProductTypeResourceResponse';
72
+ export * from './PaginatedSiteListResourceResponse';
68
73
  export * from './PaginatedSiteLiteResourceResponse';
69
74
  export * from './PaginatedSiteNotificationResourceResponse';
70
75
  export * from './PaginatedSiteResourceResponse';
71
76
  export * from './PaginatedSupplierFrontendResourceResponse';
77
+ export * from './PaginatedSupplierListResourceResponse';
72
78
  export * from './PaginatedSupplierLiteResourceResponse';
73
79
  export * from './PaginatedSupplierResourceResponse';
74
80
  export * from './PaginatedTagListResourceResponse';
@@ -89,6 +95,8 @@ export * from './ProductLiteResource';
89
95
  export * from './ProductLiteResourceArrayResponse';
90
96
  export * from './ProductResource';
91
97
  export * from './ProductResourceArrayResponse';
98
+ export * from './ProductTypeListResource';
99
+ export * from './ProductTypeListResourceArrayResponse';
92
100
  export * from './ProductTypeLiteResource';
93
101
  export * from './ProductTypeLiteResourceArrayResponse';
94
102
  export * from './ProductTypeResource';
@@ -97,6 +105,8 @@ export * from './SEOResource';
97
105
  export * from './SEOResourceArrayResponse';
98
106
  export * from './SiteConfigResource';
99
107
  export * from './SiteConfigResourceArrayResponse';
108
+ export * from './SiteListResource';
109
+ export * from './SiteListResourceArrayResponse';
100
110
  export * from './SiteLiteResource';
101
111
  export * from './SiteLiteResourceArrayResponse';
102
112
  export * from './SiteNotificationResource';
@@ -124,6 +134,8 @@ export * from './StoreSupplierRequestSeoInner';
124
134
  export * from './StoreTagRequest';
125
135
  export * from './SupplierFrontendResource';
126
136
  export * from './SupplierFrontendResourceArrayResponse';
137
+ export * from './SupplierListResource';
138
+ export * from './SupplierListResourceArrayResponse';
127
139
  export * from './SupplierLiteResource';
128
140
  export * from './SupplierLiteResourceArrayResponse';
129
141
  export * from './SupplierResource';