Skip to content

Commit

Permalink
Publish
Browse files Browse the repository at this point in the history
- @slack/socket-mode@0.1.0-socketModeBeta.1
  • Loading branch information
stevengill committed Oct 1, 2020
1 parent 37812fe commit d29fdc6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/maintainers_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ If you make a mistake, don't fret. NPM allows you to unpublish a release within
```
Publish
- @slack/web-api@5.11.0--workflowStepsBeta.1
- @slack/types@1.8.0-workflowStepsBeta.
- @slack/web-api@5.11.0-workflowStepsBeta.1
- @slack/types@1.8.0-workflowStepsBeta.1
```

#### **Add Git Tags**
Expand Down
2 changes: 1 addition & 1 deletion packages/socket-mode/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@slack/socket-mode",
"version": "0.0.1",
"version": "0.1.0-socketModeBeta.1",
"description": "Official library for using the Slack Platform's Socket Mode API",
"author": "Slack Technologies, Inc.",
"license": "MIT",
Expand Down
6 changes: 0 additions & 6 deletions packages/socket-mode/src/SocketModeClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ import {
WebAPICallResult,
WebAPICallError,
ErrorCode as APICallErrorCode,
RetryOptions,
// TLSOptions,
addAppMetadata,
WebClientOptions,
} from '@slack/web-api';
Expand Down Expand Up @@ -328,10 +326,8 @@ export class SocketModeClient extends EventEmitter {
logLevel = LogLevel.INFO,
autoReconnect = true,
clientPingTimeout = 30000,
// serverPongTimeout,
token = undefined,
clientOptions = {},
// retryConfig,
}: SocketModeOptions = {}) {
super();

Expand Down Expand Up @@ -642,10 +638,8 @@ export interface SocketModeOptions {
token?: string; // app level token
logger?: Logger;
logLevel?: LogLevel;
retryConfig?: RetryOptions;
autoReconnect?: boolean;
clientPingTimeout?: number;
serverPongTimeout?: number;
clientOptions?: Omit<WebClientOptions, 'logLevel' | 'logger'>;
}

Expand Down

0 comments on commit d29fdc6

Please sign in to comment.