@nebius/js-sdk 0.1.29 → 0.1.30

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.
@@ -1273,7 +1273,6 @@ export interface OidcCredentialsProvider {
1273
1273
  [unknownFieldsSymbol]?: Uint8Array | undefined;
1274
1274
  [customJson]?: () => unknown;
1275
1275
  /**
1276
- * *
1277
1276
  * It's not required provider OIDC issuer should be real OIDC provider, but should expose OIDC configuration
1278
1277
  * with "/.well-known/openid-configuration" endpoint. Configuration should contains the "jwks_uri" endpoint
1279
1278
  * where the JSON Web Key Set (JWKS) can be found; this set contains public keys used to verify
@@ -1287,7 +1286,6 @@ export interface OidcCredentialsProvider {
1287
1286
  */
1288
1287
  issuerUrl: string;
1289
1288
  /**
1290
- * *
1291
1289
  * Literally json, which represents JWKS with public keys for JWT verification.
1292
1290
  * It worth mentioned that in a case of adding/rotating keys the jwk_set_json also should be updated here.
1293
1291
  * Besides, the "issuer" parameter should be set even if the JWKS will be resolved locally.
@@ -1753,7 +1751,6 @@ export interface FederationService {
1753
1751
  update(request: UpdateFederationRequest, metadata: Metadata): SDKRequestClass<UpdateFederationRequest, OperationWrapper<GetOperationRequest>>;
1754
1752
  update(request: UpdateFederationRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<UpdateFederationRequest, OperationWrapper<GetOperationRequest>>;
1755
1753
  /**
1756
- * *
1757
1754
  * Activates an existing federation.
1758
1755
  * By default, a newly created federation is in the active state.
1759
1756
  *
@@ -1762,7 +1759,6 @@ export interface FederationService {
1762
1759
  activate(request: ActivateFederationRequest, metadata: Metadata): SDKRequestClass<ActivateFederationRequest, OperationWrapper<GetOperationRequest>>;
1763
1760
  activate(request: ActivateFederationRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<ActivateFederationRequest, OperationWrapper<GetOperationRequest>>;
1764
1761
  /**
1765
- * *
1766
1762
  * Deactivates an existing federation.
1767
1763
  * When a federation is inactive, all users under it will be unable to authenticate.
1768
1764
  *