waldur-js-client 8.0.9-dev.44 → 8.0.9-dev.46

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.
@@ -5112,6 +5112,18 @@ export type ConstanceSettings = {
5112
5112
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
5113
5113
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
5114
5114
  ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
5115
+ MATRIX_ENABLED?: boolean;
5116
+ MATRIX_HOMESERVER_URL?: string;
5117
+ MATRIX_HOMESERVER_DOMAIN?: string;
5118
+ MATRIX_APPSERVICE_AS_TOKEN?: string;
5119
+ MATRIX_APPSERVICE_HS_TOKEN?: string;
5120
+ MATRIX_APPSERVICE_SENDER_LOCALPART?: string;
5121
+ MATRIX_HISTORY_EXPORT_ENABLED?: boolean;
5122
+ MATRIX_EXPORT_MEDIA?: boolean;
5123
+ MATRIX_USER_REGISTRATION_SECRET?: string;
5124
+ MATRIX_USER_ID_FORMAT?: string;
5125
+ MATRIX_LOGIN_METHOD?: string;
5126
+ MATRIX_OIDC_PROVIDER_URL?: string;
5115
5127
  SITE_AGENT_LOG_MAX_ROWS_PER_IDENTITY?: number;
5116
5128
  PAT_ENABLED?: boolean;
5117
5129
  PAT_MAX_LIFETIME_DAYS?: number;
@@ -5395,6 +5407,18 @@ export type ConstanceSettingsRequest = {
5395
5407
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
5396
5408
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
5397
5409
  ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
5410
+ MATRIX_ENABLED?: boolean;
5411
+ MATRIX_HOMESERVER_URL?: string;
5412
+ MATRIX_HOMESERVER_DOMAIN?: string;
5413
+ MATRIX_APPSERVICE_AS_TOKEN?: string;
5414
+ MATRIX_APPSERVICE_HS_TOKEN?: string;
5415
+ MATRIX_APPSERVICE_SENDER_LOCALPART?: string;
5416
+ MATRIX_HISTORY_EXPORT_ENABLED?: boolean;
5417
+ MATRIX_EXPORT_MEDIA?: boolean;
5418
+ MATRIX_USER_REGISTRATION_SECRET?: string;
5419
+ MATRIX_USER_ID_FORMAT?: string;
5420
+ MATRIX_LOGIN_METHOD?: string;
5421
+ MATRIX_OIDC_PROVIDER_URL?: string;
5398
5422
  SITE_AGENT_LOG_MAX_ROWS_PER_IDENTITY?: number;
5399
5423
  PAT_ENABLED?: boolean;
5400
5424
  PAT_MAX_LIFETIME_DAYS?: number;
@@ -7188,6 +7212,12 @@ export type EligibilityCheck = {
7188
7212
  is_eligible: boolean;
7189
7213
  restrictions: Array<string>;
7190
7214
  };
7215
+ export type EligibleProject = {
7216
+ uuid: string;
7217
+ name: string;
7218
+ customer_uuid: string;
7219
+ customer_name: string;
7220
+ };
7191
7221
  export type EmailHook = {
7192
7222
  readonly url: string;
7193
7223
  readonly uuid: string;
@@ -7537,6 +7567,7 @@ export type ExportTypeCompatibility = {
7537
7567
  compatible: boolean;
7538
7568
  recommended: boolean;
7539
7569
  };
7570
+ export type ExportTypeEnum = 'periodic' | 'on_deletion' | 'manual';
7540
7571
  export type ExtendDeadlineRequestRequest = {
7541
7572
  /**
7542
7573
  * New expiration date and time for the assignment batch.
@@ -10031,6 +10062,136 @@ export type MatchingConfiguration = {
10031
10062
  readonly created: string;
10032
10063
  readonly modified: string;
10033
10064
  };
10065
+ export type MatrixAppserviceSetupRequest = {
10066
+ /**
10067
+ * Waldur URL reachable by the Matrix homeserver (for webhook callbacks)
10068
+ */
10069
+ url?: string;
10070
+ /**
10071
+ * Localpart for the appservice bot user, e.g. 'waldur-bot'
10072
+ */
10073
+ sender_localpart?: string;
10074
+ /**
10075
+ * Matrix homeserver base URL. Only persisted if MATRIX_HOMESERVER_URL is not already configured.
10076
+ */
10077
+ homeserver_url?: string;
10078
+ /**
10079
+ * Matrix homeserver server_name domain. Only persisted if MATRIX_HOMESERVER_DOMAIN is not already configured.
10080
+ */
10081
+ homeserver_domain?: string;
10082
+ /**
10083
+ * Shared secret configured in the homeserver for user registration. Only persisted if MATRIX_USER_REGISTRATION_SECRET is not already configured.
10084
+ */
10085
+ user_registration_secret?: string;
10086
+ };
10087
+ export type MatrixAppserviceSetupResponse = {
10088
+ registration_yaml: string;
10089
+ as_token: string;
10090
+ hs_token: string;
10091
+ sender_localpart: string;
10092
+ webhook_url: string;
10093
+ bot_provision_status: string;
10094
+ };
10095
+ export type MatrixAppserviceStatus = {
10096
+ enabled: boolean;
10097
+ as_token_configured: boolean;
10098
+ hs_token_configured: boolean;
10099
+ sender_localpart: string;
10100
+ bot_user_id: string;
10101
+ webhook_path: string;
10102
+ homeserver_url: string;
10103
+ homeserver_domain: string;
10104
+ transaction_count: number;
10105
+ };
10106
+ export type MatrixCredentials = {
10107
+ method: string;
10108
+ homeserver_url: string;
10109
+ matrix_user_id: string;
10110
+ password?: string;
10111
+ login_token?: string;
10112
+ oidc_provider_url?: string;
10113
+ room_id?: string;
10114
+ access_token?: string;
10115
+ };
10116
+ export type MatrixDiagnosticCheck = {
10117
+ name: string;
10118
+ label: string;
10119
+ ok: boolean;
10120
+ detail: string;
10121
+ };
10122
+ export type MatrixDiagnosticsResponse = {
10123
+ ok: boolean;
10124
+ checks: Array<MatrixDiagnosticCheck>;
10125
+ };
10126
+ export type MatrixHistoryExport = {
10127
+ readonly uuid: string;
10128
+ readonly url: string;
10129
+ readonly room_uuid: string;
10130
+ readonly room_name: string;
10131
+ export_type: ExportTypeEnum;
10132
+ readonly message_count: number;
10133
+ readonly media_count: number;
10134
+ state: MatrixHistoryExportStateEnum;
10135
+ readonly error_message: string;
10136
+ readonly export_file_url: string | null;
10137
+ readonly media_file_url: string | null;
10138
+ readonly started_at: string | null;
10139
+ readonly completed_at: string | null;
10140
+ readonly created: string;
10141
+ };
10142
+ export type MatrixHistoryExportStateEnum = 'pending' | 'exporting' | 'completed' | 'failed';
10143
+ export type MatrixReprovisionResponse = {
10144
+ rooms_reprovisioned: number;
10145
+ users_reset: number;
10146
+ };
10147
+ export type MatrixRoom = {
10148
+ readonly uuid: string;
10149
+ readonly url: string;
10150
+ /**
10151
+ * Matrix room ID, e.g. !abc:domain
10152
+ */
10153
+ readonly room_id: string | null;
10154
+ room_name?: string;
10155
+ /**
10156
+ * Matrix room alias, e.g. #project-name:domain
10157
+ */
10158
+ readonly room_alias: string;
10159
+ state: MatrixRoomStateEnum;
10160
+ readonly error_message: string;
10161
+ readonly scope: string;
10162
+ readonly scope_uuid: string | null;
10163
+ readonly scope_name: string | null;
10164
+ readonly customer_uuid: string | null;
10165
+ readonly customer_name: string | null;
10166
+ readonly members_count: number;
10167
+ readonly members: Array<MatrixRoomMemberSummary>;
10168
+ readonly current_user_membership_state: string | null;
10169
+ readonly created: string;
10170
+ readonly modified: string;
10171
+ };
10172
+ export type MatrixRoomCreateRequest = {
10173
+ project: string;
10174
+ };
10175
+ export type MatrixRoomDisableRequest = {
10176
+ delete_history?: boolean;
10177
+ };
10178
+ export type MatrixRoomMember = {
10179
+ readonly uuid: string;
10180
+ readonly user_uuid: string;
10181
+ readonly user_full_name: string;
10182
+ readonly matrix_user_id: string;
10183
+ readonly power_level: number;
10184
+ membership_state: MembershipStateEnum;
10185
+ readonly created: string;
10186
+ readonly modified: string;
10187
+ };
10188
+ export type MatrixRoomMemberSummary = {
10189
+ user_full_name: string;
10190
+ matrix_user_id: string;
10191
+ membership_state: string;
10192
+ };
10193
+ export type MatrixRoomStateEnum = 'creating' | 'active' | 'disabling' | 'archived' | 'error';
10194
+ export type MembershipStateEnum = 'invited' | 'joined' | 'left' | 'banned';
10034
10195
  export type MergedPluginOptions = {
10035
10196
  /**
10036
10197
  * If set to True, an order can be processed without approval
@@ -10328,6 +10489,10 @@ export type MergedPluginOptions = {
10328
10489
  * Label used by UI for showing value of the backend_id
10329
10490
  */
10330
10491
  backend_id_display_label?: string;
10492
+ /**
10493
+ * If set to True, highlighted backend ID display is only shown when the resource has an effective_id.
10494
+ */
10495
+ require_effective_id_for_highlighted_display?: boolean;
10331
10496
  /**
10332
10497
  * Show an in-browser inference playground action for resources of this offering (for offerings whose resources expose an OpenAI-compatible endpoint).
10333
10498
  */
@@ -10634,6 +10799,10 @@ export type MergedPluginOptionsRequest = {
10634
10799
  * Label used by UI for showing value of the backend_id
10635
10800
  */
10636
10801
  backend_id_display_label?: string;
10802
+ /**
10803
+ * If set to True, highlighted backend ID display is only shown when the resource has an effective_id.
10804
+ */
10805
+ require_effective_id_for_highlighted_display?: boolean;
10637
10806
  /**
10638
10807
  * Show an in-browser inference playground action for resources of this offering (for offerings whose resources expose an OpenAI-compatible endpoint).
10639
10808
  */
@@ -28966,6 +29135,18 @@ export type ConstanceSettingsRequestForm = {
28966
29135
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
28967
29136
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
28968
29137
  ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
29138
+ MATRIX_ENABLED?: boolean;
29139
+ MATRIX_HOMESERVER_URL?: string;
29140
+ MATRIX_HOMESERVER_DOMAIN?: string;
29141
+ MATRIX_APPSERVICE_AS_TOKEN?: string;
29142
+ MATRIX_APPSERVICE_HS_TOKEN?: string;
29143
+ MATRIX_APPSERVICE_SENDER_LOCALPART?: string;
29144
+ MATRIX_HISTORY_EXPORT_ENABLED?: boolean;
29145
+ MATRIX_EXPORT_MEDIA?: boolean;
29146
+ MATRIX_USER_REGISTRATION_SECRET?: string;
29147
+ MATRIX_USER_ID_FORMAT?: string;
29148
+ MATRIX_LOGIN_METHOD?: string;
29149
+ MATRIX_OIDC_PROVIDER_URL?: string;
28969
29150
  SITE_AGENT_LOG_MAX_ROWS_PER_IDENTITY?: number;
28970
29151
  PAT_ENABLED?: boolean;
28971
29152
  PAT_MAX_LIFETIME_DAYS?: number;
@@ -29249,6 +29430,18 @@ export type ConstanceSettingsRequestMultipart = {
29249
29430
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
29250
29431
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
29251
29432
  ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
29433
+ MATRIX_ENABLED?: boolean;
29434
+ MATRIX_HOMESERVER_URL?: string;
29435
+ MATRIX_HOMESERVER_DOMAIN?: string;
29436
+ MATRIX_APPSERVICE_AS_TOKEN?: string;
29437
+ MATRIX_APPSERVICE_HS_TOKEN?: string;
29438
+ MATRIX_APPSERVICE_SENDER_LOCALPART?: string;
29439
+ MATRIX_HISTORY_EXPORT_ENABLED?: boolean;
29440
+ MATRIX_EXPORT_MEDIA?: boolean;
29441
+ MATRIX_USER_REGISTRATION_SECRET?: string;
29442
+ MATRIX_USER_ID_FORMAT?: string;
29443
+ MATRIX_LOGIN_METHOD?: string;
29444
+ MATRIX_OIDC_PROVIDER_URL?: string;
29252
29445
  SITE_AGENT_LOG_MAX_ROWS_PER_IDENTITY?: number;
29253
29446
  PAT_ENABLED?: boolean;
29254
29447
  PAT_MAX_LIFETIME_DAYS?: number;
@@ -29893,6 +30086,20 @@ export type Page = number;
29893
30086
  * Number of results to return per page.
29894
30087
  */
29895
30088
  export type PageSize = number;
30089
+ export type MatrixAppV1TransactionsUpdateData = {
30090
+ body?: never;
30091
+ path: {
30092
+ txn_id: string;
30093
+ };
30094
+ query?: never;
30095
+ url: '/_matrix/app/v1/transactions/{txn_id}';
30096
+ };
30097
+ export type MatrixAppV1TransactionsUpdateResponses = {
30098
+ /**
30099
+ * No response body
30100
+ */
30101
+ 200: unknown;
30102
+ };
29896
30103
  export type ApiAuthEduteamsCompleteRetrieveData = {
29897
30104
  body?: never;
29898
30105
  path?: never;
@@ -31306,6 +31513,46 @@ export type AdminArrowVendorOfferingMappingsVendorChoicesCountResponses = {
31306
31513
  */
31307
31514
  200: unknown;
31308
31515
  };
31516
+ export type AdminMatrixAppserviceSetupData = {
31517
+ body?: MatrixAppserviceSetupRequest;
31518
+ path?: never;
31519
+ query?: never;
31520
+ url: '/api/admin/matrix-appservice/setup/';
31521
+ };
31522
+ export type AdminMatrixAppserviceSetupResponses = {
31523
+ 200: MatrixAppserviceSetupResponse;
31524
+ };
31525
+ export type AdminMatrixAppserviceSetupResponse = AdminMatrixAppserviceSetupResponses[keyof AdminMatrixAppserviceSetupResponses];
31526
+ export type AdminMatrixAppserviceStatusRetrieveData = {
31527
+ body?: never;
31528
+ path?: never;
31529
+ query?: never;
31530
+ url: '/api/admin/matrix-appservice/status/';
31531
+ };
31532
+ export type AdminMatrixAppserviceStatusRetrieveResponses = {
31533
+ 200: MatrixAppserviceStatus;
31534
+ };
31535
+ export type AdminMatrixAppserviceStatusRetrieveResponse = AdminMatrixAppserviceStatusRetrieveResponses[keyof AdminMatrixAppserviceStatusRetrieveResponses];
31536
+ export type AdminMatrixDiagnosticsRetrieveData = {
31537
+ body?: never;
31538
+ path?: never;
31539
+ query?: never;
31540
+ url: '/api/admin/matrix/diagnostics/';
31541
+ };
31542
+ export type AdminMatrixDiagnosticsRetrieveResponses = {
31543
+ 200: MatrixDiagnosticsResponse;
31544
+ };
31545
+ export type AdminMatrixDiagnosticsRetrieveResponse = AdminMatrixDiagnosticsRetrieveResponses[keyof AdminMatrixDiagnosticsRetrieveResponses];
31546
+ export type AdminMatrixReprovisionData = {
31547
+ body?: never;
31548
+ path?: never;
31549
+ query?: never;
31550
+ url: '/api/admin/matrix/reprovision/';
31551
+ };
31552
+ export type AdminMatrixReprovisionResponses = {
31553
+ 202: MatrixReprovisionResponse;
31554
+ };
31555
+ export type AdminMatrixReprovisionResponse = AdminMatrixReprovisionResponses[keyof AdminMatrixReprovisionResponses];
31309
31556
  export type AffiliatedOrganizationsListData = {
31310
31557
  body?: never;
31311
31558
  path?: never;
@@ -62679,6 +62926,373 @@ export type MarketplaceUserOfferingConsentsRevokeResponses = {
62679
62926
  200: UserOfferingConsent;
62680
62927
  };
62681
62928
  export type MarketplaceUserOfferingConsentsRevokeResponse = MarketplaceUserOfferingConsentsRevokeResponses[keyof MarketplaceUserOfferingConsentsRevokeResponses];
62929
+ export type MatrixCredentialsRetrieveData = {
62930
+ body?: never;
62931
+ path?: never;
62932
+ query?: never;
62933
+ url: '/api/matrix/credentials/';
62934
+ };
62935
+ export type MatrixCredentialsRetrieveResponses = {
62936
+ 200: MatrixCredentials;
62937
+ };
62938
+ export type MatrixCredentialsRetrieveResponse = MatrixCredentialsRetrieveResponses[keyof MatrixCredentialsRetrieveResponses];
62939
+ export type MatrixExportsListData = {
62940
+ body?: never;
62941
+ path?: never;
62942
+ query?: {
62943
+ export_type?: ExportTypeEnum;
62944
+ /**
62945
+ * A page number within the paginated result set.
62946
+ */
62947
+ page?: number;
62948
+ /**
62949
+ * Number of results to return per page.
62950
+ */
62951
+ page_size?: number;
62952
+ /**
62953
+ * Room UUID
62954
+ */
62955
+ room_uuid?: string;
62956
+ state?: MatrixHistoryExportStateEnum;
62957
+ };
62958
+ url: '/api/matrix/exports/';
62959
+ };
62960
+ export type MatrixExportsListResponses = {
62961
+ 200: Array<MatrixHistoryExport>;
62962
+ };
62963
+ export type MatrixExportsListResponse = MatrixExportsListResponses[keyof MatrixExportsListResponses];
62964
+ export type MatrixExportsCountData = {
62965
+ body?: never;
62966
+ path?: never;
62967
+ query?: {
62968
+ export_type?: ExportTypeEnum;
62969
+ /**
62970
+ * A page number within the paginated result set.
62971
+ */
62972
+ page?: number;
62973
+ /**
62974
+ * Number of results to return per page.
62975
+ */
62976
+ page_size?: number;
62977
+ /**
62978
+ * Room UUID
62979
+ */
62980
+ room_uuid?: string;
62981
+ state?: MatrixHistoryExportStateEnum;
62982
+ };
62983
+ url: '/api/matrix/exports/';
62984
+ };
62985
+ export type MatrixExportsCountResponses = {
62986
+ /**
62987
+ * No response body
62988
+ */
62989
+ 200: unknown;
62990
+ };
62991
+ export type MatrixExportsRetrieveData = {
62992
+ body?: never;
62993
+ path: {
62994
+ uuid: string;
62995
+ };
62996
+ query?: never;
62997
+ url: '/api/matrix/exports/{uuid}/';
62998
+ };
62999
+ export type MatrixExportsRetrieveResponses = {
63000
+ 200: MatrixHistoryExport;
63001
+ };
63002
+ export type MatrixExportsRetrieveResponse = MatrixExportsRetrieveResponses[keyof MatrixExportsRetrieveResponses];
63003
+ export type MatrixExportsDownloadRetrieveData = {
63004
+ body?: never;
63005
+ path: {
63006
+ /**
63007
+ * Which artifact to stream.
63008
+ */
63009
+ kind: 'export' | 'media';
63010
+ uuid: string;
63011
+ };
63012
+ query?: never;
63013
+ url: '/api/matrix/exports/{uuid}/download/{kind}/';
63014
+ };
63015
+ export type MatrixExportsDownloadRetrieveResponses = {
63016
+ 200: Blob | File;
63017
+ };
63018
+ export type MatrixExportsDownloadRetrieveResponse = MatrixExportsDownloadRetrieveResponses[keyof MatrixExportsDownloadRetrieveResponses];
63019
+ export type MatrixRoomsListData = {
63020
+ body?: never;
63021
+ path?: never;
63022
+ query?: {
63023
+ /**
63024
+ * Only rooms the current user is a member of
63025
+ */
63026
+ member?: boolean;
63027
+ /**
63028
+ * A page number within the paginated result set.
63029
+ */
63030
+ page?: number;
63031
+ /**
63032
+ * Number of results to return per page.
63033
+ */
63034
+ page_size?: number;
63035
+ /**
63036
+ * Project UUID
63037
+ */
63038
+ project_uuid?: string;
63039
+ state?: MatrixRoomStateEnum;
63040
+ };
63041
+ url: '/api/matrix/rooms/';
63042
+ };
63043
+ export type MatrixRoomsListResponses = {
63044
+ 200: Array<MatrixRoom>;
63045
+ };
63046
+ export type MatrixRoomsListResponse = MatrixRoomsListResponses[keyof MatrixRoomsListResponses];
63047
+ export type MatrixRoomsCountData = {
63048
+ body?: never;
63049
+ path?: never;
63050
+ query?: {
63051
+ /**
63052
+ * Only rooms the current user is a member of
63053
+ */
63054
+ member?: boolean;
63055
+ /**
63056
+ * A page number within the paginated result set.
63057
+ */
63058
+ page?: number;
63059
+ /**
63060
+ * Number of results to return per page.
63061
+ */
63062
+ page_size?: number;
63063
+ /**
63064
+ * Project UUID
63065
+ */
63066
+ project_uuid?: string;
63067
+ state?: MatrixRoomStateEnum;
63068
+ };
63069
+ url: '/api/matrix/rooms/';
63070
+ };
63071
+ export type MatrixRoomsCountResponses = {
63072
+ /**
63073
+ * No response body
63074
+ */
63075
+ 200: unknown;
63076
+ };
63077
+ export type MatrixRoomsCreateData = {
63078
+ body: MatrixRoomCreateRequest;
63079
+ path?: never;
63080
+ query?: never;
63081
+ url: '/api/matrix/rooms/';
63082
+ };
63083
+ export type MatrixRoomsCreateResponses = {
63084
+ 201: MatrixRoom;
63085
+ };
63086
+ export type MatrixRoomsCreateResponse = MatrixRoomsCreateResponses[keyof MatrixRoomsCreateResponses];
63087
+ export type MatrixRoomsDestroyData = {
63088
+ body?: never;
63089
+ path: {
63090
+ uuid: string;
63091
+ };
63092
+ query?: never;
63093
+ url: '/api/matrix/rooms/{uuid}/';
63094
+ };
63095
+ export type MatrixRoomsDestroyResponses = {
63096
+ /**
63097
+ * No response body
63098
+ */
63099
+ 204: void;
63100
+ };
63101
+ export type MatrixRoomsDestroyResponse = MatrixRoomsDestroyResponses[keyof MatrixRoomsDestroyResponses];
63102
+ export type MatrixRoomsRetrieveData = {
63103
+ body?: never;
63104
+ path: {
63105
+ uuid: string;
63106
+ };
63107
+ query?: never;
63108
+ url: '/api/matrix/rooms/{uuid}/';
63109
+ };
63110
+ export type MatrixRoomsRetrieveResponses = {
63111
+ 200: MatrixRoom;
63112
+ };
63113
+ export type MatrixRoomsRetrieveResponse = MatrixRoomsRetrieveResponses[keyof MatrixRoomsRetrieveResponses];
63114
+ export type MatrixRoomsDisableData = {
63115
+ body?: MatrixRoomDisableRequest;
63116
+ path: {
63117
+ uuid: string;
63118
+ };
63119
+ query?: never;
63120
+ url: '/api/matrix/rooms/{uuid}/disable/';
63121
+ };
63122
+ export type MatrixRoomsDisableResponses = {
63123
+ 202: MatrixRoom;
63124
+ };
63125
+ export type MatrixRoomsDisableResponse = MatrixRoomsDisableResponses[keyof MatrixRoomsDisableResponses];
63126
+ export type MatrixRoomsExportHistoryData = {
63127
+ body?: never;
63128
+ path: {
63129
+ uuid: string;
63130
+ };
63131
+ query?: never;
63132
+ url: '/api/matrix/rooms/{uuid}/export_history/';
63133
+ };
63134
+ export type MatrixRoomsExportHistoryResponses = {
63135
+ 202: MatrixHistoryExport;
63136
+ };
63137
+ export type MatrixRoomsExportHistoryResponse = MatrixRoomsExportHistoryResponses[keyof MatrixRoomsExportHistoryResponses];
63138
+ export type MatrixRoomsJoinData = {
63139
+ body?: never;
63140
+ path: {
63141
+ uuid: string;
63142
+ };
63143
+ query?: never;
63144
+ url: '/api/matrix/rooms/{uuid}/join/';
63145
+ };
63146
+ export type MatrixRoomsJoinResponses = {
63147
+ 202: MatrixRoom;
63148
+ };
63149
+ export type MatrixRoomsJoinResponse = MatrixRoomsJoinResponses[keyof MatrixRoomsJoinResponses];
63150
+ export type MatrixRoomsLeaveData = {
63151
+ body?: never;
63152
+ path: {
63153
+ uuid: string;
63154
+ };
63155
+ query?: never;
63156
+ url: '/api/matrix/rooms/{uuid}/leave/';
63157
+ };
63158
+ export type MatrixRoomsLeaveResponses = {
63159
+ 202: MatrixRoom;
63160
+ };
63161
+ export type MatrixRoomsLeaveResponse = MatrixRoomsLeaveResponses[keyof MatrixRoomsLeaveResponses];
63162
+ export type MatrixRoomsMembersListData = {
63163
+ body?: never;
63164
+ path: {
63165
+ uuid: string;
63166
+ };
63167
+ query?: {
63168
+ /**
63169
+ * Only rooms the current user is a member of
63170
+ */
63171
+ member?: boolean;
63172
+ /**
63173
+ * A page number within the paginated result set.
63174
+ */
63175
+ page?: number;
63176
+ /**
63177
+ * Number of results to return per page.
63178
+ */
63179
+ page_size?: number;
63180
+ /**
63181
+ * Project UUID
63182
+ */
63183
+ project_uuid?: string;
63184
+ state?: MatrixRoomStateEnum;
63185
+ };
63186
+ url: '/api/matrix/rooms/{uuid}/members/';
63187
+ };
63188
+ export type MatrixRoomsMembersListResponses = {
63189
+ 200: Array<MatrixRoomMember>;
63190
+ };
63191
+ export type MatrixRoomsMembersListResponse = MatrixRoomsMembersListResponses[keyof MatrixRoomsMembersListResponses];
63192
+ export type MatrixRoomsReactivateData = {
63193
+ body?: never;
63194
+ path: {
63195
+ uuid: string;
63196
+ };
63197
+ query?: never;
63198
+ url: '/api/matrix/rooms/{uuid}/reactivate/';
63199
+ };
63200
+ export type MatrixRoomsReactivateResponses = {
63201
+ 202: MatrixRoom;
63202
+ };
63203
+ export type MatrixRoomsReactivateResponse = MatrixRoomsReactivateResponses[keyof MatrixRoomsReactivateResponses];
63204
+ export type MatrixRoomsRetryData = {
63205
+ body?: never;
63206
+ path: {
63207
+ uuid: string;
63208
+ };
63209
+ query?: never;
63210
+ url: '/api/matrix/rooms/{uuid}/retry/';
63211
+ };
63212
+ export type MatrixRoomsRetryResponses = {
63213
+ 202: MatrixRoom;
63214
+ };
63215
+ export type MatrixRoomsRetryResponse = MatrixRoomsRetryResponses[keyof MatrixRoomsRetryResponses];
63216
+ export type MatrixRoomsSyncMembersData = {
63217
+ body?: never;
63218
+ path: {
63219
+ uuid: string;
63220
+ };
63221
+ query?: never;
63222
+ url: '/api/matrix/rooms/{uuid}/sync_members/';
63223
+ };
63224
+ export type MatrixRoomsSyncMembersResponses = {
63225
+ /**
63226
+ * No response body
63227
+ */
63228
+ 202: unknown;
63229
+ };
63230
+ export type MatrixRoomsEligibleProjectsListData = {
63231
+ body?: never;
63232
+ path?: never;
63233
+ query?: {
63234
+ /**
63235
+ * Limit results to projects under this customer.
63236
+ */
63237
+ customer_uuid?: string;
63238
+ /**
63239
+ * Only rooms the current user is a member of
63240
+ */
63241
+ member?: boolean;
63242
+ /**
63243
+ * A page number within the paginated result set.
63244
+ */
63245
+ page?: number;
63246
+ /**
63247
+ * Number of results to return per page.
63248
+ */
63249
+ page_size?: number;
63250
+ /**
63251
+ * Project UUID
63252
+ */
63253
+ project_uuid?: string;
63254
+ state?: MatrixRoomStateEnum;
63255
+ };
63256
+ url: '/api/matrix/rooms/eligible_projects/';
63257
+ };
63258
+ export type MatrixRoomsEligibleProjectsListResponses = {
63259
+ 200: Array<EligibleProject>;
63260
+ };
63261
+ export type MatrixRoomsEligibleProjectsListResponse = MatrixRoomsEligibleProjectsListResponses[keyof MatrixRoomsEligibleProjectsListResponses];
63262
+ export type MatrixRoomsEligibleProjectsCountData = {
63263
+ body?: never;
63264
+ path?: never;
63265
+ query?: {
63266
+ /**
63267
+ * Limit results to projects under this customer.
63268
+ */
63269
+ customer_uuid?: string;
63270
+ /**
63271
+ * Only rooms the current user is a member of
63272
+ */
63273
+ member?: boolean;
63274
+ /**
63275
+ * A page number within the paginated result set.
63276
+ */
63277
+ page?: number;
63278
+ /**
63279
+ * Number of results to return per page.
63280
+ */
63281
+ page_size?: number;
63282
+ /**
63283
+ * Project UUID
63284
+ */
63285
+ project_uuid?: string;
63286
+ state?: MatrixRoomStateEnum;
63287
+ };
63288
+ url: '/api/matrix/rooms/eligible_projects/';
63289
+ };
63290
+ export type MatrixRoomsEligibleProjectsCountResponses = {
63291
+ /**
63292
+ * No response body
63293
+ */
63294
+ 200: unknown;
63295
+ };
62682
63296
  export type MediaRetrieveData = {
62683
63297
  body?: never;
62684
63298
  path: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "8.0.9-dev.44",
3
+ "version": "8.0.9-dev.46",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",