@vibexp/api-client 0.14.0 → 0.15.0

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.
@@ -3605,9 +3605,9 @@ export type ProjectResourceCreationMetricsData = {
3605
3605
  };
3606
3606
  export type CredentialRequest = {
3607
3607
  /**
3608
- * Credential type
3608
+ * Credential type. Must match a supported security scheme the backend can apply: `apiKey` (header/query/cookie) or `http` (bearer/basic). `oauth2`, `openIdConnect` and `mutualTLS` are rejected at save time.
3609
3609
  */
3610
- type: 'apiKey' | 'oauth2';
3610
+ type: 'apiKey' | 'http';
3611
3611
  /**
3612
3612
  * The plain text credential value (will be encrypted on server)
3613
3613
  */
package/dist/schema.d.ts CHANGED
@@ -8032,11 +8032,11 @@ export interface components {
8032
8032
  };
8033
8033
  CredentialRequest: {
8034
8034
  /**
8035
- * @description Credential type
8035
+ * @description Credential type. Must match a supported security scheme the backend can apply: `apiKey` (header/query/cookie) or `http` (bearer/basic). `oauth2`, `openIdConnect` and `mutualTLS` are rejected at save time.
8036
8036
  * @example apiKey
8037
8037
  * @enum {string}
8038
8038
  */
8039
- type: "apiKey" | "oauth2";
8039
+ type: "apiKey" | "http";
8040
8040
  /**
8041
8041
  * Format: password
8042
8042
  * @description The plain text credential value (will be encrypted on server)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibexp/api-client",
3
- "version": "0.14.0",
3
+ "version": "0.15.0",
4
4
  "description": "Typed VibeXP API client generated from the OpenAPI spec (openapi-fetch main entrypoint, axios SDK at ./axios)",
5
5
  "license": "MIT",
6
6
  "repository": {