| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 6c24abf commit 11da7e9
801 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -16,7 +16,7 @@ generation: | |||
| 16 | 16 | oAuth2ClientCredentialsEnabled: true | |
| 17 | 17 | oAuth2PasswordEnabled: true | |
| 18 | 18 | java: | |
| 19 | - version: 0.1.0-beta.2 | ||
| 19 | + version: 0.2.0 | ||
| 20 | 20 | additionalDependencies: [] | |
| 21 | 21 | additionalPlugins: [] | |
| 22 | 22 | artifactID: glean-api-client | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -8620,6 +8620,9 @@ components: | |||
| 8620 | 8620 | hasTranscript: | |
| 8621 | 8621 | type: boolean | |
| 8622 | 8622 | description: The event has a transcript associated with it enabling features like summarization | |
| 8623 | + transcriptUrl: | ||
| 8624 | + type: string | ||
| 8625 | + description: A link to the transcript of the event | ||
| 8623 | 8626 | classifications: | |
| 8624 | 8627 | type: array | |
| 8625 | 8628 | items: | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2,11 +2,11 @@ speakeasyVersion: 1.542.3 | |||
| 2 | 2 | sources: | |
| 3 | 3 | Glean API: | |
| 4 | 4 | sourceNamespace: glean-api-specs | |
| 5 | - sourceRevisionDigest: sha256:899a2c3976fdfa81af3713ce06fcb2283a89faa893ef608498f2365840127272 | ||
| 6 | - sourceBlobDigest: sha256:313446623e4d6be9ffcf70008ec73eb557e9df1e658aa69a749ef1962fe25e60 | ||
| 5 | + sourceRevisionDigest: sha256:fadc7213e38c3b2e11ec0a197f00752cd51f95a42e6f50b697acff848c245f49 | ||
| 6 | + sourceBlobDigest: sha256:c149481e92330fc2ccfe73b55bac335ff2599266b185b84d4c0fc9a6156e9f49 | ||
| 7 | 7 | tags: | |
| 8 | 8 | - latest | |
| 9 | - - speakeasy-sdk-regen-1746544479 | ||
| 9 | + - speakeasy-sdk-regen-1746549666 | ||
| 10 | 10 | Glean-OAS: | |
| 11 | 11 | sourceNamespace: glean-oas | |
| 12 | 12 | sourceRevisionDigest: sha256:8841834dd58ddd4e2dcf98fc90fbd06fbf3626a29df941503cce55b9548a5317 | |
@@ -18,10 +18,10 @@ targets: | |||
| 18 | 18 | glean: | |
| 19 | 19 | source: Glean API | |
| 20 | 20 | sourceNamespace: glean-api-specs | |
| 21 | - sourceRevisionDigest: sha256:899a2c3976fdfa81af3713ce06fcb2283a89faa893ef608498f2365840127272 | ||
| 22 | - sourceBlobDigest: sha256:313446623e4d6be9ffcf70008ec73eb557e9df1e658aa69a749ef1962fe25e60 | ||
| 21 | + sourceRevisionDigest: sha256:fadc7213e38c3b2e11ec0a197f00752cd51f95a42e6f50b697acff848c245f49 | ||
| 22 | + sourceBlobDigest: sha256:c149481e92330fc2ccfe73b55bac335ff2599266b185b84d4c0fc9a6156e9f49 | ||
| 23 | 23 | codeSamplesNamespace: glean-api-specs-java-code-samples | |
| 24 | - codeSamplesRevisionDigest: sha256:9f4bff2c2b23dfdcb6c73c91d0b6ec8ac4cdecb2c65044a72185bafeda04cc68 | ||
| 24 | + codeSamplesRevisionDigest: sha256:96711ddce5754d79c909cf44d45f549fdfa2aada2db8037db3a0b462de172cd7 | ||
| 25 | 25 | workflow: | |
| 26 | 26 | workflowVersion: 1.0.0 | |
| 27 | 27 | speakeasyVersion: latest | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -60,15 +60,15 @@ The samples below show how a published SDK artifact is used: | |||
| 60 | 60 | ||
| 61 | 61 | Gradle: | |
| 62 | 62 | ```groovy | |
| 63 | - implementation 'com.glean:api-client:0.1.0-beta.2' | ||
| 63 | + implementation 'com.glean.api-client:glean-api-client:0.2.0' | ||
| 64 | 64 | ``` | |
| 65 | 65 | ||
| 66 | 66 | Maven: | |
| 67 | 67 | ```xml | |
| 68 | 68 | <dependency> | |
| 69 | - <groupId>com.glean</groupId> | ||
| 70 | - <artifactId>api-client</artifactId> | ||
| 71 | - <version>0.1.0-beta.2</version> | ||
| 69 | + <groupId>com.glean.api-client</groupId> | ||
| 70 | + <artifactId>glean-api-client</artifactId> | ||
| 71 | + <version>0.2.0</version> | ||
| 72 | 72 | </dependency> | |
| 73 | 73 | ``` | |
| 74 | 74 | ||
@@ -118,9 +118,9 @@ Another option is to set the System property `-Djdk.httpclient.HttpClient.log=al | |||
| 118 | 118 | ```java | |
| 119 | 119 | package hello.world; | |
| 120 | 120 | ||
| 121 | - import com.glean.api_client.Glean; | ||
| 122 | - import com.glean.api_client.models.components.*; | ||
| 123 | - import com.glean.api_client.models.operations.ChatResponse; | ||
| 121 | + import com.glean.api_client.glean_api_client.Glean; | ||
| 122 | + import com.glean.api_client.glean_api_client.models.components.*; | ||
| 123 | + import com.glean.api_client.glean_api_client.models.operations.ChatResponse; | ||
| 124 | 124 | import java.lang.Exception; | |
| 125 | 125 | import java.util.List; | |
| 126 | 126 | ||
@@ -156,9 +156,9 @@ public class Application { | |||
| 156 | 156 | ```java | |
| 157 | 157 | package hello.world; | |
| 158 | 158 | ||
| 159 | - import com.glean.api_client.Glean; | ||
| 160 | - import com.glean.api_client.models.components.*; | ||
| 161 | - import com.glean.api_client.models.operations.ChatStreamResponse; | ||
| 159 | + import com.glean.api_client.glean_api_client.Glean; | ||
| 160 | + import com.glean.api_client.glean_api_client.models.components.*; | ||
| 161 | + import com.glean.api_client.glean_api_client.models.operations.ChatStreamResponse; | ||
| 162 | 162 | import java.lang.Exception; | |
| 163 | 163 | import java.util.List; | |
| 164 | 164 | ||
@@ -205,9 +205,9 @@ To authenticate with the API the `apiToken` parameter must be set when initializ | |||
| 205 | 205 | ```java | |
| 206 | 206 | package hello.world; | |
| 207 | 207 | ||
| 208 | - import com.glean.api_client.Glean; | ||
| 209 | - import com.glean.api_client.models.components.*; | ||
| 210 | - import com.glean.api_client.models.operations.ActivityResponse; | ||
| 208 | + import com.glean.api_client.glean_api_client.Glean; | ||
| 209 | + import com.glean.api_client.glean_api_client.models.components.*; | ||
| 210 | + import com.glean.api_client.glean_api_client.models.operations.ActivityResponse; | ||
| 211 | 211 | import java.lang.Exception; | |
| 212 | 212 | import java.time.OffsetDateTime; | |
| 213 | 213 | import java.util.List; | |
@@ -483,10 +483,10 @@ By default, an API error will throw a `models/errors/APIException` exception. Wh | |||
| 483 | 483 | ```java | |
| 484 | 484 | package hello.world; | |
| 485 | 485 | ||
| 486 | - import com.glean.api_client.Glean; | ||
| 487 | - import com.glean.api_client.models.components.*; | ||
| 488 | - import com.glean.api_client.models.errors.CollectionError; | ||
| 489 | - import com.glean.api_client.models.operations.CreatecollectionResponse; | ||
| 486 | + import com.glean.api_client.glean_api_client.Glean; | ||
| 487 | + import com.glean.api_client.glean_api_client.models.components.*; | ||
| 488 | + import com.glean.api_client.glean_api_client.models.errors.CollectionError; | ||
| 489 | + import com.glean.api_client.glean_api_client.models.operations.CreatecollectionResponse; | ||
| 490 | 490 | import java.lang.Exception; | |
| 491 | 491 | import java.time.LocalDate; | |
| 492 | 492 | import java.util.List; | |
@@ -599,9 +599,9 @@ The default server `https://{domain}-be.glean.com` contains variables and is set | |||
| 599 | 599 | ```java | |
| 600 | 600 | package hello.world; | |
| 601 | 601 | ||
| 602 | - import com.glean.api_client.Glean; | ||
| 603 | - import com.glean.api_client.models.components.*; | ||
| 604 | - import com.glean.api_client.models.operations.ActivityResponse; | ||
| 602 | + import com.glean.api_client.glean_api_client.Glean; | ||
| 603 | + import com.glean.api_client.glean_api_client.models.components.*; | ||
| 604 | + import com.glean.api_client.glean_api_client.models.operations.ActivityResponse; | ||
| 605 | 605 | import java.lang.Exception; | |
| 606 | 606 | import java.time.OffsetDateTime; | |
| 607 | 607 | import java.util.List; | |
@@ -656,9 +656,9 @@ The default server can be overridden globally using the `.serverURL(String serve | |||
| 656 | 656 | ```java | |
| 657 | 657 | package hello.world; | |
| 658 | 658 | ||
| 659 | - import com.glean.api_client.Glean; | ||
| 660 | - import com.glean.api_client.models.components.*; | ||
| 661 | - import com.glean.api_client.models.operations.ActivityResponse; | ||
| 659 | + import com.glean.api_client.glean_api_client.Glean; | ||
| 660 | + import com.glean.api_client.glean_api_client.models.components.*; | ||
| 661 | + import com.glean.api_client.glean_api_client.models.operations.ActivityResponse; | ||
| 662 | 662 | import java.lang.Exception; | |
| 663 | 663 | import java.time.OffsetDateTime; | |
| 664 | 664 | import java.util.List; | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -18,4 +18,14 @@ Based on: | |||
| 18 | 18 | ### Generated | |
| 19 | 19 | - [java v0.1.0-beta.2] . | |
| 20 | 20 | ### Releases | |
| 21 | - - [Maven Central v0.1.0-beta.2] https://central.sonatype.com/artifact/com.glean/api-client/0.1.0-beta.2 - . | ||
| 21 | + - [Maven Central v0.1.0-beta.2] https://central.sonatype.com/artifact/com.glean/api-client/0.1.0-beta.2 - . | ||
| 22 | + | ||
| 23 | + ## 2025-05-06 16:40:49 | ||
| 24 | + ### Changes | ||
| 25 | + Based on: | ||
| 26 | + - OpenAPI Doc | ||
| 27 | + - Speakeasy CLI 1.542.3 (2.597.9) https://github.com/speakeasy-api/speakeasy | ||
| 28 | + ### Generated | ||
| 29 | + - [java v0.2.0] . | ||
| 30 | + ### Releases | ||
| 31 | + - [Maven Central v0.2.0] https://central.sonatype.com/artifact/com.glean.api-client/glean-api-client/0.2.0 - . | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2,9 +2,9 @@ | |||
| 2 | 2 | ```java | |
| 3 | 3 | package hello.world; | |
| 4 | 4 | ||
| 5 | - import com.glean.api_client.Glean; | ||
| 6 | - import com.glean.api_client.models.components.*; | ||
| 7 | - import com.glean.api_client.models.operations.ChatResponse; | ||
| 5 | + import com.glean.api_client.glean_api_client.Glean; | ||
| 6 | + import com.glean.api_client.glean_api_client.models.components.*; | ||
| 7 | + import com.glean.api_client.glean_api_client.models.operations.ChatResponse; | ||
| 8 | 8 | import java.lang.Exception; | |
| 9 | 9 | import java.util.List; | |
| 10 | 10 | ||
@@ -38,9 +38,9 @@ public class Application { | |||
| 38 | 38 | ```java | |
| 39 | 39 | package hello.world; | |
| 40 | 40 | ||
| 41 | - import com.glean.api_client.Glean; | ||
| 42 | - import com.glean.api_client.models.components.*; | ||
| 43 | - import com.glean.api_client.models.operations.ChatStreamResponse; | ||
| 41 | + import com.glean.api_client.glean_api_client.Glean; | ||
| 42 | + import com.glean.api_client.glean_api_client.models.components.*; | ||
| 43 | + import com.glean.api_client.glean_api_client.models.operations.ChatStreamResponse; | ||
| 44 | 44 | import java.lang.Exception; | |
| 45 | 45 | import java.util.List; | |
| 46 | 46 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -46,7 +46,7 @@ jar { | |||
| 46 | 46 | dependsOn(":generatePomFileForMavenPublication") | |
| 47 | 47 | archiveBaseName = "${artifactId}" | |
| 48 | 48 | ||
| 49 | - into("META-INF/maven/com.glean/api-client") { | ||
| 49 | + into("META-INF/maven/com.glean.api-client/glean-api-client") { | ||
| 50 | 50 | from("$buildDir/pom.xml") | |
| 51 | 51 | } | |
| 52 | 52 | } | |
@@ -101,9 +101,9 @@ publishing { | |||
| 101 | 101 | maven(MavenPublication) { | |
| 102 | 102 | // note that properties can't yet be used below! | |
| 103 | 103 | // https://github.com/gradle/gradle/issues/18619 | |
| 104 | - groupId = "com.glean" | ||
| 105 | - artifactId = "api-client" | ||
| 106 | - version = "0.1.0-beta.2" | ||
| 104 | + groupId = "com.glean.api-client" | ||
| 105 | + artifactId = "glean-api-client" | ||
| 106 | + version = "0.2.0" | ||
| 107 | 107 | ||
| 108 | 108 | from components.java | |
| 109 | 109 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -17,5 +17,6 @@ A generic, light-weight calendar event. | |||
| 17 | 17 | | `description` | *Optional\<String>* | :heavy_minus_sign: | The HTML description of the event. | | |
| 18 | 18 | | `datasource` | *Optional\<String>* | :heavy_minus_sign: | The app or other repository type from which the event was extracted | | |
| 19 | 19 | | `hasTranscript` | *Optional\<Boolean>* | :heavy_minus_sign: | The event has a transcript associated with it enabling features like summarization | | |
| 20 | + | `transcriptUrl` | *Optional\<String>* | :heavy_minus_sign: | A link to the transcript of the event | | ||
| 20 | 21 | | `classifications` | List\<[EventClassification](../../models/components/EventClassification.md)> | :heavy_minus_sign: | N/A | | |
| 21 | 22 | | `generatedAttachments` | List\<[GeneratedAttachment](../../models/components/GeneratedAttachment.md)> | :heavy_minus_sign: | N/A | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -17,9 +17,9 @@ Report user activity that occurs on indexed documents such as viewing or editing | |||
| 17 | 17 | ```java | |
| 18 | 18 | package hello.world; | |
| 19 | 19 | ||
| 20 | - import com.glean.api_client.Glean; | ||
| 21 | - import com.glean.api_client.models.components.*; | ||
| 22 | - import com.glean.api_client.models.operations.ActivityResponse; | ||
| 20 | + import com.glean.api_client.glean_api_client.Glean; | ||
| 21 | + import com.glean.api_client.glean_api_client.models.components.*; | ||
| 22 | + import com.glean.api_client.glean_api_client.models.operations.ActivityResponse; | ||
| 23 | 23 | import java.lang.Exception; | |
| 24 | 24 | import java.time.OffsetDateTime; | |
| 25 | 25 | import java.util.List; | |
@@ -92,10 +92,10 @@ Report events that happen to results within a Glean client UI, such as search re | |||
| 92 | 92 | ```java | |
| 93 | 93 | package hello.world; | |
| 94 | 94 | ||
| 95 | - import com.glean.api_client.Glean; | ||
| 96 | - import com.glean.api_client.models.components.Event; | ||
| 97 | - import com.glean.api_client.models.components.Feedback; | ||
| 98 | - import com.glean.api_client.models.operations.FeedbackResponse; | ||
| 95 | + import com.glean.api_client.glean_api_client.Glean; | ||
| 96 | + import com.glean.api_client.glean_api_client.models.components.Event; | ||
| 97 | + import com.glean.api_client.glean_api_client.models.components.Feedback; | ||
| 98 | + import com.glean.api_client.glean_api_client.models.operations.FeedbackResponse; | ||
| 99 | 99 | import java.lang.Exception; | |
| 100 | 100 | import java.util.List; | |
| 101 | 101 | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments