twenty-sdk 0.1.2 → 0.1.3
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/cli/commands/app-dev.command.d.ts +2 -1
- package/dist/cli/commands/app-logs.command.d.ts +9 -0
- package/dist/cli/commands/app.command.d.ts +1 -0
- package/dist/cli/services/api.service.d.ts +5 -0
- package/dist/cli.cjs +71 -65
- package/dist/cli.mjs +2918 -2821
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +5 -5
- package/package.json +2 -1
package/dist/index.mjs
CHANGED
|
@@ -10575,7 +10575,7 @@ function _f(e, i, a, o = []) {
|
|
|
10575
10575
|
}
|
|
10576
10576
|
ra = void 0;
|
|
10577
10577
|
const No = { ignore: [], replace: [], replaceAfter: [], trim: !1, unknown: "", fixChineseSpacing: !0 };
|
|
10578
|
-
|
|
10578
|
+
let Lf = class {
|
|
10579
10579
|
constructor(i = je(No), a = To) {
|
|
10580
10580
|
this.confOptions = i, this.map = a;
|
|
10581
10581
|
}
|
|
@@ -10657,7 +10657,7 @@ class Lf {
|
|
|
10657
10657
|
const s = this.formatReplaceOption(o.replaceAfter);
|
|
10658
10658
|
return s.length && (n = this.replaceString(n, s)), n;
|
|
10659
10659
|
}
|
|
10660
|
-
}
|
|
10660
|
+
};
|
|
10661
10661
|
const Gw = Object.assign(Object.assign({}, je(No)), { allowedChars: "a-zA-Z0-9-_.~", lowercase: !0, separator: "-", uppercase: !1, fixChineseSpacing: !0 }), Pn = new Lf(), Ss = Pn.transliterate.bind(Pn);
|
|
10662
10662
|
Ss.config = Pn.config.bind(Pn), Ss.setData = Pn.setData.bind(Pn);
|
|
10663
10663
|
const In = new class extends Lf {
|
|
@@ -10797,7 +10797,7 @@ const Ww = "en", Kw = {
|
|
|
10797
10797
|
"zh-TW": "zh-TW"
|
|
10798
10798
|
};
|
|
10799
10799
|
M.CURRENCY + "", M.EMAILS + "", M.LINKS + "", M.PHONES + "", M.FULL_NAME + "", M.ADDRESS + "", M.ACTOR + "", M.RICH_TEXT_V2 + "";
|
|
10800
|
-
M.TEXT, M.FULL_NAME;
|
|
10800
|
+
M.TEXT, M.FULL_NAME, M.UUID;
|
|
10801
10801
|
const qw = {
|
|
10802
10802
|
AED: { label: "UAE dirham" },
|
|
10803
10803
|
AFN: { label: "Afghan afghani" },
|
|
@@ -17534,7 +17534,7 @@ Be().transform((e, i) => {
|
|
|
17534
17534
|
const Ao = (e) => /^{{[^{}]+}}$/.test(e);
|
|
17535
17535
|
Zf();
|
|
17536
17536
|
Zf();
|
|
17537
|
-
const
|
|
17537
|
+
const h3 = {
|
|
17538
17538
|
// TODO: check if activity, activityTarget and comment can be deleted
|
|
17539
17539
|
activityTarget: "20202020-2945-440e-8d1a-f84672d33d5e",
|
|
17540
17540
|
activity: "20202020-39aa-4a89-843b-eb5f2a8b677f",
|
|
@@ -17586,5 +17586,5 @@ export {
|
|
|
17586
17586
|
Bw as OnDeleteAction,
|
|
17587
17587
|
g3 as Relation,
|
|
17588
17588
|
zw as RelationType,
|
|
17589
|
-
|
|
17589
|
+
h3 as STANDARD_OBJECT_UNIVERSAL_IDENTIFIERS
|
|
17590
17590
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "twenty-sdk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"main": "dist/index.cjs",
|
|
5
5
|
"module": "dist/index.mjs",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -38,6 +38,7 @@
|
|
|
38
38
|
"dotenv": "^16.4.0",
|
|
39
39
|
"fs-extra": "^11.2.0",
|
|
40
40
|
"graphql": "^16.8.1",
|
|
41
|
+
"graphql-sse": "^2.5.4",
|
|
41
42
|
"inquirer": "^10.0.0",
|
|
42
43
|
"jsonc-parser": "^3.2.0",
|
|
43
44
|
"lodash.camelcase": "^4.3.0",
|