Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@atproto/xrpc

Package Overview
Dependencies
Maintainers
4
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@atproto/xrpc - npm Package Compare versions

Comparing version 0.4.2 to 0.4.3-next.0

dist/client.d.ts.map

9

CHANGELOG.md
# @atproto/xrpc
## 0.4.3-next.0
### Patch Changes
- Overhaul of package builds, no longer bundling deps.
- Updated dependencies []:
- @atproto/lexicon@0.3.3-next.0
## 0.4.2

@@ -4,0 +13,0 @@

1

dist/client.d.ts

@@ -22,1 +22,2 @@ import { LexiconDoc, Lexicons } from '@atproto/lexicon';

export declare function defaultFetchHandler(httpUri: string, httpMethod: string, httpHeaders: Headers, httpReqBody: unknown): Promise<FetchHandlerResponse>;
//# sourceMappingURL=client.d.ts.map

@@ -6,1 +6,2 @@ export * from './types';

export default defaultInst;
//# sourceMappingURL=index.d.ts.map

@@ -91,1 +91,2 @@ import { z } from 'zod';

}
//# sourceMappingURL=types.d.ts.map

@@ -11,1 +11,2 @@ import { LexXrpcProcedure, LexXrpcQuery } from '@atproto/lexicon';

export declare function httpResponseBodyParse(mimeType: string | null, data: ArrayBuffer | undefined): any;
//# sourceMappingURL=util.d.ts.map

15

package.json
{
"name": "@atproto/xrpc",
"version": "0.4.2",
"version": "0.4.3-next.0",
"license": "MIT",

@@ -17,12 +17,13 @@ "description": "atproto HTTP API (XRPC) client library",

"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"zod": "^3.21.4",
"@atproto/lexicon": "^0.3.2"
"@atproto/lexicon": "^0.3.3-next.0"
},
"devDependencies": {
"typescript": "^5.3.3"
},
"scripts": {
"build": "node ./build.js",
"postbuild": "tsc --build tsconfig.build.json",
"update-main-to-dist": "node ../../update-main-to-dist.js packages/xrpc"
},
"types": "dist/index.d.ts"
"build": "tsc --build tsconfig.build.json"
}
}
{
"extends": "./tsconfig.json",
"exclude": ["**/*.spec.ts", "**/*.test.ts"]
"extends": "../../tsconfig/isomorphic.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist"
},
"include": ["./src"]
}
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist", // Your outDir,
"emitDeclarationOnly": true
},
"include": ["./src", "__tests__/**/**.ts"],
"references": [
{ "path": "../common/tsconfig.build.json" },
{ "path": "../lexicon/tsconfig.build.json" }
]
"include": [],
"references": [{ "path": "./tsconfig.build.json" }]
}

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc