@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.
- package/dist/axios/types.gen.d.ts +2 -2
- package/dist/schema.d.ts +2 -2
- package/package.json +1 -1
|
@@ -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' | '
|
|
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" | "
|
|
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