zyphr 0.1.32 → 0.1.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +54 -0
- data/docs/AddOrganizationMemberRequest.md +20 -0
- data/docs/AuthOrganizationsApi.md +864 -0
- data/docs/AuthUserProfileApi.md +76 -0
- data/docs/CreateOrganizationRequest.md +22 -0
- data/docs/DomainsApi.md +73 -0
- data/docs/InboundAttachmentUrlResponse.md +20 -0
- data/docs/InboundAttachmentUrlResponseData.md +22 -0
- data/docs/InboundEmail.md +48 -0
- data/docs/InboundEmailApi.md +235 -0
- data/docs/InboundEmailAttachment.md +24 -0
- data/docs/InboundEmailFrom.md +20 -0
- data/docs/InboundEmailListResponse.md +20 -0
- data/docs/InboundEmailListResponseMeta.md +24 -0
- data/docs/InboundEmailResponse.md +20 -0
- data/docs/LoginRequest.md +3 -1
- data/docs/MuseApi.md +681 -0
- data/docs/Organization.md +34 -0
- data/docs/OrganizationListResponse.md +20 -0
- data/docs/OrganizationListResponseMeta.md +20 -0
- data/docs/OrganizationMembersListResponse.md +20 -0
- data/docs/OrganizationMembership.md +30 -0
- data/docs/OrganizationMembershipResponse.md +20 -0
- data/docs/OrganizationMembershipWithUser.md +34 -0
- data/docs/OrganizationResponse.md +20 -0
- data/docs/RegisterRequest.md +5 -1
- data/docs/SetDomainInboundRequest.md +18 -0
- data/docs/SwitchOrganizationRequest.md +20 -0
- data/docs/SwitchOrganizationResponse.md +20 -0
- data/docs/SwitchOrganizationResponseData.md +22 -0
- data/docs/SwitchOrganizationResponseDataTokens.md +24 -0
- data/docs/SwitchOrganizationResponseDataUser.md +20 -0
- data/docs/UpdateOrganizationMemberRoleRequest.md +18 -0
- data/docs/UpdateOrganizationRequest.md +22 -0
- data/docs/V1MuseSubjectsSuggestPostRequest.md +24 -0
- data/lib/zyphr/api/auth_organizations_api.rb +773 -0
- data/lib/zyphr/api/auth_user_profile_api.rb +61 -0
- data/lib/zyphr/api/domains_api.rb +72 -0
- data/lib/zyphr/api/inbound_email_api.rb +234 -0
- data/lib/zyphr/api/muse_api.rb +644 -0
- data/lib/zyphr/models/add_organization_member_request.rb +248 -0
- data/lib/zyphr/models/create_organization_request.rb +258 -0
- data/lib/zyphr/models/inbound_attachment_url_response.rb +229 -0
- data/lib/zyphr/models/inbound_attachment_url_response_data.rb +240 -0
- data/lib/zyphr/models/inbound_email.rb +441 -0
- data/lib/zyphr/models/inbound_email_attachment.rb +250 -0
- data/lib/zyphr/models/inbound_email_from.rb +230 -0
- data/lib/zyphr/models/inbound_email_list_response.rb +231 -0
- data/lib/zyphr/models/inbound_email_list_response_meta.rb +247 -0
- data/lib/zyphr/models/inbound_email_response.rb +229 -0
- data/lib/zyphr/models/login_request.rb +14 -4
- data/lib/zyphr/models/organization.rb +434 -0
- data/lib/zyphr/models/organization_list_response.rb +265 -0
- data/lib/zyphr/models/organization_list_response_meta.rb +230 -0
- data/lib/zyphr/models/organization_members_list_response.rb +265 -0
- data/lib/zyphr/models/organization_membership.rb +379 -0
- data/lib/zyphr/models/organization_membership_response.rb +263 -0
- data/lib/zyphr/models/organization_membership_with_user.rb +405 -0
- data/lib/zyphr/models/organization_response.rb +263 -0
- data/lib/zyphr/models/register_request.rb +43 -4
- data/lib/zyphr/models/set_domain_inbound_request.rb +220 -0
- data/lib/zyphr/models/switch_organization_request.rb +263 -0
- data/lib/zyphr/models/switch_organization_response.rb +263 -0
- data/lib/zyphr/models/switch_organization_response_data.rb +289 -0
- data/lib/zyphr/models/switch_organization_response_data_tokens.rb +339 -0
- data/lib/zyphr/models/switch_organization_response_data_user.rb +230 -0
- data/lib/zyphr/models/update_organization_member_role_request.rb +223 -0
- data/lib/zyphr/models/update_organization_request.rb +239 -0
- data/lib/zyphr/models/v1_muse_subjects_suggest_post_request.rb +326 -0
- data/lib/zyphr.rb +30 -0
- data/spec/api/auth_organizations_api_spec.rb +171 -0
- data/spec/api/auth_user_profile_api_spec.rb +12 -0
- data/spec/api/domains_api_spec.rb +13 -0
- data/spec/api/inbound_email_api_spec.rb +76 -0
- data/spec/api/muse_api_spec.rb +156 -0
- data/spec/models/add_organization_member_request_spec.rb +42 -0
- data/spec/models/create_organization_request_spec.rb +48 -0
- data/spec/models/inbound_attachment_url_response_data_spec.rb +48 -0
- data/spec/models/inbound_attachment_url_response_spec.rb +42 -0
- data/spec/models/inbound_email_attachment_spec.rb +54 -0
- data/spec/models/inbound_email_from_spec.rb +42 -0
- data/spec/models/inbound_email_list_response_meta_spec.rb +54 -0
- data/spec/models/inbound_email_list_response_spec.rb +42 -0
- data/spec/models/inbound_email_response_spec.rb +42 -0
- data/spec/models/inbound_email_spec.rb +142 -0
- data/spec/models/login_request_spec.rb +6 -0
- data/spec/models/organization_list_response_meta_spec.rb +42 -0
- data/spec/models/organization_list_response_spec.rb +42 -0
- data/spec/models/organization_members_list_response_spec.rb +42 -0
- data/spec/models/organization_membership_response_spec.rb +42 -0
- data/spec/models/organization_membership_spec.rb +72 -0
- data/spec/models/organization_membership_with_user_spec.rb +84 -0
- data/spec/models/organization_response_spec.rb +42 -0
- data/spec/models/organization_spec.rb +84 -0
- data/spec/models/register_request_spec.rb +12 -0
- data/spec/models/set_domain_inbound_request_spec.rb +36 -0
- data/spec/models/switch_organization_request_spec.rb +42 -0
- data/spec/models/switch_organization_response_data_spec.rb +48 -0
- data/spec/models/switch_organization_response_data_tokens_spec.rb +58 -0
- data/spec/models/switch_organization_response_data_user_spec.rb +42 -0
- data/spec/models/switch_organization_response_spec.rb +42 -0
- data/spec/models/update_organization_member_role_request_spec.rb +36 -0
- data/spec/models/update_organization_request_spec.rb +48 -0
- data/spec/models/v1_muse_subjects_suggest_post_request_spec.rb +58 -0
- data/zyphr.gemspec +1 -1
- metadata +122 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f36ed1222d5a3811592b282181dd2f67143e4740fbfe7de4d18df12191ea3850
|
|
4
|
+
data.tar.gz: 43f947c3f31db15a223c7413363a94c0c0bbf161e59917d648fe56030031fe35
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9475d1b9bd76ebb758d05850dd196872e08735851fa0ea4cb4ad2ee8860320083411a4d09c0ca2a006770e34f321ed93e936fbc6063731368a5144ac23277fe5
|
|
7
|
+
data.tar.gz: 0562256d9740f5f67df0facd9d401aed1e7de28e99e43b2124f7cca0dcd78ff6d8d063d486791efb1354294ef0558b34159d88da9c89e71e5f597e1227ac24e7
|
data/README.md
CHANGED
|
@@ -160,6 +160,17 @@ Class | Method | HTTP request | Description
|
|
|
160
160
|
*Zyphr::AuthOAuthApi* | [**list_o_auth_connections**](docs/AuthOAuthApi.md#list_o_auth_connections) | **GET** /auth/oauth/connections | List OAuth connections
|
|
161
161
|
*Zyphr::AuthOAuthApi* | [**list_o_auth_providers**](docs/AuthOAuthApi.md#list_o_auth_providers) | **GET** /auth/oauth/providers | List OAuth providers
|
|
162
162
|
*Zyphr::AuthOAuthApi* | [**refresh_o_auth_tokens**](docs/AuthOAuthApi.md#refresh_o_auth_tokens) | **POST** /auth/oauth/tokens/{provider}/refresh | Refresh OAuth provider tokens
|
|
163
|
+
*Zyphr::AuthOrganizationsApi* | [**add_organization_member**](docs/AuthOrganizationsApi.md#add_organization_member) | **POST** /auth/organizations/{id}/members | Add a member to an organization
|
|
164
|
+
*Zyphr::AuthOrganizationsApi* | [**create_organization**](docs/AuthOrganizationsApi.md#create_organization) | **POST** /auth/organizations | Create an organization
|
|
165
|
+
*Zyphr::AuthOrganizationsApi* | [**delete_organization**](docs/AuthOrganizationsApi.md#delete_organization) | **DELETE** /auth/organizations/{id} | Delete an organization
|
|
166
|
+
*Zyphr::AuthOrganizationsApi* | [**get_organization**](docs/AuthOrganizationsApi.md#get_organization) | **GET** /auth/organizations/{id} | Get organization by id
|
|
167
|
+
*Zyphr::AuthOrganizationsApi* | [**list_organization_members**](docs/AuthOrganizationsApi.md#list_organization_members) | **GET** /auth/organizations/{id}/members | List organization members
|
|
168
|
+
*Zyphr::AuthOrganizationsApi* | [**list_organizations**](docs/AuthOrganizationsApi.md#list_organizations) | **GET** /auth/organizations | List organizations
|
|
169
|
+
*Zyphr::AuthOrganizationsApi* | [**list_organizations_for_end_user**](docs/AuthOrganizationsApi.md#list_organizations_for_end_user) | **GET** /auth/end-users/{user_id}/organizations | List organizations an end user belongs to
|
|
170
|
+
*Zyphr::AuthOrganizationsApi* | [**remove_organization_member**](docs/AuthOrganizationsApi.md#remove_organization_member) | **DELETE** /auth/organizations/{id}/members/{user_id} | Remove a member from an organization
|
|
171
|
+
*Zyphr::AuthOrganizationsApi* | [**switch_organization**](docs/AuthOrganizationsApi.md#switch_organization) | **POST** /auth/sessions/switch-organization | Switch the active organization on a session
|
|
172
|
+
*Zyphr::AuthOrganizationsApi* | [**update_organization**](docs/AuthOrganizationsApi.md#update_organization) | **PATCH** /auth/organizations/{id} | Update an organization
|
|
173
|
+
*Zyphr::AuthOrganizationsApi* | [**update_organization_member_role**](docs/AuthOrganizationsApi.md#update_organization_member_role) | **PATCH** /auth/organizations/{id}/members/{user_id} | Update a member's role
|
|
163
174
|
*Zyphr::AuthPasswordResetApi* | [**forgot_password**](docs/AuthPasswordResetApi.md#forgot_password) | **POST** /auth/forgot-password | Request a password reset
|
|
164
175
|
*Zyphr::AuthPasswordResetApi* | [**reset_end_user_password**](docs/AuthPasswordResetApi.md#reset_end_user_password) | **POST** /auth/reset-password | Reset password
|
|
165
176
|
*Zyphr::AuthPasswordResetApi* | [**validate_reset_token**](docs/AuthPasswordResetApi.md#validate_reset_token) | **POST** /auth/validate-reset-token | Validate a password reset token
|
|
@@ -176,6 +187,7 @@ Class | Method | HTTP request | Description
|
|
|
176
187
|
*Zyphr::AuthSessionsApi* | [**revoke_all_end_user_sessions**](docs/AuthSessionsApi.md#revoke_all_end_user_sessions) | **POST** /auth/sessions/revoke-all | Revoke all sessions
|
|
177
188
|
*Zyphr::AuthSessionsApi* | [**revoke_end_user_session**](docs/AuthSessionsApi.md#revoke_end_user_session) | **POST** /auth/sessions/revoke | Revoke a session
|
|
178
189
|
*Zyphr::AuthUserProfileApi* | [**delete_end_user**](docs/AuthUserProfileApi.md#delete_end_user) | **DELETE** /auth/users/me | Delete current end user account
|
|
190
|
+
*Zyphr::AuthUserProfileApi* | [**delete_end_user_by_application**](docs/AuthUserProfileApi.md#delete_end_user_by_application) | **DELETE** /auth/users/{user_id} | Delete an end user (test environment only)
|
|
179
191
|
*Zyphr::AuthUserProfileApi* | [**get_end_user**](docs/AuthUserProfileApi.md#get_end_user) | **GET** /auth/users/me | Get current end user profile
|
|
180
192
|
*Zyphr::AuthUserProfileApi* | [**update_end_user**](docs/AuthUserProfileApi.md#update_end_user) | **PATCH** /auth/users/me | Update current end user profile
|
|
181
193
|
*Zyphr::AuthWebAuthnApi* | [**delete_web_authn_credential**](docs/AuthWebAuthnApi.md#delete_web_authn_credential) | **DELETE** /auth/webauthn/credentials/{id} | Delete a WebAuthn credential
|
|
@@ -197,6 +209,7 @@ Class | Method | HTTP request | Description
|
|
|
197
209
|
*Zyphr::DomainsApi* | [**get_domain**](docs/DomainsApi.md#get_domain) | **GET** /domains/{id} | Get a sending domain
|
|
198
210
|
*Zyphr::DomainsApi* | [**get_domain_verification_status**](docs/DomainsApi.md#get_domain_verification_status) | **GET** /domains/{id}/verification-status | Get domain verification status
|
|
199
211
|
*Zyphr::DomainsApi* | [**list_domains**](docs/DomainsApi.md#list_domains) | **GET** /domains | List sending domains
|
|
212
|
+
*Zyphr::DomainsApi* | [**set_domain_inbound**](docs/DomainsApi.md#set_domain_inbound) | **PUT** /domains/{id}/inbound | Enable or disable inbound email for a domain
|
|
200
213
|
*Zyphr::DomainsApi* | [**verify_domain**](docs/DomainsApi.md#verify_domain) | **POST** /domains/{id}/verify | Trigger domain verification
|
|
201
214
|
*Zyphr::EmailsApi* | [**get_email**](docs/EmailsApi.md#get_email) | **GET** /emails/{id} | Get email details
|
|
202
215
|
*Zyphr::EmailsApi* | [**get_email_events**](docs/EmailsApi.md#get_email_events) | **GET** /emails/{id}/events | Get email events
|
|
@@ -207,6 +220,9 @@ Class | Method | HTTP request | Description
|
|
|
207
220
|
*Zyphr::ExecutionsApi* | [**cancel_execution**](docs/ExecutionsApi.md#cancel_execution) | **POST** /executions/{id}/cancel | Cancel a running execution
|
|
208
221
|
*Zyphr::ExecutionsApi* | [**get_execution**](docs/ExecutionsApi.md#get_execution) | **GET** /executions/{id} | Get a workflow execution
|
|
209
222
|
*Zyphr::ExecutionsApi* | [**retry_execution**](docs/ExecutionsApi.md#retry_execution) | **POST** /executions/{id}/retry | Retry a failed or cancelled execution
|
|
223
|
+
*Zyphr::InboundEmailApi* | [**get_inbound_attachment_url**](docs/InboundEmailApi.md#get_inbound_attachment_url) | **GET** /inbound-emails/{id}/attachments/{attachmentId} | Get an attachment download URL
|
|
224
|
+
*Zyphr::InboundEmailApi* | [**get_inbound_email**](docs/InboundEmailApi.md#get_inbound_email) | **GET** /inbound-emails/{id} | Get a received email
|
|
225
|
+
*Zyphr::InboundEmailApi* | [**list_inbound_emails**](docs/InboundEmailApi.md#list_inbound_emails) | **GET** /inbound-emails | List received emails
|
|
210
226
|
*Zyphr::InboxApi* | [**archive_inbox_notification**](docs/InboxApi.md#archive_inbox_notification) | **POST** /inbox/{id}/archive | Archive a notification
|
|
211
227
|
*Zyphr::InboxApi* | [**archive_subscriber_notification**](docs/InboxApi.md#archive_subscriber_notification) | **POST** /subscriber-inbox/{id}/archive | Archive a notification
|
|
212
228
|
*Zyphr::InboxApi* | [**delete_inbox_notification**](docs/InboxApi.md#delete_inbox_notification) | **DELETE** /inbox/{id} | Delete a notification
|
|
@@ -227,6 +243,17 @@ Class | Method | HTTP request | Description
|
|
|
227
243
|
*Zyphr::InboxApi* | [**send_batch_in_app**](docs/InboxApi.md#send_batch_in_app) | **POST** /inbox/send/batch | Send batch in-app notifications
|
|
228
244
|
*Zyphr::InboxApi* | [**send_in_app**](docs/InboxApi.md#send_in_app) | **POST** /inbox/send | Send an in-app notification
|
|
229
245
|
*Zyphr::InboxApi* | [**update_subscriber_preferences**](docs/InboxApi.md#update_subscriber_preferences) | **PUT** /subscriber-inbox/preferences | Update subscriber preferences
|
|
246
|
+
*Zyphr::MuseApi* | [**v1_muse_audit_log_get**](docs/MuseApi.md#v1_muse_audit_log_get) | **GET** /v1/muse/audit-log | Paginated per-call audit log for Muse
|
|
247
|
+
*Zyphr::MuseApi* | [**v1_muse_broadcasts_analyze_post**](docs/MuseApi.md#v1_muse_broadcasts_analyze_post) | **POST** /v1/muse/broadcasts/analyze | Stream a pre-send advisory for a draft broadcast
|
|
248
|
+
*Zyphr::MuseApi* | [**v1_muse_entitlement_get**](docs/MuseApi.md#v1_muse_entitlement_get) | **GET** /v1/muse/entitlement | Return the current account's Zyphr Muse entitlement
|
|
249
|
+
*Zyphr::MuseApi* | [**v1_muse_eval_baselines_get**](docs/MuseApi.md#v1_muse_eval_baselines_get) | **GET** /v1/muse/eval-baselines | Per-prompt eval baseline snapshots
|
|
250
|
+
*Zyphr::MuseApi* | [**v1_muse_settings_project_id_get**](docs/MuseApi.md#v1_muse_settings_project_id_get) | **GET** /v1/muse/settings/{project_id} | Read Muse settings for a project
|
|
251
|
+
*Zyphr::MuseApi* | [**v1_muse_settings_project_id_patch**](docs/MuseApi.md#v1_muse_settings_project_id_patch) | **PATCH** /v1/muse/settings/{project_id} | Update Muse settings for a project (admin or developer only)
|
|
252
|
+
*Zyphr::MuseApi* | [**v1_muse_subjects_suggest_post**](docs/MuseApi.md#v1_muse_subjects_suggest_post) | **POST** /v1/muse/subjects/suggest | Suggest 5 ranked subject-line candidates for a template
|
|
253
|
+
*Zyphr::MuseApi* | [**v1_muse_templates_draft_post**](docs/MuseApi.md#v1_muse_templates_draft_post) | **POST** /v1/muse/templates/draft | Stream a draft template from a natural-language brief
|
|
254
|
+
*Zyphr::MuseApi* | [**v1_muse_templates_rewrite_post**](docs/MuseApi.md#v1_muse_templates_rewrite_post) | **POST** /v1/muse/templates/rewrite | Stream a rewritten block per the user's instruction
|
|
255
|
+
*Zyphr::MuseApi* | [**v1_muse_usage_get**](docs/MuseApi.md#v1_muse_usage_get) | **GET** /v1/muse/usage | Per-account Zyphr Muse usage + budget tier
|
|
256
|
+
*Zyphr::MuseApi* | [**v1_muse_workflows_generate_post**](docs/MuseApi.md#v1_muse_workflows_generate_post) | **POST** /v1/muse/workflows/generate | Stream a generated workflow from a natural-language description
|
|
230
257
|
*Zyphr::PushApi* | [**get_push**](docs/PushApi.md#get_push) | **GET** /push/{id} | Get push notification details
|
|
231
258
|
*Zyphr::PushApi* | [**get_push_stats**](docs/PushApi.md#get_push_stats) | **GET** /push/stats | Get push notification statistics
|
|
232
259
|
*Zyphr::PushApi* | [**list_device_push_topics**](docs/PushApi.md#list_device_push_topics) | **GET** /push/devices/{id}/topics | List topics for a device
|
|
@@ -342,6 +369,7 @@ Class | Method | HTTP request | Description
|
|
|
342
369
|
- [Zyphr::AddDomain200Response](docs/AddDomain200Response.md)
|
|
343
370
|
- [Zyphr::AddDomain200ResponseMeta](docs/AddDomain200ResponseMeta.md)
|
|
344
371
|
- [Zyphr::AddDomainRequest](docs/AddDomainRequest.md)
|
|
372
|
+
- [Zyphr::AddOrganizationMemberRequest](docs/AddOrganizationMemberRequest.md)
|
|
345
373
|
- [Zyphr::AddTopicSubscribersRequest](docs/AddTopicSubscribersRequest.md)
|
|
346
374
|
- [Zyphr::ApiError](docs/ApiError.md)
|
|
347
375
|
- [Zyphr::ApiErrorError](docs/ApiErrorError.md)
|
|
@@ -397,6 +425,7 @@ Class | Method | HTTP request | Description
|
|
|
397
425
|
- [Zyphr::ConvertAnonymousUserRequestOneOf1AppleUser](docs/ConvertAnonymousUserRequestOneOf1AppleUser.md)
|
|
398
426
|
- [Zyphr::ConvertAnonymousUserRequestOneOf1AppleUserName](docs/ConvertAnonymousUserRequestOneOf1AppleUserName.md)
|
|
399
427
|
- [Zyphr::CreateCategoryRequest](docs/CreateCategoryRequest.md)
|
|
428
|
+
- [Zyphr::CreateOrganizationRequest](docs/CreateOrganizationRequest.md)
|
|
400
429
|
- [Zyphr::CreateSubscriberRequest](docs/CreateSubscriberRequest.md)
|
|
401
430
|
- [Zyphr::CreateTemplateRequest](docs/CreateTemplateRequest.md)
|
|
402
431
|
- [Zyphr::CreateTopicRequest](docs/CreateTopicRequest.md)
|
|
@@ -453,6 +482,14 @@ Class | Method | HTTP request | Description
|
|
|
453
482
|
- [Zyphr::GetWaaSEndpoint200Response](docs/GetWaaSEndpoint200Response.md)
|
|
454
483
|
- [Zyphr::GetWaaSUsage200Response](docs/GetWaaSUsage200Response.md)
|
|
455
484
|
- [Zyphr::InAppNotification](docs/InAppNotification.md)
|
|
485
|
+
- [Zyphr::InboundAttachmentUrlResponse](docs/InboundAttachmentUrlResponse.md)
|
|
486
|
+
- [Zyphr::InboundAttachmentUrlResponseData](docs/InboundAttachmentUrlResponseData.md)
|
|
487
|
+
- [Zyphr::InboundEmail](docs/InboundEmail.md)
|
|
488
|
+
- [Zyphr::InboundEmailAttachment](docs/InboundEmailAttachment.md)
|
|
489
|
+
- [Zyphr::InboundEmailFrom](docs/InboundEmailFrom.md)
|
|
490
|
+
- [Zyphr::InboundEmailListResponse](docs/InboundEmailListResponse.md)
|
|
491
|
+
- [Zyphr::InboundEmailListResponseMeta](docs/InboundEmailListResponseMeta.md)
|
|
492
|
+
- [Zyphr::InboundEmailResponse](docs/InboundEmailResponse.md)
|
|
456
493
|
- [Zyphr::InboxListMeta](docs/InboxListMeta.md)
|
|
457
494
|
- [Zyphr::InboxListResponse](docs/InboxListResponse.md)
|
|
458
495
|
- [Zyphr::InboxNotificationResponse](docs/InboxNotificationResponse.md)
|
|
@@ -506,6 +543,14 @@ Class | Method | HTTP request | Description
|
|
|
506
543
|
- [Zyphr::OAuthTokensRefreshResponseData](docs/OAuthTokensRefreshResponseData.md)
|
|
507
544
|
- [Zyphr::OAuthTokensResponse](docs/OAuthTokensResponse.md)
|
|
508
545
|
- [Zyphr::OAuthTokensResponseData](docs/OAuthTokensResponseData.md)
|
|
546
|
+
- [Zyphr::Organization](docs/Organization.md)
|
|
547
|
+
- [Zyphr::OrganizationListResponse](docs/OrganizationListResponse.md)
|
|
548
|
+
- [Zyphr::OrganizationListResponseMeta](docs/OrganizationListResponseMeta.md)
|
|
549
|
+
- [Zyphr::OrganizationMembersListResponse](docs/OrganizationMembersListResponse.md)
|
|
550
|
+
- [Zyphr::OrganizationMembership](docs/OrganizationMembership.md)
|
|
551
|
+
- [Zyphr::OrganizationMembershipResponse](docs/OrganizationMembershipResponse.md)
|
|
552
|
+
- [Zyphr::OrganizationMembershipWithUser](docs/OrganizationMembershipWithUser.md)
|
|
553
|
+
- [Zyphr::OrganizationResponse](docs/OrganizationResponse.md)
|
|
509
554
|
- [Zyphr::PaginationMeta](docs/PaginationMeta.md)
|
|
510
555
|
- [Zyphr::PasswordRequirements](docs/PasswordRequirements.md)
|
|
511
556
|
- [Zyphr::PasswordRequirementsResponse](docs/PasswordRequirementsResponse.md)
|
|
@@ -592,6 +637,7 @@ Class | Method | HTTP request | Description
|
|
|
592
637
|
- [Zyphr::SessionListResponse](docs/SessionListResponse.md)
|
|
593
638
|
- [Zyphr::SessionListResponseData](docs/SessionListResponseData.md)
|
|
594
639
|
- [Zyphr::SessionListResponseDataSessionInfo](docs/SessionListResponseDataSessionInfo.md)
|
|
640
|
+
- [Zyphr::SetDomainInboundRequest](docs/SetDomainInboundRequest.md)
|
|
595
641
|
- [Zyphr::SetPreferencesRequest](docs/SetPreferencesRequest.md)
|
|
596
642
|
- [Zyphr::SetPreferencesRequestPreferencesInner](docs/SetPreferencesRequestPreferencesInner.md)
|
|
597
643
|
- [Zyphr::SignInAnonymouslyRequest](docs/SignInAnonymouslyRequest.md)
|
|
@@ -618,6 +664,11 @@ Class | Method | HTTP request | Description
|
|
|
618
664
|
- [Zyphr::SubscriberPreference](docs/SubscriberPreference.md)
|
|
619
665
|
- [Zyphr::SubscriberResponse](docs/SubscriberResponse.md)
|
|
620
666
|
- [Zyphr::SuccessResult](docs/SuccessResult.md)
|
|
667
|
+
- [Zyphr::SwitchOrganizationRequest](docs/SwitchOrganizationRequest.md)
|
|
668
|
+
- [Zyphr::SwitchOrganizationResponse](docs/SwitchOrganizationResponse.md)
|
|
669
|
+
- [Zyphr::SwitchOrganizationResponseData](docs/SwitchOrganizationResponseData.md)
|
|
670
|
+
- [Zyphr::SwitchOrganizationResponseDataTokens](docs/SwitchOrganizationResponseDataTokens.md)
|
|
671
|
+
- [Zyphr::SwitchOrganizationResponseDataUser](docs/SwitchOrganizationResponseDataUser.md)
|
|
621
672
|
- [Zyphr::Template](docs/Template.md)
|
|
622
673
|
- [Zyphr::TemplateListResponse](docs/TemplateListResponse.md)
|
|
623
674
|
- [Zyphr::TemplateRenderResponse](docs/TemplateRenderResponse.md)
|
|
@@ -646,6 +697,8 @@ Class | Method | HTTP request | Description
|
|
|
646
697
|
- [Zyphr::UnsubscribeResponse](docs/UnsubscribeResponse.md)
|
|
647
698
|
- [Zyphr::UpdateCategoryRequest](docs/UpdateCategoryRequest.md)
|
|
648
699
|
- [Zyphr::UpdateEndUserRequest](docs/UpdateEndUserRequest.md)
|
|
700
|
+
- [Zyphr::UpdateOrganizationMemberRoleRequest](docs/UpdateOrganizationMemberRoleRequest.md)
|
|
701
|
+
- [Zyphr::UpdateOrganizationRequest](docs/UpdateOrganizationRequest.md)
|
|
649
702
|
- [Zyphr::UpdateSubscriberPreferencesRequest](docs/UpdateSubscriberPreferencesRequest.md)
|
|
650
703
|
- [Zyphr::UpdateSubscriberPreferencesRequestPreferencesInner](docs/UpdateSubscriberPreferencesRequestPreferencesInner.md)
|
|
651
704
|
- [Zyphr::UpdateSubscriberRequest](docs/UpdateSubscriberRequest.md)
|
|
@@ -659,6 +712,7 @@ Class | Method | HTTP request | Description
|
|
|
659
712
|
- [Zyphr::UpsertSmsConfigRequest](docs/UpsertSmsConfigRequest.md)
|
|
660
713
|
- [Zyphr::UserDevicesDeleteResponse](docs/UserDevicesDeleteResponse.md)
|
|
661
714
|
- [Zyphr::UserDevicesDeleteResponseData](docs/UserDevicesDeleteResponseData.md)
|
|
715
|
+
- [Zyphr::V1MuseSubjectsSuggestPostRequest](docs/V1MuseSubjectsSuggestPostRequest.md)
|
|
662
716
|
- [Zyphr::ValidateResetTokenRequest](docs/ValidateResetTokenRequest.md)
|
|
663
717
|
- [Zyphr::ValidateResetTokenResponse](docs/ValidateResetTokenResponse.md)
|
|
664
718
|
- [Zyphr::ValidateResetTokenResponseData](docs/ValidateResetTokenResponseData.md)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Zyphr::AddOrganizationMemberRequest
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **user_id** | **String** | | |
|
|
8
|
+
| **role** | **String** | Opaque role string. Not interpreted by Zyphr in v1. | [optional] |
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```ruby
|
|
13
|
+
require 'zyphr'
|
|
14
|
+
|
|
15
|
+
instance = Zyphr::AddOrganizationMemberRequest.new(
|
|
16
|
+
user_id: null,
|
|
17
|
+
role: null
|
|
18
|
+
)
|
|
19
|
+
```
|
|
20
|
+
|