@uug-ai/models 1.7.2 → 1.7.3
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.d.ts +53 -2
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -19191,6 +19191,45 @@ export interface paths {
|
|
|
19191
19191
|
patch?: never;
|
|
19192
19192
|
trace?: never;
|
|
19193
19193
|
};
|
|
19194
|
+
"/internal/organisationupdate": {
|
|
19195
|
+
parameters: {
|
|
19196
|
+
query?: never;
|
|
19197
|
+
header?: never;
|
|
19198
|
+
path?: never;
|
|
19199
|
+
cookie?: never;
|
|
19200
|
+
};
|
|
19201
|
+
/**
|
|
19202
|
+
* Get OrganisationUpdate (schema generation only)
|
|
19203
|
+
* @description Internal endpoint used only to ensure OrganisationUpdate schema is generated in OpenAPI spec
|
|
19204
|
+
*/
|
|
19205
|
+
get: {
|
|
19206
|
+
parameters: {
|
|
19207
|
+
query?: never;
|
|
19208
|
+
header?: never;
|
|
19209
|
+
path?: never;
|
|
19210
|
+
cookie?: never;
|
|
19211
|
+
};
|
|
19212
|
+
requestBody?: never;
|
|
19213
|
+
responses: {
|
|
19214
|
+
/** @description OK */
|
|
19215
|
+
200: {
|
|
19216
|
+
headers: {
|
|
19217
|
+
[name: string]: unknown;
|
|
19218
|
+
};
|
|
19219
|
+
content: {
|
|
19220
|
+
"application/json": components["schemas"]["models.OrganisationUpdate"];
|
|
19221
|
+
};
|
|
19222
|
+
};
|
|
19223
|
+
};
|
|
19224
|
+
};
|
|
19225
|
+
put?: never;
|
|
19226
|
+
post?: never;
|
|
19227
|
+
delete?: never;
|
|
19228
|
+
options?: never;
|
|
19229
|
+
head?: never;
|
|
19230
|
+
patch?: never;
|
|
19231
|
+
trace?: never;
|
|
19232
|
+
};
|
|
19194
19233
|
"/internal/organisationuser": {
|
|
19195
19234
|
parameters: {
|
|
19196
19235
|
query?: never;
|
|
@@ -30873,7 +30912,7 @@ export interface components {
|
|
|
30873
30912
|
metadata?: components["schemas"]["api.Metadata"];
|
|
30874
30913
|
};
|
|
30875
30914
|
"api.UpdateOrganisationRequest": {
|
|
30876
|
-
organisation?: components["schemas"]["models.
|
|
30915
|
+
organisation?: components["schemas"]["models.OrganisationUpdate"];
|
|
30877
30916
|
};
|
|
30878
30917
|
"api.UpdateOrganisationResponse": {
|
|
30879
30918
|
organisation?: components["schemas"]["models.Organisation"];
|
|
@@ -33375,6 +33414,17 @@ export interface components {
|
|
|
33375
33414
|
*/
|
|
33376
33415
|
timezone?: string;
|
|
33377
33416
|
};
|
|
33417
|
+
"models.OrganisationUpdate": {
|
|
33418
|
+
billingAddress?: components["schemas"]["models.Address"];
|
|
33419
|
+
company?: components["schemas"]["models.CompanyDetails"];
|
|
33420
|
+
description?: string;
|
|
33421
|
+
domain?: string;
|
|
33422
|
+
isActive?: boolean;
|
|
33423
|
+
name?: string;
|
|
33424
|
+
settings?: components["schemas"]["models.OrganisationSettings"];
|
|
33425
|
+
slug?: string;
|
|
33426
|
+
subscription?: components["schemas"]["models.Subscription"];
|
|
33427
|
+
};
|
|
33378
33428
|
"models.OrganisationUser": {
|
|
33379
33429
|
audit?: components["schemas"]["models.Audit"];
|
|
33380
33430
|
/**
|
|
@@ -34172,7 +34222,7 @@ export interface components {
|
|
|
34172
34222
|
};
|
|
34173
34223
|
"models.UpdateCaseShareOTPOutput": Record<string, never>;
|
|
34174
34224
|
"models.UpdateOrganisationInput": {
|
|
34175
|
-
organisation?: components["schemas"]["models.
|
|
34225
|
+
organisation?: components["schemas"]["models.OrganisationUpdate"];
|
|
34176
34226
|
organisationId?: string;
|
|
34177
34227
|
user?: components["schemas"]["models.User"];
|
|
34178
34228
|
};
|
|
@@ -35108,6 +35158,7 @@ export declare namespace models {
|
|
|
35108
35158
|
type OrganisationInvitation = components['schemas']['models.OrganisationInvitation'];
|
|
35109
35159
|
type OrganisationMember = components['schemas']['models.OrganisationMember'];
|
|
35110
35160
|
type OrganisationSettings = components['schemas']['models.OrganisationSettings'];
|
|
35161
|
+
type OrganisationUpdate = components['schemas']['models.OrganisationUpdate'];
|
|
35111
35162
|
type OrganisationUser = components['schemas']['models.OrganisationUser'];
|
|
35112
35163
|
type OrganisationUserDetails = components['schemas']['models.OrganisationUserDetails'];
|
|
35113
35164
|
type PatchVideowallInput = components['schemas']['models.PatchVideowallInput'];
|