@grepr/cli 1.6.7-6789611 → 1.6.8-12568de

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.
@@ -986,6 +986,26 @@ export interface paths {
986
986
  patch?: never;
987
987
  trace?: never;
988
988
  };
989
+ "/v1/integrations/otlp/{id}/token": {
990
+ parameters: {
991
+ query?: never;
992
+ header?: never;
993
+ path?: never;
994
+ cookie?: never;
995
+ };
996
+ /**
997
+ * Retrieve OTLP integration token in clear text
998
+ * @description Retrieves the plain-text authentication token for an OTLP integration.
999
+ */
1000
+ get: operations["getToken"];
1001
+ put?: never;
1002
+ post?: never;
1003
+ delete?: never;
1004
+ options?: never;
1005
+ head?: never;
1006
+ patch?: never;
1007
+ trace?: never;
1008
+ };
989
1009
  "/v1/integrations/pagerduty-mcp": {
990
1010
  parameters: {
991
1011
  query?: never;
@@ -2915,6 +2935,9 @@ export interface components {
2915
2935
  typeName?: string;
2916
2936
  };
2917
2937
  };
2938
+ ClearSecret: {
2939
+ value?: string;
2940
+ };
2918
2941
  CloudFormationSetupInfo: {
2919
2942
  /** @description The AWS account ID */
2920
2943
  awsAccountId: string;
@@ -9484,6 +9507,7 @@ export type SchemaBackfillJobAction = components["schemas"]["BackfillJobAction"]
9484
9507
  export type SchemaBillingPeriodsResponse = components["schemas"]["BillingPeriodsResponse"];
9485
9508
  export type SchemaBucketAccessResult = components["schemas"]["BucketAccessResult"];
9486
9509
  export type SchemaChunkedOutputEventRecordReadableData = components["schemas"]["ChunkedOutputEventRecordReadableData"];
9510
+ export type SchemaClearSecret = components["schemas"]["ClearSecret"];
9487
9511
  export type SchemaCloudFormationSetupInfo = components["schemas"]["CloudFormationSetupInfo"];
9488
9512
  export type SchemaCloudTrailLogsFileSource = components["schemas"]["CloudTrailLogsFileSource"];
9489
9513
  export type SchemaCohortOutputDecl = components["schemas"]["CohortOutputDecl"];
@@ -12582,6 +12606,42 @@ export interface operations {
12582
12606
  };
12583
12607
  };
12584
12608
  };
12609
+ getToken: {
12610
+ parameters: {
12611
+ query?: never;
12612
+ header?: never;
12613
+ path: {
12614
+ id: string;
12615
+ };
12616
+ cookie?: never;
12617
+ };
12618
+ requestBody?: never;
12619
+ responses: {
12620
+ /** @description Token retrieved successfully */
12621
+ 200: {
12622
+ headers: {
12623
+ [name: string]: unknown;
12624
+ };
12625
+ content: {
12626
+ "application/json": components["schemas"]["ClearSecret"];
12627
+ };
12628
+ };
12629
+ /** @description Unauthorized */
12630
+ 401: {
12631
+ headers: {
12632
+ [name: string]: unknown;
12633
+ };
12634
+ content?: never;
12635
+ };
12636
+ /** @description Integration not found. */
12637
+ 404: {
12638
+ headers: {
12639
+ [name: string]: unknown;
12640
+ };
12641
+ content?: never;
12642
+ };
12643
+ };
12644
+ };
12585
12645
  list_6: {
12586
12646
  parameters: {
12587
12647
  query?: never;