waldur-js-client 8.0.9-dev.3 → 8.0.9-dev.5

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/sdk.gen.js CHANGED
@@ -24377,6 +24377,34 @@ export const marketplaceProviderResourcesAddUser = (options) => {
24377
24377
  }
24378
24378
  });
24379
24379
  };
24380
+ /**
24381
+ * Adjust resource start and end dates (staff only)
24382
+ * Updates both the originating order's start_date and the resource's end_date in one atomic operation. Intended for helpdesk-style prepaid offerings where staff need to shift the service window forward. Does not regenerate invoices, issue credits, or send notifications.
24383
+ */
24384
+ export const marketplaceProviderResourcesAdjustDates = (options) => {
24385
+ return (options.client ?? _heyApiClient).post({
24386
+ security: [
24387
+ {
24388
+ name: 'Authorization',
24389
+ type: 'apiKey'
24390
+ },
24391
+ {
24392
+ scheme: 'bearer',
24393
+ type: 'http'
24394
+ },
24395
+ {
24396
+ scheme: 'bearer',
24397
+ type: 'http'
24398
+ }
24399
+ ],
24400
+ url: '/api/marketplace-provider-resources/{uuid}/adjust_dates/',
24401
+ ...options,
24402
+ headers: {
24403
+ 'Content-Type': 'application/json',
24404
+ ...options.headers
24405
+ }
24406
+ });
24407
+ };
24380
24408
  /**
24381
24409
  * Revoke a role from a user
24382
24410
  * Removes a specific role from a user within the current scope. This effectively revokes their permissions associated with that role.
@@ -26096,6 +26124,34 @@ export const marketplaceResourcesAddUser = (options) => {
26096
26124
  }
26097
26125
  });
26098
26126
  };
26127
+ /**
26128
+ * Adjust resource start and end dates (staff only)
26129
+ * Updates both the originating order's start_date and the resource's end_date in one atomic operation. Intended for helpdesk-style prepaid offerings where staff need to shift the service window forward. Does not regenerate invoices, issue credits, or send notifications.
26130
+ */
26131
+ export const marketplaceResourcesAdjustDates = (options) => {
26132
+ return (options.client ?? _heyApiClient).post({
26133
+ security: [
26134
+ {
26135
+ name: 'Authorization',
26136
+ type: 'apiKey'
26137
+ },
26138
+ {
26139
+ scheme: 'bearer',
26140
+ type: 'http'
26141
+ },
26142
+ {
26143
+ scheme: 'bearer',
26144
+ type: 'http'
26145
+ }
26146
+ ],
26147
+ url: '/api/marketplace-resources/{uuid}/adjust_dates/',
26148
+ ...options,
26149
+ headers: {
26150
+ 'Content-Type': 'application/json',
26151
+ ...options.headers
26152
+ }
26153
+ });
26154
+ };
26099
26155
  /**
26100
26156
  * Revoke a role from a user
26101
26157
  * Removes a specific role from a user within the current scope. This effectively revokes their permissions associated with that role.
@@ -28761,6 +28817,77 @@ export const marketplaceSiteAgentIdentitiesCleanupOrphaned = (options) => {
28761
28817
  }
28762
28818
  });
28763
28819
  };
28820
+ export const marketplaceSiteAgentLogsList = (options) => {
28821
+ return (options?.client ?? _heyApiClient).get({
28822
+ security: [
28823
+ {
28824
+ name: 'Authorization',
28825
+ type: 'apiKey'
28826
+ },
28827
+ {
28828
+ scheme: 'bearer',
28829
+ type: 'http'
28830
+ },
28831
+ {
28832
+ scheme: 'bearer',
28833
+ type: 'http'
28834
+ }
28835
+ ],
28836
+ url: '/api/marketplace-site-agent-logs/',
28837
+ ...options
28838
+ });
28839
+ };
28840
+ /**
28841
+ * Get number of items in the collection matching the request parameters.
28842
+ */
28843
+ export const marketplaceSiteAgentLogsCount = (options) => {
28844
+ return (options?.client ?? _heyApiClient).head({
28845
+ security: [
28846
+ {
28847
+ name: 'Authorization',
28848
+ type: 'apiKey'
28849
+ },
28850
+ {
28851
+ scheme: 'bearer',
28852
+ type: 'http'
28853
+ },
28854
+ {
28855
+ scheme: 'bearer',
28856
+ type: 'http'
28857
+ }
28858
+ ],
28859
+ url: '/api/marketplace-site-agent-logs/',
28860
+ ...options
28861
+ });
28862
+ };
28863
+ /**
28864
+ * Push site agent logs
28865
+ * Receive a batch of log entries from a site agent. Send a list where each entry includes agent_identity_uuid.
28866
+ */
28867
+ export const marketplaceSiteAgentLogsCreate = (options) => {
28868
+ return (options.client ?? _heyApiClient).post({
28869
+ security: [
28870
+ {
28871
+ name: 'Authorization',
28872
+ type: 'apiKey'
28873
+ },
28874
+ {
28875
+ scheme: 'bearer',
28876
+ type: 'http'
28877
+ },
28878
+ {
28879
+ scheme: 'bearer',
28880
+ type: 'http'
28881
+ }
28882
+ ],
28883
+ url: '/api/marketplace-site-agent-logs/',
28884
+ ...options,
28885
+ headers: {
28886
+ 'Content-Type': 'application/json',
28887
+ ...options.headers
28888
+ }
28889
+ });
28890
+ };
28764
28891
  export const marketplaceSiteAgentProcessorsList = (options) => {
28765
28892
  return (options?.client ?? _heyApiClient).get({
28766
28893
  security: [
@@ -77,6 +77,20 @@ export type ActiveQuery = {
77
77
  */
78
78
  readonly query_preview: string;
79
79
  };
80
+ export type AdjustResourceDatesRequest = {
81
+ /**
82
+ * New start date of the originating order.
83
+ */
84
+ start_date: string;
85
+ /**
86
+ * New end date of the resource.
87
+ */
88
+ end_date: string;
89
+ /**
90
+ * Optional reason captured in the audit trail.
91
+ */
92
+ comment?: string;
93
+ };
80
94
  export type AdminAnnouncement = {
81
95
  readonly uuid?: string;
82
96
  description?: string;
@@ -4989,6 +5003,7 @@ export type ConstanceSettings = {
4989
5003
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
4990
5004
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
4991
5005
  ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
5006
+ SITE_AGENT_LOG_MAX_ROWS_PER_IDENTITY?: number;
4992
5007
  PAT_ENABLED?: boolean;
4993
5008
  PAT_MAX_LIFETIME_DAYS?: number;
4994
5009
  PAT_MAX_TOKENS_PER_USER?: number;
@@ -5258,6 +5273,7 @@ export type ConstanceSettingsRequest = {
5258
5273
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
5259
5274
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
5260
5275
  ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
5276
+ SITE_AGENT_LOG_MAX_ROWS_PER_IDENTITY?: number;
5261
5277
  PAT_ENABLED?: boolean;
5262
5278
  PAT_MAX_LIFETIME_DAYS?: number;
5263
5279
  PAT_MAX_TOKENS_PER_USER?: number;
@@ -9178,6 +9194,7 @@ export type KeywordSearchModeEnum = 'expertise_only' | 'full_text';
9178
9194
  export type KindEnum = 'default' | 'course' | 'public';
9179
9195
  export type LoginpagelayoutEnum = 'split-screen' | 'centered-card' | 'minimal' | 'full-hero' | 'gradient' | 'stacked' | 'right-split' | 'glassmorphism' | 'neumorphism' | 'animated-gradient' | 'video-background' | 'bottom-sheet' | 'tabbed' | 'wizard' | 'stats' | 'news' | 'carousel' | 'logo-watermark' | 'brand-pattern' | 'duotone' | 'diagonal' | 'time-based' | 'seasonal' | 'weather';
9180
9196
  export type LbAlgorithmEnum = 'ROUND_ROBIN' | 'LEAST_CONNECTIONS' | 'SOURCE_IP' | 'SOURCE_IP_PORT';
9197
+ export type LevelEnum = 'DEBUG' | 'INFO' | 'WARNING' | 'ERROR' | 'CRITICAL';
9181
9198
  export type LexisLink = {
9182
9199
  readonly url: string;
9183
9200
  readonly uuid: string;
@@ -18414,6 +18431,12 @@ export type Project = {
18414
18431
  */
18415
18432
  user_identity_sources?: unknown;
18416
18433
  affiliation?: AffiliatedOrganization;
18434
+ affiliation_uuid?: string | null;
18435
+ readonly affiliation_name?: string;
18436
+ /**
18437
+ * Unique short identifier, e.g. CERN, EMBL.
18438
+ */
18439
+ readonly affiliation_code?: string;
18417
18440
  science_sub_domain?: string | null;
18418
18441
  readonly science_sub_domain_name?: string;
18419
18442
  /**
@@ -23983,6 +24006,27 @@ export type SiteAgentConfigGenerationRequest = {
23983
24006
  */
23984
24007
  timezone?: string;
23985
24008
  };
24009
+ export type SiteAgentLog = {
24010
+ readonly uuid: string;
24011
+ readonly offering: string;
24012
+ readonly offering_uuid: string;
24013
+ readonly agent_identity_uuid: string;
24014
+ /**
24015
+ * Unix timestamp of the log entry
24016
+ */
24017
+ timestamp: number;
24018
+ level: LevelEnum;
24019
+ message: string;
24020
+ module: string;
24021
+ readonly created: string;
24022
+ };
24023
+ export type SiteAgentLogCreateRequest = {
24024
+ agent_identity_uuid: string;
24025
+ timestamp: number;
24026
+ level: LevelEnum;
24027
+ message: string;
24028
+ module: string;
24029
+ };
23986
24030
  export type SlurmAllocation = {
23987
24031
  readonly url?: string;
23988
24032
  readonly uuid?: string;
@@ -27949,6 +27993,7 @@ export type ConstanceSettingsRequestForm = {
27949
27993
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
27950
27994
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
27951
27995
  ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
27996
+ SITE_AGENT_LOG_MAX_ROWS_PER_IDENTITY?: number;
27952
27997
  PAT_ENABLED?: boolean;
27953
27998
  PAT_MAX_LIFETIME_DAYS?: number;
27954
27999
  PAT_MAX_TOKENS_PER_USER?: number;
@@ -28218,6 +28263,7 @@ export type ConstanceSettingsRequestMultipart = {
28218
28263
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
28219
28264
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
28220
28265
  ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
28266
+ SITE_AGENT_LOG_MAX_ROWS_PER_IDENTITY?: number;
28221
28267
  PAT_ENABLED?: boolean;
28222
28268
  PAT_MAX_LIFETIME_DAYS?: number;
28223
28269
  PAT_MAX_TOKENS_PER_USER?: number;
@@ -28731,7 +28777,7 @@ export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'dra
28731
28777
  export type ProviderOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_id_rules' | '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' | 'documentation_url' | 'effective_available_limits' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'profile_name' | 'profile_uuid' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | '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' | 'uuid' | 'vendor_details';
28732
28778
  export type ProviderOfferingDetailsOEnum = '-created' | '-name' | '-state' | '-total_cost' | '-total_cost_estimated' | '-total_customers' | '-type' | 'created' | 'name' | 'state' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type';
28733
28779
  export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name' | 'phone_number' | 'slug' | 'uuid';
28734
- export type ProjectFieldEnum = 'affiliation' | 'affiliation_uuid' | 'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_grace_period_days' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'effective_end_date' | 'end_date' | 'end_date_requested_by' | 'end_date_updated_at' | 'grace_period_days' | 'image' | 'is_in_grace_period' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'science_domain_code' | 'science_domain_name' | 'science_domain_uuid' | 'science_sub_domain' | 'science_sub_domain_code' | 'science_sub_domain_name' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid';
28780
+ export type ProjectFieldEnum = 'affiliation' | 'affiliation_code' | 'affiliation_name' | 'affiliation_uuid' | 'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_grace_period_days' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'effective_end_date' | 'end_date' | 'end_date_requested_by' | 'end_date_updated_at' | 'grace_period_days' | 'image' | 'is_in_grace_period' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'science_domain_code' | 'science_domain_name' | 'science_domain_uuid' | 'science_sub_domain' | 'science_sub_domain_code' | 'science_sub_domain_name' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid';
28735
28781
  export type UserFieldEnum = 'active_isds' | 'address' | 'affiliations' | 'agree_with_policy' | 'agreement_date' | 'attribute_sources' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'date_joined' | 'deactivation_reason' | 'description' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'has_active_session' | 'has_usable_password' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_identity_manager' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'managed_isds' | 'nationalities' | 'nationality' | 'native_name' | 'notifications_enabled' | 'organization' | 'organization_country' | 'organization_registry_code' | 'organization_type' | 'permissions' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid';
28736
28782
  export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
28737
28783
  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' | 'documentation_url' | 'effective_available_limits' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | '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' | 'profile_name' | 'profile_uuid' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | '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';
@@ -51881,6 +51927,18 @@ export type MarketplaceProviderResourcesAddUserResponses = {
51881
51927
  201: UserRoleExpirationTime;
51882
51928
  };
51883
51929
  export type MarketplaceProviderResourcesAddUserResponse = MarketplaceProviderResourcesAddUserResponses[keyof MarketplaceProviderResourcesAddUserResponses];
51930
+ export type MarketplaceProviderResourcesAdjustDatesData = {
51931
+ body: AdjustResourceDatesRequest;
51932
+ path: {
51933
+ uuid: string;
51934
+ };
51935
+ query?: never;
51936
+ url: '/api/marketplace-provider-resources/{uuid}/adjust_dates/';
51937
+ };
51938
+ export type MarketplaceProviderResourcesAdjustDatesResponses = {
51939
+ 200: ResourceResponseStatus;
51940
+ };
51941
+ export type MarketplaceProviderResourcesAdjustDatesResponse = MarketplaceProviderResourcesAdjustDatesResponses[keyof MarketplaceProviderResourcesAdjustDatesResponses];
51884
51942
  export type MarketplaceProviderResourcesDeleteUserData = {
51885
51943
  body: UserRoleDeleteRequest;
51886
51944
  path: {
@@ -53854,6 +53912,18 @@ export type MarketplaceResourcesAddUserResponses = {
53854
53912
  201: UserRoleExpirationTime;
53855
53913
  };
53856
53914
  export type MarketplaceResourcesAddUserResponse = MarketplaceResourcesAddUserResponses[keyof MarketplaceResourcesAddUserResponses];
53915
+ export type MarketplaceResourcesAdjustDatesData = {
53916
+ body: AdjustResourceDatesRequest;
53917
+ path: {
53918
+ uuid: string;
53919
+ };
53920
+ query?: never;
53921
+ url: '/api/marketplace-resources/{uuid}/adjust_dates/';
53922
+ };
53923
+ export type MarketplaceResourcesAdjustDatesResponses = {
53924
+ 200: ResourceResponseStatus;
53925
+ };
53926
+ export type MarketplaceResourcesAdjustDatesResponse = MarketplaceResourcesAdjustDatesResponses[keyof MarketplaceResourcesAdjustDatesResponses];
53857
53927
  export type MarketplaceResourcesDeleteUserData = {
53858
53928
  body: UserRoleDeleteRequest;
53859
53929
  path: {
@@ -56877,6 +56947,80 @@ export type MarketplaceSiteAgentIdentitiesCleanupOrphanedResponses = {
56877
56947
  200: CleanupResponse;
56878
56948
  };
56879
56949
  export type MarketplaceSiteAgentIdentitiesCleanupOrphanedResponse = MarketplaceSiteAgentIdentitiesCleanupOrphanedResponses[keyof MarketplaceSiteAgentIdentitiesCleanupOrphanedResponses];
56950
+ export type MarketplaceSiteAgentLogsListData = {
56951
+ body?: never;
56952
+ path?: never;
56953
+ query?: {
56954
+ agent_identity_uuid?: string;
56955
+ level?: string;
56956
+ offering_uuid?: string;
56957
+ /**
56958
+ * A page number within the paginated result set.
56959
+ */
56960
+ page?: number;
56961
+ /**
56962
+ * Number of results to return per page.
56963
+ */
56964
+ page_size?: number;
56965
+ timestamp_from?: number;
56966
+ timestamp_to?: number;
56967
+ };
56968
+ url: '/api/marketplace-site-agent-logs/';
56969
+ };
56970
+ export type MarketplaceSiteAgentLogsListResponses = {
56971
+ 200: Array<SiteAgentLog>;
56972
+ };
56973
+ export type MarketplaceSiteAgentLogsListResponse = MarketplaceSiteAgentLogsListResponses[keyof MarketplaceSiteAgentLogsListResponses];
56974
+ export type MarketplaceSiteAgentLogsCountData = {
56975
+ body?: never;
56976
+ path?: never;
56977
+ query?: {
56978
+ agent_identity_uuid?: string;
56979
+ level?: string;
56980
+ offering_uuid?: string;
56981
+ /**
56982
+ * A page number within the paginated result set.
56983
+ */
56984
+ page?: number;
56985
+ /**
56986
+ * Number of results to return per page.
56987
+ */
56988
+ page_size?: number;
56989
+ timestamp_from?: number;
56990
+ timestamp_to?: number;
56991
+ };
56992
+ url: '/api/marketplace-site-agent-logs/';
56993
+ };
56994
+ export type MarketplaceSiteAgentLogsCountResponses = {
56995
+ /**
56996
+ * No response body
56997
+ */
56998
+ 200: unknown;
56999
+ };
57000
+ export type MarketplaceSiteAgentLogsCreateData = {
57001
+ body: Array<SiteAgentLogCreateRequest>;
57002
+ path?: never;
57003
+ query?: {
57004
+ agent_identity_uuid?: string;
57005
+ level?: string;
57006
+ offering_uuid?: string;
57007
+ /**
57008
+ * A page number within the paginated result set.
57009
+ */
57010
+ page?: number;
57011
+ /**
57012
+ * Number of results to return per page.
57013
+ */
57014
+ page_size?: number;
57015
+ timestamp_from?: number;
57016
+ timestamp_to?: number;
57017
+ };
57018
+ url: '/api/marketplace-site-agent-logs/';
57019
+ };
57020
+ export type MarketplaceSiteAgentLogsCreateResponses = {
57021
+ 201: Array<SiteAgentLog>;
57022
+ };
57023
+ export type MarketplaceSiteAgentLogsCreateResponse = MarketplaceSiteAgentLogsCreateResponses[keyof MarketplaceSiteAgentLogsCreateResponses];
56880
57024
  export type MarketplaceSiteAgentProcessorsListData = {
56881
57025
  body?: never;
56882
57026
  path?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "8.0.9-dev.3",
3
+ "version": "8.0.9-dev.5",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",