File tree Expand file tree Collapse file tree 3 files changed +4
-15
lines changed
Expand file tree Collapse file tree 3 files changed +4
-15
lines changed Original file line number Diff line number Diff line change 6161 # Console SDKs
6262 - sdk : cli
6363 platform : console
64+
65+ - sdk : web
66+ platform : console
6467
6568 steps :
6669 - name : Checkout repository
Original file line number Diff line number Diff line change @@ -30,20 +30,6 @@ class Client {
3030 };
3131 }
3232
33- /**
34- * Set Cookie
35- *
36- * Your cookie
37- *
38- * @param {string} cookie
39- *
40- * @return self
41- */
42- setCookie(cookie: string): this {
43- this.addHeader('cookie', cookie);
44- return this;
45- }
46-
4733{% for header in spec .global .headers %}
4834 /**
4935 * Set {{header .key | caseUcfirst }}
Original file line number Diff line number Diff line change @@ -456,7 +456,7 @@ class Client {
456456
457457 const channels = new URLSearchParams();
458458 if (this.config.project) {
459- channels.set('project', this.config.project);
459+ channels.set('project', this.config.project as string );
460460 }
461461 this.realtime.channels.forEach(channel => {
462462 channels.append('channels[]', channel);
You can’t perform that action at this time.
0 commit comments