@letta-ai/letta-client 0.0.68657 → 0.0.68659
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/api/errors/InternalServerError.d.ts +8 -0
- package/api/errors/InternalServerError.js +52 -0
- package/api/errors/index.d.ts +1 -0
- package/api/errors/index.js +1 -0
- package/api/resources/agents/client/Client.js +9 -9
- package/api/resources/agents/resources/blocks/client/Client.js +5 -5
- package/api/resources/agents/resources/context/client/Client.js +1 -1
- package/api/resources/agents/resources/coreMemory/client/Client.js +1 -1
- package/api/resources/agents/resources/files/client/Client.js +4 -4
- package/api/resources/agents/resources/folders/client/Client.js +3 -3
- package/api/resources/agents/resources/groups/client/Client.js +1 -1
- package/api/resources/agents/resources/memoryVariables/client/Client.js +1 -1
- package/api/resources/agents/resources/messages/client/Client.js +10 -10
- package/api/resources/agents/resources/passages/client/Client.js +5 -5
- package/api/resources/agents/resources/sources/client/Client.js +3 -3
- package/api/resources/agents/resources/templates/client/Client.js +3 -3
- package/api/resources/agents/resources/tools/client/Client.js +4 -4
- package/api/resources/archives/client/Client.js +3 -3
- package/api/resources/batches/client/Client.js +4 -4
- package/api/resources/batches/resources/messages/client/Client.js +1 -1
- package/api/resources/blocks/client/Client.js +6 -6
- package/api/resources/blocks/resources/agents/client/Client.js +1 -1
- package/api/resources/clientSideAccessTokens/client/Client.js +3 -3
- package/api/resources/folders/client/Client.js +8 -8
- package/api/resources/folders/resources/agents/client/Client.js +1 -1
- package/api/resources/folders/resources/files/client/Client.js +3 -3
- package/api/resources/folders/resources/passages/client/Client.js +1 -1
- package/api/resources/groups/client/Client.js +6 -6
- package/api/resources/groups/resources/messages/client/Client.js +5 -5
- package/api/resources/health/client/Client.js +1 -1
- package/api/resources/identities/client/Client.js +7 -7
- package/api/resources/identities/resources/agents/client/Client.js +1 -1
- package/api/resources/identities/resources/blocks/client/Client.js +1 -1
- package/api/resources/identities/resources/properties/client/Client.js +1 -1
- package/api/resources/jobs/client/Client.js +5 -5
- package/api/resources/models/client/Client.js +2 -2
- package/api/resources/models/resources/embeddings/client/Client.js +1 -1
- package/api/resources/projects/client/Client.js +1 -1
- package/api/resources/providers/client/Client.js +6 -6
- package/api/resources/runs/client/Client.js +5 -5
- package/api/resources/runs/resources/messages/client/Client.js +1 -1
- package/api/resources/runs/resources/steps/client/Client.js +1 -1
- package/api/resources/runs/resources/usage/client/Client.js +1 -1
- package/api/resources/sources/client/Client.js +10 -10
- package/api/resources/sources/resources/files/client/Client.js +3 -3
- package/api/resources/sources/resources/passages/client/Client.js +1 -1
- package/api/resources/steps/client/Client.d.ts +3 -0
- package/api/resources/steps/client/Client.js +7 -2
- package/api/resources/steps/index.d.ts +1 -1
- package/api/resources/steps/index.js +1 -1
- package/api/resources/steps/resources/feedback/client/Client.js +1 -1
- package/api/resources/steps/resources/index.d.ts +3 -0
- package/api/resources/steps/resources/index.js +4 -1
- package/api/resources/steps/resources/messages/client/Client.d.ts +50 -0
- package/api/resources/steps/resources/messages/client/Client.js +166 -0
- package/api/resources/steps/resources/messages/client/index.d.ts +1 -0
- package/api/resources/steps/resources/messages/client/index.js +17 -0
- package/api/resources/steps/resources/messages/client/requests/MessagesListRequest.d.ts +30 -0
- package/api/resources/steps/resources/messages/client/requests/MessagesListRequest.js +5 -0
- package/api/resources/steps/resources/messages/client/requests/index.d.ts +1 -0
- package/api/resources/steps/resources/messages/client/requests/index.js +2 -0
- package/api/resources/steps/resources/messages/index.d.ts +2 -0
- package/api/resources/steps/resources/messages/index.js +18 -0
- package/api/resources/steps/resources/messages/types/MessagesListRequestOrder.d.ts +11 -0
- package/api/resources/steps/resources/messages/types/MessagesListRequestOrder.js +10 -0
- package/api/resources/steps/resources/messages/types/MessagesListResponseItem.d.ts +5 -0
- package/api/resources/steps/resources/messages/types/MessagesListResponseItem.js +5 -0
- package/api/resources/steps/resources/messages/types/index.d.ts +2 -0
- package/api/resources/steps/resources/messages/types/index.js +18 -0
- package/api/resources/steps/resources/metrics/client/Client.js +1 -1
- package/api/resources/steps/resources/trace/client/Client.js +1 -1
- package/api/resources/tags/client/Client.js +1 -1
- package/api/resources/telemetry/client/Client.js +1 -1
- package/api/resources/templates/client/Client.d.ts +39 -0
- package/api/resources/templates/client/Client.js +174 -9
- package/api/resources/templates/client/requests/TemplatesMigrateDeploymentRequest.d.ts +19 -0
- package/api/resources/templates/client/requests/TemplatesMigrateDeploymentRequest.js +5 -0
- package/api/resources/templates/client/requests/index.d.ts +1 -0
- package/api/resources/templates/resources/agents/client/Client.js +1 -1
- package/api/resources/templates/resources/agents/types/AgentsCreateResponse.d.ts +3 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroup.d.ts +24 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroup.js +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupBaseTemplateId.d.ts +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupBaseTemplateId.js +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupBaseTemplateIdItem.d.ts +4 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupBaseTemplateIdItem.js +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupDeploymentId.d.ts +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupDeploymentId.js +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupDeploymentIdItem.d.ts +4 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupDeploymentIdItem.js +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupHidden.d.ts +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupHidden.js +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupHiddenItem.d.ts +4 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupHiddenItem.js +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupLastProcessedMessageId.d.ts +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupLastProcessedMessageId.js +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupLastProcessedMessageIdItem.d.ts +4 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupLastProcessedMessageIdItem.js +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupManagerAgentId.d.ts +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupManagerAgentId.js +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupManagerAgentIdItem.d.ts +4 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupManagerAgentIdItem.js +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupManagerType.d.ts +12 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupManagerType.js +14 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupMaxMessageBufferLength.d.ts +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupMaxMessageBufferLength.js +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupMaxMessageBufferLengthItem.d.ts +4 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupMaxMessageBufferLengthItem.js +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupMaxTurns.d.ts +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupMaxTurns.js +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupMaxTurnsItem.d.ts +4 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupMaxTurnsItem.js +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupMinMessageBufferLength.d.ts +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupMinMessageBufferLength.js +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupMinMessageBufferLengthItem.d.ts +4 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupMinMessageBufferLengthItem.js +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupProjectId.d.ts +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupProjectId.js +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupProjectIdItem.d.ts +4 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupProjectIdItem.js +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupSharedBlockIds.d.ts +4 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupSharedBlockIds.js +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupSleeptimeAgentFrequency.d.ts +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupSleeptimeAgentFrequency.js +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupSleeptimeAgentFrequencyItem.d.ts +4 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupSleeptimeAgentFrequencyItem.js +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupTemplateId.d.ts +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupTemplateId.js +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupTemplateIdItem.d.ts +4 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupTemplateIdItem.js +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupTerminationToken.d.ts +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupTerminationToken.js +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupTerminationTokenItem.d.ts +4 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupTerminationTokenItem.js +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupTurnsCounter.d.ts +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupTurnsCounter.js +5 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupTurnsCounterItem.d.ts +4 -0
- package/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupTurnsCounterItem.js +5 -0
- package/api/resources/templates/resources/agents/types/index.d.ts +29 -0
- package/api/resources/templates/resources/agents/types/index.js +29 -0
- package/api/resources/templates/types/TemplatesGetTemplateSnapshotResponse.d.ts +1 -0
- package/api/resources/templates/types/TemplatesGetTemplateSnapshotResponseBlocksItem.d.ts +1 -0
- package/api/resources/templates/types/TemplatesGetTemplateSnapshotResponseRelationshipsItem.d.ts +7 -0
- package/api/resources/templates/types/TemplatesGetTemplateSnapshotResponseRelationshipsItem.js +5 -0
- package/api/resources/templates/types/TemplatesMigrateDeploymentResponse.d.ts +7 -0
- package/api/resources/templates/types/TemplatesMigrateDeploymentResponse.js +5 -0
- package/api/resources/templates/types/TemplatesSetCurrentTemplateFromSnapshotResponse.d.ts +7 -0
- package/api/resources/templates/types/TemplatesSetCurrentTemplateFromSnapshotResponse.js +5 -0
- package/api/resources/templates/types/index.d.ts +3 -0
- package/api/resources/templates/types/index.js +3 -0
- package/api/resources/tools/client/Client.js +20 -20
- package/api/resources/voice/client/Client.js +1 -1
- package/api/types/ChildToolRule.d.ts +1 -1
- package/api/types/ConditionalToolRule.d.ts +1 -1
- package/api/types/ContinueToolRule.d.ts +1 -1
- package/api/types/InitToolRule.d.ts +1 -1
- package/api/types/InternalServerErrorBody.d.ts +6 -0
- package/api/types/InternalServerErrorBody.js +5 -0
- package/api/types/MaxCountPerStepToolRule.d.ts +1 -1
- package/api/types/Memory.d.ts +3 -1
- package/api/types/MemoryAgentType.d.ts +8 -0
- package/api/types/MemoryAgentType.js +5 -0
- package/api/types/ParentToolRule.d.ts +1 -1
- package/api/types/RequiredBeforeExitToolRule.d.ts +1 -1
- package/api/types/RequiresApprovalToolRule.d.ts +1 -1
- package/api/types/Step.d.ts +1 -1
- package/api/types/TerminalToolRule.d.ts +1 -1
- package/api/types/index.d.ts +2 -0
- package/api/types/index.js +2 -0
- package/dist/api/errors/InternalServerError.d.ts +8 -0
- package/dist/api/errors/InternalServerError.js +52 -0
- package/dist/api/errors/index.d.ts +1 -0
- package/dist/api/errors/index.js +1 -0
- package/dist/api/resources/agents/client/Client.js +9 -9
- package/dist/api/resources/agents/resources/blocks/client/Client.js +5 -5
- package/dist/api/resources/agents/resources/context/client/Client.js +1 -1
- package/dist/api/resources/agents/resources/coreMemory/client/Client.js +1 -1
- package/dist/api/resources/agents/resources/files/client/Client.js +4 -4
- package/dist/api/resources/agents/resources/folders/client/Client.js +3 -3
- package/dist/api/resources/agents/resources/groups/client/Client.js +1 -1
- package/dist/api/resources/agents/resources/memoryVariables/client/Client.js +1 -1
- package/dist/api/resources/agents/resources/messages/client/Client.js +10 -10
- package/dist/api/resources/agents/resources/passages/client/Client.js +5 -5
- package/dist/api/resources/agents/resources/sources/client/Client.js +3 -3
- package/dist/api/resources/agents/resources/templates/client/Client.js +3 -3
- package/dist/api/resources/agents/resources/tools/client/Client.js +4 -4
- package/dist/api/resources/archives/client/Client.js +3 -3
- package/dist/api/resources/batches/client/Client.js +4 -4
- package/dist/api/resources/batches/resources/messages/client/Client.js +1 -1
- package/dist/api/resources/blocks/client/Client.js +6 -6
- package/dist/api/resources/blocks/resources/agents/client/Client.js +1 -1
- package/dist/api/resources/clientSideAccessTokens/client/Client.js +3 -3
- package/dist/api/resources/folders/client/Client.js +8 -8
- package/dist/api/resources/folders/resources/agents/client/Client.js +1 -1
- package/dist/api/resources/folders/resources/files/client/Client.js +3 -3
- package/dist/api/resources/folders/resources/passages/client/Client.js +1 -1
- package/dist/api/resources/groups/client/Client.js +6 -6
- package/dist/api/resources/groups/resources/messages/client/Client.js +5 -5
- package/dist/api/resources/health/client/Client.js +1 -1
- package/dist/api/resources/identities/client/Client.js +7 -7
- package/dist/api/resources/identities/resources/agents/client/Client.js +1 -1
- package/dist/api/resources/identities/resources/blocks/client/Client.js +1 -1
- package/dist/api/resources/identities/resources/properties/client/Client.js +1 -1
- package/dist/api/resources/jobs/client/Client.js +5 -5
- package/dist/api/resources/models/client/Client.js +2 -2
- package/dist/api/resources/models/resources/embeddings/client/Client.js +1 -1
- package/dist/api/resources/projects/client/Client.js +1 -1
- package/dist/api/resources/providers/client/Client.js +6 -6
- package/dist/api/resources/runs/client/Client.js +5 -5
- package/dist/api/resources/runs/resources/messages/client/Client.js +1 -1
- package/dist/api/resources/runs/resources/steps/client/Client.js +1 -1
- package/dist/api/resources/runs/resources/usage/client/Client.js +1 -1
- package/dist/api/resources/sources/client/Client.js +10 -10
- package/dist/api/resources/sources/resources/files/client/Client.js +3 -3
- package/dist/api/resources/sources/resources/passages/client/Client.js +1 -1
- package/dist/api/resources/steps/client/Client.d.ts +3 -0
- package/dist/api/resources/steps/client/Client.js +7 -2
- package/dist/api/resources/steps/index.d.ts +1 -1
- package/dist/api/resources/steps/index.js +1 -1
- package/dist/api/resources/steps/resources/feedback/client/Client.js +1 -1
- package/dist/api/resources/steps/resources/index.d.ts +3 -0
- package/dist/api/resources/steps/resources/index.js +4 -1
- package/dist/api/resources/steps/resources/messages/client/Client.d.ts +50 -0
- package/dist/api/resources/steps/resources/messages/client/Client.js +166 -0
- package/dist/api/resources/steps/resources/messages/client/index.d.ts +1 -0
- package/dist/api/resources/steps/resources/messages/client/index.js +17 -0
- package/dist/api/resources/steps/resources/messages/client/requests/MessagesListRequest.d.ts +30 -0
- package/dist/api/resources/steps/resources/messages/client/requests/MessagesListRequest.js +5 -0
- package/dist/api/resources/steps/resources/messages/client/requests/index.d.ts +1 -0
- package/dist/api/resources/steps/resources/messages/client/requests/index.js +2 -0
- package/dist/api/resources/steps/resources/messages/index.d.ts +2 -0
- package/dist/api/resources/steps/resources/messages/index.js +18 -0
- package/dist/api/resources/steps/resources/messages/types/MessagesListRequestOrder.d.ts +11 -0
- package/dist/api/resources/steps/resources/messages/types/MessagesListRequestOrder.js +10 -0
- package/dist/api/resources/steps/resources/messages/types/MessagesListResponseItem.d.ts +5 -0
- package/dist/api/resources/steps/resources/messages/types/MessagesListResponseItem.js +5 -0
- package/dist/api/resources/steps/resources/messages/types/index.d.ts +2 -0
- package/dist/api/resources/steps/resources/messages/types/index.js +18 -0
- package/dist/api/resources/steps/resources/metrics/client/Client.js +1 -1
- package/dist/api/resources/steps/resources/trace/client/Client.js +1 -1
- package/dist/api/resources/tags/client/Client.js +1 -1
- package/dist/api/resources/telemetry/client/Client.js +1 -1
- package/dist/api/resources/templates/client/Client.d.ts +39 -0
- package/dist/api/resources/templates/client/Client.js +174 -9
- package/dist/api/resources/templates/client/requests/TemplatesMigrateDeploymentRequest.d.ts +19 -0
- package/dist/api/resources/templates/client/requests/TemplatesMigrateDeploymentRequest.js +5 -0
- package/dist/api/resources/templates/client/requests/index.d.ts +1 -0
- package/dist/api/resources/templates/resources/agents/client/Client.js +1 -1
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponse.d.ts +3 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroup.d.ts +24 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroup.js +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupBaseTemplateId.d.ts +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupBaseTemplateId.js +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupBaseTemplateIdItem.d.ts +4 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupBaseTemplateIdItem.js +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupDeploymentId.d.ts +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupDeploymentId.js +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupDeploymentIdItem.d.ts +4 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupDeploymentIdItem.js +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupHidden.d.ts +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupHidden.js +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupHiddenItem.d.ts +4 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupHiddenItem.js +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupLastProcessedMessageId.d.ts +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupLastProcessedMessageId.js +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupLastProcessedMessageIdItem.d.ts +4 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupLastProcessedMessageIdItem.js +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupManagerAgentId.d.ts +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupManagerAgentId.js +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupManagerAgentIdItem.d.ts +4 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupManagerAgentIdItem.js +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupManagerType.d.ts +12 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupManagerType.js +14 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupMaxMessageBufferLength.d.ts +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupMaxMessageBufferLength.js +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupMaxMessageBufferLengthItem.d.ts +4 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupMaxMessageBufferLengthItem.js +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupMaxTurns.d.ts +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupMaxTurns.js +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupMaxTurnsItem.d.ts +4 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupMaxTurnsItem.js +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupMinMessageBufferLength.d.ts +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupMinMessageBufferLength.js +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupMinMessageBufferLengthItem.d.ts +4 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupMinMessageBufferLengthItem.js +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupProjectId.d.ts +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupProjectId.js +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupProjectIdItem.d.ts +4 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupProjectIdItem.js +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupSharedBlockIds.d.ts +4 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupSharedBlockIds.js +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupSleeptimeAgentFrequency.d.ts +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupSleeptimeAgentFrequency.js +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupSleeptimeAgentFrequencyItem.d.ts +4 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupSleeptimeAgentFrequencyItem.js +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupTemplateId.d.ts +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupTemplateId.js +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupTemplateIdItem.d.ts +4 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupTemplateIdItem.js +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupTerminationToken.d.ts +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupTerminationToken.js +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupTerminationTokenItem.d.ts +4 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupTerminationTokenItem.js +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupTurnsCounter.d.ts +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupTurnsCounter.js +5 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupTurnsCounterItem.d.ts +4 -0
- package/dist/api/resources/templates/resources/agents/types/AgentsCreateResponseGroupTurnsCounterItem.js +5 -0
- package/dist/api/resources/templates/resources/agents/types/index.d.ts +29 -0
- package/dist/api/resources/templates/resources/agents/types/index.js +29 -0
- package/dist/api/resources/templates/types/TemplatesGetTemplateSnapshotResponse.d.ts +1 -0
- package/dist/api/resources/templates/types/TemplatesGetTemplateSnapshotResponseBlocksItem.d.ts +1 -0
- package/dist/api/resources/templates/types/TemplatesGetTemplateSnapshotResponseRelationshipsItem.d.ts +7 -0
- package/dist/api/resources/templates/types/TemplatesGetTemplateSnapshotResponseRelationshipsItem.js +5 -0
- package/dist/api/resources/templates/types/TemplatesMigrateDeploymentResponse.d.ts +7 -0
- package/dist/api/resources/templates/types/TemplatesMigrateDeploymentResponse.js +5 -0
- package/dist/api/resources/templates/types/TemplatesSetCurrentTemplateFromSnapshotResponse.d.ts +7 -0
- package/dist/api/resources/templates/types/TemplatesSetCurrentTemplateFromSnapshotResponse.js +5 -0
- package/dist/api/resources/templates/types/index.d.ts +3 -0
- package/dist/api/resources/templates/types/index.js +3 -0
- package/dist/api/resources/tools/client/Client.js +20 -20
- package/dist/api/resources/voice/client/Client.js +1 -1
- package/dist/api/types/ChildToolRule.d.ts +1 -1
- package/dist/api/types/ConditionalToolRule.d.ts +1 -1
- package/dist/api/types/ContinueToolRule.d.ts +1 -1
- package/dist/api/types/InitToolRule.d.ts +1 -1
- package/dist/api/types/InternalServerErrorBody.d.ts +6 -0
- package/dist/api/types/InternalServerErrorBody.js +5 -0
- package/dist/api/types/MaxCountPerStepToolRule.d.ts +1 -1
- package/dist/api/types/Memory.d.ts +3 -1
- package/dist/api/types/MemoryAgentType.d.ts +8 -0
- package/dist/api/types/MemoryAgentType.js +5 -0
- package/dist/api/types/ParentToolRule.d.ts +1 -1
- package/dist/api/types/RequiredBeforeExitToolRule.d.ts +1 -1
- package/dist/api/types/RequiresApprovalToolRule.d.ts +1 -1
- package/dist/api/types/Step.d.ts +1 -1
- package/dist/api/types/TerminalToolRule.d.ts +1 -1
- package/dist/api/types/index.d.ts +2 -0
- package/dist/api/types/index.js +2 -0
- package/dist/serialization/resources/steps/index.d.ts +1 -1
- package/dist/serialization/resources/steps/index.js +1 -1
- package/dist/serialization/resources/steps/resources/index.d.ts +2 -0
- package/dist/serialization/resources/steps/resources/index.js +3 -1
- package/dist/serialization/resources/steps/resources/messages/client/index.d.ts +1 -0
- package/dist/serialization/resources/steps/resources/messages/client/index.js +37 -0
- package/dist/serialization/resources/steps/resources/messages/client/list.d.ts +11 -0
- package/dist/serialization/resources/steps/resources/messages/client/list.js +42 -0
- package/dist/serialization/resources/steps/resources/messages/index.d.ts +2 -0
- package/dist/serialization/resources/steps/resources/messages/index.js +18 -0
- package/dist/serialization/resources/steps/resources/messages/types/MessagesListRequestOrder.d.ts +10 -0
- package/dist/serialization/resources/steps/resources/messages/types/MessagesListRequestOrder.js +41 -0
- package/dist/serialization/resources/steps/resources/messages/types/MessagesListResponseItem.d.ts +19 -0
- package/dist/serialization/resources/steps/resources/messages/types/MessagesListResponseItem.js +60 -0
- package/dist/serialization/resources/steps/resources/messages/types/index.d.ts +2 -0
- package/dist/serialization/resources/steps/resources/messages/types/index.js +18 -0
- package/dist/serialization/resources/templates/client/requests/TemplatesMigrateDeploymentRequest.d.ts +15 -0
- package/dist/serialization/resources/templates/client/requests/TemplatesMigrateDeploymentRequest.js +46 -0
- package/dist/serialization/resources/templates/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/templates/client/requests/index.js +3 -1
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponse.d.ts +3 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponse.js +3 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroup.d.ts +44 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroup.js +75 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupBaseTemplateId.d.ts +11 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupBaseTemplateId.js +47 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupBaseTemplateIdItem.d.ts +10 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupBaseTemplateIdItem.js +41 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupDeploymentId.d.ts +11 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupDeploymentId.js +47 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupDeploymentIdItem.d.ts +10 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupDeploymentIdItem.js +41 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupHidden.d.ts +11 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupHidden.js +47 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupHiddenItem.d.ts +10 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupHiddenItem.js +41 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupLastProcessedMessageId.d.ts +11 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupLastProcessedMessageId.js +47 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupLastProcessedMessageIdItem.d.ts +10 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupLastProcessedMessageIdItem.js +41 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupManagerAgentId.d.ts +11 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupManagerAgentId.js +47 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupManagerAgentIdItem.d.ts +10 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupManagerAgentIdItem.js +41 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupManagerType.d.ts +10 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupManagerType.js +41 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupMaxMessageBufferLength.d.ts +11 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupMaxMessageBufferLength.js +47 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupMaxMessageBufferLengthItem.d.ts +10 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupMaxMessageBufferLengthItem.js +41 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupMaxTurns.d.ts +11 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupMaxTurns.js +47 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupMaxTurnsItem.d.ts +10 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupMaxTurnsItem.js +41 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupMinMessageBufferLength.d.ts +11 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupMinMessageBufferLength.js +47 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupMinMessageBufferLengthItem.d.ts +10 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupMinMessageBufferLengthItem.js +41 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupProjectId.d.ts +11 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupProjectId.js +47 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupProjectIdItem.d.ts +10 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupProjectIdItem.js +41 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupSharedBlockIds.d.ts +10 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupSharedBlockIds.js +44 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupSleeptimeAgentFrequency.d.ts +11 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupSleeptimeAgentFrequency.js +47 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupSleeptimeAgentFrequencyItem.d.ts +10 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupSleeptimeAgentFrequencyItem.js +41 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupTemplateId.d.ts +11 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupTemplateId.js +47 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupTemplateIdItem.d.ts +10 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupTemplateIdItem.js +41 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupTerminationToken.d.ts +11 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupTerminationToken.js +47 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupTerminationTokenItem.d.ts +10 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupTerminationTokenItem.js +41 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupTurnsCounter.d.ts +11 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupTurnsCounter.js +47 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupTurnsCounterItem.d.ts +10 -0
- package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupTurnsCounterItem.js +41 -0
- package/dist/serialization/resources/templates/resources/agents/types/index.d.ts +29 -0
- package/dist/serialization/resources/templates/resources/agents/types/index.js +29 -0
- package/dist/serialization/resources/templates/types/TemplatesGetTemplateSnapshotResponse.d.ts +2 -0
- package/dist/serialization/resources/templates/types/TemplatesGetTemplateSnapshotResponse.js +2 -0
- package/dist/serialization/resources/templates/types/TemplatesGetTemplateSnapshotResponseBlocksItem.d.ts +1 -0
- package/dist/serialization/resources/templates/types/TemplatesGetTemplateSnapshotResponseBlocksItem.js +1 -0
- package/dist/serialization/resources/templates/types/TemplatesGetTemplateSnapshotResponseRelationshipsItem.d.ts +13 -0
- package/dist/serialization/resources/templates/types/TemplatesGetTemplateSnapshotResponseRelationshipsItem.js +44 -0
- package/dist/serialization/resources/templates/types/TemplatesMigrateDeploymentResponse.d.ts +13 -0
- package/dist/serialization/resources/templates/types/TemplatesMigrateDeploymentResponse.js +44 -0
- package/dist/serialization/resources/templates/types/TemplatesSetCurrentTemplateFromSnapshotResponse.d.ts +13 -0
- package/dist/serialization/resources/templates/types/TemplatesSetCurrentTemplateFromSnapshotResponse.js +44 -0
- package/dist/serialization/resources/templates/types/index.d.ts +3 -0
- package/dist/serialization/resources/templates/types/index.js +3 -0
- package/dist/serialization/types/InternalServerErrorBody.d.ts +12 -0
- package/dist/serialization/types/InternalServerErrorBody.js +43 -0
- package/dist/serialization/types/Memory.d.ts +2 -0
- package/dist/serialization/types/Memory.js +2 -0
- package/dist/serialization/types/MemoryAgentType.d.ts +11 -0
- package/dist/serialization/types/MemoryAgentType.js +42 -0
- package/dist/serialization/types/index.d.ts +2 -0
- package/dist/serialization/types/index.js +2 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
- package/reference.md +243 -0
- package/serialization/resources/steps/index.d.ts +1 -1
- package/serialization/resources/steps/index.js +1 -1
- package/serialization/resources/steps/resources/index.d.ts +2 -0
- package/serialization/resources/steps/resources/index.js +3 -1
- package/serialization/resources/steps/resources/messages/client/index.d.ts +1 -0
- package/serialization/resources/steps/resources/messages/client/index.js +37 -0
- package/serialization/resources/steps/resources/messages/client/list.d.ts +11 -0
- package/serialization/resources/steps/resources/messages/client/list.js +42 -0
- package/serialization/resources/steps/resources/messages/index.d.ts +2 -0
- package/serialization/resources/steps/resources/messages/index.js +18 -0
- package/serialization/resources/steps/resources/messages/types/MessagesListRequestOrder.d.ts +10 -0
- package/serialization/resources/steps/resources/messages/types/MessagesListRequestOrder.js +41 -0
- package/serialization/resources/steps/resources/messages/types/MessagesListResponseItem.d.ts +19 -0
- package/serialization/resources/steps/resources/messages/types/MessagesListResponseItem.js +60 -0
- package/serialization/resources/steps/resources/messages/types/index.d.ts +2 -0
- package/serialization/resources/steps/resources/messages/types/index.js +18 -0
- package/serialization/resources/templates/client/requests/TemplatesMigrateDeploymentRequest.d.ts +15 -0
- package/serialization/resources/templates/client/requests/TemplatesMigrateDeploymentRequest.js +46 -0
- package/serialization/resources/templates/client/requests/index.d.ts +1 -0
- package/serialization/resources/templates/client/requests/index.js +3 -1
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponse.d.ts +3 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponse.js +3 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroup.d.ts +44 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroup.js +75 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupBaseTemplateId.d.ts +11 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupBaseTemplateId.js +47 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupBaseTemplateIdItem.d.ts +10 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupBaseTemplateIdItem.js +41 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupDeploymentId.d.ts +11 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupDeploymentId.js +47 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupDeploymentIdItem.d.ts +10 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupDeploymentIdItem.js +41 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupHidden.d.ts +11 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupHidden.js +47 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupHiddenItem.d.ts +10 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupHiddenItem.js +41 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupLastProcessedMessageId.d.ts +11 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupLastProcessedMessageId.js +47 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupLastProcessedMessageIdItem.d.ts +10 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupLastProcessedMessageIdItem.js +41 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupManagerAgentId.d.ts +11 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupManagerAgentId.js +47 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupManagerAgentIdItem.d.ts +10 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupManagerAgentIdItem.js +41 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupManagerType.d.ts +10 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupManagerType.js +41 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupMaxMessageBufferLength.d.ts +11 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupMaxMessageBufferLength.js +47 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupMaxMessageBufferLengthItem.d.ts +10 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupMaxMessageBufferLengthItem.js +41 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupMaxTurns.d.ts +11 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupMaxTurns.js +47 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupMaxTurnsItem.d.ts +10 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupMaxTurnsItem.js +41 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupMinMessageBufferLength.d.ts +11 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupMinMessageBufferLength.js +47 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupMinMessageBufferLengthItem.d.ts +10 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupMinMessageBufferLengthItem.js +41 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupProjectId.d.ts +11 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupProjectId.js +47 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupProjectIdItem.d.ts +10 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupProjectIdItem.js +41 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupSharedBlockIds.d.ts +10 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupSharedBlockIds.js +44 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupSleeptimeAgentFrequency.d.ts +11 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupSleeptimeAgentFrequency.js +47 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupSleeptimeAgentFrequencyItem.d.ts +10 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupSleeptimeAgentFrequencyItem.js +41 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupTemplateId.d.ts +11 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupTemplateId.js +47 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupTemplateIdItem.d.ts +10 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupTemplateIdItem.js +41 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupTerminationToken.d.ts +11 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupTerminationToken.js +47 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupTerminationTokenItem.d.ts +10 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupTerminationTokenItem.js +41 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupTurnsCounter.d.ts +11 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupTurnsCounter.js +47 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupTurnsCounterItem.d.ts +10 -0
- package/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroupTurnsCounterItem.js +41 -0
- package/serialization/resources/templates/resources/agents/types/index.d.ts +29 -0
- package/serialization/resources/templates/resources/agents/types/index.js +29 -0
- package/serialization/resources/templates/types/TemplatesGetTemplateSnapshotResponse.d.ts +2 -0
- package/serialization/resources/templates/types/TemplatesGetTemplateSnapshotResponse.js +2 -0
- package/serialization/resources/templates/types/TemplatesGetTemplateSnapshotResponseBlocksItem.d.ts +1 -0
- package/serialization/resources/templates/types/TemplatesGetTemplateSnapshotResponseBlocksItem.js +1 -0
- package/serialization/resources/templates/types/TemplatesGetTemplateSnapshotResponseRelationshipsItem.d.ts +13 -0
- package/serialization/resources/templates/types/TemplatesGetTemplateSnapshotResponseRelationshipsItem.js +44 -0
- package/serialization/resources/templates/types/TemplatesMigrateDeploymentResponse.d.ts +13 -0
- package/serialization/resources/templates/types/TemplatesMigrateDeploymentResponse.js +44 -0
- package/serialization/resources/templates/types/TemplatesSetCurrentTemplateFromSnapshotResponse.d.ts +13 -0
- package/serialization/resources/templates/types/TemplatesSetCurrentTemplateFromSnapshotResponse.js +44 -0
- package/serialization/resources/templates/types/index.d.ts +3 -0
- package/serialization/resources/templates/types/index.js +3 -0
- package/serialization/types/InternalServerErrorBody.d.ts +12 -0
- package/serialization/types/InternalServerErrorBody.js +43 -0
- package/serialization/types/Memory.d.ts +2 -0
- package/serialization/types/Memory.js +2 -0
- package/serialization/types/MemoryAgentType.d.ts +11 -0
- package/serialization/types/MemoryAgentType.js +42 -0
- package/serialization/types/index.d.ts +2 -0
- package/serialization/types/index.js +2 -0
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/dist/serialization/resources/templates/resources/agents/types/AgentsCreateResponseGroup.js
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.AgentsCreateResponseGroup = void 0;
|
|
40
|
+
const core = __importStar(require("../../../../../../core"));
|
|
41
|
+
const AgentsCreateResponseGroupManagerType_1 = require("./AgentsCreateResponseGroupManagerType");
|
|
42
|
+
const AgentsCreateResponseGroupProjectId_1 = require("./AgentsCreateResponseGroupProjectId");
|
|
43
|
+
const AgentsCreateResponseGroupTemplateId_1 = require("./AgentsCreateResponseGroupTemplateId");
|
|
44
|
+
const AgentsCreateResponseGroupBaseTemplateId_1 = require("./AgentsCreateResponseGroupBaseTemplateId");
|
|
45
|
+
const AgentsCreateResponseGroupDeploymentId_1 = require("./AgentsCreateResponseGroupDeploymentId");
|
|
46
|
+
const AgentsCreateResponseGroupSharedBlockIds_1 = require("./AgentsCreateResponseGroupSharedBlockIds");
|
|
47
|
+
const AgentsCreateResponseGroupManagerAgentId_1 = require("./AgentsCreateResponseGroupManagerAgentId");
|
|
48
|
+
const AgentsCreateResponseGroupTerminationToken_1 = require("./AgentsCreateResponseGroupTerminationToken");
|
|
49
|
+
const AgentsCreateResponseGroupMaxTurns_1 = require("./AgentsCreateResponseGroupMaxTurns");
|
|
50
|
+
const AgentsCreateResponseGroupSleeptimeAgentFrequency_1 = require("./AgentsCreateResponseGroupSleeptimeAgentFrequency");
|
|
51
|
+
const AgentsCreateResponseGroupTurnsCounter_1 = require("./AgentsCreateResponseGroupTurnsCounter");
|
|
52
|
+
const AgentsCreateResponseGroupLastProcessedMessageId_1 = require("./AgentsCreateResponseGroupLastProcessedMessageId");
|
|
53
|
+
const AgentsCreateResponseGroupMaxMessageBufferLength_1 = require("./AgentsCreateResponseGroupMaxMessageBufferLength");
|
|
54
|
+
const AgentsCreateResponseGroupMinMessageBufferLength_1 = require("./AgentsCreateResponseGroupMinMessageBufferLength");
|
|
55
|
+
const AgentsCreateResponseGroupHidden_1 = require("./AgentsCreateResponseGroupHidden");
|
|
56
|
+
exports.AgentsCreateResponseGroup = core.serialization.object({
|
|
57
|
+
id: core.serialization.string(),
|
|
58
|
+
managerType: core.serialization.property("manager_type", AgentsCreateResponseGroupManagerType_1.AgentsCreateResponseGroupManagerType),
|
|
59
|
+
agentIds: core.serialization.property("agent_ids", core.serialization.list(core.serialization.string())),
|
|
60
|
+
description: core.serialization.string(),
|
|
61
|
+
projectId: core.serialization.property("project_id", AgentsCreateResponseGroupProjectId_1.AgentsCreateResponseGroupProjectId.optional()),
|
|
62
|
+
templateId: core.serialization.property("template_id", AgentsCreateResponseGroupTemplateId_1.AgentsCreateResponseGroupTemplateId.optional()),
|
|
63
|
+
baseTemplateId: core.serialization.property("base_template_id", AgentsCreateResponseGroupBaseTemplateId_1.AgentsCreateResponseGroupBaseTemplateId.optional()),
|
|
64
|
+
deploymentId: core.serialization.property("deployment_id", AgentsCreateResponseGroupDeploymentId_1.AgentsCreateResponseGroupDeploymentId.optional()),
|
|
65
|
+
sharedBlockIds: core.serialization.property("shared_block_ids", AgentsCreateResponseGroupSharedBlockIds_1.AgentsCreateResponseGroupSharedBlockIds.optional()),
|
|
66
|
+
managerAgentId: core.serialization.property("manager_agent_id", AgentsCreateResponseGroupManagerAgentId_1.AgentsCreateResponseGroupManagerAgentId.optional()),
|
|
67
|
+
terminationToken: core.serialization.property("termination_token", AgentsCreateResponseGroupTerminationToken_1.AgentsCreateResponseGroupTerminationToken.optional()),
|
|
68
|
+
maxTurns: core.serialization.property("max_turns", AgentsCreateResponseGroupMaxTurns_1.AgentsCreateResponseGroupMaxTurns.optional()),
|
|
69
|
+
sleeptimeAgentFrequency: core.serialization.property("sleeptime_agent_frequency", AgentsCreateResponseGroupSleeptimeAgentFrequency_1.AgentsCreateResponseGroupSleeptimeAgentFrequency.optional()),
|
|
70
|
+
turnsCounter: core.serialization.property("turns_counter", AgentsCreateResponseGroupTurnsCounter_1.AgentsCreateResponseGroupTurnsCounter.optional()),
|
|
71
|
+
lastProcessedMessageId: core.serialization.property("last_processed_message_id", AgentsCreateResponseGroupLastProcessedMessageId_1.AgentsCreateResponseGroupLastProcessedMessageId.optional()),
|
|
72
|
+
maxMessageBufferLength: core.serialization.property("max_message_buffer_length", AgentsCreateResponseGroupMaxMessageBufferLength_1.AgentsCreateResponseGroupMaxMessageBufferLength.optional()),
|
|
73
|
+
minMessageBufferLength: core.serialization.property("min_message_buffer_length", AgentsCreateResponseGroupMinMessageBufferLength_1.AgentsCreateResponseGroupMinMessageBufferLength.optional()),
|
|
74
|
+
hidden: AgentsCreateResponseGroupHidden_1.AgentsCreateResponseGroupHidden.optional(),
|
|
75
|
+
});
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../../../../index";
|
|
5
|
+
import * as Letta from "../../../../../../api/index";
|
|
6
|
+
import * as core from "../../../../../../core";
|
|
7
|
+
import { AgentsCreateResponseGroupBaseTemplateIdItem } from "./AgentsCreateResponseGroupBaseTemplateIdItem";
|
|
8
|
+
export declare const AgentsCreateResponseGroupBaseTemplateId: core.serialization.Schema<serializers.templates.AgentsCreateResponseGroupBaseTemplateId.Raw, Letta.templates.AgentsCreateResponseGroupBaseTemplateId>;
|
|
9
|
+
export declare namespace AgentsCreateResponseGroupBaseTemplateId {
|
|
10
|
+
type Raw = string | (string | null | undefined) | (AgentsCreateResponseGroupBaseTemplateIdItem.Raw | null | undefined)[] | unknown;
|
|
11
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.AgentsCreateResponseGroupBaseTemplateId = void 0;
|
|
40
|
+
const core = __importStar(require("../../../../../../core"));
|
|
41
|
+
const AgentsCreateResponseGroupBaseTemplateIdItem_1 = require("./AgentsCreateResponseGroupBaseTemplateIdItem");
|
|
42
|
+
exports.AgentsCreateResponseGroupBaseTemplateId = core.serialization.undiscriminatedUnion([
|
|
43
|
+
core.serialization.string(),
|
|
44
|
+
core.serialization.string().optional(),
|
|
45
|
+
core.serialization.list(AgentsCreateResponseGroupBaseTemplateIdItem_1.AgentsCreateResponseGroupBaseTemplateIdItem.optional()),
|
|
46
|
+
core.serialization.unknown(),
|
|
47
|
+
]);
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../../../../index";
|
|
5
|
+
import * as Letta from "../../../../../../api/index";
|
|
6
|
+
import * as core from "../../../../../../core";
|
|
7
|
+
export declare const AgentsCreateResponseGroupBaseTemplateIdItem: core.serialization.Schema<serializers.templates.AgentsCreateResponseGroupBaseTemplateIdItem.Raw, Letta.templates.AgentsCreateResponseGroupBaseTemplateIdItem>;
|
|
8
|
+
export declare namespace AgentsCreateResponseGroupBaseTemplateIdItem {
|
|
9
|
+
type Raw = string | (string | null | undefined);
|
|
10
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.AgentsCreateResponseGroupBaseTemplateIdItem = void 0;
|
|
40
|
+
const core = __importStar(require("../../../../../../core"));
|
|
41
|
+
exports.AgentsCreateResponseGroupBaseTemplateIdItem = core.serialization.undiscriminatedUnion([core.serialization.string(), core.serialization.string().optional()]);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../../../../index";
|
|
5
|
+
import * as Letta from "../../../../../../api/index";
|
|
6
|
+
import * as core from "../../../../../../core";
|
|
7
|
+
import { AgentsCreateResponseGroupDeploymentIdItem } from "./AgentsCreateResponseGroupDeploymentIdItem";
|
|
8
|
+
export declare const AgentsCreateResponseGroupDeploymentId: core.serialization.Schema<serializers.templates.AgentsCreateResponseGroupDeploymentId.Raw, Letta.templates.AgentsCreateResponseGroupDeploymentId>;
|
|
9
|
+
export declare namespace AgentsCreateResponseGroupDeploymentId {
|
|
10
|
+
type Raw = string | (string | null | undefined) | (AgentsCreateResponseGroupDeploymentIdItem.Raw | null | undefined)[] | unknown;
|
|
11
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.AgentsCreateResponseGroupDeploymentId = void 0;
|
|
40
|
+
const core = __importStar(require("../../../../../../core"));
|
|
41
|
+
const AgentsCreateResponseGroupDeploymentIdItem_1 = require("./AgentsCreateResponseGroupDeploymentIdItem");
|
|
42
|
+
exports.AgentsCreateResponseGroupDeploymentId = core.serialization.undiscriminatedUnion([
|
|
43
|
+
core.serialization.string(),
|
|
44
|
+
core.serialization.string().optional(),
|
|
45
|
+
core.serialization.list(AgentsCreateResponseGroupDeploymentIdItem_1.AgentsCreateResponseGroupDeploymentIdItem.optional()),
|
|
46
|
+
core.serialization.unknown(),
|
|
47
|
+
]);
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../../../../index";
|
|
5
|
+
import * as Letta from "../../../../../../api/index";
|
|
6
|
+
import * as core from "../../../../../../core";
|
|
7
|
+
export declare const AgentsCreateResponseGroupDeploymentIdItem: core.serialization.Schema<serializers.templates.AgentsCreateResponseGroupDeploymentIdItem.Raw, Letta.templates.AgentsCreateResponseGroupDeploymentIdItem>;
|
|
8
|
+
export declare namespace AgentsCreateResponseGroupDeploymentIdItem {
|
|
9
|
+
type Raw = string | (string | null | undefined);
|
|
10
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.AgentsCreateResponseGroupDeploymentIdItem = void 0;
|
|
40
|
+
const core = __importStar(require("../../../../../../core"));
|
|
41
|
+
exports.AgentsCreateResponseGroupDeploymentIdItem = core.serialization.undiscriminatedUnion([core.serialization.string(), core.serialization.string().optional()]);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../../../../index";
|
|
5
|
+
import * as Letta from "../../../../../../api/index";
|
|
6
|
+
import * as core from "../../../../../../core";
|
|
7
|
+
import { AgentsCreateResponseGroupHiddenItem } from "./AgentsCreateResponseGroupHiddenItem";
|
|
8
|
+
export declare const AgentsCreateResponseGroupHidden: core.serialization.Schema<serializers.templates.AgentsCreateResponseGroupHidden.Raw, Letta.templates.AgentsCreateResponseGroupHidden>;
|
|
9
|
+
export declare namespace AgentsCreateResponseGroupHidden {
|
|
10
|
+
type Raw = boolean | (string | null | undefined) | (AgentsCreateResponseGroupHiddenItem.Raw | null | undefined)[] | unknown;
|
|
11
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.AgentsCreateResponseGroupHidden = void 0;
|
|
40
|
+
const core = __importStar(require("../../../../../../core"));
|
|
41
|
+
const AgentsCreateResponseGroupHiddenItem_1 = require("./AgentsCreateResponseGroupHiddenItem");
|
|
42
|
+
exports.AgentsCreateResponseGroupHidden = core.serialization.undiscriminatedUnion([
|
|
43
|
+
core.serialization.boolean(),
|
|
44
|
+
core.serialization.string().optional(),
|
|
45
|
+
core.serialization.list(AgentsCreateResponseGroupHiddenItem_1.AgentsCreateResponseGroupHiddenItem.optional()),
|
|
46
|
+
core.serialization.unknown(),
|
|
47
|
+
]);
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../../../../index";
|
|
5
|
+
import * as Letta from "../../../../../../api/index";
|
|
6
|
+
import * as core from "../../../../../../core";
|
|
7
|
+
export declare const AgentsCreateResponseGroupHiddenItem: core.serialization.Schema<serializers.templates.AgentsCreateResponseGroupHiddenItem.Raw, Letta.templates.AgentsCreateResponseGroupHiddenItem>;
|
|
8
|
+
export declare namespace AgentsCreateResponseGroupHiddenItem {
|
|
9
|
+
type Raw = boolean | (string | null | undefined);
|
|
10
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.AgentsCreateResponseGroupHiddenItem = void 0;
|
|
40
|
+
const core = __importStar(require("../../../../../../core"));
|
|
41
|
+
exports.AgentsCreateResponseGroupHiddenItem = core.serialization.undiscriminatedUnion([core.serialization.boolean(), core.serialization.string().optional()]);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../../../../index";
|
|
5
|
+
import * as Letta from "../../../../../../api/index";
|
|
6
|
+
import * as core from "../../../../../../core";
|
|
7
|
+
import { AgentsCreateResponseGroupLastProcessedMessageIdItem } from "./AgentsCreateResponseGroupLastProcessedMessageIdItem";
|
|
8
|
+
export declare const AgentsCreateResponseGroupLastProcessedMessageId: core.serialization.Schema<serializers.templates.AgentsCreateResponseGroupLastProcessedMessageId.Raw, Letta.templates.AgentsCreateResponseGroupLastProcessedMessageId>;
|
|
9
|
+
export declare namespace AgentsCreateResponseGroupLastProcessedMessageId {
|
|
10
|
+
type Raw = string | (string | null | undefined) | (AgentsCreateResponseGroupLastProcessedMessageIdItem.Raw | null | undefined)[] | unknown;
|
|
11
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.AgentsCreateResponseGroupLastProcessedMessageId = void 0;
|
|
40
|
+
const core = __importStar(require("../../../../../../core"));
|
|
41
|
+
const AgentsCreateResponseGroupLastProcessedMessageIdItem_1 = require("./AgentsCreateResponseGroupLastProcessedMessageIdItem");
|
|
42
|
+
exports.AgentsCreateResponseGroupLastProcessedMessageId = core.serialization.undiscriminatedUnion([
|
|
43
|
+
core.serialization.string(),
|
|
44
|
+
core.serialization.string().optional(),
|
|
45
|
+
core.serialization.list(AgentsCreateResponseGroupLastProcessedMessageIdItem_1.AgentsCreateResponseGroupLastProcessedMessageIdItem.optional()),
|
|
46
|
+
core.serialization.unknown(),
|
|
47
|
+
]);
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../../../../index";
|
|
5
|
+
import * as Letta from "../../../../../../api/index";
|
|
6
|
+
import * as core from "../../../../../../core";
|
|
7
|
+
export declare const AgentsCreateResponseGroupLastProcessedMessageIdItem: core.serialization.Schema<serializers.templates.AgentsCreateResponseGroupLastProcessedMessageIdItem.Raw, Letta.templates.AgentsCreateResponseGroupLastProcessedMessageIdItem>;
|
|
8
|
+
export declare namespace AgentsCreateResponseGroupLastProcessedMessageIdItem {
|
|
9
|
+
type Raw = string | (string | null | undefined);
|
|
10
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.AgentsCreateResponseGroupLastProcessedMessageIdItem = void 0;
|
|
40
|
+
const core = __importStar(require("../../../../../../core"));
|
|
41
|
+
exports.AgentsCreateResponseGroupLastProcessedMessageIdItem = core.serialization.undiscriminatedUnion([core.serialization.string(), core.serialization.string().optional()]);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../../../../index";
|
|
5
|
+
import * as Letta from "../../../../../../api/index";
|
|
6
|
+
import * as core from "../../../../../../core";
|
|
7
|
+
import { AgentsCreateResponseGroupManagerAgentIdItem } from "./AgentsCreateResponseGroupManagerAgentIdItem";
|
|
8
|
+
export declare const AgentsCreateResponseGroupManagerAgentId: core.serialization.Schema<serializers.templates.AgentsCreateResponseGroupManagerAgentId.Raw, Letta.templates.AgentsCreateResponseGroupManagerAgentId>;
|
|
9
|
+
export declare namespace AgentsCreateResponseGroupManagerAgentId {
|
|
10
|
+
type Raw = string | (string | null | undefined) | (AgentsCreateResponseGroupManagerAgentIdItem.Raw | null | undefined)[] | unknown;
|
|
11
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.AgentsCreateResponseGroupManagerAgentId = void 0;
|
|
40
|
+
const core = __importStar(require("../../../../../../core"));
|
|
41
|
+
const AgentsCreateResponseGroupManagerAgentIdItem_1 = require("./AgentsCreateResponseGroupManagerAgentIdItem");
|
|
42
|
+
exports.AgentsCreateResponseGroupManagerAgentId = core.serialization.undiscriminatedUnion([
|
|
43
|
+
core.serialization.string(),
|
|
44
|
+
core.serialization.string().optional(),
|
|
45
|
+
core.serialization.list(AgentsCreateResponseGroupManagerAgentIdItem_1.AgentsCreateResponseGroupManagerAgentIdItem.optional()),
|
|
46
|
+
core.serialization.unknown(),
|
|
47
|
+
]);
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../../../../index";
|
|
5
|
+
import * as Letta from "../../../../../../api/index";
|
|
6
|
+
import * as core from "../../../../../../core";
|
|
7
|
+
export declare const AgentsCreateResponseGroupManagerAgentIdItem: core.serialization.Schema<serializers.templates.AgentsCreateResponseGroupManagerAgentIdItem.Raw, Letta.templates.AgentsCreateResponseGroupManagerAgentIdItem>;
|
|
8
|
+
export declare namespace AgentsCreateResponseGroupManagerAgentIdItem {
|
|
9
|
+
type Raw = string | (string | null | undefined);
|
|
10
|
+
}
|