Skip to content

Commit d2e8678

Browse files
authored
Merge pull request #65 from Typeform/UA-756-deprecate-endpoint
Ua 756 deprecate endpoint
2 parents f6a48ab + 268d35d commit d2e8678

File tree

4 files changed

+0
-150
lines changed

4 files changed

+0
-150
lines changed

README.md

-18
Original file line numberDiff line numberDiff line change
@@ -149,24 +149,6 @@ Each one of them encapsulates the operations related to it (like listing, updati
149149

150150
- Deletes an image with the given ID
151151

152-
### Teams
153-
154-
#### `teams.get({ id })`
155-
156-
- Gets team information for the given ID
157-
158-
#### `teams.addMembers({ id, members })`
159-
160-
- Add members to a team for the given ID
161-
- `members`: `string` or an `array` and should be the email for the user
162-
- Adding multiple members at once is possible using an array of emails
163-
164-
#### `teams.removeMembers({ id, members })`
165-
166-
- Remove members to a team for the given ID
167-
- `members`: `string` or an `array` and should be the email for the user
168-
- Deleting multiple members at once is possible using an array of emails
169-
170152
### Themes
171153

172154
#### `themes.list({ page, pageSize })`

src/index.ts

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { clientConstructor } from './create-client'
22
import { Forms } from './forms'
33
import { Images } from './images'
4-
import { Teams } from './teams'
54
import { Themes } from './themes'
65
import { Workspaces } from './workspaces'
76
import { Responses } from './responses'
@@ -16,7 +15,6 @@ export const createClient = (args: Typeform.ClientArg = { token: null }) => {
1615
return {
1716
forms: new Forms(http),
1817
images: new Images(http),
19-
teams: new Teams(http),
2018
themes: new Themes(http),
2119
workspaces: new Workspaces(http),
2220
responses: new Responses(http),

src/teams.ts

-47
This file was deleted.

tests/unit/teams.test.ts

-83
This file was deleted.

0 commit comments

Comments
 (0)