@chift/chift-nodejs 1.0.30 → 1.0.32
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/src/modules/accounting.d.ts +2 -2
- package/dist/src/modules/api.d.ts +293 -91
- package/dist/src/modules/consumer.d.ts +57 -19
- package/dist/src/modules/consumers.d.ts +285 -90
- package/dist/src/modules/datastores.d.ts +3 -0
- package/dist/src/modules/ecommerce.d.ts +2 -2
- package/dist/src/modules/integrations.d.ts +5 -1
- package/dist/src/modules/internalApi.js +8 -1
- package/dist/src/modules/invoicing.d.ts +1 -1
- package/dist/src/modules/payment.d.ts +1 -1
- package/dist/src/modules/pos.d.ts +1 -1
- package/dist/src/modules/sync.d.ts +228 -72
- package/dist/src/types/public-api/schema.d.ts +1599 -1274
- package/package.json +1 -1
- package/src/types/public-api/schema.d.ts +1599 -1274
|
@@ -33,10 +33,10 @@ declare const accountingFactory: {
|
|
|
33
33
|
updateSupplier(supplierId: string, supplier: components['schemas']['SupplierItemUpdate'], params?: operations['accounting_update_supplier']['parameters']['query'], options?: ClientRequestOption): RequestData<components['schemas']['SupplierItemOut']>;
|
|
34
34
|
createInvoice(invoice: components['schemas']['InvoiceItemInMonoAnalyticPlan'], params?: operations['accounting_create_invoice']['parameters']['query'], options?: ClientRequestOption): RequestData<components['schemas']['InvoiceItemOutMonoAnalyticPlan']>;
|
|
35
35
|
createInvoiceWithMultiplePlans(invoice: components['schemas']['InvoiceItemInMultiAnalyticPlans'], params?: operations['accounting_create_invoice_multiple_plans']['parameters']['query'], options?: ClientRequestOption): RequestData<components['schemas']['InvoiceItemOutMultiAnalyticPlans']>;
|
|
36
|
-
getInvoicesByType(invoice_type: components['schemas']['
|
|
36
|
+
getInvoicesByType(invoice_type: components['schemas']['InvoiceType'], params?: GetInvoicesByTypeParams, options?: RawDataOption): RequestData<components['schemas']['InvoiceItemOutMonoAnalyticPlan'][]>;
|
|
37
37
|
getInvoice(invoiceId: string, params?: operations['accounting_get_invoice']['parameters']['query'], options?: RawDataOption): RequestData<components['schemas']['InvoiceItemOutMonoAnalyticPlan']>;
|
|
38
38
|
getInvoiceWithMultiplePlans(invoiceId: string, params?: operations['accounting_get_invoice_multi_analytic_plans']['parameters']['query'], options?: RawDataOption): RequestData<components['schemas']['InvoiceItemOutMultiAnalyticPlans']>;
|
|
39
|
-
getInvoicesByTypeWithMultiplePlans(invoice_type: components['schemas']['
|
|
39
|
+
getInvoicesByTypeWithMultiplePlans(invoice_type: components['schemas']['InvoiceType'], params?: GetInvoicesByTypeWithMultiplePlansParams, options?: RawDataOption): RequestData<components['schemas']['InvoiceItemOutMultiAnalyticPlans'][]>;
|
|
40
40
|
createAnalyticAccount(analyticAccount: components['schemas']['AnalyticAccountItemIn'], params?: operations['accounting_create_analytic_account']['parameters']['query'], options?: ClientRequestOption): RequestData<components['schemas']['AnalyticAccountItemOut']>;
|
|
41
41
|
getAnalyticAccounts(params?: GetAnalyticAccountsParams, options?: RawDataOption): RequestData<components['schemas']['AnalyticAccountItemOut'][]>;
|
|
42
42
|
createAnalyticAccountWithMultiplePlans(analytic_plan: string, analyticAccount: components['schemas']['AnalyticAccountItemIn'], params?: operations['accounting_create_analytic_account_multi_plans']['parameters']['query'], options?: ClientRequestOption): RequestData<components['schemas']['AnalyticAccountItemOutMultiAnalyticPlans']>;
|