@digital8/lighting-illusions-ts-sdk 0.0.2650 → 0.0.2652

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 (42) hide show
  1. package/.openapi-generator/FILES +0 -4
  2. package/README.md +2 -2
  3. package/dist/apis/OrdersApi.d.ts +1 -9
  4. package/dist/apis/OrdersApi.js +0 -42
  5. package/dist/models/AddressFrontendResource.d.ts +1 -1
  6. package/dist/models/AddressFrontendResource.js +1 -3
  7. package/dist/models/AdminOrderResource.d.ts +0 -6
  8. package/dist/models/AdminOrderResource.js +0 -4
  9. package/dist/models/OrderOmnisendEvent.d.ts +0 -1
  10. package/dist/models/OrderOmnisendEvent.js +1 -2
  11. package/dist/models/SearchAllOrdersRequest.d.ts +1 -1
  12. package/dist/models/SearchAllOrdersRequest.js +1 -1
  13. package/dist/models/SearchOrdersRequest.d.ts +1 -7
  14. package/dist/models/SearchOrdersRequest.js +1 -3
  15. package/dist/models/StoreFrontendResource.d.ts +2 -2
  16. package/dist/models/StoreFrontendResource.js +2 -6
  17. package/dist/models/StoreListResource.d.ts +2 -2
  18. package/dist/models/StoreListResource.js +4 -4
  19. package/dist/models/index.d.ts +0 -4
  20. package/dist/models/index.js +0 -4
  21. package/package.json +1 -1
  22. package/src/apis/OrdersApi.ts +0 -32
  23. package/src/models/AddressFrontendResource.ts +2 -3
  24. package/src/models/AdminOrderResource.ts +0 -9
  25. package/src/models/OrderOmnisendEvent.ts +1 -2
  26. package/src/models/SearchAllOrdersRequest.ts +1 -1
  27. package/src/models/SearchOrdersRequest.ts +1 -9
  28. package/src/models/StoreFrontendResource.ts +4 -6
  29. package/src/models/StoreListResource.ts +5 -5
  30. package/src/models/index.ts +0 -4
  31. package/dist/models/NetsuiteSyncFailureCountResource.d.ts +0 -32
  32. package/dist/models/NetsuiteSyncFailureCountResource.js +0 -51
  33. package/dist/models/NetsuiteSyncFailureCountResourceArrayResponse.d.ts +0 -33
  34. package/dist/models/NetsuiteSyncFailureCountResourceArrayResponse.js +0 -50
  35. package/dist/models/StoreLocationResource.d.ts +0 -38
  36. package/dist/models/StoreLocationResource.js +0 -55
  37. package/dist/models/StoreLocationResourceArrayResponse.d.ts +0 -33
  38. package/dist/models/StoreLocationResourceArrayResponse.js +0 -50
  39. package/src/models/NetsuiteSyncFailureCountResource.ts +0 -66
  40. package/src/models/NetsuiteSyncFailureCountResourceArrayResponse.ts +0 -73
  41. package/src/models/StoreLocationResource.ts +0 -75
  42. package/src/models/StoreLocationResourceArrayResponse.ts +0 -73
@@ -1,73 +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 { StoreLocationResource } from './StoreLocationResource';
17
- import {
18
- StoreLocationResourceFromJSON,
19
- StoreLocationResourceFromJSONTyped,
20
- StoreLocationResourceToJSON,
21
- StoreLocationResourceToJSONTyped,
22
- } from './StoreLocationResource';
23
-
24
- /**
25
- *
26
- * @export
27
- * @interface StoreLocationResourceArrayResponse
28
- */
29
- export interface StoreLocationResourceArrayResponse {
30
- /**
31
- *
32
- * @type {Array<StoreLocationResource>}
33
- * @memberof StoreLocationResourceArrayResponse
34
- */
35
- data?: Array<StoreLocationResource>;
36
- }
37
-
38
- /**
39
- * Check if a given object implements the StoreLocationResourceArrayResponse interface.
40
- */
41
- export function instanceOfStoreLocationResourceArrayResponse(value: object): value is StoreLocationResourceArrayResponse {
42
- return true;
43
- }
44
-
45
- export function StoreLocationResourceArrayResponseFromJSON(json: any): StoreLocationResourceArrayResponse {
46
- return StoreLocationResourceArrayResponseFromJSONTyped(json, false);
47
- }
48
-
49
- export function StoreLocationResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): StoreLocationResourceArrayResponse {
50
- if (json == null) {
51
- return json;
52
- }
53
- return {
54
-
55
- 'data': json['data'] == null ? undefined : ((json['data'] as Array<any>).map(StoreLocationResourceFromJSON)),
56
- };
57
- }
58
-
59
- export function StoreLocationResourceArrayResponseToJSON(json: any): StoreLocationResourceArrayResponse {
60
- return StoreLocationResourceArrayResponseToJSONTyped(json, false);
61
- }
62
-
63
- export function StoreLocationResourceArrayResponseToJSONTyped(value?: StoreLocationResourceArrayResponse | 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(StoreLocationResourceToJSON)),
71
- };
72
- }
73
-