File tree 4 files changed +4
-3
lines changed
4 files changed +4
-3
lines changed Original file line number Diff line number Diff line change
1
+ - Switched Data Connect from ` v1beta ` API to ` v1 ` API.
1
2
- Added code generation of React hooks for Data Connect
2
3
- Genkit init improvements around gcloud login and flow input values.
3
4
- Removed dependencies on some packages and methods that caused deprecation warnings on Node 22.
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import * as nock from "nock";
4
4
import * as client from "./client" ;
5
5
import { dataconnectOrigin } from "../api" ;
6
6
7
- const API_VERSION = "v1beta " ;
7
+ const API_VERSION = "v1 " ;
8
8
describe ( "DataConnect control plane client" , ( ) => {
9
9
afterEach ( ( ) => {
10
10
nock . cleanAll ( ) ;
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import { Client } from "../apiv2";
3
3
import * as operationPoller from "../operation-poller" ;
4
4
import * as types from "./types" ;
5
5
6
- const DATACONNECT_API_VERSION = "v1beta " ;
6
+ const DATACONNECT_API_VERSION = "v1 " ;
7
7
const PAGE_SIZE_MAX = 100 ;
8
8
9
9
const dataconnectClient = ( ) =>
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { dataconnectOrigin } from "../api";
2
2
import { Client , ClientResponse } from "../apiv2" ;
3
3
import * as types from "./types" ;
4
4
5
- export const DATACONNECT_API_VERSION = "v1beta " ;
5
+ export const DATACONNECT_API_VERSION = "v1 " ;
6
6
7
7
export function dataconnectDataplaneClient ( ) : Client {
8
8
return new Client ( {
You can’t perform that action at this time.
0 commit comments