@devite/shopware-client 1.5.9 → 1.6.1
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/dist/index.cjs +825 -12110
- package/dist/index.d.cts +4319 -5694
- package/dist/index.d.mts +4319 -5694
- package/dist/index.d.ts +4319 -5694
- package/dist/index.mjs +825 -12110
- package/dist/src/payloads/Payload.d.ts +1 -1
- package/dist/types/ClientRequestOptions.d.ts +0 -2
- package/dist/types/api/admin/{SystemConfig.d.ts → SystemConfigEntry.d.ts} +1 -1
- package/dist/types/api/admin/index.d.ts +1 -1
- package/dist/types/api/admin/salesChannel/SalesChannel.d.ts +2 -2
- package/dist/types/clients/admin/CustomerClient.d.ts +0 -176
- package/dist/types/clients/admin/DocumentClient.d.ts +1 -118
- package/dist/types/clients/admin/MailClient.d.ts +0 -89
- package/dist/types/clients/admin/OrderClient.d.ts +0 -322
- package/dist/types/clients/admin/SystemClient.d.ts +0 -118
- package/dist/types/clients/admin/index.d.ts +0 -33
- package/dist/types/clients/store/DocumentClient.d.ts +1 -4
- package/package.json +1 -1
- package/dist/types/clients/admin/AppClient.d.ts +0 -292
- package/dist/types/clients/admin/CategoryClient.d.ts +0 -60
- package/dist/types/clients/admin/ContentClient.d.ts +0 -176
- package/dist/types/clients/admin/CountryClient.d.ts +0 -60
- package/dist/types/clients/admin/CurrencyClient.d.ts +0 -60
- package/dist/types/clients/admin/CustomDataClient.d.ts +0 -118
- package/dist/types/clients/admin/DeliveryTimeClient.d.ts +0 -30
- package/dist/types/clients/admin/FlowClient.d.ts +0 -89
- package/dist/types/clients/admin/ImportExportClient.d.ts +0 -89
- package/dist/types/clients/admin/IntegrationClient.d.ts +0 -30
- package/dist/types/clients/admin/LocaleClient.d.ts +0 -60
- package/dist/types/clients/admin/MediaClient.d.ts +0 -176
- package/dist/types/clients/admin/NewsletterClient.d.ts +0 -30
- package/dist/types/clients/admin/NumberRangeClient.d.ts +0 -118
- package/dist/types/clients/admin/PaymentMethodClient.d.ts +0 -30
- package/dist/types/clients/admin/PluginClient.d.ts +0 -30
- package/dist/types/clients/admin/ProductClient.d.ts +0 -553
- package/dist/types/clients/admin/PromotionClient.d.ts +0 -176
- package/dist/types/clients/admin/PropertyGroupClient.d.ts +0 -60
- package/dist/types/clients/admin/RuleClient.d.ts +0 -60
- package/dist/types/clients/admin/SalesChannelClient.d.ts +0 -118
- package/dist/types/clients/admin/SalutationClient.d.ts +0 -30
- package/dist/types/clients/admin/ScriptClient.d.ts +0 -30
- package/dist/types/clients/admin/SecurityClient.d.ts +0 -30
- package/dist/types/clients/admin/SeoClient.d.ts +0 -60
- package/dist/types/clients/admin/ShippingMethodClient.d.ts +0 -60
- package/dist/types/clients/admin/SnippetClient.d.ts +0 -60
- package/dist/types/clients/admin/StateMachineClient.d.ts +0 -89
- package/dist/types/clients/admin/TagClient.d.ts +0 -30
- package/dist/types/clients/admin/TaxClient.d.ts +0 -118
- package/dist/types/clients/admin/UnitClient.d.ts +0 -30
- package/dist/types/clients/admin/UserClient.d.ts +0 -118
- package/dist/types/clients/admin/WebhookClient.d.ts +0 -60
|
@@ -1,292 +0,0 @@
|
|
|
1
|
-
import { App } from "#types/api/admin/app/App";
|
|
2
|
-
import { Aggregation } from "#types/api/global/aggregation/Aggregation";
|
|
3
|
-
import { AppActionButton } from "#types/api/admin/app/AppActionButton";
|
|
4
|
-
import { Criteria } from "#types/api/global/query/Criteria";
|
|
5
|
-
import { AppAdministrationSnippet } from "#types/api/admin/app/AppAdministrationSnippet";
|
|
6
|
-
import { AppCmsBlock } from "#types/api/admin/app/AppCmsBlock";
|
|
7
|
-
import { AppFlowAction } from "#types/api/admin/flow/app/AppFlowAction";
|
|
8
|
-
import { AppFlowEvent } from "#types/api/admin/flow/app/AppFlowEvent";
|
|
9
|
-
import { AppPaymentMethod } from "#types/api/admin/paymentMethod/AppPaymentMethod";
|
|
10
|
-
import { AppScriptCondition } from "#types/api/admin/app/AppScriptCondition";
|
|
11
|
-
import { AppShippingMethod } from "#types/api/admin/shippingMethod/AppShippingMethod";
|
|
12
|
-
import { AppTemplate } from "#types/api/admin/app/AppTemplate";
|
|
13
|
-
/** Apps **/
|
|
14
|
-
export interface AppListResponse {
|
|
15
|
-
total?: number;
|
|
16
|
-
data?: Array<App>;
|
|
17
|
-
}
|
|
18
|
-
export type AppCreateRequest = App;
|
|
19
|
-
export type AppCreateResponse = {
|
|
20
|
-
data: App;
|
|
21
|
-
};
|
|
22
|
-
export type AppListSearchRequest = Criteria;
|
|
23
|
-
export interface AppListSearchResponse {
|
|
24
|
-
total?: number;
|
|
25
|
-
data?: Array<App>;
|
|
26
|
-
}
|
|
27
|
-
export interface AppSingleResponse {
|
|
28
|
-
data: App;
|
|
29
|
-
}
|
|
30
|
-
export type AppUpdateRequest = App;
|
|
31
|
-
export type AppUpdateResponse = {
|
|
32
|
-
data: App;
|
|
33
|
-
};
|
|
34
|
-
export interface AppAggregationRequest {
|
|
35
|
-
aggregations: Array<Aggregation>;
|
|
36
|
-
}
|
|
37
|
-
export interface AppAggregationResponse {
|
|
38
|
-
total?: number;
|
|
39
|
-
data?: Array<App>;
|
|
40
|
-
}
|
|
41
|
-
/** Action Buttons **/
|
|
42
|
-
export interface ActionButtonListResponse {
|
|
43
|
-
total?: number;
|
|
44
|
-
data?: Array<AppActionButton>;
|
|
45
|
-
}
|
|
46
|
-
export type ActionButtonCreateRequest = AppActionButton;
|
|
47
|
-
export type ActionButtonCreateResponse = {
|
|
48
|
-
data: AppActionButton;
|
|
49
|
-
};
|
|
50
|
-
export type ActionButtonListSearchRequest = Criteria;
|
|
51
|
-
export interface ActionButtonListSearchResponse {
|
|
52
|
-
total?: number;
|
|
53
|
-
data?: Array<AppActionButton>;
|
|
54
|
-
}
|
|
55
|
-
export interface ActionButtonSingleResponse {
|
|
56
|
-
data: AppActionButton;
|
|
57
|
-
}
|
|
58
|
-
export type ActionButtonUpdateRequest = AppActionButton;
|
|
59
|
-
export type ActionButtonUpdateResponse = {
|
|
60
|
-
data: AppActionButton;
|
|
61
|
-
};
|
|
62
|
-
export interface ActionButtonAggregationRequest {
|
|
63
|
-
aggregations: Array<Aggregation>;
|
|
64
|
-
}
|
|
65
|
-
export interface ActionButtonAggregationResponse {
|
|
66
|
-
total?: number;
|
|
67
|
-
data?: Array<AppActionButton>;
|
|
68
|
-
}
|
|
69
|
-
/** Admin Snippets **/
|
|
70
|
-
export interface AdminSnippetListResponse {
|
|
71
|
-
total?: number;
|
|
72
|
-
data?: Array<AppAdministrationSnippet>;
|
|
73
|
-
}
|
|
74
|
-
export type AdminSnippetCreateRequest = AppAdministrationSnippet;
|
|
75
|
-
export type AdminSnippetCreateResponse = {
|
|
76
|
-
data: AppAdministrationSnippet;
|
|
77
|
-
};
|
|
78
|
-
export type AdminSnippetListSearchRequest = Criteria;
|
|
79
|
-
export interface AdminSnippetListSearchResponse {
|
|
80
|
-
total?: number;
|
|
81
|
-
data?: Array<AppAdministrationSnippet>;
|
|
82
|
-
}
|
|
83
|
-
export interface AdminSnippetSingleResponse {
|
|
84
|
-
data: AppAdministrationSnippet;
|
|
85
|
-
}
|
|
86
|
-
export type AdminSnippetUpdateRequest = AppAdministrationSnippet;
|
|
87
|
-
export type AdminSnippetUpdateResponse = {
|
|
88
|
-
data: AppAdministrationSnippet;
|
|
89
|
-
};
|
|
90
|
-
export interface AdminSnippetAggregationRequest {
|
|
91
|
-
aggregations: Array<Aggregation>;
|
|
92
|
-
}
|
|
93
|
-
export interface AdminSnippetAggregationResponse {
|
|
94
|
-
total?: number;
|
|
95
|
-
data?: Array<AppAdministrationSnippet>;
|
|
96
|
-
}
|
|
97
|
-
/** Cms Block **/
|
|
98
|
-
export interface CmsBlockListResponse {
|
|
99
|
-
total?: number;
|
|
100
|
-
data?: Array<AppCmsBlock>;
|
|
101
|
-
}
|
|
102
|
-
export type CmsBlockCreateRequest = AppCmsBlock;
|
|
103
|
-
export type CmsBlockCreateResponse = {
|
|
104
|
-
data: AppCmsBlock;
|
|
105
|
-
};
|
|
106
|
-
export type CmsBlockListSearchRequest = Criteria;
|
|
107
|
-
export interface CmsBlockListSearchResponse {
|
|
108
|
-
total?: number;
|
|
109
|
-
data?: Array<AppCmsBlock>;
|
|
110
|
-
}
|
|
111
|
-
export interface CmsBlockSingleResponse {
|
|
112
|
-
data: AppCmsBlock;
|
|
113
|
-
}
|
|
114
|
-
export type CmsBlockUpdateRequest = AppCmsBlock;
|
|
115
|
-
export type CmsBlockUpdateResponse = {
|
|
116
|
-
data: AppCmsBlock;
|
|
117
|
-
};
|
|
118
|
-
export interface CmsBlockAggregationRequest {
|
|
119
|
-
aggregations: Array<Aggregation>;
|
|
120
|
-
}
|
|
121
|
-
export interface CmsBlockAggregationResponse {
|
|
122
|
-
total?: number;
|
|
123
|
-
data?: Array<AppCmsBlock>;
|
|
124
|
-
}
|
|
125
|
-
/** Flow Actions **/
|
|
126
|
-
export interface FlowActionListResponse {
|
|
127
|
-
total?: number;
|
|
128
|
-
data?: Array<AppFlowAction>;
|
|
129
|
-
}
|
|
130
|
-
export type FlowActionCreateRequest = AppFlowAction;
|
|
131
|
-
export type FlowActionCreateResponse = {
|
|
132
|
-
data: AppFlowAction;
|
|
133
|
-
};
|
|
134
|
-
export type FlowActionListSearchRequest = Criteria;
|
|
135
|
-
export interface FlowActionListSearchResponse {
|
|
136
|
-
total?: number;
|
|
137
|
-
data?: Array<AppFlowAction>;
|
|
138
|
-
}
|
|
139
|
-
export interface FlowActionSingleResponse {
|
|
140
|
-
data: AppFlowAction;
|
|
141
|
-
}
|
|
142
|
-
export type FlowActionUpdateRequest = AppFlowAction;
|
|
143
|
-
export type FlowActionUpdateResponse = {
|
|
144
|
-
data: AppFlowAction;
|
|
145
|
-
};
|
|
146
|
-
export interface FlowActionAggregationRequest {
|
|
147
|
-
aggregations: Array<Aggregation>;
|
|
148
|
-
}
|
|
149
|
-
export interface FlowActionAggregationResponse {
|
|
150
|
-
total?: number;
|
|
151
|
-
data?: Array<AppFlowAction>;
|
|
152
|
-
}
|
|
153
|
-
/** Flow Events **/
|
|
154
|
-
export interface FlowEventListResponse {
|
|
155
|
-
total?: number;
|
|
156
|
-
data?: Array<AppFlowEvent>;
|
|
157
|
-
}
|
|
158
|
-
export type FlowEventCreateRequest = AppFlowEvent;
|
|
159
|
-
export type FlowEventCreateResponse = {
|
|
160
|
-
data: AppFlowEvent;
|
|
161
|
-
};
|
|
162
|
-
export type FlowEventListSearchRequest = Criteria;
|
|
163
|
-
export interface FlowEventListSearchResponse {
|
|
164
|
-
total?: number;
|
|
165
|
-
data?: Array<AppFlowEvent>;
|
|
166
|
-
}
|
|
167
|
-
export interface FlowEventSingleResponse {
|
|
168
|
-
data: AppFlowEvent;
|
|
169
|
-
}
|
|
170
|
-
export type FlowEventUpdateRequest = AppFlowEvent;
|
|
171
|
-
export type FlowEventUpdateResponse = {
|
|
172
|
-
data: AppFlowEvent;
|
|
173
|
-
};
|
|
174
|
-
export interface FlowEventAggregationRequest {
|
|
175
|
-
aggregations: Array<Aggregation>;
|
|
176
|
-
}
|
|
177
|
-
export interface FlowEventAggregationResponse {
|
|
178
|
-
total?: number;
|
|
179
|
-
data?: Array<AppFlowEvent>;
|
|
180
|
-
}
|
|
181
|
-
/** Payment Methods **/
|
|
182
|
-
export interface PaymentMethodListResponse {
|
|
183
|
-
total?: number;
|
|
184
|
-
data?: Array<AppPaymentMethod>;
|
|
185
|
-
}
|
|
186
|
-
export type PaymentMethodCreateRequest = AppPaymentMethod;
|
|
187
|
-
export type PaymentMethodCreateResponse = {
|
|
188
|
-
data: AppPaymentMethod;
|
|
189
|
-
};
|
|
190
|
-
export type PaymentMethodListSearchRequest = Criteria;
|
|
191
|
-
export interface PaymentMethodListSearchResponse {
|
|
192
|
-
total?: number;
|
|
193
|
-
data?: Array<AppPaymentMethod>;
|
|
194
|
-
}
|
|
195
|
-
export interface PaymentMethodSingleResponse {
|
|
196
|
-
data: AppPaymentMethod;
|
|
197
|
-
}
|
|
198
|
-
export type PaymentMethodUpdateRequest = AppPaymentMethod;
|
|
199
|
-
export type PaymentMethodUpdateResponse = {
|
|
200
|
-
data: AppPaymentMethod;
|
|
201
|
-
};
|
|
202
|
-
export interface PaymentMethodAggregationRequest {
|
|
203
|
-
aggregations: Array<Aggregation>;
|
|
204
|
-
}
|
|
205
|
-
export interface PaymentMethodAggregationResponse {
|
|
206
|
-
total?: number;
|
|
207
|
-
data?: Array<AppPaymentMethod>;
|
|
208
|
-
}
|
|
209
|
-
/** Script Conditions **/
|
|
210
|
-
export interface ScriptConditionListResponse {
|
|
211
|
-
total?: number;
|
|
212
|
-
data?: Array<AppScriptCondition>;
|
|
213
|
-
}
|
|
214
|
-
export type ScriptConditionCreateRequest = AppScriptCondition;
|
|
215
|
-
export type ScriptConditionCreateResponse = {
|
|
216
|
-
data: AppScriptCondition;
|
|
217
|
-
};
|
|
218
|
-
export type ScriptConditionListSearchRequest = Criteria;
|
|
219
|
-
export interface ScriptConditionListSearchResponse {
|
|
220
|
-
total?: number;
|
|
221
|
-
data?: Array<AppScriptCondition>;
|
|
222
|
-
}
|
|
223
|
-
export interface ScriptConditionSingleResponse {
|
|
224
|
-
data: AppScriptCondition;
|
|
225
|
-
}
|
|
226
|
-
export type ScriptConditionUpdateRequest = AppScriptCondition;
|
|
227
|
-
export type ScriptConditionUpdateResponse = {
|
|
228
|
-
data: AppScriptCondition;
|
|
229
|
-
};
|
|
230
|
-
export interface ScriptConditionAggregationRequest {
|
|
231
|
-
aggregations: Array<Aggregation>;
|
|
232
|
-
}
|
|
233
|
-
export interface ScriptConditionAggregationResponse {
|
|
234
|
-
total?: number;
|
|
235
|
-
data?: Array<AppScriptCondition>;
|
|
236
|
-
}
|
|
237
|
-
/** Shipping Methods **/
|
|
238
|
-
export interface ShippingMethodListResponse {
|
|
239
|
-
total?: number;
|
|
240
|
-
data?: Array<AppShippingMethod>;
|
|
241
|
-
}
|
|
242
|
-
export type ShippingMethodCreateRequest = AppShippingMethod;
|
|
243
|
-
export type ShippingMethodCreateResponse = {
|
|
244
|
-
data: AppShippingMethod;
|
|
245
|
-
};
|
|
246
|
-
export type ShippingMethodListSearchRequest = Criteria;
|
|
247
|
-
export interface ShippingMethodListSearchResponse {
|
|
248
|
-
total?: number;
|
|
249
|
-
data?: Array<AppShippingMethod>;
|
|
250
|
-
}
|
|
251
|
-
export interface ShippingMethodSingleResponse {
|
|
252
|
-
data: AppShippingMethod;
|
|
253
|
-
}
|
|
254
|
-
export type ShippingMethodUpdateRequest = AppShippingMethod;
|
|
255
|
-
export type ShippingMethodUpdateResponse = {
|
|
256
|
-
data: AppShippingMethod;
|
|
257
|
-
};
|
|
258
|
-
export interface ShippingMethodAggregationRequest {
|
|
259
|
-
aggregations: Array<Aggregation>;
|
|
260
|
-
}
|
|
261
|
-
export interface ShippingMethodAggregationResponse {
|
|
262
|
-
total?: number;
|
|
263
|
-
data?: Array<AppShippingMethod>;
|
|
264
|
-
}
|
|
265
|
-
/** Templates **/
|
|
266
|
-
export interface TemplateListResponse {
|
|
267
|
-
total?: number;
|
|
268
|
-
data?: Array<AppTemplate>;
|
|
269
|
-
}
|
|
270
|
-
export type TemplateCreateRequest = AppTemplate;
|
|
271
|
-
export type TemplateCreateResponse = {
|
|
272
|
-
data: AppTemplate;
|
|
273
|
-
};
|
|
274
|
-
export type TemplateListSearchRequest = Criteria;
|
|
275
|
-
export interface TemplateListSearchResponse {
|
|
276
|
-
total?: number;
|
|
277
|
-
data?: Array<AppTemplate>;
|
|
278
|
-
}
|
|
279
|
-
export interface TemplateSingleResponse {
|
|
280
|
-
data: AppTemplate;
|
|
281
|
-
}
|
|
282
|
-
export type TemplateUpdateRequest = AppTemplate;
|
|
283
|
-
export type TemplateUpdateResponse = {
|
|
284
|
-
data: AppTemplate;
|
|
285
|
-
};
|
|
286
|
-
export interface TemplateAggregationRequest {
|
|
287
|
-
aggregations: Array<Aggregation>;
|
|
288
|
-
}
|
|
289
|
-
export interface TemplateAggregationResponse {
|
|
290
|
-
total?: number;
|
|
291
|
-
data?: Array<AppTemplate>;
|
|
292
|
-
}
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
import { Category } from "#types/api/admin/category/Category";
|
|
2
|
-
import { MainCategory } from "#types/api/admin/category/MainCategory";
|
|
3
|
-
import { Criteria } from "#types/api/global/query/Criteria";
|
|
4
|
-
import { Aggregation } from "#types/api/global/aggregation/Aggregation";
|
|
5
|
-
/** Categories **/
|
|
6
|
-
export interface CategoryListResponse {
|
|
7
|
-
total?: number;
|
|
8
|
-
data?: Array<Category>;
|
|
9
|
-
}
|
|
10
|
-
export type CategoryCreateRequest = Category;
|
|
11
|
-
export type CategoryCreateResponse = {
|
|
12
|
-
data: Category;
|
|
13
|
-
};
|
|
14
|
-
export type CategoryListSearchRequest = Criteria;
|
|
15
|
-
export interface CategoryListSearchResponse {
|
|
16
|
-
total?: number;
|
|
17
|
-
data?: Array<Category>;
|
|
18
|
-
}
|
|
19
|
-
export interface CategorySingleResponse {
|
|
20
|
-
data: Category;
|
|
21
|
-
}
|
|
22
|
-
export type CategoryUpdateRequest = Category;
|
|
23
|
-
export type CategoryUpdateResponse = {
|
|
24
|
-
data: Category;
|
|
25
|
-
};
|
|
26
|
-
export interface CategoryAggregationRequest {
|
|
27
|
-
aggregations: Array<Aggregation>;
|
|
28
|
-
}
|
|
29
|
-
export interface CategoryAggregationResponse {
|
|
30
|
-
total?: number;
|
|
31
|
-
data?: Array<Category>;
|
|
32
|
-
}
|
|
33
|
-
/** Main Categories **/
|
|
34
|
-
export interface MainCategoryListResponse {
|
|
35
|
-
total?: number;
|
|
36
|
-
data?: Array<MainCategory>;
|
|
37
|
-
}
|
|
38
|
-
export type MainCategoryCreateRequest = MainCategory;
|
|
39
|
-
export type MainCategoryCreateResponse = {
|
|
40
|
-
data: MainCategory;
|
|
41
|
-
};
|
|
42
|
-
export type MainCategoryListSearchRequest = Criteria;
|
|
43
|
-
export interface MainCategoryListSearchResponse {
|
|
44
|
-
total?: number;
|
|
45
|
-
data?: Array<MainCategory>;
|
|
46
|
-
}
|
|
47
|
-
export interface MainCategorySingleResponse {
|
|
48
|
-
data: MainCategory;
|
|
49
|
-
}
|
|
50
|
-
export type MainCategoryUpdateRequest = MainCategory;
|
|
51
|
-
export type MainCategoryUpdateResponse = {
|
|
52
|
-
data: MainCategory;
|
|
53
|
-
};
|
|
54
|
-
export interface MainCategoryAggregationRequest {
|
|
55
|
-
aggregations: Array<Aggregation>;
|
|
56
|
-
}
|
|
57
|
-
export interface MainCategoryAggregationResponse {
|
|
58
|
-
total?: number;
|
|
59
|
-
data?: Array<MainCategory>;
|
|
60
|
-
}
|
|
@@ -1,176 +0,0 @@
|
|
|
1
|
-
import { CmsBlock } from "#types/api/admin/cms/CmsBlock";
|
|
2
|
-
import { CmsPage } from "#types/api/admin/cms/CmsPage";
|
|
3
|
-
import { CmsSection } from "#types/api/admin/cms/CmsSection";
|
|
4
|
-
import { CmsSlot } from "#types/api/admin/cms/CmsSlot";
|
|
5
|
-
import { LandingPage } from "#types/api/admin/cms/landingPage/LandingPage";
|
|
6
|
-
import { Theme } from "#types/api/admin/theme/Theme";
|
|
7
|
-
import { Criteria } from "#types/api/global/query/Criteria";
|
|
8
|
-
import { Aggregation } from "#types/api/global/aggregation/Aggregation";
|
|
9
|
-
/** Cms Blocks **/
|
|
10
|
-
export interface CmsBlockListResponse {
|
|
11
|
-
total?: number;
|
|
12
|
-
data?: Array<CmsBlock>;
|
|
13
|
-
}
|
|
14
|
-
export type CmsBlockCreateRequest = CmsBlock;
|
|
15
|
-
export type CmsBlockCreateResponse = {
|
|
16
|
-
data: CmsBlock;
|
|
17
|
-
};
|
|
18
|
-
export type CmsBlockListSearchRequest = Criteria;
|
|
19
|
-
export interface CmsBlockListSearchResponse {
|
|
20
|
-
total?: number;
|
|
21
|
-
data?: Array<CmsBlock>;
|
|
22
|
-
}
|
|
23
|
-
export interface CmsBlockSingleResponse {
|
|
24
|
-
data: CmsBlock;
|
|
25
|
-
}
|
|
26
|
-
export type CmsBlockUpdateRequest = CmsBlock;
|
|
27
|
-
export type CmsBlockUpdateResponse = {
|
|
28
|
-
data: CmsBlock;
|
|
29
|
-
};
|
|
30
|
-
export interface CmsBlockAggregationRequest {
|
|
31
|
-
aggregations: Array<Aggregation>;
|
|
32
|
-
}
|
|
33
|
-
export interface CmsBlockAggregationResponse {
|
|
34
|
-
total?: number;
|
|
35
|
-
data?: Array<CmsBlock>;
|
|
36
|
-
}
|
|
37
|
-
/** Cms Pages **/
|
|
38
|
-
export interface CmsPageListResponse {
|
|
39
|
-
total?: number;
|
|
40
|
-
data?: Array<CmsPage>;
|
|
41
|
-
}
|
|
42
|
-
export type CmsPageCreateRequest = CmsPage;
|
|
43
|
-
export type CmsPageCreateResponse = {
|
|
44
|
-
data: CmsPage;
|
|
45
|
-
};
|
|
46
|
-
export type CmsPageListSearchRequest = Criteria;
|
|
47
|
-
export interface CmsPageListSearchResponse {
|
|
48
|
-
total?: number;
|
|
49
|
-
data?: Array<CmsPage>;
|
|
50
|
-
}
|
|
51
|
-
export interface CmsPageSingleResponse {
|
|
52
|
-
data: CmsPage;
|
|
53
|
-
}
|
|
54
|
-
export type CmsPageUpdateRequest = CmsPage;
|
|
55
|
-
export type CmsPageUpdateResponse = {
|
|
56
|
-
data: CmsPage;
|
|
57
|
-
};
|
|
58
|
-
export interface CmsPageAggregationRequest {
|
|
59
|
-
aggregations: Array<Aggregation>;
|
|
60
|
-
}
|
|
61
|
-
export interface CmsPageAggregationResponse {
|
|
62
|
-
total?: number;
|
|
63
|
-
data?: Array<CmsPage>;
|
|
64
|
-
}
|
|
65
|
-
/** Cms Sections **/
|
|
66
|
-
export interface CmsSectionListResponse {
|
|
67
|
-
total?: number;
|
|
68
|
-
data?: Array<CmsSection>;
|
|
69
|
-
}
|
|
70
|
-
export type CmsSectionCreateRequest = CmsSection;
|
|
71
|
-
export type CmsSectionCreateResponse = {
|
|
72
|
-
data: CmsSection;
|
|
73
|
-
};
|
|
74
|
-
export type CmsSectionListSearchRequest = Criteria;
|
|
75
|
-
export interface CmsSectionListSearchResponse {
|
|
76
|
-
total?: number;
|
|
77
|
-
data?: Array<CmsSection>;
|
|
78
|
-
}
|
|
79
|
-
export interface CmsSectionSingleResponse {
|
|
80
|
-
data: CmsSection;
|
|
81
|
-
}
|
|
82
|
-
export type CmsSectionUpdateRequest = CmsSection;
|
|
83
|
-
export type CmsSectionUpdateResponse = {
|
|
84
|
-
data: CmsSection;
|
|
85
|
-
};
|
|
86
|
-
export interface CmsSectionAggregationRequest {
|
|
87
|
-
aggregations: Array<Aggregation>;
|
|
88
|
-
}
|
|
89
|
-
export interface CmsSectionAggregationResponse {
|
|
90
|
-
total?: number;
|
|
91
|
-
data?: Array<CmsSection>;
|
|
92
|
-
}
|
|
93
|
-
/** Cms Slots **/
|
|
94
|
-
export interface CmsSlotListResponse {
|
|
95
|
-
total?: number;
|
|
96
|
-
data?: Array<CmsSlot>;
|
|
97
|
-
}
|
|
98
|
-
export type CmsSlotCreateRequest = CmsSlot;
|
|
99
|
-
export type CmsSlotCreateResponse = {
|
|
100
|
-
data: CmsSlot;
|
|
101
|
-
};
|
|
102
|
-
export type CmsSlotListSearchRequest = Criteria;
|
|
103
|
-
export interface CmsSlotListSearchResponse {
|
|
104
|
-
total?: number;
|
|
105
|
-
data?: Array<CmsSlot>;
|
|
106
|
-
}
|
|
107
|
-
export interface CmsSlotSingleResponse {
|
|
108
|
-
data: CmsSlot;
|
|
109
|
-
}
|
|
110
|
-
export type CmsSlotUpdateRequest = CmsSlot;
|
|
111
|
-
export type CmsSlotUpdateResponse = {
|
|
112
|
-
data: CmsSlot;
|
|
113
|
-
};
|
|
114
|
-
export interface CmsSlotAggregationRequest {
|
|
115
|
-
aggregations: Array<Aggregation>;
|
|
116
|
-
}
|
|
117
|
-
export interface CmsSlotAggregationResponse {
|
|
118
|
-
total?: number;
|
|
119
|
-
data?: Array<CmsSlot>;
|
|
120
|
-
}
|
|
121
|
-
/** Landing Pages **/
|
|
122
|
-
export interface LandingPageListResponse {
|
|
123
|
-
total?: number;
|
|
124
|
-
data?: Array<LandingPage>;
|
|
125
|
-
}
|
|
126
|
-
export type LandingPageCreateRequest = LandingPage;
|
|
127
|
-
export type LandingPageCreateResponse = {
|
|
128
|
-
data: LandingPage;
|
|
129
|
-
};
|
|
130
|
-
export type LandingPageListSearchRequest = Criteria;
|
|
131
|
-
export interface LandingPageListSearchResponse {
|
|
132
|
-
total?: number;
|
|
133
|
-
data?: Array<LandingPage>;
|
|
134
|
-
}
|
|
135
|
-
export interface LandingPageSingleResponse {
|
|
136
|
-
data: LandingPage;
|
|
137
|
-
}
|
|
138
|
-
export type LandingPageUpdateRequest = LandingPage;
|
|
139
|
-
export type LandingPageUpdateResponse = {
|
|
140
|
-
data: LandingPage;
|
|
141
|
-
};
|
|
142
|
-
export interface LandingPageAggregationRequest {
|
|
143
|
-
aggregations: Array<Aggregation>;
|
|
144
|
-
}
|
|
145
|
-
export interface LandingPageAggregationResponse {
|
|
146
|
-
total?: number;
|
|
147
|
-
data?: Array<LandingPage>;
|
|
148
|
-
}
|
|
149
|
-
/** Themes **/
|
|
150
|
-
export interface ThemeListResponse {
|
|
151
|
-
total?: number;
|
|
152
|
-
data?: Array<Theme>;
|
|
153
|
-
}
|
|
154
|
-
export type ThemeCreateRequest = Theme;
|
|
155
|
-
export type ThemeCreateResponse = {
|
|
156
|
-
data: Theme;
|
|
157
|
-
};
|
|
158
|
-
export type ThemeListSearchRequest = Criteria;
|
|
159
|
-
export interface ThemeListSearchResponse {
|
|
160
|
-
total?: number;
|
|
161
|
-
data?: Array<Theme>;
|
|
162
|
-
}
|
|
163
|
-
export interface ThemeSingleResponse {
|
|
164
|
-
data: Theme;
|
|
165
|
-
}
|
|
166
|
-
export type ThemeUpdateRequest = Theme;
|
|
167
|
-
export type ThemeUpdateResponse = {
|
|
168
|
-
data: Theme;
|
|
169
|
-
};
|
|
170
|
-
export interface ThemeAggregationRequest {
|
|
171
|
-
aggregations: Array<Aggregation>;
|
|
172
|
-
}
|
|
173
|
-
export interface ThemeAggregationResponse {
|
|
174
|
-
total?: number;
|
|
175
|
-
data?: Array<Theme>;
|
|
176
|
-
}
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
import { Criteria } from "#types/api/global/query/Criteria";
|
|
2
|
-
import { Aggregation } from "#types/api/global/aggregation/Aggregation";
|
|
3
|
-
import { Country } from "#types/api/admin/country/Country";
|
|
4
|
-
import { CountryState } from "#types/api/admin/country/CountryState";
|
|
5
|
-
/** Country **/
|
|
6
|
-
export interface CountryListResponse {
|
|
7
|
-
total?: number;
|
|
8
|
-
data?: Array<Country>;
|
|
9
|
-
}
|
|
10
|
-
export type CountryCreateRequest = Country;
|
|
11
|
-
export type CountryCreateResponse = {
|
|
12
|
-
data: Country;
|
|
13
|
-
};
|
|
14
|
-
export type CountryListSearchRequest = Criteria;
|
|
15
|
-
export interface CountryListSearchResponse {
|
|
16
|
-
total?: number;
|
|
17
|
-
data?: Array<Country>;
|
|
18
|
-
}
|
|
19
|
-
export interface CountrySingleResponse {
|
|
20
|
-
data: Country;
|
|
21
|
-
}
|
|
22
|
-
export type CountryUpdateRequest = Country;
|
|
23
|
-
export type CountryUpdateResponse = {
|
|
24
|
-
data: Country;
|
|
25
|
-
};
|
|
26
|
-
export interface CountryAggregationRequest {
|
|
27
|
-
aggregations: Array<Aggregation>;
|
|
28
|
-
}
|
|
29
|
-
export interface CountryAggregationResponse {
|
|
30
|
-
total?: number;
|
|
31
|
-
data?: Array<Country>;
|
|
32
|
-
}
|
|
33
|
-
/** States **/
|
|
34
|
-
export interface StateListResponse {
|
|
35
|
-
total?: number;
|
|
36
|
-
data?: Array<CountryState>;
|
|
37
|
-
}
|
|
38
|
-
export type StateCreateRequest = CountryState;
|
|
39
|
-
export type StateCreateResponse = {
|
|
40
|
-
data: CountryState;
|
|
41
|
-
};
|
|
42
|
-
export type StateListSearchRequest = Criteria;
|
|
43
|
-
export interface StateListSearchResponse {
|
|
44
|
-
total?: number;
|
|
45
|
-
data?: Array<CountryState>;
|
|
46
|
-
}
|
|
47
|
-
export interface StateSingleResponse {
|
|
48
|
-
data: CountryState;
|
|
49
|
-
}
|
|
50
|
-
export type StateUpdateRequest = CountryState;
|
|
51
|
-
export type StateUpdateResponse = {
|
|
52
|
-
data: CountryState;
|
|
53
|
-
};
|
|
54
|
-
export interface StateAggregationRequest {
|
|
55
|
-
aggregations: Array<Aggregation>;
|
|
56
|
-
}
|
|
57
|
-
export interface StateAggregationResponse {
|
|
58
|
-
total?: number;
|
|
59
|
-
data?: Array<CountryState>;
|
|
60
|
-
}
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
import { Criteria } from "#types/api/global/query/Criteria";
|
|
2
|
-
import { Aggregation } from "#types/api/global/aggregation/Aggregation";
|
|
3
|
-
import { Currency } from "#types/api/admin/currency/Currency";
|
|
4
|
-
import { CurrencyCountryRounding } from "#types/api/admin/currency/CurrencyCountryRounding";
|
|
5
|
-
/** Currency **/
|
|
6
|
-
export interface CurrencyListResponse {
|
|
7
|
-
total?: number;
|
|
8
|
-
data?: Array<Currency>;
|
|
9
|
-
}
|
|
10
|
-
export type CurrencyCreateRequest = Currency;
|
|
11
|
-
export type CurrencyCreateResponse = {
|
|
12
|
-
data: Currency;
|
|
13
|
-
};
|
|
14
|
-
export type CurrencyListSearchRequest = Criteria;
|
|
15
|
-
export interface CurrencyListSearchResponse {
|
|
16
|
-
total?: number;
|
|
17
|
-
data?: Array<Currency>;
|
|
18
|
-
}
|
|
19
|
-
export interface CurrencySingleResponse {
|
|
20
|
-
data: Currency;
|
|
21
|
-
}
|
|
22
|
-
export type CurrencyUpdateRequest = Currency;
|
|
23
|
-
export type CurrencyUpdateResponse = {
|
|
24
|
-
data: Currency;
|
|
25
|
-
};
|
|
26
|
-
export interface CurrencyAggregationRequest {
|
|
27
|
-
aggregations: Array<Aggregation>;
|
|
28
|
-
}
|
|
29
|
-
export interface CurrencyAggregationResponse {
|
|
30
|
-
total?: number;
|
|
31
|
-
data?: Array<Currency>;
|
|
32
|
-
}
|
|
33
|
-
/** Country Roundings **/
|
|
34
|
-
export interface CountryRoundingListResponse {
|
|
35
|
-
total?: number;
|
|
36
|
-
data?: Array<CurrencyCountryRounding>;
|
|
37
|
-
}
|
|
38
|
-
export type CountryRoundingCreateRequest = CurrencyCountryRounding;
|
|
39
|
-
export type CountryRoundingCreateResponse = {
|
|
40
|
-
data: CurrencyCountryRounding;
|
|
41
|
-
};
|
|
42
|
-
export type CountryRoundingListSearchRequest = Criteria;
|
|
43
|
-
export interface CountryRoundingListSearchResponse {
|
|
44
|
-
total?: number;
|
|
45
|
-
data?: Array<CurrencyCountryRounding>;
|
|
46
|
-
}
|
|
47
|
-
export interface CountryRoundingSingleResponse {
|
|
48
|
-
data: CurrencyCountryRounding;
|
|
49
|
-
}
|
|
50
|
-
export type CountryRoundingUpdateRequest = CurrencyCountryRounding;
|
|
51
|
-
export type CountryRoundingUpdateResponse = {
|
|
52
|
-
data: CurrencyCountryRounding;
|
|
53
|
-
};
|
|
54
|
-
export interface CountryRoundingAggregationRequest {
|
|
55
|
-
aggregations: Array<Aggregation>;
|
|
56
|
-
}
|
|
57
|
-
export interface CountryRoundingAggregationResponse {
|
|
58
|
-
total?: number;
|
|
59
|
-
data?: Array<CurrencyCountryRounding>;
|
|
60
|
-
}
|