waldur-js-client 8.0.6-dev.13 → 8.0.6-dev.14

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.
Files changed (2) hide show
  1. package/dist/types.gen.d.ts +47 -14
  2. package/package.json +1 -1
@@ -4214,6 +4214,7 @@ export type ConstanceSettings = {
4214
4214
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
4215
4215
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
4216
4216
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
4217
+ OIDC_DEFAULT_LOGOUT_URL?: string;
4217
4218
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
4218
4219
  WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
4219
4220
  REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
@@ -4458,6 +4459,7 @@ export type ConstanceSettingsRequest = {
4458
4459
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
4459
4460
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
4460
4461
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
4462
+ OIDC_DEFAULT_LOGOUT_URL?: string;
4461
4463
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
4462
4464
  WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
4463
4465
  REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
@@ -6932,6 +6934,10 @@ export type GoogleCredentials = {
6932
6934
  image?: string | null;
6933
6935
  readonly organization_groups?: Array<OrganizationGroup>;
6934
6936
  readonly offering_count?: number;
6937
+ /**
6938
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
6939
+ */
6940
+ allowed_domains?: unknown;
6935
6941
  readonly calendar_token?: string;
6936
6942
  readonly calendar_refresh_token?: string;
6937
6943
  readonly google_auth_url?: string;
@@ -10135,6 +10141,14 @@ export type NestedOfferingFileRequest = {
10135
10141
  name: string;
10136
10142
  file: Blob | File;
10137
10143
  };
10144
+ export type NestedParentSoftware = {
10145
+ readonly uuid: string;
10146
+ name: string;
10147
+ readonly url: string;
10148
+ };
10149
+ export type NestedParentSoftwareRequest = {
10150
+ name: string;
10151
+ };
10138
10152
  export type NestedPartition = {
10139
10153
  readonly uuid?: string;
10140
10154
  /**
@@ -16514,6 +16528,10 @@ export type PatchedServiceProviderRequest = {
16514
16528
  description?: string;
16515
16529
  enable_notifications?: boolean;
16516
16530
  image?: (Blob | File) | null;
16531
+ /**
16532
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
16533
+ */
16534
+ allowed_domains?: unknown;
16517
16535
  };
16518
16536
  export type PatchedSlurmAllocationRequest = {
16519
16537
  name?: string;
@@ -16615,10 +16633,6 @@ export type PatchedSoftwarePackageRequest = {
16615
16633
  * Whether this package is an extension of another package
16616
16634
  */
16617
16635
  is_extension?: boolean;
16618
- /**
16619
- * Parent package for extensions (e.g., Python package within Python)
16620
- */
16621
- parent_software?: string | null;
16622
16636
  };
16623
16637
  export type PatchedTagRequest = {
16624
16638
  name?: string;
@@ -22156,6 +22170,10 @@ export type ServiceProvider = {
22156
22170
  image?: string | null;
22157
22171
  readonly organization_groups?: Array<OrganizationGroup>;
22158
22172
  readonly offering_count?: number;
22173
+ /**
22174
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
22175
+ */
22176
+ allowed_domains?: unknown;
22159
22177
  };
22160
22178
  export type ServiceProviderAccess = {
22161
22179
  offering_uuid: string;
@@ -22208,6 +22226,10 @@ export type ServiceProviderRequest = {
22208
22226
  enable_notifications?: boolean;
22209
22227
  customer: string;
22210
22228
  image?: (Blob | File) | null;
22229
+ /**
22230
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
22231
+ */
22232
+ allowed_domains?: unknown;
22211
22233
  };
22212
22234
  export type ServiceProviderRevenues = {
22213
22235
  /**
@@ -22925,10 +22947,7 @@ export type SoftwarePackage = {
22925
22947
  * Whether this package is an extension of another package
22926
22948
  */
22927
22949
  is_extension?: boolean;
22928
- /**
22929
- * Parent package for extensions (e.g., Python package within Python)
22930
- */
22931
- parent_software?: string | null;
22950
+ readonly parent_softwares: Array<NestedParentSoftware>;
22932
22951
  readonly catalog_name: string;
22933
22952
  readonly catalog_version: string;
22934
22953
  readonly catalog_type: string;
@@ -22958,10 +22977,6 @@ export type SoftwarePackageRequest = {
22958
22977
  * Whether this package is an extension of another package
22959
22978
  */
22960
22979
  is_extension?: boolean;
22961
- /**
22962
- * Parent package for extensions (e.g., Python package within Python)
22963
- */
22964
- parent_software?: string | null;
22965
22980
  };
22966
22981
  export type SoftwareTarget = {
22967
22982
  readonly url: string;
@@ -25597,22 +25612,38 @@ export type ServiceProviderRequestForm = {
25597
25612
  enable_notifications?: boolean;
25598
25613
  customer: string;
25599
25614
  image?: (Blob | File) | null;
25615
+ /**
25616
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
25617
+ */
25618
+ allowed_domains?: unknown;
25600
25619
  };
25601
25620
  export type ServiceProviderRequestMultipart = {
25602
25621
  description?: string;
25603
25622
  enable_notifications?: boolean;
25604
25623
  customer: string;
25605
25624
  image?: (Blob | File) | null;
25625
+ /**
25626
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
25627
+ */
25628
+ allowed_domains?: unknown;
25606
25629
  };
25607
25630
  export type PatchedServiceProviderRequestForm = {
25608
25631
  description?: string;
25609
25632
  enable_notifications?: boolean;
25610
25633
  image?: (Blob | File) | null;
25634
+ /**
25635
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
25636
+ */
25637
+ allowed_domains?: unknown;
25611
25638
  };
25612
25639
  export type PatchedServiceProviderRequestMultipart = {
25613
25640
  description?: string;
25614
25641
  enable_notifications?: boolean;
25615
25642
  image?: (Blob | File) | null;
25643
+ /**
25644
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
25645
+ */
25646
+ allowed_domains?: unknown;
25616
25647
  };
25617
25648
  export type OnboardingJustificationDocumentationRequestForm = {
25618
25649
  /**
@@ -25990,6 +26021,7 @@ export type ConstanceSettingsRequestForm = {
25990
26021
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
25991
26022
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
25992
26023
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
26024
+ OIDC_DEFAULT_LOGOUT_URL?: string;
25993
26025
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
25994
26026
  WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
25995
26027
  REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
@@ -26234,6 +26266,7 @@ export type ConstanceSettingsRequestMultipart = {
26234
26266
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
26235
26267
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
26236
26268
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
26269
+ OIDC_DEFAULT_LOGOUT_URL?: string;
26237
26270
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
26238
26271
  WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
26239
26272
  REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
@@ -26761,7 +26794,7 @@ export type DigitalOceanImageOEnum = '-distribution' | '-type' | 'distribution'
26761
26794
  export type EmailLogOEnum = '-sent_at' | '-subject' | 'sent_at' | 'subject';
26762
26795
  export type EventFieldEnum = 'context' | 'created' | 'event_type' | 'message' | 'uuid';
26763
26796
  export type ExpertiseCategoryOEnum = '-code' | '-level' | '-name' | 'code' | 'level' | 'name';
26764
- export type GoogleCredentialsFieldEnum = 'calendar_refresh_token' | 'calendar_token' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_country' | 'customer_image' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'enable_notifications' | 'google_auth_url' | 'image' | 'offering_count' | 'organization_groups' | 'url' | 'uuid';
26797
+ export type GoogleCredentialsFieldEnum = 'allowed_domains' | 'calendar_refresh_token' | 'calendar_token' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_country' | 'customer_image' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'enable_notifications' | 'google_auth_url' | 'image' | 'offering_count' | 'organization_groups' | 'url' | 'uuid';
26765
26798
  export type WebHookContentTypeEnum1 = 1 | 2;
26766
26799
  export type InvoiceFieldEnum = 'backend_id' | 'compensations' | 'customer' | 'customer_details' | 'due_date' | 'incurred_costs' | 'invoice_date' | 'issuer_details' | 'items' | 'month' | 'number' | 'payment_url' | 'price' | 'reference_number' | 'state' | 'tax' | 'total' | 'url' | 'uuid' | 'year';
26767
26800
  export type InvoiceOEnum = '-created' | '-month' | '-year' | 'created' | 'month' | 'year';
@@ -26799,7 +26832,7 @@ export type UserFieldEnum = 'active_isds' | 'affiliations' | 'agree_with_policy'
26799
26832
  export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
26800
26833
  export type PublicOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details';
26801
26834
  export type RobotAccountDetailsFieldEnum = 'backend_id' | 'created' | 'customer_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'fingerprints' | 'keys' | 'modified' | 'offering_plugin_options' | 'project_name' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'resource' | 'resource_name' | 'resource_uuid' | 'responsible_user' | 'state' | 'type' | 'url' | 'user_keys' | 'username' | 'users' | 'uuid';
26802
- export type ServiceProviderFieldEnum = 'created' | 'customer' | 'customer_abbreviation' | 'customer_country' | 'customer_image' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'enable_notifications' | 'image' | 'offering_count' | 'organization_groups' | 'url' | 'uuid';
26835
+ export type ServiceProviderFieldEnum = 'allowed_domains' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_country' | 'customer_image' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'enable_notifications' | 'image' | 'offering_count' | 'organization_groups' | 'url' | 'uuid';
26803
26836
  export type MarketplaceProviderCustomerProjectFieldEnum = 'billing_price_estimate' | 'description' | 'end_date' | 'name' | 'resources_count' | 'users_count' | 'uuid';
26804
26837
  export type MarketplaceProviderCustomerProjectOEnum = '-created' | '-customer_abbreviation' | '-customer_name' | '-customer_native_name' | '-end_date' | '-estimated_cost' | '-name' | '-start_date' | 'created' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'end_date' | 'estimated_cost' | 'name' | 'start_date';
26805
26838
  export type MarketplaceProviderCustomerFieldEnum = 'abbreviation' | 'billing_price_estimate' | 'email' | 'name' | 'payment_profiles' | 'phone_number' | 'projects' | 'projects_count' | 'slug' | 'users' | 'users_count' | 'uuid';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "8.0.6-dev.13",
3
+ "version": "8.0.6-dev.14",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",