@omniumretail/shared-resources 0.3.31 → 0.3.33

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 (27) hide show
  1. package/dist/bundle.js +1 -1
  2. package/dist/types/index.d.ts +1 -0
  3. package/package.json +1 -1
  4. package/src/a2ai.scss +5 -0
  5. package/src/index.ts +1 -0
  6. package/dist/types/hooks/ATIM/BackOffice/get/useEmployeeTimekeepingDetails.hook.d.ts +0 -15
  7. package/dist/types/hooks/ATIM/BackOffice/mutate/postAttendanceSummary.hook.d.ts +0 -2
  8. package/dist/types/hooks/Asgt/get/getProductsListingQuery.hook.d.ts +0 -3
  9. package/dist/types/hooks/Asgt/get/getReportsBuilderQuery.hook.d.ts +0 -3
  10. package/dist/types/hooks/Asgt/get/getTransferAllProductsQuery.hook.d.ts +0 -10
  11. package/dist/types/hooks/Asgt/get/getTransferDocumentsByIdQuery.hook.d.ts +0 -3
  12. package/dist/types/hooks/Asgt/get/getTransferDocumentsByPackageQuery.hook.d.ts +0 -3
  13. package/dist/types/hooks/Asgt/get/getTransferDocumentsPackagesQuery.hook.d.ts +0 -9
  14. package/dist/types/hooks/Asgt/get/getTransferDocumentsQuery.hook.d.ts +0 -11
  15. package/dist/types/hooks/Asgt/get/getTransferReportDiff.hook.d.ts +0 -12
  16. package/dist/types/hooks/Asgt/mutate/postTransferDocumentsMutateQuery.hook.d.ts +0 -7
  17. package/dist/types/hooks/Asgt/mutate/putTransferDocumentsStateMutateQuery.hook.d.ts +0 -6
  18. package/dist/types/hooks/Asts/get/getStockInfoQuery.hook.d.ts +0 -2
  19. package/dist/types/hooks/Frd/get/getFlowExecutionQuery.hook.d.ts +0 -12
  20. package/dist/types/hooks/Frd/get/getFlowListQuery.hook.d.ts +0 -12
  21. package/dist/types/hooks/OSUA/get/documentos/getDocumentIntegrationRequestStatus.hook.d.ts +0 -8
  22. package/dist/types/hooks/OSUA/get/mimo/useErrorHistory.hook.d.ts +0 -7
  23. package/dist/types/hooks/OSUA/get/mimo/useIntegrationDataQuery.hook.d.ts +0 -2
  24. package/dist/types/hooks/Others/getPriceChangePinQuery.hook.d.ts +0 -2
  25. package/dist/types/hooks/WidgetPicaPonto/others/postAttendanceIssuesQuery.hook.d.ts +0 -2
  26. package/dist/types/interfaces/BackofficeAtim.d.ts +0 -106
  27. package/dist/types/interfaces/OUSA.d.ts +0 -294
@@ -7,3 +7,4 @@ export * from './hooks';
7
7
  export * from './enums';
8
8
  export * from './helpers';
9
9
  import './global.scss';
10
+ import './a2ai.scss';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@omniumretail/shared-resources",
3
- "version": "0.3.31",
3
+ "version": "0.3.33",
4
4
  "private": false,
5
5
  "description": "Shared Components and services or utils to the frontend versions",
6
6
  "main": "dist/bundle.js",
package/src/a2ai.scss ADDED
@@ -0,0 +1,5 @@
1
+ .a2aiStyle {
2
+ :root {
3
+ --primary-color: purple;
4
+ }
5
+ }
package/src/index.ts CHANGED
@@ -9,3 +9,4 @@ export * from './hooks';
9
9
  export * from './enums';
10
10
  export * from './helpers';
11
11
  import './global.scss';
