@vm0/cli 9.103.2 → 9.104.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/{chunk-M2EPCU5K.js → chunk-FKDGKPGQ.js} +21 -4
- package/{chunk-M2EPCU5K.js.map → chunk-FKDGKPGQ.js.map} +1 -1
- package/index.js +10 -10
- package/package.json +1 -1
- package/zero.js +74 -59
- package/zero.js.map +1 -1
|
@@ -49,7 +49,7 @@ if (DSN) {
|
|
|
49
49
|
Sentry.init({
|
|
50
50
|
dsn: DSN,
|
|
51
51
|
environment: process.env.SENTRY_ENVIRONMENT ?? "production",
|
|
52
|
-
release: "9.
|
|
52
|
+
release: "9.104.0",
|
|
53
53
|
sendDefaultPii: false,
|
|
54
54
|
tracesSampleRate: 0,
|
|
55
55
|
shutdownTimeout: 500,
|
|
@@ -68,7 +68,7 @@ if (DSN) {
|
|
|
68
68
|
}
|
|
69
69
|
});
|
|
70
70
|
Sentry.setContext("cli", {
|
|
71
|
-
version: "9.
|
|
71
|
+
version: "9.104.0",
|
|
72
72
|
command: process.argv.slice(2).join(" ")
|
|
73
73
|
});
|
|
74
74
|
Sentry.setContext("runtime", {
|
|
@@ -22987,6 +22987,20 @@ var xeroFirewall = {
|
|
|
22987
22987
|
XERO_TOKEN: "CoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLocalCoffeeSaf"
|
|
22988
22988
|
},
|
|
22989
22989
|
apis: [
|
|
22990
|
+
{
|
|
22991
|
+
base: "https://api.xero.com",
|
|
22992
|
+
auth: {
|
|
22993
|
+
headers: {
|
|
22994
|
+
Authorization: "Bearer ${{ secrets.XERO_TOKEN }}"
|
|
22995
|
+
}
|
|
22996
|
+
},
|
|
22997
|
+
permissions: [
|
|
22998
|
+
{
|
|
22999
|
+
name: "connections",
|
|
23000
|
+
rules: ["GET /Connections", "DELETE /Connections/{id}"]
|
|
23001
|
+
}
|
|
23002
|
+
]
|
|
23003
|
+
},
|
|
22990
23004
|
{
|
|
22991
23005
|
base: "https://api.xero.com/api.xro/2.0",
|
|
22992
23006
|
auth: {
|
|
@@ -27551,6 +27565,7 @@ var onboardingSetupContract = c15.router({
|
|
|
27551
27565
|
responses: {
|
|
27552
27566
|
200: z25.object({ agentId: z25.string() }),
|
|
27553
27567
|
401: apiErrorSchema,
|
|
27568
|
+
403: apiErrorSchema,
|
|
27554
27569
|
409: z25.object({ agentId: z25.string() }),
|
|
27555
27570
|
422: apiErrorSchema
|
|
27556
27571
|
},
|
|
@@ -29614,6 +29629,7 @@ var zeroAskUserAnswerContract = c39.router({
|
|
|
29614
29629
|
responses: {
|
|
29615
29630
|
200: askUserAnswerResponseSchema,
|
|
29616
29631
|
401: apiErrorSchema,
|
|
29632
|
+
403: apiErrorSchema,
|
|
29617
29633
|
404: apiErrorSchema
|
|
29618
29634
|
},
|
|
29619
29635
|
summary: "Poll for the user's answer to a pending question"
|
|
@@ -29643,7 +29659,8 @@ var zeroDeveloperSupportContract = c40.router({
|
|
|
29643
29659
|
responses: {
|
|
29644
29660
|
200: z47.union([consentCodeResponseSchema, submitResponseSchema]),
|
|
29645
29661
|
400: apiErrorSchema,
|
|
29646
|
-
401: apiErrorSchema
|
|
29662
|
+
401: apiErrorSchema,
|
|
29663
|
+
403: apiErrorSchema
|
|
29647
29664
|
},
|
|
29648
29665
|
summary: "Developer support: consent code generation or diagnostic submission"
|
|
29649
29666
|
}
|
|
@@ -32227,4 +32244,4 @@ export {
|
|
|
32227
32244
|
parseTime,
|
|
32228
32245
|
paginate
|
|
32229
32246
|
};
|
|
32230
|
-
//# sourceMappingURL=chunk-
|
|
32247
|
+
//# sourceMappingURL=chunk-FKDGKPGQ.js.map
|