Skip to content

Commit 4d50fa2

Browse files
feat(docs): updating documented docs for stainless
1 parent afdd5f4 commit 4d50fa2

16 files changed

+22979
-1689
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 11
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openint%2Fopenint-d6333dfcc2d3e03c7e00b0f9eedc0cbeebd9174cbebbbb75cdc5938d70113e2e.yml
3-
openapi_spec_hash: 7033d26ed782ee5cfca8fd61b6dd5d84
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openint%2Fopenint-0a4eb274ac57a4d4bd8936015f41147c7cd218a13446aea787cd0cf063af66cf.yml
3+
openapi_spec_hash: 2ec6f02a72534100a5bdf0dc709dc6dd
44
config_hash: 287d5109de5717d392756a2fbe488e49

api.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ Types:
66
from openint.types import (
77
Connector,
88
Integration,
9-
OAuthConnectionSettings,
10-
OAuthConnectorConfig,
119
CheckConnectionResponse,
1210
CreateConnectionResponse,
1311
CreateTokenResponse,

src/openint/_client.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -516,6 +516,7 @@ def list_connection_configs(
516516
connector_names: List[
517517
Literal[
518518
"accelo",
519+
"acme-apikey",
519520
"acme-oauth2",
520521
"adobe",
521522
"adyen",
@@ -638,6 +639,7 @@ def list_connection_configs(
638639
"servicem8",
639640
"servicenow",
640641
"sharepoint",
642+
"sharepoint-onprem",
641643
"shopify",
642644
"signnow",
643645
"slack",
@@ -745,6 +747,7 @@ def list_connections(
745747
connector_names: List[
746748
Literal[
747749
"accelo",
750+
"acme-apikey",
748751
"acme-oauth2",
749752
"adobe",
750753
"adyen",
@@ -867,6 +870,7 @@ def list_connections(
867870
"servicem8",
868871
"servicenow",
869872
"sharepoint",
873+
"sharepoint-onprem",
870874
"shopify",
871875
"signnow",
872876
"slack",
@@ -1567,6 +1571,7 @@ def list_connection_configs(
15671571
connector_names: List[
15681572
Literal[
15691573
"accelo",
1574+
"acme-apikey",
15701575
"acme-oauth2",
15711576
"adobe",
15721577
"adyen",
@@ -1689,6 +1694,7 @@ def list_connection_configs(
16891694
"servicem8",
16901695
"servicenow",
16911696
"sharepoint",
1697+
"sharepoint-onprem",
16921698
"shopify",
16931699
"signnow",
16941700
"slack",
@@ -1796,6 +1802,7 @@ def list_connections(
17961802
connector_names: List[
17971803
Literal[
17981804
"accelo",
1805+
"acme-apikey",
17991806
"acme-oauth2",
18001807
"adobe",
18011808
"adyen",
@@ -1918,6 +1925,7 @@ def list_connections(
19181925
"servicem8",
19191926
"servicenow",
19201927
"sharepoint",
1928+
"sharepoint-onprem",
19211929
"shopify",
19221930
"signnow",
19231931
"slack",

src/openint/types/__init__.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,12 @@
66
from .integration import Integration as Integration
77
from .list_events_response import ListEventsResponse as ListEventsResponse
88
from .create_token_response import CreateTokenResponse as CreateTokenResponse
9-
from .oauth_connector_config import OAuthConnectorConfig as OAuthConnectorConfig
109
from .get_connection_response import GetConnectionResponse as GetConnectionResponse
1110
from .list_connectors_response import ListConnectorsResponse as ListConnectorsResponse
1211
from .check_connection_response import CheckConnectionResponse as CheckConnectionResponse
1312
from .client_list_events_params import ClientListEventsParams as ClientListEventsParams
1413
from .get_current_user_response import GetCurrentUserResponse as GetCurrentUserResponse
1514
from .list_connections_response import ListConnectionsResponse as ListConnectionsResponse
16-
from .oauth_connection_settings import OAuthConnectionSettings as OAuthConnectionSettings
1715
from .client_create_token_params import ClientCreateTokenParams as ClientCreateTokenParams
1816
from .create_connection_response import CreateConnectionResponse as CreateConnectionResponse
1917
from .delete_connection_response import DeleteConnectionResponse as DeleteConnectionResponse
@@ -22,7 +20,6 @@
2220
from .get_message_template_response import GetMessageTemplateResponse as GetMessageTemplateResponse
2321
from .client_list_connections_params import ClientListConnectionsParams as ClientListConnectionsParams
2422
from .client_create_connection_params import ClientCreateConnectionParams as ClientCreateConnectionParams
25-
from .oauth_connection_settings_param import OAuthConnectionSettingsParam as OAuthConnectionSettingsParam
2623
from .list_connection_configs_response import ListConnectionConfigsResponse as ListConnectionConfigsResponse
2724
from .client_get_message_template_params import ClientGetMessageTemplateParams as ClientGetMessageTemplateParams
2825
from .client_list_connection_configs_params import (

0 commit comments

Comments
 (0)