@stream-io/node-sdk 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-assets/Github-Graphic-JS.jpg +0 -0
- package/LICENSE +219 -0
- package/README.md +29 -0
- package/dist/__tests__/block-lists.test.d.ts +1 -0
- package/dist/__tests__/call-members.test.d.ts +1 -0
- package/dist/__tests__/call-types.test.d.ts +1 -0
- package/dist/__tests__/call.test.d.ts +1 -0
- package/dist/__tests__/channel-types.test.d.ts +1 -0
- package/dist/__tests__/channel.test.d.ts +1 -0
- package/dist/__tests__/command.test.d.ts +1 -0
- package/dist/__tests__/create-token.test.d.ts +1 -0
- package/dist/__tests__/devices-push.test.d.ts +1 -0
- package/dist/__tests__/messages.test.d.ts +1 -0
- package/dist/__tests__/permissions-app-settings.test.d.ts +1 -0
- package/dist/__tests__/user-compat.test.d.ts +1 -0
- package/dist/__tests__/users.test.d.ts +1 -0
- package/dist/index.cjs.js +8789 -0
- package/dist/index.cjs.js.map +1 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.es.js +8708 -0
- package/dist/index.es.js.map +1 -0
- package/dist/src/StreamCall.d.ts +37 -0
- package/dist/src/StreamChannel.d.ts +39 -0
- package/dist/src/StreamChatClient.d.ts +31 -0
- package/dist/src/StreamClient.d.ts +68 -0
- package/dist/src/StreamVideoClient.d.ts +16 -0
- package/dist/src/gen/chat/apis/ChannelTypesApi.d.ts +81 -0
- package/dist/src/gen/chat/apis/ChannelsApi.d.ts +308 -0
- package/dist/src/gen/chat/apis/CustomCommandsApi.d.ts +81 -0
- package/dist/src/gen/chat/apis/DefaultApi.d.ts +60 -0
- package/dist/src/gen/chat/apis/DevicesApi.d.ts +58 -0
- package/dist/src/gen/chat/apis/EventsApi.d.ts +64 -0
- package/dist/src/gen/chat/apis/FilesApi.d.ts +81 -0
- package/dist/src/gen/chat/apis/GDPRApi.d.ts +114 -0
- package/dist/src/gen/chat/apis/ImportsApi.d.ts +67 -0
- package/dist/src/gen/chat/apis/MessagesApi.d.ts +370 -0
- package/dist/src/gen/chat/apis/ModerationApi.d.ts +271 -0
- package/dist/src/gen/chat/apis/PermissionsV2Api.d.ts +77 -0
- package/dist/src/gen/chat/apis/PushApi.d.ts +65 -0
- package/dist/src/gen/chat/apis/ReactionsApi.d.ts +62 -0
- package/dist/src/gen/chat/apis/ServerSideApi.d.ts +31 -0
- package/dist/src/gen/chat/apis/SettingsApi.d.ts +257 -0
- package/dist/src/gen/chat/apis/TasksApi.d.ts +31 -0
- package/dist/src/gen/chat/apis/TestingApi.d.ts +57 -0
- package/dist/src/gen/chat/apis/UsersApi.d.ts +313 -0
- package/dist/src/gen/chat/apis/index.d.ts +19 -0
- package/dist/src/gen/chat/index.d.ts +3 -0
- package/dist/src/gen/chat/models/index.d.ts +15624 -0
- package/dist/src/gen/chat/runtime.d.ts +180 -0
- package/dist/src/gen/video/apis/DefaultApi.d.ts +505 -0
- package/dist/src/gen/video/apis/ServerSideApi.d.ts +81 -0
- package/dist/src/gen/video/apis/index.d.ts +2 -0
- package/dist/src/gen/video/index.d.ts +3 -0
- package/dist/src/gen/video/models/index.d.ts +4733 -0
- package/dist/src/gen/video/runtime.d.ts +180 -0
- package/dist/src/types.d.ts +1 -0
- package/dist/src/utils/create-token.d.ts +3 -0
- package/index.ts +7 -0
- package/package.json +47 -0
- package/src/StreamCall.ts +161 -0
- package/src/StreamChannel.ts +165 -0
- package/src/StreamChatClient.ts +102 -0
- package/src/StreamClient.ts +440 -0
- package/src/StreamVideoClient.ts +63 -0
- package/src/gen/chat/.openapi-generator/FILES +24 -0
- package/src/gen/chat/.openapi-generator/VERSION +1 -0
- package/src/gen/chat/.openapi-generator-ignore +23 -0
- package/src/gen/chat/apis/ChannelTypesApi.ts +275 -0
- package/src/gen/chat/apis/ChannelsApi.ts +1221 -0
- package/src/gen/chat/apis/CustomCommandsApi.ts +276 -0
- package/src/gen/chat/apis/DefaultApi.ts +196 -0
- package/src/gen/chat/apis/DevicesApi.ts +180 -0
- package/src/gen/chat/apis/EventsApi.ts +220 -0
- package/src/gen/chat/apis/FilesApi.ts +312 -0
- package/src/gen/chat/apis/GDPRApi.ts +418 -0
- package/src/gen/chat/apis/ImportsApi.ts +222 -0
- package/src/gen/chat/apis/MessagesApi.ts +1475 -0
- package/src/gen/chat/apis/ModerationApi.ts +1038 -0
- package/src/gen/chat/apis/PermissionsV2Api.ts +259 -0
- package/src/gen/chat/apis/PushApi.ts +183 -0
- package/src/gen/chat/apis/ReactionsApi.ts +202 -0
- package/src/gen/chat/apis/ServerSideApi.ts +79 -0
- package/src/gen/chat/apis/SettingsApi.ts +948 -0
- package/src/gen/chat/apis/TasksApi.ts +75 -0
- package/src/gen/chat/apis/TestingApi.ts +185 -0
- package/src/gen/chat/apis/UsersApi.ts +1203 -0
- package/src/gen/chat/apis/index.ts +30 -0
- package/src/gen/chat/index.ts +5 -0
- package/src/gen/chat/models/index.ts +15541 -0
- package/src/gen/chat/runtime.ts +415 -0
- package/src/gen/video/.openapi-generator/FILES +7 -0
- package/src/gen/video/.openapi-generator/VERSION +1 -0
- package/src/gen/video/.openapi-generator-ignore +23 -0
- package/src/gen/video/apis/DefaultApi.ts +1997 -0
- package/src/gen/video/apis/ServerSideApi.ts +276 -0
- package/src/gen/video/apis/index.ts +4 -0
- package/src/gen/video/index.ts +5 -0
- package/src/gen/video/models/index.ts +4642 -0
- package/src/gen/video/runtime.ts +415 -0
- package/src/types.ts +1 -0
- package/src/utils/create-token.ts +49 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
export * from './ChannelTypesApi';
|
|
4
|
+
export * from './ChannelsApi';
|
|
5
|
+
export * from './CustomCommandsApi';
|
|
6
|
+
export * from './DefaultApi';
|
|
7
|
+
export * from './DevicesApi';
|
|
8
|
+
// @ts-expect-error
|
|
9
|
+
export * from './EventsApi';
|
|
10
|
+
export * from './FilesApi';
|
|
11
|
+
// @ts-expect-error
|
|
12
|
+
export * from './GDPRApi';
|
|
13
|
+
export * from './ImportsApi';
|
|
14
|
+
// @ts-expect-error
|
|
15
|
+
export * from './MessagesApi';
|
|
16
|
+
// @ts-expect-error
|
|
17
|
+
export * from './ModerationApi';
|
|
18
|
+
export * from './PermissionsV2Api';
|
|
19
|
+
// @ts-expect-error
|
|
20
|
+
export * from './PushApi';
|
|
21
|
+
// @ts-expect-error
|
|
22
|
+
export * from './ReactionsApi';
|
|
23
|
+
export * from './ServerSideApi';
|
|
24
|
+
// @ts-expect-error
|
|
25
|
+
export * from './SettingsApi';
|
|
26
|
+
export * from './TasksApi';
|
|
27
|
+
// @ts-expect-error
|
|
28
|
+
export * from './TestingApi';
|
|
29
|
+
// @ts-expect-error
|
|
30
|
+
export * from './UsersApi';
|