@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,50 @@
1
+
2
+ # IndexCustomerRequest
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `search` | string
10
+ `sortBy` | string
11
+ `sortDirection` | string
12
+ `perPage` | number
13
+ `page` | number
14
+ `siteId` | Array<string>
15
+ `relatedId` | number
16
+ `relatedType` | string
17
+ `includesRelations` | boolean
18
+
19
+ ## Example
20
+
21
+ ```typescript
22
+ import type { IndexCustomerRequest } from '@digital8/lighting-illusions-ts-sdk'
23
+
24
+ // TODO: Update the object below with actual values
25
+ const example = {
26
+ "search": null,
27
+ "sortBy": null,
28
+ "sortDirection": null,
29
+ "perPage": null,
30
+ "page": null,
31
+ "siteId": null,
32
+ "relatedId": null,
33
+ "relatedType": null,
34
+ "includesRelations": null,
35
+ } satisfies IndexCustomerRequest
36
+
37
+ console.log(example)
38
+
39
+ // Convert the instance to a JSON string
40
+ const exampleJSON: string = JSON.stringify(example)
41
+ console.log(exampleJSON)
42
+
43
+ // Parse the JSON string back to an object
44
+ const exampleParsed = JSON.parse(exampleJSON) as IndexCustomerRequest
45
+ console.log(exampleParsed)
46
+ ```
47
+
48
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
49
+
50
+
@@ -0,0 +1,36 @@
1
+
2
+ # PaginatedCartListResourceResponse
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `data` | [Array<CartListResource>](CartListResource.md)
10
+ `meta` | [PagingMetadata](PagingMetadata.md)
11
+
12
+ ## Example
13
+
14
+ ```typescript
15
+ import type { PaginatedCartListResourceResponse } from '@digital8/lighting-illusions-ts-sdk'
16
+
17
+ // TODO: Update the object below with actual values
18
+ const example = {
19
+ "data": null,
20
+ "meta": null,
21
+ } satisfies PaginatedCartListResourceResponse
22
+
23
+ console.log(example)
24
+
25
+ // Convert the instance to a JSON string
26
+ const exampleJSON: string = JSON.stringify(example)
27
+ console.log(exampleJSON)
28
+
29
+ // Parse the JSON string back to an object
30
+ const exampleParsed = JSON.parse(exampleJSON) as PaginatedCartListResourceResponse
31
+ console.log(exampleParsed)
32
+ ```
33
+
34
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
35
+
36
+
@@ -0,0 +1,36 @@
1
+
2
+ # PaginatedCustomerListResourceResponse
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `data` | [Array<CustomerListResource>](CustomerListResource.md)
10
+ `meta` | [PagingMetadata](PagingMetadata.md)
11
+
12
+ ## Example
13
+
14
+ ```typescript
15
+ import type { PaginatedCustomerListResourceResponse } from '@digital8/lighting-illusions-ts-sdk'
16
+
17
+ // TODO: Update the object below with actual values
18
+ const example = {
19
+ "data": null,
20
+ "meta": null,
21
+ } satisfies PaginatedCustomerListResourceResponse
22
+
23
+ console.log(example)
24
+
25
+ // Convert the instance to a JSON string
26
+ const exampleJSON: string = JSON.stringify(example)
27
+ console.log(exampleJSON)
28
+
29
+ // Parse the JSON string back to an object
30
+ const exampleParsed = JSON.parse(exampleJSON) as PaginatedCustomerListResourceResponse
31
+ console.log(exampleParsed)
32
+ ```
33
+
34
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
35
+
36
+
@@ -16,6 +16,7 @@ Name | Type
16
16
  `acCouponValue` | number
17
17
  `acCouponDiscountType` | string
18
18
  `acCouponExpiryDays` | number
19
+ `cartExpiryDays` | number
19
20
  `acCouponEnabled` | boolean
20
21
 
21
22
  ## Example
@@ -35,6 +36,7 @@ const example = {
35
36
  "acCouponValue": null,
36
37
  "acCouponDiscountType": null,
37
38
  "acCouponExpiryDays": null,
39
+ "cartExpiryDays": null,
38
40
  "acCouponEnabled": null,
39
41
  } satisfies SitePaymentConfigResource
40
42
 
