@digital8/lighting-illusions-ts-sdk 0.0.1775 → 0.0.1776

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 (137) hide show
  1. package/.openapi-generator/FILES +50 -0
  2. package/README.md +32 -2
  3. package/dist/apis/CartsApi.d.ts +94 -0
  4. package/dist/apis/CartsApi.js +375 -0
  5. package/dist/apis/CustomersApi.d.ts +48 -0
  6. package/dist/apis/CustomersApi.js +196 -0
  7. package/dist/apis/index.d.ts +2 -0
  8. package/dist/apis/index.js +2 -0
  9. package/dist/models/AddressFrontendResource.d.ts +2 -2
  10. package/dist/models/AddressFrontendResource.js +4 -4
  11. package/dist/models/AddressResource.d.ts +1 -1
  12. package/dist/models/AddressResource.js +3 -1
  13. package/dist/models/CartAddressType.d.ts +25 -0
  14. package/dist/models/CartAddressType.js +51 -0
  15. package/dist/models/CartItemListResource.d.ts +51 -0
  16. package/dist/models/CartItemListResource.js +62 -0
  17. package/dist/models/CartItemListResourceArrayResponse.d.ts +33 -0
  18. package/dist/models/CartItemListResourceArrayResponse.js +50 -0
  19. package/dist/models/CartListResource.d.ts +101 -0
  20. package/dist/models/CartListResource.js +90 -0
  21. package/dist/models/CartListResourceArrayResponse.d.ts +33 -0
  22. package/dist/models/CartListResourceArrayResponse.js +50 -0
  23. package/dist/models/CartOrderSource.d.ts +29 -0
  24. package/dist/models/CartOrderSource.js +55 -0
  25. package/dist/models/CartResource.d.ts +155 -0
  26. package/dist/models/CartResource.js +116 -0
  27. package/dist/models/CartResourceArrayResponse.d.ts +33 -0
  28. package/dist/models/CartResourceArrayResponse.js +50 -0
  29. package/dist/models/CartStatus.d.ts +26 -0
  30. package/dist/models/CartStatus.js +52 -0
  31. package/dist/models/CustomerListResource.d.ts +69 -0
  32. package/dist/models/CustomerListResource.js +72 -0
  33. package/dist/models/CustomerListResourceArrayResponse.d.ts +33 -0
  34. package/dist/models/CustomerListResourceArrayResponse.js +50 -0
  35. package/dist/models/CustomerResource.d.ts +69 -0
  36. package/dist/models/CustomerResource.js +72 -0
  37. package/dist/models/CustomerResourceArrayResponse.d.ts +33 -0
  38. package/dist/models/CustomerResourceArrayResponse.js +50 -0
  39. package/dist/models/IndexCartRequest.d.ts +154 -0
  40. package/dist/models/IndexCartRequest.js +105 -0
  41. package/dist/models/IndexCustomerRequest.d.ts +99 -0
  42. package/dist/models/IndexCustomerRequest.js +83 -0
  43. package/dist/models/PaginatedCartListResourceResponse.d.ts +40 -0
  44. package/dist/models/PaginatedCartListResourceResponse.js +57 -0
  45. package/dist/models/PaginatedCustomerListResourceResponse.d.ts +40 -0
  46. package/dist/models/PaginatedCustomerListResourceResponse.js +57 -0
  47. package/dist/models/SitePaymentConfigResource.d.ts +6 -0
  48. package/dist/models/SitePaymentConfigResource.js +4 -0
  49. package/dist/models/StoreCartRequest.d.ts +95 -0
  50. package/dist/models/StoreCartRequest.js +90 -0
  51. package/dist/models/StoreCartRequestCustomer.d.ts +50 -0
  52. package/dist/models/StoreCartRequestCustomer.js +55 -0
  53. package/dist/models/StoreCartRequestItemsInner.d.ts +44 -0
  54. package/dist/models/StoreCartRequestItemsInner.js +57 -0
  55. package/dist/models/StoreCartRequestShippingAddress.d.ts +74 -0
  56. package/dist/models/StoreCartRequestShippingAddress.js +63 -0
  57. package/dist/models/StoreCustomerRequest.d.ts +56 -0
  58. package/dist/models/StoreCustomerRequest.js +65 -0
  59. package/dist/models/StoreListResource.d.ts +1 -1
  60. package/dist/models/StoreListResource.js +1 -3
  61. package/dist/models/StoreResource.d.ts +1 -1
  62. package/dist/models/StoreResource.js +3 -1
  63. package/dist/models/StoreSpecialDateFrontendResource.d.ts +2 -2
  64. package/dist/models/StoreSpecialDateFrontendResource.js +3 -1
  65. package/dist/models/StoreSpecialDateResource.d.ts +2 -2
  66. package/dist/models/StoreSpecialDateResource.js +3 -1
  67. package/dist/models/UpdateCartRequest.d.ts +70 -0
  68. package/dist/models/UpdateCartRequest.js +75 -0
  69. package/dist/models/UpdateSiteRequest.d.ts +6 -0
  70. package/dist/models/UpdateSiteRequest.js +4 -0
  71. package/dist/models/index.d.ts +23 -0
  72. package/dist/models/index.js +23 -0
  73. package/docs/CartAddressType.md +32 -0
  74. package/docs/CartItemListResource.md +40 -0
  75. package/docs/CartItemListResourceArrayResponse.md +34 -0
  76. package/docs/CartListResource.md +56 -0
  77. package/docs/CartListResourceArrayResponse.md +34 -0
  78. package/docs/CartOrderSource.md +32 -0
  79. package/docs/CartResource.md +74 -0
  80. package/docs/CartResourceArrayResponse.md +34 -0
  81. package/docs/CartStatus.md +32 -0
  82. package/docs/CartsApi.md +341 -0
  83. package/docs/CustomerListResource.md +46 -0
  84. package/docs/CustomerListResourceArrayResponse.md +34 -0
  85. package/docs/CustomerResource.md +46 -0
  86. package/docs/CustomerResourceArrayResponse.md +34 -0
  87. package/docs/CustomersApi.md +140 -0
  88. package/docs/IndexCartRequest.md +66 -0
  89. package/docs/IndexCustomerRequest.md +50 -0
  90. package/docs/PaginatedCartListResourceResponse.md +36 -0
  91. package/docs/PaginatedCustomerListResourceResponse.md +36 -0
  92. package/docs/SitePaymentConfigResource.md +2 -0
  93. package/docs/StoreCartRequest.md +50 -0
  94. package/docs/StoreCartRequestCustomer.md +40 -0
  95. package/docs/StoreCartRequestItemsInner.md +38 -0
  96. package/docs/StoreCartRequestShippingAddress.md +48 -0
  97. package/docs/StoreCustomerRequest.md +42 -0
  98. package/docs/StoreSpecialDateFrontendResource.md +1 -1
  99. package/docs/StoreSpecialDateResource.md +1 -1
  100. package/docs/UpdateCartRequest.md +42 -0
  101. package/docs/UpdateSiteRequest.md +2 -0
  102. package/package.json +1 -1
  103. package/src/apis/CartsApi.ts +284 -0
  104. package/src/apis/CustomersApi.ts +127 -0
  105. package/src/apis/index.ts +2 -0
  106. package/src/models/AddressFrontendResource.ts +5 -5
  107. package/src/models/AddressResource.ts +3 -2
  108. package/src/models/CartAddressType.ts +53 -0
  109. package/src/models/CartItemListResource.ts +100 -0
  110. package/src/models/CartItemListResourceArrayResponse.ts +73 -0
  111. package/src/models/CartListResource.ts +183 -0
  112. package/src/models/CartListResourceArrayResponse.ts +73 -0
  113. package/src/models/CartOrderSource.ts +57 -0
  114. package/src/models/CartResource.ts +259 -0
  115. package/src/models/CartResourceArrayResponse.ts +73 -0
  116. package/src/models/CartStatus.ts +54 -0
  117. package/src/models/CustomerListResource.ts +126 -0
  118. package/src/models/CustomerListResourceArrayResponse.ts +73 -0
  119. package/src/models/CustomerResource.ts +126 -0
  120. package/src/models/CustomerResourceArrayResponse.ts +73 -0
  121. package/src/models/IndexCartRequest.ts +224 -0
  122. package/src/models/IndexCustomerRequest.ts +152 -0
  123. package/src/models/PaginatedCartListResourceResponse.ts +90 -0
  124. package/src/models/PaginatedCustomerListResourceResponse.ts +90 -0
  125. package/src/models/SitePaymentConfigResource.ts +9 -0
  126. package/src/models/StoreCartRequest.ts +171 -0
  127. package/src/models/StoreCartRequestCustomer.ts +89 -0
  128. package/src/models/StoreCartRequestItemsInner.ts +83 -0
  129. package/src/models/StoreCartRequestShippingAddress.ts +121 -0
  130. package/src/models/StoreCustomerRequest.ts +101 -0
  131. package/src/models/StoreListResource.ts +2 -3
  132. package/src/models/StoreResource.ts +3 -2
  133. package/src/models/StoreSpecialDateFrontendResource.ts +4 -3
  134. package/src/models/StoreSpecialDateResource.ts +4 -3
  135. package/src/models/UpdateCartRequest.ts +129 -0
  136. package/src/models/UpdateSiteRequest.ts +9 -0
  137. package/src/models/index.ts +23 -0