12
+ import './a2ai.scss';
@@ -1,15 +0,0 @@
1
- import { UseQueryOptions } from '@tanstack/react-query';
2
- import { ResponseList, EmployeesWorklog } from '../../../../interfaces';
3
- interface EmployeesWithTimekeepingProps extends UseQueryOptions<ResponseList<"EmployeesWorkLog", EmployeesWorklog>> {
4
- storeId?: string;
5
- startDate?: number;
6
- endDate?: number;
7
- search?: string;
8
- page?: number;
9
- records?: number;
10
- sortBy?: string;
11
- sortDirection?: string;
12
- employeeId?: string;
13
- }
14
- export declare const useEmployeeTimekeepingDetails: ({ storeId, startDate, endDate, search, employeeId, page, records, sortBy, sortDirection, ...options }: EmployeesWithTimekeepingProps) => import("@tanstack/react-query").UseQueryResult<ResponseList<"EmployeesWorklog", EmployeesWorklog>, unknown>;
15
- export {};
@@ -1,2 +0,0 @@
1
- import { AttendancesSummary } from "../../../../interfaces";
2
- export declare const postAttendanceRange: () => import("@tanstack/react-query").UseMutationResult<AttendancesSummary, unknown, AttendancesSummary, unknown>;
@@ -1,3 +0,0 @@
1
- import { ReportBuilder } from '../../..';
2
- import { UseQueryOptions } from '@tanstack/react-query';
3
- export declare const getProductsListingQueryHook: (transferId: string, transferPackageId: string, { ...options }: UseQueryOptions<ReportBuilder>) => import("@tanstack/react-query").UseQueryResult<ReportBuilder, unknown>;
@@ -1,3 +0,0 @@
1
- import { ReportBuilder } from '../../..';
2
- import { UseQueryOptions } from '@tanstack/react-query';
3
- export declare const getReportsBuilderQueryHook: (transferId: string, { ...options }: UseQueryOptions<ReportBuilder>) => import("@tanstack/react-query").UseQueryResult<ReportBuilder, unknown>;
@@ -1,10 +0,0 @@
1
- import { UseQueryOptions } from "@tanstack/react-query";
2
- import { TransferAllProducts, ResponseList } from "../../../interfaces";
3
- export interface TransferAllProductsProps extends UseQueryOptions<ResponseList<"Products", TransferAllProducts>> {
4
- page: number;
5
- records: number;
6
- sortBy: string;
7
- sortDirection: string;
8
- query?: string;
9
- }
10
- export declare const getTransferAllProductsQueryHook: ({ page, records, sortBy, sortDirection, query, ...options }: TransferAllProductsProps) => import("@tanstack/react-query").UseQueryResult<ResponseList<"Products", TransferAllProducts>, unknown>;
@@ -1,3 +0,0 @@
1
- import { TransferDocuments } from '../../..';
2
- import { UseQueryOptions } from '@tanstack/react-query';
3
- export declare const getTransferDocumentsByIdQueryHook: (transferId: string, { ...options }: UseQueryOptions<TransferDocuments>) => import("@tanstack/react-query").UseQueryResult<TransferDocuments, unknown>;
@@ -1,3 +0,0 @@
1
- import { TransferPackage } from '../../..';
2
- import { UseQueryOptions } from '@tanstack/react-query';
3
- export declare const getTransferDocumentsByPackageQueryHook: (transferId: string, transferPackageId: string, { ...options }: UseQueryOptions<TransferPackage>) => import("@tanstack/react-query").UseQueryResult<TransferPackage, unknown>;
@@ -1,9 +0,0 @@
1
- import { UseQueryOptions } from "@tanstack/react-query";
2
- import { TransferDocumentsDetails, ResponseList } from "../../../interfaces";
3
- export interface TransferDocumentsPackagesProps extends UseQueryOptions<ResponseList<"TransferDocumentDetails", TransferDocumentsDetails>> {
4
- sortBy?: string;
5
- sortDirection?: string;
6
- terms?: string;
7
- transferDocumentId?: string;
8
- }
9
- export declare const getTransferDocumentsPackagesQueryHook: ({ sortBy, sortDirection, terms, transferDocumentId, ...options }: TransferDocumentsPackagesProps) => import("@tanstack/react-query").UseQueryResult<ResponseList<"TransferDocumentDetails", TransferDocumentsDetails>, unknown>;
@@ -1,11 +0,0 @@
1
- import { UseQueryOptions } from "@tanstack/react-query";
2
- import { TransferDocuments, ResponseList } from "../../../interfaces";
3
- export interface TransferDocumentsProps extends UseQueryOptions<ResponseList<"TransferDocuments", TransferDocuments>> {
4
- page: number;
5
- records: number;
6
- sortBy: string;
7
- sortDirection: string;
8
- terms?: string;
9
- query?: string;
10
- }
11
- export declare const getTransferDocumentsQueryHook: ({ page, records, sortBy, sortDirection, terms, query, ...options }: TransferDocumentsProps) => import("@tanstack/react-query").UseQueryResult<ResponseList<"TransferDocuments", TransferDocuments>, unknown>;
@@ -1,12 +0,0 @@
1
- import { UseQueryOptions } from "@tanstack/react-query";
2
- import { TransferReportDiff } from "../../../interfaces";
3
- export interface TransferReportDiffProps extends UseQueryOptions<{
4
- ProductsToBePicked: TransferReportDiff[];
5
- FalsePositiveProducts?: TransferReportDiff[];
6
- }> {
7
- transferDocumentId?: string;
8
- }
9
- export declare const getTransferReportDiffQueryHook: ({ transferDocumentId, ...options }: TransferReportDiffProps) => import("@tanstack/react-query").UseQueryResult<{
10
- ProductsToBePicked: TransferReportDiff[];
11
- FalsePositiveProducts?: TransferReportDiff[];
12
- }, unknown>;
@@ -1,7 +0,0 @@
1
- import { UseQueryOptions } from '@tanstack/react-query';
2
- import { TransferPickProducts } from '../../../interfaces/TransferPickProducts';
3
- export interface TransferDocumentsMutateProps extends UseQueryOptions<TransferPickProducts> {
4
- transferDocumentId: string;
5
- packageId: string;
6
- }
7
- export declare const postTransferDocumentsMutateQueryHook: ({ transferDocumentId, packageId }: TransferDocumentsMutateProps) => import("@tanstack/react-query").UseMutationResult<TransferPickProducts, unknown, TransferPickProducts, unknown>;
@@ -1,6 +0,0 @@
1
- import { UseQueryOptions } from '@tanstack/react-query';
2
- import { TransferDocumentState } from '../../../interfaces/TransferDocumentState';
3
- export interface TransferDocumentsStateMutateProps extends UseQueryOptions<TransferDocumentState> {
4
- transferDocumentId: string;
5
- }
6
- export declare const putTransferDocumentsStateMutateQueryHook: ({ transferDocumentId }: TransferDocumentsStateMutateProps) => import("@tanstack/react-query").UseMutationResult<TransferDocumentState, unknown, TransferDocumentState, unknown>;
@@ -1,2 +0,0 @@
1
- import { AstsStockInfo } from "../../../interfaces";
2
- export declare const getStockInfoQueryHook: (barcode: string) => import("@tanstack/react-query").UseQueryResult<AstsStockInfo, unknown>;
@@ -1,12 +0,0 @@
1
- import { UseQueryOptions } from "@tanstack/react-query";
2
- import { FlowExecution, ResponseList } from "../../../interfaces";
3
- interface FlowExecutionProps extends Omit<UseQueryOptions<ResponseList<"Executions", FlowExecution>>, "queryKey"> {
4
- page: number;
5
- records: number;
6
- sortBy: string;
7
- sortDirection: string;
8
- terms?: string;
9
- query?: string;
10
- }
11
- export declare const getFlowExecutionQuery: ({ page, records, sortBy, sortDirection, terms, query, ...options }: FlowExecutionProps) => import("@tanstack/react-query").UseQueryResult<ResponseList<"Executions", FlowExecution>, unknown>;
12
- export {};
@@ -1,12 +0,0 @@
1
- import { UseQueryOptions } from "@tanstack/react-query";
2
- import { FlowList, ResponseList } from "../../../interfaces";
3
- interface FlowListProps extends Omit<UseQueryOptions<ResponseList<"FlowConfigurationResponses", FlowList>>, "queryKey"> {
4
- page: number;
5
- records: number;
6
- sortBy: string;
7
- sortDirection: string;
8
- terms?: string;
9
- query?: string;
10
- }
11
- export declare const getFlowListQuery: ({ page, records, sortBy, sortDirection, terms, query, ...options }: FlowListProps) => import("@tanstack/react-query").UseQueryResult<ResponseList<"FlowConfigurationResponses", FlowList>, unknown>;
12
- export {};
@@ -1,8 +0,0 @@
1
- import { UseQueryOptions } from '@tanstack/react-query';
2
- import { IntegrationRequestStatus } from '../../../../interfaces';
3
- interface GetDocumentIntegrationRequestStatusProps extends UseQueryOptions<IntegrationRequestStatus> {
4
- pIntegrationType?: string;
5
- pSourcePlatformId?: string;
6
- }
7
- export declare const getDocumentIntegrationRequestStatus: ({ pIntegrationType, pSourcePlatformId }: GetDocumentIntegrationRequestStatusProps) => import("@tanstack/react-query").UseQueryResult<IntegrationRequestStatus, unknown>;
8
- export {};
@@ -1,7 +0,0 @@
1
- import { UseQueryOptions } from "@tanstack/react-query";
2
- import { ErrorHistoryItem } from "../../../../interfaces";
3
- interface GetErrorHistoryProps extends UseQueryOptions<ErrorHistoryItem[]> {
4
- query?: string;
5
- }
6
- export declare const useErrorHistory: (options?: GetErrorHistoryProps) => import("@tanstack/react-query").UseQueryResult<ErrorHistoryItem[], unknown>;
7
- export {};
@@ -1,2 +0,0 @@
1
- import { IntegrationData } from "../../../../interfaces";
2
- export declare const useIntegrationDataQuery: () => import("@tanstack/react-query").UseQueryResult<IntegrationData[], unknown>;
@@ -1,2 +0,0 @@
1
- import { PrinceChange } from "../../interfaces";
2
- export declare const getPriceChangePinQueryHook: () => import("@tanstack/react-query").UseQueryResult<PrinceChange, unknown>;
@@ -1,2 +0,0 @@
1
- import { AttendanceIssues } from '../../../interfaces';
2
- export declare const postAttendanceIssuesQueryHook: () => import("@tanstack/react-query").UseMutationResult<AttendanceIssues, unknown, AttendanceIssues, unknown>;
@@ -1,106 +0,0 @@
1
- export interface WorkLogDetail {
2
- Id: string;
3
- Type: number;
4
- Date: number;
5
- }
6
- export interface Breaks {
7
- Number: number;
8
- Time: number;
9
- }
10
- export interface WorkDayLog {
11
- WorkDay: number;
12
- TimeWorked: number;
13
- Breaks: Breaks;
14
- Details: WorkLogDetail[];
15
- }
16
- export interface EmployeesWorklog {
17
- Id: string;
18
- Code: string;
19
- Name: string;
20
- JobTitle: string;
21
- IsWorking: boolean;
22
- TimeWorked: number;
23
- Breaks: Breaks;
24
- WorkDayLogs: WorkDayLog[];
25
- }
26
- export interface Location {
27
- Id: string;
28
- Name: string;
29
- Code: string;
30
- Status: string;
31
- }
32
- export interface UserBackoffice {
33
- UserId: string;
34
- FullName: string;
35
- DisplayName: string;
36
- }
37
- export interface WorkMonths {
38
- BeginDate: number;
39
- EndDate: number;
40
- }
41
- export interface AbsenceTypes {
42
- CreateDate: number;
43
- Id: string;
44
- Name: string;
45
- Status: string;
46
- UpdateDate: number;
47
- }
48
- export interface AbsenceOthers {
49
- Days: number;
50
- Notes: string;
51
- }
52
- export interface AbsenceInterval {
53
- BeginDate: number;
54
- EndDate: number;
55
- }
56
- export interface AbsenceDetail {
57
- LineNumber: number;
58
- AbsenceTypeId: string;
59
- Name: string;
60
- Notes: string;
61
- Interval: AbsenceInterval;
62
- }
63
- export interface AbsenceDetails {
64
- Justified: number;
65
- Unjustified: number;
66
- Others: AbsenceOthers;
67
- Details: AbsenceDetail[];
68
- }
69
- export interface ExtraHours {
70
- Hours: string;
71
- AuthorizedBy: string | null;
72
- }
73
- export interface WorkPeriod {
74
- Begin: number;
75
- End: number;
76
- }
77
- export interface ScheduleWorkHours {
78
- Daily: string;
79
- Night: string;
80
- Total: string;
81
- Stocktaking: string;
82
- }
83
- export interface WorkedHours {
84
- Total: string;
85
- Daily: string;
86
- Night: string;
87
- }
88
- export interface AttendancesSummary {
89
- Id: string | null;
90
- StoreId: string;
91
- Absences: AbsenceDetails;
92
- CreateDate: number;
93
- Delay: string;
94
- EmployeeId: string;
95
- Extra: ExtraHours;
96
- Others: {
97
- Hours: string;
98
- Notes: string | null;
99
- };
100
- Stocktaking: string;
101
- ScheduleWorkHours: ScheduleWorkHours;
102
- WorkPeriod: WorkPeriod;
103
- WorkedHours: WorkedHours;
104
- UpdateDate: number;
105
- Observations: string | null;
106
- }
@@ -1,294 +0,0 @@
1
- export interface GiftCards {
2
- Id: string;
3
- Number: string;
4
- CustomerId: string;
5
- CompanyCode: string;
6
- Pin: string | null;
7
- Type: string;
8
- CurrencyISO3: string;
9
- Value: number;
10
- ExpirationDate: number;
11
- CreateDate: number;
12
- UpdateDate: number;
13
- Status: string;
14
- }
15
- export interface Transaction {
16
- transactionid: string;
17
- date: number;
18
- moneyamount: string;
19
- merchant_reference: string | null;
20
- staff_reference: string | null;
21
- transaction_reference: string | null;
22
- }
23
- export interface SitooVoucher {
24
- type: string;
25
- currencycode: string;
26
- cardnumber: string;
27
- cardnumber_display: string;
28
- redeemable: boolean;
29
- date_expires: number;
30
- date_created: number;
31
- moneyamount: string;
32
- requirespin: boolean;
33
- transactions: Transaction;
34
- }
35
- export interface Stage {
36
- StageCode: number;
37
- StageMessage: string;
38
- }
39
- export interface SourcePlatform {
40
- Id: string;
41
- Name: string;
42
- }
43
- export interface IntegrationRequestStatus {
44
- Id: string;
45
- IntegrationType: string;
46
- Stage: Stage;
47
- GroupIntegrationRequest: string | null;
48
- Details: [];
49
- TotalRecords: number;
50
- Sucess: number;
51
- Errors: number;
52
- Notes: string | null;
53
- Destinations: string | null;
54
- SourcePlatform: SourcePlatform;
55
- ImpersonatePlatform: string | null;
56
- SearchQuery: string;
57
- BeginDate: number | null;
58
- EndDate: number | null;
59
- Duration: string | null;
60
- Status: string;
61
- CreateDate: number;
62
- UpdatedDate: number;
63
- }
64
- export interface BillingAddress {
65
- Street: string | null;
66
- City: string | null;
67
- ZipCode: string | null;
68
- CountryISO2: string | null;
69
- }
70
- export interface DeliveryAddress {
71
- Street: string | null;
72
- City: string | null;
73
- ZipCode: string | null;
74
- CountryISO2: string | null;
75
- }
76
- export interface FiscalInformation {
77
- TaxName: string | null;
78
- TaxNumber: string | null;
79
- }
80
- export interface Lines {
81
- LineNumber: number;
82
- Description: string;
83
- Reference: string;
84
- SKU: string;
85
- Quantity: number;
86
- VAT: string;
87
- Taxes: number;
88
- UnitPrice: number;
89
- Discount: number;
90
- PriceNet: number;
91
- PriceGross: number;
92
- CostPrice: number;
93
- CampaignId: string | null;
94
- ReasonCode: string;
95
- UnitLabel: string;
96
- }
97
- export interface Payments {
98
- LineNumber: number;
99
- Amount: number;
100
- PaymentTypeId: string;
101
- GiftCardNumber: string | null;
102
- Name: string;
103
- }
104
- export interface AdditionalFields {
105
- Name: string;
106
- Value: string;
107
- }
108
- export interface DocumentGng {
109
- Id: string;
110
- DocumentNumber: string;
111
- CompanyCode: string;
112
- DocumentTypeCode: string;
113
- LocationCode: string;
114
- Date: number;
115
- AssociatedDocumentNumber: string | null;
116
- SourceLocationCode: string | null;
117
- DestinationLocationCode: string | null;
118
- UserCode: string;
119
- CustomerId: string | null;
120
- SalesAssociateUserCode: string;
121
- BillingAddress: BillingAddress | null;
122
- DeliveryAddress: DeliveryAddress | null;
123
- SubTotalNet: number;
124
- SubTotalGross: number;
125
- PostageNet: number;
126
- PostageGross: number;
127
- Taxes: number;
128
- Discount: number;
129
- TotalGross: number;
130
- InternalStaffComments: string | null;
131
- FiscalInformation: FiscalInformation | null;
132
- POSReceiptId: string | null;
133
- CreateDate: number;
134
- UpdateDate: number;
135
- Status: string;
136
- Lines: Lines;
137
- Payments: Payments;
138
- ExternalPlatforms: any | null;
139
- AdditionalFields: AdditionalFields;
140
- }
141
- export interface OrderItemAdditionalData {
142
- ReasonCodeReturn: string | null;
143
- InventTransId: string | null;
144
- ReasonCodeManualPrice: string | null;
145
- ReasonCodeManualDiscount: string | null;
146
- POSStaffSalesExternalId: string | null;
147
- OrderItemMoneyRowDiscount: string | null;
148
- }
149
- export interface OrderItems {
150
- OrderItemId: number;
151
- OrderItemType: number;
152
- ProductId: number;
153
- ProductName: string;
154
- SKU: string;
155
- ProductAttributes: string;
156
- ExternalInput: string;
157
- ExternalInputTitle: string;
158
- Quantity: number;
159
- DecimalUnitQuantity: number | null;
160
- MoneyNetPricePerUnit: string;
161
- MoneyPriceOrg: string;
162
- VatValue: number;
163
- DeliveryInfo: string;
164
- MoneyItemTotalNet: string;
165
- MoneyItemTotalVat: string;
166
- VoucherId: number;
167
- VoucherCode: string;
168
- VoucherName: string;
169
- MoneyOriginalPrice: string;
170
- MoneyDiscountedPrice: string;
171
- MoneyDiscount: string;
172
- SalesTaxes: any;
173
- DecimalQuantityTotal: string;
174
- MoneyNetPricePerQuantity: string;
175
- AdditionalData: OrderItemAdditionalData;
176
- }
177
- export interface PaymentAdditionalData {
178
- GiftCardNumber: string | null;
179
- }
180
- export interface Payment {
181
- Name: string;
182
- MoneyAmount: string;
183
- ExternalId: string;
184
- AdditionalData: PaymentAdditionalData;
185
- }
186
- export interface AdditionalData {
187
- POSTimezone: string;
188
- StoreExternalId: string | null;
189
- POSStaffSalesUserId: string | null;
190
- POSStaffUserId: string | null;
191
- CrmMemberNumber: string;
192
- POSStaffExternalId: string;
193
- POSStaffSalesExternalId: string;
194
- CustomerTaxId: string | null;
195
- POSReceiptId: string | null;
196
- ATCUD: string | null;
197
- CTUInvoiceNumber: string | null;
198
- POSOriginalSalesOrderId: string | null;
199
- OmniumIdentification: string | null;
200
- FiscalInvoiceNumber: string | null;
201
- InvoiceNumberCorrected: string | null;
202
- FiscalInvoiceType: string | null;
203
- }
204
- export interface DocumentSitoo {
205
- OrderId: number;
206
- EshopId: number;
207
- ExternalId: string;
208
- CreditOrderId: number | null;
209
- CheckoutTypeId: number;
210
- DeliveryTypeId: number;
211
- Email: string | null;
212
- NameFirst: string | null;
213
- NameLast: string | null;
214
- PersonalId: string;
215
- Company: string;
216
- Phone: string | null;
217
- InvoiceAddress: string;
218
- InvoiceAddress2: string;
219
- InvoiceZip: string;
220
- InvoiceCity: string;
221
- InvoiceState: string | null;
222
- InvoiceCountryid: string;
223
- DeliveryAddress: string;
224
- DeliveryAddress2: string;
225
- DeliveryZip: string;
226
- DeliveryCity: string;
227
- DeliveryState: string;
228
- DeliveryCountryid: string;
229
- Comment: string | null;
230
- CommentInternal: string;
231
- CustomerRef: string | null;
232
- CheckoutRef: string | null;
233
- MoneyTotalNet: string | null;
234
- MoneyTotalVat: string | null;
235
- MoneyCheckoutNet: string | null;
236
- MoneyCheckoutVat: string | null;
237
- MoneyTotalGrossCheckout: string | null;
238
- MoneyDeliveryNet: string;
239
- MoneyDeliveryVat: string | null;
240
- MoneyTotalGrossDelivery: string;
241
- MoneyFinalNet: string | null;
242
- MoneyFinalVat: string | null;
243
- MoneyFinalSalestax: string | null;
244
- MoneyTotalGrossRoundoff: string | null;
245
- MoneyTotalGrossAll: string | null;
246
- CheckoutTypeName: string | null;
247
- CheckoutMethodId: number;
248
- CheckoutMethodSubId: number;
249
- DeliveryTypeName: string | null;
250
- OrderDate: number;
251
- OrderStateId: number;
252
- PaymentStateId: number;
253
- OrderTypeId: number;
254
- UserIdStaff: string | null;
255
- RegisterId: string | null;
256
- WarehouseId: number;
257
- DateReserved: string | null;
258
- CurrencyCode: string;
259
- AdditionalData: AdditionalData;
260
- OrderItems: OrderItems;
261
- Payments: Payment;
262
- }
263
- export interface Language {
264
- Content: string;
265
- Type: string;
266
- }
267
- export interface Block {
268
- PT: Language[];
269
- ES: Language[];
270
- Type: string;
271
- }
272
- export interface Section {
273
- Title: string;
274
- Description: string;
275
- Icon: string;
276
- Tags: string[];
277
- Blocks: Block[];
278
- }
279
- export interface IntegrationData {
280
- Id: string;
281
- Name: string;
282
- DateToImport: number;
283
- OrderIdFrom: string;
284
- OrderIdTo: string;
285
- Status: string;
286
- LastSuccessfullDate: string;
287
- }
288
- export interface ErrorHistoryItem {
289
- CreateDate: string;
290
- ErrorMessage: string;
291
- Flow: string;
292
- Id: string;
293
- Information: string;
294
- }