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

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 +163 -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,12 +10141,28 @@ 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
  /**
10141
10155
  * Name of the SLURM partition
10142
10156
  */
10143
10157
  partition_name?: string;
10158
+ /**
10159
+ * CPU architecture of the partition (e.g., x86_64/amd/zen3)
10160
+ */
10161
+ cpu_arch?: string;
10162
+ /**
10163
+ * GPU architecture of the partition (e.g., nvidia/cc90, amd/gfx90a)
10164
+ */
10165
+ gpu_arch?: string;
10144
10166
  /**
10145
10167
  * Default task binding policy (SLURM cpu_bind)
10146
10168
  */
@@ -10223,6 +10245,14 @@ export type NestedPartitionRequest = {
10223
10245
  * Name of the SLURM partition
10224
10246
  */
10225
10247
  partition_name: string;
10248
+ /**
10249
+ * CPU architecture of the partition (e.g., x86_64/amd/zen3)
10250
+ */
10251
+ cpu_arch?: string;
10252
+ /**
10253
+ * GPU architecture of the partition (e.g., nvidia/cc90, amd/gfx90a)
10254
+ */
10255
+ gpu_arch?: string;
10226
10256
  /**
10227
10257
  * Default task binding policy (SLURM cpu_bind)
10228
10258
  */
@@ -10589,6 +10619,10 @@ export type NestedSoftwareTarget = {
10589
10619
  * Target-specific metadata (build options, system requirements, etc.)
10590
10620
  */
10591
10621
  metadata?: unknown;
10622
+ /**
10623
+ * List of GPU architectures this target supports (e.g., ['nvidia/cc70', 'nvidia/cc90'])
10624
+ */
10625
+ gpu_architectures?: unknown;
10592
10626
  };
10593
10627
  export type NestedSoftwareTargetRequest = {
10594
10628
  /**
@@ -10611,6 +10645,10 @@ export type NestedSoftwareTargetRequest = {
10611
10645
  * Target-specific metadata (build options, system requirements, etc.)
10612
10646
  */
10613
10647
  metadata?: unknown;
10648
+ /**
10649
+ * List of GPU architectures this target supports (e.g., ['nvidia/cc70', 'nvidia/cc90'])
10650
+ */
10651
+ gpu_architectures?: unknown;
10614
10652
  };
10615
10653
  export type NestedSoftwareVersion = {
10616
10654
  readonly uuid: string;
@@ -11383,6 +11421,14 @@ export type OfferingPartition = {
11383
11421
  * Name of the SLURM partition
11384
11422
  */
11385
11423
  partition_name: string;
11424
+ /**
11425
+ * CPU architecture of the partition (e.g., x86_64/amd/zen3)
11426
+ */
11427
+ cpu_arch?: string;
11428
+ /**
11429
+ * GPU architecture of the partition (e.g., nvidia/cc90, amd/gfx90a)
11430
+ */
11431
+ gpu_arch?: string;
11386
11432
  /**
11387
11433
  * Default task binding policy (SLURM cpu_bind)
11388
11434
  */
@@ -11466,6 +11512,14 @@ export type OfferingPartitionRequest = {
11466
11512
  * Name of the SLURM partition
11467
11513
  */
11468
11514
  partition_name: string;
11515
+ /**
11516
+ * CPU architecture of the partition (e.g., x86_64/amd/zen3)
11517
+ */
11518
+ cpu_arch?: string;
11519
+ /**
11520
+ * GPU architecture of the partition (e.g., nvidia/cc90, amd/gfx90a)
11521
+ */
11522
+ gpu_arch?: string;
11469
11523
  /**
11470
11524
  * Default task binding policy (SLURM cpu_bind)
11471
11525
  */
@@ -14768,6 +14822,14 @@ export type PartitionSummary = {
14768
14822
  * Quality of Service (QOS) name
14769
14823
  */
14770
14824
  qos?: string;
14825
+ /**
14826
+ * CPU architecture of the partition (e.g., x86_64/amd/zen3)
14827
+ */
14828
+ cpu_arch?: string;
14829
+ /**
14830
+ * GPU architecture of the partition (e.g., nvidia/cc90, amd/gfx90a)
14831
+ */
14832
+ gpu_arch?: string;
14771
14833
  };
14772
14834
  export type PartitionSummaryRequest = {
14773
14835
  /**
@@ -14782,6 +14844,14 @@ export type PartitionSummaryRequest = {
14782
14844
  * Quality of Service (QOS) name
14783
14845
  */
14784
14846
  qos?: string;
14847
+ /**
14848
+ * CPU architecture of the partition (e.g., x86_64/amd/zen3)
14849
+ */
14850
+ cpu_arch?: string;
14851
+ /**
14852
+ * GPU architecture of the partition (e.g., nvidia/cc90, amd/gfx90a)
14853
+ */
14854
+ gpu_arch?: string;
14785
14855
  };
14786
14856
  export type PasswordChangeRequest = {
14787
14857
  new_password: string;
@@ -15517,6 +15587,14 @@ export type PatchedOfferingPartitionUpdateRequest = {
15517
15587
  * Name of the SLURM partition
15518
15588
  */
15519
15589
  partition_name?: string;
15590
+ /**
15591
+ * CPU architecture of the partition (e.g., x86_64/amd/zen3)
15592
+ */
15593
+ cpu_arch?: string;
15594
+ /**
15595
+ * GPU architecture of the partition (e.g., nvidia/cc90, amd/gfx90a)
15596
+ */
15597
+ gpu_arch?: string;
15520
15598
  /**
15521
15599
  * Default task binding policy (SLURM cpu_bind)
15522
15600
  */
@@ -16514,6 +16592,10 @@ export type PatchedServiceProviderRequest = {
16514
16592
  description?: string;
16515
16593
  enable_notifications?: boolean;
16516
16594
  image?: (Blob | File) | null;
16595
+ /**
16596
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
16597
+ */
16598
+ allowed_domains?: unknown;
16517
16599
  };
16518
16600
  export type PatchedSlurmAllocationRequest = {
16519
16601
  name?: string;
@@ -16615,10 +16697,6 @@ export type PatchedSoftwarePackageRequest = {
16615
16697
  * Whether this package is an extension of another package
16616
16698
  */
16617
16699
  is_extension?: boolean;
16618
- /**
16619
- * Parent package for extensions (e.g., Python package within Python)
16620
- */
16621
- parent_software?: string | null;
16622
16700
  };
16623
16701
  export type PatchedTagRequest = {
16624
16702
  name?: string;
@@ -22156,6 +22234,10 @@ export type ServiceProvider = {
22156
22234
  image?: string | null;
22157
22235
  readonly organization_groups?: Array<OrganizationGroup>;
22158
22236
  readonly offering_count?: number;
22237
+ /**
22238
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
22239
+ */
22240
+ allowed_domains?: unknown;
22159
22241
  };
22160
22242
  export type ServiceProviderAccess = {
22161
22243
  offering_uuid: string;
@@ -22208,6 +22290,10 @@ export type ServiceProviderRequest = {
22208
22290
  enable_notifications?: boolean;
22209
22291
  customer: string;
22210
22292
  image?: (Blob | File) | null;
22293
+ /**
22294
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
22295
+ */
22296
+ allowed_domains?: unknown;
22211
22297
  };
22212
22298
  export type ServiceProviderRevenues = {
22213
22299
  /**
@@ -22925,10 +23011,7 @@ export type SoftwarePackage = {
22925
23011
  * Whether this package is an extension of another package
22926
23012
  */
22927
23013
  is_extension?: boolean;
22928
- /**
22929
- * Parent package for extensions (e.g., Python package within Python)
22930
- */
22931
- parent_software?: string | null;
23014
+ readonly parent_softwares: Array<NestedParentSoftware>;
22932
23015
  readonly catalog_name: string;
22933
23016
  readonly catalog_version: string;
22934
23017
  readonly catalog_type: string;
@@ -22958,10 +23041,6 @@ export type SoftwarePackageRequest = {
22958
23041
  * Whether this package is an extension of another package
22959
23042
  */
22960
23043
  is_extension?: boolean;
22961
- /**
22962
- * Parent package for extensions (e.g., Python package within Python)
22963
- */
22964
- parent_software?: string | null;
22965
23044
  };
22966
23045
  export type SoftwareTarget = {
22967
23046
  readonly url: string;
@@ -22988,6 +23067,10 @@ export type SoftwareTarget = {
22988
23067
  * Target-specific metadata (build options, system requirements, etc.)
22989
23068
  */
22990
23069
  readonly metadata: unknown;
23070
+ /**
23071
+ * List of GPU architectures this target supports (e.g., ['nvidia/cc70', 'nvidia/cc90'])
23072
+ */
23073
+ readonly gpu_architectures: unknown;
22991
23074
  };
22992
23075
  export type SoftwareVersion = {
22993
23076
  readonly url: string;
@@ -25597,22 +25680,38 @@ export type ServiceProviderRequestForm = {
25597
25680
  enable_notifications?: boolean;
25598
25681
  customer: string;
25599
25682
  image?: (Blob | File) | null;
25683
+ /**
25684
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
25685
+ */
25686
+ allowed_domains?: unknown;
25600
25687
  };
25601
25688
  export type ServiceProviderRequestMultipart = {
25602
25689
  description?: string;
25603
25690
  enable_notifications?: boolean;
25604
25691
  customer: string;
25605
25692
  image?: (Blob | File) | null;
25693
+ /**
25694
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
25695
+ */
25696
+ allowed_domains?: unknown;
25606
25697
  };
25607
25698
  export type PatchedServiceProviderRequestForm = {
25608
25699
  description?: string;
25609
25700
  enable_notifications?: boolean;
25610
25701
  image?: (Blob | File) | null;
25702
+ /**
25703
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
25704
+ */
25705
+ allowed_domains?: unknown;
25611
25706
  };
25612
25707
  export type PatchedServiceProviderRequestMultipart = {
25613
25708
  description?: string;
25614
25709
  enable_notifications?: boolean;
25615
25710
  image?: (Blob | File) | null;
25711
+ /**
25712
+ * List of allowed domains for offering endpoints. Only staff can modify this field.
25713
+ */
25714
+ allowed_domains?: unknown;
25616
25715
  };
25617
25716
  export type OnboardingJustificationDocumentationRequestForm = {
25618
25717
  /**
@@ -25990,6 +26089,7 @@ export type ConstanceSettingsRequestForm = {
25990
26089
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
25991
26090
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
25992
26091
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
26092
+ OIDC_DEFAULT_LOGOUT_URL?: string;
25993
26093
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
25994
26094
  WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
25995
26095
  REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
@@ -26234,6 +26334,7 @@ export type ConstanceSettingsRequestMultipart = {
26234
26334
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
26235
26335
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
26236
26336
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
26337
+ OIDC_DEFAULT_LOGOUT_URL?: string;
26237
26338
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
26238
26339
  WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
26239
26340
  REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
@@ -26761,7 +26862,7 @@ export type DigitalOceanImageOEnum = '-distribution' | '-type' | 'distribution'
26761
26862
  export type EmailLogOEnum = '-sent_at' | '-subject' | 'sent_at' | 'subject';
26762
26863
  export type EventFieldEnum = 'context' | 'created' | 'event_type' | 'message' | 'uuid';
26763
26864
  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';
26865
+ 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
26866
  export type WebHookContentTypeEnum1 = 1 | 2;
26766
26867
  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
26868
  export type InvoiceOEnum = '-created' | '-month' | '-year' | 'created' | 'month' | 'year';
@@ -26799,7 +26900,7 @@ export type UserFieldEnum = 'active_isds' | 'affiliations' | 'agree_with_policy'
26799
26900
  export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
26800
26901
  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
26902
  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';
26903
+ 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
26904
  export type MarketplaceProviderCustomerProjectFieldEnum = 'billing_price_estimate' | 'description' | 'end_date' | 'name' | 'resources_count' | 'users_count' | 'uuid';
26804
26905
  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
26906
  export type MarketplaceProviderCustomerFieldEnum = 'abbreviation' | 'billing_price_estimate' | 'email' | 'name' | 'payment_profiles' | 'phone_number' | 'projects' | 'projects_count' | 'slug' | 'users' | 'users_count' | 'uuid';
@@ -52892,6 +52993,14 @@ export type MarketplaceSoftwarePackagesListData = {
52892
52993
  * Filter packages having extensions of a specific type (e.g., 'python')
52893
52994
  */
52894
52995
  extension_type?: string;
52996
+ /**
52997
+ * Filter packages by GPU architecture (e.g., nvidia/cc90)
52998
+ */
52999
+ gpu_arch?: string;
53000
+ /**
53001
+ * Filter packages that have GPU-enabled builds
53002
+ */
53003
+ has_gpu?: boolean;
52895
53004
  /**
52896
53005
  * Filter packages that have a specific version
52897
53006
  */
@@ -52999,6 +53108,14 @@ export type MarketplaceSoftwarePackagesCountData = {
52999
53108
  * Filter packages having extensions of a specific type (e.g., 'python')
53000
53109
  */
53001
53110
  extension_type?: string;
53111
+ /**
53112
+ * Filter packages by GPU architecture (e.g., nvidia/cc90)
53113
+ */
53114
+ gpu_arch?: string;
53115
+ /**
53116
+ * Filter packages that have GPU-enabled builds
53117
+ */
53118
+ has_gpu?: boolean;
53002
53119
  /**
53003
53120
  * Filter packages that have a specific version
53004
53121
  */
@@ -53130,6 +53247,14 @@ export type MarketplaceSoftwareTargetsListData = {
53130
53247
  catalog_uuid?: string;
53131
53248
  cpu_family?: string;
53132
53249
  cpu_microarchitecture?: string;
53250
+ /**
53251
+ * Filter targets by GPU architecture (e.g., nvidia/cc90)
53252
+ */
53253
+ gpu_arch?: string;
53254
+ /**
53255
+ * Filter targets that have GPU architectures
53256
+ */
53257
+ has_gpu?: boolean;
53133
53258
  /**
53134
53259
  * Ordering
53135
53260
  *
@@ -53174,6 +53299,14 @@ export type MarketplaceSoftwareTargetsCountData = {
53174
53299
  catalog_uuid?: string;
53175
53300
  cpu_family?: string;
53176
53301
  cpu_microarchitecture?: string;
53302
+ /**
53303
+ * Filter targets by GPU architecture (e.g., nvidia/cc90)
53304
+ */
53305
+ gpu_arch?: string;
53306
+ /**
53307
+ * Filter targets that have GPU architectures
53308
+ */
53309
+ has_gpu?: boolean;
53177
53310
  /**
53178
53311
  * Ordering
53179
53312
  *
@@ -53287,6 +53420,14 @@ export type MarketplaceSoftwareVersionsListData = {
53287
53420
  catalog_uuid?: string;
53288
53421
  cpu_family?: string;
53289
53422
  cpu_microarchitecture?: string;
53423
+ /**
53424
+ * Filter versions by GPU architecture (e.g., nvidia/cc90)
53425
+ */
53426
+ gpu_arch?: string;
53427
+ /**
53428
+ * Filter versions that have GPU-enabled builds
53429
+ */
53430
+ has_gpu?: boolean;
53290
53431
  /**
53291
53432
  * Ordering
53292
53433
  *
@@ -53349,6 +53490,14 @@ export type MarketplaceSoftwareVersionsCountData = {
53349
53490
  catalog_uuid?: string;
53350
53491
  cpu_family?: string;
53351
53492
  cpu_microarchitecture?: string;
53493
+ /**
53494
+ * Filter versions by GPU architecture (e.g., nvidia/cc90)
53495
+ */
53496
+ gpu_arch?: string;
53497
+ /**
53498
+ * Filter versions that have GPU-enabled builds
53499
+ */
53500
+ has_gpu?: boolean;
53352
53501
  /**
53353
53502
  * Ordering
53354
53503
  *
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.15",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",