@@ -0,0 +1,224 @@
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 IndexCartRequest
20
+ */
21
+ export interface IndexCartRequest {
22
+ /**
23
+ *
24
+ * @type {string}
25
+ * @memberof IndexCartRequest
26
+ */
27
+ search?: string | null;
28
+ /**
29
+ *
30
+ * @type {IndexCartRequestSortByEnum}
31
+ * @memberof IndexCartRequest
32
+ */
33
+ sortBy?: IndexCartRequestSortByEnum;
34
+ /**
35
+ *
36
+ * @type {IndexCartRequestSortDirectionEnum}
37
+ * @memberof IndexCartRequest
38
+ */
39
+ sortDirection?: IndexCartRequestSortDirectionEnum;
40
+ /**
41
+ *
42
+ * @type {number}
43
+ * @memberof IndexCartRequest
44
+ */
45
+ perPage?: number;
46
+ /**
47
+ *
48
+ * @type {number}
49
+ * @memberof IndexCartRequest
50
+ */
51
+ page?: number;
52
+ /**
53
+ *
54
+ * @type {Array<string>}
55
+ * @memberof IndexCartRequest
56
+ */
57
+ siteId?: Array<string>;
58
+ /**
59
+ *
60
+ * @type {Array<string>}
61
+ * @memberof IndexCartRequest
62
+ */
63
+ source?: Array<string>;
64
+ /**
65
+ *
66
+ * @type {Array<IndexCartRequestStatusEnum>}
67
+ * @memberof IndexCartRequest
68
+ */
69
+ status?: Array<IndexCartRequestStatusEnum>;
70
+ /**
71
+ *
72
+ * @type {Date}
73
+ * @memberof IndexCartRequest
74
+ */
75
+ beforeCreatedAt?: Date;
76
+ /**
77
+ *
78
+ * @type {Date}
79
+ * @memberof IndexCartRequest
80
+ */
81
+ afterCreatedAt?: Date;
82
+ /**
83
+ *
84
+ * @type {Date}
85
+ * @memberof IndexCartRequest
86
+ */
87
+ beforeExpiryDate?: Date;
88
+ /**
89
+ *
90
+ * @type {Date}
91
+ * @memberof IndexCartRequest
92
+ */
93
+ afterExpiryDate?: Date;
94
+ /**
95
+ *
96
+ * @type {Date}
97
+ * @memberof IndexCartRequest
98
+ */
99
+ beforeCheckoutCompletedAt?: Date;
100
+ /**
101
+ *
102
+ * @type {Date}
103
+ * @memberof IndexCartRequest
104
+ */
105
+ afterCheckoutCompletedAt?: Date;
106
+ /**
107
+ *
108
+ * @type {number}
109
+ * @memberof IndexCartRequest
110
+ */
111
+ relatedId?: number;
112
+ /**
113
+ *
114
+ * @type {string}
115
+ * @memberof IndexCartRequest
116
+ */
117
+ relatedType?: string;
118
+ /**
119
+ *
120
+ * @type {boolean}
121
+ * @memberof IndexCartRequest
122
+ */
123
+ includesRelations?: boolean;
124
+ }
125
+
126
+
127
+ /**
128
+ * @export
129
+ */
130
+ export const IndexCartRequestSortByEnum = {
131
+ Id: 'id',
132
+ CreatedAt: 'created_at',
133
+ ExpiryDate: 'expiry_date'
134
+ } as const;
135
+ export type IndexCartRequestSortByEnum = typeof IndexCartRequestSortByEnum[keyof typeof IndexCartRequestSortByEnum];
136
+
137
+ /**
138
+ * @export
139
+ */
140
+ export const IndexCartRequestSortDirectionEnum = {
141
+ Asc: 'asc',
142
+ Desc: 'desc'
143
+ } as const;
144
+ export type IndexCartRequestSortDirectionEnum = typeof IndexCartRequestSortDirectionEnum[keyof typeof IndexCartRequestSortDirectionEnum];
145
+
146
+ /**
147
+ * @export
148
+ */
149
+ export const IndexCartRequestStatusEnum = {
150
+ Active: 'active',
151
+ Expired: 'expired',
152
+ Completed: 'completed'
153
+ } as const;
154
+ export type IndexCartRequestStatusEnum = typeof IndexCartRequestStatusEnum[keyof typeof IndexCartRequestStatusEnum];
155
+
156
+
157
+ /**
158
+ * Check if a given object implements the IndexCartRequest interface.
159
+ */
160
+ export function instanceOfIndexCartRequest(value: object): value is IndexCartRequest {
161
+ return true;
162
+ }
163
+
164
+ export function IndexCartRequestFromJSON(json: any): IndexCartRequest {
165
+ return IndexCartRequestFromJSONTyped(json, false);
166
+ }
167
+
168
+ export function IndexCartRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): IndexCartRequest {
169
+ if (json == null) {
170
+ return json;
171
+ }
172
+ return {
173
+
174
+ 'search': json['search'] == null ? undefined : json['search'],
175
+ 'sortBy': json['sortBy'] == null ? undefined : json['sortBy'],
176
+ 'sortDirection': json['sortDirection'] == null ? undefined : json['sortDirection'],
177
+ 'perPage': json['per_page'] == null ? undefined : json['per_page'],
178
+ 'page': json['page'] == null ? undefined : json['page'],
179
+ 'siteId': json['site_id'] == null ? undefined : json['site_id'],
180
+ 'source': json['source'] == null ? undefined : json['source'],
181
+ 'status': json['status'] == null ? undefined : json['status'],
182
+ 'beforeCreatedAt': json['before_created_at'] == null ? undefined : (new Date(json['before_created_at'])),
183
+ 'afterCreatedAt': json['after_created_at'] == null ? undefined : (new Date(json['after_created_at'])),
184
+ 'beforeExpiryDate': json['before_expiry_date'] == null ? undefined : (new Date(json['before_expiry_date'])),
185
+ 'afterExpiryDate': json['after_expiry_date'] == null ? undefined : (new Date(json['after_expiry_date'])),
186
+ 'beforeCheckoutCompletedAt': json['before_checkout_completed_at'] == null ? undefined : (new Date(json['before_checkout_completed_at'])),
187
+ 'afterCheckoutCompletedAt': json['after_checkout_completed_at'] == null ? undefined : (new Date(json['after_checkout_completed_at'])),
188
+ 'relatedId': json['related_id'] == null ? undefined : json['related_id'],
189
+ 'relatedType': json['related_type'] == null ? undefined : json['related_type'],
190
+ 'includesRelations': json['includes_relations'] == null ? undefined : json['includes_relations'],
191
+ };
192
+ }
193
+
194
+ export function IndexCartRequestToJSON(json: any): IndexCartRequest {
195
+ return IndexCartRequestToJSONTyped(json, false);
196
+ }
197
+
198
+ export function IndexCartRequestToJSONTyped(value?: IndexCartRequest | null, ignoreDiscriminator: boolean = false): any {
199
+ if (value == null) {
200
+ return value;
201
+ }
202
+
203
+ return {
204
+
205
+ 'search': value['search'],
206
+ 'sortBy': value['sortBy'],
207
+ 'sortDirection': value['sortDirection'],
208
+ 'per_page': value['perPage'],
209
+ 'page': value['page'],
210
+ 'site_id': value['siteId'],
211
+ 'source': value['source'],
212
+ 'status': value['status'],
213
+ 'before_created_at': value['beforeCreatedAt'] == null ? value['beforeCreatedAt'] : value['beforeCreatedAt'].toISOString(),
214
+ 'after_created_at': value['afterCreatedAt'] == null ? value['afterCreatedAt'] : value['afterCreatedAt'].toISOString(),
215
+ 'before_expiry_date': value['beforeExpiryDate'] == null ? value['beforeExpiryDate'] : value['beforeExpiryDate'].toISOString(),
216
+ 'after_expiry_date': value['afterExpiryDate'] == null ? value['afterExpiryDate'] : value['afterExpiryDate'].toISOString(),
217
+ 'before_checkout_completed_at': value['beforeCheckoutCompletedAt'] == null ? value['beforeCheckoutCompletedAt'] : value['beforeCheckoutCompletedAt'].toISOString(),
218
+ 'after_checkout_completed_at': value['afterCheckoutCompletedAt'] == null ? value['afterCheckoutCompletedAt'] : value['afterCheckoutCompletedAt'].toISOString(),
219
+ 'related_id': value['relatedId'],
220
+ 'related_type': value['relatedType'],
221
+ 'includes_relations': value['includesRelations'],
222
+ };
223
+ }
224
+
@@ -0,0 +1,152 @@
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 IndexCustomerRequest
20
+ */
21
+ export interface IndexCustomerRequest {
22
+ /**
23
+ *
24
+ * @type {string}
25
+ * @memberof IndexCustomerRequest
26
+ */
27
+ search?: string | null;
28
+ /**
29
+ *
30
+ * @type {IndexCustomerRequestSortByEnum}
31
+ * @memberof IndexCustomerRequest
32
+ */
33
+ sortBy?: IndexCustomerRequestSortByEnum;
34
+ /**
35
+ *
36
+ * @type {IndexCustomerRequestSortDirectionEnum}
37
+ * @memberof IndexCustomerRequest
38
+ */
39
+ sortDirection?: IndexCustomerRequestSortDirectionEnum;
40
+ /**
41
+ *
42
+ * @type {number}
43
+ * @memberof IndexCustomerRequest
44
+ */
45
+ perPage?: number;
46
+ /**
47
+ *
48
+ * @type {number}
49
+ * @memberof IndexCustomerRequest
50
+ */
51
+ page?: number;
52
+ /**
53
+ *
54
+ * @type {Array<string>}
55
+ * @memberof IndexCustomerRequest
56
+ */
57
+ siteId?: Array<string>;
58
+ /**
59
+ *
60
+ * @type {number}
61
+ * @memberof IndexCustomerRequest
62
+ */
63
+ relatedId?: number;
64
+ /**
65
+ *
66
+ * @type {string}
67
+ * @memberof IndexCustomerRequest
68
+ */
69
+ relatedType?: string;
70
+ /**
71
+ *
72
+ * @type {boolean}
73
+ * @memberof IndexCustomerRequest
74
+ */
75
+ includesRelations?: boolean;
76
+ }
77
+
78
+
79
+ /**
80
+ * @export
81
+ */
82
+ export const IndexCustomerRequestSortByEnum = {
83
+ Id: 'id',
84
+ CreatedAt: 'created_at',
85
+ FirstName: 'first_name',
86
+ LastName: 'last_name',
87
+ Email: 'email'
88
+ } as const;
89
+ export type IndexCustomerRequestSortByEnum = typeof IndexCustomerRequestSortByEnum[keyof typeof IndexCustomerRequestSortByEnum];
90
+
91
+ /**
92
+ * @export
93
+ */
94
+ export const IndexCustomerRequestSortDirectionEnum = {
95
+ Asc: 'asc',
96
+ Desc: 'desc'
97
+ } as const;
98
+ export type IndexCustomerRequestSortDirectionEnum = typeof IndexCustomerRequestSortDirectionEnum[keyof typeof IndexCustomerRequestSortDirectionEnum];
99
+
100
+
101
+ /**
102
+ * Check if a given object implements the IndexCustomerRequest interface.
103
+ */
104
+ export function instanceOfIndexCustomerRequest(value: object): value is IndexCustomerRequest {
105
+ return true;
106
+ }
107
+
108
+ export function IndexCustomerRequestFromJSON(json: any): IndexCustomerRequest {
109
+ return IndexCustomerRequestFromJSONTyped(json, false);
110
+ }
111
+
112
+ export function IndexCustomerRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): IndexCustomerRequest {
113
+ if (json == null) {
114
+ return json;
115
+ }
116
+ return {
117
+
118
+ 'search': json['search'] == null ? undefined : json['search'],
119
+ 'sortBy': json['sortBy'] == null ? undefined : json['sortBy'],
120
+ 'sortDirection': json['sortDirection'] == null ? undefined : json['sortDirection'],
121
+ 'perPage': json['per_page'] == null ? undefined : json['per_page'],
122
+ 'page': json['page'] == null ? undefined : json['page'],
123
+ 'siteId': json['site_id'] == null ? undefined : json['site_id'],
124
+ 'relatedId': json['related_id'] == null ? undefined : json['related_id'],
125
+ 'relatedType': json['related_type'] == null ? undefined : json['related_type'],
126
+ 'includesRelations': json['includes_relations'] == null ? undefined : json['includes_relations'],
127
+ };
128
+ }
129
+
130
+ export function IndexCustomerRequestToJSON(json: any): IndexCustomerRequest {
131
+ return IndexCustomerRequestToJSONTyped(json, false);
132
+ }
133
+
134
+ export function IndexCustomerRequestToJSONTyped(value?: IndexCustomerRequest | null, ignoreDiscriminator: boolean = false): any {
135
+ if (value == null) {
136
+ return value;
137
+ }
138
+
139
+ return {
140
+
141
+ 'search': value['search'],
142
+ 'sortBy': value['sortBy'],
143
+ 'sortDirection': value['sortDirection'],
144
+ 'per_page': value['perPage'],
145
+ 'page': value['page'],
146
+ 'site_id': value['siteId'],
147
+ 'related_id': value['relatedId'],
148
+ 'related_type': value['relatedType'],
149
+ 'includes_relations': value['includesRelations'],
150
+ };
151
+ }
152
+
@@ -0,0 +1,90 @@
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 { PagingMetadata } from './PagingMetadata';
17
+ import {
18
+ PagingMetadataFromJSON,
19
+ PagingMetadataFromJSONTyped,
20
+ PagingMetadataToJSON,
21
+ PagingMetadataToJSONTyped,
22
+ } from './PagingMetadata';
23
+ import type { CartListResource } from './CartListResource';
24
+ import {
25
+ CartListResourceFromJSON,
26
+ CartListResourceFromJSONTyped,
27
+ CartListResourceToJSON,
28
+ CartListResourceToJSONTyped,
29
+ } from './CartListResource';
30
+
31
+ /**
32
+ *
33
+ * @export
34
+ * @interface PaginatedCartListResourceResponse
35
+ */
36
+ export interface PaginatedCartListResourceResponse {
37
+ /**
38
+ *
39
+ * @type {Array<CartListResource>}
40
+ * @memberof PaginatedCartListResourceResponse
41
+ */
42
+ data: Array<CartListResource>;
43
+ /**
44
+ *
45
+ * @type {PagingMetadata}
46
+ * @memberof PaginatedCartListResourceResponse
47
+ */
48
+ meta: PagingMetadata;
49
+ }
50
+
51
+ /**
52
+ * Check if a given object implements the PaginatedCartListResourceResponse interface.
53
+ */
54
+ export function instanceOfPaginatedCartListResourceResponse(value: object): value is PaginatedCartListResourceResponse {
55
+ if (!('data' in value) || value['data'] === undefined) return false;
56
+ if (!('meta' in value) || value['meta'] === undefined) return false;
57
+ return true;
58
+ }
59
+
60
+ export function PaginatedCartListResourceResponseFromJSON(json: any): PaginatedCartListResourceResponse {
61
+ return PaginatedCartListResourceResponseFromJSONTyped(json, false);
62
+ }
63
+
64
+ export function PaginatedCartListResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedCartListResourceResponse {
65
+ if (json == null) {
66
+ return json;
67
+ }
68
+ return {
69
+
70
+ 'data': ((json['data'] as Array<any>).map(CartListResourceFromJSON)),
71
+ 'meta': PagingMetadataFromJSON(json['meta']),
72
+ };
73
+ }
74
+
75
+ export function PaginatedCartListResourceResponseToJSON(json: any): PaginatedCartListResourceResponse {
76
+ return PaginatedCartListResourceResponseToJSONTyped(json, false);
77
+ }
78
+
79
+ export function PaginatedCartListResourceResponseToJSONTyped(value?: PaginatedCartListResourceResponse | null, ignoreDiscriminator: boolean = false): any {
80
+ if (value == null) {
81
+ return value;
82
+ }
83
+
84
+ return {
85
+
86
+ 'data': ((value['data'] as Array<any>).map(CartListResourceToJSON)),
87
+ 'meta': PagingMetadataToJSON(value['meta']),
88
+ };
89
+ }
90
+
@@ -0,0 +1,90 @@
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 { PagingMetadata } from './PagingMetadata';
17
+ import {
18
+ PagingMetadataFromJSON,
19
+ PagingMetadataFromJSONTyped,
20
+ PagingMetadataToJSON,
21
+ PagingMetadataToJSONTyped,
22
+ } from './PagingMetadata';
23
+ import type { CustomerListResource } from './CustomerListResource';
24
+ import {
25
+ CustomerListResourceFromJSON,
26
+ CustomerListResourceFromJSONTyped,
27
+ CustomerListResourceToJSON,
28
+ CustomerListResourceToJSONTyped,
29
+ } from './CustomerListResource';
30
+
31
+ /**
32
+ *
33
+ * @export
34
+ * @interface PaginatedCustomerListResourceResponse
35
+ */
36
+ export interface PaginatedCustomerListResourceResponse {
37
+ /**
38
+ *
39
+ * @type {Array<CustomerListResource>}
40
+ * @memberof PaginatedCustomerListResourceResponse
41
+ */
42
+ data: Array<CustomerListResource>;
43
+ /**
44
+ *
45
+ * @type {PagingMetadata}
46
+ * @memberof PaginatedCustomerListResourceResponse
47
+ */
48
+ meta: PagingMetadata;
49
+ }
50
+
51
+ /**
52
+ * Check if a given object implements the PaginatedCustomerListResourceResponse interface.
53
+ */
54
+ export function instanceOfPaginatedCustomerListResourceResponse(value: object): value is PaginatedCustomerListResourceResponse {
55
+ if (!('data' in value) || value['data'] === undefined) return false;
56
+ if (!('meta' in value) || value['meta'] === undefined) return false;
57
+ return true;
58
+ }
59
+
60
+ export function PaginatedCustomerListResourceResponseFromJSON(json: any): PaginatedCustomerListResourceResponse {
61
+ return PaginatedCustomerListResourceResponseFromJSONTyped(json, false);
62
+ }
63
+
64
+ export function PaginatedCustomerListResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedCustomerListResourceResponse {
65
+ if (json == null) {
66
+ return json;
67
+ }
68
+ return {
69
+
70
+ 'data': ((json['data'] as Array<any>).map(CustomerListResourceFromJSON)),
71
+ 'meta': PagingMetadataFromJSON(json['meta']),
72
+ };
73
+ }
74
+
75
+ export function PaginatedCustomerListResourceResponseToJSON(json: any): PaginatedCustomerListResourceResponse {
76
+ return PaginatedCustomerListResourceResponseToJSONTyped(json, false);
77
+ }
78
+
79
+ export function PaginatedCustomerListResourceResponseToJSONTyped(value?: PaginatedCustomerListResourceResponse | null, ignoreDiscriminator: boolean = false): any {
80
+ if (value == null) {
81
+ return value;
82
+ }
83
+
84
+ return {
85
+
86
+ 'data': ((value['data'] as Array<any>).map(CustomerListResourceToJSON)),
87
+ 'meta': PagingMetadataToJSON(value['meta']),
88
+ };
89
+ }
90
+
@@ -79,6 +79,12 @@ export interface SitePaymentConfigResource {
79
79
  * @memberof SitePaymentConfigResource
80
80
  */
81
81
  acCouponExpiryDays: number;
82
+ /**
83
+ *
84
+ * @type {number}
85
+ * @memberof SitePaymentConfigResource
86
+ */
87
+ cartExpiryDays: number;
82
88
  /**
83
89
  *
84
90
  * @type {boolean}
@@ -101,6 +107,7 @@ export function instanceOfSitePaymentConfigResource(value: object): value is Sit
101
107
  if (!('acCouponValue' in value) || value['acCouponValue'] === undefined) return false;
102
108
  if (!('acCouponDiscountType' in value) || value['acCouponDiscountType'] === undefined) return false;
103
109
  if (!('acCouponExpiryDays' in value) || value['acCouponExpiryDays'] === undefined) return false;
110
+ if (!('cartExpiryDays' in value) || value['cartExpiryDays'] === undefined) return false;
104
111
  if (!('acCouponEnabled' in value) || value['acCouponEnabled'] === undefined) return false;
105
112
  return true;
106
113
  }
@@ -125,6 +132,7 @@ export function SitePaymentConfigResourceFromJSONTyped(json: any, ignoreDiscrimi
125
132
  'acCouponValue': json['acCouponValue'],
126
133
  'acCouponDiscountType': json['acCouponDiscountType'],
127
134
  'acCouponExpiryDays': json['acCouponExpiryDays'],
135
+ 'cartExpiryDays': json['cartExpiryDays'],
128
136
  'acCouponEnabled': json['acCouponEnabled'],
129
137
  };
130
138
  }
@@ -150,6 +158,7 @@ export function SitePaymentConfigResourceToJSONTyped(value?: SitePaymentConfigRe
150
158
  'acCouponValue': value['acCouponValue'],
151
159
  'acCouponDiscountType': value['acCouponDiscountType'],
152
160
  'acCouponExpiryDays': value['acCouponExpiryDays'],
161
+ 'cartExpiryDays': value['cartExpiryDays'],
153
162
  'acCouponEnabled': value['acCouponEnabled'],
154
163
  };
155
164
  }