@opusdns/api 1.23.0 → 1.25.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.
- package/package.json +1 -1
- package/src/helpers/constants.ts +2 -0
- package/src/openapi.yaml +40 -1
- package/src/schema.d.ts +2 -1
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -1377,6 +1377,7 @@ export const PUBLIC_RESOURCE = {
|
|
|
1377
1377
|
TAGS: "tags",
|
|
1378
1378
|
AUDIT_LOGS: "audit_logs",
|
|
1379
1379
|
VANITY_NS: "vanity_ns",
|
|
1380
|
+
AI_CONCIERGE: "ai_concierge",
|
|
1380
1381
|
} as const satisfies Record<string, PublicResource>;
|
|
1381
1382
|
|
|
1382
1383
|
export const PUBLIC_RESOURCE_VALUES = [
|
|
@@ -1397,6 +1398,7 @@ export const PUBLIC_RESOURCE_VALUES = [
|
|
|
1397
1398
|
'tags',
|
|
1398
1399
|
'audit_logs',
|
|
1399
1400
|
'vanity_ns',
|
|
1401
|
+
'ai_concierge',
|
|
1400
1402
|
] as const satisfies ReadonlyArray<PublicResource>;
|
|
1401
1403
|
|
|
1402
1404
|
export const PUBLIC_ROLE = {
|
package/src/openapi.yaml
CHANGED
|
@@ -10478,6 +10478,7 @@ components:
|
|
|
10478
10478
|
- tags
|
|
10479
10479
|
- audit_logs
|
|
10480
10480
|
- vanity_ns
|
|
10481
|
+
- ai_concierge
|
|
10481
10482
|
title: PublicResource
|
|
10482
10483
|
type: string
|
|
10483
10484
|
PublicRole:
|
|
@@ -12734,7 +12735,7 @@ info:
|
|
|
12734
12735
|
\n\n"
|
|
12735
12736
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
12736
12737
|
title: OpusDNS API
|
|
12737
|
-
version: 2026-06-
|
|
12738
|
+
version: 2026-06-22-103725
|
|
12738
12739
|
x-logo:
|
|
12739
12740
|
altText: OpusDNS API Reference
|
|
12740
12741
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -12810,6 +12811,8 @@ paths:
|
|
|
12810
12811
|
summary: Get a context entry
|
|
12811
12812
|
tags:
|
|
12812
12813
|
- ai_concierge
|
|
12814
|
+
x-required-permissions:
|
|
12815
|
+
- ai_concierge:manage
|
|
12813
12816
|
/v1/ai-concierge/conversations:
|
|
12814
12817
|
get:
|
|
12815
12818
|
description: List the authenticated organization's AI Concierge conversations.
|
|
@@ -12907,6 +12910,8 @@ paths:
|
|
|
12907
12910
|
summary: List AI Concierge conversations
|
|
12908
12911
|
tags:
|
|
12909
12912
|
- ai_concierge
|
|
12913
|
+
x-required-permissions:
|
|
12914
|
+
- ai_concierge:manage
|
|
12910
12915
|
post:
|
|
12911
12916
|
operationId: create_conversation_v1_ai_concierge_conversations_post
|
|
12912
12917
|
requestBody:
|
|
@@ -12970,6 +12975,8 @@ paths:
|
|
|
12970
12975
|
summary: Create an AI Concierge conversation
|
|
12971
12976
|
tags:
|
|
12972
12977
|
- ai_concierge
|
|
12978
|
+
x-required-permissions:
|
|
12979
|
+
- ai_concierge:manage
|
|
12973
12980
|
/v1/ai-concierge/conversations/{conversation_id}:
|
|
12974
12981
|
delete:
|
|
12975
12982
|
description: Permanently delete a conversation, its messages, and any attached
|
|
@@ -13038,6 +13045,8 @@ paths:
|
|
|
13038
13045
|
summary: Delete a conversation
|
|
13039
13046
|
tags:
|
|
13040
13047
|
- ai_concierge
|
|
13048
|
+
x-required-permissions:
|
|
13049
|
+
- ai_concierge:manage
|
|
13041
13050
|
get:
|
|
13042
13051
|
operationId: get_conversation_v1_ai_concierge_conversations__conversation_id__get
|
|
13043
13052
|
parameters:
|
|
@@ -13107,6 +13116,8 @@ paths:
|
|
|
13107
13116
|
summary: Get a conversation
|
|
13108
13117
|
tags:
|
|
13109
13118
|
- ai_concierge
|
|
13119
|
+
x-required-permissions:
|
|
13120
|
+
- ai_concierge:manage
|
|
13110
13121
|
patch:
|
|
13111
13122
|
description: Update conversation title or metadata. Supports optimistic concurrency
|
|
13112
13123
|
via `If-Match`.
|
|
@@ -13192,6 +13203,8 @@ paths:
|
|
|
13192
13203
|
summary: Update a conversation
|
|
13193
13204
|
tags:
|
|
13194
13205
|
- ai_concierge
|
|
13206
|
+
x-required-permissions:
|
|
13207
|
+
- ai_concierge:manage
|
|
13195
13208
|
/v1/ai-concierge/conversations/{conversation_id}/contexts:
|
|
13196
13209
|
get:
|
|
13197
13210
|
operationId: list_contexts_v1_ai_concierge_conversations__conversation_id__contexts_get
|
|
@@ -13279,6 +13292,8 @@ paths:
|
|
|
13279
13292
|
summary: List contexts attached to a conversation
|
|
13280
13293
|
tags:
|
|
13281
13294
|
- ai_concierge
|
|
13295
|
+
x-required-permissions:
|
|
13296
|
+
- ai_concierge:manage
|
|
13282
13297
|
post:
|
|
13283
13298
|
operationId: create_context_v1_ai_concierge_conversations__conversation_id__contexts_post
|
|
13284
13299
|
parameters:
|
|
@@ -13354,6 +13369,8 @@ paths:
|
|
|
13354
13369
|
summary: Attach a context to a conversation
|
|
13355
13370
|
tags:
|
|
13356
13371
|
- ai_concierge
|
|
13372
|
+
x-required-permissions:
|
|
13373
|
+
- ai_concierge:manage
|
|
13357
13374
|
/v1/ai-concierge/conversations/{conversation_id}/messages:
|
|
13358
13375
|
get:
|
|
13359
13376
|
operationId: list_messages_v1_ai_concierge_conversations__conversation_id__messages_get
|
|
@@ -13465,6 +13482,8 @@ paths:
|
|
|
13465
13482
|
summary: List messages in a conversation
|
|
13466
13483
|
tags:
|
|
13467
13484
|
- ai_concierge
|
|
13485
|
+
x-required-permissions:
|
|
13486
|
+
- ai_concierge:manage
|
|
13468
13487
|
post:
|
|
13469
13488
|
operationId: create_message_v1_ai_concierge_conversations__conversation_id__messages_post
|
|
13470
13489
|
parameters:
|
|
@@ -13540,6 +13559,8 @@ paths:
|
|
|
13540
13559
|
summary: Append a message to a conversation
|
|
13541
13560
|
tags:
|
|
13542
13561
|
- ai_concierge
|
|
13562
|
+
x-required-permissions:
|
|
13563
|
+
- ai_concierge:manage
|
|
13543
13564
|
/v1/ai-concierge/conversations/{conversation_id}/messages/{message_id}:
|
|
13544
13565
|
get:
|
|
13545
13566
|
operationId: get_message_v1_ai_concierge_conversations__conversation_id__messages__message_id__get
|
|
@@ -13621,6 +13642,8 @@ paths:
|
|
|
13621
13642
|
summary: Get a message
|
|
13622
13643
|
tags:
|
|
13623
13644
|
- ai_concierge
|
|
13645
|
+
x-required-permissions:
|
|
13646
|
+
- ai_concierge:manage
|
|
13624
13647
|
/v1/ai-concierge/memory/facts:
|
|
13625
13648
|
get:
|
|
13626
13649
|
description: List long-term, organization-scoped memory facts available to the
|
|
@@ -13707,6 +13730,8 @@ paths:
|
|
|
13707
13730
|
summary: List long-term memory facts
|
|
13708
13731
|
tags:
|
|
13709
13732
|
- ai_concierge
|
|
13733
|
+
x-required-permissions:
|
|
13734
|
+
- ai_concierge:manage
|
|
13710
13735
|
post:
|
|
13711
13736
|
operationId: create_memory_fact_v1_ai_concierge_memory_facts_post
|
|
13712
13737
|
requestBody:
|
|
@@ -13770,6 +13795,8 @@ paths:
|
|
|
13770
13795
|
summary: Create a long-term memory fact
|
|
13771
13796
|
tags:
|
|
13772
13797
|
- ai_concierge
|
|
13798
|
+
x-required-permissions:
|
|
13799
|
+
- ai_concierge:manage
|
|
13773
13800
|
/v1/ai-concierge/memory/facts/{fact_id}:
|
|
13774
13801
|
delete:
|
|
13775
13802
|
operationId: delete_memory_fact_v1_ai_concierge_memory_facts__fact_id__delete
|
|
@@ -13836,6 +13863,8 @@ paths:
|
|
|
13836
13863
|
summary: Delete a long-term memory fact
|
|
13837
13864
|
tags:
|
|
13838
13865
|
- ai_concierge
|
|
13866
|
+
x-required-permissions:
|
|
13867
|
+
- ai_concierge:manage
|
|
13839
13868
|
patch:
|
|
13840
13869
|
operationId: patch_memory_fact_v1_ai_concierge_memory_facts__fact_id__patch
|
|
13841
13870
|
parameters:
|
|
@@ -13911,6 +13940,8 @@ paths:
|
|
|
13911
13940
|
summary: Update a long-term memory fact
|
|
13912
13941
|
tags:
|
|
13913
13942
|
- ai_concierge
|
|
13943
|
+
x-required-permissions:
|
|
13944
|
+
- ai_concierge:manage
|
|
13914
13945
|
/v1/archive/email-forward-logs/aliases/{email_forward_alias_id}:
|
|
13915
13946
|
get:
|
|
13916
13947
|
description: Retrieves a paginated list of email forward logs for a specific
|
|
@@ -25458,6 +25489,14 @@ paths:
|
|
|
25458
25489
|
type: string
|
|
25459
25490
|
- type: 'null'
|
|
25460
25491
|
title: Search
|
|
25492
|
+
- in: query
|
|
25493
|
+
name: status
|
|
25494
|
+
required: false
|
|
25495
|
+
schema:
|
|
25496
|
+
anyOf:
|
|
25497
|
+
- $ref: '#/components/schemas/UserStatus'
|
|
25498
|
+
- type: 'null'
|
|
25499
|
+
title: Status
|
|
25461
25500
|
- in: query
|
|
25462
25501
|
name: page
|
|
25463
25502
|
required: false
|
package/src/schema.d.ts
CHANGED
|
@@ -9535,7 +9535,7 @@ export interface components {
|
|
|
9535
9535
|
* PublicResource
|
|
9536
9536
|
* @enum {string}
|
|
9537
9537
|
*/
|
|
9538
|
-
PublicResource: "organization" | "domains" | "contacts" | "dns" | "hosts" | "email_forwards" | "domain_forwards" | "parking" | "events" | "jobs" | "billing" | "users" | "api_keys" | "registrar_credentials" | "tags" | "audit_logs" | "vanity_ns";
|
|
9538
|
+
PublicResource: "organization" | "domains" | "contacts" | "dns" | "hosts" | "email_forwards" | "domain_forwards" | "parking" | "events" | "jobs" | "billing" | "users" | "api_keys" | "registrar_credentials" | "tags" | "audit_logs" | "vanity_ns" | "ai_concierge";
|
|
9539
9539
|
/**
|
|
9540
9540
|
* PublicRole
|
|
9541
9541
|
* @enum {string}
|
|
@@ -20495,6 +20495,7 @@ export interface operations {
|
|
|
20495
20495
|
sort_by?: components["schemas"]["UserSortField"];
|
|
20496
20496
|
sort_order?: components["schemas"]["SortOrder"];
|
|
20497
20497
|
search?: string | null;
|
|
20498
|
+
status?: components["schemas"]["UserStatus"] | null;
|
|
20498
20499
|
page?: number;
|
|
20499
20500
|
page_size?: number;
|
|
20500
20501
|
};
|