@@ -0,0 +1,50 @@
1
+
2
+ # StoreCartRequest
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `customerId` | number
10
+ `siteId` | number
11
+ `sessionToken` | string
12
+ `paymentToken` | string
13
+ `source` | string
14
+ `items` | [Array<StoreCartRequestItemsInner>](StoreCartRequestItemsInner.md)
15
+ `customer` | [StoreCartRequestCustomer](StoreCartRequestCustomer.md)
16
+ `shippingAddress` | [StoreCartRequestShippingAddress](StoreCartRequestShippingAddress.md)
17
+ `billingAddress` | [StoreCartRequestShippingAddress](StoreCartRequestShippingAddress.md)
18
+
19
+ ## Example
20
+
21
+ ```typescript
22
+ import type { StoreCartRequest } from '@digital8/lighting-illusions-ts-sdk'
23
+
24
+ // TODO: Update the object below with actual values
25
+ const example = {
26
+ "customerId": null,
27
+ "siteId": null,
28
+ "sessionToken": null,
29
+ "paymentToken": null,
30
+ "source": null,
31
+ "items": null,
32
+ "customer": null,
33
+ "shippingAddress": null,
34
+ "billingAddress": null,
35
+ } satisfies StoreCartRequest
36
+
37
+ console.log(example)
38
+
39
+ // Convert the instance to a JSON string
40
+ const exampleJSON: string = JSON.stringify(example)
41
+ console.log(exampleJSON)
42
+
43
+ // Parse the JSON string back to an object
44
+ const exampleParsed = JSON.parse(exampleJSON) as StoreCartRequest
45
+ console.log(exampleParsed)
46
+ ```
47
+
48
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
49
+
50
+
@@ -0,0 +1,40 @@
1
+
2
+ # StoreCartRequestCustomer
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `firstName` | string
10
+ `lastName` | string
11
+ `email` | string
12
+ `phone` | string
13
+
14
+ ## Example
15
+
16
+ ```typescript
17
+ import type { StoreCartRequestCustomer } from '@digital8/lighting-illusions-ts-sdk'
18
+
19
+ // TODO: Update the object below with actual values
20
+ const example = {
21
+ "firstName": null,
22
+ "lastName": null,
23
+ "email": null,
24
+ "phone": null,
25
+ } satisfies StoreCartRequestCustomer
26
+
27
+ console.log(example)
28
+
29
+ // Convert the instance to a JSON string
30
+ const exampleJSON: string = JSON.stringify(example)
31
+ console.log(exampleJSON)
32
+
33
+ // Parse the JSON string back to an object
34
+ const exampleParsed = JSON.parse(exampleJSON) as StoreCartRequestCustomer
35
+ console.log(exampleParsed)
36
+ ```
37
+
38
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
39
+
40
+
@@ -0,0 +1,38 @@
1
+
2
+ # StoreCartRequestItemsInner
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `productChildId` | number
10
+ `quantity` | number
11
+ `productPrice` | number
12
+
13
+ ## Example
14
+
15
+ ```typescript
16
+ import type { StoreCartRequestItemsInner } from '@digital8/lighting-illusions-ts-sdk'
17
+
18
+ // TODO: Update the object below with actual values
19
+ const example = {
20
+ "productChildId": null,
21
+ "quantity": null,
22
+ "productPrice": null,
23
+ } satisfies StoreCartRequestItemsInner
24
+
25
+ console.log(example)
26
+
27
+ // Convert the instance to a JSON string
28
+ const exampleJSON: string = JSON.stringify(example)
29
+ console.log(exampleJSON)
30
+
31
+ // Parse the JSON string back to an object
32
+ const exampleParsed = JSON.parse(exampleJSON) as StoreCartRequestItemsInner
33
+ console.log(exampleParsed)
34
+ ```
35
+
36
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
37
+
38
+
@@ -0,0 +1,48 @@
1
+
2
+ # StoreCartRequestShippingAddress
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `addressId` | number
10
+ `company` | string
11
+ `line1` | string
12
+ `line2` | string
13
+ `suburb` | string
14
+ `state` | string
15
+ `postcode` | string
16
+ `country` | string
17
+
18
+ ## Example
19
+
20
+ ```typescript
21
+ import type { StoreCartRequestShippingAddress } from '@digital8/lighting-illusions-ts-sdk'
22
+
23
+ // TODO: Update the object below with actual values
24
+ const example = {
25
+ "addressId": null,
26
+ "company": null,
27
+ "line1": null,
28
+ "line2": null,
29
+ "suburb": null,
30
+ "state": null,
31
+ "postcode": null,
32
+ "country": null,
33
+ } satisfies StoreCartRequestShippingAddress
34
+
35
+ console.log(example)
36
+
37
+ // Convert the instance to a JSON string
38
+ const exampleJSON: string = JSON.stringify(example)
39
+ console.log(exampleJSON)
40
+
41
+ // Parse the JSON string back to an object
42
+ const exampleParsed = JSON.parse(exampleJSON) as StoreCartRequestShippingAddress
43
+ console.log(exampleParsed)
44
+ ```
45
+
46
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
47
+
48
+
@@ -0,0 +1,42 @@
1
+
2
+ # StoreCustomerRequest
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `siteId` | number
10
+ `firstName` | string
11
+ `lastName` | string
12
+ `email` | string
13
+ `phone` | string
14
+
15
+ ## Example
16
+
17
+ ```typescript
18
+ import type { StoreCustomerRequest } from '@digital8/lighting-illusions-ts-sdk'
19
+
20
+ // TODO: Update the object below with actual values
21
+ const example = {
22
+ "siteId": null,
23
+ "firstName": null,
24
+ "lastName": null,
25
+ "email": null,
26
+ "phone": null,
27
+ } satisfies StoreCustomerRequest
28
+
29
+ console.log(example)
30
+
31
+ // Convert the instance to a JSON string
32
+ const exampleJSON: string = JSON.stringify(example)
33
+ console.log(exampleJSON)
34
+
35
+ // Parse the JSON string back to an object
36
+ const exampleParsed = JSON.parse(exampleJSON) as StoreCustomerRequest
37
+ console.log(exampleParsed)
38
+ ```
39
+
40
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
41
+
42
+
@@ -9,7 +9,7 @@ Name | Type
9
9
  `id` | number
