waldur-js-client 1.0.4-dev.101 → 1.0.4-dev.102

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.
@@ -2504,6 +2504,22 @@ export type IdentityProvider = {
2504
2504
  * Space-separated list of scopes to request during authentication.
2505
2505
  */
2506
2506
  scope?: string | null;
2507
+ /**
2508
+ * The field in Waldur User model to be used for looking up the user
2509
+ */
2510
+ user_field?: string;
2511
+ /**
2512
+ * The OIDC claim from the userinfo endpoint to be used as the value for the lookup field.
2513
+ */
2514
+ user_claim?: string;
2515
+ /**
2516
+ * A JSON object mapping Waldur User model fields to OIDC claims. Example: {"first_name": "given_name", "last_name": "family_name", "email": "email"}
2517
+ */
2518
+ attribute_mapping?: unknown;
2519
+ /**
2520
+ * Space-separated list of extra fields to persist.
2521
+ */
2522
+ extra_fields?: string | null;
2507
2523
  };
2508
2524
  export type IdentityProviderRequest = {
2509
2525
  provider: string;
@@ -2532,6 +2548,22 @@ export type IdentityProviderRequest = {
2532
2548
  * Space-separated list of scopes to request during authentication.
2533
2549
  */
2534
2550
  scope?: string | null;
2551
+ /**
2552
+ * The field in Waldur User model to be used for looking up the user
2553
+ */
2554
+ user_field?: string;
2555
+ /**
2556
+ * The OIDC claim from the userinfo endpoint to be used as the value for the lookup field.
2557
+ */
2558
+ user_claim?: string;
2559
+ /**
2560
+ * A JSON object mapping Waldur User model fields to OIDC claims. Example: {"first_name": "given_name", "last_name": "family_name", "email": "email"}
2561
+ */
2562
+ attribute_mapping?: unknown;
2563
+ /**
2564
+ * Space-separated list of extra fields to persist.
2565
+ */
2566
+ extra_fields?: string | null;
2535
2567
  };
2536
2568
  export type ImageCreateRequest = {
2537
2569
  name: string;
@@ -6121,6 +6153,22 @@ export type PatchedIdentityProviderRequest = {
6121
6153
  * Space-separated list of scopes to request during authentication.
6122
6154
  */
6123
6155
  scope?: string | null;
6156
+ /**
6157
+ * The field in Waldur User model to be used for looking up the user
6158
+ */
6159
+ user_field?: string;
6160
+ /**
6161
+ * The OIDC claim from the userinfo endpoint to be used as the value for the lookup field.
6162
+ */
6163
+ user_claim?: string;
6164
+ /**
6165
+ * A JSON object mapping Waldur User model fields to OIDC claims. Example: {"first_name": "given_name", "last_name": "family_name", "email": "email"}
6166
+ */
6167
+ attribute_mapping?: unknown;
6168
+ /**
6169
+ * Space-separated list of extra fields to persist.
6170
+ */
6171
+ extra_fields?: string | null;
6124
6172
  };
6125
6173
  export type PatchedInvoiceItemUpdateRequest = {
6126
6174
  article_code?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "1.0.4-dev.101",
3
+ "version": "1.0.4-dev.102",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",