@opencxh/domain 1.239.0 → 1.241.0
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/entities/catalog/codes.d.ts +32 -0
- package/dist/entities/catalog/codes.test.d.ts +1 -0
- package/dist/entities/catalog/index.d.ts +3 -0
- package/dist/entities/catalog/pricing.d.ts +40 -0
- package/dist/entities/catalog/pricing.test.d.ts +1 -0
- package/dist/entities/catalog/types.d.ts +107 -0
- package/dist/entities/company/types.d.ts +4 -0
- package/dist/entities/contact/types.d.ts +13 -0
- package/dist/entities/money/index.d.ts +3 -0
- package/dist/entities/money/money.d.ts +66 -0
- package/dist/entities/money/money.test.d.ts +1 -0
- package/dist/entities/money/tax.d.ts +33 -0
- package/dist/entities/money/totals.d.ts +34 -0
- package/dist/entities/money/totals.test.d.ts +1 -0
- package/dist/entities/transaction/convert.d.ts +38 -0
- package/dist/entities/transaction/convert.test.d.ts +1 -0
- package/dist/entities/transaction/index.d.ts +4 -0
- package/dist/entities/transaction/keys.d.ts +16 -0
- package/dist/entities/transaction/kinds.d.ts +32 -0
- package/dist/entities/transaction/kinds.test.d.ts +1 -0
- package/dist/entities/transaction/types.d.ts +126 -0
- package/dist/index.cjs +19 -19
- package/dist/index.d.ts +4 -1
- package/dist/index.js +1857 -1580
- package/dist/platform/connector.d.ts +47 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ export * from './entities/artifact';
|
|
|
11
11
|
export * from './entities/assignment';
|
|
12
12
|
export * from './entities/attribute';
|
|
13
13
|
export * from './entities/calendar-event';
|
|
14
|
+
export * from './entities/catalog';
|
|
14
15
|
export * from './entities/channel';
|
|
15
16
|
export * from './entities/communication';
|
|
16
17
|
export * from './entities/company';
|
|
@@ -26,6 +27,7 @@ export * from './entities/kb';
|
|
|
26
27
|
export * from './entities/live-lens';
|
|
27
28
|
export * from './entities/mcp';
|
|
28
29
|
export * from './entities/memory';
|
|
30
|
+
export * from './entities/money';
|
|
29
31
|
export * from './entities/onboarding';
|
|
30
32
|
export * from './entities/organization';
|
|
31
33
|
export * from './entities/planning';
|
|
@@ -39,6 +41,7 @@ export * from './entities/strategy';
|
|
|
39
41
|
export * from './entities/team';
|
|
40
42
|
export * from './entities/time-entry';
|
|
41
43
|
export * from './entities/topic';
|
|
44
|
+
export * from './entities/transaction';
|
|
42
45
|
export * from './entities/user';
|
|
43
46
|
export * from './entities/webhook';
|
|
44
47
|
export * from './entities/work';
|
|
@@ -55,9 +58,9 @@ export * from './platform/common';
|
|
|
55
58
|
export * from './platform/communication';
|
|
56
59
|
export * from './platform/connector';
|
|
57
60
|
export * from './platform/context';
|
|
58
|
-
export * from './platform/document-operations';
|
|
59
61
|
export * from './platform/document-blocks';
|
|
60
62
|
export * from './platform/document-markdown';
|
|
63
|
+
export * from './platform/document-operations';
|
|
61
64
|
export * from './platform/document-parse';
|
|
62
65
|
export * from './platform/document-text';
|
|
63
66
|
export * from './platform/documents';
|