event-store-adapter-js 2.2.160 → 2.2.161-snapshot.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "event-store-adapter-js",
3
- "version": "2.2.160",
3
+ "version": "2.2.161-snapshot.2",
4
4
  "description": "This library is designed to turn DynamoDB into an Event Store for Event Sourcing.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -0,0 +1,3 @@
1
+ #!/bin/bash
2
+
3
+ claude --dangerously-skip-permissions
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+
3
+ SCRIPT_DIR=$(cd "$(dirname "$0")" && pwd)
4
+ REPO_ROOT=$(cd "${SCRIPT_DIR}/.." && pwd)
5
+ echo $REPO_ROOT
6
+ export CODEX_HOME=${REPO_ROOT}/.codex
7
+ codex --dangerously-bypass-approvals-and-sandbox
@@ -1,35 +0,0 @@
1
- name: OpenAI Reviewer
2
- permissions:
3
- contents: read
4
- pull-requests: write
5
- on:
6
- pull_request_target:
7
- types: [opened, synchronize, reopened]
8
- pull_request_review_comment:
9
- types: [created]
10
- concurrency:
11
- group:
12
- ${{ github.repository }}-${{ github.event.number || github.head_ref ||
13
- github.sha }}-${{ github.workflow }}-${{ github.event_name ==
14
- 'pull_request_review_comment' && 'pr_comment' || 'pr' }}
15
- cancel-in-progress: ${{ github.event_name != 'pull_request_review_comment' }}
16
- jobs:
17
- review:
18
- runs-on: ubuntu-latest
19
- timeout-minutes: 15
20
- if: "!contains(github.event.pull_request.labels.*.name, 'renovate')"
21
- steps:
22
- - uses: coderabbitai/openai-pr-reviewer@latest
23
- env:
24
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
25
- OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
26
- with:
27
- debug: false
28
- review_simple_changes: false
29
- review_comment_lgtm: false
30
- openai_light_model: gpt-4
31
- openai_heavy_model: gpt-4
32
- openai_timeout_ms: 900000
33
- path_filters: |
34
- !dist/**
35
- !**/*.lock