@amigo-ai/platform-sdk 0.81.0 → 0.82.0

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.
@@ -1763,122 +1763,6 @@ export interface paths {
1763
1763
  patch?: never;
1764
1764
  trace?: never;
1765
1765
  };
1766
- "/v1/{workspace_id}/channels/email/templates": {
1767
- parameters: {
1768
- query?: never;
1769
- header?: never;
1770
- path?: never;
1771
- cookie?: never;
1772
- };
1773
- /**
1774
- * List email templates for an SES use case
1775
- * @description List the templates of one SES use case bound to this workspace. Unpaginated — templates per use case are a bounded, human-curated catalog. Template bodies are omitted; fetch one template for the full Jinja + required variables. Requires ``Channel.view`` permission.
1776
- */
1777
- get: operations["list-email-templates"];
1778
- put?: never;
1779
- /**
1780
- * Create an email template
1781
- * @description Create a Jinja email template under an SES use case bound to this workspace. Channel-manager validates the Jinja syntax and the unsubscribe-variable gate: the subject may not reference unsubscribe variables, and the body must reference both unsubscribe variables exactly when the use case is unsubscribable (marketing). The response carries the extracted ``required_{subject,body}_variables`` a send-time caller must supply. Requires ``Channel.create`` permission.
1782
- */
1783
- post: operations["create-email-template"];
1784
- delete?: never;
1785
- options?: never;
1786
- head?: never;
1787
- patch?: never;
1788
- trace?: never;
1789
- };
1790
- "/v1/{workspace_id}/channels/email/templates/{email_template_id}": {
1791
- parameters: {
1792
- query?: never;
1793
- header?: never;
1794
- path?: never;
1795
- cookie?: never;
1796
- };
1797
- /**
1798
- * Get an email template
1799
- * @description Full template detail including the Jinja subject/body and the extracted required variables. 404 unless the template's SES use case is bound to this workspace. Requires ``Channel.view`` permission.
1800
- */
1801
- get: operations["get-email-template"];
1802
- /**
1803
- * Update an email template
1804
- * @description Partial update: absent fields are untouched; ``description`` may be explicitly nulled; at least one field is required. Subject/body changes re-run channel-manager's Jinja validation and the unsubscribe-variable gate. 404 unless the template's SES use case is bound to this workspace. Requires ``Channel.create`` permission.
1805
- */
1806
- put: operations["update-email-template"];
1807
- post?: never;
1808
- /**
1809
- * Delete an email template
1810
- * @description Delete a template. 404 unless the template's SES use case is bound to this workspace. Requires ``Channel.delete`` permission.
1811
- */
1812
- delete: operations["delete-email-template"];
1813
- options?: never;
1814
- head?: never;
1815
- patch?: never;
1816
- trace?: never;
1817
- };
1818
- "/v1/{workspace_id}/channels/ses-setup": {
1819
- parameters: {
1820
- query?: never;
1821
- header?: never;
1822
- path?: never;
1823
- cookie?: never;
1824
- };
1825
- get?: never;
1826
- put?: never;
1827
- /**
1828
- * Create an SES setup
1829
- * @description Create an SES tenant + verified email identity. Returns the DNS records the customer must publish (DKIM CNAMEs, MX, DMARC TXT). Subsequent ``GET`` or ``POST /verify`` calls re-run the live DNS lookup and update the per-record ``verified`` flag. The setup is owned by the creating workspace; only that workspace can list, get, verify, or delete it. Requires ``Channel.create`` permission.
1830
- */
1831
- post: operations["create-ses-setup"];
1832
- delete?: never;
1833
- options?: never;
1834
- head?: never;
1835
- patch?: never;
1836
- trace?: never;
1837
- };
1838
- "/v1/{workspace_id}/channels/ses-setup/{setup_id}": {
1839
- parameters: {
1840
- query?: never;
1841
- header?: never;
1842
- path?: never;
1843
- cookie?: never;
1844
- };
1845
- /**
1846
- * Get an SES setup with live DNS refresh
1847
- * @description Returns full SES setup detail including per-record DNS verification status. Channel-manager re-runs ``GetEmailIdentity`` + DMARC/MX resolvers on every call, so each GET is a live check. Requires ``Channel.view`` permission.
1848
- */
1849
- get: operations["get-ses-setup"];
1850
- put?: never;
1851
- post?: never;
1852
- /**
1853
- * Delete an SES setup
1854
- * @description Tear down the upstream SES tenant + identity. Refuses (409) if any use case still references the setup. Requires ``Channel.delete`` permission.
1855
- */
1856
- delete: operations["delete-ses-setup"];
1857
- options?: never;
1858
- head?: never;
1859
- patch?: never;
1860
- trace?: never;
1861
- };
1862
- "/v1/{workspace_id}/channels/ses-setup/{setup_id}/verify": {
1863
- parameters: {
1864
- query?: never;
1865
- header?: never;
1866
- path?: never;
1867
- cookie?: never;
1868
- };
1869
- get?: never;
1870
- put?: never;
1871
- /**
1872
- * Refresh SES DNS verification
1873
- * @description Explicit DNS refresh endpoint. Equivalent to ``GET /ses-setup/{id}`` but exposed as a POST so UI ``Verify now`` actions read as actions rather than reads. Requires ``Channel.view`` permission.
1874
- */
1875
- post: operations["verify-ses-setup-dns"];
1876
- delete?: never;
1877
- options?: never;
1878
- head?: never;
1879
- patch?: never;
1880
- trace?: never;
1881
- };
1882
1766
  "/v1/{workspace_id}/command-center": {
1883
1767
  parameters: {
1884
1768
  query?: never;
@@ -11251,39 +11135,6 @@ export interface components {
11251
11135
  */
11252
11136
  sync_strategy?: "manual" | "scheduled" | "webhook" | "continuous";
11253
11137
  };
11254
- /** CreateEmailTemplateRequest */
11255
- CreateEmailTemplateRequest: {
11256
- /**
11257
- * Body Template
11258
- * @description Jinja HTML body. For an unsubscribable (marketing) use case it MUST
11259
- * reference both unsubscribe variables; for a transactional one it must
11260
- * not — channel-manager enforces the gate bidirectionally.
11261
- */
11262
- body_template: string;
11263
- /**
11264
- * Description
11265
- * @description Agent-facing intent description — what the catalog shows an agent
11266
- * picking a template (R3).
11267
- */
11268
- description?: string | null;
11269
- /**
11270
- * Name
11271
- * @description Template name, unique within the SES use case.
11272
- */
11273
- name: string;
11274
- /**
11275
- * Ses Use Case Id
11276
- * Format: uuid
11277
- * @description The email use case the template belongs to. Must be bound to this
11278
- * workspace via its service binding.
11279
- */
11280
- ses_use_case_id: string;
11281
- /**
11282
- * Subject Template
11283
- * @description Jinja subject. May not reference unsubscribe variables.
11284
- */
11285
- subject_template: string;
11286
- };
11287
11138
  /** CreateLinkRequest */
11288
11139
  CreateLinkRequest: {
11289
11140
  customer_slug: components["schemas"]["SlugString"];
@@ -11538,21 +11389,6 @@ export interface components {
11538
11389
  };
11539
11390
  voice_config?: components["schemas"]["ServiceVoiceConfig-Input"] | null;
11540
11391
  };
11541
- /** CreateSesSetupRequest */
11542
- CreateSesSetupRequest: {
11543
- /**
11544
- * Domain Identity
11545
- * @description Domain to verify for both sending and receiving (e.g.
11546
- * ``mail.customer.com``). A single SES identity serves both directions.
11547
- */
11548
- domain_identity: string;
11549
- /**
11550
- * Tenant Name
11551
- * @description Logical SES tenant name (reputation + suppression isolation boundary).
11552
- * Unique within the AWS account. Alphabet ``[A-Za-z0-9_-]``, 1-64 chars.
11553
- */
11554
- tenant_name: string;
11555
- };
11556
11392
  /** CreateSessionRequest */
11557
11393
  CreateSessionRequest: {
11558
11394
  /** Branch Name */
@@ -12843,29 +12679,6 @@ export interface components {
12843
12679
  */
12844
12680
  workspace_id: string;
12845
12681
  };
12846
- /** DnsRecordResponse */
12847
- DnsRecordResponse: {
12848
- /**
12849
- * Address
12850
- * @description Fully-qualified hostname the DNS entry lives under.
12851
- */
12852
- address: string;
12853
- /**
12854
- * Record
12855
- * @description Target value the customer must publish at their DNS provider.
12856
- */
12857
- record: string;
12858
- /**
12859
- * Type
12860
- * @enum {string}
12861
- */
12862
- type: "CNAME" | "MX" | "TXT";
12863
- /**
12864
- * Verified
12865
- * @description Whether the live DNS lookup at the time of the GET found the entry.
12866
- */
12867
- verified: boolean;
12868
- };
12869
12682
  /**
12870
12683
  * DocumentProcessingSpec
12871
12684
  * @description Processing config for a document dataset (``ingestion_mode=document``).
@@ -12946,55 +12759,6 @@ export interface components {
12946
12759
  /** Region */
12947
12760
  region: string;
12948
12761
  };
12949
- /**
12950
- * EmailTemplateListResponse
12951
- * @description Plain (unpaginated) list — templates per use case are a bounded-small,
12952
- * human-curated catalog. Template bodies stay behind the GET-by-id route so
12953
- * a list never ships megabytes of Jinja.
12954
- */
12955
- EmailTemplateListResponse: {
12956
- /** Items */
12957
- items: components["schemas"]["src__routes__channels__email_templates__EmailTemplateListResponse__Item"][];
12958
- };
12959
- /** EmailTemplateResponse */
12960
- EmailTemplateResponse: {
12961
- /** Body Template */
12962
- body_template: string;
12963
- /**
12964
- * Created At
12965
- * Format: date-time
12966
- */
12967
- created_at: string;
12968
- /** Description */
12969
- description: string | null;
12970
- /**
12971
- * Id
12972
- * Format: uuid
12973
- */
12974
- id: string;
12975
- /** Name */
12976
- name: string;
12977
- /** Required Body Variables */
12978
- required_body_variables: string[];
12979
- /**
12980
- * Required Subject Variables
12981
- * @description Jinja variables the subject references — the send-time caller must
12982
- * supply every one via ``template_parameters``.
12983
- */
12984
- required_subject_variables: string[];
12985
- /**
12986
- * Ses Use Case Id
12987
- * Format: uuid
12988
- */
12989
- ses_use_case_id: string;
12990
- /** Subject Template */
12991
- subject_template: string;
12992
- /**
12993
- * Updated At
12994
- * Format: date-time
12995
- */
12996
- updated_at: string;
12997
- };
12998
12762
  /** EmailUseCaseRequest */
12999
12763
  EmailUseCaseRequest: {
13000
12764
  /**
@@ -21403,29 +21167,6 @@ export interface components {
21403
21167
  /** Tts Provider */
21404
21168
  tts_provider?: ("cartesia" | "elevenlabs" | "groq") | null;
21405
21169
  };
21406
- /** SesSetupDetailResponse */
21407
- SesSetupDetailResponse: {
21408
- /**
21409
- * Created At
21410
- * Format: date-time
21411
- */
21412
- created_at: string;
21413
- /** Dns Checked At */
21414
- dns_checked_at: string | null;
21415
- /** Dns Records */
21416
- dns_records: components["schemas"]["DnsRecordResponse"][];
21417
- /** Domain Identity */
21418
- domain_identity: string;
21419
- /** Id */
21420
- id: string;
21421
- /** Tenant Name */
21422
- tenant_name: string;
21423
- /**
21424
- * Updated At
21425
- * Format: date-time
21426
- */
21427
- updated_at: string;
21428
- };
21429
21170
  /** SessionEndEvent */
21430
21171
  SessionEndEvent: {
21431
21172
  /**
@@ -25572,22 +25313,6 @@ export interface components {
25572
25313
  /** Sync Strategy */
25573
25314
  sync_strategy?: ("manual" | "scheduled" | "webhook" | "continuous") | null;
25574
25315
  };
25575
- /**
25576
- * UpdateEmailTemplateRequest
25577
- * @description PATCH-style PUT mirroring channel-manager's update contract: absent
25578
- * fields are untouched (MISSING sentinel), ``description`` may be explicitly
25579
- * nulled, and at least one field must be provided.
25580
- */
25581
- UpdateEmailTemplateRequest: {
25582
- /** Body Template */
25583
- body_template?: string;
25584
- /** Description */
25585
- description?: string | null;
25586
- /** Name */
25587
- name?: string;
25588
- /** Subject Template */
25589
- subject_template?: string;
25590
- };
25591
25316
  /** UpdateOperatorRequest */
25592
25317
  UpdateOperatorRequest: {
25593
25318
  /** Connection Method */
@@ -26924,33 +26649,6 @@ export interface components {
26924
26649
  */
26925
26650
  unique_states?: number;
26926
26651
  };
26927
- /** Item */
26928
- src__routes__channels__email_templates__EmailTemplateListResponse__Item: {
26929
- /**
26930
- * Created At
26931
- * Format: date-time
26932
- */
26933
- created_at: string;
26934
- /** Description */
26935
- description: string | null;
26936
- /**
26937
- * Id
26938
- * Format: uuid
26939
- */
26940
- id: string;
26941
- /** Name */
26942
- name: string;
26943
- /**
26944
- * Ses Use Case Id
26945
- * Format: uuid
26946
- */
26947
- ses_use_case_id: string;
26948
- /**
26949
- * Updated At
26950
- * Format: date-time
26951
- */
26952
- updated_at: string;
26953
- };
26954
26652
  /** ConversationSummary */
26955
26653
  src__routes__conversations__ConversationSummary: {
26956
26654
  /** Call Sid */
@@ -31931,540 +31629,6 @@ export interface operations {
31931
31629
  };
31932
31630
  };
31933
31631
  };
31934
- "list-email-templates": {
31935
- parameters: {
31936
- query: {
31937
- ses_use_case_id: string;
31938
- };
31939
- header?: never;
31940
- path: {
31941
- workspace_id: string;
31942
- };
31943
- cookie?: never;
31944
- };
31945
- requestBody?: never;
31946
- responses: {
31947
- /** @description Successful Response */
31948
- 200: {
31949
- headers: {
31950
- [name: string]: unknown;
31951
- };
31952
- content: {
31953
- "application/json": components["schemas"]["EmailTemplateListResponse"];
31954
- };
31955
- };
31956
- /** @description Insufficient permissions. */
31957
- 403: {
31958
- headers: {
31959
- [name: string]: unknown;
31960
- };
31961
- content?: never;
31962
- };
31963
- /** @description SES use case not found or not bound to this workspace. */
31964
- 404: {
31965
- headers: {
31966
- [name: string]: unknown;
31967
- };
31968
- content?: never;
31969
- };
31970
- /** @description Validation Error */
31971
- 422: {
31972
- headers: {
31973
- [name: string]: unknown;
31974
- };
31975
- content: {
31976
- "application/json": components["schemas"]["HTTPValidationError"];
31977
- };
31978
- };
31979
- /** @description Channel manager unavailable. */
31980
- 502: {
31981
- headers: {
31982
- [name: string]: unknown;
31983
- };
31984
- content?: never;
31985
- };
31986
- /** @description Channel manager timed out. */
31987
- 504: {
31988
- headers: {
31989
- [name: string]: unknown;
31990
- };
31991
- content?: never;
31992
- };
31993
- };
31994
- };
31995
- "create-email-template": {
31996
- parameters: {
31997
- query?: never;
31998
- header?: never;
31999
- path: {
32000
- workspace_id: string;
32001
- };
32002
- cookie?: never;
32003
- };
32004
- requestBody: {
32005
- content: {
32006
- "application/json": components["schemas"]["CreateEmailTemplateRequest"];
32007
- };
32008
- };
32009
- responses: {
32010
- /** @description Successful Response */
32011
- 201: {
32012
- headers: {
32013
- [name: string]: unknown;
32014
- };
32015
- content: {
32016
- "application/json": components["schemas"]["EmailTemplateResponse"];
32017
- };
32018
- };
32019
- /** @description Insufficient permissions. */
32020
- 403: {
32021
- headers: {
32022
- [name: string]: unknown;
32023
- };
32024
- content?: never;
32025
- };
32026
- /** @description SES use case not found or not bound to this workspace. */
32027
- 404: {
32028
- headers: {
32029
- [name: string]: unknown;
32030
- };
32031
- content?: never;
32032
- };
32033
- /** @description Template name already exists within the SES use case. */
32034
- 409: {
32035
- headers: {
32036
- [name: string]: unknown;
32037
- };
32038
- content?: never;
32039
- };
32040
- /** @description Jinja syntax error or unsubscribe-variable gate violation. */
32041
- 422: {
32042
- headers: {
32043
- [name: string]: unknown;
32044
- };
32045
- content?: never;
32046
- };
32047
- /** @description Channel manager unavailable. */
32048
- 502: {
32049
- headers: {
32050
- [name: string]: unknown;
32051
- };
32052
- content?: never;
32053
- };
32054
- /** @description Channel manager timed out. */
32055
- 504: {
32056
- headers: {
32057
- [name: string]: unknown;
32058
- };
32059
- content?: never;
32060
- };
32061
- };
32062
- };
32063
- "get-email-template": {
32064
- parameters: {
32065
- query?: never;
32066
- header?: never;
32067
- path: {
32068
- workspace_id: string;
32069
- email_template_id: string;
32070
- };
32071
- cookie?: never;
32072
- };
32073
- requestBody?: never;
32074
- responses: {
32075
- /** @description Successful Response */
32076
- 200: {
32077
- headers: {
32078
- [name: string]: unknown;
32079
- };
32080
- content: {
32081
- "application/json": components["schemas"]["EmailTemplateResponse"];
32082
- };
32083
- };
32084
- /** @description Insufficient permissions. */
32085
- 403: {
32086
- headers: {
32087
- [name: string]: unknown;
32088
- };
32089
- content?: never;
32090
- };
32091
- /** @description Email template not found. */
32092
- 404: {
32093
- headers: {
32094
- [name: string]: unknown;
32095
- };
32096
- content?: never;
32097
- };
32098
- /** @description Validation Error */
32099
- 422: {
32100
- headers: {
32101
- [name: string]: unknown;
32102
- };
32103
- content: {
32104
- "application/json": components["schemas"]["HTTPValidationError"];
32105
- };
32106
- };
32107
- /** @description Channel manager unavailable. */
32108
- 502: {
32109
- headers: {
32110
- [name: string]: unknown;
32111
- };
32112
- content?: never;
32113
- };
32114
- /** @description Channel manager timed out. */
32115
- 504: {
32116
- headers: {
32117
- [name: string]: unknown;
32118
- };
32119
- content?: never;
32120
- };
32121
- };
32122
- };
32123
- "update-email-template": {
32124
- parameters: {
32125
- query?: never;
32126
- header?: never;
32127
- path: {
32128
- workspace_id: string;
32129
- email_template_id: string;
32130
- };
32131
- cookie?: never;
32132
- };
32133
- requestBody: {
32134
- content: {
32135
- "application/json": components["schemas"]["UpdateEmailTemplateRequest"];
32136
- };
32137
- };
32138
- responses: {
32139
- /** @description Successful Response */
32140
- 200: {
32141
- headers: {
32142
- [name: string]: unknown;
32143
- };
32144
- content: {
32145
- "application/json": components["schemas"]["EmailTemplateResponse"];
32146
- };
32147
- };
32148
- /** @description Insufficient permissions. */
32149
- 403: {
32150
- headers: {
32151
- [name: string]: unknown;
32152
- };
32153
- content?: never;
32154
- };
32155
- /** @description Email template not found. */
32156
- 404: {
32157
- headers: {
32158
- [name: string]: unknown;
32159
- };
32160
- content?: never;
32161
- };
32162
- /** @description New template name already exists within the SES use case. */
32163
- 409: {
32164
- headers: {
32165
- [name: string]: unknown;
32166
- };
32167
- content?: never;
32168
- };
32169
- /** @description No fields provided, Jinja syntax error, or unsubscribe-variable gate violation. */
32170
- 422: {
32171
- headers: {
32172
- [name: string]: unknown;
32173
- };
32174
- content?: never;
32175
- };
32176
- /** @description Channel manager unavailable. */
32177
- 502: {
32178
- headers: {
32179
- [name: string]: unknown;
32180
- };
32181
- content?: never;
32182
- };
32183
- /** @description Channel manager timed out. */
32184
- 504: {
32185
- headers: {
32186
- [name: string]: unknown;
32187
- };
32188
- content?: never;
32189
- };
32190
- };
32191
- };
32192
- "delete-email-template": {
32193
- parameters: {
32194
- query?: never;
32195
- header?: never;
32196
- path: {
32197
- workspace_id: string;
32198
- email_template_id: string;
32199
- };
32200
- cookie?: never;
32201
- };
32202
- requestBody?: never;
32203
- responses: {
32204
- /** @description Successful Response */
32205
- 204: {
32206
- headers: {
32207
- [name: string]: unknown;
32208
- };
32209
- content?: never;
32210
- };
32211
- /** @description Insufficient permissions. */
32212
- 403: {
32213
- headers: {
32214
- [name: string]: unknown;
32215
- };
32216
- content?: never;
32217
- };
32218
- /** @description Email template not found. */
32219
- 404: {
32220
- headers: {
32221
- [name: string]: unknown;
32222
- };
32223
- content?: never;
32224
- };
32225
- /** @description Validation Error */
32226
- 422: {
32227
- headers: {
32228
- [name: string]: unknown;
32229
- };
32230
- content: {
32231
- "application/json": components["schemas"]["HTTPValidationError"];
32232
- };
32233
- };
32234
- /** @description Channel manager unavailable. */
32235
- 502: {
32236
- headers: {
32237
- [name: string]: unknown;
32238
- };
32239
- content?: never;
32240
- };
32241
- /** @description Channel manager timed out. */
32242
- 504: {
32243
- headers: {
32244
- [name: string]: unknown;
32245
- };
32246
- content?: never;
32247
- };
32248
- };
32249
- };
32250
- "create-ses-setup": {
32251
- parameters: {
32252
- query?: never;
32253
- header?: never;
32254
- path: {
32255
- workspace_id: string;
32256
- };
32257
- cookie?: never;
32258
- };
32259
- requestBody: {
32260
- content: {
32261
- "application/json": components["schemas"]["CreateSesSetupRequest"];
32262
- };
32263
- };
32264
- responses: {
32265
- /** @description Successful Response */
32266
- 201: {
32267
- headers: {
32268
- [name: string]: unknown;
32269
- };
32270
- content: {
32271
- "application/json": components["schemas"]["SesSetupDetailResponse"];
32272
- };
32273
- };
32274
- /** @description Insufficient permissions. */
32275
- 403: {
32276
- headers: {
32277
- [name: string]: unknown;
32278
- };
32279
- content?: never;
32280
- };
32281
- /** @description Tenant name or domain identity already exists upstream. */
32282
- 409: {
32283
- headers: {
32284
- [name: string]: unknown;
32285
- };
32286
- content?: never;
32287
- };
32288
- /** @description Invalid SES setup configuration. */
32289
- 422: {
32290
- headers: {
32291
- [name: string]: unknown;
32292
- };
32293
- content?: never;
32294
- };
32295
- /** @description Channel manager unavailable. */
32296
- 502: {
32297
- headers: {
32298
- [name: string]: unknown;
32299
- };
32300
- content?: never;
32301
- };
32302
- /** @description Channel manager timed out. */
32303
- 504: {
32304
- headers: {
32305
- [name: string]: unknown;
32306
- };
32307
- content?: never;
32308
- };
32309
- };
32310
- };
32311
- "get-ses-setup": {
32312
- parameters: {
32313
- query?: never;
32314
- header?: never;
32315
- path: {
32316
- workspace_id: string;
32317
- setup_id: string;
32318
- };
32319
- cookie?: never;
32320
- };
32321
- requestBody?: never;
32322
- responses: {
32323
- /** @description Successful Response */
32324
- 200: {
32325
- headers: {
32326
- [name: string]: unknown;
32327
- };
32328
- content: {
32329
- "application/json": components["schemas"]["SesSetupDetailResponse"];
32330
- };
32331
- };
32332
- /** @description Insufficient permissions. */
32333
- 403: {
32334
- headers: {
32335
- [name: string]: unknown;
32336
- };
32337
- content?: never;
32338
- };
32339
- /** @description SES setup not found. */
32340
- 404: {
32341
- headers: {
32342
- [name: string]: unknown;
32343
- };
32344
- content?: never;
32345
- };
32346
- /** @description Validation Error */
32347
- 422: {
32348
- headers: {
32349
- [name: string]: unknown;
32350
- };
32351
- content: {
32352
- "application/json": components["schemas"]["HTTPValidationError"];
32353
- };
32354
- };
32355
- };
32356
- };
32357
- "delete-ses-setup": {
32358
- parameters: {
32359
- query?: never;
32360
- header?: never;
32361
- path: {
32362
- workspace_id: string;
32363
- setup_id: string;
32364
- };
32365
- cookie?: never;
32366
- };
32367
- requestBody?: never;
32368
- responses: {
32369
- /** @description Successful Response */
32370
- 204: {
32371
- headers: {
32372
- [name: string]: unknown;
32373
- };
32374
- content?: never;
32375
- };
32376
- /** @description Insufficient permissions. */
32377
- 403: {
32378
- headers: {
32379
- [name: string]: unknown;
32380
- };
32381
- content?: never;
32382
- };
32383
- /** @description SES setup not found. */
32384
- 404: {
32385
- headers: {
32386
- [name: string]: unknown;
32387
- };
32388
- content?: never;
32389
- };
32390
- /** @description Setup still referenced by live use cases. */
32391
- 409: {
32392
- headers: {
32393
- [name: string]: unknown;
32394
- };
32395
- content?: never;
32396
- };
32397
- /** @description Validation Error */
32398
- 422: {
32399
- headers: {
32400
- [name: string]: unknown;
32401
- };
32402
- content: {
32403
- "application/json": components["schemas"]["HTTPValidationError"];
32404
- };
32405
- };
32406
- /** @description Channel manager unavailable. */
32407
- 502: {
32408
- headers: {
32409
- [name: string]: unknown;
32410
- };
32411
- content?: never;
32412
- };
32413
- /** @description Channel manager timed out. */
32414
- 504: {
32415
- headers: {
32416
- [name: string]: unknown;
32417
- };
32418
- content?: never;
32419
- };
32420
- };
32421
- };
32422
- "verify-ses-setup-dns": {
32423
- parameters: {
32424
- query?: never;
32425
- header?: never;
32426
- path: {
32427
- workspace_id: string;
32428
- setup_id: string;
32429
- };
32430
- cookie?: never;
32431
- };
32432
- requestBody?: never;
32433
- responses: {
32434
- /** @description Successful Response */
32435
- 200: {
32436
- headers: {
32437
- [name: string]: unknown;
32438
- };
32439
- content: {
32440
- "application/json": components["schemas"]["SesSetupDetailResponse"];
32441
- };
32442
- };
32443
- /** @description Insufficient permissions. */
32444
- 403: {
32445
- headers: {
32446
- [name: string]: unknown;
32447
- };
32448
- content?: never;
32449
- };
32450
- /** @description SES setup not found. */
32451
- 404: {
32452
- headers: {
32453
- [name: string]: unknown;
32454
- };
32455
- content?: never;
32456
- };
32457
- /** @description Validation Error */
32458
- 422: {
32459
- headers: {
32460
- [name: string]: unknown;
32461
- };
32462
- content: {
32463
- "application/json": components["schemas"]["HTTPValidationError"];
32464
- };
32465
- };
32466
- };
32467
- };
32468
31632
  "get-command-center": {
32469
31633
  parameters: {
32470
31634
  query?: never;