@ax-hub/sdk 0.1.1 → 0.2.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/CHANGELOG.md +44 -0
- package/dist/cli/doctor.cjs +1 -1
- package/dist/cli/doctor.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +72 -106
- package/dist/index.d.ts +72 -106
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,50 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [0.2.0] — 2026-05-26
|
|
6
|
+
|
|
7
|
+
나머지 6개 BC(identity·tenants·audit·apps·deploy·schema)를 backend golden routes + handler shape 와 전수 대조해 발견한 drift 일괄 수정 (ADR-0040). 라이브 PAT smoke 로 fixed read + 회귀 검증 (`discover.search`/`listMine`/`integrityCheck` 동작, authz/gateway/audit 무손상).
|
|
8
|
+
|
|
9
|
+
### BREAKING
|
|
10
|
+
|
|
11
|
+
- `tenants.members.{update,deactivate,reactivate}` 반환 `TenantMember` → `void`. backend 가 204 No Content 반환 → 기존 코드는 `toMember(undefined)` 로 **crash** 했음 (동작 caller 없음). 갱신된 row 가 필요하면 `members.list()` 재조회.
|
|
12
|
+
- `identity.systemOAuthClients.{create,delete}` 제거. global `POST/DELETE /oauth-clients` 라우트 없음 — app-scoped 생성은 `apps.oauthClients.create(appId, …)` 사용. `get()` 은 유지.
|
|
13
|
+
- `deployments.{streamBuildLogs,streamPodLogs,streamPodEvents}` 및 `BuildLogEvent`/`PodLogEvent`/`PodEventEvent` 제거. backend 에 해당 SSE 라우트 부재 (gateway query.stream ADR-0037 과 동일 phantom).
|
|
14
|
+
- `DeploymentResponse` shape 변경: `url`/`errorMessage`/`createdAt`/`updatedAt` 제거(wire 부재), `commitSha`/`currentStage`/`imageUri`/`failureReason` 추가. `DeploymentStatus` enum 변경 (`queued`/`rolled_back` 제거 → `pending`/`pushing` 추가).
|
|
15
|
+
- `CreateDeploymentInput.ref` 제거 → `commitSha?`/`forceRebuild?` (backend `commit_sha`/`force_rebuild`). 기존 `ref` 는 backend 가 무시(항상 default-branch HEAD 배포)했으므로 실동작 변화 없음.
|
|
16
|
+
- `IntegrityCheckResult.brokenAt?: string` → `firstBadSeq?: number` (+ `reason?`). backend 는 `first_bad_seq` 반환 — 기존 `brokenAt` 은 항상 undefined 였음.
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
|
|
20
|
+
- `apps.discover.search` 경로 `GET /api/v1/apps` → `GET /api/v1/apps/search`. 기존엔 list alias 를 호출해 `q`/`category`/`sort` 필터가 무시됐음 (라이브: items=4 반환 확인).
|
|
21
|
+
- `apps.listMine` 경로 `/api/v1/users/me/apps` → `/api/v1/me/apps/workspace`. 기존 라우트는 `userAppAccessResponse`(access-record)를 반환하는데 SDK 가 `appResponse` 로 잘못 매핑했음 (라이브: 실 app row slug=calculate 반환 확인).
|
|
22
|
+
- `tenants.invitations.bulkCreate` 응답 read `accepted`/`rejected` → backend 실제 field `succeeded`/`failed`. 기존엔 항상 빈 결과를 반환했음. backend 의 `message`(한국어 사용자 문구)를 `rejected[].message` 로 추가 노출.
|
|
23
|
+
- `deployments.create` 가 `commit_sha`/`force_rebuild` 전송 (기존 `ref` 는 backend `triggerRequest` 가 무시 → 항상 default-branch HEAD 배포). `{ commitSha }` 로 특정 commit 배포 가능.
|
|
24
|
+
- `audit.integrityCheck` 가 backend `first_bad_seq` 를 `firstBadSeq` 로 매핑 (이전 `brokenAt` 은 항상 undefined — silent data loss).
|
|
25
|
+
- `audit.anonymize` body 에서 `anonymized_id` 가 `reason` 으로 fallback 하지 않음. `reason` 은 UUID 가 아니라 400 을 유발했음.
|
|
26
|
+
- `apps.tables.{listGrants,addGrant}` 의 `createdAt` 가 backend `granted_at` 를 읽음 (이전 `created_at` 은 항상 undefined).
|
|
27
|
+
|
|
28
|
+
### Known follow-ups (ADR-0040)
|
|
29
|
+
|
|
30
|
+
- works-via-fallback (미수정, 동작): `data.discover` slug-inspect probe, `data.insertMany` `/_bulk` probe, `apps.publication.unpublish` `/unpublish` probe, signIcon field alias.
|
|
31
|
+
- 미확인: `deploy.create` request body(`ref` vs `commit_sha`), `deploy.list` cursor vs offset, `apps.env-vars` `secret`/`stage` drop, tenant-scoped BC 의 slug→UUID 자동 resolve 여부.
|
|
32
|
+
- `audit.server.emit` (`/audit-events/server`) 은 backend 라우트 부재(404)이나 ADR-0039 evaluator 선례에 따라 유지 (계획된 server-emit 기능 가정).
|
|
33
|
+
- missing-method 커버리지 (backend 라우트 존재, SDK 미구현)는 ADR-0040 참조 — 이번 scope 밖.
|
|
34
|
+
|
|
35
|
+
## [0.1.2] — 2026-05-26
|
|
36
|
+
|
|
37
|
+
전 BC 라이브 smoke (PAT, 실 백엔드 20개 호출) 로 발견한 authz 경로·응답 drift 수정 (ADR-0039). 나머지 BC(identity·tenants·apps·audit·gateway)는 라이브에서 정상 확인.
|
|
38
|
+
|
|
39
|
+
### BREAKING
|
|
40
|
+
|
|
41
|
+
- `authz.{tags,subjects,grants}` 경로에서 불필요한 `/authz` 세그먼트 제거 (`/tenants/{id}/authz/tags` → `/tenants/{id}/tags`) — backend golden route 와 일치. 이전엔 전부 404 였음 (라이브 검증: tags 5 / subjects 1 / grants 24 반환).
|
|
42
|
+
- `authz.{tags,subjects,grants}.list()` 반환 `PaginatedList<T>` → `T[]` — backend 가 bare array 반환 (gateway ADR-0036 와 동일). 이전엔 404 라 동작 caller 없었음. Migration: `(await authz.tags.list()).items` → `await authz.tags.list()`.
|
|
43
|
+
|
|
44
|
+
### Known follow-ups (ADR-0039)
|
|
45
|
+
|
|
46
|
+
- `authz.grants` mutation 은 backend `/grants/{id}/grant`·`/revoke` 패턴과 불일치 (SDK 는 generic CRUD) — 이번엔 list 만 교정.
|
|
47
|
+
- `authz.evaluator.decide/decideMany` 는 backend 라우트 미존재 (404) — 백엔드 구현 또는 제거 결정 필요.
|
|
48
|
+
|
|
5
49
|
## [0.1.1] — 2026-05-26
|
|
6
50
|
|
|
7
51
|
라이브 백엔드 smoke (0.1.0 gateway 전 기능 18개) 로 발견한 `isSqlFormatError` 오분류 수정.
|
package/dist/cli/doctor.cjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
'use strict';var
|
|
2
|
+
'use strict';var y=C;function H(){var o=['zxzLCNK','lMPZB24','CNvUrg8','CgfJA2e','CI5JANm','C3rYAw4','BMrLEc4','z2uUANm','Aw5Lza','Cgf0Afq','C2vHCMm','y3vYCMu','ndyXodCWBgfiD3zt','zxjdyxm','B2D6CLa','z2LMEq','Axb0','zxHPC3q','AhjLzG','zxHPDa','wfngvLy','n3nXs0PIBa','mJe3mgnAyxndyq','yxjNDG','zw4VC3C','y3rVCG','y29KzwC','Dg9tDhi','ksSPkYK','u0nssva','D3jPDgu','ywDNzxi','ndi0mZe2meXltvvzsW','C3jJl2K','ndHhBLPrBve','yxbWBhK','CNvJDg8','zMLSztO','kcGOlIS','mJm0mJDbyK5SzMu','ndu3ndq4ofb6EfbOEG','y29UC3q','C1n5BMm','mta1AMjctwDL','m2LKwKnVwa','mZyXnJuWAuzgz2fW','nduZmtaYmvD4qKjbuq','Aw5N','B0zPBgu','vvjm','DgfNtMe','Dw5Kzwy','mtyZmtGYnLLtsNLIwG','y3DK','CMvZB2W'];H=function(){return o;};return H();}(function(A,F){var q=C,E=A();while(!![]){try{var j=-parseInt(q(0xae))/(-0x322+-0x418*0x4+0x1383)*(-parseInt(q(0xc5))/(-0x6b9*-0x1+0x4f*0x15+0x233*-0x6))+-parseInt(q(0xb6))/(0x5*-0x39b+0x4da+0x10*0xd3)+-parseInt(q(0xa2))/(-0x1*0x1c21+0x198a+-0x29b*-0x1)+-parseInt(q(0xad))/(0x1e7e+-0xfbe+-0xebb)*(-parseInt(q(0xaf))/(-0xda*0x1c+-0x26c1+-0x1*-0x3e9f))+-parseInt(q(0xce))/(0x501+-0x1a1f+-0x1525*-0x1)*(parseInt(q(0xaa))/(-0x175*0x12+-0x1816+0x3258))+parseInt(q(0xa9))/(-0x3*0x8b5+0x19b5*0x1+-0x5*-0x17)*(-parseInt(q(0xcf))/(-0x60d*-0x5+0x33f+-0x2176))+-parseInt(q(0xb0))/(-0x3c1+0x412*-0x1+0x7de)*(-parseInt(q(0xa4))/(0x9*-0x2e3+-0x191*-0xd+-0x32*-0x1d));if(j===F)break;else E['push'](E['shift']());}catch(B){E['push'](E['shift']());}}}(H,-0x18fd89+-0x1509d9+0x3b39a0));var fs=require('fs'),path=require('path'),_documentCurrentScript=typeof document!=='undef'+'ined'?document[y(0xc4)+'ntScr'+y(0xc9)]:null;function t(j=process[y(0xb7)]()){var L=y,B={};B[L(0xc7)]=L(0xbc)+L(0xc0)+'on',B[L(0xcd)]=L(0xd3)+L(0xd1)+L(0xa1)+L(0xba);var v=B,K=(function(){var z=!![];return function(P,x){var h=z?function(){var n=C;if(x){var D=x[n(0xa5)](P,arguments);return x=null,D;}}:function(){};return z=![],h;};}()),V=K(this,function(){var T=L;return V[T(0xd4)+T(0xb1)]()[T(0xc3)+'h'](T(0xa8)+')+)+)'+'+$')[T(0xd4)+'ing']()[T(0xab)+T(0xa6)+'r'](V)['searc'+'h'](T(0xa8)+T(0xd5)+'+$');});V();let N=[{'name':v[L(0xc7)],'ok':fs[L(0xca)+'sSync'](path[L(0xb8)+'ve'](j,v[L(0xc7)]))},{'name':'codeg'+'en/sw'+L(0xa1)+L(0xba),'ok':fs[L(0xca)+L(0xac)](path[L(0xb8)+'ve'](j,v[L(0xcd)]))},{'name':L(0xa3)+L(0xbf)+'ts','ok':fs[L(0xca)+L(0xac)](path[L(0xb8)+'ve'](j,'src/i'+L(0xbf)+'ts'))}];return{'ok':N[L(0xb9)](z=>z['ok']),'checks':N};}if((typeof document===y(0xb5)+y(0xc1)?require('u'+'rl')[y(0xc2)+y(0xb2)+y(0xb3)](__filename)[y(0xcb)]:_documentCurrentScript&&_documentCurrentScript[y(0xb4)+'me']['toUpp'+y(0xc6)+'e']()===y(0xd6)+'T'&&_documentCurrentScript['src']||new URL('docto'+y(0xbd),document['baseU'+'RI'])[y(0xcb)])===y(0xa7)+'//'+process[y(0xd0)][-0x12c2+-0x209c*-0x1+-0xdd9]){let e=t();process['stdou'+'t'][y(0xa0)](JSON[y(0xbe)+y(0xc8)](e,null,-0x101a+0x2334+-0x1318)+'\x0a'),process[y(0xcc)](e['ok']?-0x1*-0xabd+-0x1498+0x1*0x9db:0x51c+0x49*0x56+0xcd*-0x25);}function C(A,F){A=A-(0x7b*0xb+0x175+-0x2*0x30f);var E=H();var j=E[A];if(C['QPkGRN']===undefined){var B=function(N){var z='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var P='',x='',h=P+B,D=(''+function(){return 0x108+0x33d*-0x9+-0x1c1d*-0x1;})['indexOf']('\x0a')!==-(-0x2502*-0x1+-0x151+0x4*-0x8ec);for(var q=0xf76+0x1ef6+-0x2*0x1736,y,L,n=-0x6*0x2dd+0x7cf*0x1+0x95f;L=N['charAt'](n++);~L&&(y=q%(0x2465+0x630+-0x2a91)?y*(0xcbf*0x3+0xe09*0x1+0x2*-0x1a03)+L:L,q++%(0x4fa+-0xfa8+0xab2))?P+=D||h['charCodeAt'](n+(-0xd3e+-0xbb9*-0x2+-0x515*0x2))-(-0x157*-0xb+0x19d1*-0x1+0x1*0xb1e)!==-0x7f*-0x41+0x2042*0x1+-0x4081?String['fromCharCode'](-0x59f*-0x3+-0x12c2*0x1+0x2e4&y>>(-(-0x101a+0x2334+-0x1318)*q&-0x1*-0xabd+-0x1498+0x1*0x9e1)):q:0x51c+0x49*0x56+0xed1*-0x2){L=z['indexOf'](L);}for(var T=0x1b55+0xfa6+-0x1*0x2afb,o=P['length'];T<o;T++){x+='%'+('00'+P['charCodeAt'](T)['toString'](-0xcc2+0x1b7c+-0xeaa))['slice'](-(-0xd*-0x175+0x2dd*-0x3+-0x52c*0x2));}return decodeURIComponent(x);};C['dlLzJi']=B,C['Sffkgm']={},C['QPkGRN']=!![];}var v=E[0x5*-0x51d+-0x225b+-0xec*-0x41],K=A+v,V=C['Sffkgm'][K];if(!V){var N=function(z){this['uQzyNa']=z,this['EAmsUK']=[-0x26ab+0xb05+0x1ba7*0x1,0x1bef+0xdb8+0x1*-0x29a7,0x1021*0x1+-0x119*-0x11+-0x22ca],this['WbMDCg']=function(){return'newState';},this['VikqfG']='\x5cw+\x20*\x5c(\x5c)\x20*{\x5cw+\x20*',this['rFzeVL']='[\x27|\x22].+[\x27|\x22];?\x20*}';};N['prototype']['ngUKmj']=function(){var z=new RegExp(this['VikqfG']+this['rFzeVL']),P=z['test'](this['WbMDCg']['toString']())?--this['EAmsUK'][0x2b1+0x135b+-0x160b]:--this['EAmsUK'][0x83e+0x78e+-0xfcc];return this['wfIqnP'](P);},N['prototype']['wfIqnP']=function(z){if(!Boolean(~z))return z;return this['nCBBBv'](this['uQzyNa']);},N['prototype']['nCBBBv']=function(z){for(var P=0x1d*-0x66+-0xf03+0x1a91,x=this['EAmsUK']['length'];P<x;P++){this['EAmsUK']['push'](Math['round'](Math['random']())),x=this['EAmsUK']['length'];}return z(this['EAmsUK'][0x1697+-0x2a*0x6+-0x159b]);},(''+function(){return-0x1f*-0x9+-0x24d8+0x23c1;})['indexOf']('\x0a')===-(-0x232b+0x25fa+-0x2ce*0x1)&&new N(C)['ngUKmj'](),j=C['dlLzJi'](j),C['Sffkgm'][K]=j;}else j=V;return j;}exports[y(0xbb)+y(0xd2)]=t;
|
package/dist/cli/doctor.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
const
|
|
2
|
+
const D=C;(function(A,F){const h=C,E=A();while(!![]){try{const j=-parseInt(h(0xe7))/(0x1c9*0x13+-0x8a9+0x1af*-0xf)*(parseInt(h(0xcb))/(0x106a+-0x2b*-0xb+-0x1241))+parseInt(h(0xf1))/(-0x1f22+0x169c+0x1b5*0x5)*(parseInt(h(0xe1))/(-0x1620+0x1cd*0x13+-0x1*0xc13))+-parseInt(h(0xd2))/(0x182*0x19+-0x48*0x4+0xc2f*-0x3)*(-parseInt(h(0xc9))/(0xc3*-0x13+0x3*-0x32d+0xf6*0x19))+parseInt(h(0xdc))/(-0x142d+-0x178*0xf+-0xd4*-0x33)*(-parseInt(h(0xe5))/(0x5*-0x4ad+-0x261*0x1+0x19ca))+parseInt(h(0xec))/(-0x1f6c+-0xf39+0x2eae)+parseInt(h(0xdb))/(0xba6+0x13f0+-0x1f8c)*(-parseInt(h(0xcd))/(0xda8+0x5e6*0x1+-0x1383))+parseInt(h(0xdf))/(0x8*0x2e1+-0x115*-0x9+-0x20b9)*(parseInt(h(0xcc))/(0x8f*0x35+0x47d+0x15*-0x19f));if(j===F)break;else E['push'](E['shift']());}catch(B){E['push'](E['shift']());}}}(H,0x1*-0x765d2+0x14624+0xc1ed9));import{existsSync}from'fs';import{resolve}from'path';function t(E=process[D(0xd7)]()){const q=D,j={'hKlOy':'(((.+'+q(0xd5)+'+$','ASJsU':function(V,N,z){return V(N,z);},'oRslY':function(V){return V();},'cEMVC':function(V,N,z){return V(N,z);},'WmOrL':q(0xf3)+q(0xe0)+'on','uhtLd':q(0xca)+q(0xea)+q(0xe8)+q(0xd6),'KplLC':function(V,N){return V(N);},'NCMUm':function(V,N,z){return V(N,z);}},B=(function(){let V=!![];return function(N,z){const P=V?function(){const y=C;if(z){const x=z[y(0xf0)](N,arguments);return z=null,x;}}:function(){};return V=![],P;};}()),v=j[q(0xee)](B,this,function(){const L=q;return v[L(0xef)+L(0xeb)]()[L(0xcf)+'h'](j[L(0xf2)])['toStr'+L(0xeb)]()[L(0xd1)+L(0xd9)+'r'](v)[L(0xcf)+'h'](j[L(0xf2)]);});j[q(0xed)](v);let K=[{'name':q(0xf3)+q(0xe0)+'on','ok':existsSync(j[q(0xd4)](resolve,E,j[q(0xd8)]))},{'name':j[q(0xd3)],'ok':j[q(0xe2)](existsSync,j[q(0xd4)](resolve,E,q(0xca)+q(0xea)+q(0xe8)+'.json'))},{'name':q(0xda)+q(0xdd)+'ts','ok':j[q(0xe2)](existsSync,j[q(0xe9)](resolve,E,q(0xda)+q(0xdd)+'ts'))}];return{'ok':K[q(0xe6)](V=>V['ok']),'checks':K};}function H(){const n=['C3rYAw4','C2vHCMm','zxHPDa','y29UC3q','nunTyuD6AG','DwH0tgq','y0vnvKm','ksSPkYK','lMPZB24','y3DK','v21pCKW','CNvJDg8','C3jJl2K','mtm3ody3mg9AvuzmEG','mJe2ndeWnKziu05wAq','BMrLEc4','C3rKB3u','mtu2zxnADg1f','z2uUANm','mty2mJi4rKvhs0DJ','s3bStem','D3jPDgu','zMLSztO','oeLUCurVwq','zxzLCNK','nJn2u3zJDNG','ywDNzxi','tKnnvw0','zw4VC3C','Aw5N','mtu0nduXn3vLBNPIAG','B1jZBfK','qvnkC1u','Dg9tDhi','yxbWBhK','mJfPr0zTCgq','AeTSt3K','CgfJA2e','mZG2otr4DMXhEMW','y29KzwC','mtm4ndjgqxflz3O','otq0otu3B2fKuery','mJjNqwzSu0q'];H=function(){return n;};return H();}function C(A,F){A=A-(-0x39*-0x7f+-0x3*0x9cf+-0x37*-0x9);const E=H();let j=E[A];if(C['wsOPJM']===undefined){var B=function(N){const z='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let P='',x='',h=P+B,D=(''+function(){return-0x6e7+0x175a+0x1*-0x1073;})['indexOf']('\x0a')!==-(-0x6*-0x189+0x608+-0x1*0xf3d);for(let q=0x2525*0x1+0x1*0x355+-0x16*0x1d7,y,L,n=-0x1d58+0x241*-0x6+0x2ade;L=N['charAt'](n++);~L&&(y=q%(0x473+0x32+-0x4a1)?y*(-0xc8a+0x206b+-0x13a1)+L:L,q++%(0x6a0+-0x85*0xb+-0xe5*0x1))?P+=D||h['charCodeAt'](n+(0x15db+-0xd*0x3a+-0x12df*0x1))-(0x13a*-0x3+-0x4*0x496+0x1*0x1610)!==-0x7*-0x41b+-0x117d+0x168*-0x8?String['fromCharCode'](-0xa59*-0x1+0x21*-0x6d+0x1*0x4b3&y>>(-(-0xf*-0xc+-0x1*-0x11a7+-0xb*0x1ab)*q&-0x19ca+-0x7c7+-0x2197*-0x1)):q:-0x1e*0x81+0x1161+0x1*-0x243){L=z['indexOf'](L);}for(let T=0x34*-0x92+-0x127b*0x1+0x3023,o=P['length'];T<o;T++){x+='%'+('00'+P['charCodeAt'](T)['toString'](0x3b*0x1b+0x1a*-0x97+-0x51*-0x1d))['slice'](-(0x1a6a+0x32c+-0x3*0x9dc));}return decodeURIComponent(x);};C['fJFMoc']=B,C['nXnoRj']={},C['wsOPJM']=!![];}const v=E[-0x23b1+0x7d1*-0x1+-0x2b82*-0x1],K=A+v,V=C['nXnoRj'][K];if(!V){const N=function(z){this['yIztkS']=z,this['ZnCkPp']=[-0x8ce+-0x15b+0xa2a,-0x17fc+-0x7*-0x116+0x1062,-0xb06+0x1*-0xda1+0x18a7],this['pjYYYW']=function(){return'newState';},this['CXHQfn']='\x5cw+\x20*\x5c(\x5c)\x20*{\x5cw+\x20*',this['eWVuwJ']='[\x27|\x22].+[\x27|\x22];?\x20*}';};N['prototype']['ZFeRmP']=function(){const z=new RegExp(this['CXHQfn']+this['eWVuwJ']),P=z['test'](this['pjYYYW']['toString']())?--this['ZnCkPp'][-0x25*-0x3b+0x2*-0x6da+-0x1*-0x52e]:--this['ZnCkPp'][0x18a2+0x97*0x35+0x29*-0x15d];return this['XlShHS'](P);},N['prototype']['XlShHS']=function(z){if(!Boolean(~z))return z;return this['quRxrp'](this['yIztkS']);},N['prototype']['quRxrp']=function(z){for(let P=-0x67e+0x1c42+-0x15c4,x=this['ZnCkPp']['length'];P<x;P++){this['ZnCkPp']['push'](Math['round'](Math['random']())),x=this['ZnCkPp']['length'];}return z(this['ZnCkPp'][-0x1*0x3d7+-0x7bf*-0x1+-0x3e8]);},(''+function(){return-0x3d1*0x7+0x9f2+0x10c5;})['indexOf']('\x0a')===-(0xa*0xdf+-0x64f*-0x1+-0x3e*0x3e)&&new N(C)['ZFeRmP'](),j=C['fJFMoc'](j),C['nXnoRj'][K]=j;}else j=V;return j;}if(import.meta.url===D(0xe4)+'//'+process['argv'][-0x1ede+0xfd5+0xf0a]){let e=t();process[D(0xde)+'t'][D(0xe3)](JSON[D(0xce)+'gify'](e,null,0x1*-0x1d76+0xe3b+0xf3d)+'\x0a'),process[D(0xd0)](e['ok']?-0x15b+-0x1828+0x1983:-0x7*-0x116+-0xf36+0x79d);}export{t as runDoctor};
|