10
10
  `name` | string
11
11
  `hours` | string
12
- `date` | string
12
+ `date` | object
13
13
  `closed` | boolean
14
14
  `displayStartDate` | object
15
15
  `displayEndDate` | object
@@ -9,7 +9,7 @@ Name | Type
9
9
  `id` | number
10
10
  `name` | string
11
11
  `hours` | string
12
- `date` | string
12
+ `date` | object
13
13
  `closed` | boolean
14
14
  `displayStartDate` | string
15
15
  `displayEndDate` | string
@@ -0,0 +1,42 @@
1
+
2
+ # UpdateCartRequest
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `customerId` | number
10
+ `source` | string
11
+ `customer` | [StoreCartRequestCustomer](StoreCartRequestCustomer.md)
12
+ `shippingAddress` | [StoreCartRequestShippingAddress](StoreCartRequestShippingAddress.md)
13
+ `billingAddress` | [StoreCartRequestShippingAddress](StoreCartRequestShippingAddress.md)
14
+
15
+ ## Example
16
+
17
+ ```typescript
18
+ import type { UpdateCartRequest } from '@digital8/lighting-illusions-ts-sdk'
19
+
20
+ // TODO: Update the object below with actual values
21
+ const example = {
22
+ "customerId": null,
23
+ "source": null,
24
+ "customer": null,
25
+ "shippingAddress": null,
26
+ "billingAddress": null,
27
+ } satisfies UpdateCartRequest
28
+
29
+ console.log(example)
30
+
31
+ // Convert the instance to a JSON string
32
+ const exampleJSON: string = JSON.stringify(example)
33
+ console.log(exampleJSON)
34
+
35
+ // Parse the JSON string back to an object
36
+ const exampleParsed = JSON.parse(exampleJSON) as UpdateCartRequest
37
+ console.log(exampleParsed)
38
+ ```
39
+
40
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
41
+
42
+
@@ -27,6 +27,7 @@ Name | Type
27
27
  `acCouponValue` | number
28
28
  `acCouponDiscountType` | string
29
29
  `acCouponExpiryDays` | number
30
+ `cartExpiryDays` | number
30
31
  `acCouponEnabled` | boolean
31
32
 
32
33
  ## Example
@@ -57,6 +58,7 @@ const example = {
57
58
  "acCouponValue": null,
58
59
  "acCouponDiscountType": null,
59
60
  "acCouponExpiryDays": null,
61
+ "cartExpiryDays": null,
60
62
  "acCouponEnabled": null,
61
63
  } satisfies UpdateSiteRequest
62
64
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digital8/lighting-illusions-ts-sdk",
3
- "version": "0.0.1775",
3
+ "version": "0.0.1776",
4
4
  "description": "OpenAPI client for @digital8/lighting-illusions-ts-sdk",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {