@konversi/konversi-client 1.5.0 → 1.5.2
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.d.mts +334 -170
- package/dist/index.d.ts +334 -170
- package/dist/index.js +811 -0
- package/dist/index.mjs +752 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,175 @@
|
|
|
1
1
|
import * as axios from 'axios';
|
|
2
2
|
import { AxiosRequestConfig } from 'axios';
|
|
3
3
|
|
|
4
|
+
declare const NOTIFICATION = "notification";
|
|
5
|
+
declare const USER_PERSONA = "user/user-persona";
|
|
6
|
+
declare const USER_PERSONA_CUSTOM_SCHEMA_PERMISSION = "user/user-persona-custom-schema-permission";
|
|
7
|
+
declare const USER_PERSONA_ENTITY_PERMISSION = "user/user-persona-entity-permission";
|
|
8
|
+
declare const USER_PERSONA_ENTITY_ACCESS_STATUS = "user/user-persona-entity-access-status";
|
|
9
|
+
declare const COMPANY_PERMISSION = "company-permission";
|
|
10
|
+
declare const COMPANY_OPTION = "company-option";
|
|
11
|
+
declare const INVITATION = "user/invitation";
|
|
12
|
+
declare const CUSTOMER = "contact/customer";
|
|
13
|
+
declare const PRODUCT = "product";
|
|
14
|
+
declare const PRODUCT_ITEM = "product/product-item";
|
|
15
|
+
declare const PRODUCT_GROUP = "product-group";
|
|
16
|
+
declare const PRODUCT_SUPPLIER = "product/product-supplier";
|
|
17
|
+
declare const PURCHASE_ORDER = "order/purchase-order";
|
|
18
|
+
declare const PURCHASE_ORDER_LINE = "order/purchase-order-line";
|
|
19
|
+
declare const QUOTE = "order/quote";
|
|
20
|
+
declare const QUOTE_LINE = "order/quote-line";
|
|
21
|
+
declare const SALES_ORDER = "order/sales-order";
|
|
22
|
+
declare const SALES_ORDER_LINE = "order/sales-order-line";
|
|
23
|
+
declare const RENTAL_ORDER = "order/rental-order";
|
|
24
|
+
declare const RENTAL_ORDER_LINE = "order/rental-order-line";
|
|
25
|
+
declare const SUPPLIER = "contact/supplier";
|
|
26
|
+
declare const WAREHOUSE = "warehouse";
|
|
27
|
+
declare const INCOMING_DELIVERY = "delivery/incoming-delivery";
|
|
28
|
+
declare const INCOMING_DELIVERY_LINE = "delivery/incoming-delivery-line";
|
|
29
|
+
declare const OUTGOING_DELIVERY = "delivery/outgoing-delivery";
|
|
30
|
+
declare const OUTGOING_DELIVERY_LINE = "delivery/outgoing-delivery-line";
|
|
31
|
+
declare const INTERNAL_DELIVERY = "delivery/internal-delivery";
|
|
32
|
+
declare const INTERNAL_DELIVERY_LINE = "delivery/internal-delivery-line";
|
|
33
|
+
declare const INVOICE = "invoice";
|
|
34
|
+
declare const INVOICE_LINE = "invoice/invoice-line";
|
|
35
|
+
declare const EXPENSE = "expense";
|
|
36
|
+
declare const EXPENSE_LINE = "expense/expense-line";
|
|
37
|
+
declare const PAYMENT = "accounting/payment";
|
|
38
|
+
declare const INCOMING_PAYMENT_METHOD = "accounting/incoming-payment-method";
|
|
39
|
+
declare const FIXED_ASSET = "fixed-asset";
|
|
40
|
+
declare const STORE = "store";
|
|
41
|
+
declare const STORE_PRODUCT = "store/store-product";
|
|
42
|
+
declare const STORE_PRODUCT_GROUP = "store/store-product-group";
|
|
43
|
+
declare const STORE_PRODUCT_ATTRIBUTE = "store/store-product-attribute";
|
|
44
|
+
declare const STORE_PRODUCT_ATTRIBUTE_VALUE = "store/store-product-attribute-value";
|
|
45
|
+
declare const ACCOUNT = "accounting/account";
|
|
46
|
+
declare const JOURNAL_ENTRY = "accounting/journal-entry";
|
|
47
|
+
declare const JOURNAL_ENTRY_LINE = "accounting/journal-entry-line";
|
|
48
|
+
declare const BILL_OF_MATERIALS = "manufacturing/bill-of-materials";
|
|
49
|
+
declare const BOM_COMPONENT = "manufacturing/bom-component";
|
|
50
|
+
declare const BOM_OPERATION = "manufacturing/bom-operation";
|
|
51
|
+
declare const PRODUCTION_ORDER = "manufacturing/production-order";
|
|
52
|
+
declare const PRODUCTION_ORDER_LINE = "manufacturing/production-order-line";
|
|
53
|
+
declare const JOB_CARD = "manufacturing/job-card";
|
|
54
|
+
declare const WORKSTATION = "manufacturing/workstation";
|
|
55
|
+
declare const SUBSIDIARY = "subsidiary";
|
|
56
|
+
declare const EMPLOYEE = "human-resources/employee";
|
|
57
|
+
declare const GEOFENCE = "geofence";
|
|
58
|
+
declare const SHIFT = "human-resources/employee/shift";
|
|
59
|
+
declare const ATTENDANCE = "human-resources/attendance";
|
|
60
|
+
declare const VEHICLE = "fleet/vehicle";
|
|
61
|
+
declare const DELIVERY_JOB = "fleet/delivery-job";
|
|
62
|
+
declare const CUSTOM_ENTITY_SCHEMA = "custom-entity/schema";
|
|
63
|
+
declare const CUSTOM_ENTITY_OBJECT = "custom-entity/object";
|
|
64
|
+
declare const CUSTOM_ENTITY_FIELD = "custom-entity/field";
|
|
65
|
+
declare const FORM = "form";
|
|
66
|
+
declare const CUSTOM_REPORT = "report/custom-report";
|
|
67
|
+
declare const AUTOMATION_JOB = "automation/job";
|
|
68
|
+
declare const AUTOMATION_SCRIPT = "automation/script";
|
|
69
|
+
declare const USER_ACTION = "automation/user-action";
|
|
70
|
+
declare const IOT_DEVICE = "iot/device";
|
|
71
|
+
declare const IOT_JOB = "iot/job";
|
|
72
|
+
declare const STOCK_ADJUSTMENT = "stock-adjustment";
|
|
73
|
+
declare const PURCHASE_ORDER_APPROVER = "approval/approver/purchase-order";
|
|
74
|
+
declare const SALES_ORDER_APPROVER = "approval/approver/sales-order";
|
|
75
|
+
declare const CUSTOM_DOCUMENT = "document-generator/custom-document";
|
|
76
|
+
declare const CUSTOM_FIELD = "custom-field";
|
|
77
|
+
declare const AUDIT_LOG = "audit-log";
|
|
78
|
+
declare const COMPANY_ALIAS = "company-alias";
|
|
79
|
+
declare const PRINT_JOB = "thermal-printer/print-job";
|
|
80
|
+
declare const WORK_ORDER = "order/sales-order?type=WORK_ORDER";
|
|
81
|
+
declare const SERVICE_ORDER = "order/sales-order?type=SERVICE_ORDER";
|
|
82
|
+
declare const IDENTIFIER_GROUP = "identifier/identifier-group";
|
|
83
|
+
declare const IDENTIFIER_TOKEN = "identifier/identifier-token";
|
|
84
|
+
declare const INCOMING_SHIPMENT = "shipment/incoming-shipment";
|
|
85
|
+
declare const OUTGOING_SHIPMENT = "shipment/outgoing-shipment";
|
|
86
|
+
|
|
87
|
+
declare const crudEndpoints_ACCOUNT: typeof ACCOUNT;
|
|
88
|
+
declare const crudEndpoints_ATTENDANCE: typeof ATTENDANCE;
|
|
89
|
+
declare const crudEndpoints_AUDIT_LOG: typeof AUDIT_LOG;
|
|
90
|
+
declare const crudEndpoints_AUTOMATION_JOB: typeof AUTOMATION_JOB;
|
|
91
|
+
declare const crudEndpoints_AUTOMATION_SCRIPT: typeof AUTOMATION_SCRIPT;
|
|
92
|
+
declare const crudEndpoints_BILL_OF_MATERIALS: typeof BILL_OF_MATERIALS;
|
|
93
|
+
declare const crudEndpoints_BOM_COMPONENT: typeof BOM_COMPONENT;
|
|
94
|
+
declare const crudEndpoints_BOM_OPERATION: typeof BOM_OPERATION;
|
|
95
|
+
declare const crudEndpoints_COMPANY_ALIAS: typeof COMPANY_ALIAS;
|
|
96
|
+
declare const crudEndpoints_COMPANY_OPTION: typeof COMPANY_OPTION;
|
|
97
|
+
declare const crudEndpoints_COMPANY_PERMISSION: typeof COMPANY_PERMISSION;
|
|
98
|
+
declare const crudEndpoints_CUSTOMER: typeof CUSTOMER;
|
|
99
|
+
declare const crudEndpoints_CUSTOM_DOCUMENT: typeof CUSTOM_DOCUMENT;
|
|
100
|
+
declare const crudEndpoints_CUSTOM_ENTITY_FIELD: typeof CUSTOM_ENTITY_FIELD;
|
|
101
|
+
declare const crudEndpoints_CUSTOM_ENTITY_OBJECT: typeof CUSTOM_ENTITY_OBJECT;
|
|
102
|
+
declare const crudEndpoints_CUSTOM_ENTITY_SCHEMA: typeof CUSTOM_ENTITY_SCHEMA;
|
|
103
|
+
declare const crudEndpoints_CUSTOM_FIELD: typeof CUSTOM_FIELD;
|
|
104
|
+
declare const crudEndpoints_CUSTOM_REPORT: typeof CUSTOM_REPORT;
|
|
105
|
+
declare const crudEndpoints_DELIVERY_JOB: typeof DELIVERY_JOB;
|
|
106
|
+
declare const crudEndpoints_EMPLOYEE: typeof EMPLOYEE;
|
|
107
|
+
declare const crudEndpoints_EXPENSE: typeof EXPENSE;
|
|
108
|
+
declare const crudEndpoints_EXPENSE_LINE: typeof EXPENSE_LINE;
|
|
109
|
+
declare const crudEndpoints_FIXED_ASSET: typeof FIXED_ASSET;
|
|
110
|
+
declare const crudEndpoints_FORM: typeof FORM;
|
|
111
|
+
declare const crudEndpoints_GEOFENCE: typeof GEOFENCE;
|
|
112
|
+
declare const crudEndpoints_IDENTIFIER_GROUP: typeof IDENTIFIER_GROUP;
|
|
113
|
+
declare const crudEndpoints_IDENTIFIER_TOKEN: typeof IDENTIFIER_TOKEN;
|
|
114
|
+
declare const crudEndpoints_INCOMING_DELIVERY: typeof INCOMING_DELIVERY;
|
|
115
|
+
declare const crudEndpoints_INCOMING_DELIVERY_LINE: typeof INCOMING_DELIVERY_LINE;
|
|
116
|
+
declare const crudEndpoints_INCOMING_PAYMENT_METHOD: typeof INCOMING_PAYMENT_METHOD;
|
|
117
|
+
declare const crudEndpoints_INCOMING_SHIPMENT: typeof INCOMING_SHIPMENT;
|
|
118
|
+
declare const crudEndpoints_INTERNAL_DELIVERY: typeof INTERNAL_DELIVERY;
|
|
119
|
+
declare const crudEndpoints_INTERNAL_DELIVERY_LINE: typeof INTERNAL_DELIVERY_LINE;
|
|
120
|
+
declare const crudEndpoints_INVITATION: typeof INVITATION;
|
|
121
|
+
declare const crudEndpoints_INVOICE: typeof INVOICE;
|
|
122
|
+
declare const crudEndpoints_INVOICE_LINE: typeof INVOICE_LINE;
|
|
123
|
+
declare const crudEndpoints_IOT_DEVICE: typeof IOT_DEVICE;
|
|
124
|
+
declare const crudEndpoints_IOT_JOB: typeof IOT_JOB;
|
|
125
|
+
declare const crudEndpoints_JOB_CARD: typeof JOB_CARD;
|
|
126
|
+
declare const crudEndpoints_JOURNAL_ENTRY: typeof JOURNAL_ENTRY;
|
|
127
|
+
declare const crudEndpoints_JOURNAL_ENTRY_LINE: typeof JOURNAL_ENTRY_LINE;
|
|
128
|
+
declare const crudEndpoints_NOTIFICATION: typeof NOTIFICATION;
|
|
129
|
+
declare const crudEndpoints_OUTGOING_DELIVERY: typeof OUTGOING_DELIVERY;
|
|
130
|
+
declare const crudEndpoints_OUTGOING_DELIVERY_LINE: typeof OUTGOING_DELIVERY_LINE;
|
|
131
|
+
declare const crudEndpoints_OUTGOING_SHIPMENT: typeof OUTGOING_SHIPMENT;
|
|
132
|
+
declare const crudEndpoints_PAYMENT: typeof PAYMENT;
|
|
133
|
+
declare const crudEndpoints_PRINT_JOB: typeof PRINT_JOB;
|
|
134
|
+
declare const crudEndpoints_PRODUCT: typeof PRODUCT;
|
|
135
|
+
declare const crudEndpoints_PRODUCTION_ORDER: typeof PRODUCTION_ORDER;
|
|
136
|
+
declare const crudEndpoints_PRODUCTION_ORDER_LINE: typeof PRODUCTION_ORDER_LINE;
|
|
137
|
+
declare const crudEndpoints_PRODUCT_GROUP: typeof PRODUCT_GROUP;
|
|
138
|
+
declare const crudEndpoints_PRODUCT_ITEM: typeof PRODUCT_ITEM;
|
|
139
|
+
declare const crudEndpoints_PRODUCT_SUPPLIER: typeof PRODUCT_SUPPLIER;
|
|
140
|
+
declare const crudEndpoints_PURCHASE_ORDER: typeof PURCHASE_ORDER;
|
|
141
|
+
declare const crudEndpoints_PURCHASE_ORDER_APPROVER: typeof PURCHASE_ORDER_APPROVER;
|
|
142
|
+
declare const crudEndpoints_PURCHASE_ORDER_LINE: typeof PURCHASE_ORDER_LINE;
|
|
143
|
+
declare const crudEndpoints_QUOTE: typeof QUOTE;
|
|
144
|
+
declare const crudEndpoints_QUOTE_LINE: typeof QUOTE_LINE;
|
|
145
|
+
declare const crudEndpoints_RENTAL_ORDER: typeof RENTAL_ORDER;
|
|
146
|
+
declare const crudEndpoints_RENTAL_ORDER_LINE: typeof RENTAL_ORDER_LINE;
|
|
147
|
+
declare const crudEndpoints_SALES_ORDER: typeof SALES_ORDER;
|
|
148
|
+
declare const crudEndpoints_SALES_ORDER_APPROVER: typeof SALES_ORDER_APPROVER;
|
|
149
|
+
declare const crudEndpoints_SALES_ORDER_LINE: typeof SALES_ORDER_LINE;
|
|
150
|
+
declare const crudEndpoints_SERVICE_ORDER: typeof SERVICE_ORDER;
|
|
151
|
+
declare const crudEndpoints_SHIFT: typeof SHIFT;
|
|
152
|
+
declare const crudEndpoints_STOCK_ADJUSTMENT: typeof STOCK_ADJUSTMENT;
|
|
153
|
+
declare const crudEndpoints_STORE: typeof STORE;
|
|
154
|
+
declare const crudEndpoints_STORE_PRODUCT: typeof STORE_PRODUCT;
|
|
155
|
+
declare const crudEndpoints_STORE_PRODUCT_ATTRIBUTE: typeof STORE_PRODUCT_ATTRIBUTE;
|
|
156
|
+
declare const crudEndpoints_STORE_PRODUCT_ATTRIBUTE_VALUE: typeof STORE_PRODUCT_ATTRIBUTE_VALUE;
|
|
157
|
+
declare const crudEndpoints_STORE_PRODUCT_GROUP: typeof STORE_PRODUCT_GROUP;
|
|
158
|
+
declare const crudEndpoints_SUBSIDIARY: typeof SUBSIDIARY;
|
|
159
|
+
declare const crudEndpoints_SUPPLIER: typeof SUPPLIER;
|
|
160
|
+
declare const crudEndpoints_USER_ACTION: typeof USER_ACTION;
|
|
161
|
+
declare const crudEndpoints_USER_PERSONA: typeof USER_PERSONA;
|
|
162
|
+
declare const crudEndpoints_USER_PERSONA_CUSTOM_SCHEMA_PERMISSION: typeof USER_PERSONA_CUSTOM_SCHEMA_PERMISSION;
|
|
163
|
+
declare const crudEndpoints_USER_PERSONA_ENTITY_ACCESS_STATUS: typeof USER_PERSONA_ENTITY_ACCESS_STATUS;
|
|
164
|
+
declare const crudEndpoints_USER_PERSONA_ENTITY_PERMISSION: typeof USER_PERSONA_ENTITY_PERMISSION;
|
|
165
|
+
declare const crudEndpoints_VEHICLE: typeof VEHICLE;
|
|
166
|
+
declare const crudEndpoints_WAREHOUSE: typeof WAREHOUSE;
|
|
167
|
+
declare const crudEndpoints_WORKSTATION: typeof WORKSTATION;
|
|
168
|
+
declare const crudEndpoints_WORK_ORDER: typeof WORK_ORDER;
|
|
169
|
+
declare namespace crudEndpoints {
|
|
170
|
+
export { crudEndpoints_ACCOUNT as ACCOUNT, crudEndpoints_ATTENDANCE as ATTENDANCE, crudEndpoints_AUDIT_LOG as AUDIT_LOG, crudEndpoints_AUTOMATION_JOB as AUTOMATION_JOB, crudEndpoints_AUTOMATION_SCRIPT as AUTOMATION_SCRIPT, crudEndpoints_BILL_OF_MATERIALS as BILL_OF_MATERIALS, crudEndpoints_BOM_COMPONENT as BOM_COMPONENT, crudEndpoints_BOM_OPERATION as BOM_OPERATION, crudEndpoints_COMPANY_ALIAS as COMPANY_ALIAS, crudEndpoints_COMPANY_OPTION as COMPANY_OPTION, crudEndpoints_COMPANY_PERMISSION as COMPANY_PERMISSION, crudEndpoints_CUSTOMER as CUSTOMER, crudEndpoints_CUSTOM_DOCUMENT as CUSTOM_DOCUMENT, crudEndpoints_CUSTOM_ENTITY_FIELD as CUSTOM_ENTITY_FIELD, crudEndpoints_CUSTOM_ENTITY_OBJECT as CUSTOM_ENTITY_OBJECT, crudEndpoints_CUSTOM_ENTITY_SCHEMA as CUSTOM_ENTITY_SCHEMA, crudEndpoints_CUSTOM_FIELD as CUSTOM_FIELD, crudEndpoints_CUSTOM_REPORT as CUSTOM_REPORT, crudEndpoints_DELIVERY_JOB as DELIVERY_JOB, crudEndpoints_EMPLOYEE as EMPLOYEE, crudEndpoints_EXPENSE as EXPENSE, crudEndpoints_EXPENSE_LINE as EXPENSE_LINE, crudEndpoints_FIXED_ASSET as FIXED_ASSET, crudEndpoints_FORM as FORM, crudEndpoints_GEOFENCE as GEOFENCE, crudEndpoints_IDENTIFIER_GROUP as IDENTIFIER_GROUP, crudEndpoints_IDENTIFIER_TOKEN as IDENTIFIER_TOKEN, crudEndpoints_INCOMING_DELIVERY as INCOMING_DELIVERY, crudEndpoints_INCOMING_DELIVERY_LINE as INCOMING_DELIVERY_LINE, crudEndpoints_INCOMING_PAYMENT_METHOD as INCOMING_PAYMENT_METHOD, crudEndpoints_INCOMING_SHIPMENT as INCOMING_SHIPMENT, crudEndpoints_INTERNAL_DELIVERY as INTERNAL_DELIVERY, crudEndpoints_INTERNAL_DELIVERY_LINE as INTERNAL_DELIVERY_LINE, crudEndpoints_INVITATION as INVITATION, crudEndpoints_INVOICE as INVOICE, crudEndpoints_INVOICE_LINE as INVOICE_LINE, crudEndpoints_IOT_DEVICE as IOT_DEVICE, crudEndpoints_IOT_JOB as IOT_JOB, crudEndpoints_JOB_CARD as JOB_CARD, crudEndpoints_JOURNAL_ENTRY as JOURNAL_ENTRY, crudEndpoints_JOURNAL_ENTRY_LINE as JOURNAL_ENTRY_LINE, crudEndpoints_NOTIFICATION as NOTIFICATION, crudEndpoints_OUTGOING_DELIVERY as OUTGOING_DELIVERY, crudEndpoints_OUTGOING_DELIVERY_LINE as OUTGOING_DELIVERY_LINE, crudEndpoints_OUTGOING_SHIPMENT as OUTGOING_SHIPMENT, crudEndpoints_PAYMENT as PAYMENT, crudEndpoints_PRINT_JOB as PRINT_JOB, crudEndpoints_PRODUCT as PRODUCT, crudEndpoints_PRODUCTION_ORDER as PRODUCTION_ORDER, crudEndpoints_PRODUCTION_ORDER_LINE as PRODUCTION_ORDER_LINE, crudEndpoints_PRODUCT_GROUP as PRODUCT_GROUP, crudEndpoints_PRODUCT_ITEM as PRODUCT_ITEM, crudEndpoints_PRODUCT_SUPPLIER as PRODUCT_SUPPLIER, crudEndpoints_PURCHASE_ORDER as PURCHASE_ORDER, crudEndpoints_PURCHASE_ORDER_APPROVER as PURCHASE_ORDER_APPROVER, crudEndpoints_PURCHASE_ORDER_LINE as PURCHASE_ORDER_LINE, crudEndpoints_QUOTE as QUOTE, crudEndpoints_QUOTE_LINE as QUOTE_LINE, crudEndpoints_RENTAL_ORDER as RENTAL_ORDER, crudEndpoints_RENTAL_ORDER_LINE as RENTAL_ORDER_LINE, crudEndpoints_SALES_ORDER as SALES_ORDER, crudEndpoints_SALES_ORDER_APPROVER as SALES_ORDER_APPROVER, crudEndpoints_SALES_ORDER_LINE as SALES_ORDER_LINE, crudEndpoints_SERVICE_ORDER as SERVICE_ORDER, crudEndpoints_SHIFT as SHIFT, crudEndpoints_STOCK_ADJUSTMENT as STOCK_ADJUSTMENT, crudEndpoints_STORE as STORE, crudEndpoints_STORE_PRODUCT as STORE_PRODUCT, crudEndpoints_STORE_PRODUCT_ATTRIBUTE as STORE_PRODUCT_ATTRIBUTE, crudEndpoints_STORE_PRODUCT_ATTRIBUTE_VALUE as STORE_PRODUCT_ATTRIBUTE_VALUE, crudEndpoints_STORE_PRODUCT_GROUP as STORE_PRODUCT_GROUP, crudEndpoints_SUBSIDIARY as SUBSIDIARY, crudEndpoints_SUPPLIER as SUPPLIER, crudEndpoints_USER_ACTION as USER_ACTION, crudEndpoints_USER_PERSONA as USER_PERSONA, crudEndpoints_USER_PERSONA_CUSTOM_SCHEMA_PERMISSION as USER_PERSONA_CUSTOM_SCHEMA_PERMISSION, crudEndpoints_USER_PERSONA_ENTITY_ACCESS_STATUS as USER_PERSONA_ENTITY_ACCESS_STATUS, crudEndpoints_USER_PERSONA_ENTITY_PERMISSION as USER_PERSONA_ENTITY_PERMISSION, crudEndpoints_VEHICLE as VEHICLE, crudEndpoints_WAREHOUSE as WAREHOUSE, crudEndpoints_WORKSTATION as WORKSTATION, crudEndpoints_WORK_ORDER as WORK_ORDER };
|
|
171
|
+
}
|
|
172
|
+
|
|
4
173
|
interface Contact {
|
|
5
174
|
id: string;
|
|
6
175
|
firstName: string;
|
|
@@ -29,6 +198,10 @@ interface Contact {
|
|
|
29
198
|
isDeleted: boolean;
|
|
30
199
|
}
|
|
31
200
|
|
|
201
|
+
declare enum InventoryCostFlow {
|
|
202
|
+
AVCO = "AVCO",
|
|
203
|
+
FIFO = "FIFO"
|
|
204
|
+
}
|
|
32
205
|
declare enum Currency {
|
|
33
206
|
IDR = "IDR",
|
|
34
207
|
USD = "USD",
|
|
@@ -199,6 +372,11 @@ interface RentalOrderLine extends OrderLine {
|
|
|
199
372
|
product: Product;
|
|
200
373
|
}
|
|
201
374
|
|
|
375
|
+
declare enum DeliveryType {
|
|
376
|
+
INCOMING = "incoming",
|
|
377
|
+
OUTGOING = "outgoing",
|
|
378
|
+
INTERNAL = "internal"
|
|
379
|
+
}
|
|
202
380
|
declare enum DeliveryStatus {
|
|
203
381
|
PENDING = "PENDING",
|
|
204
382
|
IN_PROGRESS = "IN_PROGRESS",
|
|
@@ -1008,6 +1186,12 @@ interface AutomationJob {
|
|
|
1008
1186
|
automationScript: AutomationScript;
|
|
1009
1187
|
}
|
|
1010
1188
|
|
|
1189
|
+
declare enum EntityEvent {
|
|
1190
|
+
CREATE = "CREATE",
|
|
1191
|
+
BEFORE_UPDATE = "BEFORE_UPDATE",
|
|
1192
|
+
AFTER_UPDATE = "AFTER_UPDATE",
|
|
1193
|
+
DELETE = "DELETE"
|
|
1194
|
+
}
|
|
1011
1195
|
declare enum AutomationScriptTrigger {
|
|
1012
1196
|
QUOTE = "QUOTE",
|
|
1013
1197
|
PURCHASE_ORDER = "PURCHASE_ORDER",
|
|
@@ -1050,6 +1234,10 @@ interface CustomReport {
|
|
|
1050
1234
|
form: Form;
|
|
1051
1235
|
}
|
|
1052
1236
|
|
|
1237
|
+
declare enum FormLocation {
|
|
1238
|
+
CUSTOM_ENTITY = "CUSTOM_ENTITY",
|
|
1239
|
+
CHECKOUT = "CHECKOUT"
|
|
1240
|
+
}
|
|
1053
1241
|
interface Form {
|
|
1054
1242
|
id: string;
|
|
1055
1243
|
name: string;
|
|
@@ -1918,6 +2106,20 @@ interface CustomerEvent {
|
|
|
1918
2106
|
|
|
1919
2107
|
declare enum CustomerSourceChannel {
|
|
1920
2108
|
}
|
|
2109
|
+
declare enum LifecycleStage {
|
|
2110
|
+
LEAD = "LEAD",
|
|
2111
|
+
OPPORTUNITY = "OPPORTUNITY",
|
|
2112
|
+
CUSTOMER = "CUSTOMER",
|
|
2113
|
+
WHATSAPP = "WhatsApp",
|
|
2114
|
+
TOKO = "Toko",
|
|
2115
|
+
MODERN_TRADE = "Modern Trade",
|
|
2116
|
+
END_USER_MARKETPLACE = "End User Marketplace",
|
|
2117
|
+
END_USER_OFFLINE = "End User Offline",
|
|
2118
|
+
RESELLER = "Reseller",
|
|
2119
|
+
CUSTOM = "Customize",
|
|
2120
|
+
INSTAGRAM = "Instagram",
|
|
2121
|
+
WEBSITE = "Website"
|
|
2122
|
+
}
|
|
1921
2123
|
interface Customer extends Contact {
|
|
1922
2124
|
lifecycleStage?: string;
|
|
1923
2125
|
quotes: Quote[];
|
|
@@ -1955,6 +2157,35 @@ interface Activity {
|
|
|
1955
2157
|
createdAt: string | Date;
|
|
1956
2158
|
}
|
|
1957
2159
|
|
|
2160
|
+
interface Deal {
|
|
2161
|
+
id: string;
|
|
2162
|
+
}
|
|
2163
|
+
|
|
2164
|
+
declare enum CompanyVariableName {
|
|
2165
|
+
MATRIX_BEARER_TOKEN = "MATRIX_BEARER_TOKEN",
|
|
2166
|
+
MATRIX_WHATSAPP_BOT_ROOM_ID = "MATRIX_WHATSAPP_BOT_ROOM_ID",
|
|
2167
|
+
MATRIX_USERNAME = "MATRIX_USERNAME",
|
|
2168
|
+
MATRIX_PASSWORD = "MATRIX_PASSWORD",
|
|
2169
|
+
MATRIX_NEXT_BATCH = "MATRIX_NEXT_BATCH",
|
|
2170
|
+
ACCESS_CONTROL_POLICY_CSV = "ACCESS_CONTROL_POLICY_CSV"
|
|
2171
|
+
}
|
|
2172
|
+
interface CompanyVariable {
|
|
2173
|
+
id: string;
|
|
2174
|
+
name: CompanyVariableName;
|
|
2175
|
+
value: string;
|
|
2176
|
+
isSecret: boolean;
|
|
2177
|
+
createdAt: string | Date;
|
|
2178
|
+
updatedAt: string | Date;
|
|
2179
|
+
}
|
|
2180
|
+
|
|
2181
|
+
declare enum CompanyFeatureName {
|
|
2182
|
+
DATE_LOCALIZATION = "DATE_LOCALIZATION"
|
|
2183
|
+
}
|
|
2184
|
+
interface CompanyFeature {
|
|
2185
|
+
id: string;
|
|
2186
|
+
name: CompanyFeatureName;
|
|
2187
|
+
}
|
|
2188
|
+
|
|
1958
2189
|
declare enum CompanyOptionName {
|
|
1959
2190
|
AUTOCREATE_PRODUCTION_ORDER = "AUTOCREATE_PRODUCTION_ORDER",
|
|
1960
2191
|
AUTOUPDATE_INVOICE = "AUTOUPDATE_INVOICE",
|
|
@@ -2088,12 +2319,86 @@ interface CustomDocument {
|
|
|
2088
2319
|
hidePriceFields: boolean;
|
|
2089
2320
|
}
|
|
2090
2321
|
|
|
2322
|
+
interface EntityFieldPermission {
|
|
2323
|
+
id: string;
|
|
2324
|
+
read: boolean;
|
|
2325
|
+
update: boolean;
|
|
2326
|
+
}
|
|
2327
|
+
|
|
2328
|
+
interface EntityPermission {
|
|
2329
|
+
id: string;
|
|
2330
|
+
read: boolean;
|
|
2331
|
+
create: boolean;
|
|
2332
|
+
update: boolean;
|
|
2333
|
+
delete: boolean;
|
|
2334
|
+
}
|
|
2335
|
+
|
|
2336
|
+
interface ExchangeRate {
|
|
2337
|
+
id: string;
|
|
2338
|
+
date: string;
|
|
2339
|
+
base: Currency;
|
|
2340
|
+
target: Currency;
|
|
2341
|
+
rate: number;
|
|
2342
|
+
}
|
|
2343
|
+
|
|
2091
2344
|
interface Invitation {
|
|
2092
2345
|
id: string;
|
|
2093
2346
|
email: string;
|
|
2094
2347
|
createdAt: string | Date;
|
|
2095
2348
|
}
|
|
2096
2349
|
|
|
2350
|
+
interface View {
|
|
2351
|
+
id: string;
|
|
2352
|
+
entityType: EntityType;
|
|
2353
|
+
}
|
|
2354
|
+
|
|
2355
|
+
interface ChatSession {
|
|
2356
|
+
id: string;
|
|
2357
|
+
title?: string;
|
|
2358
|
+
chatMessages: ChatMessage[];
|
|
2359
|
+
createdAt: string | Date;
|
|
2360
|
+
}
|
|
2361
|
+
|
|
2362
|
+
declare enum ChatMessageRole {
|
|
2363
|
+
USER = "user",
|
|
2364
|
+
AI = "ai"
|
|
2365
|
+
}
|
|
2366
|
+
interface ChatMessage {
|
|
2367
|
+
id: string;
|
|
2368
|
+
role: ChatMessageRole;
|
|
2369
|
+
files: string[];
|
|
2370
|
+
content: string;
|
|
2371
|
+
metadata: any;
|
|
2372
|
+
chatSession: ChatSession;
|
|
2373
|
+
createdAt: string | Date;
|
|
2374
|
+
}
|
|
2375
|
+
|
|
2376
|
+
interface BusinessIntelligenceDashboard {
|
|
2377
|
+
}
|
|
2378
|
+
|
|
2379
|
+
declare enum RuleEventType {
|
|
2380
|
+
AI_NOTIFICATION = "AI_NOTIFICATION",
|
|
2381
|
+
BULK = "BULK"
|
|
2382
|
+
}
|
|
2383
|
+
interface Rule {
|
|
2384
|
+
id: string;
|
|
2385
|
+
name: string;
|
|
2386
|
+
description: string;
|
|
2387
|
+
trigger?: AutomationScriptTrigger;
|
|
2388
|
+
businessIntelligenceReport: BusinessIntelligenceReport;
|
|
2389
|
+
precomputedFacts: any;
|
|
2390
|
+
data?: any;
|
|
2391
|
+
isActive: boolean;
|
|
2392
|
+
}
|
|
2393
|
+
|
|
2394
|
+
interface BusinessIntelligenceReport {
|
|
2395
|
+
id: string;
|
|
2396
|
+
name: string;
|
|
2397
|
+
config?: any;
|
|
2398
|
+
sql?: string;
|
|
2399
|
+
rules: Rule[];
|
|
2400
|
+
}
|
|
2401
|
+
|
|
2097
2402
|
declare enum FieldName {
|
|
2098
2403
|
serialNumber = "serialNumber"
|
|
2099
2404
|
}
|
|
@@ -2104,179 +2409,38 @@ interface CompanyAlias {
|
|
|
2104
2409
|
label: string;
|
|
2105
2410
|
}
|
|
2106
2411
|
|
|
2107
|
-
interface
|
|
2412
|
+
interface WhatsappAccount {
|
|
2108
2413
|
id: string;
|
|
2109
|
-
|
|
2110
|
-
|
|
2414
|
+
name: string;
|
|
2415
|
+
qrCode?: string;
|
|
2416
|
+
isConnected: boolean;
|
|
2417
|
+
createdAt: string | Date;
|
|
2418
|
+
updatedAt: string | Date;
|
|
2111
2419
|
}
|
|
2112
2420
|
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
declare const USER_PERSONA_ENTITY_PERMISSION = "user/user-persona-entity-permission";
|
|
2117
|
-
declare const USER_PERSONA_ENTITY_ACCESS_STATUS = "user/user-persona-entity-access-status";
|
|
2118
|
-
declare const COMPANY_PERMISSION = "company-permission";
|
|
2119
|
-
declare const COMPANY_OPTION = "company-option";
|
|
2120
|
-
declare const INVITATION = "user/invitation";
|
|
2121
|
-
declare const CUSTOMER = "contact/customer";
|
|
2122
|
-
declare const PRODUCT = "product";
|
|
2123
|
-
declare const PRODUCT_ITEM = "product/product-item";
|
|
2124
|
-
declare const PRODUCT_GROUP = "product-group";
|
|
2125
|
-
declare const PRODUCT_SUPPLIER = "product/product-supplier";
|
|
2126
|
-
declare const PURCHASE_ORDER = "order/purchase-order";
|
|
2127
|
-
declare const PURCHASE_ORDER_LINE = "order/purchase-order-line";
|
|
2128
|
-
declare const QUOTE = "order/quote";
|
|
2129
|
-
declare const QUOTE_LINE = "order/quote-line";
|
|
2130
|
-
declare const SALES_ORDER = "order/sales-order";
|
|
2131
|
-
declare const SALES_ORDER_LINE = "order/sales-order-line";
|
|
2132
|
-
declare const RENTAL_ORDER = "order/rental-order";
|
|
2133
|
-
declare const RENTAL_ORDER_LINE = "order/rental-order-line";
|
|
2134
|
-
declare const SUPPLIER = "contact/supplier";
|
|
2135
|
-
declare const WAREHOUSE = "warehouse";
|
|
2136
|
-
declare const INCOMING_DELIVERY = "delivery/incoming-delivery";
|
|
2137
|
-
declare const INCOMING_DELIVERY_LINE = "delivery/incoming-delivery-line";
|
|
2138
|
-
declare const OUTGOING_DELIVERY = "delivery/outgoing-delivery";
|
|
2139
|
-
declare const OUTGOING_DELIVERY_LINE = "delivery/outgoing-delivery-line";
|
|
2140
|
-
declare const INTERNAL_DELIVERY = "delivery/internal-delivery";
|
|
2141
|
-
declare const INTERNAL_DELIVERY_LINE = "delivery/internal-delivery-line";
|
|
2142
|
-
declare const INVOICE = "invoice";
|
|
2143
|
-
declare const INVOICE_LINE = "invoice/invoice-line";
|
|
2144
|
-
declare const EXPENSE = "expense";
|
|
2145
|
-
declare const EXPENSE_LINE = "expense/expense-line";
|
|
2146
|
-
declare const PAYMENT = "accounting/payment";
|
|
2147
|
-
declare const INCOMING_PAYMENT_METHOD = "accounting/incoming-payment-method";
|
|
2148
|
-
declare const FIXED_ASSET = "fixed-asset";
|
|
2149
|
-
declare const STORE = "store";
|
|
2150
|
-
declare const STORE_PRODUCT = "store/store-product";
|
|
2151
|
-
declare const STORE_PRODUCT_GROUP = "store/store-product-group";
|
|
2152
|
-
declare const STORE_PRODUCT_ATTRIBUTE = "store/store-product-attribute";
|
|
2153
|
-
declare const STORE_PRODUCT_ATTRIBUTE_VALUE = "store/store-product-attribute-value";
|
|
2154
|
-
declare const ACCOUNT = "accounting/account";
|
|
2155
|
-
declare const JOURNAL_ENTRY = "accounting/journal-entry";
|
|
2156
|
-
declare const JOURNAL_ENTRY_LINE = "accounting/journal-entry-line";
|
|
2157
|
-
declare const BILL_OF_MATERIALS = "manufacturing/bill-of-materials";
|
|
2158
|
-
declare const BOM_COMPONENT = "manufacturing/bom-component";
|
|
2159
|
-
declare const BOM_OPERATION = "manufacturing/bom-operation";
|
|
2160
|
-
declare const PRODUCTION_ORDER = "manufacturing/production-order";
|
|
2161
|
-
declare const PRODUCTION_ORDER_LINE = "manufacturing/production-order-line";
|
|
2162
|
-
declare const JOB_CARD = "manufacturing/job-card";
|
|
2163
|
-
declare const WORKSTATION = "manufacturing/workstation";
|
|
2164
|
-
declare const SUBSIDIARY = "subsidiary";
|
|
2165
|
-
declare const EMPLOYEE = "human-resources/employee";
|
|
2166
|
-
declare const GEOFENCE = "geofence";
|
|
2167
|
-
declare const SHIFT = "human-resources/employee/shift";
|
|
2168
|
-
declare const ATTENDANCE = "human-resources/attendance";
|
|
2169
|
-
declare const VEHICLE = "fleet/vehicle";
|
|
2170
|
-
declare const DELIVERY_JOB = "fleet/delivery-job";
|
|
2171
|
-
declare const CUSTOM_ENTITY_SCHEMA = "custom-entity/schema";
|
|
2172
|
-
declare const CUSTOM_ENTITY_OBJECT = "custom-entity/object";
|
|
2173
|
-
declare const CUSTOM_ENTITY_FIELD = "custom-entity/field";
|
|
2174
|
-
declare const FORM = "form";
|
|
2175
|
-
declare const CUSTOM_REPORT = "report/custom-report";
|
|
2176
|
-
declare const AUTOMATION_JOB = "automation/job";
|
|
2177
|
-
declare const AUTOMATION_SCRIPT = "automation/script";
|
|
2178
|
-
declare const USER_ACTION = "automation/user-action";
|
|
2179
|
-
declare const IOT_DEVICE = "iot/device";
|
|
2180
|
-
declare const IOT_JOB = "iot/job";
|
|
2181
|
-
declare const STOCK_ADJUSTMENT = "stock-adjustment";
|
|
2182
|
-
declare const PURCHASE_ORDER_APPROVER = "approval/approver/purchase-order";
|
|
2183
|
-
declare const SALES_ORDER_APPROVER = "approval/approver/sales-order";
|
|
2184
|
-
declare const CUSTOM_DOCUMENT = "document-generator/custom-document";
|
|
2185
|
-
declare const CUSTOM_FIELD = "custom-field";
|
|
2186
|
-
declare const AUDIT_LOG = "audit-log";
|
|
2187
|
-
declare const COMPANY_ALIAS = "company-alias";
|
|
2188
|
-
declare const PRINT_JOB = "thermal-printer/print-job";
|
|
2189
|
-
declare const WORK_ORDER = "order/sales-order?type=WORK_ORDER";
|
|
2190
|
-
declare const SERVICE_ORDER = "order/sales-order?type=SERVICE_ORDER";
|
|
2191
|
-
declare const IDENTIFIER_GROUP = "identifier/identifier-group";
|
|
2192
|
-
declare const IDENTIFIER_TOKEN = "identifier/identifier-token";
|
|
2193
|
-
declare const INCOMING_SHIPMENT = "shipment/incoming-shipment";
|
|
2194
|
-
declare const OUTGOING_SHIPMENT = "shipment/outgoing-shipment";
|
|
2421
|
+
interface ReturnInvoice {
|
|
2422
|
+
id: string;
|
|
2423
|
+
}
|
|
2195
2424
|
|
|
2196
|
-
|
|
2197
|
-
|
|
2198
|
-
|
|
2199
|
-
|
|
2200
|
-
declare
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
|
|
2204
|
-
|
|
2205
|
-
|
|
2206
|
-
|
|
2207
|
-
|
|
2208
|
-
|
|
2209
|
-
|
|
2210
|
-
|
|
2211
|
-
|
|
2212
|
-
|
|
2213
|
-
|
|
2214
|
-
|
|
2215
|
-
declare const crudEndpoints_EMPLOYEE: typeof EMPLOYEE;
|
|
2216
|
-
declare const crudEndpoints_EXPENSE: typeof EXPENSE;
|
|
2217
|
-
declare const crudEndpoints_EXPENSE_LINE: typeof EXPENSE_LINE;
|
|
2218
|
-
declare const crudEndpoints_FIXED_ASSET: typeof FIXED_ASSET;
|
|
2219
|
-
declare const crudEndpoints_FORM: typeof FORM;
|
|
2220
|
-
declare const crudEndpoints_GEOFENCE: typeof GEOFENCE;
|
|
2221
|
-
declare const crudEndpoints_IDENTIFIER_GROUP: typeof IDENTIFIER_GROUP;
|
|
2222
|
-
declare const crudEndpoints_IDENTIFIER_TOKEN: typeof IDENTIFIER_TOKEN;
|
|
2223
|
-
declare const crudEndpoints_INCOMING_DELIVERY: typeof INCOMING_DELIVERY;
|
|
2224
|
-
declare const crudEndpoints_INCOMING_DELIVERY_LINE: typeof INCOMING_DELIVERY_LINE;
|
|
2225
|
-
declare const crudEndpoints_INCOMING_PAYMENT_METHOD: typeof INCOMING_PAYMENT_METHOD;
|
|
2226
|
-
declare const crudEndpoints_INCOMING_SHIPMENT: typeof INCOMING_SHIPMENT;
|
|
2227
|
-
declare const crudEndpoints_INTERNAL_DELIVERY: typeof INTERNAL_DELIVERY;
|
|
2228
|
-
declare const crudEndpoints_INTERNAL_DELIVERY_LINE: typeof INTERNAL_DELIVERY_LINE;
|
|
2229
|
-
declare const crudEndpoints_INVITATION: typeof INVITATION;
|
|
2230
|
-
declare const crudEndpoints_INVOICE: typeof INVOICE;
|
|
2231
|
-
declare const crudEndpoints_INVOICE_LINE: typeof INVOICE_LINE;
|
|
2232
|
-
declare const crudEndpoints_IOT_DEVICE: typeof IOT_DEVICE;
|
|
2233
|
-
declare const crudEndpoints_IOT_JOB: typeof IOT_JOB;
|
|
2234
|
-
declare const crudEndpoints_JOB_CARD: typeof JOB_CARD;
|
|
2235
|
-
declare const crudEndpoints_JOURNAL_ENTRY: typeof JOURNAL_ENTRY;
|
|
2236
|
-
declare const crudEndpoints_JOURNAL_ENTRY_LINE: typeof JOURNAL_ENTRY_LINE;
|
|
2237
|
-
declare const crudEndpoints_NOTIFICATION: typeof NOTIFICATION;
|
|
2238
|
-
declare const crudEndpoints_OUTGOING_DELIVERY: typeof OUTGOING_DELIVERY;
|
|
2239
|
-
declare const crudEndpoints_OUTGOING_DELIVERY_LINE: typeof OUTGOING_DELIVERY_LINE;
|
|
2240
|
-
declare const crudEndpoints_OUTGOING_SHIPMENT: typeof OUTGOING_SHIPMENT;
|
|
2241
|
-
declare const crudEndpoints_PAYMENT: typeof PAYMENT;
|
|
2242
|
-
declare const crudEndpoints_PRINT_JOB: typeof PRINT_JOB;
|
|
2243
|
-
declare const crudEndpoints_PRODUCT: typeof PRODUCT;
|
|
2244
|
-
declare const crudEndpoints_PRODUCTION_ORDER: typeof PRODUCTION_ORDER;
|
|
2245
|
-
declare const crudEndpoints_PRODUCTION_ORDER_LINE: typeof PRODUCTION_ORDER_LINE;
|
|
2246
|
-
declare const crudEndpoints_PRODUCT_GROUP: typeof PRODUCT_GROUP;
|
|
2247
|
-
declare const crudEndpoints_PRODUCT_ITEM: typeof PRODUCT_ITEM;
|
|
2248
|
-
declare const crudEndpoints_PRODUCT_SUPPLIER: typeof PRODUCT_SUPPLIER;
|
|
2249
|
-
declare const crudEndpoints_PURCHASE_ORDER: typeof PURCHASE_ORDER;
|
|
2250
|
-
declare const crudEndpoints_PURCHASE_ORDER_APPROVER: typeof PURCHASE_ORDER_APPROVER;
|
|
2251
|
-
declare const crudEndpoints_PURCHASE_ORDER_LINE: typeof PURCHASE_ORDER_LINE;
|
|
2252
|
-
declare const crudEndpoints_QUOTE: typeof QUOTE;
|
|
2253
|
-
declare const crudEndpoints_QUOTE_LINE: typeof QUOTE_LINE;
|
|
2254
|
-
declare const crudEndpoints_RENTAL_ORDER: typeof RENTAL_ORDER;
|
|
2255
|
-
declare const crudEndpoints_RENTAL_ORDER_LINE: typeof RENTAL_ORDER_LINE;
|
|
2256
|
-
declare const crudEndpoints_SALES_ORDER: typeof SALES_ORDER;
|
|
2257
|
-
declare const crudEndpoints_SALES_ORDER_APPROVER: typeof SALES_ORDER_APPROVER;
|
|
2258
|
-
declare const crudEndpoints_SALES_ORDER_LINE: typeof SALES_ORDER_LINE;
|
|
2259
|
-
declare const crudEndpoints_SERVICE_ORDER: typeof SERVICE_ORDER;
|
|
2260
|
-
declare const crudEndpoints_SHIFT: typeof SHIFT;
|
|
2261
|
-
declare const crudEndpoints_STOCK_ADJUSTMENT: typeof STOCK_ADJUSTMENT;
|
|
2262
|
-
declare const crudEndpoints_STORE: typeof STORE;
|
|
2263
|
-
declare const crudEndpoints_STORE_PRODUCT: typeof STORE_PRODUCT;
|
|
2264
|
-
declare const crudEndpoints_STORE_PRODUCT_ATTRIBUTE: typeof STORE_PRODUCT_ATTRIBUTE;
|
|
2265
|
-
declare const crudEndpoints_STORE_PRODUCT_ATTRIBUTE_VALUE: typeof STORE_PRODUCT_ATTRIBUTE_VALUE;
|
|
2266
|
-
declare const crudEndpoints_STORE_PRODUCT_GROUP: typeof STORE_PRODUCT_GROUP;
|
|
2267
|
-
declare const crudEndpoints_SUBSIDIARY: typeof SUBSIDIARY;
|
|
2268
|
-
declare const crudEndpoints_SUPPLIER: typeof SUPPLIER;
|
|
2269
|
-
declare const crudEndpoints_USER_ACTION: typeof USER_ACTION;
|
|
2270
|
-
declare const crudEndpoints_USER_PERSONA: typeof USER_PERSONA;
|
|
2271
|
-
declare const crudEndpoints_USER_PERSONA_CUSTOM_SCHEMA_PERMISSION: typeof USER_PERSONA_CUSTOM_SCHEMA_PERMISSION;
|
|
2272
|
-
declare const crudEndpoints_USER_PERSONA_ENTITY_ACCESS_STATUS: typeof USER_PERSONA_ENTITY_ACCESS_STATUS;
|
|
2273
|
-
declare const crudEndpoints_USER_PERSONA_ENTITY_PERMISSION: typeof USER_PERSONA_ENTITY_PERMISSION;
|
|
2274
|
-
declare const crudEndpoints_VEHICLE: typeof VEHICLE;
|
|
2275
|
-
declare const crudEndpoints_WAREHOUSE: typeof WAREHOUSE;
|
|
2276
|
-
declare const crudEndpoints_WORKSTATION: typeof WORKSTATION;
|
|
2277
|
-
declare const crudEndpoints_WORK_ORDER: typeof WORK_ORDER;
|
|
2278
|
-
declare namespace crudEndpoints {
|
|
2279
|
-
export { crudEndpoints_ACCOUNT as ACCOUNT, crudEndpoints_ATTENDANCE as ATTENDANCE, crudEndpoints_AUDIT_LOG as AUDIT_LOG, crudEndpoints_AUTOMATION_JOB as AUTOMATION_JOB, crudEndpoints_AUTOMATION_SCRIPT as AUTOMATION_SCRIPT, crudEndpoints_BILL_OF_MATERIALS as BILL_OF_MATERIALS, crudEndpoints_BOM_COMPONENT as BOM_COMPONENT, crudEndpoints_BOM_OPERATION as BOM_OPERATION, crudEndpoints_COMPANY_ALIAS as COMPANY_ALIAS, crudEndpoints_COMPANY_OPTION as COMPANY_OPTION, crudEndpoints_COMPANY_PERMISSION as COMPANY_PERMISSION, crudEndpoints_CUSTOMER as CUSTOMER, crudEndpoints_CUSTOM_DOCUMENT as CUSTOM_DOCUMENT, crudEndpoints_CUSTOM_ENTITY_FIELD as CUSTOM_ENTITY_FIELD, crudEndpoints_CUSTOM_ENTITY_OBJECT as CUSTOM_ENTITY_OBJECT, crudEndpoints_CUSTOM_ENTITY_SCHEMA as CUSTOM_ENTITY_SCHEMA, crudEndpoints_CUSTOM_FIELD as CUSTOM_FIELD, crudEndpoints_CUSTOM_REPORT as CUSTOM_REPORT, crudEndpoints_DELIVERY_JOB as DELIVERY_JOB, crudEndpoints_EMPLOYEE as EMPLOYEE, crudEndpoints_EXPENSE as EXPENSE, crudEndpoints_EXPENSE_LINE as EXPENSE_LINE, crudEndpoints_FIXED_ASSET as FIXED_ASSET, crudEndpoints_FORM as FORM, crudEndpoints_GEOFENCE as GEOFENCE, crudEndpoints_IDENTIFIER_GROUP as IDENTIFIER_GROUP, crudEndpoints_IDENTIFIER_TOKEN as IDENTIFIER_TOKEN, crudEndpoints_INCOMING_DELIVERY as INCOMING_DELIVERY, crudEndpoints_INCOMING_DELIVERY_LINE as INCOMING_DELIVERY_LINE, crudEndpoints_INCOMING_PAYMENT_METHOD as INCOMING_PAYMENT_METHOD, crudEndpoints_INCOMING_SHIPMENT as INCOMING_SHIPMENT, crudEndpoints_INTERNAL_DELIVERY as INTERNAL_DELIVERY, crudEndpoints_INTERNAL_DELIVERY_LINE as INTERNAL_DELIVERY_LINE, crudEndpoints_INVITATION as INVITATION, crudEndpoints_INVOICE as INVOICE, crudEndpoints_INVOICE_LINE as INVOICE_LINE, crudEndpoints_IOT_DEVICE as IOT_DEVICE, crudEndpoints_IOT_JOB as IOT_JOB, crudEndpoints_JOB_CARD as JOB_CARD, crudEndpoints_JOURNAL_ENTRY as JOURNAL_ENTRY, crudEndpoints_JOURNAL_ENTRY_LINE as JOURNAL_ENTRY_LINE, crudEndpoints_NOTIFICATION as NOTIFICATION, crudEndpoints_OUTGOING_DELIVERY as OUTGOING_DELIVERY, crudEndpoints_OUTGOING_DELIVERY_LINE as OUTGOING_DELIVERY_LINE, crudEndpoints_OUTGOING_SHIPMENT as OUTGOING_SHIPMENT, crudEndpoints_PAYMENT as PAYMENT, crudEndpoints_PRINT_JOB as PRINT_JOB, crudEndpoints_PRODUCT as PRODUCT, crudEndpoints_PRODUCTION_ORDER as PRODUCTION_ORDER, crudEndpoints_PRODUCTION_ORDER_LINE as PRODUCTION_ORDER_LINE, crudEndpoints_PRODUCT_GROUP as PRODUCT_GROUP, crudEndpoints_PRODUCT_ITEM as PRODUCT_ITEM, crudEndpoints_PRODUCT_SUPPLIER as PRODUCT_SUPPLIER, crudEndpoints_PURCHASE_ORDER as PURCHASE_ORDER, crudEndpoints_PURCHASE_ORDER_APPROVER as PURCHASE_ORDER_APPROVER, crudEndpoints_PURCHASE_ORDER_LINE as PURCHASE_ORDER_LINE, crudEndpoints_QUOTE as QUOTE, crudEndpoints_QUOTE_LINE as QUOTE_LINE, crudEndpoints_RENTAL_ORDER as RENTAL_ORDER, crudEndpoints_RENTAL_ORDER_LINE as RENTAL_ORDER_LINE, crudEndpoints_SALES_ORDER as SALES_ORDER, crudEndpoints_SALES_ORDER_APPROVER as SALES_ORDER_APPROVER, crudEndpoints_SALES_ORDER_LINE as SALES_ORDER_LINE, crudEndpoints_SERVICE_ORDER as SERVICE_ORDER, crudEndpoints_SHIFT as SHIFT, crudEndpoints_STOCK_ADJUSTMENT as STOCK_ADJUSTMENT, crudEndpoints_STORE as STORE, crudEndpoints_STORE_PRODUCT as STORE_PRODUCT, crudEndpoints_STORE_PRODUCT_ATTRIBUTE as STORE_PRODUCT_ATTRIBUTE, crudEndpoints_STORE_PRODUCT_ATTRIBUTE_VALUE as STORE_PRODUCT_ATTRIBUTE_VALUE, crudEndpoints_STORE_PRODUCT_GROUP as STORE_PRODUCT_GROUP, crudEndpoints_SUBSIDIARY as SUBSIDIARY, crudEndpoints_SUPPLIER as SUPPLIER, crudEndpoints_USER_ACTION as USER_ACTION, crudEndpoints_USER_PERSONA as USER_PERSONA, crudEndpoints_USER_PERSONA_CUSTOM_SCHEMA_PERMISSION as USER_PERSONA_CUSTOM_SCHEMA_PERMISSION, crudEndpoints_USER_PERSONA_ENTITY_ACCESS_STATUS as USER_PERSONA_ENTITY_ACCESS_STATUS, crudEndpoints_USER_PERSONA_ENTITY_PERMISSION as USER_PERSONA_ENTITY_PERMISSION, crudEndpoints_VEHICLE as VEHICLE, crudEndpoints_WAREHOUSE as WAREHOUSE, crudEndpoints_WORKSTATION as WORKSTATION, crudEndpoints_WORK_ORDER as WORK_ORDER };
|
|
2425
|
+
interface ReturnInvoiceLine {
|
|
2426
|
+
id: string;
|
|
2427
|
+
}
|
|
2428
|
+
|
|
2429
|
+
declare enum IotHubPlatform {
|
|
2430
|
+
WINDOWS = "WINDOWS",
|
|
2431
|
+
LINUX = "LINUX"
|
|
2432
|
+
}
|
|
2433
|
+
interface IotHub {
|
|
2434
|
+
id: string;
|
|
2435
|
+
name: string;
|
|
2436
|
+
platform: IotHubPlatform;
|
|
2437
|
+
createdAt: string | Date;
|
|
2438
|
+
}
|
|
2439
|
+
|
|
2440
|
+
interface UserPersonaEntityAccessStatus {
|
|
2441
|
+
id: string;
|
|
2442
|
+
entityType: EntityType;
|
|
2443
|
+
isEnabled: boolean;
|
|
2280
2444
|
}
|
|
2281
2445
|
|
|
2282
2446
|
declare function call(axiosRequest: AxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
@@ -3084,4 +3248,4 @@ declare const konversiAPI: {
|
|
|
3084
3248
|
|
|
3085
3249
|
declare const Entity: typeof crudEndpoints;
|
|
3086
3250
|
|
|
3087
|
-
export { Entity, createCustomObject, createObject, konversiAPI as default, deleteCustomObject, deleteObject, getAllObjects, getObjectById, runScript, updateObject };
|
|
3251
|
+
export { type Account, AccountDefaultEnum, AccountSubtype, AccountType, type Activity, ActivityType, type Approval, type Approver, ApproverType, type Attendance, type AuditLog, AuditLogAction, type AutomationJob, AutomationJobStatus, type AutomationScript, AutomationScriptTrigger, type AutomationScriptTriggerEntity, AutomationScriptTriggerName, type BOMComponent, type BOMOperation, type BankAccount, type BankTransaction, type Bill, type BillLine, type BillOfMaterials, type BusinessIntelligenceDashboard, type BusinessIntelligenceReport, type Cart, type CartLine, type ChatMessage, ChatMessageRole, type ChatSession, type CompanyAlias, type CompanyFeature, CompanyFeatureName, type CompanyOption, CompanyOptionName, type CompanyPermission, CompanyPermissionName, type CompanyUser, type CompanyVariable, CompanyVariableName, type Contact, type Conversation, type ConversationMessage, type CostLine, Currency, type CustomDocument, CustomDocumentOrientation, CustomDocumentType, type CustomEntityField, type CustomEntityFieldPermission, CustomEntityFieldType, type CustomEntityFieldValue, type CustomEntityObject, type CustomEntitySchema, type CustomEntitySchemaPermission, CustomEntitySchemaType, type CustomField, type CustomReport, type Customer, type CustomerEvent, CustomerEventType, CustomerSourceChannel, DataType, Day, type Deal, type Delivery, type DeliveryJob, DeliveryJobStatus, type DeliveryLine, DeliveryStatus, DeliveryType, DepreciationPeriod, type Employee, Entity, EntityEvent, type EntityFieldPermission, type EntityObjectPermission, type EntityPermission, EntityType, type ExchangeRate, type Expense, type ExpenseLine, FieldName, type FixedAsset, type Form, FormLocation, type FuelEntry, type Geofence, type IdentifierGroup, type IdentifierToken, IdentifierTokenType, type ImportJob, type ImportJobRow, ImportJobStatus, type IncomingDelivery, type IncomingDeliveryLine, type IncomingPaymentMethod, type IncomingShipment, type InternalDelivery, type InternalDeliveryLine, InventoryCostFlow, type Invitation, type Invoice, type InvoiceApproval, type InvoiceLine, type IotDevice, IotDeviceType, type IotHub, IotHubPlatform, type IotJob, IotJobStatus, type JobCard, JobCardStatus, type JournalEntry, type JournalEntryLine, type Lease, LeasePaymentStatus, LifecycleStage, type MaintenanceOrder, type MaintenanceOrderLine, Module, type NotificationEntity, type Order, type OrderLine, type OutgoingDelivery, type OutgoingDeliveryLine, type OutgoingShipment, type Payment, PaymentGatewayType, PaymentMethodEnum, PaymentStatus, PaymentType, type PointOfSale, type Pricelist, type PricelistLine, type PrintJob, PrintJobStatus, PrintJobType, type Product, type ProductGroup, type ProductItem, type ProductLocation, type ProductLocationTransfer, type ProductSupplier, type ProductionOrder, type ProductionOrderLine, ProductionOrderStatus, type Property, type PropertyGroup, type PurchaseOrder, type PurchaseOrderApproval, type PurchaseOrderLine, type QualityCheck, QualityCheckStatus, type QualityCheckpoint, type Quote, type QuoteLine, type RentalOrder, type RentalOrderLine, type ReturnInvoice, type ReturnInvoiceLine, type ReturnSalesOrder, type ReturnSalesOrderLine, type Rule, RuleEventType, SalaryPeriod, type SalesOrder, type SalesOrderApproval, type SalesOrderLine, type SalesOrderLinePrintJob, SalesOrderType, type Shift, type Shipment, type StockAdjustment, StockAdjustmentType, type Store, type StoreProduct, type StoreProductAttribute, type StoreProductAttributeValue, type StoreProductAttributeValueMapping, type StoreProductGroup, type StoreProductVariant, type StoreUser, type Subsidiary, type Supplier, type TelemetryAttribute, TelemetryAttributeKey, type TelemetryEvent, type ThermalPrinter, type UnitConversion, type User, type UserAction, UserActionType, type UserLog, type UserPermission, UserPermissionName, type UserPersona, type UserPersonaCustomSchemaPermission, UserPersonaCustomSchemaPermissionType, type UserPersonaEntityAccessStatus, type UserPersonaEntityPermission, UserPersonaEntityPermissionType, type UserPersonaProductPermission, type UserPersonaWarehousePermission, type Vehicle, type VehicleTelemetry, type VehicleTire, type View, type Warehouse, type WarehouseProduct, type WebComponent, type WebComponentSlot, WebComponentSlotName, type WhatsappAccount, type Workstation, type WorkstationProduct, type WorkstationTransfer, createCustomObject, createObject, konversiAPI as default, deleteCustomObject, deleteObject, getAllObjects, getObjectById, runScript, updateObject };
|