@chift/chift-nodejs 1.0.4 → 1.0.6
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/.eslintcache +1 -0
- package/CHANGELOG.md +8 -0
- package/coverage/clover.xml +1645 -0
- package/coverage/coverage-final.json +19 -0
- package/coverage/lcov-report/base.css +224 -0
- package/coverage/lcov-report/block-navigation.js +87 -0
- package/coverage/lcov-report/favicon.png +0 -0
- package/coverage/lcov-report/index.html +146 -0
- package/coverage/lcov-report/prettify.css +1 -0
- package/coverage/lcov-report/prettify.js +2 -0
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +196 -0
- package/coverage/lcov-report/src/helpers/index.html +131 -0
- package/coverage/lcov-report/src/helpers/openapi.ts.html +151 -0
- package/coverage/lcov-report/src/helpers/settings.ts.html +94 -0
- package/coverage/lcov-report/src/index.html +116 -0
- package/coverage/lcov-report/src/index.ts.html +88 -0
- package/coverage/lcov-report/src/modules/accounting.ts.html +1156 -0
- package/coverage/lcov-report/src/modules/api.ts.html +190 -0
- package/coverage/lcov-report/src/modules/consumer.ts.html +616 -0
- package/coverage/lcov-report/src/modules/consumers.ts.html +331 -0
- package/coverage/lcov-report/src/modules/custom.ts.html +193 -0
- package/coverage/lcov-report/src/modules/datastores.ts.html +142 -0
- package/coverage/lcov-report/src/modules/ecommerce.ts.html +331 -0
- package/coverage/lcov-report/src/modules/flow.ts.html +589 -0
- package/coverage/lcov-report/src/modules/index.html +326 -0
- package/coverage/lcov-report/src/modules/integrations.ts.html +151 -0
- package/coverage/lcov-report/src/modules/internalApi.ts.html +586 -0
- package/coverage/lcov-report/src/modules/invoicing.ts.html +391 -0
- package/coverage/lcov-report/src/modules/pos.ts.html +421 -0
- package/coverage/lcov-report/src/modules/sync.ts.html +316 -0
- package/coverage/lcov-report/src/modules/syncs.ts.html +169 -0
- package/coverage/lcov-report/src/modules/webhooks.ts.html +343 -0
- package/coverage/lcov.info +1976 -0
- package/dist/src/modules/api.d.ts +855 -420
- package/dist/src/modules/consumer.d.ts +56 -28
- package/dist/src/modules/consumers.d.ts +285 -140
- package/dist/src/modules/internalApi.js +13 -4
- package/dist/src/modules/pos.d.ts +4 -0
- package/dist/src/modules/pos.js +14 -0
- package/dist/src/modules/sync.d.ts +229 -113
- package/dist/src/modules/syncs.d.ts +570 -280
- package/dist/test/modules/flow.test.d.ts +1 -0
- package/dist/test/modules/flow.test.js +69 -0
- package/dist/test/modules/pos.test.js +13 -0
- package/jest.config.ts +1 -1
- package/package.json +1 -1
- package/src/modules/internalApi.ts +19 -10
- package/src/modules/pos.ts +26 -0
- package/src/modules/sync.ts +1 -1
- package/src/modules/syncs.ts +2 -2
- package/src/types/public-api/schema.d.ts +426 -80
- package/test/modules/consumer.test.ts +1 -1
- package/test/modules/pos.test.ts +15 -0
|
@@ -39,6 +39,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
39
39
|
getSyncUrl: (body: {
|
|
40
40
|
syncid: string;
|
|
41
41
|
integrationids?: string[] | undefined;
|
|
42
|
+
link_metadata?: Record<string, never> | undefined;
|
|
42
43
|
}) => Promise<{
|
|
43
44
|
url: string;
|
|
44
45
|
}>;
|
|
@@ -90,6 +91,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
90
91
|
name?: string | undefined;
|
|
91
92
|
total: number;
|
|
92
93
|
}[] | undefined;
|
|
94
|
+
product_id?: string | undefined;
|
|
93
95
|
}[];
|
|
94
96
|
payments: {
|
|
95
97
|
id?: string | undefined;
|
|
@@ -156,6 +158,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
156
158
|
name?: string | undefined;
|
|
157
159
|
total: number;
|
|
158
160
|
}[] | undefined;
|
|
161
|
+
product_id?: string | undefined;
|
|
159
162
|
}[];
|
|
160
163
|
payments: {
|
|
161
164
|
id?: string | undefined;
|
|
@@ -237,6 +240,22 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
237
240
|
name: string;
|
|
238
241
|
extra?: string | undefined;
|
|
239
242
|
}[]>;
|
|
243
|
+
getProductCategories(params: {}): import("../types/api").RequestData<{
|
|
244
|
+
id: string;
|
|
245
|
+
name: string;
|
|
246
|
+
description?: string | undefined;
|
|
247
|
+
id_parent?: string | undefined;
|
|
248
|
+
}[]>;
|
|
249
|
+
getProducts(params: {}): import("../types/api").RequestData<{
|
|
250
|
+
id: string;
|
|
251
|
+
categories?: string[] | undefined;
|
|
252
|
+
name: string;
|
|
253
|
+
description?: string | undefined;
|
|
254
|
+
prices: {
|
|
255
|
+
unit_price: number;
|
|
256
|
+
tax_rate: number;
|
|
257
|
+
}[];
|
|
258
|
+
}[]>;
|
|
240
259
|
getSales(params: {
|
|
241
260
|
date_from: string;
|
|
242
261
|
date_to: string;
|
|
@@ -295,6 +314,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
295
314
|
name?: string | undefined;
|
|
296
315
|
total: number;
|
|
297
316
|
}[] | undefined;
|
|
317
|
+
product_id?: string | undefined;
|
|
298
318
|
}[];
|
|
299
319
|
payments: {
|
|
300
320
|
id?: string | undefined;
|
|
@@ -1130,21 +1150,21 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
1130
1150
|
name: string;
|
|
1131
1151
|
currency: string;
|
|
1132
1152
|
}): import("../types/api").RequestData<{
|
|
1133
|
-
|
|
1153
|
+
id: string;
|
|
1154
|
+
active: boolean;
|
|
1134
1155
|
code?: string | undefined;
|
|
1135
|
-
name
|
|
1156
|
+
name: string;
|
|
1136
1157
|
currency?: string | undefined;
|
|
1137
|
-
id?: string | undefined;
|
|
1138
1158
|
balance?: number | undefined;
|
|
1139
1159
|
credit?: number | undefined;
|
|
1140
1160
|
debit?: number | undefined;
|
|
1141
1161
|
}>;
|
|
1142
1162
|
getAnalyticAccounts(): import("../types/api").RequestData<{
|
|
1143
|
-
|
|
1163
|
+
id: string;
|
|
1164
|
+
active: boolean;
|
|
1144
1165
|
code?: string | undefined;
|
|
1145
|
-
name
|
|
1166
|
+
name: string;
|
|
1146
1167
|
currency?: string | undefined;
|
|
1147
|
-
id?: string | undefined;
|
|
1148
1168
|
balance?: number | undefined;
|
|
1149
1169
|
credit?: number | undefined;
|
|
1150
1170
|
debit?: number | undefined;
|
|
@@ -1155,22 +1175,22 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
1155
1175
|
name: string;
|
|
1156
1176
|
currency: string;
|
|
1157
1177
|
}): import("../types/api").RequestData<{
|
|
1158
|
-
|
|
1178
|
+
id: string;
|
|
1179
|
+
active: boolean;
|
|
1159
1180
|
code?: string | undefined;
|
|
1160
|
-
name
|
|
1181
|
+
name: string;
|
|
1161
1182
|
currency?: string | undefined;
|
|
1162
|
-
id?: string | undefined;
|
|
1163
1183
|
balance?: number | undefined;
|
|
1164
1184
|
credit?: number | undefined;
|
|
1165
1185
|
debit?: number | undefined;
|
|
1166
1186
|
analytic_plan: string;
|
|
1167
1187
|
}>;
|
|
1168
1188
|
getAnalyticAccount(analytic_account_id: string): import("../types/api").RequestData<{
|
|
1169
|
-
|
|
1189
|
+
id: string;
|
|
1190
|
+
active: boolean;
|
|
1170
1191
|
code?: string | undefined;
|
|
1171
|
-
name
|
|
1192
|
+
name: string;
|
|
1172
1193
|
currency?: string | undefined;
|
|
1173
|
-
id?: string | undefined;
|
|
1174
1194
|
balance?: number | undefined;
|
|
1175
1195
|
credit?: number | undefined;
|
|
1176
1196
|
debit?: number | undefined;
|
|
@@ -1181,21 +1201,21 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
1181
1201
|
name?: string | undefined;
|
|
1182
1202
|
currency?: string | undefined;
|
|
1183
1203
|
}): import("../types/api").RequestData<{
|
|
1184
|
-
|
|
1204
|
+
id: string;
|
|
1205
|
+
active: boolean;
|
|
1185
1206
|
code?: string | undefined;
|
|
1186
|
-
name
|
|
1207
|
+
name: string;
|
|
1187
1208
|
currency?: string | undefined;
|
|
1188
|
-
id?: string | undefined;
|
|
1189
1209
|
balance?: number | undefined;
|
|
1190
1210
|
credit?: number | undefined;
|
|
1191
1211
|
debit?: number | undefined;
|
|
1192
1212
|
}>;
|
|
1193
1213
|
getAnalyticAccountWithMultiplePlans(analytic_account_id: string, analytic_plan: string): import("../types/api").RequestData<{
|
|
1194
|
-
|
|
1214
|
+
id: string;
|
|
1215
|
+
active: boolean;
|
|
1195
1216
|
code?: string | undefined;
|
|
1196
|
-
name
|
|
1217
|
+
name: string;
|
|
1197
1218
|
currency?: string | undefined;
|
|
1198
|
-
id?: string | undefined;
|
|
1199
1219
|
balance?: number | undefined;
|
|
1200
1220
|
credit?: number | undefined;
|
|
1201
1221
|
debit?: number | undefined;
|
|
@@ -1207,22 +1227,22 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
1207
1227
|
name?: string | undefined;
|
|
1208
1228
|
currency?: string | undefined;
|
|
1209
1229
|
}): import("../types/api").RequestData<{
|
|
1210
|
-
|
|
1230
|
+
id: string;
|
|
1231
|
+
active: boolean;
|
|
1211
1232
|
code?: string | undefined;
|
|
1212
|
-
name
|
|
1233
|
+
name: string;
|
|
1213
1234
|
currency?: string | undefined;
|
|
1214
|
-
id?: string | undefined;
|
|
1215
1235
|
balance?: number | undefined;
|
|
1216
1236
|
credit?: number | undefined;
|
|
1217
1237
|
debit?: number | undefined;
|
|
1218
1238
|
analytic_plan: string;
|
|
1219
1239
|
}>;
|
|
1220
1240
|
getAnalyticAccountsWithMultiplePlans(): import("../types/api").RequestData<{
|
|
1221
|
-
|
|
1241
|
+
id: string;
|
|
1242
|
+
active: boolean;
|
|
1222
1243
|
code?: string | undefined;
|
|
1223
|
-
name
|
|
1244
|
+
name: string;
|
|
1224
1245
|
currency?: string | undefined;
|
|
1225
|
-
id?: string | undefined;
|
|
1226
1246
|
balance?: number | undefined;
|
|
1227
1247
|
credit?: number | undefined;
|
|
1228
1248
|
debit?: number | undefined;
|
|
@@ -1759,6 +1779,8 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
1759
1779
|
category?: string | undefined;
|
|
1760
1780
|
currency?: string | undefined;
|
|
1761
1781
|
description?: string | undefined;
|
|
1782
|
+
available_quantity?: number | undefined;
|
|
1783
|
+
cost?: number | undefined;
|
|
1762
1784
|
}[]>;
|
|
1763
1785
|
getProductById(productId: string): import("../types/api").RequestData<{
|
|
1764
1786
|
id: string;
|
|
@@ -1774,6 +1796,8 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
1774
1796
|
category?: string | undefined;
|
|
1775
1797
|
currency?: string | undefined;
|
|
1776
1798
|
description?: string | undefined;
|
|
1799
|
+
available_quantity?: number | undefined;
|
|
1800
|
+
cost?: number | undefined;
|
|
1777
1801
|
}>;
|
|
1778
1802
|
createProduct(product: {
|
|
1779
1803
|
name: string;
|
|
@@ -1798,6 +1822,8 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
1798
1822
|
category?: string | undefined;
|
|
1799
1823
|
currency?: string | undefined;
|
|
1800
1824
|
description?: string | undefined;
|
|
1825
|
+
available_quantity?: number | undefined;
|
|
1826
|
+
cost?: number | undefined;
|
|
1801
1827
|
}>;
|
|
1802
1828
|
getTaxes(): import("../types/api").RequestData<{
|
|
1803
1829
|
id: string;
|
|
@@ -1906,7 +1932,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
1906
1932
|
birthdate?: string | undefined;
|
|
1907
1933
|
gender?: "H" | "F" | "N/A" | undefined;
|
|
1908
1934
|
addresses?: {
|
|
1909
|
-
address_type: "main" | "delivery" | "invoice";
|
|
1935
|
+
address_type: "main" | "delivery" | "invoice" | "other";
|
|
1910
1936
|
name?: string | undefined;
|
|
1911
1937
|
number?: string | undefined;
|
|
1912
1938
|
box?: string | undefined;
|
|
@@ -1946,7 +1972,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
1946
1972
|
birthdate?: string | undefined;
|
|
1947
1973
|
gender?: "H" | "F" | "N/A" | undefined;
|
|
1948
1974
|
addresses?: {
|
|
1949
|
-
address_type: "main" | "delivery" | "invoice";
|
|
1975
|
+
address_type: "main" | "delivery" | "invoice" | "other";
|
|
1950
1976
|
name?: string | undefined;
|
|
1951
1977
|
number?: string | undefined;
|
|
1952
1978
|
box?: string | undefined;
|
|
@@ -1981,7 +2007,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
1981
2007
|
birthdate?: string | undefined;
|
|
1982
2008
|
gender?: "H" | "F" | "N/A" | undefined;
|
|
1983
2009
|
addresses?: {
|
|
1984
|
-
address_type: "main" | "delivery" | "invoice";
|
|
2010
|
+
address_type: "main" | "delivery" | "invoice" | "other";
|
|
1985
2011
|
name?: string | undefined;
|
|
1986
2012
|
number?: string | undefined;
|
|
1987
2013
|
box?: string | undefined;
|
|
@@ -2020,7 +2046,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
2020
2046
|
birthdate?: string | undefined;
|
|
2021
2047
|
gender?: "H" | "F" | "N/A" | undefined;
|
|
2022
2048
|
addresses?: {
|
|
2023
|
-
address_type: "main" | "delivery" | "invoice";
|
|
2049
|
+
address_type: "main" | "delivery" | "invoice" | "other";
|
|
2024
2050
|
name?: string | undefined;
|
|
2025
2051
|
number?: string | undefined;
|
|
2026
2052
|
box?: string | undefined;
|
|
@@ -2674,11 +2700,13 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
2674
2700
|
link_mappings?: {
|
|
2675
2701
|
name: string;
|
|
2676
2702
|
description: string;
|
|
2703
|
+
logic?: Record<string, never> | undefined;
|
|
2677
2704
|
values: {
|
|
2678
2705
|
source_id: string;
|
|
2679
2706
|
target_id: string;
|
|
2680
2707
|
}[];
|
|
2681
2708
|
}[] | undefined;
|
|
2709
|
+
link_metadata?: Record<string, never> | undefined;
|
|
2682
2710
|
enabled_flows?: {
|
|
2683
2711
|
name: string;
|
|
2684
2712
|
description?: string | undefined;
|
|
@@ -2703,6 +2731,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
2703
2731
|
}[] | undefined;
|
|
2704
2732
|
} | undefined;
|
|
2705
2733
|
values: Record<string, never>;
|
|
2734
|
+
enabled_on: string;
|
|
2706
2735
|
}[] | undefined;
|
|
2707
2736
|
}>;
|
|
2708
2737
|
getDataByDataStoreName: (dataStoreName: string, params?: object | undefined) => Promise<{
|
|
@@ -2763,6 +2792,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
2763
2792
|
getSyncUrl: (body: {
|
|
2764
2793
|
syncid: string;
|
|
2765
2794
|
integrationids?: string[] | undefined;
|
|
2795
|
+
link_metadata?: Record<string, never> | undefined;
|
|
2766
2796
|
}) => Promise<{
|
|
2767
2797
|
url: string;
|
|
2768
2798
|
}>;
|
|
@@ -2814,6 +2844,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
2814
2844
|
name?: string | undefined;
|
|
2815
2845
|
total: number;
|
|
2816
2846
|
}[] | undefined;
|
|
2847
|
+
product_id?: string | undefined;
|
|
2817
2848
|
}[];
|
|
2818
2849
|
payments: {
|
|
2819
2850
|
id?: string | undefined;
|
|
@@ -2880,6 +2911,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
2880
2911
|
name?: string | undefined;
|
|
2881
2912
|
total: number;
|
|
2882
2913
|
}[] | undefined;
|
|
2914
|
+
product_id?: string | undefined;
|
|
2883
2915
|
}[];
|
|
2884
2916
|
payments: {
|
|
2885
2917
|
id?: string | undefined;
|
|
@@ -2961,6 +2993,22 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
2961
2993
|
name: string;
|
|
2962
2994
|
extra?: string | undefined;
|
|
2963
2995
|
}[]>;
|
|
2996
|
+
getProductCategories(params: {}): import("../types/api").RequestData<{
|
|
2997
|
+
id: string;
|
|
2998
|
+
name: string;
|
|
2999
|
+
description?: string | undefined;
|
|
3000
|
+
id_parent?: string | undefined;
|
|
3001
|
+
}[]>;
|
|
3002
|
+
getProducts(params: {}): import("../types/api").RequestData<{
|
|
3003
|
+
id: string;
|
|
3004
|
+
categories?: string[] | undefined;
|
|
3005
|
+
name: string;
|
|
3006
|
+
description?: string | undefined;
|
|
3007
|
+
prices: {
|
|
3008
|
+
unit_price: number;
|
|
3009
|
+
tax_rate: number;
|
|
3010
|
+
}[];
|
|
3011
|
+
}[]>;
|
|
2964
3012
|
getSales(params: {
|
|
2965
3013
|
date_from: string;
|
|
2966
3014
|
date_to: string;
|
|
@@ -3019,6 +3067,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
3019
3067
|
name?: string | undefined;
|
|
3020
3068
|
total: number;
|
|
3021
3069
|
}[] | undefined;
|
|
3070
|
+
product_id?: string | undefined;
|
|
3022
3071
|
}[];
|
|
3023
3072
|
payments: {
|
|
3024
3073
|
id?: string | undefined;
|
|
@@ -3854,21 +3903,21 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
3854
3903
|
name: string;
|
|
3855
3904
|
currency: string;
|
|
3856
3905
|
}): import("../types/api").RequestData<{
|
|
3857
|
-
|
|
3906
|
+
id: string;
|
|
3907
|
+
active: boolean;
|
|
3858
3908
|
code?: string | undefined;
|
|
3859
|
-
name
|
|
3909
|
+
name: string;
|
|
3860
3910
|
currency?: string | undefined;
|
|
3861
|
-
id?: string | undefined;
|
|
3862
3911
|
balance?: number | undefined;
|
|
3863
3912
|
credit?: number | undefined;
|
|
3864
3913
|
debit?: number | undefined;
|
|
3865
3914
|
}>;
|
|
3866
3915
|
getAnalyticAccounts(): import("../types/api").RequestData<{
|
|
3867
|
-
|
|
3916
|
+
id: string;
|
|
3917
|
+
active: boolean;
|
|
3868
3918
|
code?: string | undefined;
|
|
3869
|
-
name
|
|
3919
|
+
name: string;
|
|
3870
3920
|
currency?: string | undefined;
|
|
3871
|
-
id?: string | undefined;
|
|
3872
3921
|
balance?: number | undefined;
|
|
3873
3922
|
credit?: number | undefined;
|
|
3874
3923
|
debit?: number | undefined;
|
|
@@ -3879,22 +3928,22 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
3879
3928
|
name: string;
|
|
3880
3929
|
currency: string;
|
|
3881
3930
|
}): import("../types/api").RequestData<{
|
|
3882
|
-
|
|
3931
|
+
id: string;
|
|
3932
|
+
active: boolean;
|
|
3883
3933
|
code?: string | undefined;
|
|
3884
|
-
name
|
|
3934
|
+
name: string;
|
|
3885
3935
|
currency?: string | undefined;
|
|
3886
|
-
id?: string | undefined;
|
|
3887
3936
|
balance?: number | undefined;
|
|
3888
3937
|
credit?: number | undefined;
|
|
3889
3938
|
debit?: number | undefined;
|
|
3890
3939
|
analytic_plan: string;
|
|
3891
3940
|
}>;
|
|
3892
3941
|
getAnalyticAccount(analytic_account_id: string): import("../types/api").RequestData<{
|
|
3893
|
-
|
|
3942
|
+
id: string;
|
|
3943
|
+
active: boolean;
|
|
3894
3944
|
code?: string | undefined;
|
|
3895
|
-
name
|
|
3945
|
+
name: string;
|
|
3896
3946
|
currency?: string | undefined;
|
|
3897
|
-
id?: string | undefined;
|
|
3898
3947
|
balance?: number | undefined;
|
|
3899
3948
|
credit?: number | undefined;
|
|
3900
3949
|
debit?: number | undefined;
|
|
@@ -3905,21 +3954,21 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
3905
3954
|
name?: string | undefined;
|
|
3906
3955
|
currency?: string | undefined;
|
|
3907
3956
|
}): import("../types/api").RequestData<{
|
|
3908
|
-
|
|
3957
|
+
id: string;
|
|
3958
|
+
active: boolean;
|
|
3909
3959
|
code?: string | undefined;
|
|
3910
|
-
name
|
|
3960
|
+
name: string;
|
|
3911
3961
|
currency?: string | undefined;
|
|
3912
|
-
id?: string | undefined;
|
|
3913
3962
|
balance?: number | undefined;
|
|
3914
3963
|
credit?: number | undefined;
|
|
3915
3964
|
debit?: number | undefined;
|
|
3916
3965
|
}>;
|
|
3917
3966
|
getAnalyticAccountWithMultiplePlans(analytic_account_id: string, analytic_plan: string): import("../types/api").RequestData<{
|
|
3918
|
-
|
|
3967
|
+
id: string;
|
|
3968
|
+
active: boolean;
|
|
3919
3969
|
code?: string | undefined;
|
|
3920
|
-
name
|
|
3970
|
+
name: string;
|
|
3921
3971
|
currency?: string | undefined;
|
|
3922
|
-
id?: string | undefined;
|
|
3923
3972
|
balance?: number | undefined;
|
|
3924
3973
|
credit?: number | undefined;
|
|
3925
3974
|
debit?: number | undefined;
|
|
@@ -3931,22 +3980,22 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
3931
3980
|
name?: string | undefined;
|
|
3932
3981
|
currency?: string | undefined;
|
|
3933
3982
|
}): import("../types/api").RequestData<{
|
|
3934
|
-
|
|
3983
|
+
id: string;
|
|
3984
|
+
active: boolean;
|
|
3935
3985
|
code?: string | undefined;
|
|
3936
|
-
name
|
|
3986
|
+
name: string;
|
|
3937
3987
|
currency?: string | undefined;
|
|
3938
|
-
id?: string | undefined;
|
|
3939
3988
|
balance?: number | undefined;
|
|
3940
3989
|
credit?: number | undefined;
|
|
3941
3990
|
debit?: number | undefined;
|
|
3942
3991
|
analytic_plan: string;
|
|
3943
3992
|
}>;
|
|
3944
3993
|
getAnalyticAccountsWithMultiplePlans(): import("../types/api").RequestData<{
|
|
3945
|
-
|
|
3994
|
+
id: string;
|
|
3995
|
+
active: boolean;
|
|
3946
3996
|
code?: string | undefined;
|
|
3947
|
-
name
|
|
3997
|
+
name: string;
|
|
3948
3998
|
currency?: string | undefined;
|
|
3949
|
-
id?: string | undefined;
|
|
3950
3999
|
balance?: number | undefined;
|
|
3951
4000
|
credit?: number | undefined;
|
|
3952
4001
|
debit?: number | undefined;
|
|
@@ -4483,6 +4532,8 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
4483
4532
|
category?: string | undefined;
|
|
4484
4533
|
currency?: string | undefined;
|
|
4485
4534
|
description?: string | undefined;
|
|
4535
|
+
available_quantity?: number | undefined;
|
|
4536
|
+
cost?: number | undefined;
|
|
4486
4537
|
}[]>;
|
|
4487
4538
|
getProductById(productId: string): import("../types/api").RequestData<{
|
|
4488
4539
|
id: string;
|
|
@@ -4498,6 +4549,8 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
4498
4549
|
category?: string | undefined;
|
|
4499
4550
|
currency?: string | undefined;
|
|
4500
4551
|
description?: string | undefined;
|
|
4552
|
+
available_quantity?: number | undefined;
|
|
4553
|
+
cost?: number | undefined;
|
|
4501
4554
|
}>;
|
|
4502
4555
|
createProduct(product: {
|
|
4503
4556
|
name: string;
|
|
@@ -4522,6 +4575,8 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
4522
4575
|
category?: string | undefined;
|
|
4523
4576
|
currency?: string | undefined;
|
|
4524
4577
|
description?: string | undefined;
|
|
4578
|
+
available_quantity?: number | undefined;
|
|
4579
|
+
cost?: number | undefined;
|
|
4525
4580
|
}>;
|
|
4526
4581
|
getTaxes(): import("../types/api").RequestData<{
|
|
4527
4582
|
id: string;
|
|
@@ -4630,7 +4685,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
4630
4685
|
birthdate?: string | undefined;
|
|
4631
4686
|
gender?: "H" | "F" | "N/A" | undefined;
|
|
4632
4687
|
addresses?: {
|
|
4633
|
-
address_type: "main" | "delivery" | "invoice";
|
|
4688
|
+
address_type: "main" | "delivery" | "invoice" | "other";
|
|
4634
4689
|
name?: string | undefined;
|
|
4635
4690
|
number?: string | undefined;
|
|
4636
4691
|
box?: string | undefined;
|
|
@@ -4670,7 +4725,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
4670
4725
|
birthdate?: string | undefined;
|
|
4671
4726
|
gender?: "H" | "F" | "N/A" | undefined;
|
|
4672
4727
|
addresses?: {
|
|
4673
|
-
address_type: "main" | "delivery" | "invoice";
|
|
4728
|
+
address_type: "main" | "delivery" | "invoice" | "other";
|
|
4674
4729
|
name?: string | undefined;
|
|
4675
4730
|
number?: string | undefined;
|
|
4676
4731
|
box?: string | undefined;
|
|
@@ -4705,7 +4760,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
4705
4760
|
birthdate?: string | undefined;
|
|
4706
4761
|
gender?: "H" | "F" | "N/A" | undefined;
|
|
4707
4762
|
addresses?: {
|
|
4708
|
-
address_type: "main" | "delivery" | "invoice";
|
|
4763
|
+
address_type: "main" | "delivery" | "invoice" | "other";
|
|
4709
4764
|
name?: string | undefined;
|
|
4710
4765
|
number?: string | undefined;
|
|
4711
4766
|
box?: string | undefined;
|
|
@@ -4744,7 +4799,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
4744
4799
|
birthdate?: string | undefined;
|
|
4745
4800
|
gender?: "H" | "F" | "N/A" | undefined;
|
|
4746
4801
|
addresses?: {
|
|
4747
|
-
address_type: "main" | "delivery" | "invoice";
|
|
4802
|
+
address_type: "main" | "delivery" | "invoice" | "other";
|
|
4748
4803
|
name?: string | undefined;
|
|
4749
4804
|
number?: string | undefined;
|
|
4750
4805
|
box?: string | undefined;
|
|
@@ -5398,11 +5453,13 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
5398
5453
|
link_mappings?: {
|
|
5399
5454
|
name: string;
|
|
5400
5455
|
description: string;
|
|
5456
|
+
logic?: Record<string, never> | undefined;
|
|
5401
5457
|
values: {
|
|
5402
5458
|
source_id: string;
|
|
5403
5459
|
target_id: string;
|
|
5404
5460
|
}[];
|
|
5405
5461
|
}[] | undefined;
|
|
5462
|
+
link_metadata?: Record<string, never> | undefined;
|
|
5406
5463
|
enabled_flows?: {
|
|
5407
5464
|
name: string;
|
|
5408
5465
|
description?: string | undefined;
|
|
@@ -5427,6 +5484,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
5427
5484
|
}[] | undefined;
|
|
5428
5485
|
} | undefined;
|
|
5429
5486
|
values: Record<string, never>;
|
|
5487
|
+
enabled_on: string;
|
|
5430
5488
|
}[] | undefined;
|
|
5431
5489
|
}>;
|
|
5432
5490
|
getDataByDataStoreName: (dataStoreName: string, params?: object | undefined) => Promise<{
|
|
@@ -5487,6 +5545,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
5487
5545
|
getSyncUrl: (body: {
|
|
5488
5546
|
syncid: string;
|
|
5489
5547
|
integrationids?: string[] | undefined;
|
|
5548
|
+
link_metadata?: Record<string, never> | undefined;
|
|
5490
5549
|
}) => Promise<{
|
|
5491
5550
|
url: string;
|
|
5492
5551
|
}>;
|
|
@@ -5538,6 +5597,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
5538
5597
|
name?: string | undefined;
|
|
5539
5598
|
total: number;
|
|
5540
5599
|
}[] | undefined;
|
|
5600
|
+
product_id?: string | undefined;
|
|
5541
5601
|
}[];
|
|
5542
5602
|
payments: {
|
|
5543
5603
|
id?: string | undefined;
|
|
@@ -5604,6 +5664,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
5604
5664
|
name?: string | undefined;
|
|
5605
5665
|
total: number;
|
|
5606
5666
|
}[] | undefined;
|
|
5667
|
+
product_id?: string | undefined;
|
|
5607
5668
|
}[];
|
|
5608
5669
|
payments: {
|
|
5609
5670
|
id?: string | undefined;
|
|
@@ -5685,6 +5746,22 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
5685
5746
|
name: string;
|
|
5686
5747
|
extra?: string | undefined;
|
|
5687
5748
|
}[]>;
|
|
5749
|
+
getProductCategories(params: {}): import("../types/api").RequestData<{
|
|
5750
|
+
id: string;
|
|
5751
|
+
name: string;
|
|
5752
|
+
description?: string | undefined;
|
|
5753
|
+
id_parent?: string | undefined;
|
|
5754
|
+
}[]>;
|
|
5755
|
+
getProducts(params: {}): import("../types/api").RequestData<{
|
|
5756
|
+
id: string;
|
|
5757
|
+
categories?: string[] | undefined;
|
|
5758
|
+
name: string;
|
|
5759
|
+
description?: string | undefined;
|
|
5760
|
+
prices: {
|
|
5761
|
+
unit_price: number;
|
|
5762
|
+
tax_rate: number;
|
|
5763
|
+
}[];
|
|
5764
|
+
}[]>;
|
|
5688
5765
|
getSales(params: {
|
|
5689
5766
|
date_from: string;
|
|
5690
5767
|
date_to: string;
|
|
@@ -5743,6 +5820,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
5743
5820
|
name?: string | undefined;
|
|
5744
5821
|
total: number;
|
|
5745
5822
|
}[] | undefined;
|
|
5823
|
+
product_id?: string | undefined;
|
|
5746
5824
|
}[];
|
|
5747
5825
|
payments: {
|
|
5748
5826
|
id?: string | undefined;
|
|
@@ -6578,21 +6656,21 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
6578
6656
|
name: string;
|
|
6579
6657
|
currency: string;
|
|
6580
6658
|
}): import("../types/api").RequestData<{
|
|
6581
|
-
|
|
6659
|
+
id: string;
|
|
6660
|
+
active: boolean;
|
|
6582
6661
|
code?: string | undefined;
|
|
6583
|
-
name
|
|
6662
|
+
name: string;
|
|
6584
6663
|
currency?: string | undefined;
|
|
6585
|
-
id?: string | undefined;
|
|
6586
6664
|
balance?: number | undefined;
|
|
6587
6665
|
credit?: number | undefined;
|
|
6588
6666
|
debit?: number | undefined;
|
|
6589
6667
|
}>;
|
|
6590
6668
|
getAnalyticAccounts(): import("../types/api").RequestData<{
|
|
6591
|
-
|
|
6669
|
+
id: string;
|
|
6670
|
+
active: boolean;
|
|
6592
6671
|
code?: string | undefined;
|
|
6593
|
-
name
|
|
6672
|
+
name: string;
|
|
6594
6673
|
currency?: string | undefined;
|
|
6595
|
-
id?: string | undefined;
|
|
6596
6674
|
balance?: number | undefined;
|
|
6597
6675
|
credit?: number | undefined;
|
|
6598
6676
|
debit?: number | undefined;
|
|
@@ -6603,22 +6681,22 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
6603
6681
|
name: string;
|
|
6604
6682
|
currency: string;
|
|
6605
6683
|
}): import("../types/api").RequestData<{
|
|
6606
|
-
|
|
6684
|
+
id: string;
|
|
6685
|
+
active: boolean;
|
|
6607
6686
|
code?: string | undefined;
|
|
6608
|
-
name
|
|
6687
|
+
name: string;
|
|
6609
6688
|
currency?: string | undefined;
|
|
6610
|
-
id?: string | undefined;
|
|
6611
6689
|
balance?: number | undefined;
|
|
6612
6690
|
credit?: number | undefined;
|
|
6613
6691
|
debit?: number | undefined;
|
|
6614
6692
|
analytic_plan: string;
|
|
6615
6693
|
}>;
|
|
6616
6694
|
getAnalyticAccount(analytic_account_id: string): import("../types/api").RequestData<{
|
|
6617
|
-
|
|
6695
|
+
id: string;
|
|
6696
|
+
active: boolean;
|
|
6618
6697
|
code?: string | undefined;
|
|
6619
|
-
name
|
|
6698
|
+
name: string;
|
|
6620
6699
|
currency?: string | undefined;
|
|
6621
|
-
id?: string | undefined;
|
|
6622
6700
|
balance?: number | undefined;
|
|
6623
6701
|
credit?: number | undefined;
|
|
6624
6702
|
debit?: number | undefined;
|
|
@@ -6629,21 +6707,21 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
6629
6707
|
name?: string | undefined;
|
|
6630
6708
|
currency?: string | undefined;
|
|
6631
6709
|
}): import("../types/api").RequestData<{
|
|
6632
|
-
|
|
6710
|
+
id: string;
|
|
6711
|
+
active: boolean;
|
|
6633
6712
|
code?: string | undefined;
|
|
6634
|
-
name
|
|
6713
|
+
name: string;
|
|
6635
6714
|
currency?: string | undefined;
|
|
6636
|
-
id?: string | undefined;
|
|
6637
6715
|
balance?: number | undefined;
|
|
6638
6716
|
credit?: number | undefined;
|
|
6639
6717
|
debit?: number | undefined;
|
|
6640
6718
|
}>;
|
|
6641
6719
|
getAnalyticAccountWithMultiplePlans(analytic_account_id: string, analytic_plan: string): import("../types/api").RequestData<{
|
|
6642
|
-
|
|
6720
|
+
id: string;
|
|
6721
|
+
active: boolean;
|
|
6643
6722
|
code?: string | undefined;
|
|
6644
|
-
name
|
|
6723
|
+
name: string;
|
|
6645
6724
|
currency?: string | undefined;
|
|
6646
|
-
id?: string | undefined;
|
|
6647
6725
|
balance?: number | undefined;
|
|
6648
6726
|
credit?: number | undefined;
|
|
6649
6727
|
debit?: number | undefined;
|
|
@@ -6655,22 +6733,22 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
6655
6733
|
name?: string | undefined;
|
|
6656
6734
|
currency?: string | undefined;
|
|
6657
6735
|
}): import("../types/api").RequestData<{
|
|
6658
|
-
|
|
6736
|
+
id: string;
|
|
6737
|
+
active: boolean;
|
|
6659
6738
|
code?: string | undefined;
|
|
6660
|
-
name
|
|
6739
|
+
name: string;
|
|
6661
6740
|
currency?: string | undefined;
|
|
6662
|
-
id?: string | undefined;
|
|
6663
6741
|
balance?: number | undefined;
|
|
6664
6742
|
credit?: number | undefined;
|
|
6665
6743
|
debit?: number | undefined;
|
|
6666
6744
|
analytic_plan: string;
|
|
6667
6745
|
}>;
|
|
6668
6746
|
getAnalyticAccountsWithMultiplePlans(): import("../types/api").RequestData<{
|
|
6669
|
-
|
|
6747
|
+
id: string;
|
|
6748
|
+
active: boolean;
|
|
6670
6749
|
code?: string | undefined;
|
|
6671
|
-
name
|
|
6750
|
+
name: string;
|
|
6672
6751
|
currency?: string | undefined;
|
|
6673
|
-
id?: string | undefined;
|
|
6674
6752
|
balance?: number | undefined;
|
|
6675
6753
|
credit?: number | undefined;
|
|
6676
6754
|
debit?: number | undefined;
|
|
@@ -7207,6 +7285,8 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
7207
7285
|
category?: string | undefined;
|
|
7208
7286
|
currency?: string | undefined;
|
|
7209
7287
|
description?: string | undefined;
|
|
7288
|
+
available_quantity?: number | undefined;
|
|
7289
|
+
cost?: number | undefined;
|
|
7210
7290
|
}[]>;
|
|
7211
7291
|
getProductById(productId: string): import("../types/api").RequestData<{
|
|
7212
7292
|
id: string;
|
|
@@ -7222,6 +7302,8 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
7222
7302
|
category?: string | undefined;
|
|
7223
7303
|
currency?: string | undefined;
|
|
7224
7304
|
description?: string | undefined;
|
|
7305
|
+
available_quantity?: number | undefined;
|
|
7306
|
+
cost?: number | undefined;
|
|
7225
7307
|
}>;
|
|
7226
7308
|
createProduct(product: {
|
|
7227
7309
|
name: string;
|
|
@@ -7246,6 +7328,8 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
7246
7328
|
category?: string | undefined;
|
|
7247
7329
|
currency?: string | undefined;
|
|
7248
7330
|
description?: string | undefined;
|
|
7331
|
+
available_quantity?: number | undefined;
|
|
7332
|
+
cost?: number | undefined;
|
|
7249
7333
|
}>;
|
|
7250
7334
|
getTaxes(): import("../types/api").RequestData<{
|
|
7251
7335
|
id: string;
|
|
@@ -7354,7 +7438,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
7354
7438
|
birthdate?: string | undefined;
|
|
7355
7439
|
gender?: "H" | "F" | "N/A" | undefined;
|
|
7356
7440
|
addresses?: {
|
|
7357
|
-
address_type: "main" | "delivery" | "invoice";
|
|
7441
|
+
address_type: "main" | "delivery" | "invoice" | "other";
|
|
7358
7442
|
name?: string | undefined;
|
|
7359
7443
|
number?: string | undefined;
|
|
7360
7444
|
box?: string | undefined;
|
|
@@ -7394,7 +7478,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
7394
7478
|
birthdate?: string | undefined;
|
|
7395
7479
|
gender?: "H" | "F" | "N/A" | undefined;
|
|
7396
7480
|
addresses?: {
|
|
7397
|
-
address_type: "main" | "delivery" | "invoice";
|
|
7481
|
+
address_type: "main" | "delivery" | "invoice" | "other";
|
|
7398
7482
|
name?: string | undefined;
|
|
7399
7483
|
number?: string | undefined;
|
|
7400
7484
|
box?: string | undefined;
|
|
@@ -7429,7 +7513,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
7429
7513
|
birthdate?: string | undefined;
|
|
7430
7514
|
gender?: "H" | "F" | "N/A" | undefined;
|
|
7431
7515
|
addresses?: {
|
|
7432
|
-
address_type: "main" | "delivery" | "invoice";
|
|
7516
|
+
address_type: "main" | "delivery" | "invoice" | "other";
|
|
7433
7517
|
name?: string | undefined;
|
|
7434
7518
|
number?: string | undefined;
|
|
7435
7519
|
box?: string | undefined;
|
|
@@ -7468,7 +7552,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
7468
7552
|
birthdate?: string | undefined;
|
|
7469
7553
|
gender?: "H" | "F" | "N/A" | undefined;
|
|
7470
7554
|
addresses?: {
|
|
7471
|
-
address_type: "main" | "delivery" | "invoice";
|
|
7555
|
+
address_type: "main" | "delivery" | "invoice" | "other";
|
|
7472
7556
|
name?: string | undefined;
|
|
7473
7557
|
number?: string | undefined;
|
|
7474
7558
|
box?: string | undefined;
|
|
@@ -8122,11 +8206,13 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
8122
8206
|
link_mappings?: {
|
|
8123
8207
|
name: string;
|
|
8124
8208
|
description: string;
|
|
8209
|
+
logic?: Record<string, never> | undefined;
|
|
8125
8210
|
values: {
|
|
8126
8211
|
source_id: string;
|
|
8127
8212
|
target_id: string;
|
|
8128
8213
|
}[];
|
|
8129
8214
|
}[] | undefined;
|
|
8215
|
+
link_metadata?: Record<string, never> | undefined;
|
|
8130
8216
|
enabled_flows?: {
|
|
8131
8217
|
name: string;
|
|
8132
8218
|
description?: string | undefined;
|
|
@@ -8151,6 +8237,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
8151
8237
|
}[] | undefined;
|
|
8152
8238
|
} | undefined;
|
|
8153
8239
|
values: Record<string, never>;
|
|
8240
|
+
enabled_on: string;
|
|
8154
8241
|
}[] | undefined;
|
|
8155
8242
|
}>;
|
|
8156
8243
|
getDataByDataStoreName: (dataStoreName: string, params?: object | undefined) => Promise<{
|
|
@@ -8211,6 +8298,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
8211
8298
|
getSyncUrl: (body: {
|
|
8212
8299
|
syncid: string;
|
|
8213
8300
|
integrationids?: string[] | undefined;
|
|
8301
|
+
link_metadata?: Record<string, never> | undefined;
|
|
8214
8302
|
}) => Promise<{
|
|
8215
8303
|
url: string;
|
|
8216
8304
|
}>;
|
|
@@ -8262,6 +8350,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
8262
8350
|
name?: string | undefined;
|
|
8263
8351
|
total: number;
|
|
8264
8352
|
}[] | undefined;
|
|
8353
|
+
product_id?: string | undefined;
|
|
8265
8354
|
}[];
|
|
8266
8355
|
payments: {
|
|
8267
8356
|
id?: string | undefined;
|
|
@@ -8328,6 +8417,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
8328
8417
|
name?: string | undefined;
|
|
8329
8418
|
total: number;
|
|
8330
8419
|
}[] | undefined;
|
|
8420
|
+
product_id?: string | undefined;
|
|
8331
8421
|
}[];
|
|
8332
8422
|
payments: {
|
|
8333
8423
|
id?: string | undefined;
|
|
@@ -8409,6 +8499,22 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
8409
8499
|
name: string;
|
|
8410
8500
|
extra?: string | undefined;
|
|
8411
8501
|
}[]>;
|
|
8502
|
+
getProductCategories(params: {}): import("../types/api").RequestData<{
|
|
8503
|
+
id: string;
|
|
8504
|
+
name: string;
|
|
8505
|
+
description?: string | undefined;
|
|
8506
|
+
id_parent?: string | undefined;
|
|
8507
|
+
}[]>;
|
|
8508
|
+
getProducts(params: {}): import("../types/api").RequestData<{
|
|
8509
|
+
id: string;
|
|
8510
|
+
categories?: string[] | undefined;
|
|
8511
|
+
name: string;
|
|
8512
|
+
description?: string | undefined;
|
|
8513
|
+
prices: {
|
|
8514
|
+
unit_price: number;
|
|
8515
|
+
tax_rate: number;
|
|
8516
|
+
}[];
|
|
8517
|
+
}[]>;
|
|
8412
8518
|
getSales(params: {
|
|
8413
8519
|
date_from: string;
|
|
8414
8520
|
date_to: string;
|
|
@@ -8467,6 +8573,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
8467
8573
|
name?: string | undefined;
|
|
8468
8574
|
total: number;
|
|
8469
8575
|
}[] | undefined;
|
|
8576
|
+
product_id?: string | undefined;
|
|
8470
8577
|
}[];
|
|
8471
8578
|
payments: {
|
|
8472
8579
|
id?: string | undefined;
|
|
@@ -9302,21 +9409,21 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
9302
9409
|
name: string;
|
|
9303
9410
|
currency: string;
|
|
9304
9411
|
}): import("../types/api").RequestData<{
|
|
9305
|
-
|
|
9412
|
+
id: string;
|
|
9413
|
+
active: boolean;
|
|
9306
9414
|
code?: string | undefined;
|
|
9307
|
-
name
|
|
9415
|
+
name: string;
|
|
9308
9416
|
currency?: string | undefined;
|
|
9309
|
-
id?: string | undefined;
|
|
9310
9417
|
balance?: number | undefined;
|
|
9311
9418
|
credit?: number | undefined;
|
|
9312
9419
|
debit?: number | undefined;
|
|
9313
9420
|
}>;
|
|
9314
9421
|
getAnalyticAccounts(): import("../types/api").RequestData<{
|
|
9315
|
-
|
|
9422
|
+
id: string;
|
|
9423
|
+
active: boolean;
|
|
9316
9424
|
code?: string | undefined;
|
|
9317
|
-
name
|
|
9425
|
+
name: string;
|
|
9318
9426
|
currency?: string | undefined;
|
|
9319
|
-
id?: string | undefined;
|
|
9320
9427
|
balance?: number | undefined;
|
|
9321
9428
|
credit?: number | undefined;
|
|
9322
9429
|
debit?: number | undefined;
|
|
@@ -9327,22 +9434,22 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
9327
9434
|
name: string;
|
|
9328
9435
|
currency: string;
|
|
9329
9436
|
}): import("../types/api").RequestData<{
|
|
9330
|
-
|
|
9437
|
+
id: string;
|
|
9438
|
+
active: boolean;
|
|
9331
9439
|
code?: string | undefined;
|
|
9332
|
-
name
|
|
9440
|
+
name: string;
|
|
9333
9441
|
currency?: string | undefined;
|
|
9334
|
-
id?: string | undefined;
|
|
9335
9442
|
balance?: number | undefined;
|
|
9336
9443
|
credit?: number | undefined;
|
|
9337
9444
|
debit?: number | undefined;
|
|
9338
9445
|
analytic_plan: string;
|
|
9339
9446
|
}>;
|
|
9340
9447
|
getAnalyticAccount(analytic_account_id: string): import("../types/api").RequestData<{
|
|
9341
|
-
|
|
9448
|
+
id: string;
|
|
9449
|
+
active: boolean;
|
|
9342
9450
|
code?: string | undefined;
|
|
9343
|
-
name
|
|
9451
|
+
name: string;
|
|
9344
9452
|
currency?: string | undefined;
|
|
9345
|
-
id?: string | undefined;
|
|
9346
9453
|
balance?: number | undefined;
|
|
9347
9454
|
credit?: number | undefined;
|
|
9348
9455
|
debit?: number | undefined;
|
|
@@ -9353,21 +9460,21 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
9353
9460
|
name?: string | undefined;
|
|
9354
9461
|
currency?: string | undefined;
|
|
9355
9462
|
}): import("../types/api").RequestData<{
|
|
9356
|
-
|
|
9463
|
+
id: string;
|
|
9464
|
+
active: boolean;
|
|
9357
9465
|
code?: string | undefined;
|
|
9358
|
-
name
|
|
9466
|
+
name: string;
|
|
9359
9467
|
currency?: string | undefined;
|
|
9360
|
-
id?: string | undefined;
|
|
9361
9468
|
balance?: number | undefined;
|
|
9362
9469
|
credit?: number | undefined;
|
|
9363
9470
|
debit?: number | undefined;
|
|
9364
9471
|
}>;
|
|
9365
9472
|
getAnalyticAccountWithMultiplePlans(analytic_account_id: string, analytic_plan: string): import("../types/api").RequestData<{
|
|
9366
|
-
|
|
9473
|
+
id: string;
|
|
9474
|
+
active: boolean;
|
|
9367
9475
|
code?: string | undefined;
|
|
9368
|
-
name
|
|
9476
|
+
name: string;
|
|
9369
9477
|
currency?: string | undefined;
|
|
9370
|
-
id?: string | undefined;
|
|
9371
9478
|
balance?: number | undefined;
|
|
9372
9479
|
credit?: number | undefined;
|
|
9373
9480
|
debit?: number | undefined;
|
|
@@ -9379,22 +9486,22 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
9379
9486
|
name?: string | undefined;
|
|
9380
9487
|
currency?: string | undefined;
|
|
9381
9488
|
}): import("../types/api").RequestData<{
|
|
9382
|
-
|
|
9489
|
+
id: string;
|
|
9490
|
+
active: boolean;
|
|
9383
9491
|
code?: string | undefined;
|
|
9384
|
-
name
|
|
9492
|
+
name: string;
|
|
9385
9493
|
currency?: string | undefined;
|
|
9386
|
-
id?: string | undefined;
|
|
9387
9494
|
balance?: number | undefined;
|
|
9388
9495
|
credit?: number | undefined;
|
|
9389
9496
|
debit?: number | undefined;
|
|
9390
9497
|
analytic_plan: string;
|
|
9391
9498
|
}>;
|
|
9392
9499
|
getAnalyticAccountsWithMultiplePlans(): import("../types/api").RequestData<{
|
|
9393
|
-
|
|
9500
|
+
id: string;
|
|
9501
|
+
active: boolean;
|
|
9394
9502
|
code?: string | undefined;
|
|
9395
|
-
name
|
|
9503
|
+
name: string;
|
|
9396
9504
|
currency?: string | undefined;
|
|
9397
|
-
id?: string | undefined;
|
|
9398
9505
|
balance?: number | undefined;
|
|
9399
9506
|
credit?: number | undefined;
|
|
9400
9507
|
debit?: number | undefined;
|
|
@@ -9931,6 +10038,8 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
9931
10038
|
category?: string | undefined;
|
|
9932
10039
|
currency?: string | undefined;
|
|
9933
10040
|
description?: string | undefined;
|
|
10041
|
+
available_quantity?: number | undefined;
|
|
10042
|
+
cost?: number | undefined;
|
|
9934
10043
|
}[]>;
|
|
9935
10044
|
getProductById(productId: string): import("../types/api").RequestData<{
|
|
9936
10045
|
id: string;
|
|
@@ -9946,6 +10055,8 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
9946
10055
|
category?: string | undefined;
|
|
9947
10056
|
currency?: string | undefined;
|
|
9948
10057
|
description?: string | undefined;
|
|
10058
|
+
available_quantity?: number | undefined;
|
|
10059
|
+
cost?: number | undefined;
|
|
9949
10060
|
}>;
|
|
9950
10061
|
createProduct(product: {
|
|
9951
10062
|
name: string;
|
|
@@ -9970,6 +10081,8 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
9970
10081
|
category?: string | undefined;
|
|
9971
10082
|
currency?: string | undefined;
|
|
9972
10083
|
description?: string | undefined;
|
|
10084
|
+
available_quantity?: number | undefined;
|
|
10085
|
+
cost?: number | undefined;
|
|
9973
10086
|
}>;
|
|
9974
10087
|
getTaxes(): import("../types/api").RequestData<{
|
|
9975
10088
|
id: string;
|
|
@@ -10078,7 +10191,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
10078
10191
|
birthdate?: string | undefined;
|
|
10079
10192
|
gender?: "H" | "F" | "N/A" | undefined;
|
|
10080
10193
|
addresses?: {
|
|
10081
|
-
address_type: "main" | "delivery" | "invoice";
|
|
10194
|
+
address_type: "main" | "delivery" | "invoice" | "other";
|
|
10082
10195
|
name?: string | undefined;
|
|
10083
10196
|
number?: string | undefined;
|
|
10084
10197
|
box?: string | undefined;
|
|
@@ -10118,7 +10231,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
10118
10231
|
birthdate?: string | undefined;
|
|
10119
10232
|
gender?: "H" | "F" | "N/A" | undefined;
|
|
10120
10233
|
addresses?: {
|
|
10121
|
-
address_type: "main" | "delivery" | "invoice";
|
|
10234
|
+
address_type: "main" | "delivery" | "invoice" | "other";
|
|
10122
10235
|
name?: string | undefined;
|
|
10123
10236
|
number?: string | undefined;
|
|
10124
10237
|
box?: string | undefined;
|
|
@@ -10153,7 +10266,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
10153
10266
|
birthdate?: string | undefined;
|
|
10154
10267
|
gender?: "H" | "F" | "N/A" | undefined;
|
|
10155
10268
|
addresses?: {
|
|
10156
|
-
address_type: "main" | "delivery" | "invoice";
|
|
10269
|
+
address_type: "main" | "delivery" | "invoice" | "other";
|
|
10157
10270
|
name?: string | undefined;
|
|
10158
10271
|
number?: string | undefined;
|
|
10159
10272
|
box?: string | undefined;
|
|
@@ -10192,7 +10305,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
10192
10305
|
birthdate?: string | undefined;
|
|
10193
10306
|
gender?: "H" | "F" | "N/A" | undefined;
|
|
10194
10307
|
addresses?: {
|
|
10195
|
-
address_type: "main" | "delivery" | "invoice";
|
|
10308
|
+
address_type: "main" | "delivery" | "invoice" | "other";
|
|
10196
10309
|
name?: string | undefined;
|
|
10197
10310
|
number?: string | undefined;
|
|
10198
10311
|
box?: string | undefined;
|
|
@@ -10846,11 +10959,13 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
10846
10959
|
link_mappings?: {
|
|
10847
10960
|
name: string;
|
|
10848
10961
|
description: string;
|
|
10962
|
+
logic?: Record<string, never> | undefined;
|
|
10849
10963
|
values: {
|
|
10850
10964
|
source_id: string;
|
|
10851
10965
|
target_id: string;
|
|
10852
10966
|
}[];
|
|
10853
10967
|
}[] | undefined;
|
|
10968
|
+
link_metadata?: Record<string, never> | undefined;
|
|
10854
10969
|
enabled_flows?: {
|
|
10855
10970
|
name: string;
|
|
10856
10971
|
description?: string | undefined;
|
|
@@ -10875,6 +10990,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
10875
10990
|
}[] | undefined;
|
|
10876
10991
|
} | undefined;
|
|
10877
10992
|
values: Record<string, never>;
|
|
10993
|
+
enabled_on: string;
|
|
10878
10994
|
}[] | undefined;
|
|
10879
10995
|
}>;
|
|
10880
10996
|
getDataByDataStoreName: (dataStoreName: string, params?: object | undefined) => Promise<{
|
|
@@ -10935,6 +11051,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
10935
11051
|
getSyncUrl: (body: {
|
|
10936
11052
|
syncid: string;
|
|
10937
11053
|
integrationids?: string[] | undefined;
|
|
11054
|
+
link_metadata?: Record<string, never> | undefined;
|
|
10938
11055
|
}) => Promise<{
|
|
10939
11056
|
url: string;
|
|
10940
11057
|
}>;
|
|
@@ -10986,6 +11103,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
10986
11103
|
name?: string | undefined;
|
|
10987
11104
|
total: number;
|
|
10988
11105
|
}[] | undefined;
|
|
11106
|
+
product_id?: string | undefined;
|
|
10989
11107
|
}[];
|
|
10990
11108
|
payments: {
|
|
10991
11109
|
id?: string | undefined;
|
|
@@ -11052,6 +11170,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
11052
11170
|
name?: string | undefined;
|
|
11053
11171
|
total: number;
|
|
11054
11172
|
}[] | undefined;
|
|
11173
|
+
product_id?: string | undefined;
|
|
11055
11174
|
}[];
|
|
11056
11175
|
payments: {
|
|
11057
11176
|
id?: string | undefined;
|
|
@@ -11133,6 +11252,22 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
11133
11252
|
name: string;
|
|
11134
11253
|
extra?: string | undefined;
|
|
11135
11254
|
}[]>;
|
|
11255
|
+
getProductCategories(params: {}): import("../types/api").RequestData<{
|
|
11256
|
+
id: string;
|
|
11257
|
+
name: string;
|
|
11258
|
+
description?: string | undefined;
|
|
11259
|
+
id_parent?: string | undefined;
|
|
11260
|
+
}[]>;
|
|
11261
|
+
getProducts(params: {}): import("../types/api").RequestData<{
|
|
11262
|
+
id: string;
|
|
11263
|
+
categories?: string[] | undefined;
|
|
11264
|
+
name: string;
|
|
11265
|
+
description?: string | undefined;
|
|
11266
|
+
prices: {
|
|
11267
|
+
unit_price: number;
|
|
11268
|
+
tax_rate: number;
|
|
11269
|
+
}[];
|
|
11270
|
+
}[]>;
|
|
11136
11271
|
getSales(params: {
|
|
11137
11272
|
date_from: string;
|
|
11138
11273
|
date_to: string;
|
|
@@ -11191,6 +11326,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
11191
11326
|
name?: string | undefined;
|
|
11192
11327
|
total: number;
|
|
11193
11328
|
}[] | undefined;
|
|
11329
|
+
product_id?: string | undefined;
|
|
11194
11330
|
}[];
|
|
11195
11331
|
payments: {
|
|
11196
11332
|
id?: string | undefined;
|
|
@@ -12026,21 +12162,21 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
12026
12162
|
name: string;
|
|
12027
12163
|
currency: string;
|
|
12028
12164
|
}): import("../types/api").RequestData<{
|
|
12029
|
-
|
|
12165
|
+
id: string;
|
|
12166
|
+
active: boolean;
|
|
12030
12167
|
code?: string | undefined;
|
|
12031
|
-
name
|
|
12168
|
+
name: string;
|
|
12032
12169
|
currency?: string | undefined;
|
|
12033
|
-
id?: string | undefined;
|
|
12034
12170
|
balance?: number | undefined;
|
|
12035
12171
|
credit?: number | undefined;
|
|
12036
12172
|
debit?: number | undefined;
|
|
12037
12173
|
}>;
|
|
12038
12174
|
getAnalyticAccounts(): import("../types/api").RequestData<{
|
|
12039
|
-
|
|
12175
|
+
id: string;
|
|
12176
|
+
active: boolean;
|
|
12040
12177
|
code?: string | undefined;
|
|
12041
|
-
name
|
|
12178
|
+
name: string;
|
|
12042
12179
|
currency?: string | undefined;
|
|
12043
|
-
id?: string | undefined;
|
|
12044
12180
|
balance?: number | undefined;
|
|
12045
12181
|
credit?: number | undefined;
|
|
12046
12182
|
debit?: number | undefined;
|
|
@@ -12051,22 +12187,22 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
12051
12187
|
name: string;
|
|
12052
12188
|
currency: string;
|
|
12053
12189
|
}): import("../types/api").RequestData<{
|
|
12054
|
-
|
|
12190
|
+
id: string;
|
|
12191
|
+
active: boolean;
|
|
12055
12192
|
code?: string | undefined;
|
|
12056
|
-
name
|
|
12193
|
+
name: string;
|
|
12057
12194
|
currency?: string | undefined;
|
|
12058
|
-
id?: string | undefined;
|
|
12059
12195
|
balance?: number | undefined;
|
|
12060
12196
|
credit?: number | undefined;
|
|
12061
12197
|
debit?: number | undefined;
|
|
12062
12198
|
analytic_plan: string;
|
|
12063
12199
|
}>;
|
|
12064
12200
|
getAnalyticAccount(analytic_account_id: string): import("../types/api").RequestData<{
|
|
12065
|
-
|
|
12201
|
+
id: string;
|
|
12202
|
+
active: boolean;
|
|
12066
12203
|
code?: string | undefined;
|
|
12067
|
-
name
|
|
12204
|
+
name: string;
|
|
12068
12205
|
currency?: string | undefined;
|
|
12069
|
-
id?: string | undefined;
|
|
12070
12206
|
balance?: number | undefined;
|
|
12071
12207
|
credit?: number | undefined;
|
|
12072
12208
|
debit?: number | undefined;
|
|
@@ -12077,21 +12213,21 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
12077
12213
|
name?: string | undefined;
|
|
12078
12214
|
currency?: string | undefined;
|
|
12079
12215
|
}): import("../types/api").RequestData<{
|
|
12080
|
-
|
|
12216
|
+
id: string;
|
|
12217
|
+
active: boolean;
|
|
12081
12218
|
code?: string | undefined;
|
|
12082
|
-
name
|
|
12219
|
+
name: string;
|
|
12083
12220
|
currency?: string | undefined;
|
|
12084
|
-
id?: string | undefined;
|
|
12085
12221
|
balance?: number | undefined;
|
|
12086
12222
|
credit?: number | undefined;
|
|
12087
12223
|
debit?: number | undefined;
|
|
12088
12224
|
}>;
|
|
12089
12225
|
getAnalyticAccountWithMultiplePlans(analytic_account_id: string, analytic_plan: string): import("../types/api").RequestData<{
|
|
12090
|
-
|
|
12226
|
+
id: string;
|
|
12227
|
+
active: boolean;
|
|
12091
12228
|
code?: string | undefined;
|
|
12092
|
-
name
|
|
12229
|
+
name: string;
|
|
12093
12230
|
currency?: string | undefined;
|
|
12094
|
-
id?: string | undefined;
|
|
12095
12231
|
balance?: number | undefined;
|
|
12096
12232
|
credit?: number | undefined;
|
|
12097
12233
|
debit?: number | undefined;
|
|
@@ -12103,22 +12239,22 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
12103
12239
|
name?: string | undefined;
|
|
12104
12240
|
currency?: string | undefined;
|
|
12105
12241
|
}): import("../types/api").RequestData<{
|
|
12106
|
-
|
|
12242
|
+
id: string;
|
|
12243
|
+
active: boolean;
|
|
12107
12244
|
code?: string | undefined;
|
|
12108
|
-
name
|
|
12245
|
+
name: string;
|
|
12109
12246
|
currency?: string | undefined;
|
|
12110
|
-
id?: string | undefined;
|
|
12111
12247
|
balance?: number | undefined;
|
|
12112
12248
|
credit?: number | undefined;
|
|
12113
12249
|
debit?: number | undefined;
|
|
12114
12250
|
analytic_plan: string;
|
|
12115
12251
|
}>;
|
|
12116
12252
|
getAnalyticAccountsWithMultiplePlans(): import("../types/api").RequestData<{
|
|
12117
|
-
|
|
12253
|
+
id: string;
|
|
12254
|
+
active: boolean;
|
|
12118
12255
|
code?: string | undefined;
|
|
12119
|
-
name
|
|
12256
|
+
name: string;
|
|
12120
12257
|
currency?: string | undefined;
|
|
12121
|
-
id?: string | undefined;
|
|
12122
12258
|
balance?: number | undefined;
|
|
12123
12259
|
credit?: number | undefined;
|
|
12124
12260
|
debit?: number | undefined;
|
|
@@ -12655,6 +12791,8 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
12655
12791
|
category?: string | undefined;
|
|
12656
12792
|
currency?: string | undefined;
|
|
12657
12793
|
description?: string | undefined;
|
|
12794
|
+
available_quantity?: number | undefined;
|
|
12795
|
+
cost?: number | undefined;
|
|
12658
12796
|
}[]>;
|
|
12659
12797
|
getProductById(productId: string): import("../types/api").RequestData<{
|
|
12660
12798
|
id: string;
|
|
@@ -12670,6 +12808,8 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
12670
12808
|
category?: string | undefined;
|
|
12671
12809
|
currency?: string | undefined;
|
|
12672
12810
|
description?: string | undefined;
|
|
12811
|
+
available_quantity?: number | undefined;
|
|
12812
|
+
cost?: number | undefined;
|
|
12673
12813
|
}>;
|
|
12674
12814
|
createProduct(product: {
|
|
12675
12815
|
name: string;
|
|
@@ -12694,6 +12834,8 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
12694
12834
|
category?: string | undefined;
|
|
12695
12835
|
currency?: string | undefined;
|
|
12696
12836
|
description?: string | undefined;
|
|
12837
|
+
available_quantity?: number | undefined;
|
|
12838
|
+
cost?: number | undefined;
|
|
12697
12839
|
}>;
|
|
12698
12840
|
getTaxes(): import("../types/api").RequestData<{
|
|
12699
12841
|
id: string;
|
|
@@ -12802,7 +12944,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
12802
12944
|
birthdate?: string | undefined;
|
|
12803
12945
|
gender?: "H" | "F" | "N/A" | undefined;
|
|
12804
12946
|
addresses?: {
|
|
12805
|
-
address_type: "main" | "delivery" | "invoice";
|
|
12947
|
+
address_type: "main" | "delivery" | "invoice" | "other";
|
|
12806
12948
|
name?: string | undefined;
|
|
12807
12949
|
number?: string | undefined;
|
|
12808
12950
|
box?: string | undefined;
|
|
@@ -12842,7 +12984,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
12842
12984
|
birthdate?: string | undefined;
|
|
12843
12985
|
gender?: "H" | "F" | "N/A" | undefined;
|
|
12844
12986
|
addresses?: {
|
|
12845
|
-
address_type: "main" | "delivery" | "invoice";
|
|
12987
|
+
address_type: "main" | "delivery" | "invoice" | "other";
|
|
12846
12988
|
name?: string | undefined;
|
|
12847
12989
|
number?: string | undefined;
|
|
12848
12990
|
box?: string | undefined;
|
|
@@ -12877,7 +13019,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
12877
13019
|
birthdate?: string | undefined;
|
|
12878
13020
|
gender?: "H" | "F" | "N/A" | undefined;
|
|
12879
13021
|
addresses?: {
|
|
12880
|
-
address_type: "main" | "delivery" | "invoice";
|
|
13022
|
+
address_type: "main" | "delivery" | "invoice" | "other";
|
|
12881
13023
|
name?: string | undefined;
|
|
12882
13024
|
number?: string | undefined;
|
|
12883
13025
|
box?: string | undefined;
|
|
@@ -12916,7 +13058,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
12916
13058
|
birthdate?: string | undefined;
|
|
12917
13059
|
gender?: "H" | "F" | "N/A" | undefined;
|
|
12918
13060
|
addresses?: {
|
|
12919
|
-
address_type: "main" | "delivery" | "invoice";
|
|
13061
|
+
address_type: "main" | "delivery" | "invoice" | "other";
|
|
12920
13062
|
name?: string | undefined;
|
|
12921
13063
|
number?: string | undefined;
|
|
12922
13064
|
box?: string | undefined;
|
|
@@ -13570,11 +13712,13 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
13570
13712
|
link_mappings?: {
|
|
13571
13713
|
name: string;
|
|
13572
13714
|
description: string;
|
|
13715
|
+
logic?: Record<string, never> | undefined;
|
|
13573
13716
|
values: {
|
|
13574
13717
|
source_id: string;
|
|
13575
13718
|
target_id: string;
|
|
13576
13719
|
}[];
|
|
13577
13720
|
}[] | undefined;
|
|
13721
|
+
link_metadata?: Record<string, never> | undefined;
|
|
13578
13722
|
enabled_flows?: {
|
|
13579
13723
|
name: string;
|
|
13580
13724
|
description?: string | undefined;
|
|
@@ -13599,6 +13743,7 @@ declare const Consumers: (internalApi: InternalAPI) => {
|
|
|
13599
13743
|
}[] | undefined;
|
|
13600
13744
|
} | undefined;
|
|
13601
13745
|
values: Record<string, never>;
|
|
13746
|
+
enabled_on: string;
|
|
13602
13747
|
}[] | undefined;
|
|
13603
13748
|
}>;
|
|
13604
13749
|
getDataByDataStoreName: (dataStoreName: string, params?: object | undefined) => Promise<{
|