suttacentral-api 2.18.0 → 2.24.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/.github/workflows/schedule-actions.yml +6 -7
- package/CLAUDE.md +20 -0
- package/Makefile +9 -0
- package/WORK.md +31 -0
- package/api/sc.suttaplex/03/032c1f85d698efca074f1544d784b951.json +1 -1
- package/api/sc.suttaplex/09/09d0161b24cd7d77f7122cab6a4b0d2a.json +14 -0
- package/api/sc.suttaplex/16/1688b0ab86068b910f623991dbb20d3b.json +14 -0
- package/api/sc.suttaplex/22/22697a45242394ce62ee333bf959f7aa.json +14 -0
- package/api/sc.suttaplex/23/2341d1ccaa0466d484767104479d4575.json +1 -1
- package/api/sc.suttaplex/2c/2ce7758e52bb575dec64c256beaf12d2.json +14 -0
- package/api/sc.suttaplex/34/34531a35b592f76314c200ec59e0953f.json +14 -0
- package/api/sc.suttaplex/37/37d0cf540ccc6bbe0da72733cdd315c0.json +14 -0
- package/api/sc.suttaplex/40/4036ea24219246cb462afcf3ff1a1a0c.json +14 -0
- package/api/sc.suttaplex/49/494ebdf89fc3087fb2ea4af71ecefbd0.json +14 -0
- package/api/sc.suttaplex/57/57ca8405e2a9acd9163c927c7f0c2f20.json +14 -0
- package/api/sc.suttaplex/5c/5c41d3d18d09119e3f390725970d968d.json +14 -0
- package/api/sc.suttaplex/65/656a22a75515a5d37a1d3521beb3610e.json +14 -0
- package/api/sc.suttaplex/66/66db1c7e660926af6a8afdf6a3367449.json +14 -0
- package/api/sc.suttaplex/68/687eaa72f8cbf1df8705db8442fa6924.json +14 -0
- package/api/sc.suttaplex/70/70e3db892498e695016b84c828784525.json +1 -1
- package/api/sc.suttaplex/7a/7a16aeb9ada7e42785d3c63b6c687543.json +14 -0
- package/api/sc.suttaplex/7d/7d83fe3226c84db7cf639fb4f84043cd.json +14 -0
- package/api/sc.suttaplex/7f/7f300ed1bd03148e4950a7bb4e90fd02.json +14 -0
- package/api/sc.suttaplex/85/85a7782badd72872f26fb6e7c6628126.json +14 -0
- package/api/sc.suttaplex/85/85b793acf4730966fb142df7bcea2812.json +14 -0
- package/api/sc.suttaplex/86/8621755a1b26acd6cd074806a0bff20d.json +1 -1
- package/api/sc.suttaplex/98/9896b150cfe1dadcdd422a40ede1f208.json +14 -0
- package/api/sc.suttaplex/a3/a30cb6dad950539148c202a86dd566cd.json +1 -1
- package/api/sc.suttaplex/b1/b1fde9658e303ed3680368b058c2f289.json +14 -0
- package/api/sc.suttaplex/b8/b8255f3f1307424a19fb7c5d068d8000.json +14 -0
- package/api/sc.suttaplex/b8/b89ac690e63ef5f656323c757e9bca7c.json +14 -0
- package/api/sc.suttaplex/ca/ca8d1a68a41dc01c36d8934656755bf9.json +1 -1
- package/api/sc.suttaplex/ce/ce83ecc27248483728f9739118b81995.json +14 -0
- package/api/sc.suttaplex/d8/d84f8628274332981707709ec0253455.json +14 -0
- package/api/sc.suttaplex/e1/e10d943791e287036bf32cb087fe517b.json +14 -0
- package/api/sc.suttaplex/ed/ed6ab20da371afa838e3558f452e7d36.json +1 -1
- package/api/sc.suttaplex/f6/f67bc15179c1c39bf85f98e7de26b9d5.json +14 -0
- package/package.json +1 -1
|
@@ -2,22 +2,21 @@ name: schedule-actions
|
|
|
2
2
|
on:
|
|
3
3
|
schedule:
|
|
4
4
|
- cron: 0 12 * * *
|
|
5
|
+
workflow_dispatch: # Allows manual trigger from Github UI
|
|
5
6
|
jobs:
|
|
6
7
|
build-job:
|
|
7
8
|
timeout-minutes: 30
|
|
8
9
|
runs-on: ubuntu-latest
|
|
9
10
|
permissions:
|
|
10
|
-
id-token: write
|
|
11
|
-
contents:
|
|
11
|
+
id-token: write # OIDC npm
|
|
12
|
+
contents: write
|
|
12
13
|
steps:
|
|
13
|
-
- uses: actions/checkout@
|
|
14
|
-
- uses: actions/setup-node@
|
|
14
|
+
- uses: actions/checkout@v6
|
|
15
|
+
- uses: actions/setup-node@v6
|
|
15
16
|
with:
|
|
16
17
|
node-version: '20.x'
|
|
17
|
-
registry-url: 'https://registry.npmjs.org'
|
|
18
|
+
#registry-url: 'https://registry.npmjs.org'
|
|
18
19
|
- run: scripts/install
|
|
19
20
|
- run: git config user.name github-actions
|
|
20
21
|
- run: git config user.email github-actions@github.com
|
|
21
22
|
- run: npm run build
|
|
22
|
-
env:
|
|
23
|
-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
package/CLAUDE.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# sc-api CLAUDE.md
|
|
2
|
+
|
|
3
|
+
## Objective
|
|
4
|
+
|
|
5
|
+
Make sc-api compatible with Node 24.x to support OIDC npm publishing in dependent projects.
|
|
6
|
+
|
|
7
|
+
## Context
|
|
8
|
+
|
|
9
|
+
- Current: mocha 10.2.0, no explicit Node version constraints
|
|
10
|
+
- Goal: Ensure sc-api works with Node 24.x (npm 11.6.2+)
|
|
11
|
+
- Reason: Dependent projects need Node 24 for OIDC token generation with npmjs.org
|
|
12
|
+
- sc-api is a dependency of scv-bilara and other modules
|
|
13
|
+
|
|
14
|
+
## Backlog
|
|
15
|
+
|
|
16
|
+
1. ✓ Test sc-api against Node 24.x locally (DONE - all 26 tests pass)
|
|
17
|
+
2. ✓ Update devDependencies if needed (DONE - found not needed)
|
|
18
|
+
3. ✓ Add Node version constraint to package.json (DONE - found not needed)
|
|
19
|
+
4. ✓ Run full test suite on Node 24.x (DONE)
|
|
20
|
+
5. [ ] Publish updated sc-api to npm
|
package/Makefile
ADDED
package/WORK.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# WORK.md
|
|
2
|
+
|
|
3
|
+
**Build**: 2.23.0
|
|
4
|
+
**Status**: Planning
|
|
5
|
+
**Started**: 2025-12-16
|
|
6
|
+
|
|
7
|
+
## Objective
|
|
8
|
+
|
|
9
|
+
Test sc-api local compatibility with Node.js v24
|
|
10
|
+
|
|
11
|
+
## Plan
|
|
12
|
+
|
|
13
|
+
1. [ ] Check current Node version locally
|
|
14
|
+
2. [ ] Switch to Node 24.x (using nvm)
|
|
15
|
+
3. [ ] Run `npm install`
|
|
16
|
+
4. [ ] Run `npm test` to verify all tests pass on Node 24
|
|
17
|
+
5. [ ] Document any failures or compatibility issues
|
|
18
|
+
6. [ ] Claude proposes next action
|
|
19
|
+
|
|
20
|
+
## Current Step
|
|
21
|
+
|
|
22
|
+
Waiting for approval to proceed with testing
|
|
23
|
+
|
|
24
|
+
## Blockers
|
|
25
|
+
|
|
26
|
+
None
|
|
27
|
+
|
|
28
|
+
## Notes
|
|
29
|
+
|
|
30
|
+
- Target: Ensure sc-api works with Node 24.x (npm 11.6.2+)
|
|
31
|
+
- Dependency chain: sc-api → scv-bilara → (OIDC publishing)
|
|
@@ -203,6 +203,20 @@
|
|
|
203
203
|
"volpage": null,
|
|
204
204
|
"has_comment": false
|
|
205
205
|
},
|
|
206
|
+
{
|
|
207
|
+
"lang": "sr",
|
|
208
|
+
"lang_name": "Srpski",
|
|
209
|
+
"is_root": false,
|
|
210
|
+
"author": "Branislav Kovačević",
|
|
211
|
+
"author_short": "brankokovacevic",
|
|
212
|
+
"author_uid": "brankokovacevic",
|
|
213
|
+
"publication_date": "2023",
|
|
214
|
+
"id": "sn9.6_translation-sr-brankokovacevic",
|
|
215
|
+
"segmented": true,
|
|
216
|
+
"title": "Anuruddha ",
|
|
217
|
+
"volpage": null,
|
|
218
|
+
"has_comment": false
|
|
219
|
+
},
|
|
206
220
|
{
|
|
207
221
|
"lang": "th",
|
|
208
222
|
"lang_name": "ไทย",
|
|
@@ -177,6 +177,20 @@
|
|
|
177
177
|
"volpage": null,
|
|
178
178
|
"has_comment": false
|
|
179
179
|
},
|
|
180
|
+
{
|
|
181
|
+
"lang": "sr",
|
|
182
|
+
"lang_name": "Srpski",
|
|
183
|
+
"is_root": false,
|
|
184
|
+
"author": "Branislav Kovačević",
|
|
185
|
+
"author_short": "brankokovacevic",
|
|
186
|
+
"author_uid": "brankokovacevic",
|
|
187
|
+
"publication_date": "2023",
|
|
188
|
+
"id": "sn10.6_translation-sr-brankokovacevic",
|
|
189
|
+
"segmented": true,
|
|
190
|
+
"title": "Piyaṅkara ",
|
|
191
|
+
"volpage": null,
|
|
192
|
+
"has_comment": false
|
|
193
|
+
},
|
|
180
194
|
{
|
|
181
195
|
"lang": "th",
|
|
182
196
|
"lang_name": "ไทย",
|
|
@@ -203,6 +203,20 @@
|
|
|
203
203
|
"volpage": null,
|
|
204
204
|
"has_comment": false
|
|
205
205
|
},
|
|
206
|
+
{
|
|
207
|
+
"lang": "sr",
|
|
208
|
+
"lang_name": "Srpski",
|
|
209
|
+
"is_root": false,
|
|
210
|
+
"author": "Branislav Kovačević",
|
|
211
|
+
"author_short": "brankokovacevic",
|
|
212
|
+
"author_uid": "brankokovacevic",
|
|
213
|
+
"publication_date": "2023",
|
|
214
|
+
"id": "sn10.2_translation-sr-brankokovacevic",
|
|
215
|
+
"segmented": true,
|
|
216
|
+
"title": "Sakkanāmaka ",
|
|
217
|
+
"volpage": null,
|
|
218
|
+
"has_comment": false
|
|
219
|
+
},
|
|
206
220
|
{
|
|
207
221
|
"lang": "th",
|
|
208
222
|
"lang_name": "ไทย",
|
|
@@ -216,6 +216,20 @@
|
|
|
216
216
|
"volpage": null,
|
|
217
217
|
"has_comment": false
|
|
218
218
|
},
|
|
219
|
+
{
|
|
220
|
+
"lang": "sr",
|
|
221
|
+
"lang_name": "Srpski",
|
|
222
|
+
"is_root": false,
|
|
223
|
+
"author": "Branislav Kovačević",
|
|
224
|
+
"author_short": "brankokovacevic",
|
|
225
|
+
"author_uid": "brankokovacevic",
|
|
226
|
+
"publication_date": "2023",
|
|
227
|
+
"id": "sn9.9_translation-sr-brankokovacevic",
|
|
228
|
+
"segmented": true,
|
|
229
|
+
"title": "Vađđi princ ",
|
|
230
|
+
"volpage": null,
|
|
231
|
+
"has_comment": false
|
|
232
|
+
},
|
|
219
233
|
{
|
|
220
234
|
"lang": "th",
|
|
221
235
|
"lang_name": "ไทย",
|
|
@@ -229,6 +229,20 @@
|
|
|
229
229
|
"volpage": null,
|
|
230
230
|
"has_comment": false
|
|
231
231
|
},
|
|
232
|
+
{
|
|
233
|
+
"lang": "sr",
|
|
234
|
+
"lang_name": "Srpski",
|
|
235
|
+
"is_root": false,
|
|
236
|
+
"author": "Branislav Kovačević",
|
|
237
|
+
"author_short": "brankokovacevic",
|
|
238
|
+
"author_uid": "brankokovacevic",
|
|
239
|
+
"publication_date": "2023",
|
|
240
|
+
"id": "sn9.11_translation-sr-brankokovacevic",
|
|
241
|
+
"segmented": true,
|
|
242
|
+
"title": "Štetne misli ",
|
|
243
|
+
"volpage": null,
|
|
244
|
+
"has_comment": false
|
|
245
|
+
},
|
|
232
246
|
{
|
|
233
247
|
"lang": "th",
|
|
234
248
|
"lang_name": "ไทย",
|
|
@@ -203,6 +203,20 @@
|
|
|
203
203
|
"volpage": null,
|
|
204
204
|
"has_comment": false
|
|
205
205
|
},
|
|
206
|
+
{
|
|
207
|
+
"lang": "sr",
|
|
208
|
+
"lang_name": "Srpski",
|
|
209
|
+
"is_root": false,
|
|
210
|
+
"author": "Branislav Kovačević",
|
|
211
|
+
"author_short": "brankokovacevic",
|
|
212
|
+
"author_uid": "brankokovacevic",
|
|
213
|
+
"publication_date": "2023",
|
|
214
|
+
"id": "sn10.8_translation-sr-brankokovacevic",
|
|
215
|
+
"segmented": true,
|
|
216
|
+
"title": "Sudatta ",
|
|
217
|
+
"volpage": null,
|
|
218
|
+
"has_comment": false
|
|
219
|
+
},
|
|
206
220
|
{
|
|
207
221
|
"lang": "th",
|
|
208
222
|
"lang_name": "ไทย",
|
|
@@ -242,6 +242,20 @@
|
|
|
242
242
|
"volpage": null,
|
|
243
243
|
"has_comment": false
|
|
244
244
|
},
|
|
245
|
+
{
|
|
246
|
+
"lang": "sr",
|
|
247
|
+
"lang_name": "Srpski",
|
|
248
|
+
"is_root": false,
|
|
249
|
+
"author": "Branislav Kovačević",
|
|
250
|
+
"author_short": "brankokovacevic",
|
|
251
|
+
"author_uid": "brankokovacevic",
|
|
252
|
+
"publication_date": "2023",
|
|
253
|
+
"id": "sn9.1_translation-sr-brankokovacevic",
|
|
254
|
+
"segmented": true,
|
|
255
|
+
"title": "Osama ",
|
|
256
|
+
"volpage": null,
|
|
257
|
+
"has_comment": false
|
|
258
|
+
},
|
|
245
259
|
{
|
|
246
260
|
"lang": "th",
|
|
247
261
|
"lang_name": "ไทย",
|
|
@@ -190,6 +190,20 @@
|
|
|
190
190
|
"volpage": null,
|
|
191
191
|
"has_comment": false
|
|
192
192
|
},
|
|
193
|
+
{
|
|
194
|
+
"lang": "sr",
|
|
195
|
+
"lang_name": "Srpski",
|
|
196
|
+
"is_root": false,
|
|
197
|
+
"author": "Branislav Kovačević",
|
|
198
|
+
"author_short": "brankokovacevic",
|
|
199
|
+
"author_uid": "brankokovacevic",
|
|
200
|
+
"publication_date": "2023",
|
|
201
|
+
"id": "sn9.4_translation-sr-brankokovacevic",
|
|
202
|
+
"segmented": true,
|
|
203
|
+
"title": "Grupa monaha ",
|
|
204
|
+
"volpage": null,
|
|
205
|
+
"has_comment": false
|
|
206
|
+
},
|
|
193
207
|
{
|
|
194
208
|
"lang": "th",
|
|
195
209
|
"lang_name": "ไทย",
|
|
@@ -190,6 +190,20 @@
|
|
|
190
190
|
"volpage": null,
|
|
191
191
|
"has_comment": false
|
|
192
192
|
},
|
|
193
|
+
{
|
|
194
|
+
"lang": "sr",
|
|
195
|
+
"lang_name": "Srpski",
|
|
196
|
+
"is_root": false,
|
|
197
|
+
"author": "Branislav Kovačević",
|
|
198
|
+
"author_short": "brankokovacevic",
|
|
199
|
+
"author_uid": "brankokovacevic",
|
|
200
|
+
"publication_date": "2023",
|
|
201
|
+
"id": "sn10.1_translation-sr-brankokovacevic",
|
|
202
|
+
"segmented": true,
|
|
203
|
+
"title": "Indaka ",
|
|
204
|
+
"volpage": null,
|
|
205
|
+
"has_comment": false
|
|
206
|
+
},
|
|
193
207
|
{
|
|
194
208
|
"lang": "th",
|
|
195
209
|
"lang_name": "ไทย",
|
|
@@ -190,6 +190,20 @@
|
|
|
190
190
|
"volpage": null,
|
|
191
191
|
"has_comment": false
|
|
192
192
|
},
|
|
193
|
+
{
|
|
194
|
+
"lang": "sr",
|
|
195
|
+
"lang_name": "Srpski",
|
|
196
|
+
"is_root": false,
|
|
197
|
+
"author": "Branislav Kovačević",
|
|
198
|
+
"author_short": "brankokovacevic",
|
|
199
|
+
"author_uid": "brankokovacevic",
|
|
200
|
+
"publication_date": "2023",
|
|
201
|
+
"id": "sn9.2_translation-sr-brankokovacevic",
|
|
202
|
+
"segmented": true,
|
|
203
|
+
"title": "Ustajanje ",
|
|
204
|
+
"volpage": null,
|
|
205
|
+
"has_comment": false
|
|
206
|
+
},
|
|
193
207
|
{
|
|
194
208
|
"lang": "th",
|
|
195
209
|
"lang_name": "ไทย",
|
|
@@ -203,6 +203,20 @@
|
|
|
203
203
|
"volpage": null,
|
|
204
204
|
"has_comment": false
|
|
205
205
|
},
|
|
206
|
+
{
|
|
207
|
+
"lang": "sr",
|
|
208
|
+
"lang_name": "Srpski",
|
|
209
|
+
"is_root": false,
|
|
210
|
+
"author": "Branislav Kovačević",
|
|
211
|
+
"author_short": "brankokovacevic",
|
|
212
|
+
"author_uid": "brankokovacevic",
|
|
213
|
+
"publication_date": "2023",
|
|
214
|
+
"id": "sn10.3_translation-sr-brankokovacevic",
|
|
215
|
+
"segmented": true,
|
|
216
|
+
"title": "Sūćiloma ",
|
|
217
|
+
"volpage": null,
|
|
218
|
+
"has_comment": false
|
|
219
|
+
},
|
|
206
220
|
{
|
|
207
221
|
"lang": "th",
|
|
208
222
|
"lang_name": "ไทย",
|
|
@@ -177,6 +177,20 @@
|
|
|
177
177
|
"volpage": null,
|
|
178
178
|
"has_comment": false
|
|
179
179
|
},
|
|
180
|
+
{
|
|
181
|
+
"lang": "sr",
|
|
182
|
+
"lang_name": "Srpski",
|
|
183
|
+
"is_root": false,
|
|
184
|
+
"author": "Branislav Kovačević",
|
|
185
|
+
"author_short": "brankokovacevic",
|
|
186
|
+
"author_uid": "brankokovacevic",
|
|
187
|
+
"publication_date": "2023",
|
|
188
|
+
"id": "sn10.11_translation-sr-brankokovacevic",
|
|
189
|
+
"segmented": true,
|
|
190
|
+
"title": "Ćīrā ",
|
|
191
|
+
"volpage": null,
|
|
192
|
+
"has_comment": false
|
|
193
|
+
},
|
|
180
194
|
{
|
|
181
195
|
"lang": "th",
|
|
182
196
|
"lang_name": "ไทย",
|
|
@@ -203,6 +203,20 @@
|
|
|
203
203
|
"volpage": null,
|
|
204
204
|
"has_comment": false
|
|
205
205
|
},
|
|
206
|
+
{
|
|
207
|
+
"lang": "sr",
|
|
208
|
+
"lang_name": "Srpski",
|
|
209
|
+
"is_root": false,
|
|
210
|
+
"author": "Branislav Kovačević",
|
|
211
|
+
"author_short": "brankokovacevic",
|
|
212
|
+
"author_uid": "brankokovacevic",
|
|
213
|
+
"publication_date": "2023",
|
|
214
|
+
"id": "sn10.4_translation-sr-brankokovacevic",
|
|
215
|
+
"segmented": true,
|
|
216
|
+
"title": "Maṇibhadda ",
|
|
217
|
+
"volpage": null,
|
|
218
|
+
"has_comment": false
|
|
219
|
+
},
|
|
206
220
|
{
|
|
207
221
|
"lang": "th",
|
|
208
222
|
"lang_name": "ไทย",
|
|
@@ -190,6 +190,20 @@
|
|
|
190
190
|
"volpage": null,
|
|
191
191
|
"has_comment": false
|
|
192
192
|
},
|
|
193
|
+
{
|
|
194
|
+
"lang": "sr",
|
|
195
|
+
"lang_name": "Srpski",
|
|
196
|
+
"is_root": false,
|
|
197
|
+
"author": "Branislav Kovačević",
|
|
198
|
+
"author_short": "brankokovacevic",
|
|
199
|
+
"author_uid": "brankokovacevic",
|
|
200
|
+
"publication_date": "2023",
|
|
201
|
+
"id": "sn9.13_translation-sr-brankokovacevic",
|
|
202
|
+
"segmented": true,
|
|
203
|
+
"title": "Nekontrolisan um ",
|
|
204
|
+
"volpage": null,
|
|
205
|
+
"has_comment": false
|
|
206
|
+
},
|
|
193
207
|
{
|
|
194
208
|
"lang": "th",
|
|
195
209
|
"lang_name": "ไทย",
|
|
@@ -203,6 +203,20 @@
|
|
|
203
203
|
"volpage": null,
|
|
204
204
|
"has_comment": false
|
|
205
205
|
},
|
|
206
|
+
{
|
|
207
|
+
"lang": "sr",
|
|
208
|
+
"lang_name": "Srpski",
|
|
209
|
+
"is_root": false,
|
|
210
|
+
"author": "Branislav Kovačević",
|
|
211
|
+
"author_short": "brankokovacevic",
|
|
212
|
+
"author_uid": "brankokovacevic",
|
|
213
|
+
"publication_date": "2023",
|
|
214
|
+
"id": "sn10.12_translation-sr-brankokovacevic",
|
|
215
|
+
"segmented": true,
|
|
216
|
+
"title": "Āḷavaka ",
|
|
217
|
+
"volpage": null,
|
|
218
|
+
"has_comment": false
|
|
219
|
+
},
|
|
206
220
|
{
|
|
207
221
|
"lang": "th",
|
|
208
222
|
"lang_name": "ไทย",
|
|
@@ -177,6 +177,20 @@
|
|
|
177
177
|
"volpage": null,
|
|
178
178
|
"has_comment": false
|
|
179
179
|
},
|
|
180
|
+
{
|
|
181
|
+
"lang": "sr",
|
|
182
|
+
"lang_name": "Srpski",
|
|
183
|
+
"is_root": false,
|
|
184
|
+
"author": "Branislav Kovačević",
|
|
185
|
+
"author_short": "brankokovacevic",
|
|
186
|
+
"author_uid": "brankokovacevic",
|
|
187
|
+
"publication_date": "2023",
|
|
188
|
+
"id": "sn10.7_translation-sr-brankokovacevic",
|
|
189
|
+
"segmented": true,
|
|
190
|
+
"title": "Punabbasu ",
|
|
191
|
+
"volpage": null,
|
|
192
|
+
"has_comment": false
|
|
193
|
+
},
|
|
180
194
|
{
|
|
181
195
|
"lang": "th",
|
|
182
196
|
"lang_name": "ไทย",
|
|
@@ -190,6 +190,20 @@
|
|
|
190
190
|
"volpage": null,
|
|
191
191
|
"has_comment": false
|
|
192
192
|
},
|
|
193
|
+
{
|
|
194
|
+
"lang": "sr",
|
|
195
|
+
"lang_name": "Srpski",
|
|
196
|
+
"is_root": false,
|
|
197
|
+
"author": "Branislav Kovačević",
|
|
198
|
+
"author_short": "brankokovacevic",
|
|
199
|
+
"author_uid": "brankokovacevic",
|
|
200
|
+
"publication_date": "2023",
|
|
201
|
+
"id": "sn9.8_translation-sr-brankokovacevic",
|
|
202
|
+
"segmented": true,
|
|
203
|
+
"title": "Gospodarica kuće ",
|
|
204
|
+
"volpage": null,
|
|
205
|
+
"has_comment": false
|
|
206
|
+
},
|
|
193
207
|
{
|
|
194
208
|
"lang": "th",
|
|
195
209
|
"lang_name": "ไทย",
|
|
@@ -203,6 +203,20 @@
|
|
|
203
203
|
"volpage": null,
|
|
204
204
|
"has_comment": false
|
|
205
205
|
},
|
|
206
|
+
{
|
|
207
|
+
"lang": "sr",
|
|
208
|
+
"lang_name": "Srpski",
|
|
209
|
+
"is_root": false,
|
|
210
|
+
"author": "Branislav Kovačević",
|
|
211
|
+
"author_short": "brankokovacevic",
|
|
212
|
+
"author_uid": "brankokovacevic",
|
|
213
|
+
"publication_date": "2023",
|
|
214
|
+
"id": "sn9.14_translation-sr-brankokovacevic",
|
|
215
|
+
"segmented": true,
|
|
216
|
+
"title": "Kradljivac mirisa ",
|
|
217
|
+
"volpage": null,
|
|
218
|
+
"has_comment": false
|
|
219
|
+
},
|
|
206
220
|
{
|
|
207
221
|
"lang": "th",
|
|
208
222
|
"lang_name": "ไทย",
|
|
@@ -190,6 +190,20 @@
|
|
|
190
190
|
"volpage": null,
|
|
191
191
|
"has_comment": false
|
|
192
192
|
},
|
|
193
|
+
{
|
|
194
|
+
"lang": "sr",
|
|
195
|
+
"lang_name": "Srpski",
|
|
196
|
+
"is_root": false,
|
|
197
|
+
"author": "Branislav Kovačević",
|
|
198
|
+
"author_short": "brankokovacevic",
|
|
199
|
+
"author_uid": "brankokovacevic",
|
|
200
|
+
"publication_date": "2023",
|
|
201
|
+
"id": "sn9.7_translation-sr-brankokovacevic",
|
|
202
|
+
"segmented": true,
|
|
203
|
+
"title": "Nāgadatta ",
|
|
204
|
+
"volpage": null,
|
|
205
|
+
"has_comment": false
|
|
206
|
+
},
|
|
193
207
|
{
|
|
194
208
|
"lang": "th",
|
|
195
209
|
"lang_name": "ไทย",
|
|
@@ -190,6 +190,20 @@
|
|
|
190
190
|
"volpage": null,
|
|
191
191
|
"has_comment": false
|
|
192
192
|
},
|
|
193
|
+
{
|
|
194
|
+
"lang": "sr",
|
|
195
|
+
"lang_name": "Srpski",
|
|
196
|
+
"is_root": false,
|
|
197
|
+
"author": "Branislav Kovačević",
|
|
198
|
+
"author_short": "brankokovacevic",
|
|
199
|
+
"author_uid": "brankokovacevic",
|
|
200
|
+
"publication_date": "2023",
|
|
201
|
+
"id": "sn9.12_translation-sr-brankokovacevic",
|
|
202
|
+
"segmented": true,
|
|
203
|
+
"title": "Podne ",
|
|
204
|
+
"volpage": null,
|
|
205
|
+
"has_comment": false
|
|
206
|
+
},
|
|
193
207
|
{
|
|
194
208
|
"lang": "th",
|
|
195
209
|
"lang_name": "ไทย",
|
|
@@ -177,6 +177,20 @@
|
|
|
177
177
|
"volpage": null,
|
|
178
178
|
"has_comment": false
|
|
179
179
|
},
|
|
180
|
+
{
|
|
181
|
+
"lang": "sr",
|
|
182
|
+
"lang_name": "Srpski",
|
|
183
|
+
"is_root": false,
|
|
184
|
+
"author": "Branislav Kovačević",
|
|
185
|
+
"author_short": "brankokovacevic",
|
|
186
|
+
"author_uid": "brankokovacevic",
|
|
187
|
+
"publication_date": "2023",
|
|
188
|
+
"id": "sn10.5_translation-sr-brankokovacevic",
|
|
189
|
+
"segmented": true,
|
|
190
|
+
"title": "Sānu ",
|
|
191
|
+
"volpage": null,
|
|
192
|
+
"has_comment": false
|
|
193
|
+
},
|
|
180
194
|
{
|
|
181
195
|
"lang": "th",
|
|
182
196
|
"lang_name": "ไทย",
|
|
@@ -190,6 +190,20 @@
|
|
|
190
190
|
"volpage": null,
|
|
191
191
|
"has_comment": false
|
|
192
192
|
},
|
|
193
|
+
{
|
|
194
|
+
"lang": "sr",
|
|
195
|
+
"lang_name": "Srpski",
|
|
196
|
+
"is_root": false,
|
|
197
|
+
"author": "Branislav Kovačević",
|
|
198
|
+
"author_short": "brankokovacevic",
|
|
199
|
+
"author_uid": "brankokovacevic",
|
|
200
|
+
"publication_date": "2023",
|
|
201
|
+
"id": "sn9.3_translation-sr-brankokovacevic",
|
|
202
|
+
"segmented": true,
|
|
203
|
+
"title": "Kassapagotta ",
|
|
204
|
+
"volpage": null,
|
|
205
|
+
"has_comment": false
|
|
206
|
+
},
|
|
193
207
|
{
|
|
194
208
|
"lang": "th",
|
|
195
209
|
"lang_name": "ไทย",
|
|
@@ -177,6 +177,20 @@
|
|
|
177
177
|
"volpage": null,
|
|
178
178
|
"has_comment": false
|
|
179
179
|
},
|
|
180
|
+
{
|
|
181
|
+
"lang": "sr",
|
|
182
|
+
"lang_name": "Srpski",
|
|
183
|
+
"is_root": false,
|
|
184
|
+
"author": "Branislav Kovačević",
|
|
185
|
+
"author_short": "brankokovacevic",
|
|
186
|
+
"author_uid": "brankokovacevic",
|
|
187
|
+
"publication_date": "2023",
|
|
188
|
+
"id": "sn10.9_translation-sr-brankokovacevic",
|
|
189
|
+
"segmented": true,
|
|
190
|
+
"title": "Sukkā (1) ",
|
|
191
|
+
"volpage": null,
|
|
192
|
+
"has_comment": false
|
|
193
|
+
},
|
|
180
194
|
{
|
|
181
195
|
"lang": "th",
|
|
182
196
|
"lang_name": "ไทย",
|
|
@@ -190,6 +190,20 @@
|
|
|
190
190
|
"volpage": null,
|
|
191
191
|
"has_comment": false
|
|
192
192
|
},
|
|
193
|
+
{
|
|
194
|
+
"lang": "sr",
|
|
195
|
+
"lang_name": "Srpski",
|
|
196
|
+
"is_root": false,
|
|
197
|
+
"author": "Branislav Kovačević",
|
|
198
|
+
"author_short": "brankokovacevic",
|
|
199
|
+
"author_uid": "brankokovacevic",
|
|
200
|
+
"publication_date": "2023",
|
|
201
|
+
"id": "sn9.5_translation-sr-brankokovacevic",
|
|
202
|
+
"segmented": true,
|
|
203
|
+
"title": "Ānanda ",
|
|
204
|
+
"volpage": null,
|
|
205
|
+
"has_comment": false
|
|
206
|
+
},
|
|
193
207
|
{
|
|
194
208
|
"lang": "th",
|
|
195
209
|
"lang_name": "ไทย",
|
|
@@ -177,6 +177,20 @@
|
|
|
177
177
|
"volpage": null,
|
|
178
178
|
"has_comment": false
|
|
179
179
|
},
|
|
180
|
+
{
|
|
181
|
+
"lang": "sr",
|
|
182
|
+
"lang_name": "Srpski",
|
|
183
|
+
"is_root": false,
|
|
184
|
+
"author": "Branislav Kovačević",
|
|
185
|
+
"author_short": "brankokovacevic",
|
|
186
|
+
"author_uid": "brankokovacevic",
|
|
187
|
+
"publication_date": "2023",
|
|
188
|
+
"id": "sn10.10_translation-sr-brankokovacevic",
|
|
189
|
+
"segmented": true,
|
|
190
|
+
"title": "Sukka (2) ",
|
|
191
|
+
"volpage": null,
|
|
192
|
+
"has_comment": false
|
|
193
|
+
},
|
|
180
194
|
{
|
|
181
195
|
"lang": "th",
|
|
182
196
|
"lang_name": "ไทย",
|
|
@@ -190,6 +190,20 @@
|
|
|
190
190
|
"volpage": null,
|
|
191
191
|
"has_comment": false
|
|
192
192
|
},
|
|
193
|
+
{
|
|
194
|
+
"lang": "sr",
|
|
195
|
+
"lang_name": "Srpski",
|
|
196
|
+
"is_root": false,
|
|
197
|
+
"author": "Branislav Kovačević",
|
|
198
|
+
"author_short": "brankokovacevic",
|
|
199
|
+
"author_uid": "brankokovacevic",
|
|
200
|
+
"publication_date": "2023",
|
|
201
|
+
"id": "sn9.10_translation-sr-brankokovacevic",
|
|
202
|
+
"segmented": true,
|
|
203
|
+
"title": "Recitovanje ",
|
|
204
|
+
"volpage": null,
|
|
205
|
+
"has_comment": false
|
|
206
|
+
},
|
|
193
207
|
{
|
|
194
208
|
"lang": "th",
|
|
195
209
|
"lang_name": "ไทย",
|