Skip to content

Commit ec3b4f6

Browse files
Merge pull request #3131 from airbytehq/publish/typeform-v0.1.15
chore(typeform): bump to 0.1.15
2 parents 07bd0a1 + 90f2769 commit ec3b4f6

File tree

11 files changed

+355
-322
lines changed

11 files changed

+355
-322
lines changed

connectors/typeform/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Typeform changelog
22

3+
## [0.1.15] - 2026-04-09
4+
- Updated connector definition (YAML version 1.0.3)
5+
- Source commit: 3cecc817
6+
- SDK version: 0.1.0
7+
38
## [0.1.14] - 2026-04-08
49
- Updated connector definition (YAML version 1.0.3)
510
- Source commit: eeaf9a60

connectors/typeform/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -91,12 +91,12 @@ This connector supports the following entities and actions. For more details, se
9191

9292
| Entity | Actions |
9393
|--------|---------|
94-
| Forms | [List](./REFERENCE.md#forms-list), [Get](./REFERENCE.md#forms-get), [Search](./REFERENCE.md#forms-search) |
95-
| Responses | [List](./REFERENCE.md#responses-list), [Search](./REFERENCE.md#responses-search) |
96-
| Webhooks | [List](./REFERENCE.md#webhooks-list), [Search](./REFERENCE.md#webhooks-search) |
97-
| Workspaces | [List](./REFERENCE.md#workspaces-list), [Search](./REFERENCE.md#workspaces-search) |
98-
| Images | [List](./REFERENCE.md#images-list), [Search](./REFERENCE.md#images-search) |
99-
| Themes | [List](./REFERENCE.md#themes-list), [Search](./REFERENCE.md#themes-search) |
94+
| Forms | [List](./REFERENCE.md#forms-list), [Get](./REFERENCE.md#forms-get), [Context Store Search](./REFERENCE.md#forms-context-store-search) |
95+
| Responses | [List](./REFERENCE.md#responses-list), [Context Store Search](./REFERENCE.md#responses-context-store-search) |
96+
| Webhooks | [List](./REFERENCE.md#webhooks-list), [Context Store Search](./REFERENCE.md#webhooks-context-store-search) |
97+
| Workspaces | [List](./REFERENCE.md#workspaces-list), [Context Store Search](./REFERENCE.md#workspaces-context-store-search) |
98+
| Images | [List](./REFERENCE.md#images-list), [Context Store Search](./REFERENCE.md#images-context-store-search) |
99+
| Themes | [List](./REFERENCE.md#themes-list), [Context Store Search](./REFERENCE.md#themes-context-store-search) |
100100

101101

102102
### Authentication
@@ -109,7 +109,7 @@ See the official [Typeform API reference](https://developer.typeform.com/).
109109

110110
## Version information
111111

112-
- **Package version:** 0.1.14
112+
- **Package version:** 0.1.15
113113
- **Connector version:** 1.0.3
114-
- **Generated with Connector SDK commit SHA:** eeaf9a603e6c650b89bac7339c63f31ef77f5bcf
114+
- **Generated with Connector SDK commit SHA:** 3cecc817f060335c13c5d88bc9ad34a4dace961f
115115
- **Changelog:** [View changelog](https://github.com/airbytehq/airbyte-agent-connectors/blob/main/connectors/typeform/CHANGELOG.md)

connectors/typeform/REFERENCE.md

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ The Typeform connector supports the following entities and actions.
88

99
| Entity | Actions |
1010
|--------|---------|
11-
| Forms | [List](#forms-list), [Get](#forms-get), [Search](#forms-search) |
12-
| Responses | [List](#responses-list), [Search](#responses-search) |
13-
| Webhooks | [List](#webhooks-list), [Search](#webhooks-search) |
14-
| Workspaces | [List](#workspaces-list), [Search](#workspaces-search) |
15-
| Images | [List](#images-list), [Search](#images-search) |
16-
| Themes | [List](#themes-list), [Search](#themes-search) |
11+
| Forms | [List](#forms-list), [Get](#forms-get), [Context Store Search](#forms-context-store-search) |
12+
| Responses | [List](#responses-list), [Context Store Search](#responses-context-store-search) |
13+
| Webhooks | [List](#webhooks-list), [Context Store Search](#webhooks-context-store-search) |
14+
| Workspaces | [List](#workspaces-list), [Context Store Search](#workspaces-context-store-search) |
15+
| Images | [List](#images-list), [Context Store Search](#images-context-store-search) |
16+
| Themes | [List](#themes-list), [Context Store Search](#themes-context-store-search) |
1717

1818
## Forms
1919

@@ -142,14 +142,14 @@ curl --location 'https://api.airbyte.ai/api/v1/integrations/connectors/{your_con
142142

143143
</details>
144144

145-
### Forms Search
145+
### Forms Context Store Search
146146

147147
Search and filter forms records powered by Airbyte's data sync. This often provides additional fields and operators beyond what the API natively supports, making it easier to narrow down results before performing further operations. Only available in hosted mode.
148148

149149
#### Python SDK
150150

151151
```python
152-
await typeform.forms.search(
152+
await typeform.forms.context_store_search(
153153
query={"filter": {"eq": {"_links": {}}}}
154154
)
155155
```
@@ -162,7 +162,7 @@ curl --location 'https://api.airbyte.ai/api/v1/integrations/connectors/{your_con
162162
--header 'Authorization: Bearer {your_auth_token}' \
163163
--data '{
164164
"entity": "forms",
165-
"action": "search",
165+
"action": "context_store_search",
166166
"params": {
167167
"query": {"filter": {"eq": {"_links": {}}}}
168168
}
@@ -301,14 +301,14 @@ curl --location 'https://api.airbyte.ai/api/v1/integrations/connectors/{your_con
301301

302302
</details>
303303

304-
### Responses Search
304+
### Responses Context Store Search
305305

306306
Search and filter responses records powered by Airbyte's data sync. This often provides additional fields and operators beyond what the API natively supports, making it easier to narrow down results before performing further operations. Only available in hosted mode.
307307

308308
#### Python SDK
309309

310310
```python
311-
await typeform.responses.search(
311+
await typeform.responses.context_store_search(
312312
query={"filter": {"eq": {"answers": []}}}
313313
)
314314
```
@@ -321,7 +321,7 @@ curl --location 'https://api.airbyte.ai/api/v1/integrations/connectors/{your_con
321321
--header 'Authorization: Bearer {your_auth_token}' \
322322
--data '{
323323
"entity": "responses",
324-
"action": "search",
324+
"action": "context_store_search",
325325
"params": {
326326
"query": {"filter": {"eq": {"answers": []}}}
327327
}
@@ -437,14 +437,14 @@ curl --location 'https://api.airbyte.ai/api/v1/integrations/connectors/{your_con
437437

438438
</details>
439439

440-
### Webhooks Search
440+
### Webhooks Context Store Search
441441

442442
Search and filter webhooks records powered by Airbyte's data sync. This often provides additional fields and operators beyond what the API natively supports, making it easier to narrow down results before performing further operations. Only available in hosted mode.
443443

444444
#### Python SDK
445445

446446
```python
447-
await typeform.webhooks.search(
447+
await typeform.webhooks.context_store_search(
448448
query={"filter": {"eq": {"created_at": "<str>"}}}
449449
)
450450
```
@@ -457,7 +457,7 @@ curl --location 'https://api.airbyte.ai/api/v1/integrations/connectors/{your_con
457457
--header 'Authorization: Bearer {your_auth_token}' \
458458
--data '{
459459
"entity": "webhooks",
460-
"action": "search",
460+
"action": "context_store_search",
461461
"params": {
462462
"query": {"filter": {"eq": {"created_at": "<str>"}}}
463463
}
@@ -567,14 +567,14 @@ curl --location 'https://api.airbyte.ai/api/v1/integrations/connectors/{your_con
567567

568568
</details>
569569

570-
### Workspaces Search
570+
### Workspaces Context Store Search
571571

572572
Search and filter workspaces records powered by Airbyte's data sync. This often provides additional fields and operators beyond what the API natively supports, making it easier to narrow down results before performing further operations. Only available in hosted mode.
573573

574574
#### Python SDK
575575

576576
```python
577-
await typeform.workspaces.search(
577+
await typeform.workspaces.context_store_search(
578578
query={"filter": {"eq": {"account_id": "<str>"}}}
579579
)
580580
```
@@ -587,7 +587,7 @@ curl --location 'https://api.airbyte.ai/api/v1/integrations/connectors/{your_con
587587
--header 'Authorization: Bearer {your_auth_token}' \
588588
--data '{
589589
"entity": "workspaces",
590-
"action": "search",
590+
"action": "context_store_search",
591591
"params": {
592592
"query": {"filter": {"eq": {"account_id": "<str>"}}}
593593
}
@@ -683,14 +683,14 @@ curl --location 'https://api.airbyte.ai/api/v1/integrations/connectors/{your_con
683683

684684
</details>
685685

686-
### Images Search
686+
### Images Context Store Search
687687

688688
Search and filter images records powered by Airbyte's data sync. This often provides additional fields and operators beyond what the API natively supports, making it easier to narrow down results before performing further operations. Only available in hosted mode.
689689

690690
#### Python SDK
691691

692692
```python
693-
await typeform.images.search(
693+
await typeform.images.context_store_search(
694694
query={"filter": {"eq": {"avg_color": "<str>"}}}
695695
)
696696
```
@@ -703,7 +703,7 @@ curl --location 'https://api.airbyte.ai/api/v1/integrations/connectors/{your_con
703703
--header 'Authorization: Bearer {your_auth_token}' \
704704
--data '{
705705
"entity": "images",
706-
"action": "search",
706+
"action": "context_store_search",
707707
"params": {
708708
"query": {"filter": {"eq": {"avg_color": "<str>"}}}
709709
}
@@ -818,14 +818,14 @@ curl --location 'https://api.airbyte.ai/api/v1/integrations/connectors/{your_con
818818

819819
</details>
820820

821-
### Themes Search
821+
### Themes Context Store Search
822822

823823
Search and filter themes records powered by Airbyte's data sync. This often provides additional fields and operators beyond what the API natively supports, making it easier to narrow down results before performing further operations. Only available in hosted mode.
824824

825825
#### Python SDK
826826

827827
```python
828-
await typeform.themes.search(
828+
await typeform.themes.context_store_search(
829829
query={"filter": {"eq": {"background": {}}}}
830830
)
831831
```
@@ -838,7 +838,7 @@ curl --location 'https://api.airbyte.ai/api/v1/integrations/connectors/{your_con
838838
--header 'Authorization: Bearer {your_auth_token}' \
839839
--data '{
840840
"entity": "themes",
841-
"action": "search",
841+
"action": "context_store_search",
842842
"params": {
843843
"query": {"filter": {"eq": {"background": {}}}}
844844
}

0 commit comments

Comments
 (0)