waldur-js-client 7.9.7-dev.5 → 7.9.7-dev.6
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/types.gen.d.ts +19 -4
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -5046,6 +5046,10 @@ export type IdentityProvider = {
|
|
|
5046
5046
|
* Space-separated list of extra fields to persist.
|
|
5047
5047
|
*/
|
|
5048
5048
|
extra_fields?: string | null;
|
|
5049
|
+
/**
|
|
5050
|
+
* List of allowed redirect URLs for OAuth authentication. URLs must be exact matches (origin only: scheme + domain + port). HTTPS required except for localhost. No wildcards, paths, query params, or fragments. Example: ["https://portal1.example.com", "https://portal2.example.com:8443"]. If empty, falls back to HOMEPORT_URL setting.
|
|
5051
|
+
*/
|
|
5052
|
+
allowed_redirects?: unknown;
|
|
5049
5053
|
};
|
|
5050
5054
|
export type IdentityProviderRequest = {
|
|
5051
5055
|
provider: string;
|
|
@@ -5094,6 +5098,10 @@ export type IdentityProviderRequest = {
|
|
|
5094
5098
|
* Space-separated list of extra fields to persist.
|
|
5095
5099
|
*/
|
|
5096
5100
|
extra_fields?: string | null;
|
|
5101
|
+
/**
|
|
5102
|
+
* List of allowed redirect URLs for OAuth authentication. URLs must be exact matches (origin only: scheme + domain + port). HTTPS required except for localhost. No wildcards, paths, query params, or fragments. Example: ["https://portal1.example.com", "https://portal2.example.com:8443"]. If empty, falls back to HOMEPORT_URL setting.
|
|
5103
|
+
*/
|
|
5104
|
+
allowed_redirects?: unknown;
|
|
5097
5105
|
};
|
|
5098
5106
|
export type ImageCreateRequest = {
|
|
5099
5107
|
name: string;
|
|
@@ -11523,6 +11531,10 @@ export type PatchedIdentityProviderRequest = {
|
|
|
11523
11531
|
* Space-separated list of extra fields to persist.
|
|
11524
11532
|
*/
|
|
11525
11533
|
extra_fields?: string | null;
|
|
11534
|
+
/**
|
|
11535
|
+
* List of allowed redirect URLs for OAuth authentication. URLs must be exact matches (origin only: scheme + domain + port). HTTPS required except for localhost. No wildcards, paths, query params, or fragments. Example: ["https://portal1.example.com", "https://portal2.example.com:8443"]. If empty, falls back to HOMEPORT_URL setting.
|
|
11536
|
+
*/
|
|
11537
|
+
allowed_redirects?: unknown;
|
|
11526
11538
|
};
|
|
11527
11539
|
export type PatchedInvitationUpdateRequest = {
|
|
11528
11540
|
/**
|
|
@@ -18136,16 +18148,19 @@ export type UserAction = {
|
|
|
18136
18148
|
* UI-Router state name for navigation
|
|
18137
18149
|
*/
|
|
18138
18150
|
route_name?: string;
|
|
18139
|
-
|
|
18140
|
-
|
|
18141
|
-
|
|
18142
|
-
route_params?: string;
|
|
18151
|
+
readonly route_params: {
|
|
18152
|
+
[key: string]: unknown;
|
|
18153
|
+
};
|
|
18143
18154
|
project_name?: string;
|
|
18144
18155
|
project_uuid?: string | null;
|
|
18145
18156
|
organization_name?: string;
|
|
18146
18157
|
organization_uuid?: string | null;
|
|
18147
18158
|
offering_name?: string;
|
|
18159
|
+
offering_uuid?: string | null;
|
|
18148
18160
|
offering_type?: string;
|
|
18161
|
+
resource_name?: string;
|
|
18162
|
+
resource_uuid?: string | null;
|
|
18163
|
+
order_type?: string;
|
|
18149
18164
|
};
|
|
18150
18165
|
export type UserActionExecution = {
|
|
18151
18166
|
readonly id: number;
|