@streamlayer/sdk-web-types 0.1.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/README.md +7 -0
- package/package.json +20 -0
- package/src/index.d.ts +1 -0
- package/src/index.js +3 -0
- package/src/index.js.map +1 -0
- package/src/lib/core-types.d.ts +4 -0
- package/src/lib/core-types.js +3 -0
- package/src/lib/core-types.js.map +1 -0
package/README.md
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@streamlayer/sdk-web-types",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"dependencies": {
|
|
5
|
+
"@swc/helpers": "~0.5.0",
|
|
6
|
+
"@bufbuild/protobuf": "^1.3.0",
|
|
7
|
+
"@streamlayer/sl-eslib": "^5.24.0"
|
|
8
|
+
},
|
|
9
|
+
"type": "module",
|
|
10
|
+
"main": "./src/index.js",
|
|
11
|
+
"typings": "./src/index.d.ts",
|
|
12
|
+
"files": [
|
|
13
|
+
"src/"
|
|
14
|
+
],
|
|
15
|
+
"exports": {
|
|
16
|
+
".": {
|
|
17
|
+
"require": "./src/index.js"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
package/src/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './lib/core-types';
|
package/src/index.js
ADDED
package/src/index.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../packages/sdk-web-types/src/index.ts"],"sourcesContent":["export * from './lib/core-types'\n"],"names":[],"mappings":"AAAA,cAAc,mBAAkB"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { PlainMessage } from '@bufbuild/protobuf';
|
|
2
|
+
import type { OrganizationSettings as SLOrganizationSettings } from '@streamlayer/sl-eslib/sdkSettings/sdkSettings.common_pb';
|
|
3
|
+
export type OrganizationSettings = PlainMessage<SLOrganizationSettings>;
|
|
4
|
+
export type KeyS = string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../packages/sdk-web-types/src/lib/core-types.ts"],"sourcesContent":["import type { PlainMessage } from '@bufbuild/protobuf'\nimport type { OrganizationSettings as SLOrganizationSettings } from '@streamlayer/sl-eslib/sdkSettings/sdkSettings.common_pb'\n\nexport type OrganizationSettings = PlainMessage<SLOrganizationSettings>\nexport type KeyS = string\n"],"names":[],"mappings":"AAAA,WAIyB"}
|