From c8848cd5303be5eb05c47f0412ff6c4d2f5270ee Mon Sep 17 00:00:00 2001 From: Joshua LeBlanc Date: Thu, 17 Oct 2024 07:14:25 -0300 Subject: [PATCH 1/3] add expose_access_log --- env.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/env.d.ts b/env.d.ts index 7892a96..bd82fc0 100644 --- a/env.d.ts +++ b/env.d.ts @@ -629,6 +629,7 @@ type Lowsec = Midsec & PlayerLowsec & { (args: { i: number | number[], to: string, memo?: string }): ScriptResponse (args: { sn: string | string[], to: string, memo?: string }): ScriptResponse } + /** ** LOWSEC** */ expose_access_log: (args: { target: string }) => ScriptResponse } } From 36f259ea86c4c598b22eb7be50194ea75b7c1a0a Mon Sep 17 00:00:00 2001 From: Joshua LeBlanc Date: Thu, 17 Oct 2024 07:20:54 -0300 Subject: [PATCH 2/3] add xfer_gc_from and expose_balance --- env.d.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/env.d.ts b/env.d.ts index bd82fc0..f4f76d9 100644 --- a/env.d.ts +++ b/env.d.ts @@ -629,7 +629,9 @@ type Lowsec = Midsec & PlayerLowsec & { (args: { i: number | number[], to: string, memo?: string }): ScriptResponse (args: { sn: string | string[], to: string, memo?: string }): ScriptResponse } - /** ** LOWSEC** */ expose_access_log: (args: { target: string }) => ScriptResponse + /** **LOWSEC** */ expose_access_log: (args: { target: string }) => ScriptResponse + /** **LOWSEC** */ xfer_gc_from: (args: { target: string, amount: number | string }) => ScriptResponse + /** **LOWSEC */ expose_balance: (args: { target: string }) => ScriptResponse } } From b39e3b0cd26197faadb6141d38d95dc4100aca11 Mon Sep 17 00:00:00 2001 From: Samual Norman Date: Thu, 17 Oct 2024 11:31:07 +0100 Subject: [PATCH 3/3] fix jsdoc --- env.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/env.d.ts b/env.d.ts index f4f76d9..42cc908 100644 --- a/env.d.ts +++ b/env.d.ts @@ -631,7 +631,7 @@ type Lowsec = Midsec & PlayerLowsec & { } /** **LOWSEC** */ expose_access_log: (args: { target: string }) => ScriptResponse /** **LOWSEC** */ xfer_gc_from: (args: { target: string, amount: number | string }) => ScriptResponse - /** **LOWSEC */ expose_balance: (args: { target: string }) => ScriptResponse + /** **LOWSEC** */ expose_balance: (args: { target: string }) => ScriptResponse } }