Skip to content

Commit 469e502

Browse files
author
PureCloud Jenkins
committed
158.0.0
1 parent 676acd2 commit 469e502

262 files changed

Lines changed: 15680 additions & 2802 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

APIData.json

Lines changed: 869 additions & 659 deletions
Large diffs are not rendered by default.

build/.openapi-generator/FILES

Lines changed: 92 additions & 1 deletion
Large diffs are not rendered by default.

build/docs/releaseNotes.md

Lines changed: 282 additions & 541 deletions
Large diffs are not rendered by default.

build/gc/cmd/analytics/analyticsroot.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ import (
2626
"github.com/mypurecloud/platform-client-sdk-cli/build/gc/cmd/analytics_dataretention"
2727
"github.com/mypurecloud/platform-client-sdk-cli/build/gc/cmd/analytics_reporting"
2828
"github.com/mypurecloud/platform-client-sdk-cli/build/gc/cmd/analytics_casemanagement"
29+
"github.com/mypurecloud/platform-client-sdk-cli/build/gc/cmd/analytics_copilots"
2930
"github.com/mypurecloud/platform-client-sdk-cli/build/gc/cmd/analytics_dataextraction"
3031
)
3132

@@ -54,7 +55,8 @@ func init() {
5455
analyticsCmd.AddCommand(analytics_dataretention.Cmdanalytics_dataretention())
5556
analyticsCmd.AddCommand(analytics_reporting.Cmdanalytics_reporting())
5657
analyticsCmd.AddCommand(analytics_casemanagement.Cmdanalytics_casemanagement())
58+
analyticsCmd.AddCommand(analytics_copilots.Cmdanalytics_copilots())
5759
analyticsCmd.AddCommand(analytics_dataextraction.Cmdanalytics_dataextraction())
58-
analyticsCmd.Short = utils.GenerateCustomDescription(analyticsCmd.Short, analytics_actions.Description, analytics_agentcopilots.Description, analytics_agents.Description, analytics_bots.Description, analytics_conversations.Description, analytics_evaluations.Description, analytics_flowexecutions.Description, analytics_flows.Description, analytics_journeys.Description, analytics_knowledge.Description, analytics_queues.Description, analytics_ratelimits.Description, analytics_resolutions.Description, analytics_routing.Description, analytics_summaries.Description, analytics_surveys.Description, analytics_taskmanagement.Description, analytics_teams.Description, analytics_transcripts.Description, analytics_users.Description, analytics_botflows.Description, analytics_dataretention.Description, analytics_reporting.Description, analytics_casemanagement.Description, analytics_dataextraction.Description, )
60+
analyticsCmd.Short = utils.GenerateCustomDescription(analyticsCmd.Short, analytics_actions.Description, analytics_agentcopilots.Description, analytics_agents.Description, analytics_bots.Description, analytics_conversations.Description, analytics_evaluations.Description, analytics_flowexecutions.Description, analytics_flows.Description, analytics_journeys.Description, analytics_knowledge.Description, analytics_queues.Description, analytics_ratelimits.Description, analytics_resolutions.Description, analytics_routing.Description, analytics_summaries.Description, analytics_surveys.Description, analytics_taskmanagement.Description, analytics_teams.Description, analytics_transcripts.Description, analytics_users.Description, analytics_botflows.Description, analytics_dataretention.Description, analytics_reporting.Description, analytics_casemanagement.Description, analytics_copilots.Description, analytics_dataextraction.Description, )
5961
analyticsCmd.Long = analyticsCmd.Short
6062
}
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
package analytics_copilots
2+
3+
import (
4+
"github.com/mypurecloud/platform-client-sdk-cli/build/gc/utils"
5+
"github.com/mypurecloud/platform-client-sdk-cli/build/gc/services"
6+
7+
"github.com/spf13/cobra"
8+
)
9+
10+
var (
11+
Description = utils.FormatUsageDescription("analytics_copilots", "SWAGGER_OVERRIDE_/api/v2/analytics/copilots")
12+
analytics_copilotsCmd = &cobra.Command{
13+
Use: utils.FormatUsageDescription("analytics_copilots"),
14+
Short: Description,
15+
Long: Description,
16+
}
17+
CommandService services.CommandService
18+
)
19+
20+
func init() {
21+
CommandService = services.NewCommandService(analytics_copilotsCmd)
22+
}
23+
24+
func Cmdanalytics_copilots() *cobra.Command {
25+
return analytics_copilotsCmd
26+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package analytics_copilots
2+
3+
import (
4+
"github.com/mypurecloud/platform-client-sdk-cli/build/gc/utils"
5+
"github.com/mypurecloud/platform-client-sdk-cli/build/gc/cmd/analytics_copilots_aggregates"
6+
)
7+
8+
func init() {
9+
analytics_copilotsCmd.AddCommand(analytics_copilots_aggregates.Cmdanalytics_copilots_aggregates())
10+
analytics_copilotsCmd.Short = utils.GenerateCustomDescription(analytics_copilotsCmd.Short, analytics_copilots_aggregates.Description, )
11+
analytics_copilotsCmd.Long = analytics_copilotsCmd.Short
12+
}
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
package analytics_copilots_aggregates
2+
3+
import (
4+
"github.com/mypurecloud/platform-client-sdk-cli/build/gc/utils"
5+
"github.com/mypurecloud/platform-client-sdk-cli/build/gc/services"
6+
7+
"github.com/spf13/cobra"
8+
)
9+
10+
var (
11+
Description = utils.FormatUsageDescription("analytics_copilots_aggregates", "SWAGGER_OVERRIDE_/api/v2/analytics/copilots/aggregates")
12+
analytics_copilots_aggregatesCmd = &cobra.Command{
13+
Use: utils.FormatUsageDescription("analytics_copilots_aggregates"),
14+
Short: Description,
15+
Long: Description,
16+
}
17+
CommandService services.CommandService
18+
)
19+
20+
func init() {
21+
CommandService = services.NewCommandService(analytics_copilots_aggregatesCmd)
22+
}
23+
24+
func Cmdanalytics_copilots_aggregates() *cobra.Command {
25+
return analytics_copilots_aggregatesCmd
26+
}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
package analytics_copilots_aggregates
2+
3+
import (
4+
"github.com/mypurecloud/platform-client-sdk-cli/build/gc/utils"
5+
"github.com/mypurecloud/platform-client-sdk-cli/build/gc/cmd/analytics_copilots_aggregates_query"
6+
"github.com/mypurecloud/platform-client-sdk-cli/build/gc/cmd/analytics_copilots_aggregates_jobs"
7+
)
8+
9+
func init() {
10+
analytics_copilots_aggregatesCmd.AddCommand(analytics_copilots_aggregates_query.Cmdanalytics_copilots_aggregates_query())
11+
analytics_copilots_aggregatesCmd.AddCommand(analytics_copilots_aggregates_jobs.Cmdanalytics_copilots_aggregates_jobs())
12+
analytics_copilots_aggregatesCmd.Short = utils.GenerateCustomDescription(analytics_copilots_aggregatesCmd.Short, analytics_copilots_aggregates_query.Description, analytics_copilots_aggregates_jobs.Description, )
13+
analytics_copilots_aggregatesCmd.Long = analytics_copilots_aggregatesCmd.Short
14+
}

0 commit comments

Comments
 (0)