@digital8/lighting-illusions-ts-sdk 0.0.2496 → 0.0.2498
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 +15 -9
- package/README.md +2 -2
- package/dist/apis/CouponsApi.d.ts +85 -0
- package/dist/apis/CouponsApi.js +355 -0
- package/dist/apis/index.d.ts +1 -1
- package/dist/apis/index.js +1 -1
- package/dist/models/AppliedCouponResource.d.ts +30 -0
- package/dist/models/AppliedCouponResource.js +20 -0
- package/dist/models/CouponListResource.d.ts +99 -0
- package/dist/models/CouponListResource.js +91 -0
- package/dist/models/CouponListResourceArrayResponse.d.ts +33 -0
- package/dist/models/CouponListResourceArrayResponse.js +50 -0
- package/dist/models/CouponLiteResource.d.ts +44 -0
- package/dist/models/CouponLiteResource.js +57 -0
- package/dist/models/CouponLiteResourceArrayResponse.d.ts +33 -0
- package/dist/models/CouponLiteResourceArrayResponse.js +50 -0
- package/dist/models/CouponResource.d.ts +163 -0
- package/dist/models/CouponResource.js +135 -0
- package/dist/models/CouponResourceArrayResponse.d.ts +33 -0
- package/dist/models/CouponResourceArrayResponse.js +50 -0
- package/dist/models/CouponType.d.ts +26 -0
- package/dist/models/CouponType.js +52 -0
- package/dist/models/CreateCouponRequest.d.ts +126 -0
- package/dist/models/CreateCouponRequest.js +107 -0
- package/dist/models/CreateCouponRequestCouponablesInner.d.ts +48 -0
- package/dist/models/CreateCouponRequestCouponablesInner.js +61 -0
- package/dist/models/FrontendCartResource.d.ts +6 -0
- package/dist/models/FrontendCartResource.js +2 -0
- package/dist/models/FrontendOrderResource.d.ts +0 -7
- package/dist/models/FrontendOrderResource.js +0 -5
- package/dist/models/OrderFulfillmentResource.d.ts +1 -1
- package/dist/models/OrderFulfillmentResource.js +3 -1
- package/dist/models/PaginatedCouponListResourceResponse.d.ts +40 -0
- package/dist/models/PaginatedCouponListResourceResponse.js +57 -0
- package/dist/models/PaginatedCouponResourceResponse.d.ts +40 -0
- package/dist/models/PaginatedCouponResourceResponse.js +57 -0
- package/dist/models/ProductCategoryLiteResource.d.ts +6 -0
- package/dist/models/ProductCategoryLiteResource.js +4 -0
- package/dist/models/ProductChildListResource.d.ts +6 -0
- package/dist/models/ProductChildListResource.js +4 -0
- package/dist/models/SearchAllCouponsRequest.d.ts +101 -0
- package/dist/models/SearchAllCouponsRequest.js +85 -0
- package/dist/models/SearchCartsRequest.d.ts +6 -0
- package/dist/models/SearchCartsRequest.js +2 -0
- package/dist/models/SearchCouponsRequest.d.ts +137 -0
- package/dist/models/SearchCouponsRequest.js +97 -0
- package/dist/models/SearchOrdersRequest.d.ts +6 -0
- package/dist/models/SearchOrdersRequest.js +2 -0
- package/dist/models/StoreFrontendResource.d.ts +1 -1
- package/dist/models/StoreFrontendResource.js +3 -1
- package/dist/models/StoreListResource.d.ts +2 -2
- package/dist/models/StoreListResource.js +2 -6
- package/dist/models/StoreResource.d.ts +1 -1
- package/dist/models/StoreResource.js +3 -1
- package/dist/models/UpdateCouponRequest.d.ts +120 -0
- package/dist/models/UpdateCouponRequest.js +103 -0
- package/dist/models/index.d.ts +14 -8
- package/dist/models/index.js +14 -8
- package/package.json +1 -1
- package/src/apis/CouponsApi.ts +286 -0
- package/src/apis/index.ts +1 -1
- package/src/models/AppliedCouponResource.ts +45 -0
- package/src/models/CouponListResource.ts +170 -0
- package/src/models/CouponListResourceArrayResponse.ts +73 -0
- package/src/models/CouponLiteResource.ts +83 -0
- package/src/models/CouponLiteResourceArrayResponse.ts +73 -0
- package/src/models/CouponResource.ts +288 -0
- package/src/models/CouponResourceArrayResponse.ts +73 -0
- package/src/models/CouponType.ts +54 -0
- package/src/models/CreateCouponRequest.ts +207 -0
- package/src/models/CreateCouponRequestCouponablesInner.ts +86 -0
- package/src/models/FrontendCartResource.ts +8 -0
- package/src/models/FrontendOrderResource.ts +0 -16
- package/src/models/OrderFulfillmentResource.ts +3 -2
- package/src/models/PaginatedCouponListResourceResponse.ts +90 -0
- package/src/models/PaginatedCouponResourceResponse.ts +90 -0
- package/src/models/ProductCategoryLiteResource.ts +9 -0
- package/src/models/ProductChildListResource.ts +9 -0
- package/src/models/SearchAllCouponsRequest.ts +154 -0
- package/src/models/SearchCartsRequest.ts +8 -0
- package/src/models/SearchCouponsRequest.ts +202 -0
- package/src/models/SearchOrdersRequest.ts +8 -0
- package/src/models/StoreFrontendResource.ts +3 -2
- package/src/models/StoreListResource.ts +4 -6
- package/src/models/StoreResource.ts +3 -2
- package/src/models/UpdateCouponRequest.ts +198 -0
- package/src/models/index.ts +14 -8
- package/dist/apis/AuspostApi.d.ts +0 -29
- package/dist/apis/AuspostApi.js +0 -125
- package/dist/models/FrontendOrderFulfillmentResource.d.ts +0 -62
- package/dist/models/FrontendOrderFulfillmentResource.js +0 -71
- package/dist/models/FrontendOrderFulfillmentResourceArrayResponse.d.ts +0 -33
- package/dist/models/FrontendOrderFulfillmentResourceArrayResponse.js +0 -50
- package/dist/models/FrontendOrderListResource.d.ts +0 -70
- package/dist/models/FrontendOrderListResource.js +0 -77
- package/dist/models/FrontendOrderListResourceArrayResponse.d.ts +0 -33
- package/dist/models/FrontendOrderListResourceArrayResponse.js +0 -50
- package/dist/models/PaginatedFrontendOrderListResourceResponse.d.ts +0 -40
- package/dist/models/PaginatedFrontendOrderListResourceResponse.js +0 -57
- package/dist/models/SuburbValidationResource.d.ts +0 -32
- package/dist/models/SuburbValidationResource.js +0 -51
- package/dist/models/SuburbValidationResourceArrayResponse.d.ts +0 -33
- package/dist/models/SuburbValidationResourceArrayResponse.js +0 -50
- package/dist/models/ValidateSuburbRequest.d.ts +0 -50
- package/dist/models/ValidateSuburbRequest.js +0 -63
- package/src/apis/AuspostApi.ts +0 -69
- package/src/models/FrontendOrderFulfillmentResource.ts +0 -111
- package/src/models/FrontendOrderFulfillmentResourceArrayResponse.ts +0 -73
- package/src/models/FrontendOrderListResource.ts +0 -135
- package/src/models/FrontendOrderListResourceArrayResponse.ts +0 -73
- package/src/models/PaginatedFrontendOrderListResourceResponse.ts +0 -90
- package/src/models/SuburbValidationResource.ts +0 -66
- package/src/models/SuburbValidationResourceArrayResponse.ts +0 -73
- package/src/models/ValidateSuburbRequest.ts +0 -93
|
@@ -0,0 +1,137 @@
|
|
|
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 SearchCouponsRequest
|
|
16
|
+
*/
|
|
17
|
+
export interface SearchCouponsRequest {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof SearchCouponsRequest
|
|
22
|
+
*/
|
|
23
|
+
search?: string | null;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof SearchCouponsRequest
|
|
28
|
+
*/
|
|
29
|
+
sortBy?: SearchCouponsRequestSortByEnum;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof SearchCouponsRequest
|
|
34
|
+
*/
|
|
35
|
+
sortDirection?: SearchCouponsRequestSortDirectionEnum;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof SearchCouponsRequest
|
|
40
|
+
*/
|
|
41
|
+
perPage?: number;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof SearchCouponsRequest
|
|
46
|
+
*/
|
|
47
|
+
page?: number;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {Array<string>}
|
|
51
|
+
* @memberof SearchCouponsRequest
|
|
52
|
+
*/
|
|
53
|
+
type?: Array<string>;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {Array<string>}
|
|
57
|
+
* @memberof SearchCouponsRequest
|
|
58
|
+
*/
|
|
59
|
+
siteId?: Array<string>;
|
|
60
|
+
/**
|
|
61
|
+
*
|
|
62
|
+
* @type {Array<string>}
|
|
63
|
+
* @memberof SearchCouponsRequest
|
|
64
|
+
*/
|
|
65
|
+
isAbandonedCart?: Array<string>;
|
|
66
|
+
/**
|
|
67
|
+
*
|
|
68
|
+
* @type {Date}
|
|
69
|
+
* @memberof SearchCouponsRequest
|
|
70
|
+
*/
|
|
71
|
+
beforeStartDate?: Date;
|
|
72
|
+
/**
|
|
73
|
+
*
|
|
74
|
+
* @type {Date}
|
|
75
|
+
* @memberof SearchCouponsRequest
|
|
76
|
+
*/
|
|
77
|
+
afterStartDate?: Date;
|
|
78
|
+
/**
|
|
79
|
+
*
|
|
80
|
+
* @type {Date}
|
|
81
|
+
* @memberof SearchCouponsRequest
|
|
82
|
+
*/
|
|
83
|
+
beforeEndDate?: Date;
|
|
84
|
+
/**
|
|
85
|
+
*
|
|
86
|
+
* @type {Date}
|
|
87
|
+
* @memberof SearchCouponsRequest
|
|
88
|
+
*/
|
|
89
|
+
afterEndDate?: Date;
|
|
90
|
+
/**
|
|
91
|
+
*
|
|
92
|
+
* @type {number}
|
|
93
|
+
* @memberof SearchCouponsRequest
|
|
94
|
+
*/
|
|
95
|
+
relatedId?: number;
|
|
96
|
+
/**
|
|
97
|
+
*
|
|
98
|
+
* @type {string}
|
|
99
|
+
* @memberof SearchCouponsRequest
|
|
100
|
+
*/
|
|
101
|
+
relatedType?: string;
|
|
102
|
+
/**
|
|
103
|
+
*
|
|
104
|
+
* @type {boolean}
|
|
105
|
+
* @memberof SearchCouponsRequest
|
|
106
|
+
*/
|
|
107
|
+
includesRelations?: boolean;
|
|
108
|
+
}
|
|
109
|
+
/**
|
|
110
|
+
* @export
|
|
111
|
+
*/
|
|
112
|
+
export declare const SearchCouponsRequestSortByEnum: {
|
|
113
|
+
readonly Id: "id";
|
|
114
|
+
readonly Name: "name";
|
|
115
|
+
readonly Code: "code";
|
|
116
|
+
readonly Type: "type";
|
|
117
|
+
readonly StartDate: "start_date";
|
|
118
|
+
readonly EndDate: "end_date";
|
|
119
|
+
readonly CreatedAt: "created_at";
|
|
120
|
+
};
|
|
121
|
+
export type SearchCouponsRequestSortByEnum = typeof SearchCouponsRequestSortByEnum[keyof typeof SearchCouponsRequestSortByEnum];
|
|
122
|
+
/**
|
|
123
|
+
* @export
|
|
124
|
+
*/
|
|
125
|
+
export declare const SearchCouponsRequestSortDirectionEnum: {
|
|
126
|
+
readonly Asc: "asc";
|
|
127
|
+
readonly Desc: "desc";
|
|
128
|
+
};
|
|
129
|
+
export type SearchCouponsRequestSortDirectionEnum = typeof SearchCouponsRequestSortDirectionEnum[keyof typeof SearchCouponsRequestSortDirectionEnum];
|
|
130
|
+
/**
|
|
131
|
+
* Check if a given object implements the SearchCouponsRequest interface.
|
|
132
|
+
*/
|
|
133
|
+
export declare function instanceOfSearchCouponsRequest(value: object): value is SearchCouponsRequest;
|
|
134
|
+
export declare function SearchCouponsRequestFromJSON(json: any): SearchCouponsRequest;
|
|
135
|
+
export declare function SearchCouponsRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SearchCouponsRequest;
|
|
136
|
+
export declare function SearchCouponsRequestToJSON(json: any): SearchCouponsRequest;
|
|
137
|
+
export declare function SearchCouponsRequestToJSONTyped(value?: SearchCouponsRequest | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,97 @@
|
|
|
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.SearchCouponsRequestSortDirectionEnum = exports.SearchCouponsRequestSortByEnum = void 0;
|
|
17
|
+
exports.instanceOfSearchCouponsRequest = instanceOfSearchCouponsRequest;
|
|
18
|
+
exports.SearchCouponsRequestFromJSON = SearchCouponsRequestFromJSON;
|
|
19
|
+
exports.SearchCouponsRequestFromJSONTyped = SearchCouponsRequestFromJSONTyped;
|
|
20
|
+
exports.SearchCouponsRequestToJSON = SearchCouponsRequestToJSON;
|
|
21
|
+
exports.SearchCouponsRequestToJSONTyped = SearchCouponsRequestToJSONTyped;
|
|
22
|
+
/**
|
|
23
|
+
* @export
|
|
24
|
+
*/
|
|
25
|
+
exports.SearchCouponsRequestSortByEnum = {
|
|
26
|
+
Id: 'id',
|
|
27
|
+
Name: 'name',
|
|
28
|
+
Code: 'code',
|
|
29
|
+
Type: 'type',
|
|
30
|
+
StartDate: 'start_date',
|
|
31
|
+
EndDate: 'end_date',
|
|
32
|
+
CreatedAt: 'created_at'
|
|
33
|
+
};
|
|
34
|
+
/**
|
|
35
|
+
* @export
|
|
36
|
+
*/
|
|
37
|
+
exports.SearchCouponsRequestSortDirectionEnum = {
|
|
38
|
+
Asc: 'asc',
|
|
39
|
+
Desc: 'desc'
|
|
40
|
+
};
|
|
41
|
+
/**
|
|
42
|
+
* Check if a given object implements the SearchCouponsRequest interface.
|
|
43
|
+
*/
|
|
44
|
+
function instanceOfSearchCouponsRequest(value) {
|
|
45
|
+
return true;
|
|
46
|
+
}
|
|
47
|
+
function SearchCouponsRequestFromJSON(json) {
|
|
48
|
+
return SearchCouponsRequestFromJSONTyped(json, false);
|
|
49
|
+
}
|
|
50
|
+
function SearchCouponsRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
51
|
+
if (json == null) {
|
|
52
|
+
return json;
|
|
53
|
+
}
|
|
54
|
+
return {
|
|
55
|
+
'search': json['search'] == null ? undefined : json['search'],
|
|
56
|
+
'sortBy': json['sortBy'] == null ? undefined : json['sortBy'],
|
|
57
|
+
'sortDirection': json['sortDirection'] == null ? undefined : json['sortDirection'],
|
|
58
|
+
'perPage': json['per_page'] == null ? undefined : json['per_page'],
|
|
59
|
+
'page': json['page'] == null ? undefined : json['page'],
|
|
60
|
+
'type': json['type'] == null ? undefined : json['type'],
|
|
61
|
+
'siteId': json['site_id'] == null ? undefined : json['site_id'],
|
|
62
|
+
'isAbandonedCart': json['is_abandoned_cart'] == null ? undefined : json['is_abandoned_cart'],
|
|
63
|
+
'beforeStartDate': json['before_start_date'] == null ? undefined : (new Date(json['before_start_date'])),
|
|
64
|
+
'afterStartDate': json['after_start_date'] == null ? undefined : (new Date(json['after_start_date'])),
|
|
65
|
+
'beforeEndDate': json['before_end_date'] == null ? undefined : (new Date(json['before_end_date'])),
|
|
66
|
+
'afterEndDate': json['after_end_date'] == null ? undefined : (new Date(json['after_end_date'])),
|
|
67
|
+
'relatedId': json['related_id'] == null ? undefined : json['related_id'],
|
|
68
|
+
'relatedType': json['related_type'] == null ? undefined : json['related_type'],
|
|
69
|
+
'includesRelations': json['includes_relations'] == null ? undefined : json['includes_relations'],
|
|
70
|
+
};
|
|
71
|
+
}
|
|
72
|
+
function SearchCouponsRequestToJSON(json) {
|
|
73
|
+
return SearchCouponsRequestToJSONTyped(json, false);
|
|
74
|
+
}
|
|
75
|
+
function SearchCouponsRequestToJSONTyped(value, ignoreDiscriminator) {
|
|
76
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
77
|
+
if (value == null) {
|
|
78
|
+
return value;
|
|
79
|
+
}
|
|
80
|
+
return {
|
|
81
|
+
'search': value['search'],
|
|
82
|
+
'sortBy': value['sortBy'],
|
|
83
|
+
'sortDirection': value['sortDirection'],
|
|
84
|
+
'per_page': value['perPage'],
|
|
85
|
+
'page': value['page'],
|
|
86
|
+
'type': value['type'],
|
|
87
|
+
'site_id': value['siteId'],
|
|
88
|
+
'is_abandoned_cart': value['isAbandonedCart'],
|
|
89
|
+
'before_start_date': value['beforeStartDate'] == null ? undefined : ((value['beforeStartDate']).toISOString()),
|
|
90
|
+
'after_start_date': value['afterStartDate'] == null ? undefined : ((value['afterStartDate']).toISOString()),
|
|
91
|
+
'before_end_date': value['beforeEndDate'] == null ? undefined : ((value['beforeEndDate']).toISOString()),
|
|
92
|
+
'after_end_date': value['afterEndDate'] == null ? undefined : ((value['afterEndDate']).toISOString()),
|
|
93
|
+
'related_id': value['relatedId'],
|
|
94
|
+
'related_type': value['relatedType'],
|
|
95
|
+
'includes_relations': value['includesRelations'],
|
|
96
|
+
};
|
|
97
|
+
}
|
|
@@ -129,6 +129,12 @@ export interface SearchOrdersRequest {
|
|
|
129
129
|
* @memberof SearchOrdersRequest
|
|
130
130
|
*/
|
|
131
131
|
includesRelations?: boolean;
|
|
132
|
+
/**
|
|
133
|
+
*
|
|
134
|
+
* @type {number}
|
|
135
|
+
* @memberof SearchOrdersRequest
|
|
136
|
+
*/
|
|
137
|
+
couponId?: number | null;
|
|
132
138
|
}
|
|
133
139
|
/**
|
|
134
140
|
* @export
|
|
@@ -69,6 +69,7 @@ function SearchOrdersRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
69
69
|
'relatedId': json['related_id'] == null ? undefined : json['related_id'],
|
|
70
70
|
'relatedType': json['related_type'] == null ? undefined : json['related_type'],
|
|
71
71
|
'includesRelations': json['includes_relations'] == null ? undefined : json['includes_relations'],
|
|
72
|
+
'couponId': json['coupon_id'] == null ? undefined : json['coupon_id'],
|
|
72
73
|
};
|
|
73
74
|
}
|
|
74
75
|
function SearchOrdersRequestToJSON(json) {
|
|
@@ -99,5 +100,6 @@ function SearchOrdersRequestToJSONTyped(value, ignoreDiscriminator) {
|
|
|
99
100
|
'related_id': value['relatedId'],
|
|
100
101
|
'related_type': value['relatedType'],
|
|
101
102
|
'includes_relations': value['includesRelations'],
|
|
103
|
+
'coupon_id': value['couponId'],
|
|
102
104
|
};
|
|
103
105
|
}
|
|
@@ -36,6 +36,8 @@ function instanceOfStoreFrontendResource(value) {
|
|
|
36
36
|
return false;
|
|
37
37
|
if (!('longitude' in value) || value['longitude'] === undefined)
|
|
38
38
|
return false;
|
|
39
|
+
if (!('tagLine' in value) || value['tagLine'] === undefined)
|
|
40
|
+
return false;
|
|
39
41
|
if (!('specialDates' in value) || value['specialDates'] === undefined)
|
|
40
42
|
return false;
|
|
41
43
|
if (!('suppliers' in value) || value['suppliers'] === undefined)
|
|
@@ -59,7 +61,7 @@ function StoreFrontendResourceFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
59
61
|
'address': json['address'] == null ? undefined : json['address'],
|
|
60
62
|
'latitude': json['latitude'],
|
|
61
63
|
'longitude': json['longitude'],
|
|
62
|
-
'tagLine': json['tagLine']
|
|
64
|
+
'tagLine': json['tagLine'],
|
|
63
65
|
'openingHours': json['openingHours'] == null ? undefined : json['openingHours'],
|
|
64
66
|
'specialDates': json['specialDates'],
|
|
65
67
|
'suppliers': json['suppliers'],
|
|
@@ -57,7 +57,7 @@ export interface StoreListResource {
|
|
|
57
57
|
* @type {string}
|
|
58
58
|
* @memberof StoreListResource
|
|
59
59
|
*/
|
|
60
|
-
tagLine
|
|
60
|
+
tagLine?: string | null;
|
|
61
61
|
/**
|
|
62
62
|
*
|
|
63
63
|
* @type {string}
|
|
@@ -69,7 +69,7 @@ export interface StoreListResource {
|
|
|
69
69
|
* @type {string}
|
|
70
70
|
* @memberof StoreListResource
|
|
71
71
|
*/
|
|
72
|
-
website
|
|
72
|
+
website?: string | null;
|
|
73
73
|
/**
|
|
74
74
|
*
|
|
75
75
|
* @type {number}
|
|
@@ -33,12 +33,8 @@ function instanceOfStoreListResource(value) {
|
|
|
33
33
|
return false;
|
|
34
34
|
if (!('latitude' in value) || value['latitude'] === undefined)
|
|
35
35
|
return false;
|
|
36
|
-
if (!('tagLine' in value) || value['tagLine'] === undefined)
|
|
37
|
-
return false;
|
|
38
36
|
if (!('email' in value) || value['email'] === undefined)
|
|
39
37
|
return false;
|
|
40
|
-
if (!('website' in value) || value['website'] === undefined)
|
|
41
|
-
return false;
|
|
42
38
|
if (!('netsuiteId' in value) || value['netsuiteId'] === undefined)
|
|
43
39
|
return false;
|
|
44
40
|
if (!('displayNetsuiteId' in value) || value['displayNetsuiteId'] === undefined)
|
|
@@ -59,9 +55,9 @@ function StoreListResourceFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
59
55
|
'phone': json['phone'],
|
|
60
56
|
'longitude': json['longitude'],
|
|
61
57
|
'latitude': json['latitude'],
|
|
62
|
-
'tagLine': json['tagLine'],
|
|
58
|
+
'tagLine': json['tagLine'] == null ? undefined : json['tagLine'],
|
|
63
59
|
'email': json['email'],
|
|
64
|
-
'website': json['website'],
|
|
60
|
+
'website': json['website'] == null ? undefined : json['website'],
|
|
65
61
|
'netsuiteId': json['netsuiteId'],
|
|
66
62
|
'displayNetsuiteId': json['displayNetsuiteId'],
|
|
67
63
|
'openingHours': json['openingHours'] == null ? undefined : json['openingHours'],
|
|
@@ -40,6 +40,8 @@ function instanceOfStoreResource(value) {
|
|
|
40
40
|
return false;
|
|
41
41
|
if (!('email' in value) || value['email'] === undefined)
|
|
42
42
|
return false;
|
|
43
|
+
if (!('website' in value) || value['website'] === undefined)
|
|
44
|
+
return false;
|
|
43
45
|
if (!('netsuiteId' in value) || value['netsuiteId'] === undefined)
|
|
44
46
|
return false;
|
|
45
47
|
if (!('displayNetsuiteId' in value) || value['displayNetsuiteId'] === undefined)
|
|
@@ -68,7 +70,7 @@ function StoreResourceFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
68
70
|
'latitude': json['latitude'],
|
|
69
71
|
'tagLine': json['tagLine'],
|
|
70
72
|
'email': json['email'],
|
|
71
|
-
'website': json['website']
|
|
73
|
+
'website': json['website'],
|
|
72
74
|
'netsuiteId': json['netsuiteId'],
|
|
73
75
|
'displayNetsuiteId': json['displayNetsuiteId'],
|
|
74
76
|
'openingHours': json['openingHours'] == null ? undefined : json['openingHours'],
|
|
@@ -0,0 +1,120 @@
|
|
|
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
|
+
import type { CreateCouponRequestCouponablesInner } from './CreateCouponRequestCouponablesInner';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface UpdateCouponRequest
|
|
17
|
+
*/
|
|
18
|
+
export interface UpdateCouponRequest {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof UpdateCouponRequest
|
|
23
|
+
*/
|
|
24
|
+
name: string;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof UpdateCouponRequest
|
|
29
|
+
*/
|
|
30
|
+
code: string;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof UpdateCouponRequest
|
|
35
|
+
*/
|
|
36
|
+
type: UpdateCouponRequestTypeEnum;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof UpdateCouponRequest
|
|
41
|
+
*/
|
|
42
|
+
discountType: string;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {number}
|
|
46
|
+
* @memberof UpdateCouponRequest
|
|
47
|
+
*/
|
|
48
|
+
discountAmount: number;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @type {number}
|
|
52
|
+
* @memberof UpdateCouponRequest
|
|
53
|
+
*/
|
|
54
|
+
minAmount: number;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @type {number}
|
|
58
|
+
* @memberof UpdateCouponRequest
|
|
59
|
+
*/
|
|
60
|
+
minProducts: number;
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @type {number}
|
|
64
|
+
* @memberof UpdateCouponRequest
|
|
65
|
+
*/
|
|
66
|
+
totalUseLimit: number;
|
|
67
|
+
/**
|
|
68
|
+
*
|
|
69
|
+
* @type {number}
|
|
70
|
+
* @memberof UpdateCouponRequest
|
|
71
|
+
*/
|
|
72
|
+
customerUseLimit: number;
|
|
73
|
+
/**
|
|
74
|
+
*
|
|
75
|
+
* @type {string}
|
|
76
|
+
* @memberof UpdateCouponRequest
|
|
77
|
+
*/
|
|
78
|
+
startDate?: string | null;
|
|
79
|
+
/**
|
|
80
|
+
*
|
|
81
|
+
* @type {string}
|
|
82
|
+
* @memberof UpdateCouponRequest
|
|
83
|
+
*/
|
|
84
|
+
endDate?: string | null;
|
|
85
|
+
/**
|
|
86
|
+
*
|
|
87
|
+
* @type {boolean}
|
|
88
|
+
* @memberof UpdateCouponRequest
|
|
89
|
+
*/
|
|
90
|
+
isForAllProducts?: boolean;
|
|
91
|
+
/**
|
|
92
|
+
*
|
|
93
|
+
* @type {boolean}
|
|
94
|
+
* @memberof UpdateCouponRequest
|
|
95
|
+
*/
|
|
96
|
+
isForAllCustomers?: boolean;
|
|
97
|
+
/**
|
|
98
|
+
*
|
|
99
|
+
* @type {Array<CreateCouponRequestCouponablesInner>}
|
|
100
|
+
* @memberof UpdateCouponRequest
|
|
101
|
+
*/
|
|
102
|
+
couponables?: Array<CreateCouponRequestCouponablesInner>;
|
|
103
|
+
}
|
|
104
|
+
/**
|
|
105
|
+
* @export
|
|
106
|
+
*/
|
|
107
|
+
export declare const UpdateCouponRequestTypeEnum: {
|
|
108
|
+
readonly Subtotal: "subtotal";
|
|
109
|
+
readonly Product: "product";
|
|
110
|
+
readonly Shipping: "shipping";
|
|
111
|
+
};
|
|
112
|
+
export type UpdateCouponRequestTypeEnum = typeof UpdateCouponRequestTypeEnum[keyof typeof UpdateCouponRequestTypeEnum];
|
|
113
|
+
/**
|
|
114
|
+
* Check if a given object implements the UpdateCouponRequest interface.
|
|
115
|
+
*/
|
|
116
|
+
export declare function instanceOfUpdateCouponRequest(value: object): value is UpdateCouponRequest;
|
|
117
|
+
export declare function UpdateCouponRequestFromJSON(json: any): UpdateCouponRequest;
|
|
118
|
+
export declare function UpdateCouponRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateCouponRequest;
|
|
119
|
+
export declare function UpdateCouponRequestToJSON(json: any): UpdateCouponRequest;
|
|
120
|
+
export declare function UpdateCouponRequestToJSONTyped(value?: UpdateCouponRequest | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,103 @@
|
|
|
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.UpdateCouponRequestTypeEnum = void 0;
|
|
17
|
+
exports.instanceOfUpdateCouponRequest = instanceOfUpdateCouponRequest;
|
|
18
|
+
exports.UpdateCouponRequestFromJSON = UpdateCouponRequestFromJSON;
|
|
19
|
+
exports.UpdateCouponRequestFromJSONTyped = UpdateCouponRequestFromJSONTyped;
|
|
20
|
+
exports.UpdateCouponRequestToJSON = UpdateCouponRequestToJSON;
|
|
21
|
+
exports.UpdateCouponRequestToJSONTyped = UpdateCouponRequestToJSONTyped;
|
|
22
|
+
var CreateCouponRequestCouponablesInner_1 = require("./CreateCouponRequestCouponablesInner");
|
|
23
|
+
/**
|
|
24
|
+
* @export
|
|
25
|
+
*/
|
|
26
|
+
exports.UpdateCouponRequestTypeEnum = {
|
|
27
|
+
Subtotal: 'subtotal',
|
|
28
|
+
Product: 'product',
|
|
29
|
+
Shipping: 'shipping'
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* Check if a given object implements the UpdateCouponRequest interface.
|
|
33
|
+
*/
|
|
34
|
+
function instanceOfUpdateCouponRequest(value) {
|
|
35
|
+
if (!('name' in value) || value['name'] === undefined)
|
|
36
|
+
return false;
|
|
37
|
+
if (!('code' in value) || value['code'] === undefined)
|
|
38
|
+
return false;
|
|
39
|
+
if (!('type' in value) || value['type'] === undefined)
|
|
40
|
+
return false;
|
|
41
|
+
if (!('discountType' in value) || value['discountType'] === undefined)
|
|
42
|
+
return false;
|
|
43
|
+
if (!('discountAmount' in value) || value['discountAmount'] === undefined)
|
|
44
|
+
return false;
|
|
45
|
+
if (!('minAmount' in value) || value['minAmount'] === undefined)
|
|
46
|
+
return false;
|
|
47
|
+
if (!('minProducts' in value) || value['minProducts'] === undefined)
|
|
48
|
+
return false;
|
|
49
|
+
if (!('totalUseLimit' in value) || value['totalUseLimit'] === undefined)
|
|
50
|
+
return false;
|
|
51
|
+
if (!('customerUseLimit' in value) || value['customerUseLimit'] === undefined)
|
|
52
|
+
return false;
|
|
53
|
+
return true;
|
|
54
|
+
}
|
|
55
|
+
function UpdateCouponRequestFromJSON(json) {
|
|
56
|
+
return UpdateCouponRequestFromJSONTyped(json, false);
|
|
57
|
+
}
|
|
58
|
+
function UpdateCouponRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
59
|
+
if (json == null) {
|
|
60
|
+
return json;
|
|
61
|
+
}
|
|
62
|
+
return {
|
|
63
|
+
'name': json['name'],
|
|
64
|
+
'code': json['code'],
|
|
65
|
+
'type': json['type'],
|
|
66
|
+
'discountType': json['discount_type'],
|
|
67
|
+
'discountAmount': json['discount_amount'],
|
|
68
|
+
'minAmount': json['min_amount'],
|
|
69
|
+
'minProducts': json['min_products'],
|
|
70
|
+
'totalUseLimit': json['total_use_limit'],
|
|
71
|
+
'customerUseLimit': json['customer_use_limit'],
|
|
72
|
+
'startDate': json['start_date'] == null ? undefined : json['start_date'],
|
|
73
|
+
'endDate': json['end_date'] == null ? undefined : json['end_date'],
|
|
74
|
+
'isForAllProducts': json['is_for_all_products'] == null ? undefined : json['is_for_all_products'],
|
|
75
|
+
'isForAllCustomers': json['is_for_all_customers'] == null ? undefined : json['is_for_all_customers'],
|
|
76
|
+
'couponables': json['couponables'] == null ? undefined : (json['couponables'].map(CreateCouponRequestCouponablesInner_1.CreateCouponRequestCouponablesInnerFromJSON)),
|
|
77
|
+
};
|
|
78
|
+
}
|
|
79
|
+
function UpdateCouponRequestToJSON(json) {
|
|
80
|
+
return UpdateCouponRequestToJSONTyped(json, false);
|
|
81
|
+
}
|
|
82
|
+
function UpdateCouponRequestToJSONTyped(value, ignoreDiscriminator) {
|
|
83
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
84
|
+
if (value == null) {
|
|
85
|
+
return value;
|
|
86
|
+
}
|
|
87
|
+
return {
|
|
88
|
+
'name': value['name'],
|
|
89
|
+
'code': value['code'],
|
|
90
|
+
'type': value['type'],
|
|
91
|
+
'discount_type': value['discountType'],
|
|
92
|
+
'discount_amount': value['discountAmount'],
|
|
93
|
+
'min_amount': value['minAmount'],
|
|
94
|
+
'min_products': value['minProducts'],
|
|
95
|
+
'total_use_limit': value['totalUseLimit'],
|
|
96
|
+
'customer_use_limit': value['customerUseLimit'],
|
|
97
|
+
'start_date': value['startDate'],
|
|
98
|
+
'end_date': value['endDate'],
|
|
99
|
+
'is_for_all_products': value['isForAllProducts'],
|
|
100
|
+
'is_for_all_customers': value['isForAllCustomers'],
|
|
101
|
+
'couponables': value['couponables'] == null ? undefined : (value['couponables'].map(CreateCouponRequestCouponablesInner_1.CreateCouponRequestCouponablesInnerToJSON)),
|
|
102
|
+
};
|
|
103
|
+
}
|
package/dist/models/index.d.ts
CHANGED
|
@@ -79,6 +79,13 @@ export * from './CategoryFrontendResourceArrayResponse';
|
|
|
79
79
|
export * from './CategoryWithChildrenFrontendResource';
|
|
80
80
|
export * from './CategoryWithChildrenFrontendResourceArrayResponse';
|
|
81
81
|
export * from './CouponDiscountType';
|
|
82
|
+
export * from './CouponListResource';
|
|
83
|
+
export * from './CouponListResourceArrayResponse';
|
|
84
|
+
export * from './CouponLiteResource';
|
|
85
|
+
export * from './CouponLiteResourceArrayResponse';
|
|
86
|
+
export * from './CouponResource';
|
|
87
|
+
export * from './CouponResourceArrayResponse';
|
|
88
|
+
export * from './CouponType';
|
|
82
89
|
export * from './CreateAssetFileRequest';
|
|
83
90
|
export * from './CreateAssetForAssetableRequest';
|
|
84
91
|
export * from './CreateAttributeRequest';
|
|
@@ -89,6 +96,8 @@ export * from './CreateBlogCategoryRequestSeoInner';
|
|
|
89
96
|
export * from './CreateCartRequest';
|
|
90
97
|
export * from './CreateCartRequestItemsInner';
|
|
91
98
|
export * from './CreateCartRequestShippingAddress';
|
|
99
|
+
export * from './CreateCouponRequest';
|
|
100
|
+
export * from './CreateCouponRequestCouponablesInner';
|
|
92
101
|
export * from './CreateCustomerRequest';
|
|
93
102
|
export * from './CreateDefinitionRequest';
|
|
94
103
|
export * from './CreateDocumentFileRequest';
|
|
@@ -175,10 +184,6 @@ export * from './FrontendComponentResource';
|
|
|
175
184
|
export * from './FrontendComponentResourceArrayResponse';
|
|
176
185
|
export * from './FrontendLineItemResource';
|
|
177
186
|
export * from './FrontendLineItemResourceArrayResponse';
|
|
178
|
-
export * from './FrontendOrderFulfillmentResource';
|
|
179
|
-
export * from './FrontendOrderFulfillmentResourceArrayResponse';
|
|
180
|
-
export * from './FrontendOrderListResource';
|
|
181
|
-
export * from './FrontendOrderListResourceArrayResponse';
|
|
182
187
|
export * from './FrontendOrderResource';
|
|
183
188
|
export * from './FrontendOrderResourceArrayResponse';
|
|
184
189
|
export * from './GenericResponse';
|
|
@@ -284,6 +289,8 @@ export * from './PaginatedBlogCategoryResourceResponse';
|
|
|
284
289
|
export * from './PaginatedBlogFrontendResourceResponse';
|
|
285
290
|
export * from './PaginatedCartListResourceResponse';
|
|
286
291
|
export * from './PaginatedCategoryFrontendResourceResponse';
|
|
292
|
+
export * from './PaginatedCouponListResourceResponse';
|
|
293
|
+
export * from './PaginatedCouponResourceResponse';
|
|
287
294
|
export * from './PaginatedCustomerListResourceResponse';
|
|
288
295
|
export * from './PaginatedCustomerReviewableItemFrontendResourceResponse';
|
|
289
296
|
export * from './PaginatedDefinitionListResourceResponse';
|
|
@@ -293,7 +300,6 @@ export * from './PaginatedExternalApiLogListResourceResponse';
|
|
|
293
300
|
export * from './PaginatedExternalApiLogResourceResponse';
|
|
294
301
|
export * from './PaginatedFrontendComponentLiteResourceResponse';
|
|
295
302
|
export * from './PaginatedFrontendComponentResourceResponse';
|
|
296
|
-
export * from './PaginatedFrontendOrderListResourceResponse';
|
|
297
303
|
export * from './PaginatedGoogleCategoryResourceResponse';
|
|
298
304
|
export * from './PaginatedLabelListResourceResponse';
|
|
299
305
|
export * from './PaginatedMenuListResourceResponse';
|
|
@@ -488,6 +494,7 @@ export * from './SearchAdminNotesRequest';
|
|
|
488
494
|
export * from './SearchAllAttributeValuesRequest';
|
|
489
495
|
export * from './SearchAllAttributesRequest';
|
|
490
496
|
export * from './SearchAllBlogCategoriesRequest';
|
|
497
|
+
export * from './SearchAllCouponsRequest';
|
|
491
498
|
export * from './SearchAllDefinitionsRequest';
|
|
492
499
|
export * from './SearchAllDocumentsRequest';
|
|
493
500
|
export * from './SearchAllFrontendComponentsRequest';
|
|
@@ -510,6 +517,7 @@ export * from './SearchAttributeValuesRequest';
|
|
|
510
517
|
export * from './SearchAttributesRequest';
|
|
511
518
|
export * from './SearchBlogCategoriesRequest';
|
|
512
519
|
export * from './SearchCartsRequest';
|
|
520
|
+
export * from './SearchCouponsRequest';
|
|
513
521
|
export * from './SearchCustomersRequest';
|
|
514
522
|
export * from './SearchDefinitionsRequest';
|
|
515
523
|
export * from './SearchDocumentsRequest';
|
|
@@ -573,8 +581,6 @@ export * from './StoreSpecialDateResourceArrayResponse';
|
|
|
573
581
|
export * from './StoreStockType';
|
|
574
582
|
export * from './StoreTransactionResource';
|
|
575
583
|
export * from './StoreTransactionResourceArrayResponse';
|
|
576
|
-
export * from './SuburbValidationResource';
|
|
577
|
-
export * from './SuburbValidationResourceArrayResponse';
|
|
578
584
|
export * from './SupplierFrontendResource';
|
|
579
585
|
export * from './SupplierFrontendResourceArrayResponse';
|
|
580
586
|
export * from './SupplierListResource';
|
|
@@ -609,6 +615,7 @@ export * from './UpdateAttributeRequest';
|
|
|
609
615
|
export * from './UpdateAttributeValueRequest';
|
|
610
616
|
export * from './UpdateBlogCategoryRequest';
|
|
611
617
|
export * from './UpdateCartRequest';
|
|
618
|
+
export * from './UpdateCouponRequest';
|
|
612
619
|
export * from './UpdateDefinitionRequest';
|
|
613
620
|
export * from './UpdateDocumentRequest';
|
|
614
621
|
export * from './UpdateLabelRequest';
|
|
@@ -638,7 +645,6 @@ export * from './UpdateStoreRequest';
|
|
|
638
645
|
export * from './UpdateStoreRequestSpecialDatesInner';
|
|
639
646
|
export * from './UpdateSupplierRequest';
|
|
640
647
|
export * from './UpdateTagRequest';
|
|
641
|
-
export * from './ValidateSuburbRequest';
|
|
642
648
|
export * from './WishlistCheckResource';
|
|
643
649
|
export * from './WishlistCheckResourceArrayResponse';
|
|
644
650
|
export * from './WishlistToggleResource';
|