@openmeter/client 1.0.0-beta-9a09c0a37226 → 1.0.0-beta-ea9f54d35bf3
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/dist/lib/config.d.ts +2 -2
- package/dist/lib/version.d.ts +1 -1
- package/dist/lib/version.js +1 -1
- package/dist/models/schemas.d.ts +1745 -1745
- package/dist/models/types.d.ts +16 -12
- package/package.json +3 -3
package/dist/lib/config.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type Options } from 'ky';
|
|
2
|
-
export declare const ServerList: readonly [
|
|
3
|
-
export declare const Regions: readonly [
|
|
2
|
+
export declare const ServerList: readonly ['https://{region}.api.konghq.com/v3', 'http://localhost:{port}/api/v3', 'https://openmeter.cloud/api/v3'];
|
|
3
|
+
export declare const Regions: readonly ['in', 'me', 'au', 'eu', 'us'];
|
|
4
4
|
export type Region = (typeof Regions)[number];
|
|
5
5
|
export type ServerVariables = {
|
|
6
6
|
region?: Region;
|
package/dist/lib/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "1.0.0-beta-
|
|
1
|
+
export declare const SDK_VERSION = "1.0.0-beta-ea9f54d35bf3";
|
package/dist/lib/version.js
CHANGED
|
@@ -2,4 +2,4 @@
|
|
|
2
2
|
// The committed value is a dev placeholder. The publish flow
|
|
3
3
|
// (`make -C api/spec publish-aip-sdk`) stamps the real release version here
|
|
4
4
|
// before `pnpm publish`, after `pnpm version` updates package.json.
|
|
5
|
-
export const SDK_VERSION = '1.0.0-beta-
|
|
5
|
+
export const SDK_VERSION = '1.0.0-beta-ea9f54d35bf3';
|